From c95997030af7985eafed5a61705bba86a58274dd Mon Sep 17 00:00:00 2001 From: Rudi Chiarito Date: Sun, 14 Aug 2016 16:02:19 -0700 Subject: [PATCH] Add ExternalName to ServiceSpec ExternalName allows kubedns to return CNAME records for external services. No proxying is involved. See original issue at https://github.com/kubernetes/kubernetes/issues/13748 Feature tracking at https://github.com/kubernetes/features/issues/33 --- api/swagger-spec/v1.json | 10 +- docs/api-reference/v1/definitions.html | 15 +- pkg/api/types.generated.go | 21321 +++++++++---------- pkg/api/types.go | 33 +- pkg/api/v1/generated.pb.go | 1169 +- pkg/api/v1/generated.proto | 34 +- pkg/api/v1/types.generated.go | 21864 ++++++++++---------- pkg/api/v1/types.go | 34 +- pkg/api/v1/types_swagger_doc_generated.go | 7 +- pkg/api/v1/zz_generated.conversion.go | 2 + pkg/api/v1/zz_generated.deepcopy.go | 1 + pkg/api/zz_generated.deepcopy.go | 1 + 12 files changed, 22334 insertions(+), 22157 deletions(-) diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index 6aaf6ef069db0..deb1d01ab5de2 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -19243,15 +19243,15 @@ }, "selector": { "type": "object", - "description": "This service will route traffic to pods having labels matching this selector. Label keys and values that must match in order to receive traffic for this service. If not specified, endpoints must be manually specified and the system will not automatically manage them. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview" + "description": "Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview" }, "clusterIP": { "type": "string", - "description": "ClusterIP is usually assigned by the master and is the IP address of the service. If specified, it will be allocated to the service if it is unused or else creation of the service will fail. Valid values are None, empty string (\"\"), or a valid IP address. 'None' can be specified for a headless service when proxying is not required. Cannot be updated. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies" + "description": "clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are \"None\", empty string (\"\"), or a valid IP address. \"None\" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies" }, "type": { "type": "string", - "description": "Type of exposed service. Must be ClusterIP, NodePort, or LoadBalancer. Defaults to ClusterIP. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#external-services" + "description": "type determines how to expose the service. Defaults to ClusterIP and only applies if clusterIP != \"None\". Valid options are ClusterIP, NodePort, LoadBalancer, ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview" }, "externalIPs": { "type": "array", @@ -19281,6 +19281,10 @@ "type": "string" }, "description": "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: http://releases.k8s.io/HEAD/docs/user-guide/services-firewalls.md" + }, + "externalName": { + "type": "string", + "description": "externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid DNS name and requires Type to be ExternalName." } } }, diff --git a/docs/api-reference/v1/definitions.html b/docs/api-reference/v1/definitions.html index a054c5712beb9..c69d4560bbca4 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -7892,21 +7892,21 @@

v1.ServiceSpec

selector

-

This service will route traffic to pods having labels matching this selector. Label keys and values that must match in order to receive traffic for this service. If not specified, endpoints must be manually specified and the system will not automatically manage them. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview

+

Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview

false

object

clusterIP

-

ClusterIP is usually assigned by the master and is the IP address of the service. If specified, it will be allocated to the service if it is unused or else creation of the service will fail. Valid values are None, empty string (""), or a valid IP address. None can be specified for a headless service when proxying is not required. Cannot be updated. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies

+

clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are "None", empty string (""), or a valid IP address. "None" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies

false

string

type

-

Type of exposed service. Must be ClusterIP, NodePort, or LoadBalancer. Defaults to ClusterIP. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#external-services

+

type determines how to expose the service. Defaults to ClusterIP and only applies if clusterIP != "None". Valid options are ClusterIP, NodePort, LoadBalancer, ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview

false

string

@@ -7946,6 +7946,13 @@

v1.ServiceSpec

string array

+ +

externalName

+

externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid DNS name and requires Type to be ExternalName.

+

false

+

string

+ + @@ -8160,7 +8167,7 @@

any

diff --git a/pkg/api/types.generated.go b/pkg/api/types.generated.go index 84ccd518a6db7..d0bfed90b519e 100644 --- a/pkg/api/types.generated.go +++ b/pkg/api/types.generated.go @@ -31927,20 +31927,20 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep2425 := !z.EncBinary() yy2arr2425 := z.EncBasicHandle().StructToArray - var yyq2425 [8]bool + var yyq2425 [9]bool _, _, _ = yysep2425, yyq2425, yy2arr2425 const yyr2425 bool = false yyq2425[0] = x.Type != "" yyq2425[3] = x.ClusterIP != "" - yyq2425[4] = len(x.ExternalIPs) != 0 - yyq2425[5] = x.LoadBalancerIP != "" - yyq2425[6] = x.SessionAffinity != "" - yyq2425[7] = len(x.LoadBalancerSourceRanges) != 0 + yyq2425[5] = len(x.ExternalIPs) != 0 + yyq2425[6] = x.LoadBalancerIP != "" + yyq2425[7] = x.SessionAffinity != "" + yyq2425[8] = len(x.LoadBalancerSourceRanges) != 0 var yynn2425 int if yyr2425 || yy2arr2425 { - r.EncodeArrayStart(8) + r.EncodeArrayStart(9) } else { - yynn2425 = 2 + yynn2425 = 3 for _, b := range yyq2425 { if b { yynn2425++ @@ -32045,12 +32045,31 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr2425 || yy2arr2425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2425[4] { + yym2437 := z.EncBinary() + _ = yym2437 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("ExternalName")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2438 := z.EncBinary() + _ = yym2438 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) + } + } + if yyr2425 || yy2arr2425 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2425[5] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2437 := z.EncBinary() - _ = yym2437 + yym2440 := z.EncBinary() + _ = yym2440 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -32060,15 +32079,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2425[4] { + if yyq2425[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2438 := z.EncBinary() - _ = yym2438 + yym2441 := z.EncBinary() + _ = yym2441 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -32078,9 +32097,9 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr2425 || yy2arr2425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2425[5] { - yym2440 := z.EncBinary() - _ = yym2440 + if yyq2425[6] { + yym2443 := z.EncBinary() + _ = yym2443 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -32089,12 +32108,12 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2425[5] { + if yyq2425[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2441 := z.EncBinary() - _ = yym2441 + yym2444 := z.EncBinary() + _ = yym2444 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -32103,13 +32122,13 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr2425 || yy2arr2425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2425[6] { + if yyq2425[7] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2425[6] { + if yyq2425[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -32118,12 +32137,12 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr2425 || yy2arr2425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2425[7] { + if yyq2425[8] { if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2444 := z.EncBinary() - _ = yym2444 + yym2447 := z.EncBinary() + _ = yym2447 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -32133,15 +32152,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2425[7] { + if yyq2425[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerSourceRanges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2445 := z.EncBinary() - _ = yym2445 + yym2448 := z.EncBinary() + _ = yym2448 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -32162,25 +32181,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2446 := z.DecBinary() - _ = yym2446 + yym2449 := z.DecBinary() + _ = yym2449 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2447 := r.ContainerType() - if yyct2447 == codecSelferValueTypeMap1234 { - yyl2447 := r.ReadMapStart() - if yyl2447 == 0 { + yyct2450 := r.ContainerType() + if yyct2450 == codecSelferValueTypeMap1234 { + yyl2450 := r.ReadMapStart() + if yyl2450 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2447, d) + x.codecDecodeSelfFromMap(yyl2450, d) } - } else if yyct2447 == codecSelferValueTypeArray1234 { - yyl2447 := r.ReadArrayStart() - if yyl2447 == 0 { + } else if yyct2450 == codecSelferValueTypeArray1234 { + yyl2450 := r.ReadArrayStart() + if yyl2450 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2447, d) + x.codecDecodeSelfFromArray(yyl2450, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32192,12 +32211,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2448Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2448Slc - var yyhl2448 bool = l >= 0 - for yyj2448 := 0; ; yyj2448++ { - if yyhl2448 { - if yyj2448 >= l { + var yys2451Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2451Slc + var yyhl2451 bool = l >= 0 + for yyj2451 := 0; ; yyj2451++ { + if yyhl2451 { + if yyj2451 >= l { break } } else { @@ -32206,10 +32225,10 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2448Slc = r.DecodeBytes(yys2448Slc, true, true) - yys2448 := string(yys2448Slc) + yys2451Slc = r.DecodeBytes(yys2451Slc, true, true) + yys2451 := string(yys2451Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2448 { + switch yys2451 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -32220,24 +32239,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2450 := &x.Ports - yym2451 := z.DecBinary() - _ = yym2451 + yyv2453 := &x.Ports + yym2454 := z.DecBinary() + _ = yym2454 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2450), d) + h.decSliceServicePort((*[]ServicePort)(yyv2453), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2452 := &x.Selector - yym2453 := z.DecBinary() - _ = yym2453 + yyv2455 := &x.Selector + yym2456 := z.DecBinary() + _ = yym2456 if false { } else { - z.F.DecMapStringStringX(yyv2452, false, d) + z.F.DecMapStringStringX(yyv2455, false, d) } } case "clusterIP": @@ -32246,16 +32265,22 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } + case "ExternalName": + if r.TryDecodeAsNil() { + x.ExternalName = "" + } else { + x.ExternalName = string(r.DecodeString()) + } case "externalIPs": if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2455 := &x.ExternalIPs - yym2456 := z.DecBinary() - _ = yym2456 + yyv2459 := &x.ExternalIPs + yym2460 := z.DecBinary() + _ = yym2460 if false { } else { - z.F.DecSliceStringX(yyv2455, false, d) + z.F.DecSliceStringX(yyv2459, false, d) } } case "loadBalancerIP": @@ -32274,18 +32299,18 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2459 := &x.LoadBalancerSourceRanges - yym2460 := z.DecBinary() - _ = yym2460 + yyv2463 := &x.LoadBalancerSourceRanges + yym2464 := z.DecBinary() + _ = yym2464 if false { } else { - z.F.DecSliceStringX(yyv2459, false, d) + z.F.DecSliceStringX(yyv2463, false, d) } } default: - z.DecStructFieldNotFound(-1, yys2448) - } // end switch yys2448 - } // end for yyj2448 + z.DecStructFieldNotFound(-1, yys2451) + } // end switch yys2451 + } // end for yyj2451 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32293,16 +32318,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2461 int - var yyb2461 bool - var yyhl2461 bool = l >= 0 - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + var yyj2465 int + var yyb2465 bool + var yyhl2465 bool = l >= 0 + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32312,13 +32337,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32326,21 +32351,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2463 := &x.Ports - yym2464 := z.DecBinary() - _ = yym2464 + yyv2467 := &x.Ports + yym2468 := z.DecBinary() + _ = yym2468 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2463), d) + h.decSliceServicePort((*[]ServicePort)(yyv2467), d) } } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32348,21 +32373,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2465 := &x.Selector - yym2466 := z.DecBinary() - _ = yym2466 + yyv2469 := &x.Selector + yym2470 := z.DecBinary() + _ = yym2470 if false { } else { - z.F.DecMapStringStringX(yyv2465, false, d) + z.F.DecMapStringStringX(yyv2469, false, d) } } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32372,13 +32397,29 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l + } else { + yyb2465 = r.CheckBreak() + } + if yyb2465 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ExternalName = "" + } else { + x.ExternalName = string(r.DecodeString()) + } + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32386,21 +32427,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2468 := &x.ExternalIPs - yym2469 := z.DecBinary() - _ = yym2469 + yyv2473 := &x.ExternalIPs + yym2474 := z.DecBinary() + _ = yym2474 if false { } else { - z.F.DecSliceStringX(yyv2468, false, d) + z.F.DecSliceStringX(yyv2473, false, d) } } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32410,13 +32451,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32426,13 +32467,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32440,26 +32481,26 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2472 := &x.LoadBalancerSourceRanges - yym2473 := z.DecBinary() - _ = yym2473 + yyv2477 := &x.LoadBalancerSourceRanges + yym2478 := z.DecBinary() + _ = yym2478 if false { } else { - z.F.DecSliceStringX(yyv2472, false, d) + z.F.DecSliceStringX(yyv2477, false, d) } } for { - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2461 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2461 { + if yyb2465 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2461-1, "") + z.DecStructFieldNotFound(yyj2465-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32471,33 +32512,33 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2474 := z.EncBinary() - _ = yym2474 + yym2479 := z.EncBinary() + _ = yym2479 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2475 := !z.EncBinary() - yy2arr2475 := z.EncBasicHandle().StructToArray - var yyq2475 [5]bool - _, _, _ = yysep2475, yyq2475, yy2arr2475 - const yyr2475 bool = false - var yynn2475 int - if yyr2475 || yy2arr2475 { + yysep2480 := !z.EncBinary() + yy2arr2480 := z.EncBasicHandle().StructToArray + var yyq2480 [5]bool + _, _, _ = yysep2480, yyq2480, yy2arr2480 + const yyr2480 bool = false + var yynn2480 int + if yyr2480 || yy2arr2480 { r.EncodeArrayStart(5) } else { - yynn2475 = 5 - for _, b := range yyq2475 { + yynn2480 = 5 + for _, b := range yyq2480 { if b { - yynn2475++ + yynn2480++ } } - r.EncodeMapStart(yynn2475) - yynn2475 = 0 + r.EncodeMapStart(yynn2480) + yynn2480 = 0 } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2477 := z.EncBinary() - _ = yym2477 + yym2482 := z.EncBinary() + _ = yym2482 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -32506,14 +32547,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2478 := z.EncBinary() - _ = yym2478 + yym2483 := z.EncBinary() + _ = yym2483 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -32522,10 +32563,10 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2481 := z.EncBinary() - _ = yym2481 + yym2486 := z.EncBinary() + _ = yym2486 if false { } else { r.EncodeInt(int64(x.Port)) @@ -32534,44 +32575,44 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2482 := z.EncBinary() - _ = yym2482 + yym2487 := z.EncBinary() + _ = yym2487 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2484 := &x.TargetPort - yym2485 := z.EncBinary() - _ = yym2485 + yy2489 := &x.TargetPort + yym2490 := z.EncBinary() + _ = yym2490 if false { - } else if z.HasExtensions() && z.EncExt(yy2484) { - } else if !yym2485 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2484) + } else if z.HasExtensions() && z.EncExt(yy2489) { + } else if !yym2490 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2489) } else { - z.EncFallback(yy2484) + z.EncFallback(yy2489) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2486 := &x.TargetPort - yym2487 := z.EncBinary() - _ = yym2487 + yy2491 := &x.TargetPort + yym2492 := z.EncBinary() + _ = yym2492 if false { - } else if z.HasExtensions() && z.EncExt(yy2486) { - } else if !yym2487 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2486) + } else if z.HasExtensions() && z.EncExt(yy2491) { + } else if !yym2492 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2491) } else { - z.EncFallback(yy2486) + z.EncFallback(yy2491) } } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2489 := z.EncBinary() - _ = yym2489 + yym2494 := z.EncBinary() + _ = yym2494 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -32580,14 +32621,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2490 := z.EncBinary() - _ = yym2490 + yym2495 := z.EncBinary() + _ = yym2495 if false { } else { r.EncodeInt(int64(x.NodePort)) } } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32600,25 +32641,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2491 := z.DecBinary() - _ = yym2491 + yym2496 := z.DecBinary() + _ = yym2496 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2492 := r.ContainerType() - if yyct2492 == codecSelferValueTypeMap1234 { - yyl2492 := r.ReadMapStart() - if yyl2492 == 0 { + yyct2497 := r.ContainerType() + if yyct2497 == codecSelferValueTypeMap1234 { + yyl2497 := r.ReadMapStart() + if yyl2497 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2492, d) + x.codecDecodeSelfFromMap(yyl2497, d) } - } else if yyct2492 == codecSelferValueTypeArray1234 { - yyl2492 := r.ReadArrayStart() - if yyl2492 == 0 { + } else if yyct2497 == codecSelferValueTypeArray1234 { + yyl2497 := r.ReadArrayStart() + if yyl2497 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2492, d) + x.codecDecodeSelfFromArray(yyl2497, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32630,12 +32671,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2493Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2493Slc - var yyhl2493 bool = l >= 0 - for yyj2493 := 0; ; yyj2493++ { - if yyhl2493 { - if yyj2493 >= l { + var yys2498Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2498Slc + var yyhl2498 bool = l >= 0 + for yyj2498 := 0; ; yyj2498++ { + if yyhl2498 { + if yyj2498 >= l { break } } else { @@ -32644,10 +32685,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2493Slc = r.DecodeBytes(yys2493Slc, true, true) - yys2493 := string(yys2493Slc) + yys2498Slc = r.DecodeBytes(yys2498Slc, true, true) + yys2498 := string(yys2498Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2493 { + switch yys2498 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -32670,15 +32711,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2497 := &x.TargetPort - yym2498 := z.DecBinary() - _ = yym2498 + yyv2502 := &x.TargetPort + yym2503 := z.DecBinary() + _ = yym2503 if false { - } else if z.HasExtensions() && z.DecExt(yyv2497) { - } else if !yym2498 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2497) + } else if z.HasExtensions() && z.DecExt(yyv2502) { + } else if !yym2503 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2502) } else { - z.DecFallback(yyv2497, false) + z.DecFallback(yyv2502, false) } } case "nodePort": @@ -32688,9 +32729,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2493) - } // end switch yys2493 - } // end for yyj2493 + z.DecStructFieldNotFound(-1, yys2498) + } // end switch yys2498 + } // end for yyj2498 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32698,16 +32739,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2500 int - var yyb2500 bool - var yyhl2500 bool = l >= 0 - yyj2500++ - if yyhl2500 { - yyb2500 = yyj2500 > l + var yyj2505 int + var yyb2505 bool + var yyhl2505 bool = l >= 0 + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2500 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2500 { + if yyb2505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32717,13 +32758,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2500++ - if yyhl2500 { - yyb2500 = yyj2500 > l + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2500 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2500 { + if yyb2505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32733,13 +32774,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2500++ - if yyhl2500 { - yyb2500 = yyj2500 > l + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2500 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2500 { + if yyb2505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32749,13 +32790,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2500++ - if yyhl2500 { - yyb2500 = yyj2500 > l + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2500 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2500 { + if yyb2505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32763,24 +32804,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2504 := &x.TargetPort - yym2505 := z.DecBinary() - _ = yym2505 + yyv2509 := &x.TargetPort + yym2510 := z.DecBinary() + _ = yym2510 if false { - } else if z.HasExtensions() && z.DecExt(yyv2504) { - } else if !yym2505 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2504) + } else if z.HasExtensions() && z.DecExt(yyv2509) { + } else if !yym2510 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2509) } else { - z.DecFallback(yyv2504, false) + z.DecFallback(yyv2509, false) } } - yyj2500++ - if yyhl2500 { - yyb2500 = yyj2500 > l + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2500 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2500 { + if yyb2505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32791,17 +32832,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj2500++ - if yyhl2500 { - yyb2500 = yyj2500 > l + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2500 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2500 { + if yyb2505 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2500-1, "") + z.DecStructFieldNotFound(yyj2505-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32813,39 +32854,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2507 := z.EncBinary() - _ = yym2507 + yym2512 := z.EncBinary() + _ = yym2512 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2508 := !z.EncBinary() - yy2arr2508 := z.EncBasicHandle().StructToArray - var yyq2508 [5]bool - _, _, _ = yysep2508, yyq2508, yy2arr2508 - const yyr2508 bool = false - yyq2508[0] = x.Kind != "" - yyq2508[1] = x.APIVersion != "" - yyq2508[2] = true - yyq2508[3] = true - yyq2508[4] = true - var yynn2508 int - if yyr2508 || yy2arr2508 { + yysep2513 := !z.EncBinary() + yy2arr2513 := z.EncBasicHandle().StructToArray + var yyq2513 [5]bool + _, _, _ = yysep2513, yyq2513, yy2arr2513 + const yyr2513 bool = false + yyq2513[0] = x.Kind != "" + yyq2513[1] = x.APIVersion != "" + yyq2513[2] = true + yyq2513[3] = true + yyq2513[4] = true + var yynn2513 int + if yyr2513 || yy2arr2513 { r.EncodeArrayStart(5) } else { - yynn2508 = 0 - for _, b := range yyq2508 { + yynn2513 = 0 + for _, b := range yyq2513 { if b { - yynn2508++ + yynn2513++ } } - r.EncodeMapStart(yynn2508) - yynn2508 = 0 + r.EncodeMapStart(yynn2513) + yynn2513 = 0 } - if yyr2508 || yy2arr2508 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2508[0] { - yym2510 := z.EncBinary() - _ = yym2510 + if yyq2513[0] { + yym2515 := z.EncBinary() + _ = yym2515 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32854,23 +32895,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2508[0] { + if yyq2513[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2511 := z.EncBinary() - _ = yym2511 + yym2516 := z.EncBinary() + _ = yym2516 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2508 || yy2arr2508 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2508[1] { - yym2513 := z.EncBinary() - _ = yym2513 + if yyq2513[1] { + yym2518 := z.EncBinary() + _ = yym2518 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32879,70 +32920,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2508[1] { + if yyq2513[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2514 := z.EncBinary() - _ = yym2514 + yym2519 := z.EncBinary() + _ = yym2519 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2508 || yy2arr2508 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2508[2] { - yy2516 := &x.ObjectMeta - yy2516.CodecEncodeSelf(e) + if yyq2513[2] { + yy2521 := &x.ObjectMeta + yy2521.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2508[2] { + if yyq2513[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2517 := &x.ObjectMeta - yy2517.CodecEncodeSelf(e) + yy2522 := &x.ObjectMeta + yy2522.CodecEncodeSelf(e) } } - if yyr2508 || yy2arr2508 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2508[3] { - yy2519 := &x.Spec - yy2519.CodecEncodeSelf(e) + if yyq2513[3] { + yy2524 := &x.Spec + yy2524.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2508[3] { + if yyq2513[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2520 := &x.Spec - yy2520.CodecEncodeSelf(e) + yy2525 := &x.Spec + yy2525.CodecEncodeSelf(e) } } - if yyr2508 || yy2arr2508 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2508[4] { - yy2522 := &x.Status - yy2522.CodecEncodeSelf(e) + if yyq2513[4] { + yy2527 := &x.Status + yy2527.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2508[4] { + if yyq2513[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2523 := &x.Status - yy2523.CodecEncodeSelf(e) + yy2528 := &x.Status + yy2528.CodecEncodeSelf(e) } } - if yyr2508 || yy2arr2508 { + if yyr2513 || yy2arr2513 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32955,25 +32996,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2524 := z.DecBinary() - _ = yym2524 + yym2529 := z.DecBinary() + _ = yym2529 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2525 := r.ContainerType() - if yyct2525 == codecSelferValueTypeMap1234 { - yyl2525 := r.ReadMapStart() - if yyl2525 == 0 { + yyct2530 := r.ContainerType() + if yyct2530 == codecSelferValueTypeMap1234 { + yyl2530 := r.ReadMapStart() + if yyl2530 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2525, d) + x.codecDecodeSelfFromMap(yyl2530, d) } - } else if yyct2525 == codecSelferValueTypeArray1234 { - yyl2525 := r.ReadArrayStart() - if yyl2525 == 0 { + } else if yyct2530 == codecSelferValueTypeArray1234 { + yyl2530 := r.ReadArrayStart() + if yyl2530 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2525, d) + x.codecDecodeSelfFromArray(yyl2530, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32985,12 +33026,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2526Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2526Slc - var yyhl2526 bool = l >= 0 - for yyj2526 := 0; ; yyj2526++ { - if yyhl2526 { - if yyj2526 >= l { + var yys2531Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2531Slc + var yyhl2531 bool = l >= 0 + for yyj2531 := 0; ; yyj2531++ { + if yyhl2531 { + if yyj2531 >= l { break } } else { @@ -32999,10 +33040,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2526Slc = r.DecodeBytes(yys2526Slc, true, true) - yys2526 := string(yys2526Slc) + yys2531Slc = r.DecodeBytes(yys2531Slc, true, true) + yys2531 := string(yys2531Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2526 { + switch yys2531 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33019,27 +33060,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2529 := &x.ObjectMeta - yyv2529.CodecDecodeSelf(d) + yyv2534 := &x.ObjectMeta + yyv2534.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2530 := &x.Spec - yyv2530.CodecDecodeSelf(d) + yyv2535 := &x.Spec + yyv2535.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2531 := &x.Status - yyv2531.CodecDecodeSelf(d) + yyv2536 := &x.Status + yyv2536.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2526) - } // end switch yys2526 - } // end for yyj2526 + z.DecStructFieldNotFound(-1, yys2531) + } // end switch yys2531 + } // end for yyj2531 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33047,16 +33088,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2532 int - var yyb2532 bool - var yyhl2532 bool = l >= 0 - yyj2532++ - if yyhl2532 { - yyb2532 = yyj2532 > l + var yyj2537 int + var yyb2537 bool + var yyhl2537 bool = l >= 0 + yyj2537++ + if yyhl2537 { + yyb2537 = yyj2537 > l } else { - yyb2532 = r.CheckBreak() + yyb2537 = r.CheckBreak() } - if yyb2532 { + if yyb2537 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33066,13 +33107,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2532++ - if yyhl2532 { - yyb2532 = yyj2532 > l + yyj2537++ + if yyhl2537 { + yyb2537 = yyj2537 > l } else { - yyb2532 = r.CheckBreak() + yyb2537 = r.CheckBreak() } - if yyb2532 { + if yyb2537 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33082,13 +33123,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2532++ - if yyhl2532 { - yyb2532 = yyj2532 > l + yyj2537++ + if yyhl2537 { + yyb2537 = yyj2537 > l } else { - yyb2532 = r.CheckBreak() + yyb2537 = r.CheckBreak() } - if yyb2532 { + if yyb2537 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33096,16 +33137,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2535 := &x.ObjectMeta - yyv2535.CodecDecodeSelf(d) + yyv2540 := &x.ObjectMeta + yyv2540.CodecDecodeSelf(d) } - yyj2532++ - if yyhl2532 { - yyb2532 = yyj2532 > l + yyj2537++ + if yyhl2537 { + yyb2537 = yyj2537 > l } else { - yyb2532 = r.CheckBreak() + yyb2537 = r.CheckBreak() } - if yyb2532 { + if yyb2537 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33113,16 +33154,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2536 := &x.Spec - yyv2536.CodecDecodeSelf(d) + yyv2541 := &x.Spec + yyv2541.CodecDecodeSelf(d) } - yyj2532++ - if yyhl2532 { - yyb2532 = yyj2532 > l + yyj2537++ + if yyhl2537 { + yyb2537 = yyj2537 > l } else { - yyb2532 = r.CheckBreak() + yyb2537 = r.CheckBreak() } - if yyb2532 { + if yyb2537 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33130,21 +33171,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2537 := &x.Status - yyv2537.CodecDecodeSelf(d) + yyv2542 := &x.Status + yyv2542.CodecDecodeSelf(d) } for { - yyj2532++ - if yyhl2532 { - yyb2532 = yyj2532 > l + yyj2537++ + if yyhl2537 { + yyb2537 = yyj2537 > l } else { - yyb2532 = r.CheckBreak() + yyb2537 = r.CheckBreak() } - if yyb2532 { + if yyb2537 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2532-1, "") + z.DecStructFieldNotFound(yyj2537-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33156,38 +33197,38 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2538 := z.EncBinary() - _ = yym2538 + yym2543 := z.EncBinary() + _ = yym2543 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2539 := !z.EncBinary() - yy2arr2539 := z.EncBasicHandle().StructToArray - var yyq2539 [5]bool - _, _, _ = yysep2539, yyq2539, yy2arr2539 - const yyr2539 bool = false - yyq2539[0] = x.Kind != "" - yyq2539[1] = x.APIVersion != "" - yyq2539[2] = true - yyq2539[4] = len(x.ImagePullSecrets) != 0 - var yynn2539 int - if yyr2539 || yy2arr2539 { + yysep2544 := !z.EncBinary() + yy2arr2544 := z.EncBasicHandle().StructToArray + var yyq2544 [5]bool + _, _, _ = yysep2544, yyq2544, yy2arr2544 + const yyr2544 bool = false + yyq2544[0] = x.Kind != "" + yyq2544[1] = x.APIVersion != "" + yyq2544[2] = true + yyq2544[4] = len(x.ImagePullSecrets) != 0 + var yynn2544 int + if yyr2544 || yy2arr2544 { r.EncodeArrayStart(5) } else { - yynn2539 = 1 - for _, b := range yyq2539 { + yynn2544 = 1 + for _, b := range yyq2544 { if b { - yynn2539++ + yynn2544++ } } - r.EncodeMapStart(yynn2539) - yynn2539 = 0 + r.EncodeMapStart(yynn2544) + yynn2544 = 0 } - if yyr2539 || yy2arr2539 { + if yyr2544 || yy2arr2544 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2539[0] { - yym2541 := z.EncBinary() - _ = yym2541 + if yyq2544[0] { + yym2546 := z.EncBinary() + _ = yym2546 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33196,23 +33237,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2539[0] { + if yyq2544[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2542 := z.EncBinary() - _ = yym2542 + yym2547 := z.EncBinary() + _ = yym2547 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2539 || yy2arr2539 { + if yyr2544 || yy2arr2544 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2539[1] { - yym2544 := z.EncBinary() - _ = yym2544 + if yyq2544[1] { + yym2549 := z.EncBinary() + _ = yym2549 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33221,42 +33262,42 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2539[1] { + if yyq2544[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2545 := z.EncBinary() - _ = yym2545 + yym2550 := z.EncBinary() + _ = yym2550 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2539 || yy2arr2539 { + if yyr2544 || yy2arr2544 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2539[2] { - yy2547 := &x.ObjectMeta - yy2547.CodecEncodeSelf(e) + if yyq2544[2] { + yy2552 := &x.ObjectMeta + yy2552.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2539[2] { + if yyq2544[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2548 := &x.ObjectMeta - yy2548.CodecEncodeSelf(e) + yy2553 := &x.ObjectMeta + yy2553.CodecEncodeSelf(e) } } - if yyr2539 || yy2arr2539 { + if yyr2544 || yy2arr2544 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2550 := z.EncBinary() - _ = yym2550 + yym2555 := z.EncBinary() + _ = yym2555 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -33269,22 +33310,22 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x.Secrets == nil { r.EncodeNil() } else { - yym2551 := z.EncBinary() - _ = yym2551 + yym2556 := z.EncBinary() + _ = yym2556 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) } } } - if yyr2539 || yy2arr2539 { + if yyr2544 || yy2arr2544 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2539[4] { + if yyq2544[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2553 := z.EncBinary() - _ = yym2553 + yym2558 := z.EncBinary() + _ = yym2558 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -33294,15 +33335,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2539[4] { + if yyq2544[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2554 := z.EncBinary() - _ = yym2554 + yym2559 := z.EncBinary() + _ = yym2559 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -33310,7 +33351,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2539 || yy2arr2539 { + if yyr2544 || yy2arr2544 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33323,25 +33364,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2555 := z.DecBinary() - _ = yym2555 + yym2560 := z.DecBinary() + _ = yym2560 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2556 := r.ContainerType() - if yyct2556 == codecSelferValueTypeMap1234 { - yyl2556 := r.ReadMapStart() - if yyl2556 == 0 { + yyct2561 := r.ContainerType() + if yyct2561 == codecSelferValueTypeMap1234 { + yyl2561 := r.ReadMapStart() + if yyl2561 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2556, d) + x.codecDecodeSelfFromMap(yyl2561, d) } - } else if yyct2556 == codecSelferValueTypeArray1234 { - yyl2556 := r.ReadArrayStart() - if yyl2556 == 0 { + } else if yyct2561 == codecSelferValueTypeArray1234 { + yyl2561 := r.ReadArrayStart() + if yyl2561 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2556, d) + x.codecDecodeSelfFromArray(yyl2561, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33353,12 +33394,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2557Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2557Slc - var yyhl2557 bool = l >= 0 - for yyj2557 := 0; ; yyj2557++ { - if yyhl2557 { - if yyj2557 >= l { + var yys2562Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2562Slc + var yyhl2562 bool = l >= 0 + for yyj2562 := 0; ; yyj2562++ { + if yyhl2562 { + if yyj2562 >= l { break } } else { @@ -33367,10 +33408,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2557Slc = r.DecodeBytes(yys2557Slc, true, true) - yys2557 := string(yys2557Slc) + yys2562Slc = r.DecodeBytes(yys2562Slc, true, true) + yys2562 := string(yys2562Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2557 { + switch yys2562 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33387,37 +33428,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2560 := &x.ObjectMeta - yyv2560.CodecDecodeSelf(d) + yyv2565 := &x.ObjectMeta + yyv2565.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2561 := &x.Secrets - yym2562 := z.DecBinary() - _ = yym2562 + yyv2566 := &x.Secrets + yym2567 := z.DecBinary() + _ = yym2567 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2561), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2566), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2563 := &x.ImagePullSecrets - yym2564 := z.DecBinary() - _ = yym2564 + yyv2568 := &x.ImagePullSecrets + yym2569 := z.DecBinary() + _ = yym2569 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2563), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2568), d) } } default: - z.DecStructFieldNotFound(-1, yys2557) - } // end switch yys2557 - } // end for yyj2557 + z.DecStructFieldNotFound(-1, yys2562) + } // end switch yys2562 + } // end for yyj2562 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33425,16 +33466,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2565 int - var yyb2565 bool - var yyhl2565 bool = l >= 0 - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + var yyj2570 int + var yyb2570 bool + var yyhl2570 bool = l >= 0 + yyj2570++ + if yyhl2570 { + yyb2570 = yyj2570 > l } else { - yyb2565 = r.CheckBreak() + yyb2570 = r.CheckBreak() } - if yyb2565 { + if yyb2570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33444,13 +33485,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2570++ + if yyhl2570 { + yyb2570 = yyj2570 > l } else { - yyb2565 = r.CheckBreak() + yyb2570 = r.CheckBreak() } - if yyb2565 { + if yyb2570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33460,13 +33501,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2570++ + if yyhl2570 { + yyb2570 = yyj2570 > l } else { - yyb2565 = r.CheckBreak() + yyb2570 = r.CheckBreak() } - if yyb2565 { + if yyb2570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33474,16 +33515,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2568 := &x.ObjectMeta - yyv2568.CodecDecodeSelf(d) + yyv2573 := &x.ObjectMeta + yyv2573.CodecDecodeSelf(d) } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2570++ + if yyhl2570 { + yyb2570 = yyj2570 > l } else { - yyb2565 = r.CheckBreak() + yyb2570 = r.CheckBreak() } - if yyb2565 { + if yyb2570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33491,21 +33532,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2569 := &x.Secrets - yym2570 := z.DecBinary() - _ = yym2570 + yyv2574 := &x.Secrets + yym2575 := z.DecBinary() + _ = yym2575 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2569), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2574), d) } } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2570++ + if yyhl2570 { + yyb2570 = yyj2570 > l } else { - yyb2565 = r.CheckBreak() + yyb2570 = r.CheckBreak() } - if yyb2565 { + if yyb2570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33513,26 +33554,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2571 := &x.ImagePullSecrets - yym2572 := z.DecBinary() - _ = yym2572 + yyv2576 := &x.ImagePullSecrets + yym2577 := z.DecBinary() + _ = yym2577 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2571), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2576), d) } } for { - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2570++ + if yyhl2570 { + yyb2570 = yyj2570 > l } else { - yyb2565 = r.CheckBreak() + yyb2570 = r.CheckBreak() } - if yyb2565 { + if yyb2570 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2565-1, "") + z.DecStructFieldNotFound(yyj2570-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33544,37 +33585,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2573 := z.EncBinary() - _ = yym2573 + yym2578 := z.EncBinary() + _ = yym2578 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2574 := !z.EncBinary() - yy2arr2574 := z.EncBasicHandle().StructToArray - var yyq2574 [4]bool - _, _, _ = yysep2574, yyq2574, yy2arr2574 - const yyr2574 bool = false - yyq2574[0] = x.Kind != "" - yyq2574[1] = x.APIVersion != "" - yyq2574[2] = true - var yynn2574 int - if yyr2574 || yy2arr2574 { + yysep2579 := !z.EncBinary() + yy2arr2579 := z.EncBasicHandle().StructToArray + var yyq2579 [4]bool + _, _, _ = yysep2579, yyq2579, yy2arr2579 + const yyr2579 bool = false + yyq2579[0] = x.Kind != "" + yyq2579[1] = x.APIVersion != "" + yyq2579[2] = true + var yynn2579 int + if yyr2579 || yy2arr2579 { r.EncodeArrayStart(4) } else { - yynn2574 = 1 - for _, b := range yyq2574 { + yynn2579 = 1 + for _, b := range yyq2579 { if b { - yynn2574++ + yynn2579++ } } - r.EncodeMapStart(yynn2574) - yynn2574 = 0 + r.EncodeMapStart(yynn2579) + yynn2579 = 0 } - if yyr2574 || yy2arr2574 { + if yyr2579 || yy2arr2579 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2574[0] { - yym2576 := z.EncBinary() - _ = yym2576 + if yyq2579[0] { + yym2581 := z.EncBinary() + _ = yym2581 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33583,23 +33624,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2574[0] { + if yyq2579[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2577 := z.EncBinary() - _ = yym2577 + yym2582 := z.EncBinary() + _ = yym2582 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2574 || yy2arr2574 { + if yyr2579 || yy2arr2579 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2574[1] { - yym2579 := z.EncBinary() - _ = yym2579 + if yyq2579[1] { + yym2584 := z.EncBinary() + _ = yym2584 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33608,54 +33649,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2574[1] { + if yyq2579[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2580 := z.EncBinary() - _ = yym2580 + yym2585 := z.EncBinary() + _ = yym2585 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2574 || yy2arr2574 { + if yyr2579 || yy2arr2579 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2574[2] { - yy2582 := &x.ListMeta - yym2583 := z.EncBinary() - _ = yym2583 + if yyq2579[2] { + yy2587 := &x.ListMeta + yym2588 := z.EncBinary() + _ = yym2588 if false { - } else if z.HasExtensions() && z.EncExt(yy2582) { + } else if z.HasExtensions() && z.EncExt(yy2587) { } else { - z.EncFallback(yy2582) + z.EncFallback(yy2587) } } else { r.EncodeNil() } } else { - if yyq2574[2] { + if yyq2579[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2584 := &x.ListMeta - yym2585 := z.EncBinary() - _ = yym2585 + yy2589 := &x.ListMeta + yym2590 := z.EncBinary() + _ = yym2590 if false { - } else if z.HasExtensions() && z.EncExt(yy2584) { + } else if z.HasExtensions() && z.EncExt(yy2589) { } else { - z.EncFallback(yy2584) + z.EncFallback(yy2589) } } } - if yyr2574 || yy2arr2574 { + if yyr2579 || yy2arr2579 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2587 := z.EncBinary() - _ = yym2587 + yym2592 := z.EncBinary() + _ = yym2592 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -33668,15 +33709,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2588 := z.EncBinary() - _ = yym2588 + yym2593 := z.EncBinary() + _ = yym2593 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2574 || yy2arr2574 { + if yyr2579 || yy2arr2579 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33689,25 +33730,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2589 := z.DecBinary() - _ = yym2589 + yym2594 := z.DecBinary() + _ = yym2594 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2590 := r.ContainerType() - if yyct2590 == codecSelferValueTypeMap1234 { - yyl2590 := r.ReadMapStart() - if yyl2590 == 0 { + yyct2595 := r.ContainerType() + if yyct2595 == codecSelferValueTypeMap1234 { + yyl2595 := r.ReadMapStart() + if yyl2595 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2590, d) + x.codecDecodeSelfFromMap(yyl2595, d) } - } else if yyct2590 == codecSelferValueTypeArray1234 { - yyl2590 := r.ReadArrayStart() - if yyl2590 == 0 { + } else if yyct2595 == codecSelferValueTypeArray1234 { + yyl2595 := r.ReadArrayStart() + if yyl2595 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2590, d) + x.codecDecodeSelfFromArray(yyl2595, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33719,12 +33760,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2591Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2591Slc - var yyhl2591 bool = l >= 0 - for yyj2591 := 0; ; yyj2591++ { - if yyhl2591 { - if yyj2591 >= l { + var yys2596Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2596Slc + var yyhl2596 bool = l >= 0 + for yyj2596 := 0; ; yyj2596++ { + if yyhl2596 { + if yyj2596 >= l { break } } else { @@ -33733,10 +33774,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2591Slc = r.DecodeBytes(yys2591Slc, true, true) - yys2591 := string(yys2591Slc) + yys2596Slc = r.DecodeBytes(yys2596Slc, true, true) + yys2596 := string(yys2596Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2591 { + switch yys2596 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33753,31 +33794,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2594 := &x.ListMeta - yym2595 := z.DecBinary() - _ = yym2595 + yyv2599 := &x.ListMeta + yym2600 := z.DecBinary() + _ = yym2600 if false { - } else if z.HasExtensions() && z.DecExt(yyv2594) { + } else if z.HasExtensions() && z.DecExt(yyv2599) { } else { - z.DecFallback(yyv2594, false) + z.DecFallback(yyv2599, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2596 := &x.Items - yym2597 := z.DecBinary() - _ = yym2597 + yyv2601 := &x.Items + yym2602 := z.DecBinary() + _ = yym2602 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2596), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2601), d) } } default: - z.DecStructFieldNotFound(-1, yys2591) - } // end switch yys2591 - } // end for yyj2591 + z.DecStructFieldNotFound(-1, yys2596) + } // end switch yys2596 + } // end for yyj2596 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33785,16 +33826,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2598 int - var yyb2598 bool - var yyhl2598 bool = l >= 0 - yyj2598++ - if yyhl2598 { - yyb2598 = yyj2598 > l + var yyj2603 int + var yyb2603 bool + var yyhl2603 bool = l >= 0 + yyj2603++ + if yyhl2603 { + yyb2603 = yyj2603 > l } else { - yyb2598 = r.CheckBreak() + yyb2603 = r.CheckBreak() } - if yyb2598 { + if yyb2603 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33804,13 +33845,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2598++ - if yyhl2598 { - yyb2598 = yyj2598 > l + yyj2603++ + if yyhl2603 { + yyb2603 = yyj2603 > l } else { - yyb2598 = r.CheckBreak() + yyb2603 = r.CheckBreak() } - if yyb2598 { + if yyb2603 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33820,13 +33861,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2598++ - if yyhl2598 { - yyb2598 = yyj2598 > l + yyj2603++ + if yyhl2603 { + yyb2603 = yyj2603 > l } else { - yyb2598 = r.CheckBreak() + yyb2603 = r.CheckBreak() } - if yyb2598 { + if yyb2603 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33834,22 +33875,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2601 := &x.ListMeta - yym2602 := z.DecBinary() - _ = yym2602 + yyv2606 := &x.ListMeta + yym2607 := z.DecBinary() + _ = yym2607 if false { - } else if z.HasExtensions() && z.DecExt(yyv2601) { + } else if z.HasExtensions() && z.DecExt(yyv2606) { } else { - z.DecFallback(yyv2601, false) + z.DecFallback(yyv2606, false) } } - yyj2598++ - if yyhl2598 { - yyb2598 = yyj2598 > l + yyj2603++ + if yyhl2603 { + yyb2603 = yyj2603 > l } else { - yyb2598 = r.CheckBreak() + yyb2603 = r.CheckBreak() } - if yyb2598 { + if yyb2603 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33857,26 +33898,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2603 := &x.Items - yym2604 := z.DecBinary() - _ = yym2604 + yyv2608 := &x.Items + yym2609 := z.DecBinary() + _ = yym2609 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2603), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2608), d) } } for { - yyj2598++ - if yyhl2598 { - yyb2598 = yyj2598 > l + yyj2603++ + if yyhl2603 { + yyb2603 = yyj2603 > l } else { - yyb2598 = r.CheckBreak() + yyb2603 = r.CheckBreak() } - if yyb2598 { + if yyb2603 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2598-1, "") + z.DecStructFieldNotFound(yyj2603-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33888,37 +33929,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2605 := z.EncBinary() - _ = yym2605 + yym2610 := z.EncBinary() + _ = yym2610 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2606 := !z.EncBinary() - yy2arr2606 := z.EncBasicHandle().StructToArray - var yyq2606 [4]bool - _, _, _ = yysep2606, yyq2606, yy2arr2606 - const yyr2606 bool = false - yyq2606[0] = x.Kind != "" - yyq2606[1] = x.APIVersion != "" - yyq2606[2] = true - var yynn2606 int - if yyr2606 || yy2arr2606 { + yysep2611 := !z.EncBinary() + yy2arr2611 := z.EncBasicHandle().StructToArray + var yyq2611 [4]bool + _, _, _ = yysep2611, yyq2611, yy2arr2611 + const yyr2611 bool = false + yyq2611[0] = x.Kind != "" + yyq2611[1] = x.APIVersion != "" + yyq2611[2] = true + var yynn2611 int + if yyr2611 || yy2arr2611 { r.EncodeArrayStart(4) } else { - yynn2606 = 1 - for _, b := range yyq2606 { + yynn2611 = 1 + for _, b := range yyq2611 { if b { - yynn2606++ + yynn2611++ } } - r.EncodeMapStart(yynn2606) - yynn2606 = 0 + r.EncodeMapStart(yynn2611) + yynn2611 = 0 } - if yyr2606 || yy2arr2606 { + if yyr2611 || yy2arr2611 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2606[0] { - yym2608 := z.EncBinary() - _ = yym2608 + if yyq2611[0] { + yym2613 := z.EncBinary() + _ = yym2613 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33927,23 +33968,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2606[0] { + if yyq2611[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2609 := z.EncBinary() - _ = yym2609 + yym2614 := z.EncBinary() + _ = yym2614 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2606 || yy2arr2606 { + if yyr2611 || yy2arr2611 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2606[1] { - yym2611 := z.EncBinary() - _ = yym2611 + if yyq2611[1] { + yym2616 := z.EncBinary() + _ = yym2616 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33952,42 +33993,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2606[1] { + if yyq2611[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2612 := z.EncBinary() - _ = yym2612 + yym2617 := z.EncBinary() + _ = yym2617 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2606 || yy2arr2606 { + if yyr2611 || yy2arr2611 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2606[2] { - yy2614 := &x.ObjectMeta - yy2614.CodecEncodeSelf(e) + if yyq2611[2] { + yy2619 := &x.ObjectMeta + yy2619.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2606[2] { + if yyq2611[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2615 := &x.ObjectMeta - yy2615.CodecEncodeSelf(e) + yy2620 := &x.ObjectMeta + yy2620.CodecEncodeSelf(e) } } - if yyr2606 || yy2arr2606 { + if yyr2611 || yy2arr2611 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2617 := z.EncBinary() - _ = yym2617 + yym2622 := z.EncBinary() + _ = yym2622 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -34000,15 +34041,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2618 := z.EncBinary() - _ = yym2618 + yym2623 := z.EncBinary() + _ = yym2623 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2606 || yy2arr2606 { + if yyr2611 || yy2arr2611 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34021,25 +34062,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2619 := z.DecBinary() - _ = yym2619 + yym2624 := z.DecBinary() + _ = yym2624 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2620 := r.ContainerType() - if yyct2620 == codecSelferValueTypeMap1234 { - yyl2620 := r.ReadMapStart() - if yyl2620 == 0 { + yyct2625 := r.ContainerType() + if yyct2625 == codecSelferValueTypeMap1234 { + yyl2625 := r.ReadMapStart() + if yyl2625 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2620, d) + x.codecDecodeSelfFromMap(yyl2625, d) } - } else if yyct2620 == codecSelferValueTypeArray1234 { - yyl2620 := r.ReadArrayStart() - if yyl2620 == 0 { + } else if yyct2625 == codecSelferValueTypeArray1234 { + yyl2625 := r.ReadArrayStart() + if yyl2625 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2620, d) + x.codecDecodeSelfFromArray(yyl2625, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34051,12 +34092,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2621Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2621Slc - var yyhl2621 bool = l >= 0 - for yyj2621 := 0; ; yyj2621++ { - if yyhl2621 { - if yyj2621 >= l { + var yys2626Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2626Slc + var yyhl2626 bool = l >= 0 + for yyj2626 := 0; ; yyj2626++ { + if yyhl2626 { + if yyj2626 >= l { break } } else { @@ -34065,10 +34106,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2621Slc = r.DecodeBytes(yys2621Slc, true, true) - yys2621 := string(yys2621Slc) + yys2626Slc = r.DecodeBytes(yys2626Slc, true, true) + yys2626 := string(yys2626Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2621 { + switch yys2626 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34085,25 +34126,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2624 := &x.ObjectMeta - yyv2624.CodecDecodeSelf(d) + yyv2629 := &x.ObjectMeta + yyv2629.CodecDecodeSelf(d) } case "Subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2625 := &x.Subsets - yym2626 := z.DecBinary() - _ = yym2626 + yyv2630 := &x.Subsets + yym2631 := z.DecBinary() + _ = yym2631 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2625), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2630), d) } } default: - z.DecStructFieldNotFound(-1, yys2621) - } // end switch yys2621 - } // end for yyj2621 + z.DecStructFieldNotFound(-1, yys2626) + } // end switch yys2626 + } // end for yyj2626 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34111,16 +34152,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2627 int - var yyb2627 bool - var yyhl2627 bool = l >= 0 - yyj2627++ - if yyhl2627 { - yyb2627 = yyj2627 > l + var yyj2632 int + var yyb2632 bool + var yyhl2632 bool = l >= 0 + yyj2632++ + if yyhl2632 { + yyb2632 = yyj2632 > l } else { - yyb2627 = r.CheckBreak() + yyb2632 = r.CheckBreak() } - if yyb2627 { + if yyb2632 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34130,13 +34171,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2627++ - if yyhl2627 { - yyb2627 = yyj2627 > l + yyj2632++ + if yyhl2632 { + yyb2632 = yyj2632 > l } else { - yyb2627 = r.CheckBreak() + yyb2632 = r.CheckBreak() } - if yyb2627 { + if yyb2632 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34146,13 +34187,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2627++ - if yyhl2627 { - yyb2627 = yyj2627 > l + yyj2632++ + if yyhl2632 { + yyb2632 = yyj2632 > l } else { - yyb2627 = r.CheckBreak() + yyb2632 = r.CheckBreak() } - if yyb2627 { + if yyb2632 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34160,16 +34201,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2630 := &x.ObjectMeta - yyv2630.CodecDecodeSelf(d) + yyv2635 := &x.ObjectMeta + yyv2635.CodecDecodeSelf(d) } - yyj2627++ - if yyhl2627 { - yyb2627 = yyj2627 > l + yyj2632++ + if yyhl2632 { + yyb2632 = yyj2632 > l } else { - yyb2627 = r.CheckBreak() + yyb2632 = r.CheckBreak() } - if yyb2627 { + if yyb2632 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34177,26 +34218,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2631 := &x.Subsets - yym2632 := z.DecBinary() - _ = yym2632 + yyv2636 := &x.Subsets + yym2637 := z.DecBinary() + _ = yym2637 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2631), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2636), d) } } for { - yyj2627++ - if yyhl2627 { - yyb2627 = yyj2627 > l + yyj2632++ + if yyhl2632 { + yyb2632 = yyj2632 > l } else { - yyb2627 = r.CheckBreak() + yyb2632 = r.CheckBreak() } - if yyb2627 { + if yyb2632 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2627-1, "") + z.DecStructFieldNotFound(yyj2632-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34208,36 +34249,36 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2633 := z.EncBinary() - _ = yym2633 + yym2638 := z.EncBinary() + _ = yym2638 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2634 := !z.EncBinary() - yy2arr2634 := z.EncBasicHandle().StructToArray - var yyq2634 [3]bool - _, _, _ = yysep2634, yyq2634, yy2arr2634 - const yyr2634 bool = false - var yynn2634 int - if yyr2634 || yy2arr2634 { + yysep2639 := !z.EncBinary() + yy2arr2639 := z.EncBasicHandle().StructToArray + var yyq2639 [3]bool + _, _, _ = yysep2639, yyq2639, yy2arr2639 + const yyr2639 bool = false + var yynn2639 int + if yyr2639 || yy2arr2639 { r.EncodeArrayStart(3) } else { - yynn2634 = 3 - for _, b := range yyq2634 { + yynn2639 = 3 + for _, b := range yyq2639 { if b { - yynn2634++ + yynn2639++ } } - r.EncodeMapStart(yynn2634) - yynn2634 = 0 + r.EncodeMapStart(yynn2639) + yynn2639 = 0 } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2636 := z.EncBinary() - _ = yym2636 + yym2641 := z.EncBinary() + _ = yym2641 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -34250,21 +34291,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Addresses == nil { r.EncodeNil() } else { - yym2637 := z.EncBinary() - _ = yym2637 + yym2642 := z.EncBinary() + _ = yym2642 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2639 := z.EncBinary() - _ = yym2639 + yym2644 := z.EncBinary() + _ = yym2644 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -34277,21 +34318,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2640 := z.EncBinary() - _ = yym2640 + yym2645 := z.EncBinary() + _ = yym2645 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2642 := z.EncBinary() - _ = yym2642 + yym2647 := z.EncBinary() + _ = yym2647 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -34304,15 +34345,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2643 := z.EncBinary() - _ = yym2643 + yym2648 := z.EncBinary() + _ = yym2648 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34325,25 +34366,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2644 := z.DecBinary() - _ = yym2644 + yym2649 := z.DecBinary() + _ = yym2649 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2645 := r.ContainerType() - if yyct2645 == codecSelferValueTypeMap1234 { - yyl2645 := r.ReadMapStart() - if yyl2645 == 0 { + yyct2650 := r.ContainerType() + if yyct2650 == codecSelferValueTypeMap1234 { + yyl2650 := r.ReadMapStart() + if yyl2650 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2645, d) + x.codecDecodeSelfFromMap(yyl2650, d) } - } else if yyct2645 == codecSelferValueTypeArray1234 { - yyl2645 := r.ReadArrayStart() - if yyl2645 == 0 { + } else if yyct2650 == codecSelferValueTypeArray1234 { + yyl2650 := r.ReadArrayStart() + if yyl2650 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2645, d) + x.codecDecodeSelfFromArray(yyl2650, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34355,12 +34396,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2646Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2646Slc - var yyhl2646 bool = l >= 0 - for yyj2646 := 0; ; yyj2646++ { - if yyhl2646 { - if yyj2646 >= l { + var yys2651Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2651Slc + var yyhl2651 bool = l >= 0 + for yyj2651 := 0; ; yyj2651++ { + if yyhl2651 { + if yyj2651 >= l { break } } else { @@ -34369,50 +34410,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2646Slc = r.DecodeBytes(yys2646Slc, true, true) - yys2646 := string(yys2646Slc) + yys2651Slc = r.DecodeBytes(yys2651Slc, true, true) + yys2651 := string(yys2651Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2646 { + switch yys2651 { case "Addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2647 := &x.Addresses - yym2648 := z.DecBinary() - _ = yym2648 + yyv2652 := &x.Addresses + yym2653 := z.DecBinary() + _ = yym2653 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2647), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2652), d) } } case "NotReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2649 := &x.NotReadyAddresses - yym2650 := z.DecBinary() - _ = yym2650 + yyv2654 := &x.NotReadyAddresses + yym2655 := z.DecBinary() + _ = yym2655 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2649), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2654), d) } } case "Ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2651 := &x.Ports - yym2652 := z.DecBinary() - _ = yym2652 + yyv2656 := &x.Ports + yym2657 := z.DecBinary() + _ = yym2657 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2651), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2656), d) } } default: - z.DecStructFieldNotFound(-1, yys2646) - } // end switch yys2646 - } // end for yyj2646 + z.DecStructFieldNotFound(-1, yys2651) + } // end switch yys2651 + } // end for yyj2651 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34420,16 +34461,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2653 int - var yyb2653 bool - var yyhl2653 bool = l >= 0 - yyj2653++ - if yyhl2653 { - yyb2653 = yyj2653 > l + var yyj2658 int + var yyb2658 bool + var yyhl2658 bool = l >= 0 + yyj2658++ + if yyhl2658 { + yyb2658 = yyj2658 > l } else { - yyb2653 = r.CheckBreak() + yyb2658 = r.CheckBreak() } - if yyb2653 { + if yyb2658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34437,21 +34478,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2654 := &x.Addresses - yym2655 := z.DecBinary() - _ = yym2655 + yyv2659 := &x.Addresses + yym2660 := z.DecBinary() + _ = yym2660 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2654), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2659), d) } } - yyj2653++ - if yyhl2653 { - yyb2653 = yyj2653 > l + yyj2658++ + if yyhl2658 { + yyb2658 = yyj2658 > l } else { - yyb2653 = r.CheckBreak() + yyb2658 = r.CheckBreak() } - if yyb2653 { + if yyb2658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34459,21 +34500,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2656 := &x.NotReadyAddresses - yym2657 := z.DecBinary() - _ = yym2657 + yyv2661 := &x.NotReadyAddresses + yym2662 := z.DecBinary() + _ = yym2662 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2656), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2661), d) } } - yyj2653++ - if yyhl2653 { - yyb2653 = yyj2653 > l + yyj2658++ + if yyhl2658 { + yyb2658 = yyj2658 > l } else { - yyb2653 = r.CheckBreak() + yyb2658 = r.CheckBreak() } - if yyb2653 { + if yyb2658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34481,26 +34522,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2658 := &x.Ports - yym2659 := z.DecBinary() - _ = yym2659 + yyv2663 := &x.Ports + yym2664 := z.DecBinary() + _ = yym2664 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2658), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2663), d) } } for { - yyj2653++ - if yyhl2653 { - yyb2653 = yyj2653 > l + yyj2658++ + if yyhl2658 { + yyb2658 = yyj2658 > l } else { - yyb2653 = r.CheckBreak() + yyb2658 = r.CheckBreak() } - if yyb2653 { + if yyb2658 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2653-1, "") + z.DecStructFieldNotFound(yyj2658-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34512,34 +34553,34 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2660 := z.EncBinary() - _ = yym2660 + yym2665 := z.EncBinary() + _ = yym2665 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2661 := !z.EncBinary() - yy2arr2661 := z.EncBasicHandle().StructToArray - var yyq2661 [3]bool - _, _, _ = yysep2661, yyq2661, yy2arr2661 - const yyr2661 bool = false - yyq2661[1] = x.Hostname != "" - var yynn2661 int - if yyr2661 || yy2arr2661 { + yysep2666 := !z.EncBinary() + yy2arr2666 := z.EncBasicHandle().StructToArray + var yyq2666 [3]bool + _, _, _ = yysep2666, yyq2666, yy2arr2666 + const yyr2666 bool = false + yyq2666[1] = x.Hostname != "" + var yynn2666 int + if yyr2666 || yy2arr2666 { r.EncodeArrayStart(3) } else { - yynn2661 = 2 - for _, b := range yyq2661 { + yynn2666 = 2 + for _, b := range yyq2666 { if b { - yynn2661++ + yynn2666++ } } - r.EncodeMapStart(yynn2661) - yynn2661 = 0 + r.EncodeMapStart(yynn2666) + yynn2666 = 0 } - if yyr2661 || yy2arr2661 { + if yyr2666 || yy2arr2666 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2663 := z.EncBinary() - _ = yym2663 + yym2668 := z.EncBinary() + _ = yym2668 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -34548,18 +34589,18 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("IP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2664 := z.EncBinary() - _ = yym2664 + yym2669 := z.EncBinary() + _ = yym2669 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2661 || yy2arr2661 { + if yyr2666 || yy2arr2666 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2661[1] { - yym2666 := z.EncBinary() - _ = yym2666 + if yyq2666[1] { + yym2671 := z.EncBinary() + _ = yym2671 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -34568,19 +34609,19 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2661[1] { + if yyq2666[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2667 := z.EncBinary() - _ = yym2667 + yym2672 := z.EncBinary() + _ = yym2672 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2661 || yy2arr2661 { + if yyr2666 || yy2arr2666 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TargetRef == nil { r.EncodeNil() @@ -34597,7 +34638,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { x.TargetRef.CodecEncodeSelf(e) } } - if yyr2661 || yy2arr2661 { + if yyr2666 || yy2arr2666 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34610,25 +34651,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2669 := z.DecBinary() - _ = yym2669 + yym2674 := z.DecBinary() + _ = yym2674 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2670 := r.ContainerType() - if yyct2670 == codecSelferValueTypeMap1234 { - yyl2670 := r.ReadMapStart() - if yyl2670 == 0 { + yyct2675 := r.ContainerType() + if yyct2675 == codecSelferValueTypeMap1234 { + yyl2675 := r.ReadMapStart() + if yyl2675 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2670, d) + x.codecDecodeSelfFromMap(yyl2675, d) } - } else if yyct2670 == codecSelferValueTypeArray1234 { - yyl2670 := r.ReadArrayStart() - if yyl2670 == 0 { + } else if yyct2675 == codecSelferValueTypeArray1234 { + yyl2675 := r.ReadArrayStart() + if yyl2675 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2670, d) + x.codecDecodeSelfFromArray(yyl2675, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34640,12 +34681,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2671Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2671Slc - var yyhl2671 bool = l >= 0 - for yyj2671 := 0; ; yyj2671++ { - if yyhl2671 { - if yyj2671 >= l { + var yys2676Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2676Slc + var yyhl2676 bool = l >= 0 + for yyj2676 := 0; ; yyj2676++ { + if yyhl2676 { + if yyj2676 >= l { break } } else { @@ -34654,10 +34695,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2671Slc = r.DecodeBytes(yys2671Slc, true, true) - yys2671 := string(yys2671Slc) + yys2676Slc = r.DecodeBytes(yys2676Slc, true, true) + yys2676 := string(yys2676Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2671 { + switch yys2676 { case "IP": if r.TryDecodeAsNil() { x.IP = "" @@ -34682,9 +34723,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2671) - } // end switch yys2671 - } // end for yyj2671 + z.DecStructFieldNotFound(-1, yys2676) + } // end switch yys2676 + } // end for yyj2676 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34692,16 +34733,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2675 int - var yyb2675 bool - var yyhl2675 bool = l >= 0 - yyj2675++ - if yyhl2675 { - yyb2675 = yyj2675 > l + var yyj2680 int + var yyb2680 bool + var yyhl2680 bool = l >= 0 + yyj2680++ + if yyhl2680 { + yyb2680 = yyj2680 > l } else { - yyb2675 = r.CheckBreak() + yyb2680 = r.CheckBreak() } - if yyb2675 { + if yyb2680 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34711,13 +34752,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2675++ - if yyhl2675 { - yyb2675 = yyj2675 > l + yyj2680++ + if yyhl2680 { + yyb2680 = yyj2680 > l } else { - yyb2675 = r.CheckBreak() + yyb2680 = r.CheckBreak() } - if yyb2675 { + if yyb2680 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34727,13 +34768,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Hostname = string(r.DecodeString()) } - yyj2675++ - if yyhl2675 { - yyb2675 = yyj2675 > l + yyj2680++ + if yyhl2680 { + yyb2680 = yyj2680 > l } else { - yyb2675 = r.CheckBreak() + yyb2680 = r.CheckBreak() } - if yyb2675 { + if yyb2680 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34749,17 +34790,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2675++ - if yyhl2675 { - yyb2675 = yyj2675 > l + yyj2680++ + if yyhl2680 { + yyb2680 = yyj2680 > l } else { - yyb2675 = r.CheckBreak() + yyb2680 = r.CheckBreak() } - if yyb2675 { + if yyb2680 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2675-1, "") + z.DecStructFieldNotFound(yyj2680-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34771,33 +34812,33 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2679 := z.EncBinary() - _ = yym2679 + yym2684 := z.EncBinary() + _ = yym2684 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2680 := !z.EncBinary() - yy2arr2680 := z.EncBasicHandle().StructToArray - var yyq2680 [3]bool - _, _, _ = yysep2680, yyq2680, yy2arr2680 - const yyr2680 bool = false - var yynn2680 int - if yyr2680 || yy2arr2680 { + yysep2685 := !z.EncBinary() + yy2arr2685 := z.EncBasicHandle().StructToArray + var yyq2685 [3]bool + _, _, _ = yysep2685, yyq2685, yy2arr2685 + const yyr2685 bool = false + var yynn2685 int + if yyr2685 || yy2arr2685 { r.EncodeArrayStart(3) } else { - yynn2680 = 3 - for _, b := range yyq2680 { + yynn2685 = 3 + for _, b := range yyq2685 { if b { - yynn2680++ + yynn2685++ } } - r.EncodeMapStart(yynn2680) - yynn2680 = 0 + r.EncodeMapStart(yynn2685) + yynn2685 = 0 } - if yyr2680 || yy2arr2680 { + if yyr2685 || yy2arr2685 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2682 := z.EncBinary() - _ = yym2682 + yym2687 := z.EncBinary() + _ = yym2687 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -34806,17 +34847,17 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2683 := z.EncBinary() - _ = yym2683 + yym2688 := z.EncBinary() + _ = yym2688 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2680 || yy2arr2680 { + if yyr2685 || yy2arr2685 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2685 := z.EncBinary() - _ = yym2685 + yym2690 := z.EncBinary() + _ = yym2690 if false { } else { r.EncodeInt(int64(x.Port)) @@ -34825,14 +34866,14 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2686 := z.EncBinary() - _ = yym2686 + yym2691 := z.EncBinary() + _ = yym2691 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2680 || yy2arr2680 { + if yyr2685 || yy2arr2685 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -34841,7 +34882,7 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2680 || yy2arr2680 { + if yyr2685 || yy2arr2685 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34854,25 +34895,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2688 := z.DecBinary() - _ = yym2688 + yym2693 := z.DecBinary() + _ = yym2693 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2689 := r.ContainerType() - if yyct2689 == codecSelferValueTypeMap1234 { - yyl2689 := r.ReadMapStart() - if yyl2689 == 0 { + yyct2694 := r.ContainerType() + if yyct2694 == codecSelferValueTypeMap1234 { + yyl2694 := r.ReadMapStart() + if yyl2694 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2689, d) + x.codecDecodeSelfFromMap(yyl2694, d) } - } else if yyct2689 == codecSelferValueTypeArray1234 { - yyl2689 := r.ReadArrayStart() - if yyl2689 == 0 { + } else if yyct2694 == codecSelferValueTypeArray1234 { + yyl2694 := r.ReadArrayStart() + if yyl2694 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2689, d) + x.codecDecodeSelfFromArray(yyl2694, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34884,12 +34925,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2690Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2690Slc - var yyhl2690 bool = l >= 0 - for yyj2690 := 0; ; yyj2690++ { - if yyhl2690 { - if yyj2690 >= l { + var yys2695Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2695Slc + var yyhl2695 bool = l >= 0 + for yyj2695 := 0; ; yyj2695++ { + if yyhl2695 { + if yyj2695 >= l { break } } else { @@ -34898,10 +34939,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2690Slc = r.DecodeBytes(yys2690Slc, true, true) - yys2690 := string(yys2690Slc) + yys2695Slc = r.DecodeBytes(yys2695Slc, true, true) + yys2695 := string(yys2695Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2690 { + switch yys2695 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -34921,9 +34962,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2690) - } // end switch yys2690 - } // end for yyj2690 + z.DecStructFieldNotFound(-1, yys2695) + } // end switch yys2695 + } // end for yyj2695 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34931,16 +34972,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2694 int - var yyb2694 bool - var yyhl2694 bool = l >= 0 - yyj2694++ - if yyhl2694 { - yyb2694 = yyj2694 > l + var yyj2699 int + var yyb2699 bool + var yyhl2699 bool = l >= 0 + yyj2699++ + if yyhl2699 { + yyb2699 = yyj2699 > l } else { - yyb2694 = r.CheckBreak() + yyb2699 = r.CheckBreak() } - if yyb2694 { + if yyb2699 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34950,13 +34991,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2694++ - if yyhl2694 { - yyb2694 = yyj2694 > l + yyj2699++ + if yyhl2699 { + yyb2699 = yyj2699 > l } else { - yyb2694 = r.CheckBreak() + yyb2699 = r.CheckBreak() } - if yyb2694 { + if yyb2699 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34966,13 +35007,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2694++ - if yyhl2694 { - yyb2694 = yyj2694 > l + yyj2699++ + if yyhl2699 { + yyb2699 = yyj2699 > l } else { - yyb2694 = r.CheckBreak() + yyb2699 = r.CheckBreak() } - if yyb2694 { + if yyb2699 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34983,17 +35024,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2694++ - if yyhl2694 { - yyb2694 = yyj2694 > l + yyj2699++ + if yyhl2699 { + yyb2699 = yyj2699 > l } else { - yyb2694 = r.CheckBreak() + yyb2699 = r.CheckBreak() } - if yyb2694 { + if yyb2699 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2694-1, "") + z.DecStructFieldNotFound(yyj2699-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35005,37 +35046,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2698 := z.EncBinary() - _ = yym2698 + yym2703 := z.EncBinary() + _ = yym2703 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2699 := !z.EncBinary() - yy2arr2699 := z.EncBasicHandle().StructToArray - var yyq2699 [4]bool - _, _, _ = yysep2699, yyq2699, yy2arr2699 - const yyr2699 bool = false - yyq2699[0] = x.Kind != "" - yyq2699[1] = x.APIVersion != "" - yyq2699[2] = true - var yynn2699 int - if yyr2699 || yy2arr2699 { + yysep2704 := !z.EncBinary() + yy2arr2704 := z.EncBasicHandle().StructToArray + var yyq2704 [4]bool + _, _, _ = yysep2704, yyq2704, yy2arr2704 + const yyr2704 bool = false + yyq2704[0] = x.Kind != "" + yyq2704[1] = x.APIVersion != "" + yyq2704[2] = true + var yynn2704 int + if yyr2704 || yy2arr2704 { r.EncodeArrayStart(4) } else { - yynn2699 = 1 - for _, b := range yyq2699 { + yynn2704 = 1 + for _, b := range yyq2704 { if b { - yynn2699++ + yynn2704++ } } - r.EncodeMapStart(yynn2699) - yynn2699 = 0 + r.EncodeMapStart(yynn2704) + yynn2704 = 0 } - if yyr2699 || yy2arr2699 { + if yyr2704 || yy2arr2704 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2699[0] { - yym2701 := z.EncBinary() - _ = yym2701 + if yyq2704[0] { + yym2706 := z.EncBinary() + _ = yym2706 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35044,23 +35085,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2699[0] { + if yyq2704[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2702 := z.EncBinary() - _ = yym2702 + yym2707 := z.EncBinary() + _ = yym2707 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2699 || yy2arr2699 { + if yyr2704 || yy2arr2704 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2699[1] { - yym2704 := z.EncBinary() - _ = yym2704 + if yyq2704[1] { + yym2709 := z.EncBinary() + _ = yym2709 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35069,54 +35110,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2699[1] { + if yyq2704[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2705 := z.EncBinary() - _ = yym2705 + yym2710 := z.EncBinary() + _ = yym2710 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2699 || yy2arr2699 { + if yyr2704 || yy2arr2704 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2699[2] { - yy2707 := &x.ListMeta - yym2708 := z.EncBinary() - _ = yym2708 + if yyq2704[2] { + yy2712 := &x.ListMeta + yym2713 := z.EncBinary() + _ = yym2713 if false { - } else if z.HasExtensions() && z.EncExt(yy2707) { + } else if z.HasExtensions() && z.EncExt(yy2712) { } else { - z.EncFallback(yy2707) + z.EncFallback(yy2712) } } else { r.EncodeNil() } } else { - if yyq2699[2] { + if yyq2704[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2709 := &x.ListMeta - yym2710 := z.EncBinary() - _ = yym2710 + yy2714 := &x.ListMeta + yym2715 := z.EncBinary() + _ = yym2715 if false { - } else if z.HasExtensions() && z.EncExt(yy2709) { + } else if z.HasExtensions() && z.EncExt(yy2714) { } else { - z.EncFallback(yy2709) + z.EncFallback(yy2714) } } } - if yyr2699 || yy2arr2699 { + if yyr2704 || yy2arr2704 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2712 := z.EncBinary() - _ = yym2712 + yym2717 := z.EncBinary() + _ = yym2717 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -35129,15 +35170,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2713 := z.EncBinary() - _ = yym2713 + yym2718 := z.EncBinary() + _ = yym2718 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2699 || yy2arr2699 { + if yyr2704 || yy2arr2704 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35150,25 +35191,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2714 := z.DecBinary() - _ = yym2714 + yym2719 := z.DecBinary() + _ = yym2719 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2715 := r.ContainerType() - if yyct2715 == codecSelferValueTypeMap1234 { - yyl2715 := r.ReadMapStart() - if yyl2715 == 0 { + yyct2720 := r.ContainerType() + if yyct2720 == codecSelferValueTypeMap1234 { + yyl2720 := r.ReadMapStart() + if yyl2720 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2715, d) + x.codecDecodeSelfFromMap(yyl2720, d) } - } else if yyct2715 == codecSelferValueTypeArray1234 { - yyl2715 := r.ReadArrayStart() - if yyl2715 == 0 { + } else if yyct2720 == codecSelferValueTypeArray1234 { + yyl2720 := r.ReadArrayStart() + if yyl2720 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2715, d) + x.codecDecodeSelfFromArray(yyl2720, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35180,12 +35221,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2716Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2716Slc - var yyhl2716 bool = l >= 0 - for yyj2716 := 0; ; yyj2716++ { - if yyhl2716 { - if yyj2716 >= l { + var yys2721Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2721Slc + var yyhl2721 bool = l >= 0 + for yyj2721 := 0; ; yyj2721++ { + if yyhl2721 { + if yyj2721 >= l { break } } else { @@ -35194,10 +35235,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2716Slc = r.DecodeBytes(yys2716Slc, true, true) - yys2716 := string(yys2716Slc) + yys2721Slc = r.DecodeBytes(yys2721Slc, true, true) + yys2721 := string(yys2721Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2716 { + switch yys2721 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35214,31 +35255,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2719 := &x.ListMeta - yym2720 := z.DecBinary() - _ = yym2720 + yyv2724 := &x.ListMeta + yym2725 := z.DecBinary() + _ = yym2725 if false { - } else if z.HasExtensions() && z.DecExt(yyv2719) { + } else if z.HasExtensions() && z.DecExt(yyv2724) { } else { - z.DecFallback(yyv2719, false) + z.DecFallback(yyv2724, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2721 := &x.Items - yym2722 := z.DecBinary() - _ = yym2722 + yyv2726 := &x.Items + yym2727 := z.DecBinary() + _ = yym2727 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2721), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2726), d) } } default: - z.DecStructFieldNotFound(-1, yys2716) - } // end switch yys2716 - } // end for yyj2716 + z.DecStructFieldNotFound(-1, yys2721) + } // end switch yys2721 + } // end for yyj2721 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35246,16 +35287,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2723 int - var yyb2723 bool - var yyhl2723 bool = l >= 0 - yyj2723++ - if yyhl2723 { - yyb2723 = yyj2723 > l + var yyj2728 int + var yyb2728 bool + var yyhl2728 bool = l >= 0 + yyj2728++ + if yyhl2728 { + yyb2728 = yyj2728 > l } else { - yyb2723 = r.CheckBreak() + yyb2728 = r.CheckBreak() } - if yyb2723 { + if yyb2728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35265,13 +35306,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2723++ - if yyhl2723 { - yyb2723 = yyj2723 > l + yyj2728++ + if yyhl2728 { + yyb2728 = yyj2728 > l } else { - yyb2723 = r.CheckBreak() + yyb2728 = r.CheckBreak() } - if yyb2723 { + if yyb2728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35281,13 +35322,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2723++ - if yyhl2723 { - yyb2723 = yyj2723 > l + yyj2728++ + if yyhl2728 { + yyb2728 = yyj2728 > l } else { - yyb2723 = r.CheckBreak() + yyb2728 = r.CheckBreak() } - if yyb2723 { + if yyb2728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35295,22 +35336,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2726 := &x.ListMeta - yym2727 := z.DecBinary() - _ = yym2727 + yyv2731 := &x.ListMeta + yym2732 := z.DecBinary() + _ = yym2732 if false { - } else if z.HasExtensions() && z.DecExt(yyv2726) { + } else if z.HasExtensions() && z.DecExt(yyv2731) { } else { - z.DecFallback(yyv2726, false) + z.DecFallback(yyv2731, false) } } - yyj2723++ - if yyhl2723 { - yyb2723 = yyj2723 > l + yyj2728++ + if yyhl2728 { + yyb2728 = yyj2728 > l } else { - yyb2723 = r.CheckBreak() + yyb2728 = r.CheckBreak() } - if yyb2723 { + if yyb2728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35318,26 +35359,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2728 := &x.Items - yym2729 := z.DecBinary() - _ = yym2729 + yyv2733 := &x.Items + yym2734 := z.DecBinary() + _ = yym2734 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2728), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2733), d) } } for { - yyj2723++ - if yyhl2723 { - yyb2723 = yyj2723 > l + yyj2728++ + if yyhl2728 { + yyb2728 = yyj2728 > l } else { - yyb2723 = r.CheckBreak() + yyb2728 = r.CheckBreak() } - if yyb2723 { + if yyb2728 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2723-1, "") + z.DecStructFieldNotFound(yyj2728-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35349,38 +35390,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2730 := z.EncBinary() - _ = yym2730 + yym2735 := z.EncBinary() + _ = yym2735 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2731 := !z.EncBinary() - yy2arr2731 := z.EncBasicHandle().StructToArray - var yyq2731 [4]bool - _, _, _ = yysep2731, yyq2731, yy2arr2731 - const yyr2731 bool = false - yyq2731[0] = x.PodCIDR != "" - yyq2731[1] = x.ExternalID != "" - yyq2731[2] = x.ProviderID != "" - yyq2731[3] = x.Unschedulable != false - var yynn2731 int - if yyr2731 || yy2arr2731 { + yysep2736 := !z.EncBinary() + yy2arr2736 := z.EncBasicHandle().StructToArray + var yyq2736 [4]bool + _, _, _ = yysep2736, yyq2736, yy2arr2736 + const yyr2736 bool = false + yyq2736[0] = x.PodCIDR != "" + yyq2736[1] = x.ExternalID != "" + yyq2736[2] = x.ProviderID != "" + yyq2736[3] = x.Unschedulable != false + var yynn2736 int + if yyr2736 || yy2arr2736 { r.EncodeArrayStart(4) } else { - yynn2731 = 0 - for _, b := range yyq2731 { + yynn2736 = 0 + for _, b := range yyq2736 { if b { - yynn2731++ + yynn2736++ } } - r.EncodeMapStart(yynn2731) - yynn2731 = 0 + r.EncodeMapStart(yynn2736) + yynn2736 = 0 } - if yyr2731 || yy2arr2731 { + if yyr2736 || yy2arr2736 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2731[0] { - yym2733 := z.EncBinary() - _ = yym2733 + if yyq2736[0] { + yym2738 := z.EncBinary() + _ = yym2738 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -35389,23 +35430,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2731[0] { + if yyq2736[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2734 := z.EncBinary() - _ = yym2734 + yym2739 := z.EncBinary() + _ = yym2739 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2731 || yy2arr2731 { + if yyr2736 || yy2arr2736 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2731[1] { - yym2736 := z.EncBinary() - _ = yym2736 + if yyq2736[1] { + yym2741 := z.EncBinary() + _ = yym2741 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -35414,23 +35455,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2731[1] { + if yyq2736[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2737 := z.EncBinary() - _ = yym2737 + yym2742 := z.EncBinary() + _ = yym2742 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2731 || yy2arr2731 { + if yyr2736 || yy2arr2736 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2731[2] { - yym2739 := z.EncBinary() - _ = yym2739 + if yyq2736[2] { + yym2744 := z.EncBinary() + _ = yym2744 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -35439,23 +35480,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2731[2] { + if yyq2736[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2740 := z.EncBinary() - _ = yym2740 + yym2745 := z.EncBinary() + _ = yym2745 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2731 || yy2arr2731 { + if yyr2736 || yy2arr2736 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2731[3] { - yym2742 := z.EncBinary() - _ = yym2742 + if yyq2736[3] { + yym2747 := z.EncBinary() + _ = yym2747 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -35464,19 +35505,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2731[3] { + if yyq2736[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2743 := z.EncBinary() - _ = yym2743 + yym2748 := z.EncBinary() + _ = yym2748 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2731 || yy2arr2731 { + if yyr2736 || yy2arr2736 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35489,25 +35530,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2744 := z.DecBinary() - _ = yym2744 + yym2749 := z.DecBinary() + _ = yym2749 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2745 := r.ContainerType() - if yyct2745 == codecSelferValueTypeMap1234 { - yyl2745 := r.ReadMapStart() - if yyl2745 == 0 { + yyct2750 := r.ContainerType() + if yyct2750 == codecSelferValueTypeMap1234 { + yyl2750 := r.ReadMapStart() + if yyl2750 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2745, d) + x.codecDecodeSelfFromMap(yyl2750, d) } - } else if yyct2745 == codecSelferValueTypeArray1234 { - yyl2745 := r.ReadArrayStart() - if yyl2745 == 0 { + } else if yyct2750 == codecSelferValueTypeArray1234 { + yyl2750 := r.ReadArrayStart() + if yyl2750 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2745, d) + x.codecDecodeSelfFromArray(yyl2750, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35519,12 +35560,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2746Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2746Slc - var yyhl2746 bool = l >= 0 - for yyj2746 := 0; ; yyj2746++ { - if yyhl2746 { - if yyj2746 >= l { + var yys2751Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2751Slc + var yyhl2751 bool = l >= 0 + for yyj2751 := 0; ; yyj2751++ { + if yyhl2751 { + if yyj2751 >= l { break } } else { @@ -35533,10 +35574,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2746Slc = r.DecodeBytes(yys2746Slc, true, true) - yys2746 := string(yys2746Slc) + yys2751Slc = r.DecodeBytes(yys2751Slc, true, true) + yys2751 := string(yys2751Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2746 { + switch yys2751 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -35562,9 +35603,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2746) - } // end switch yys2746 - } // end for yyj2746 + z.DecStructFieldNotFound(-1, yys2751) + } // end switch yys2751 + } // end for yyj2751 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35572,16 +35613,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2751 int - var yyb2751 bool - var yyhl2751 bool = l >= 0 - yyj2751++ - if yyhl2751 { - yyb2751 = yyj2751 > l + var yyj2756 int + var yyb2756 bool + var yyhl2756 bool = l >= 0 + yyj2756++ + if yyhl2756 { + yyb2756 = yyj2756 > l } else { - yyb2751 = r.CheckBreak() + yyb2756 = r.CheckBreak() } - if yyb2751 { + if yyb2756 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35591,13 +35632,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2751++ - if yyhl2751 { - yyb2751 = yyj2751 > l + yyj2756++ + if yyhl2756 { + yyb2756 = yyj2756 > l } else { - yyb2751 = r.CheckBreak() + yyb2756 = r.CheckBreak() } - if yyb2751 { + if yyb2756 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35607,13 +35648,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2751++ - if yyhl2751 { - yyb2751 = yyj2751 > l + yyj2756++ + if yyhl2756 { + yyb2756 = yyj2756 > l } else { - yyb2751 = r.CheckBreak() + yyb2756 = r.CheckBreak() } - if yyb2751 { + if yyb2756 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35623,13 +35664,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2751++ - if yyhl2751 { - yyb2751 = yyj2751 > l + yyj2756++ + if yyhl2756 { + yyb2756 = yyj2756 > l } else { - yyb2751 = r.CheckBreak() + yyb2756 = r.CheckBreak() } - if yyb2751 { + if yyb2756 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35640,17 +35681,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2751++ - if yyhl2751 { - yyb2751 = yyj2751 > l + yyj2756++ + if yyhl2756 { + yyb2756 = yyj2756 > l } else { - yyb2751 = r.CheckBreak() + yyb2756 = r.CheckBreak() } - if yyb2751 { + if yyb2756 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2751-1, "") + z.DecStructFieldNotFound(yyj2756-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35662,33 +35703,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2756 := z.EncBinary() - _ = yym2756 + yym2761 := z.EncBinary() + _ = yym2761 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2757 := !z.EncBinary() - yy2arr2757 := z.EncBasicHandle().StructToArray - var yyq2757 [1]bool - _, _, _ = yysep2757, yyq2757, yy2arr2757 - const yyr2757 bool = false - var yynn2757 int - if yyr2757 || yy2arr2757 { + yysep2762 := !z.EncBinary() + yy2arr2762 := z.EncBasicHandle().StructToArray + var yyq2762 [1]bool + _, _, _ = yysep2762, yyq2762, yy2arr2762 + const yyr2762 bool = false + var yynn2762 int + if yyr2762 || yy2arr2762 { r.EncodeArrayStart(1) } else { - yynn2757 = 1 - for _, b := range yyq2757 { + yynn2762 = 1 + for _, b := range yyq2762 { if b { - yynn2757++ + yynn2762++ } } - r.EncodeMapStart(yynn2757) - yynn2757 = 0 + r.EncodeMapStart(yynn2762) + yynn2762 = 0 } - if yyr2757 || yy2arr2757 { + if yyr2762 || yy2arr2762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2759 := z.EncBinary() - _ = yym2759 + yym2764 := z.EncBinary() + _ = yym2764 if false { } else { r.EncodeInt(int64(x.Port)) @@ -35697,14 +35738,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2760 := z.EncBinary() - _ = yym2760 + yym2765 := z.EncBinary() + _ = yym2765 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2757 || yy2arr2757 { + if yyr2762 || yy2arr2762 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35717,25 +35758,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2761 := z.DecBinary() - _ = yym2761 + yym2766 := z.DecBinary() + _ = yym2766 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2762 := r.ContainerType() - if yyct2762 == codecSelferValueTypeMap1234 { - yyl2762 := r.ReadMapStart() - if yyl2762 == 0 { + yyct2767 := r.ContainerType() + if yyct2767 == codecSelferValueTypeMap1234 { + yyl2767 := r.ReadMapStart() + if yyl2767 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2762, d) + x.codecDecodeSelfFromMap(yyl2767, d) } - } else if yyct2762 == codecSelferValueTypeArray1234 { - yyl2762 := r.ReadArrayStart() - if yyl2762 == 0 { + } else if yyct2767 == codecSelferValueTypeArray1234 { + yyl2767 := r.ReadArrayStart() + if yyl2767 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2762, d) + x.codecDecodeSelfFromArray(yyl2767, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35747,12 +35788,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2763Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2763Slc - var yyhl2763 bool = l >= 0 - for yyj2763 := 0; ; yyj2763++ { - if yyhl2763 { - if yyj2763 >= l { + var yys2768Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2768Slc + var yyhl2768 bool = l >= 0 + for yyj2768 := 0; ; yyj2768++ { + if yyhl2768 { + if yyj2768 >= l { break } } else { @@ -35761,10 +35802,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2763Slc = r.DecodeBytes(yys2763Slc, true, true) - yys2763 := string(yys2763Slc) + yys2768Slc = r.DecodeBytes(yys2768Slc, true, true) + yys2768 := string(yys2768Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2763 { + switch yys2768 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -35772,9 +35813,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2763) - } // end switch yys2763 - } // end for yyj2763 + z.DecStructFieldNotFound(-1, yys2768) + } // end switch yys2768 + } // end for yyj2768 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35782,16 +35823,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2765 int - var yyb2765 bool - var yyhl2765 bool = l >= 0 - yyj2765++ - if yyhl2765 { - yyb2765 = yyj2765 > l + var yyj2770 int + var yyb2770 bool + var yyhl2770 bool = l >= 0 + yyj2770++ + if yyhl2770 { + yyb2770 = yyj2770 > l } else { - yyb2765 = r.CheckBreak() + yyb2770 = r.CheckBreak() } - if yyb2765 { + if yyb2770 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35802,17 +35843,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2765++ - if yyhl2765 { - yyb2765 = yyj2765 > l + yyj2770++ + if yyhl2770 { + yyb2770 = yyj2770 > l } else { - yyb2765 = r.CheckBreak() + yyb2770 = r.CheckBreak() } - if yyb2765 { + if yyb2770 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2765-1, "") + z.DecStructFieldNotFound(yyj2770-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35824,48 +35865,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2767 := z.EncBinary() - _ = yym2767 + yym2772 := z.EncBinary() + _ = yym2772 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2768 := !z.EncBinary() - yy2arr2768 := z.EncBasicHandle().StructToArray - var yyq2768 [1]bool - _, _, _ = yysep2768, yyq2768, yy2arr2768 - const yyr2768 bool = false - yyq2768[0] = true - var yynn2768 int - if yyr2768 || yy2arr2768 { + yysep2773 := !z.EncBinary() + yy2arr2773 := z.EncBasicHandle().StructToArray + var yyq2773 [1]bool + _, _, _ = yysep2773, yyq2773, yy2arr2773 + const yyr2773 bool = false + yyq2773[0] = true + var yynn2773 int + if yyr2773 || yy2arr2773 { r.EncodeArrayStart(1) } else { - yynn2768 = 0 - for _, b := range yyq2768 { + yynn2773 = 0 + for _, b := range yyq2773 { if b { - yynn2768++ + yynn2773++ } } - r.EncodeMapStart(yynn2768) - yynn2768 = 0 + r.EncodeMapStart(yynn2773) + yynn2773 = 0 } - if yyr2768 || yy2arr2768 { + if yyr2773 || yy2arr2773 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2768[0] { - yy2770 := &x.KubeletEndpoint - yy2770.CodecEncodeSelf(e) + if yyq2773[0] { + yy2775 := &x.KubeletEndpoint + yy2775.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2768[0] { + if yyq2773[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2771 := &x.KubeletEndpoint - yy2771.CodecEncodeSelf(e) + yy2776 := &x.KubeletEndpoint + yy2776.CodecEncodeSelf(e) } } - if yyr2768 || yy2arr2768 { + if yyr2773 || yy2arr2773 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35878,25 +35919,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2772 := z.DecBinary() - _ = yym2772 + yym2777 := z.DecBinary() + _ = yym2777 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2773 := r.ContainerType() - if yyct2773 == codecSelferValueTypeMap1234 { - yyl2773 := r.ReadMapStart() - if yyl2773 == 0 { + yyct2778 := r.ContainerType() + if yyct2778 == codecSelferValueTypeMap1234 { + yyl2778 := r.ReadMapStart() + if yyl2778 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2773, d) + x.codecDecodeSelfFromMap(yyl2778, d) } - } else if yyct2773 == codecSelferValueTypeArray1234 { - yyl2773 := r.ReadArrayStart() - if yyl2773 == 0 { + } else if yyct2778 == codecSelferValueTypeArray1234 { + yyl2778 := r.ReadArrayStart() + if yyl2778 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2773, d) + x.codecDecodeSelfFromArray(yyl2778, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35908,12 +35949,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2774Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2774Slc - var yyhl2774 bool = l >= 0 - for yyj2774 := 0; ; yyj2774++ { - if yyhl2774 { - if yyj2774 >= l { + var yys2779Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2779Slc + var yyhl2779 bool = l >= 0 + for yyj2779 := 0; ; yyj2779++ { + if yyhl2779 { + if yyj2779 >= l { break } } else { @@ -35922,21 +35963,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2774Slc = r.DecodeBytes(yys2774Slc, true, true) - yys2774 := string(yys2774Slc) + yys2779Slc = r.DecodeBytes(yys2779Slc, true, true) + yys2779 := string(yys2779Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2774 { + switch yys2779 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2775 := &x.KubeletEndpoint - yyv2775.CodecDecodeSelf(d) + yyv2780 := &x.KubeletEndpoint + yyv2780.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2774) - } // end switch yys2774 - } // end for yyj2774 + z.DecStructFieldNotFound(-1, yys2779) + } // end switch yys2779 + } // end for yyj2779 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35944,16 +35985,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2776 int - var yyb2776 bool - var yyhl2776 bool = l >= 0 - yyj2776++ - if yyhl2776 { - yyb2776 = yyj2776 > l + var yyj2781 int + var yyb2781 bool + var yyhl2781 bool = l >= 0 + yyj2781++ + if yyhl2781 { + yyb2781 = yyj2781 > l } else { - yyb2776 = r.CheckBreak() + yyb2781 = r.CheckBreak() } - if yyb2776 { + if yyb2781 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35961,21 +36002,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2777 := &x.KubeletEndpoint - yyv2777.CodecDecodeSelf(d) + yyv2782 := &x.KubeletEndpoint + yyv2782.CodecDecodeSelf(d) } for { - yyj2776++ - if yyhl2776 { - yyb2776 = yyj2776 > l + yyj2781++ + if yyhl2781 { + yyb2781 = yyj2781 > l } else { - yyb2776 = r.CheckBreak() + yyb2781 = r.CheckBreak() } - if yyb2776 { + if yyb2781 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2776-1, "") + z.DecStructFieldNotFound(yyj2781-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35987,33 +36028,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2778 := z.EncBinary() - _ = yym2778 + yym2783 := z.EncBinary() + _ = yym2783 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2779 := !z.EncBinary() - yy2arr2779 := z.EncBasicHandle().StructToArray - var yyq2779 [10]bool - _, _, _ = yysep2779, yyq2779, yy2arr2779 - const yyr2779 bool = false - var yynn2779 int - if yyr2779 || yy2arr2779 { + yysep2784 := !z.EncBinary() + yy2arr2784 := z.EncBasicHandle().StructToArray + var yyq2784 [10]bool + _, _, _ = yysep2784, yyq2784, yy2arr2784 + const yyr2784 bool = false + var yynn2784 int + if yyr2784 || yy2arr2784 { r.EncodeArrayStart(10) } else { - yynn2779 = 10 - for _, b := range yyq2779 { + yynn2784 = 10 + for _, b := range yyq2784 { if b { - yynn2779++ + yynn2784++ } } - r.EncodeMapStart(yynn2779) - yynn2779 = 0 + r.EncodeMapStart(yynn2784) + yynn2784 = 0 } - if yyr2779 || yy2arr2779 { + if yyr2784 || yy2arr2784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2781 := z.EncBinary() - _ = yym2781 + yym2786 := z.EncBinary() + _ = yym2786 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -36022,17 +36063,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2782 := z.EncBinary() - _ = yym2782 + yym2787 := z.EncBinary() + _ = yym2787 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2779 || yy2arr2779 { + if yyr2784 || yy2arr2784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2784 := z.EncBinary() - _ = yym2784 + yym2789 := z.EncBinary() + _ = yym2789 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -36041,17 +36082,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2785 := z.EncBinary() - _ = yym2785 + yym2790 := z.EncBinary() + _ = yym2790 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2779 || yy2arr2779 { + if yyr2784 || yy2arr2784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2787 := z.EncBinary() - _ = yym2787 + yym2792 := z.EncBinary() + _ = yym2792 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -36060,17 +36101,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2788 := z.EncBinary() - _ = yym2788 + yym2793 := z.EncBinary() + _ = yym2793 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2779 || yy2arr2779 { + if yyr2784 || yy2arr2784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2790 := z.EncBinary() - _ = yym2790 + yym2795 := z.EncBinary() + _ = yym2795 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -36079,17 +36120,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2791 := z.EncBinary() - _ = yym2791 + yym2796 := z.EncBinary() + _ = yym2796 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2779 || yy2arr2779 { + if yyr2784 || yy2arr2784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2793 := z.EncBinary() - _ = yym2793 + yym2798 := z.EncBinary() + _ = yym2798 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -36098,17 +36139,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2794 := z.EncBinary() - _ = yym2794 + yym2799 := z.EncBinary() + _ = yym2799 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2779 || yy2arr2779 { + if yyr2784 || yy2arr2784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2796 := z.EncBinary() - _ = yym2796 + yym2801 := z.EncBinary() + _ = yym2801 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -36117,17 +36158,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2797 := z.EncBinary() - _ = yym2797 + yym2802 := z.EncBinary() + _ = yym2802 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2779 || yy2arr2779 { + if yyr2784 || yy2arr2784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2799 := z.EncBinary() - _ = yym2799 + yym2804 := z.EncBinary() + _ = yym2804 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -36136,17 +36177,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2800 := z.EncBinary() - _ = yym2800 + yym2805 := z.EncBinary() + _ = yym2805 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2779 || yy2arr2779 { + if yyr2784 || yy2arr2784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2802 := z.EncBinary() - _ = yym2802 + yym2807 := z.EncBinary() + _ = yym2807 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -36155,17 +36196,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2803 := z.EncBinary() - _ = yym2803 + yym2808 := z.EncBinary() + _ = yym2808 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2779 || yy2arr2779 { + if yyr2784 || yy2arr2784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2805 := z.EncBinary() - _ = yym2805 + yym2810 := z.EncBinary() + _ = yym2810 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) @@ -36174,17 +36215,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operatingSystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2806 := z.EncBinary() - _ = yym2806 + yym2811 := z.EncBinary() + _ = yym2811 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) } } - if yyr2779 || yy2arr2779 { + if yyr2784 || yy2arr2784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2808 := z.EncBinary() - _ = yym2808 + yym2813 := z.EncBinary() + _ = yym2813 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) @@ -36193,14 +36234,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("architecture")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2809 := z.EncBinary() - _ = yym2809 + yym2814 := z.EncBinary() + _ = yym2814 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) } } - if yyr2779 || yy2arr2779 { + if yyr2784 || yy2arr2784 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36213,25 +36254,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2810 := z.DecBinary() - _ = yym2810 + yym2815 := z.DecBinary() + _ = yym2815 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2811 := r.ContainerType() - if yyct2811 == codecSelferValueTypeMap1234 { - yyl2811 := r.ReadMapStart() - if yyl2811 == 0 { + yyct2816 := r.ContainerType() + if yyct2816 == codecSelferValueTypeMap1234 { + yyl2816 := r.ReadMapStart() + if yyl2816 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2811, d) + x.codecDecodeSelfFromMap(yyl2816, d) } - } else if yyct2811 == codecSelferValueTypeArray1234 { - yyl2811 := r.ReadArrayStart() - if yyl2811 == 0 { + } else if yyct2816 == codecSelferValueTypeArray1234 { + yyl2816 := r.ReadArrayStart() + if yyl2816 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2811, d) + x.codecDecodeSelfFromArray(yyl2816, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36243,12 +36284,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2812Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2812Slc - var yyhl2812 bool = l >= 0 - for yyj2812 := 0; ; yyj2812++ { - if yyhl2812 { - if yyj2812 >= l { + var yys2817Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2817Slc + var yyhl2817 bool = l >= 0 + for yyj2817 := 0; ; yyj2817++ { + if yyhl2817 { + if yyj2817 >= l { break } } else { @@ -36257,10 +36298,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2812Slc = r.DecodeBytes(yys2812Slc, true, true) - yys2812 := string(yys2812Slc) + yys2817Slc = r.DecodeBytes(yys2817Slc, true, true) + yys2817 := string(yys2817Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2812 { + switch yys2817 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -36322,9 +36363,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2812) - } // end switch yys2812 - } // end for yyj2812 + z.DecStructFieldNotFound(-1, yys2817) + } // end switch yys2817 + } // end for yyj2817 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36332,16 +36373,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2823 int - var yyb2823 bool - var yyhl2823 bool = l >= 0 - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + var yyj2828 int + var yyb2828 bool + var yyhl2828 bool = l >= 0 + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36351,13 +36392,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36367,13 +36408,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36383,13 +36424,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36399,13 +36440,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36415,13 +36456,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36431,13 +36472,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36447,13 +36488,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36463,13 +36504,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeProxyVersion = string(r.DecodeString()) } - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36479,13 +36520,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OperatingSystem = string(r.DecodeString()) } - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36496,17 +36537,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } for { - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2823-1, "") + z.DecStructFieldNotFound(yyj2828-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36518,42 +36559,42 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2834 := z.EncBinary() - _ = yym2834 + yym2839 := z.EncBinary() + _ = yym2839 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2835 := !z.EncBinary() - yy2arr2835 := z.EncBasicHandle().StructToArray - var yyq2835 [10]bool - _, _, _ = yysep2835, yyq2835, yy2arr2835 - const yyr2835 bool = false - yyq2835[0] = len(x.Capacity) != 0 - yyq2835[1] = len(x.Allocatable) != 0 - yyq2835[2] = x.Phase != "" - yyq2835[3] = len(x.Conditions) != 0 - yyq2835[4] = len(x.Addresses) != 0 - yyq2835[5] = true - yyq2835[6] = true - yyq2835[7] = len(x.Images) != 0 - yyq2835[8] = len(x.VolumesInUse) != 0 - yyq2835[9] = len(x.VolumesAttached) != 0 - var yynn2835 int - if yyr2835 || yy2arr2835 { + yysep2840 := !z.EncBinary() + yy2arr2840 := z.EncBasicHandle().StructToArray + var yyq2840 [10]bool + _, _, _ = yysep2840, yyq2840, yy2arr2840 + const yyr2840 bool = false + yyq2840[0] = len(x.Capacity) != 0 + yyq2840[1] = len(x.Allocatable) != 0 + yyq2840[2] = x.Phase != "" + yyq2840[3] = len(x.Conditions) != 0 + yyq2840[4] = len(x.Addresses) != 0 + yyq2840[5] = true + yyq2840[6] = true + yyq2840[7] = len(x.Images) != 0 + yyq2840[8] = len(x.VolumesInUse) != 0 + yyq2840[9] = len(x.VolumesAttached) != 0 + var yynn2840 int + if yyr2840 || yy2arr2840 { r.EncodeArrayStart(10) } else { - yynn2835 = 0 - for _, b := range yyq2835 { + yynn2840 = 0 + for _, b := range yyq2840 { if b { - yynn2835++ + yynn2840++ } } - r.EncodeMapStart(yynn2835) - yynn2835 = 0 + r.EncodeMapStart(yynn2840) + yynn2840 = 0 } - if yyr2835 || yy2arr2835 { + if yyr2840 || yy2arr2840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2835[0] { + if yyq2840[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -36563,7 +36604,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2835[0] { + if yyq2840[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -36574,9 +36615,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2835 || yy2arr2835 { + if yyr2840 || yy2arr2840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2835[1] { + if yyq2840[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -36586,7 +36627,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2835[1] { + if yyq2840[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -36597,29 +36638,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2835 || yy2arr2835 { + if yyr2840 || yy2arr2840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2835[2] { + if yyq2840[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2835[2] { + if yyq2840[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2835 || yy2arr2835 { + if yyr2840 || yy2arr2840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2835[3] { + if yyq2840[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym2840 := z.EncBinary() - _ = yym2840 + yym2845 := z.EncBinary() + _ = yym2845 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -36629,15 +36670,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2835[3] { + if yyq2840[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2841 := z.EncBinary() - _ = yym2841 + yym2846 := z.EncBinary() + _ = yym2846 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -36645,14 +36686,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2835 || yy2arr2835 { + if yyr2840 || yy2arr2840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2835[4] { + if yyq2840[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym2843 := z.EncBinary() - _ = yym2843 + yym2848 := z.EncBinary() + _ = yym2848 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -36662,15 +36703,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2835[4] { + if yyq2840[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2844 := z.EncBinary() - _ = yym2844 + yym2849 := z.EncBinary() + _ = yym2849 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -36678,48 +36719,48 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2835 || yy2arr2835 { + if yyr2840 || yy2arr2840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2835[5] { - yy2846 := &x.DaemonEndpoints - yy2846.CodecEncodeSelf(e) + if yyq2840[5] { + yy2851 := &x.DaemonEndpoints + yy2851.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2835[5] { + if yyq2840[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2847 := &x.DaemonEndpoints - yy2847.CodecEncodeSelf(e) + yy2852 := &x.DaemonEndpoints + yy2852.CodecEncodeSelf(e) } } - if yyr2835 || yy2arr2835 { + if yyr2840 || yy2arr2840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2835[6] { - yy2849 := &x.NodeInfo - yy2849.CodecEncodeSelf(e) + if yyq2840[6] { + yy2854 := &x.NodeInfo + yy2854.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2835[6] { + if yyq2840[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2850 := &x.NodeInfo - yy2850.CodecEncodeSelf(e) + yy2855 := &x.NodeInfo + yy2855.CodecEncodeSelf(e) } } - if yyr2835 || yy2arr2835 { + if yyr2840 || yy2arr2840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2835[7] { + if yyq2840[7] { if x.Images == nil { r.EncodeNil() } else { - yym2852 := z.EncBinary() - _ = yym2852 + yym2857 := z.EncBinary() + _ = yym2857 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -36729,15 +36770,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2835[7] { + if yyq2840[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("images")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Images == nil { r.EncodeNil() } else { - yym2853 := z.EncBinary() - _ = yym2853 + yym2858 := z.EncBinary() + _ = yym2858 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -36745,14 +36786,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2835 || yy2arr2835 { + if yyr2840 || yy2arr2840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2835[8] { + if yyq2840[8] { if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2855 := z.EncBinary() - _ = yym2855 + yym2860 := z.EncBinary() + _ = yym2860 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -36762,15 +36803,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2835[8] { + if yyq2840[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesInUse")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2856 := z.EncBinary() - _ = yym2856 + yym2861 := z.EncBinary() + _ = yym2861 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -36778,14 +36819,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2835 || yy2arr2835 { + if yyr2840 || yy2arr2840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2835[9] { + if yyq2840[9] { if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2858 := z.EncBinary() - _ = yym2858 + yym2863 := z.EncBinary() + _ = yym2863 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -36795,15 +36836,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2835[9] { + if yyq2840[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesAttached")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2859 := z.EncBinary() - _ = yym2859 + yym2864 := z.EncBinary() + _ = yym2864 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -36811,7 +36852,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2835 || yy2arr2835 { + if yyr2840 || yy2arr2840 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36824,25 +36865,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2860 := z.DecBinary() - _ = yym2860 + yym2865 := z.DecBinary() + _ = yym2865 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2861 := r.ContainerType() - if yyct2861 == codecSelferValueTypeMap1234 { - yyl2861 := r.ReadMapStart() - if yyl2861 == 0 { + yyct2866 := r.ContainerType() + if yyct2866 == codecSelferValueTypeMap1234 { + yyl2866 := r.ReadMapStart() + if yyl2866 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2861, d) + x.codecDecodeSelfFromMap(yyl2866, d) } - } else if yyct2861 == codecSelferValueTypeArray1234 { - yyl2861 := r.ReadArrayStart() - if yyl2861 == 0 { + } else if yyct2866 == codecSelferValueTypeArray1234 { + yyl2866 := r.ReadArrayStart() + if yyl2866 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2861, d) + x.codecDecodeSelfFromArray(yyl2866, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36854,12 +36895,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2862Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2862Slc - var yyhl2862 bool = l >= 0 - for yyj2862 := 0; ; yyj2862++ { - if yyhl2862 { - if yyj2862 >= l { + var yys2867Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2867Slc + var yyhl2867 bool = l >= 0 + for yyj2867 := 0; ; yyj2867++ { + if yyhl2867 { + if yyj2867 >= l { break } } else { @@ -36868,23 +36909,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2862Slc = r.DecodeBytes(yys2862Slc, true, true) - yys2862 := string(yys2862Slc) + yys2867Slc = r.DecodeBytes(yys2867Slc, true, true) + yys2867 := string(yys2867Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2862 { + switch yys2867 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2863 := &x.Capacity - yyv2863.CodecDecodeSelf(d) + yyv2868 := &x.Capacity + yyv2868.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2864 := &x.Allocatable - yyv2864.CodecDecodeSelf(d) + yyv2869 := &x.Allocatable + yyv2869.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -36896,80 +36937,80 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2866 := &x.Conditions - yym2867 := z.DecBinary() - _ = yym2867 + yyv2871 := &x.Conditions + yym2872 := z.DecBinary() + _ = yym2872 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2866), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2871), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2868 := &x.Addresses - yym2869 := z.DecBinary() - _ = yym2869 + yyv2873 := &x.Addresses + yym2874 := z.DecBinary() + _ = yym2874 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2868), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2873), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2870 := &x.DaemonEndpoints - yyv2870.CodecDecodeSelf(d) + yyv2875 := &x.DaemonEndpoints + yyv2875.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2871 := &x.NodeInfo - yyv2871.CodecDecodeSelf(d) + yyv2876 := &x.NodeInfo + yyv2876.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2872 := &x.Images - yym2873 := z.DecBinary() - _ = yym2873 + yyv2877 := &x.Images + yym2878 := z.DecBinary() + _ = yym2878 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2872), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2877), d) } } case "volumesInUse": if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2874 := &x.VolumesInUse - yym2875 := z.DecBinary() - _ = yym2875 + yyv2879 := &x.VolumesInUse + yym2880 := z.DecBinary() + _ = yym2880 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2874), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2879), d) } } case "volumesAttached": if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2876 := &x.VolumesAttached - yym2877 := z.DecBinary() - _ = yym2877 + yyv2881 := &x.VolumesAttached + yym2882 := z.DecBinary() + _ = yym2882 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2876), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2881), d) } } default: - z.DecStructFieldNotFound(-1, yys2862) - } // end switch yys2862 - } // end for yyj2862 + z.DecStructFieldNotFound(-1, yys2867) + } // end switch yys2867 + } // end for yyj2867 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36977,16 +37018,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2878 int - var yyb2878 bool - var yyhl2878 bool = l >= 0 - yyj2878++ - if yyhl2878 { - yyb2878 = yyj2878 > l + var yyj2883 int + var yyb2883 bool + var yyhl2883 bool = l >= 0 + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2878 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2878 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36994,16 +37035,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2879 := &x.Capacity - yyv2879.CodecDecodeSelf(d) + yyv2884 := &x.Capacity + yyv2884.CodecDecodeSelf(d) } - yyj2878++ - if yyhl2878 { - yyb2878 = yyj2878 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2878 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2878 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37011,16 +37052,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2880 := &x.Allocatable - yyv2880.CodecDecodeSelf(d) + yyv2885 := &x.Allocatable + yyv2885.CodecDecodeSelf(d) } - yyj2878++ - if yyhl2878 { - yyb2878 = yyj2878 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2878 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2878 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37030,13 +37071,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2878++ - if yyhl2878 { - yyb2878 = yyj2878 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2878 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2878 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37044,21 +37085,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2882 := &x.Conditions - yym2883 := z.DecBinary() - _ = yym2883 + yyv2887 := &x.Conditions + yym2888 := z.DecBinary() + _ = yym2888 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2882), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2887), d) } } - yyj2878++ - if yyhl2878 { - yyb2878 = yyj2878 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2878 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2878 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37066,21 +37107,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2884 := &x.Addresses - yym2885 := z.DecBinary() - _ = yym2885 + yyv2889 := &x.Addresses + yym2890 := z.DecBinary() + _ = yym2890 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2884), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2889), d) } } - yyj2878++ - if yyhl2878 { - yyb2878 = yyj2878 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2878 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2878 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37088,16 +37129,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2886 := &x.DaemonEndpoints - yyv2886.CodecDecodeSelf(d) + yyv2891 := &x.DaemonEndpoints + yyv2891.CodecDecodeSelf(d) } - yyj2878++ - if yyhl2878 { - yyb2878 = yyj2878 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2878 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2878 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37105,16 +37146,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2887 := &x.NodeInfo - yyv2887.CodecDecodeSelf(d) + yyv2892 := &x.NodeInfo + yyv2892.CodecDecodeSelf(d) } - yyj2878++ - if yyhl2878 { - yyb2878 = yyj2878 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2878 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2878 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37122,21 +37163,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2888 := &x.Images - yym2889 := z.DecBinary() - _ = yym2889 + yyv2893 := &x.Images + yym2894 := z.DecBinary() + _ = yym2894 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2888), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2893), d) } } - yyj2878++ - if yyhl2878 { - yyb2878 = yyj2878 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2878 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2878 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37144,21 +37185,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2890 := &x.VolumesInUse - yym2891 := z.DecBinary() - _ = yym2891 + yyv2895 := &x.VolumesInUse + yym2896 := z.DecBinary() + _ = yym2896 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2890), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2895), d) } } - yyj2878++ - if yyhl2878 { - yyb2878 = yyj2878 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2878 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2878 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37166,26 +37207,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2892 := &x.VolumesAttached - yym2893 := z.DecBinary() - _ = yym2893 + yyv2897 := &x.VolumesAttached + yym2898 := z.DecBinary() + _ = yym2898 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2892), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2897), d) } } for { - yyj2878++ - if yyhl2878 { - yyb2878 = yyj2878 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2878 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2878 { + if yyb2883 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2878-1, "") + z.DecStructFieldNotFound(yyj2883-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37194,8 +37235,8 @@ func (x UniqueVolumeName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2894 := z.EncBinary() - _ = yym2894 + yym2899 := z.EncBinary() + _ = yym2899 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -37207,8 +37248,8 @@ func (x *UniqueVolumeName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2895 := z.DecBinary() - _ = yym2895 + yym2900 := z.DecBinary() + _ = yym2900 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -37223,30 +37264,30 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2896 := z.EncBinary() - _ = yym2896 + yym2901 := z.EncBinary() + _ = yym2901 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2897 := !z.EncBinary() - yy2arr2897 := z.EncBasicHandle().StructToArray - var yyq2897 [2]bool - _, _, _ = yysep2897, yyq2897, yy2arr2897 - const yyr2897 bool = false - var yynn2897 int - if yyr2897 || yy2arr2897 { + yysep2902 := !z.EncBinary() + yy2arr2902 := z.EncBasicHandle().StructToArray + var yyq2902 [2]bool + _, _, _ = yysep2902, yyq2902, yy2arr2902 + const yyr2902 bool = false + var yynn2902 int + if yyr2902 || yy2arr2902 { r.EncodeArrayStart(2) } else { - yynn2897 = 2 - for _, b := range yyq2897 { + yynn2902 = 2 + for _, b := range yyq2902 { if b { - yynn2897++ + yynn2902++ } } - r.EncodeMapStart(yynn2897) - yynn2897 = 0 + r.EncodeMapStart(yynn2902) + yynn2902 = 0 } - if yyr2897 || yy2arr2897 { + if yyr2902 || yy2arr2902 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Name.CodecEncodeSelf(e) } else { @@ -37255,10 +37296,10 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Name.CodecEncodeSelf(e) } - if yyr2897 || yy2arr2897 { + if yyr2902 || yy2arr2902 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2900 := z.EncBinary() - _ = yym2900 + yym2905 := z.EncBinary() + _ = yym2905 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) @@ -37267,14 +37308,14 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("devicePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2901 := z.EncBinary() - _ = yym2901 + yym2906 := z.EncBinary() + _ = yym2906 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) } } - if yyr2897 || yy2arr2897 { + if yyr2902 || yy2arr2902 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37287,25 +37328,25 @@ func (x *AttachedVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2902 := z.DecBinary() - _ = yym2902 + yym2907 := z.DecBinary() + _ = yym2907 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2903 := r.ContainerType() - if yyct2903 == codecSelferValueTypeMap1234 { - yyl2903 := r.ReadMapStart() - if yyl2903 == 0 { + yyct2908 := r.ContainerType() + if yyct2908 == codecSelferValueTypeMap1234 { + yyl2908 := r.ReadMapStart() + if yyl2908 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2903, d) + x.codecDecodeSelfFromMap(yyl2908, d) } - } else if yyct2903 == codecSelferValueTypeArray1234 { - yyl2903 := r.ReadArrayStart() - if yyl2903 == 0 { + } else if yyct2908 == codecSelferValueTypeArray1234 { + yyl2908 := r.ReadArrayStart() + if yyl2908 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2903, d) + x.codecDecodeSelfFromArray(yyl2908, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37317,12 +37358,12 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2904Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2904Slc - var yyhl2904 bool = l >= 0 - for yyj2904 := 0; ; yyj2904++ { - if yyhl2904 { - if yyj2904 >= l { + var yys2909Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2909Slc + var yyhl2909 bool = l >= 0 + for yyj2909 := 0; ; yyj2909++ { + if yyhl2909 { + if yyj2909 >= l { break } } else { @@ -37331,10 +37372,10 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2904Slc = r.DecodeBytes(yys2904Slc, true, true) - yys2904 := string(yys2904Slc) + yys2909Slc = r.DecodeBytes(yys2909Slc, true, true) + yys2909 := string(yys2909Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2904 { + switch yys2909 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -37348,9 +37389,9 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2904) - } // end switch yys2904 - } // end for yyj2904 + z.DecStructFieldNotFound(-1, yys2909) + } // end switch yys2909 + } // end for yyj2909 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37358,16 +37399,16 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2907 int - var yyb2907 bool - var yyhl2907 bool = l >= 0 - yyj2907++ - if yyhl2907 { - yyb2907 = yyj2907 > l + var yyj2912 int + var yyb2912 bool + var yyhl2912 bool = l >= 0 + yyj2912++ + if yyhl2912 { + yyb2912 = yyj2912 > l } else { - yyb2907 = r.CheckBreak() + yyb2912 = r.CheckBreak() } - if yyb2907 { + if yyb2912 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37377,13 +37418,13 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = UniqueVolumeName(r.DecodeString()) } - yyj2907++ - if yyhl2907 { - yyb2907 = yyj2907 > l + yyj2912++ + if yyhl2912 { + yyb2912 = yyj2912 > l } else { - yyb2907 = r.CheckBreak() + yyb2912 = r.CheckBreak() } - if yyb2907 { + if yyb2912 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37394,17 +37435,17 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } for { - yyj2907++ - if yyhl2907 { - yyb2907 = yyj2907 > l + yyj2912++ + if yyhl2912 { + yyb2912 = yyj2912 > l } else { - yyb2907 = r.CheckBreak() + yyb2912 = r.CheckBreak() } - if yyb2907 { + if yyb2912 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2907-1, "") + z.DecStructFieldNotFound(yyj2912-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37416,38 +37457,38 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2910 := z.EncBinary() - _ = yym2910 + yym2915 := z.EncBinary() + _ = yym2915 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2911 := !z.EncBinary() - yy2arr2911 := z.EncBasicHandle().StructToArray - var yyq2911 [1]bool - _, _, _ = yysep2911, yyq2911, yy2arr2911 - const yyr2911 bool = false - yyq2911[0] = len(x.PreferAvoidPods) != 0 - var yynn2911 int - if yyr2911 || yy2arr2911 { + yysep2916 := !z.EncBinary() + yy2arr2916 := z.EncBasicHandle().StructToArray + var yyq2916 [1]bool + _, _, _ = yysep2916, yyq2916, yy2arr2916 + const yyr2916 bool = false + yyq2916[0] = len(x.PreferAvoidPods) != 0 + var yynn2916 int + if yyr2916 || yy2arr2916 { r.EncodeArrayStart(1) } else { - yynn2911 = 0 - for _, b := range yyq2911 { + yynn2916 = 0 + for _, b := range yyq2916 { if b { - yynn2911++ + yynn2916++ } } - r.EncodeMapStart(yynn2911) - yynn2911 = 0 + r.EncodeMapStart(yynn2916) + yynn2916 = 0 } - if yyr2911 || yy2arr2911 { + if yyr2916 || yy2arr2916 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2911[0] { + if yyq2916[0] { if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym2913 := z.EncBinary() - _ = yym2913 + yym2918 := z.EncBinary() + _ = yym2918 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -37457,15 +37498,15 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2911[0] { + if yyq2916[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym2914 := z.EncBinary() - _ = yym2914 + yym2919 := z.EncBinary() + _ = yym2919 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -37473,7 +37514,7 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2911 || yy2arr2911 { + if yyr2916 || yy2arr2916 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37486,25 +37527,25 @@ func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2915 := z.DecBinary() - _ = yym2915 + yym2920 := z.DecBinary() + _ = yym2920 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2916 := r.ContainerType() - if yyct2916 == codecSelferValueTypeMap1234 { - yyl2916 := r.ReadMapStart() - if yyl2916 == 0 { + yyct2921 := r.ContainerType() + if yyct2921 == codecSelferValueTypeMap1234 { + yyl2921 := r.ReadMapStart() + if yyl2921 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2916, d) + x.codecDecodeSelfFromMap(yyl2921, d) } - } else if yyct2916 == codecSelferValueTypeArray1234 { - yyl2916 := r.ReadArrayStart() - if yyl2916 == 0 { + } else if yyct2921 == codecSelferValueTypeArray1234 { + yyl2921 := r.ReadArrayStart() + if yyl2921 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2916, d) + x.codecDecodeSelfFromArray(yyl2921, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37516,12 +37557,12 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2917Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2917Slc - var yyhl2917 bool = l >= 0 - for yyj2917 := 0; ; yyj2917++ { - if yyhl2917 { - if yyj2917 >= l { + var yys2922Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2922Slc + var yyhl2922 bool = l >= 0 + for yyj2922 := 0; ; yyj2922++ { + if yyhl2922 { + if yyj2922 >= l { break } } else { @@ -37530,26 +37571,26 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2917Slc = r.DecodeBytes(yys2917Slc, true, true) - yys2917 := string(yys2917Slc) + yys2922Slc = r.DecodeBytes(yys2922Slc, true, true) + yys2922 := string(yys2922Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2917 { + switch yys2922 { case "preferAvoidPods": if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv2918 := &x.PreferAvoidPods - yym2919 := z.DecBinary() - _ = yym2919 + yyv2923 := &x.PreferAvoidPods + yym2924 := z.DecBinary() + _ = yym2924 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2918), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2923), d) } } default: - z.DecStructFieldNotFound(-1, yys2917) - } // end switch yys2917 - } // end for yyj2917 + z.DecStructFieldNotFound(-1, yys2922) + } // end switch yys2922 + } // end for yyj2922 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37557,16 +37598,16 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2920 int - var yyb2920 bool - var yyhl2920 bool = l >= 0 - yyj2920++ - if yyhl2920 { - yyb2920 = yyj2920 > l + var yyj2925 int + var yyb2925 bool + var yyhl2925 bool = l >= 0 + yyj2925++ + if yyhl2925 { + yyb2925 = yyj2925 > l } else { - yyb2920 = r.CheckBreak() + yyb2925 = r.CheckBreak() } - if yyb2920 { + if yyb2925 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37574,26 +37615,26 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv2921 := &x.PreferAvoidPods - yym2922 := z.DecBinary() - _ = yym2922 + yyv2926 := &x.PreferAvoidPods + yym2927 := z.DecBinary() + _ = yym2927 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2921), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2926), d) } } for { - yyj2920++ - if yyhl2920 { - yyb2920 = yyj2920 > l + yyj2925++ + if yyhl2925 { + yyb2925 = yyj2925 > l } else { - yyb2920 = r.CheckBreak() + yyb2925 = r.CheckBreak() } - if yyb2920 { + if yyb2925 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2920-1, "") + z.DecStructFieldNotFound(yyj2925-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37605,85 +37646,85 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2923 := z.EncBinary() - _ = yym2923 + yym2928 := z.EncBinary() + _ = yym2928 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2924 := !z.EncBinary() - yy2arr2924 := z.EncBasicHandle().StructToArray - var yyq2924 [4]bool - _, _, _ = yysep2924, yyq2924, yy2arr2924 - const yyr2924 bool = false - yyq2924[1] = true - yyq2924[2] = x.Reason != "" - yyq2924[3] = x.Message != "" - var yynn2924 int - if yyr2924 || yy2arr2924 { + yysep2929 := !z.EncBinary() + yy2arr2929 := z.EncBasicHandle().StructToArray + var yyq2929 [4]bool + _, _, _ = yysep2929, yyq2929, yy2arr2929 + const yyr2929 bool = false + yyq2929[1] = true + yyq2929[2] = x.Reason != "" + yyq2929[3] = x.Message != "" + var yynn2929 int + if yyr2929 || yy2arr2929 { r.EncodeArrayStart(4) } else { - yynn2924 = 1 - for _, b := range yyq2924 { + yynn2929 = 1 + for _, b := range yyq2929 { if b { - yynn2924++ + yynn2929++ } } - r.EncodeMapStart(yynn2924) - yynn2924 = 0 + r.EncodeMapStart(yynn2929) + yynn2929 = 0 } - if yyr2924 || yy2arr2924 { + if yyr2929 || yy2arr2929 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2926 := &x.PodSignature - yy2926.CodecEncodeSelf(e) + yy2931 := &x.PodSignature + yy2931.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSignature")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2927 := &x.PodSignature - yy2927.CodecEncodeSelf(e) + yy2932 := &x.PodSignature + yy2932.CodecEncodeSelf(e) } - if yyr2924 || yy2arr2924 { + if yyr2929 || yy2arr2929 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2924[1] { - yy2929 := &x.EvictionTime - yym2930 := z.EncBinary() - _ = yym2930 + if yyq2929[1] { + yy2934 := &x.EvictionTime + yym2935 := z.EncBinary() + _ = yym2935 if false { - } else if z.HasExtensions() && z.EncExt(yy2929) { - } else if yym2930 { - z.EncBinaryMarshal(yy2929) - } else if !yym2930 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2929) + } else if z.HasExtensions() && z.EncExt(yy2934) { + } else if yym2935 { + z.EncBinaryMarshal(yy2934) + } else if !yym2935 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2934) } else { - z.EncFallback(yy2929) + z.EncFallback(yy2934) } } else { r.EncodeNil() } } else { - if yyq2924[1] { + if yyq2929[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2931 := &x.EvictionTime - yym2932 := z.EncBinary() - _ = yym2932 + yy2936 := &x.EvictionTime + yym2937 := z.EncBinary() + _ = yym2937 if false { - } else if z.HasExtensions() && z.EncExt(yy2931) { - } else if yym2932 { - z.EncBinaryMarshal(yy2931) - } else if !yym2932 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2931) + } else if z.HasExtensions() && z.EncExt(yy2936) { + } else if yym2937 { + z.EncBinaryMarshal(yy2936) + } else if !yym2937 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2936) } else { - z.EncFallback(yy2931) + z.EncFallback(yy2936) } } } - if yyr2924 || yy2arr2924 { + if yyr2929 || yy2arr2929 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2924[2] { - yym2934 := z.EncBinary() - _ = yym2934 + if yyq2929[2] { + yym2939 := z.EncBinary() + _ = yym2939 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -37692,23 +37733,23 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2924[2] { + if yyq2929[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2935 := z.EncBinary() - _ = yym2935 + yym2940 := z.EncBinary() + _ = yym2940 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2924 || yy2arr2924 { + if yyr2929 || yy2arr2929 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2924[3] { - yym2937 := z.EncBinary() - _ = yym2937 + if yyq2929[3] { + yym2942 := z.EncBinary() + _ = yym2942 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -37717,19 +37758,19 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2924[3] { + if yyq2929[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2938 := z.EncBinary() - _ = yym2938 + yym2943 := z.EncBinary() + _ = yym2943 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2924 || yy2arr2924 { + if yyr2929 || yy2arr2929 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37742,25 +37783,25 @@ func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2939 := z.DecBinary() - _ = yym2939 + yym2944 := z.DecBinary() + _ = yym2944 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2940 := r.ContainerType() - if yyct2940 == codecSelferValueTypeMap1234 { - yyl2940 := r.ReadMapStart() - if yyl2940 == 0 { + yyct2945 := r.ContainerType() + if yyct2945 == codecSelferValueTypeMap1234 { + yyl2945 := r.ReadMapStart() + if yyl2945 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2940, d) + x.codecDecodeSelfFromMap(yyl2945, d) } - } else if yyct2940 == codecSelferValueTypeArray1234 { - yyl2940 := r.ReadArrayStart() - if yyl2940 == 0 { + } else if yyct2945 == codecSelferValueTypeArray1234 { + yyl2945 := r.ReadArrayStart() + if yyl2945 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2940, d) + x.codecDecodeSelfFromArray(yyl2945, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37772,12 +37813,12 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2941Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2941Slc - var yyhl2941 bool = l >= 0 - for yyj2941 := 0; ; yyj2941++ { - if yyhl2941 { - if yyj2941 >= l { + var yys2946Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2946Slc + var yyhl2946 bool = l >= 0 + for yyj2946 := 0; ; yyj2946++ { + if yyhl2946 { + if yyj2946 >= l { break } } else { @@ -37786,32 +37827,32 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2941Slc = r.DecodeBytes(yys2941Slc, true, true) - yys2941 := string(yys2941Slc) + yys2946Slc = r.DecodeBytes(yys2946Slc, true, true) + yys2946 := string(yys2946Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2941 { + switch yys2946 { case "podSignature": if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv2942 := &x.PodSignature - yyv2942.CodecDecodeSelf(d) + yyv2947 := &x.PodSignature + yyv2947.CodecDecodeSelf(d) } case "evictionTime": if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv2943 := &x.EvictionTime - yym2944 := z.DecBinary() - _ = yym2944 + yyv2948 := &x.EvictionTime + yym2949 := z.DecBinary() + _ = yym2949 if false { - } else if z.HasExtensions() && z.DecExt(yyv2943) { - } else if yym2944 { - z.DecBinaryUnmarshal(yyv2943) - } else if !yym2944 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2943) + } else if z.HasExtensions() && z.DecExt(yyv2948) { + } else if yym2949 { + z.DecBinaryUnmarshal(yyv2948) + } else if !yym2949 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2948) } else { - z.DecFallback(yyv2943, false) + z.DecFallback(yyv2948, false) } } case "reason": @@ -37827,9 +37868,9 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2941) - } // end switch yys2941 - } // end for yyj2941 + z.DecStructFieldNotFound(-1, yys2946) + } // end switch yys2946 + } // end for yyj2946 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37837,16 +37878,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2947 int - var yyb2947 bool - var yyhl2947 bool = l >= 0 - yyj2947++ - if yyhl2947 { - yyb2947 = yyj2947 > l + var yyj2952 int + var yyb2952 bool + var yyhl2952 bool = l >= 0 + yyj2952++ + if yyhl2952 { + yyb2952 = yyj2952 > l } else { - yyb2947 = r.CheckBreak() + yyb2952 = r.CheckBreak() } - if yyb2947 { + if yyb2952 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37854,16 +37895,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv2948 := &x.PodSignature - yyv2948.CodecDecodeSelf(d) + yyv2953 := &x.PodSignature + yyv2953.CodecDecodeSelf(d) } - yyj2947++ - if yyhl2947 { - yyb2947 = yyj2947 > l + yyj2952++ + if yyhl2952 { + yyb2952 = yyj2952 > l } else { - yyb2947 = r.CheckBreak() + yyb2952 = r.CheckBreak() } - if yyb2947 { + if yyb2952 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37871,26 +37912,26 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv2949 := &x.EvictionTime - yym2950 := z.DecBinary() - _ = yym2950 + yyv2954 := &x.EvictionTime + yym2955 := z.DecBinary() + _ = yym2955 if false { - } else if z.HasExtensions() && z.DecExt(yyv2949) { - } else if yym2950 { - z.DecBinaryUnmarshal(yyv2949) - } else if !yym2950 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2949) + } else if z.HasExtensions() && z.DecExt(yyv2954) { + } else if yym2955 { + z.DecBinaryUnmarshal(yyv2954) + } else if !yym2955 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2954) } else { - z.DecFallback(yyv2949, false) + z.DecFallback(yyv2954, false) } } - yyj2947++ - if yyhl2947 { - yyb2947 = yyj2947 > l + yyj2952++ + if yyhl2952 { + yyb2952 = yyj2952 > l } else { - yyb2947 = r.CheckBreak() + yyb2952 = r.CheckBreak() } - if yyb2947 { + if yyb2952 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37900,13 +37941,13 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Reason = string(r.DecodeString()) } - yyj2947++ - if yyhl2947 { - yyb2947 = yyj2947 > l + yyj2952++ + if yyhl2952 { + yyb2952 = yyj2952 > l } else { - yyb2947 = r.CheckBreak() + yyb2952 = r.CheckBreak() } - if yyb2947 { + if yyb2952 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37917,17 +37958,17 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Message = string(r.DecodeString()) } for { - yyj2947++ - if yyhl2947 { - yyb2947 = yyj2947 > l + yyj2952++ + if yyhl2952 { + yyb2952 = yyj2952 > l } else { - yyb2947 = r.CheckBreak() + yyb2952 = r.CheckBreak() } - if yyb2947 { + if yyb2952 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2947-1, "") + z.DecStructFieldNotFound(yyj2952-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37939,33 +37980,33 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2953 := z.EncBinary() - _ = yym2953 + yym2958 := z.EncBinary() + _ = yym2958 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2954 := !z.EncBinary() - yy2arr2954 := z.EncBasicHandle().StructToArray - var yyq2954 [1]bool - _, _, _ = yysep2954, yyq2954, yy2arr2954 - const yyr2954 bool = false - yyq2954[0] = x.PodController != nil - var yynn2954 int - if yyr2954 || yy2arr2954 { + yysep2959 := !z.EncBinary() + yy2arr2959 := z.EncBasicHandle().StructToArray + var yyq2959 [1]bool + _, _, _ = yysep2959, yyq2959, yy2arr2959 + const yyr2959 bool = false + yyq2959[0] = x.PodController != nil + var yynn2959 int + if yyr2959 || yy2arr2959 { r.EncodeArrayStart(1) } else { - yynn2954 = 0 - for _, b := range yyq2954 { + yynn2959 = 0 + for _, b := range yyq2959 { if b { - yynn2954++ + yynn2959++ } } - r.EncodeMapStart(yynn2954) - yynn2954 = 0 + r.EncodeMapStart(yynn2959) + yynn2959 = 0 } - if yyr2954 || yy2arr2954 { + if yyr2959 || yy2arr2959 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2954[0] { + if yyq2959[0] { if x.PodController == nil { r.EncodeNil() } else { @@ -37975,7 +38016,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2954[0] { + if yyq2959[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podController")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37986,7 +38027,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2954 || yy2arr2954 { + if yyr2959 || yy2arr2959 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37999,25 +38040,25 @@ func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2956 := z.DecBinary() - _ = yym2956 + yym2961 := z.DecBinary() + _ = yym2961 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2957 := r.ContainerType() - if yyct2957 == codecSelferValueTypeMap1234 { - yyl2957 := r.ReadMapStart() - if yyl2957 == 0 { + yyct2962 := r.ContainerType() + if yyct2962 == codecSelferValueTypeMap1234 { + yyl2962 := r.ReadMapStart() + if yyl2962 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2957, d) + x.codecDecodeSelfFromMap(yyl2962, d) } - } else if yyct2957 == codecSelferValueTypeArray1234 { - yyl2957 := r.ReadArrayStart() - if yyl2957 == 0 { + } else if yyct2962 == codecSelferValueTypeArray1234 { + yyl2962 := r.ReadArrayStart() + if yyl2962 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2957, d) + x.codecDecodeSelfFromArray(yyl2962, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38029,12 +38070,12 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2958Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2958Slc - var yyhl2958 bool = l >= 0 - for yyj2958 := 0; ; yyj2958++ { - if yyhl2958 { - if yyj2958 >= l { + var yys2963Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2963Slc + var yyhl2963 bool = l >= 0 + for yyj2963 := 0; ; yyj2963++ { + if yyhl2963 { + if yyj2963 >= l { break } } else { @@ -38043,10 +38084,10 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2958Slc = r.DecodeBytes(yys2958Slc, true, true) - yys2958 := string(yys2958Slc) + yys2963Slc = r.DecodeBytes(yys2963Slc, true, true) + yys2963 := string(yys2963Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2958 { + switch yys2963 { case "podController": if r.TryDecodeAsNil() { if x.PodController != nil { @@ -38059,9 +38100,9 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2958) - } // end switch yys2958 - } // end for yyj2958 + z.DecStructFieldNotFound(-1, yys2963) + } // end switch yys2963 + } // end for yyj2963 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38069,16 +38110,16 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2960 int - var yyb2960 bool - var yyhl2960 bool = l >= 0 - yyj2960++ - if yyhl2960 { - yyb2960 = yyj2960 > l + var yyj2965 int + var yyb2965 bool + var yyhl2965 bool = l >= 0 + yyj2965++ + if yyhl2965 { + yyb2965 = yyj2965 > l } else { - yyb2960 = r.CheckBreak() + yyb2965 = r.CheckBreak() } - if yyb2960 { + if yyb2965 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38094,17 +38135,17 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } for { - yyj2960++ - if yyhl2960 { - yyb2960 = yyj2960 > l + yyj2965++ + if yyhl2965 { + yyb2965 = yyj2965 > l } else { - yyb2960 = r.CheckBreak() + yyb2965 = r.CheckBreak() } - if yyb2960 { + if yyb2965 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2960-1, "") + z.DecStructFieldNotFound(yyj2965-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38116,37 +38157,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2962 := z.EncBinary() - _ = yym2962 + yym2967 := z.EncBinary() + _ = yym2967 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2963 := !z.EncBinary() - yy2arr2963 := z.EncBasicHandle().StructToArray - var yyq2963 [2]bool - _, _, _ = yysep2963, yyq2963, yy2arr2963 - const yyr2963 bool = false - yyq2963[1] = x.SizeBytes != 0 - var yynn2963 int - if yyr2963 || yy2arr2963 { + yysep2968 := !z.EncBinary() + yy2arr2968 := z.EncBasicHandle().StructToArray + var yyq2968 [2]bool + _, _, _ = yysep2968, yyq2968, yy2arr2968 + const yyr2968 bool = false + yyq2968[1] = x.SizeBytes != 0 + var yynn2968 int + if yyr2968 || yy2arr2968 { r.EncodeArrayStart(2) } else { - yynn2963 = 1 - for _, b := range yyq2963 { + yynn2968 = 1 + for _, b := range yyq2968 { if b { - yynn2963++ + yynn2968++ } } - r.EncodeMapStart(yynn2963) - yynn2963 = 0 + r.EncodeMapStart(yynn2968) + yynn2968 = 0 } - if yyr2963 || yy2arr2963 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Names == nil { r.EncodeNil() } else { - yym2965 := z.EncBinary() - _ = yym2965 + yym2970 := z.EncBinary() + _ = yym2970 if false { } else { z.F.EncSliceStringV(x.Names, false, e) @@ -38159,19 +38200,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.Names == nil { r.EncodeNil() } else { - yym2966 := z.EncBinary() - _ = yym2966 + yym2971 := z.EncBinary() + _ = yym2971 if false { } else { z.F.EncSliceStringV(x.Names, false, e) } } } - if yyr2963 || yy2arr2963 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2963[1] { - yym2968 := z.EncBinary() - _ = yym2968 + if yyq2968[1] { + yym2973 := z.EncBinary() + _ = yym2973 if false { } else { r.EncodeInt(int64(x.SizeBytes)) @@ -38180,19 +38221,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2963[1] { + if yyq2968[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sizeBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2969 := z.EncBinary() - _ = yym2969 + yym2974 := z.EncBinary() + _ = yym2974 if false { } else { r.EncodeInt(int64(x.SizeBytes)) } } } - if yyr2963 || yy2arr2963 { + if yyr2968 || yy2arr2968 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38205,25 +38246,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2970 := z.DecBinary() - _ = yym2970 + yym2975 := z.DecBinary() + _ = yym2975 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2971 := r.ContainerType() - if yyct2971 == codecSelferValueTypeMap1234 { - yyl2971 := r.ReadMapStart() - if yyl2971 == 0 { + yyct2976 := r.ContainerType() + if yyct2976 == codecSelferValueTypeMap1234 { + yyl2976 := r.ReadMapStart() + if yyl2976 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2971, d) + x.codecDecodeSelfFromMap(yyl2976, d) } - } else if yyct2971 == codecSelferValueTypeArray1234 { - yyl2971 := r.ReadArrayStart() - if yyl2971 == 0 { + } else if yyct2976 == codecSelferValueTypeArray1234 { + yyl2976 := r.ReadArrayStart() + if yyl2976 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2971, d) + x.codecDecodeSelfFromArray(yyl2976, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38235,12 +38276,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2972Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2972Slc - var yyhl2972 bool = l >= 0 - for yyj2972 := 0; ; yyj2972++ { - if yyhl2972 { - if yyj2972 >= l { + var yys2977Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2977Slc + var yyhl2977 bool = l >= 0 + for yyj2977 := 0; ; yyj2977++ { + if yyhl2977 { + if yyj2977 >= l { break } } else { @@ -38249,20 +38290,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2972Slc = r.DecodeBytes(yys2972Slc, true, true) - yys2972 := string(yys2972Slc) + yys2977Slc = r.DecodeBytes(yys2977Slc, true, true) + yys2977 := string(yys2977Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2972 { + switch yys2977 { case "names": if r.TryDecodeAsNil() { x.Names = nil } else { - yyv2973 := &x.Names - yym2974 := z.DecBinary() - _ = yym2974 + yyv2978 := &x.Names + yym2979 := z.DecBinary() + _ = yym2979 if false { } else { - z.F.DecSliceStringX(yyv2973, false, d) + z.F.DecSliceStringX(yyv2978, false, d) } } case "sizeBytes": @@ -38272,9 +38313,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys2972) - } // end switch yys2972 - } // end for yyj2972 + z.DecStructFieldNotFound(-1, yys2977) + } // end switch yys2977 + } // end for yyj2977 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38282,16 +38323,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2976 int - var yyb2976 bool - var yyhl2976 bool = l >= 0 - yyj2976++ - if yyhl2976 { - yyb2976 = yyj2976 > l + var yyj2981 int + var yyb2981 bool + var yyhl2981 bool = l >= 0 + yyj2981++ + if yyhl2981 { + yyb2981 = yyj2981 > l } else { - yyb2976 = r.CheckBreak() + yyb2981 = r.CheckBreak() } - if yyb2976 { + if yyb2981 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38299,21 +38340,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Names = nil } else { - yyv2977 := &x.Names - yym2978 := z.DecBinary() - _ = yym2978 + yyv2982 := &x.Names + yym2983 := z.DecBinary() + _ = yym2983 if false { } else { - z.F.DecSliceStringX(yyv2977, false, d) + z.F.DecSliceStringX(yyv2982, false, d) } } - yyj2976++ - if yyhl2976 { - yyb2976 = yyj2976 > l + yyj2981++ + if yyhl2981 { + yyb2981 = yyj2981 > l } else { - yyb2976 = r.CheckBreak() + yyb2981 = r.CheckBreak() } - if yyb2976 { + if yyb2981 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38324,17 +38365,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } for { - yyj2976++ - if yyhl2976 { - yyb2976 = yyj2976 > l + yyj2981++ + if yyhl2981 { + yyb2981 = yyj2981 > l } else { - yyb2976 = r.CheckBreak() + yyb2981 = r.CheckBreak() } - if yyb2976 { + if yyb2981 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2976-1, "") + z.DecStructFieldNotFound(yyj2981-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38343,8 +38384,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2980 := z.EncBinary() - _ = yym2980 + yym2985 := z.EncBinary() + _ = yym2985 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38356,8 +38397,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2981 := z.DecBinary() - _ = yym2981 + yym2986 := z.DecBinary() + _ = yym2986 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38369,8 +38410,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2982 := z.EncBinary() - _ = yym2982 + yym2987 := z.EncBinary() + _ = yym2987 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38382,8 +38423,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2983 := z.DecBinary() - _ = yym2983 + yym2988 := z.DecBinary() + _ = yym2988 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38398,34 +38439,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2984 := z.EncBinary() - _ = yym2984 + yym2989 := z.EncBinary() + _ = yym2989 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2985 := !z.EncBinary() - yy2arr2985 := z.EncBasicHandle().StructToArray - var yyq2985 [6]bool - _, _, _ = yysep2985, yyq2985, yy2arr2985 - const yyr2985 bool = false - yyq2985[2] = true - yyq2985[3] = true - yyq2985[4] = x.Reason != "" - yyq2985[5] = x.Message != "" - var yynn2985 int - if yyr2985 || yy2arr2985 { + yysep2990 := !z.EncBinary() + yy2arr2990 := z.EncBasicHandle().StructToArray + var yyq2990 [6]bool + _, _, _ = yysep2990, yyq2990, yy2arr2990 + const yyr2990 bool = false + yyq2990[2] = true + yyq2990[3] = true + yyq2990[4] = x.Reason != "" + yyq2990[5] = x.Message != "" + var yynn2990 int + if yyr2990 || yy2arr2990 { r.EncodeArrayStart(6) } else { - yynn2985 = 2 - for _, b := range yyq2985 { + yynn2990 = 2 + for _, b := range yyq2990 { if b { - yynn2985++ + yynn2990++ } } - r.EncodeMapStart(yynn2985) - yynn2985 = 0 + r.EncodeMapStart(yynn2990) + yynn2990 = 0 } - if yyr2985 || yy2arr2985 { + if yyr2990 || yy2arr2990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -38434,7 +38475,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2985 || yy2arr2985 { + if yyr2990 || yy2arr2990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -38443,85 +38484,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr2985 || yy2arr2985 { + if yyr2990 || yy2arr2990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2985[2] { - yy2989 := &x.LastHeartbeatTime - yym2990 := z.EncBinary() - _ = yym2990 + if yyq2990[2] { + yy2994 := &x.LastHeartbeatTime + yym2995 := z.EncBinary() + _ = yym2995 if false { - } else if z.HasExtensions() && z.EncExt(yy2989) { - } else if yym2990 { - z.EncBinaryMarshal(yy2989) - } else if !yym2990 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2989) + } else if z.HasExtensions() && z.EncExt(yy2994) { + } else if yym2995 { + z.EncBinaryMarshal(yy2994) + } else if !yym2995 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2994) } else { - z.EncFallback(yy2989) + z.EncFallback(yy2994) } } else { r.EncodeNil() } } else { - if yyq2985[2] { + if yyq2990[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2991 := &x.LastHeartbeatTime - yym2992 := z.EncBinary() - _ = yym2992 + yy2996 := &x.LastHeartbeatTime + yym2997 := z.EncBinary() + _ = yym2997 if false { - } else if z.HasExtensions() && z.EncExt(yy2991) { - } else if yym2992 { - z.EncBinaryMarshal(yy2991) - } else if !yym2992 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2991) + } else if z.HasExtensions() && z.EncExt(yy2996) { + } else if yym2997 { + z.EncBinaryMarshal(yy2996) + } else if !yym2997 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2996) } else { - z.EncFallback(yy2991) + z.EncFallback(yy2996) } } } - if yyr2985 || yy2arr2985 { + if yyr2990 || yy2arr2990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2985[3] { - yy2994 := &x.LastTransitionTime - yym2995 := z.EncBinary() - _ = yym2995 + if yyq2990[3] { + yy2999 := &x.LastTransitionTime + yym3000 := z.EncBinary() + _ = yym3000 if false { - } else if z.HasExtensions() && z.EncExt(yy2994) { - } else if yym2995 { - z.EncBinaryMarshal(yy2994) - } else if !yym2995 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2994) + } else if z.HasExtensions() && z.EncExt(yy2999) { + } else if yym3000 { + z.EncBinaryMarshal(yy2999) + } else if !yym3000 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2999) } else { - z.EncFallback(yy2994) + z.EncFallback(yy2999) } } else { r.EncodeNil() } } else { - if yyq2985[3] { + if yyq2990[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2996 := &x.LastTransitionTime - yym2997 := z.EncBinary() - _ = yym2997 + yy3001 := &x.LastTransitionTime + yym3002 := z.EncBinary() + _ = yym3002 if false { - } else if z.HasExtensions() && z.EncExt(yy2996) { - } else if yym2997 { - z.EncBinaryMarshal(yy2996) - } else if !yym2997 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2996) + } else if z.HasExtensions() && z.EncExt(yy3001) { + } else if yym3002 { + z.EncBinaryMarshal(yy3001) + } else if !yym3002 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3001) } else { - z.EncFallback(yy2996) + z.EncFallback(yy3001) } } } - if yyr2985 || yy2arr2985 { + if yyr2990 || yy2arr2990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2985[4] { - yym2999 := z.EncBinary() - _ = yym2999 + if yyq2990[4] { + yym3004 := z.EncBinary() + _ = yym3004 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -38530,23 +38571,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2985[4] { + if yyq2990[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3000 := z.EncBinary() - _ = yym3000 + yym3005 := z.EncBinary() + _ = yym3005 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2985 || yy2arr2985 { + if yyr2990 || yy2arr2990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2985[5] { - yym3002 := z.EncBinary() - _ = yym3002 + if yyq2990[5] { + yym3007 := z.EncBinary() + _ = yym3007 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -38555,19 +38596,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2985[5] { + if yyq2990[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3003 := z.EncBinary() - _ = yym3003 + yym3008 := z.EncBinary() + _ = yym3008 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2985 || yy2arr2985 { + if yyr2990 || yy2arr2990 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38580,25 +38621,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3004 := z.DecBinary() - _ = yym3004 + yym3009 := z.DecBinary() + _ = yym3009 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3005 := r.ContainerType() - if yyct3005 == codecSelferValueTypeMap1234 { - yyl3005 := r.ReadMapStart() - if yyl3005 == 0 { + yyct3010 := r.ContainerType() + if yyct3010 == codecSelferValueTypeMap1234 { + yyl3010 := r.ReadMapStart() + if yyl3010 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3005, d) + x.codecDecodeSelfFromMap(yyl3010, d) } - } else if yyct3005 == codecSelferValueTypeArray1234 { - yyl3005 := r.ReadArrayStart() - if yyl3005 == 0 { + } else if yyct3010 == codecSelferValueTypeArray1234 { + yyl3010 := r.ReadArrayStart() + if yyl3010 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3005, d) + x.codecDecodeSelfFromArray(yyl3010, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38610,12 +38651,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3006Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3006Slc - var yyhl3006 bool = l >= 0 - for yyj3006 := 0; ; yyj3006++ { - if yyhl3006 { - if yyj3006 >= l { + var yys3011Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3011Slc + var yyhl3011 bool = l >= 0 + for yyj3011 := 0; ; yyj3011++ { + if yyhl3011 { + if yyj3011 >= l { break } } else { @@ -38624,10 +38665,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3006Slc = r.DecodeBytes(yys3006Slc, true, true) - yys3006 := string(yys3006Slc) + yys3011Slc = r.DecodeBytes(yys3011Slc, true, true) + yys3011 := string(yys3011Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3006 { + switch yys3011 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -38644,34 +38685,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3009 := &x.LastHeartbeatTime - yym3010 := z.DecBinary() - _ = yym3010 + yyv3014 := &x.LastHeartbeatTime + yym3015 := z.DecBinary() + _ = yym3015 if false { - } else if z.HasExtensions() && z.DecExt(yyv3009) { - } else if yym3010 { - z.DecBinaryUnmarshal(yyv3009) - } else if !yym3010 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3009) + } else if z.HasExtensions() && z.DecExt(yyv3014) { + } else if yym3015 { + z.DecBinaryUnmarshal(yyv3014) + } else if !yym3015 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3014) } else { - z.DecFallback(yyv3009, false) + z.DecFallback(yyv3014, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3011 := &x.LastTransitionTime - yym3012 := z.DecBinary() - _ = yym3012 + yyv3016 := &x.LastTransitionTime + yym3017 := z.DecBinary() + _ = yym3017 if false { - } else if z.HasExtensions() && z.DecExt(yyv3011) { - } else if yym3012 { - z.DecBinaryUnmarshal(yyv3011) - } else if !yym3012 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3011) + } else if z.HasExtensions() && z.DecExt(yyv3016) { + } else if yym3017 { + z.DecBinaryUnmarshal(yyv3016) + } else if !yym3017 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3016) } else { - z.DecFallback(yyv3011, false) + z.DecFallback(yyv3016, false) } } case "reason": @@ -38687,9 +38728,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3006) - } // end switch yys3006 - } // end for yyj3006 + z.DecStructFieldNotFound(-1, yys3011) + } // end switch yys3011 + } // end for yyj3011 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38697,16 +38738,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3015 int - var yyb3015 bool - var yyhl3015 bool = l >= 0 - yyj3015++ - if yyhl3015 { - yyb3015 = yyj3015 > l + var yyj3020 int + var yyb3020 bool + var yyhl3020 bool = l >= 0 + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb3015 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb3015 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38716,13 +38757,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj3015++ - if yyhl3015 { - yyb3015 = yyj3015 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb3015 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb3015 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38732,13 +38773,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3015++ - if yyhl3015 { - yyb3015 = yyj3015 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb3015 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb3015 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38746,26 +38787,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3018 := &x.LastHeartbeatTime - yym3019 := z.DecBinary() - _ = yym3019 + yyv3023 := &x.LastHeartbeatTime + yym3024 := z.DecBinary() + _ = yym3024 if false { - } else if z.HasExtensions() && z.DecExt(yyv3018) { - } else if yym3019 { - z.DecBinaryUnmarshal(yyv3018) - } else if !yym3019 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3018) + } else if z.HasExtensions() && z.DecExt(yyv3023) { + } else if yym3024 { + z.DecBinaryUnmarshal(yyv3023) + } else if !yym3024 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3023) } else { - z.DecFallback(yyv3018, false) + z.DecFallback(yyv3023, false) } } - yyj3015++ - if yyhl3015 { - yyb3015 = yyj3015 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb3015 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb3015 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38773,26 +38814,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3020 := &x.LastTransitionTime - yym3021 := z.DecBinary() - _ = yym3021 + yyv3025 := &x.LastTransitionTime + yym3026 := z.DecBinary() + _ = yym3026 if false { - } else if z.HasExtensions() && z.DecExt(yyv3020) { - } else if yym3021 { - z.DecBinaryUnmarshal(yyv3020) - } else if !yym3021 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3020) + } else if z.HasExtensions() && z.DecExt(yyv3025) { + } else if yym3026 { + z.DecBinaryUnmarshal(yyv3025) + } else if !yym3026 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3025) } else { - z.DecFallback(yyv3020, false) + z.DecFallback(yyv3025, false) } } - yyj3015++ - if yyhl3015 { - yyb3015 = yyj3015 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb3015 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb3015 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38802,13 +38843,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3015++ - if yyhl3015 { - yyb3015 = yyj3015 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb3015 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb3015 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38819,17 +38860,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj3015++ - if yyhl3015 { - yyb3015 = yyj3015 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb3015 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb3015 { + if yyb3020 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3015-1, "") + z.DecStructFieldNotFound(yyj3020-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38838,8 +38879,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3024 := z.EncBinary() - _ = yym3024 + yym3029 := z.EncBinary() + _ = yym3029 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38851,8 +38892,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3025 := z.DecBinary() - _ = yym3025 + yym3030 := z.DecBinary() + _ = yym3030 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38867,30 +38908,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3026 := z.EncBinary() - _ = yym3026 + yym3031 := z.EncBinary() + _ = yym3031 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3027 := !z.EncBinary() - yy2arr3027 := z.EncBasicHandle().StructToArray - var yyq3027 [2]bool - _, _, _ = yysep3027, yyq3027, yy2arr3027 - const yyr3027 bool = false - var yynn3027 int - if yyr3027 || yy2arr3027 { + yysep3032 := !z.EncBinary() + yy2arr3032 := z.EncBasicHandle().StructToArray + var yyq3032 [2]bool + _, _, _ = yysep3032, yyq3032, yy2arr3032 + const yyr3032 bool = false + var yynn3032 int + if yyr3032 || yy2arr3032 { r.EncodeArrayStart(2) } else { - yynn3027 = 2 - for _, b := range yyq3027 { + yynn3032 = 2 + for _, b := range yyq3032 { if b { - yynn3027++ + yynn3032++ } } - r.EncodeMapStart(yynn3027) - yynn3027 = 0 + r.EncodeMapStart(yynn3032) + yynn3032 = 0 } - if yyr3027 || yy2arr3027 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -38899,10 +38940,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3027 || yy2arr3027 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3030 := z.EncBinary() - _ = yym3030 + yym3035 := z.EncBinary() + _ = yym3035 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -38911,14 +38952,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3031 := z.EncBinary() - _ = yym3031 + yym3036 := z.EncBinary() + _ = yym3036 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr3027 || yy2arr3027 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38931,25 +38972,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3032 := z.DecBinary() - _ = yym3032 + yym3037 := z.DecBinary() + _ = yym3037 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3033 := r.ContainerType() - if yyct3033 == codecSelferValueTypeMap1234 { - yyl3033 := r.ReadMapStart() - if yyl3033 == 0 { + yyct3038 := r.ContainerType() + if yyct3038 == codecSelferValueTypeMap1234 { + yyl3038 := r.ReadMapStart() + if yyl3038 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3033, d) + x.codecDecodeSelfFromMap(yyl3038, d) } - } else if yyct3033 == codecSelferValueTypeArray1234 { - yyl3033 := r.ReadArrayStart() - if yyl3033 == 0 { + } else if yyct3038 == codecSelferValueTypeArray1234 { + yyl3038 := r.ReadArrayStart() + if yyl3038 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3033, d) + x.codecDecodeSelfFromArray(yyl3038, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38961,12 +39002,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3034Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3034Slc - var yyhl3034 bool = l >= 0 - for yyj3034 := 0; ; yyj3034++ { - if yyhl3034 { - if yyj3034 >= l { + var yys3039Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3039Slc + var yyhl3039 bool = l >= 0 + for yyj3039 := 0; ; yyj3039++ { + if yyhl3039 { + if yyj3039 >= l { break } } else { @@ -38975,10 +39016,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3034Slc = r.DecodeBytes(yys3034Slc, true, true) - yys3034 := string(yys3034Slc) + yys3039Slc = r.DecodeBytes(yys3039Slc, true, true) + yys3039 := string(yys3039Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3034 { + switch yys3039 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -38992,9 +39033,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3034) - } // end switch yys3034 - } // end for yyj3034 + z.DecStructFieldNotFound(-1, yys3039) + } // end switch yys3039 + } // end for yyj3039 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39002,16 +39043,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3037 int - var yyb3037 bool - var yyhl3037 bool = l >= 0 - yyj3037++ - if yyhl3037 { - yyb3037 = yyj3037 > l + var yyj3042 int + var yyb3042 bool + var yyhl3042 bool = l >= 0 + yyj3042++ + if yyhl3042 { + yyb3042 = yyj3042 > l } else { - yyb3037 = r.CheckBreak() + yyb3042 = r.CheckBreak() } - if yyb3037 { + if yyb3042 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39021,13 +39062,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj3037++ - if yyhl3037 { - yyb3037 = yyj3037 > l + yyj3042++ + if yyhl3042 { + yyb3042 = yyj3042 > l } else { - yyb3037 = r.CheckBreak() + yyb3042 = r.CheckBreak() } - if yyb3037 { + if yyb3042 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39038,17 +39079,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj3037++ - if yyhl3037 { - yyb3037 = yyj3037 > l + yyj3042++ + if yyhl3042 { + yyb3042 = yyj3042 > l } else { - yyb3037 = r.CheckBreak() + yyb3042 = r.CheckBreak() } - if yyb3037 { + if yyb3042 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3037-1, "") + z.DecStructFieldNotFound(yyj3042-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39060,33 +39101,33 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3040 := z.EncBinary() - _ = yym3040 + yym3045 := z.EncBinary() + _ = yym3045 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3041 := !z.EncBinary() - yy2arr3041 := z.EncBasicHandle().StructToArray - var yyq3041 [1]bool - _, _, _ = yysep3041, yyq3041, yy2arr3041 - const yyr3041 bool = false - yyq3041[0] = len(x.Capacity) != 0 - var yynn3041 int - if yyr3041 || yy2arr3041 { + yysep3046 := !z.EncBinary() + yy2arr3046 := z.EncBasicHandle().StructToArray + var yyq3046 [1]bool + _, _, _ = yysep3046, yyq3046, yy2arr3046 + const yyr3046 bool = false + yyq3046[0] = len(x.Capacity) != 0 + var yynn3046 int + if yyr3046 || yy2arr3046 { r.EncodeArrayStart(1) } else { - yynn3041 = 0 - for _, b := range yyq3041 { + yynn3046 = 0 + for _, b := range yyq3046 { if b { - yynn3041++ + yynn3046++ } } - r.EncodeMapStart(yynn3041) - yynn3041 = 0 + r.EncodeMapStart(yynn3046) + yynn3046 = 0 } - if yyr3041 || yy2arr3041 { + if yyr3046 || yy2arr3046 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3041[0] { + if yyq3046[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -39096,7 +39137,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3041[0] { + if yyq3046[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39107,7 +39148,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3041 || yy2arr3041 { + if yyr3046 || yy2arr3046 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39120,25 +39161,25 @@ func (x *NodeResources) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3043 := z.DecBinary() - _ = yym3043 + yym3048 := z.DecBinary() + _ = yym3048 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3044 := r.ContainerType() - if yyct3044 == codecSelferValueTypeMap1234 { - yyl3044 := r.ReadMapStart() - if yyl3044 == 0 { + yyct3049 := r.ContainerType() + if yyct3049 == codecSelferValueTypeMap1234 { + yyl3049 := r.ReadMapStart() + if yyl3049 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3044, d) + x.codecDecodeSelfFromMap(yyl3049, d) } - } else if yyct3044 == codecSelferValueTypeArray1234 { - yyl3044 := r.ReadArrayStart() - if yyl3044 == 0 { + } else if yyct3049 == codecSelferValueTypeArray1234 { + yyl3049 := r.ReadArrayStart() + if yyl3049 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3044, d) + x.codecDecodeSelfFromArray(yyl3049, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39150,12 +39191,12 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3045Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3045Slc - var yyhl3045 bool = l >= 0 - for yyj3045 := 0; ; yyj3045++ { - if yyhl3045 { - if yyj3045 >= l { + var yys3050Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3050Slc + var yyhl3050 bool = l >= 0 + for yyj3050 := 0; ; yyj3050++ { + if yyhl3050 { + if yyj3050 >= l { break } } else { @@ -39164,21 +39205,21 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3045Slc = r.DecodeBytes(yys3045Slc, true, true) - yys3045 := string(yys3045Slc) + yys3050Slc = r.DecodeBytes(yys3050Slc, true, true) + yys3050 := string(yys3050Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3045 { + switch yys3050 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3046 := &x.Capacity - yyv3046.CodecDecodeSelf(d) + yyv3051 := &x.Capacity + yyv3051.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3045) - } // end switch yys3045 - } // end for yyj3045 + z.DecStructFieldNotFound(-1, yys3050) + } // end switch yys3050 + } // end for yyj3050 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39186,16 +39227,16 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3047 int - var yyb3047 bool - var yyhl3047 bool = l >= 0 - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + var yyj3052 int + var yyb3052 bool + var yyhl3052 bool = l >= 0 + yyj3052++ + if yyhl3052 { + yyb3052 = yyj3052 > l } else { - yyb3047 = r.CheckBreak() + yyb3052 = r.CheckBreak() } - if yyb3047 { + if yyb3052 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39203,21 +39244,21 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3048 := &x.Capacity - yyv3048.CodecDecodeSelf(d) + yyv3053 := &x.Capacity + yyv3053.CodecDecodeSelf(d) } for { - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + yyj3052++ + if yyhl3052 { + yyb3052 = yyj3052 > l } else { - yyb3047 = r.CheckBreak() + yyb3052 = r.CheckBreak() } - if yyb3047 { + if yyb3052 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3047-1, "") + z.DecStructFieldNotFound(yyj3052-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39226,8 +39267,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3049 := z.EncBinary() - _ = yym3049 + yym3054 := z.EncBinary() + _ = yym3054 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39239,8 +39280,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3050 := z.DecBinary() - _ = yym3050 + yym3055 := z.DecBinary() + _ = yym3055 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39255,8 +39296,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3051 := z.EncBinary() - _ = yym3051 + yym3056 := z.EncBinary() + _ = yym3056 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39269,8 +39310,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3052 := z.DecBinary() - _ = yym3052 + yym3057 := z.DecBinary() + _ = yym3057 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39285,39 +39326,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3053 := z.EncBinary() - _ = yym3053 + yym3058 := z.EncBinary() + _ = yym3058 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3054 := !z.EncBinary() - yy2arr3054 := z.EncBasicHandle().StructToArray - var yyq3054 [5]bool - _, _, _ = yysep3054, yyq3054, yy2arr3054 - const yyr3054 bool = false - yyq3054[0] = x.Kind != "" - yyq3054[1] = x.APIVersion != "" - yyq3054[2] = true - yyq3054[3] = true - yyq3054[4] = true - var yynn3054 int - if yyr3054 || yy2arr3054 { + yysep3059 := !z.EncBinary() + yy2arr3059 := z.EncBasicHandle().StructToArray + var yyq3059 [5]bool + _, _, _ = yysep3059, yyq3059, yy2arr3059 + const yyr3059 bool = false + yyq3059[0] = x.Kind != "" + yyq3059[1] = x.APIVersion != "" + yyq3059[2] = true + yyq3059[3] = true + yyq3059[4] = true + var yynn3059 int + if yyr3059 || yy2arr3059 { r.EncodeArrayStart(5) } else { - yynn3054 = 0 - for _, b := range yyq3054 { + yynn3059 = 0 + for _, b := range yyq3059 { if b { - yynn3054++ + yynn3059++ } } - r.EncodeMapStart(yynn3054) - yynn3054 = 0 + r.EncodeMapStart(yynn3059) + yynn3059 = 0 } - if yyr3054 || yy2arr3054 { + if yyr3059 || yy2arr3059 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3054[0] { - yym3056 := z.EncBinary() - _ = yym3056 + if yyq3059[0] { + yym3061 := z.EncBinary() + _ = yym3061 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39326,23 +39367,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3054[0] { + if yyq3059[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3057 := z.EncBinary() - _ = yym3057 + yym3062 := z.EncBinary() + _ = yym3062 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3054 || yy2arr3054 { + if yyr3059 || yy2arr3059 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3054[1] { - yym3059 := z.EncBinary() - _ = yym3059 + if yyq3059[1] { + yym3064 := z.EncBinary() + _ = yym3064 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39351,70 +39392,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3054[1] { + if yyq3059[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3060 := z.EncBinary() - _ = yym3060 + yym3065 := z.EncBinary() + _ = yym3065 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3054 || yy2arr3054 { + if yyr3059 || yy2arr3059 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3054[2] { - yy3062 := &x.ObjectMeta - yy3062.CodecEncodeSelf(e) + if yyq3059[2] { + yy3067 := &x.ObjectMeta + yy3067.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3054[2] { + if yyq3059[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3063 := &x.ObjectMeta - yy3063.CodecEncodeSelf(e) + yy3068 := &x.ObjectMeta + yy3068.CodecEncodeSelf(e) } } - if yyr3054 || yy2arr3054 { + if yyr3059 || yy2arr3059 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3054[3] { - yy3065 := &x.Spec - yy3065.CodecEncodeSelf(e) + if yyq3059[3] { + yy3070 := &x.Spec + yy3070.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3054[3] { + if yyq3059[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3066 := &x.Spec - yy3066.CodecEncodeSelf(e) + yy3071 := &x.Spec + yy3071.CodecEncodeSelf(e) } } - if yyr3054 || yy2arr3054 { + if yyr3059 || yy2arr3059 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3054[4] { - yy3068 := &x.Status - yy3068.CodecEncodeSelf(e) + if yyq3059[4] { + yy3073 := &x.Status + yy3073.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3054[4] { + if yyq3059[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3069 := &x.Status - yy3069.CodecEncodeSelf(e) + yy3074 := &x.Status + yy3074.CodecEncodeSelf(e) } } - if yyr3054 || yy2arr3054 { + if yyr3059 || yy2arr3059 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39427,25 +39468,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3070 := z.DecBinary() - _ = yym3070 + yym3075 := z.DecBinary() + _ = yym3075 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3071 := r.ContainerType() - if yyct3071 == codecSelferValueTypeMap1234 { - yyl3071 := r.ReadMapStart() - if yyl3071 == 0 { + yyct3076 := r.ContainerType() + if yyct3076 == codecSelferValueTypeMap1234 { + yyl3076 := r.ReadMapStart() + if yyl3076 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3071, d) + x.codecDecodeSelfFromMap(yyl3076, d) } - } else if yyct3071 == codecSelferValueTypeArray1234 { - yyl3071 := r.ReadArrayStart() - if yyl3071 == 0 { + } else if yyct3076 == codecSelferValueTypeArray1234 { + yyl3076 := r.ReadArrayStart() + if yyl3076 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3071, d) + x.codecDecodeSelfFromArray(yyl3076, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39457,12 +39498,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3072Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3072Slc - var yyhl3072 bool = l >= 0 - for yyj3072 := 0; ; yyj3072++ { - if yyhl3072 { - if yyj3072 >= l { + var yys3077Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3077Slc + var yyhl3077 bool = l >= 0 + for yyj3077 := 0; ; yyj3077++ { + if yyhl3077 { + if yyj3077 >= l { break } } else { @@ -39471,10 +39512,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3072Slc = r.DecodeBytes(yys3072Slc, true, true) - yys3072 := string(yys3072Slc) + yys3077Slc = r.DecodeBytes(yys3077Slc, true, true) + yys3077 := string(yys3077Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3072 { + switch yys3077 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39491,27 +39532,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3075 := &x.ObjectMeta - yyv3075.CodecDecodeSelf(d) + yyv3080 := &x.ObjectMeta + yyv3080.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3076 := &x.Spec - yyv3076.CodecDecodeSelf(d) + yyv3081 := &x.Spec + yyv3081.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3077 := &x.Status - yyv3077.CodecDecodeSelf(d) + yyv3082 := &x.Status + yyv3082.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3072) - } // end switch yys3072 - } // end for yyj3072 + z.DecStructFieldNotFound(-1, yys3077) + } // end switch yys3077 + } // end for yyj3077 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39519,16 +39560,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3078 int - var yyb3078 bool - var yyhl3078 bool = l >= 0 - yyj3078++ - if yyhl3078 { - yyb3078 = yyj3078 > l + var yyj3083 int + var yyb3083 bool + var yyhl3083 bool = l >= 0 + yyj3083++ + if yyhl3083 { + yyb3083 = yyj3083 > l } else { - yyb3078 = r.CheckBreak() + yyb3083 = r.CheckBreak() } - if yyb3078 { + if yyb3083 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39538,13 +39579,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3078++ - if yyhl3078 { - yyb3078 = yyj3078 > l + yyj3083++ + if yyhl3083 { + yyb3083 = yyj3083 > l } else { - yyb3078 = r.CheckBreak() + yyb3083 = r.CheckBreak() } - if yyb3078 { + if yyb3083 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39554,13 +39595,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3078++ - if yyhl3078 { - yyb3078 = yyj3078 > l + yyj3083++ + if yyhl3083 { + yyb3083 = yyj3083 > l } else { - yyb3078 = r.CheckBreak() + yyb3083 = r.CheckBreak() } - if yyb3078 { + if yyb3083 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39568,16 +39609,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3081 := &x.ObjectMeta - yyv3081.CodecDecodeSelf(d) + yyv3086 := &x.ObjectMeta + yyv3086.CodecDecodeSelf(d) } - yyj3078++ - if yyhl3078 { - yyb3078 = yyj3078 > l + yyj3083++ + if yyhl3083 { + yyb3083 = yyj3083 > l } else { - yyb3078 = r.CheckBreak() + yyb3083 = r.CheckBreak() } - if yyb3078 { + if yyb3083 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39585,16 +39626,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3082 := &x.Spec - yyv3082.CodecDecodeSelf(d) + yyv3087 := &x.Spec + yyv3087.CodecDecodeSelf(d) } - yyj3078++ - if yyhl3078 { - yyb3078 = yyj3078 > l + yyj3083++ + if yyhl3083 { + yyb3083 = yyj3083 > l } else { - yyb3078 = r.CheckBreak() + yyb3083 = r.CheckBreak() } - if yyb3078 { + if yyb3083 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39602,21 +39643,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3083 := &x.Status - yyv3083.CodecDecodeSelf(d) + yyv3088 := &x.Status + yyv3088.CodecDecodeSelf(d) } for { - yyj3078++ - if yyhl3078 { - yyb3078 = yyj3078 > l + yyj3083++ + if yyhl3083 { + yyb3083 = yyj3083 > l } else { - yyb3078 = r.CheckBreak() + yyb3083 = r.CheckBreak() } - if yyb3078 { + if yyb3083 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3078-1, "") + z.DecStructFieldNotFound(yyj3083-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39628,37 +39669,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3084 := z.EncBinary() - _ = yym3084 + yym3089 := z.EncBinary() + _ = yym3089 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3085 := !z.EncBinary() - yy2arr3085 := z.EncBasicHandle().StructToArray - var yyq3085 [4]bool - _, _, _ = yysep3085, yyq3085, yy2arr3085 - const yyr3085 bool = false - yyq3085[0] = x.Kind != "" - yyq3085[1] = x.APIVersion != "" - yyq3085[2] = true - var yynn3085 int - if yyr3085 || yy2arr3085 { + yysep3090 := !z.EncBinary() + yy2arr3090 := z.EncBasicHandle().StructToArray + var yyq3090 [4]bool + _, _, _ = yysep3090, yyq3090, yy2arr3090 + const yyr3090 bool = false + yyq3090[0] = x.Kind != "" + yyq3090[1] = x.APIVersion != "" + yyq3090[2] = true + var yynn3090 int + if yyr3090 || yy2arr3090 { r.EncodeArrayStart(4) } else { - yynn3085 = 1 - for _, b := range yyq3085 { + yynn3090 = 1 + for _, b := range yyq3090 { if b { - yynn3085++ + yynn3090++ } } - r.EncodeMapStart(yynn3085) - yynn3085 = 0 + r.EncodeMapStart(yynn3090) + yynn3090 = 0 } - if yyr3085 || yy2arr3085 { + if yyr3090 || yy2arr3090 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3085[0] { - yym3087 := z.EncBinary() - _ = yym3087 + if yyq3090[0] { + yym3092 := z.EncBinary() + _ = yym3092 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39667,23 +39708,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3085[0] { + if yyq3090[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3088 := z.EncBinary() - _ = yym3088 + yym3093 := z.EncBinary() + _ = yym3093 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3085 || yy2arr3085 { + if yyr3090 || yy2arr3090 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3085[1] { - yym3090 := z.EncBinary() - _ = yym3090 + if yyq3090[1] { + yym3095 := z.EncBinary() + _ = yym3095 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39692,54 +39733,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3085[1] { + if yyq3090[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3091 := z.EncBinary() - _ = yym3091 + yym3096 := z.EncBinary() + _ = yym3096 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3085 || yy2arr3085 { + if yyr3090 || yy2arr3090 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3085[2] { - yy3093 := &x.ListMeta - yym3094 := z.EncBinary() - _ = yym3094 + if yyq3090[2] { + yy3098 := &x.ListMeta + yym3099 := z.EncBinary() + _ = yym3099 if false { - } else if z.HasExtensions() && z.EncExt(yy3093) { + } else if z.HasExtensions() && z.EncExt(yy3098) { } else { - z.EncFallback(yy3093) + z.EncFallback(yy3098) } } else { r.EncodeNil() } } else { - if yyq3085[2] { + if yyq3090[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3095 := &x.ListMeta - yym3096 := z.EncBinary() - _ = yym3096 + yy3100 := &x.ListMeta + yym3101 := z.EncBinary() + _ = yym3101 if false { - } else if z.HasExtensions() && z.EncExt(yy3095) { + } else if z.HasExtensions() && z.EncExt(yy3100) { } else { - z.EncFallback(yy3095) + z.EncFallback(yy3100) } } } - if yyr3085 || yy2arr3085 { + if yyr3090 || yy2arr3090 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3098 := z.EncBinary() - _ = yym3098 + yym3103 := z.EncBinary() + _ = yym3103 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -39752,15 +39793,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3099 := z.EncBinary() - _ = yym3099 + yym3104 := z.EncBinary() + _ = yym3104 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr3085 || yy2arr3085 { + if yyr3090 || yy2arr3090 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39773,25 +39814,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3100 := z.DecBinary() - _ = yym3100 + yym3105 := z.DecBinary() + _ = yym3105 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3101 := r.ContainerType() - if yyct3101 == codecSelferValueTypeMap1234 { - yyl3101 := r.ReadMapStart() - if yyl3101 == 0 { + yyct3106 := r.ContainerType() + if yyct3106 == codecSelferValueTypeMap1234 { + yyl3106 := r.ReadMapStart() + if yyl3106 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3101, d) + x.codecDecodeSelfFromMap(yyl3106, d) } - } else if yyct3101 == codecSelferValueTypeArray1234 { - yyl3101 := r.ReadArrayStart() - if yyl3101 == 0 { + } else if yyct3106 == codecSelferValueTypeArray1234 { + yyl3106 := r.ReadArrayStart() + if yyl3106 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3101, d) + x.codecDecodeSelfFromArray(yyl3106, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39803,12 +39844,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3102Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3102Slc - var yyhl3102 bool = l >= 0 - for yyj3102 := 0; ; yyj3102++ { - if yyhl3102 { - if yyj3102 >= l { + var yys3107Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3107Slc + var yyhl3107 bool = l >= 0 + for yyj3107 := 0; ; yyj3107++ { + if yyhl3107 { + if yyj3107 >= l { break } } else { @@ -39817,10 +39858,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3102Slc = r.DecodeBytes(yys3102Slc, true, true) - yys3102 := string(yys3102Slc) + yys3107Slc = r.DecodeBytes(yys3107Slc, true, true) + yys3107 := string(yys3107Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3102 { + switch yys3107 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39837,31 +39878,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3105 := &x.ListMeta - yym3106 := z.DecBinary() - _ = yym3106 + yyv3110 := &x.ListMeta + yym3111 := z.DecBinary() + _ = yym3111 if false { - } else if z.HasExtensions() && z.DecExt(yyv3105) { + } else if z.HasExtensions() && z.DecExt(yyv3110) { } else { - z.DecFallback(yyv3105, false) + z.DecFallback(yyv3110, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3107 := &x.Items - yym3108 := z.DecBinary() - _ = yym3108 + yyv3112 := &x.Items + yym3113 := z.DecBinary() + _ = yym3113 if false { } else { - h.decSliceNode((*[]Node)(yyv3107), d) + h.decSliceNode((*[]Node)(yyv3112), d) } } default: - z.DecStructFieldNotFound(-1, yys3102) - } // end switch yys3102 - } // end for yyj3102 + z.DecStructFieldNotFound(-1, yys3107) + } // end switch yys3107 + } // end for yyj3107 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39869,16 +39910,16 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3109 int - var yyb3109 bool - var yyhl3109 bool = l >= 0 - yyj3109++ - if yyhl3109 { - yyb3109 = yyj3109 > l + var yyj3114 int + var yyb3114 bool + var yyhl3114 bool = l >= 0 + yyj3114++ + if yyhl3114 { + yyb3114 = yyj3114 > l } else { - yyb3109 = r.CheckBreak() + yyb3114 = r.CheckBreak() } - if yyb3109 { + if yyb3114 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39888,13 +39929,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3109++ - if yyhl3109 { - yyb3109 = yyj3109 > l + yyj3114++ + if yyhl3114 { + yyb3114 = yyj3114 > l } else { - yyb3109 = r.CheckBreak() + yyb3114 = r.CheckBreak() } - if yyb3109 { + if yyb3114 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39904,13 +39945,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3109++ - if yyhl3109 { - yyb3109 = yyj3109 > l + yyj3114++ + if yyhl3114 { + yyb3114 = yyj3114 > l } else { - yyb3109 = r.CheckBreak() + yyb3114 = r.CheckBreak() } - if yyb3109 { + if yyb3114 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39918,22 +39959,22 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3112 := &x.ListMeta - yym3113 := z.DecBinary() - _ = yym3113 + yyv3117 := &x.ListMeta + yym3118 := z.DecBinary() + _ = yym3118 if false { - } else if z.HasExtensions() && z.DecExt(yyv3112) { + } else if z.HasExtensions() && z.DecExt(yyv3117) { } else { - z.DecFallback(yyv3112, false) + z.DecFallback(yyv3117, false) } } - yyj3109++ - if yyhl3109 { - yyb3109 = yyj3109 > l + yyj3114++ + if yyhl3114 { + yyb3114 = yyj3114 > l } else { - yyb3109 = r.CheckBreak() + yyb3114 = r.CheckBreak() } - if yyb3109 { + if yyb3114 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39941,26 +39982,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3114 := &x.Items - yym3115 := z.DecBinary() - _ = yym3115 + yyv3119 := &x.Items + yym3120 := z.DecBinary() + _ = yym3120 if false { } else { - h.decSliceNode((*[]Node)(yyv3114), d) + h.decSliceNode((*[]Node)(yyv3119), d) } } for { - yyj3109++ - if yyhl3109 { - yyb3109 = yyj3109 > l + yyj3114++ + if yyhl3114 { + yyb3114 = yyj3114 > l } else { - yyb3109 = r.CheckBreak() + yyb3114 = r.CheckBreak() } - if yyb3109 { + if yyb3114 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3109-1, "") + z.DecStructFieldNotFound(yyj3114-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39972,36 +40013,36 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3116 := z.EncBinary() - _ = yym3116 + yym3121 := z.EncBinary() + _ = yym3121 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3117 := !z.EncBinary() - yy2arr3117 := z.EncBasicHandle().StructToArray - var yyq3117 [1]bool - _, _, _ = yysep3117, yyq3117, yy2arr3117 - const yyr3117 bool = false - var yynn3117 int - if yyr3117 || yy2arr3117 { + yysep3122 := !z.EncBinary() + yy2arr3122 := z.EncBasicHandle().StructToArray + var yyq3122 [1]bool + _, _, _ = yysep3122, yyq3122, yy2arr3122 + const yyr3122 bool = false + var yynn3122 int + if yyr3122 || yy2arr3122 { r.EncodeArrayStart(1) } else { - yynn3117 = 1 - for _, b := range yyq3117 { + yynn3122 = 1 + for _, b := range yyq3122 { if b { - yynn3117++ + yynn3122++ } } - r.EncodeMapStart(yynn3117) - yynn3117 = 0 + r.EncodeMapStart(yynn3122) + yynn3122 = 0 } - if yyr3117 || yy2arr3117 { + if yyr3122 || yy2arr3122 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym3119 := z.EncBinary() - _ = yym3119 + yym3124 := z.EncBinary() + _ = yym3124 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -40014,15 +40055,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Finalizers == nil { r.EncodeNil() } else { - yym3120 := z.EncBinary() - _ = yym3120 + yym3125 := z.EncBinary() + _ = yym3125 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) } } } - if yyr3117 || yy2arr3117 { + if yyr3122 || yy2arr3122 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40035,25 +40076,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3121 := z.DecBinary() - _ = yym3121 + yym3126 := z.DecBinary() + _ = yym3126 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3122 := r.ContainerType() - if yyct3122 == codecSelferValueTypeMap1234 { - yyl3122 := r.ReadMapStart() - if yyl3122 == 0 { + yyct3127 := r.ContainerType() + if yyct3127 == codecSelferValueTypeMap1234 { + yyl3127 := r.ReadMapStart() + if yyl3127 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3122, d) + x.codecDecodeSelfFromMap(yyl3127, d) } - } else if yyct3122 == codecSelferValueTypeArray1234 { - yyl3122 := r.ReadArrayStart() - if yyl3122 == 0 { + } else if yyct3127 == codecSelferValueTypeArray1234 { + yyl3127 := r.ReadArrayStart() + if yyl3127 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3122, d) + x.codecDecodeSelfFromArray(yyl3127, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40065,12 +40106,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3123Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3123Slc - var yyhl3123 bool = l >= 0 - for yyj3123 := 0; ; yyj3123++ { - if yyhl3123 { - if yyj3123 >= l { + var yys3128Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3128Slc + var yyhl3128 bool = l >= 0 + for yyj3128 := 0; ; yyj3128++ { + if yyhl3128 { + if yyj3128 >= l { break } } else { @@ -40079,26 +40120,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3123Slc = r.DecodeBytes(yys3123Slc, true, true) - yys3123 := string(yys3123Slc) + yys3128Slc = r.DecodeBytes(yys3128Slc, true, true) + yys3128 := string(yys3128Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3123 { + switch yys3128 { case "Finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3124 := &x.Finalizers - yym3125 := z.DecBinary() - _ = yym3125 + yyv3129 := &x.Finalizers + yym3130 := z.DecBinary() + _ = yym3130 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3124), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3129), d) } } default: - z.DecStructFieldNotFound(-1, yys3123) - } // end switch yys3123 - } // end for yyj3123 + z.DecStructFieldNotFound(-1, yys3128) + } // end switch yys3128 + } // end for yyj3128 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40106,16 +40147,16 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3126 int - var yyb3126 bool - var yyhl3126 bool = l >= 0 - yyj3126++ - if yyhl3126 { - yyb3126 = yyj3126 > l + var yyj3131 int + var yyb3131 bool + var yyhl3131 bool = l >= 0 + yyj3131++ + if yyhl3131 { + yyb3131 = yyj3131 > l } else { - yyb3126 = r.CheckBreak() + yyb3131 = r.CheckBreak() } - if yyb3126 { + if yyb3131 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40123,26 +40164,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3127 := &x.Finalizers - yym3128 := z.DecBinary() - _ = yym3128 + yyv3132 := &x.Finalizers + yym3133 := z.DecBinary() + _ = yym3133 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3127), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3132), d) } } for { - yyj3126++ - if yyhl3126 { - yyb3126 = yyj3126 > l + yyj3131++ + if yyhl3131 { + yyb3131 = yyj3131 > l } else { - yyb3126 = r.CheckBreak() + yyb3131 = r.CheckBreak() } - if yyb3126 { + if yyb3131 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3126-1, "") + z.DecStructFieldNotFound(yyj3131-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40151,8 +40192,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3129 := z.EncBinary() - _ = yym3129 + yym3134 := z.EncBinary() + _ = yym3134 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40164,8 +40205,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3130 := z.DecBinary() - _ = yym3130 + yym3135 := z.DecBinary() + _ = yym3135 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40180,46 +40221,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3131 := z.EncBinary() - _ = yym3131 + yym3136 := z.EncBinary() + _ = yym3136 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3132 := !z.EncBinary() - yy2arr3132 := z.EncBasicHandle().StructToArray - var yyq3132 [1]bool - _, _, _ = yysep3132, yyq3132, yy2arr3132 - const yyr3132 bool = false - yyq3132[0] = x.Phase != "" - var yynn3132 int - if yyr3132 || yy2arr3132 { + yysep3137 := !z.EncBinary() + yy2arr3137 := z.EncBasicHandle().StructToArray + var yyq3137 [1]bool + _, _, _ = yysep3137, yyq3137, yy2arr3137 + const yyr3137 bool = false + yyq3137[0] = x.Phase != "" + var yynn3137 int + if yyr3137 || yy2arr3137 { r.EncodeArrayStart(1) } else { - yynn3132 = 0 - for _, b := range yyq3132 { + yynn3137 = 0 + for _, b := range yyq3137 { if b { - yynn3132++ + yynn3137++ } } - r.EncodeMapStart(yynn3132) - yynn3132 = 0 + r.EncodeMapStart(yynn3137) + yynn3137 = 0 } - if yyr3132 || yy2arr3132 { + if yyr3137 || yy2arr3137 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3132[0] { + if yyq3137[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3132[0] { + if yyq3137[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr3132 || yy2arr3132 { + if yyr3137 || yy2arr3137 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40232,25 +40273,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3134 := z.DecBinary() - _ = yym3134 + yym3139 := z.DecBinary() + _ = yym3139 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3135 := r.ContainerType() - if yyct3135 == codecSelferValueTypeMap1234 { - yyl3135 := r.ReadMapStart() - if yyl3135 == 0 { + yyct3140 := r.ContainerType() + if yyct3140 == codecSelferValueTypeMap1234 { + yyl3140 := r.ReadMapStart() + if yyl3140 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3135, d) + x.codecDecodeSelfFromMap(yyl3140, d) } - } else if yyct3135 == codecSelferValueTypeArray1234 { - yyl3135 := r.ReadArrayStart() - if yyl3135 == 0 { + } else if yyct3140 == codecSelferValueTypeArray1234 { + yyl3140 := r.ReadArrayStart() + if yyl3140 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3135, d) + x.codecDecodeSelfFromArray(yyl3140, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40262,12 +40303,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3136Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3136Slc - var yyhl3136 bool = l >= 0 - for yyj3136 := 0; ; yyj3136++ { - if yyhl3136 { - if yyj3136 >= l { + var yys3141Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3141Slc + var yyhl3141 bool = l >= 0 + for yyj3141 := 0; ; yyj3141++ { + if yyhl3141 { + if yyj3141 >= l { break } } else { @@ -40276,10 +40317,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3136Slc = r.DecodeBytes(yys3136Slc, true, true) - yys3136 := string(yys3136Slc) + yys3141Slc = r.DecodeBytes(yys3141Slc, true, true) + yys3141 := string(yys3141Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3136 { + switch yys3141 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -40287,9 +40328,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3136) - } // end switch yys3136 - } // end for yyj3136 + z.DecStructFieldNotFound(-1, yys3141) + } // end switch yys3141 + } // end for yyj3141 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40297,16 +40338,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3138 int - var yyb3138 bool - var yyhl3138 bool = l >= 0 - yyj3138++ - if yyhl3138 { - yyb3138 = yyj3138 > l + var yyj3143 int + var yyb3143 bool + var yyhl3143 bool = l >= 0 + yyj3143++ + if yyhl3143 { + yyb3143 = yyj3143 > l } else { - yyb3138 = r.CheckBreak() + yyb3143 = r.CheckBreak() } - if yyb3138 { + if yyb3143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40317,17 +40358,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj3138++ - if yyhl3138 { - yyb3138 = yyj3138 > l + yyj3143++ + if yyhl3143 { + yyb3143 = yyj3143 > l } else { - yyb3138 = r.CheckBreak() + yyb3143 = r.CheckBreak() } - if yyb3138 { + if yyb3143 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3138-1, "") + z.DecStructFieldNotFound(yyj3143-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40336,8 +40377,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3140 := z.EncBinary() - _ = yym3140 + yym3145 := z.EncBinary() + _ = yym3145 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40349,8 +40390,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3141 := z.DecBinary() - _ = yym3141 + yym3146 := z.DecBinary() + _ = yym3146 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40365,39 +40406,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3142 := z.EncBinary() - _ = yym3142 + yym3147 := z.EncBinary() + _ = yym3147 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3143 := !z.EncBinary() - yy2arr3143 := z.EncBasicHandle().StructToArray - var yyq3143 [5]bool - _, _, _ = yysep3143, yyq3143, yy2arr3143 - const yyr3143 bool = false - yyq3143[0] = x.Kind != "" - yyq3143[1] = x.APIVersion != "" - yyq3143[2] = true - yyq3143[3] = true - yyq3143[4] = true - var yynn3143 int - if yyr3143 || yy2arr3143 { + yysep3148 := !z.EncBinary() + yy2arr3148 := z.EncBasicHandle().StructToArray + var yyq3148 [5]bool + _, _, _ = yysep3148, yyq3148, yy2arr3148 + const yyr3148 bool = false + yyq3148[0] = x.Kind != "" + yyq3148[1] = x.APIVersion != "" + yyq3148[2] = true + yyq3148[3] = true + yyq3148[4] = true + var yynn3148 int + if yyr3148 || yy2arr3148 { r.EncodeArrayStart(5) } else { - yynn3143 = 0 - for _, b := range yyq3143 { + yynn3148 = 0 + for _, b := range yyq3148 { if b { - yynn3143++ + yynn3148++ } } - r.EncodeMapStart(yynn3143) - yynn3143 = 0 + r.EncodeMapStart(yynn3148) + yynn3148 = 0 } - if yyr3143 || yy2arr3143 { + if yyr3148 || yy2arr3148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3143[0] { - yym3145 := z.EncBinary() - _ = yym3145 + if yyq3148[0] { + yym3150 := z.EncBinary() + _ = yym3150 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40406,23 +40447,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3143[0] { + if yyq3148[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3146 := z.EncBinary() - _ = yym3146 + yym3151 := z.EncBinary() + _ = yym3151 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3143 || yy2arr3143 { + if yyr3148 || yy2arr3148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3143[1] { - yym3148 := z.EncBinary() - _ = yym3148 + if yyq3148[1] { + yym3153 := z.EncBinary() + _ = yym3153 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40431,70 +40472,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3143[1] { + if yyq3148[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3149 := z.EncBinary() - _ = yym3149 + yym3154 := z.EncBinary() + _ = yym3154 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3143 || yy2arr3143 { + if yyr3148 || yy2arr3148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3143[2] { - yy3151 := &x.ObjectMeta - yy3151.CodecEncodeSelf(e) + if yyq3148[2] { + yy3156 := &x.ObjectMeta + yy3156.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3143[2] { + if yyq3148[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3152 := &x.ObjectMeta - yy3152.CodecEncodeSelf(e) + yy3157 := &x.ObjectMeta + yy3157.CodecEncodeSelf(e) } } - if yyr3143 || yy2arr3143 { + if yyr3148 || yy2arr3148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3143[3] { - yy3154 := &x.Spec - yy3154.CodecEncodeSelf(e) + if yyq3148[3] { + yy3159 := &x.Spec + yy3159.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3143[3] { + if yyq3148[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3155 := &x.Spec - yy3155.CodecEncodeSelf(e) + yy3160 := &x.Spec + yy3160.CodecEncodeSelf(e) } } - if yyr3143 || yy2arr3143 { + if yyr3148 || yy2arr3148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3143[4] { - yy3157 := &x.Status - yy3157.CodecEncodeSelf(e) + if yyq3148[4] { + yy3162 := &x.Status + yy3162.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3143[4] { + if yyq3148[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3158 := &x.Status - yy3158.CodecEncodeSelf(e) + yy3163 := &x.Status + yy3163.CodecEncodeSelf(e) } } - if yyr3143 || yy2arr3143 { + if yyr3148 || yy2arr3148 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40507,25 +40548,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3159 := z.DecBinary() - _ = yym3159 + yym3164 := z.DecBinary() + _ = yym3164 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3160 := r.ContainerType() - if yyct3160 == codecSelferValueTypeMap1234 { - yyl3160 := r.ReadMapStart() - if yyl3160 == 0 { + yyct3165 := r.ContainerType() + if yyct3165 == codecSelferValueTypeMap1234 { + yyl3165 := r.ReadMapStart() + if yyl3165 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3160, d) + x.codecDecodeSelfFromMap(yyl3165, d) } - } else if yyct3160 == codecSelferValueTypeArray1234 { - yyl3160 := r.ReadArrayStart() - if yyl3160 == 0 { + } else if yyct3165 == codecSelferValueTypeArray1234 { + yyl3165 := r.ReadArrayStart() + if yyl3165 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3160, d) + x.codecDecodeSelfFromArray(yyl3165, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40537,12 +40578,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3161Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3161Slc - var yyhl3161 bool = l >= 0 - for yyj3161 := 0; ; yyj3161++ { - if yyhl3161 { - if yyj3161 >= l { + var yys3166Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3166Slc + var yyhl3166 bool = l >= 0 + for yyj3166 := 0; ; yyj3166++ { + if yyhl3166 { + if yyj3166 >= l { break } } else { @@ -40551,10 +40592,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3161Slc = r.DecodeBytes(yys3161Slc, true, true) - yys3161 := string(yys3161Slc) + yys3166Slc = r.DecodeBytes(yys3166Slc, true, true) + yys3166 := string(yys3166Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3161 { + switch yys3166 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40571,27 +40612,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3164 := &x.ObjectMeta - yyv3164.CodecDecodeSelf(d) + yyv3169 := &x.ObjectMeta + yyv3169.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3165 := &x.Spec - yyv3165.CodecDecodeSelf(d) + yyv3170 := &x.Spec + yyv3170.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3166 := &x.Status - yyv3166.CodecDecodeSelf(d) + yyv3171 := &x.Status + yyv3171.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3161) - } // end switch yys3161 - } // end for yyj3161 + z.DecStructFieldNotFound(-1, yys3166) + } // end switch yys3166 + } // end for yyj3166 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40599,16 +40640,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3167 int - var yyb3167 bool - var yyhl3167 bool = l >= 0 - yyj3167++ - if yyhl3167 { - yyb3167 = yyj3167 > l + var yyj3172 int + var yyb3172 bool + var yyhl3172 bool = l >= 0 + yyj3172++ + if yyhl3172 { + yyb3172 = yyj3172 > l } else { - yyb3167 = r.CheckBreak() + yyb3172 = r.CheckBreak() } - if yyb3167 { + if yyb3172 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40618,13 +40659,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3167++ - if yyhl3167 { - yyb3167 = yyj3167 > l + yyj3172++ + if yyhl3172 { + yyb3172 = yyj3172 > l } else { - yyb3167 = r.CheckBreak() + yyb3172 = r.CheckBreak() } - if yyb3167 { + if yyb3172 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40634,13 +40675,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3167++ - if yyhl3167 { - yyb3167 = yyj3167 > l + yyj3172++ + if yyhl3172 { + yyb3172 = yyj3172 > l } else { - yyb3167 = r.CheckBreak() + yyb3172 = r.CheckBreak() } - if yyb3167 { + if yyb3172 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40648,16 +40689,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3170 := &x.ObjectMeta - yyv3170.CodecDecodeSelf(d) + yyv3175 := &x.ObjectMeta + yyv3175.CodecDecodeSelf(d) } - yyj3167++ - if yyhl3167 { - yyb3167 = yyj3167 > l + yyj3172++ + if yyhl3172 { + yyb3172 = yyj3172 > l } else { - yyb3167 = r.CheckBreak() + yyb3172 = r.CheckBreak() } - if yyb3167 { + if yyb3172 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40665,16 +40706,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3171 := &x.Spec - yyv3171.CodecDecodeSelf(d) + yyv3176 := &x.Spec + yyv3176.CodecDecodeSelf(d) } - yyj3167++ - if yyhl3167 { - yyb3167 = yyj3167 > l + yyj3172++ + if yyhl3172 { + yyb3172 = yyj3172 > l } else { - yyb3167 = r.CheckBreak() + yyb3172 = r.CheckBreak() } - if yyb3167 { + if yyb3172 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40682,21 +40723,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3172 := &x.Status - yyv3172.CodecDecodeSelf(d) + yyv3177 := &x.Status + yyv3177.CodecDecodeSelf(d) } for { - yyj3167++ - if yyhl3167 { - yyb3167 = yyj3167 > l + yyj3172++ + if yyhl3172 { + yyb3172 = yyj3172 > l } else { - yyb3167 = r.CheckBreak() + yyb3172 = r.CheckBreak() } - if yyb3167 { + if yyb3172 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3167-1, "") + z.DecStructFieldNotFound(yyj3172-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40708,37 +40749,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3173 := z.EncBinary() - _ = yym3173 + yym3178 := z.EncBinary() + _ = yym3178 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3174 := !z.EncBinary() - yy2arr3174 := z.EncBasicHandle().StructToArray - var yyq3174 [4]bool - _, _, _ = yysep3174, yyq3174, yy2arr3174 - const yyr3174 bool = false - yyq3174[0] = x.Kind != "" - yyq3174[1] = x.APIVersion != "" - yyq3174[2] = true - var yynn3174 int - if yyr3174 || yy2arr3174 { + yysep3179 := !z.EncBinary() + yy2arr3179 := z.EncBasicHandle().StructToArray + var yyq3179 [4]bool + _, _, _ = yysep3179, yyq3179, yy2arr3179 + const yyr3179 bool = false + yyq3179[0] = x.Kind != "" + yyq3179[1] = x.APIVersion != "" + yyq3179[2] = true + var yynn3179 int + if yyr3179 || yy2arr3179 { r.EncodeArrayStart(4) } else { - yynn3174 = 1 - for _, b := range yyq3174 { + yynn3179 = 1 + for _, b := range yyq3179 { if b { - yynn3174++ + yynn3179++ } } - r.EncodeMapStart(yynn3174) - yynn3174 = 0 + r.EncodeMapStart(yynn3179) + yynn3179 = 0 } - if yyr3174 || yy2arr3174 { + if yyr3179 || yy2arr3179 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3174[0] { - yym3176 := z.EncBinary() - _ = yym3176 + if yyq3179[0] { + yym3181 := z.EncBinary() + _ = yym3181 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40747,23 +40788,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3174[0] { + if yyq3179[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3177 := z.EncBinary() - _ = yym3177 + yym3182 := z.EncBinary() + _ = yym3182 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3174 || yy2arr3174 { + if yyr3179 || yy2arr3179 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3174[1] { - yym3179 := z.EncBinary() - _ = yym3179 + if yyq3179[1] { + yym3184 := z.EncBinary() + _ = yym3184 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40772,54 +40813,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3174[1] { + if yyq3179[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3180 := z.EncBinary() - _ = yym3180 + yym3185 := z.EncBinary() + _ = yym3185 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3174 || yy2arr3174 { + if yyr3179 || yy2arr3179 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3174[2] { - yy3182 := &x.ListMeta - yym3183 := z.EncBinary() - _ = yym3183 + if yyq3179[2] { + yy3187 := &x.ListMeta + yym3188 := z.EncBinary() + _ = yym3188 if false { - } else if z.HasExtensions() && z.EncExt(yy3182) { + } else if z.HasExtensions() && z.EncExt(yy3187) { } else { - z.EncFallback(yy3182) + z.EncFallback(yy3187) } } else { r.EncodeNil() } } else { - if yyq3174[2] { + if yyq3179[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3184 := &x.ListMeta - yym3185 := z.EncBinary() - _ = yym3185 + yy3189 := &x.ListMeta + yym3190 := z.EncBinary() + _ = yym3190 if false { - } else if z.HasExtensions() && z.EncExt(yy3184) { + } else if z.HasExtensions() && z.EncExt(yy3189) { } else { - z.EncFallback(yy3184) + z.EncFallback(yy3189) } } } - if yyr3174 || yy2arr3174 { + if yyr3179 || yy2arr3179 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3187 := z.EncBinary() - _ = yym3187 + yym3192 := z.EncBinary() + _ = yym3192 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -40832,15 +40873,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3188 := z.EncBinary() - _ = yym3188 + yym3193 := z.EncBinary() + _ = yym3193 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr3174 || yy2arr3174 { + if yyr3179 || yy2arr3179 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40853,25 +40894,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3189 := z.DecBinary() - _ = yym3189 + yym3194 := z.DecBinary() + _ = yym3194 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3190 := r.ContainerType() - if yyct3190 == codecSelferValueTypeMap1234 { - yyl3190 := r.ReadMapStart() - if yyl3190 == 0 { + yyct3195 := r.ContainerType() + if yyct3195 == codecSelferValueTypeMap1234 { + yyl3195 := r.ReadMapStart() + if yyl3195 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3190, d) + x.codecDecodeSelfFromMap(yyl3195, d) } - } else if yyct3190 == codecSelferValueTypeArray1234 { - yyl3190 := r.ReadArrayStart() - if yyl3190 == 0 { + } else if yyct3195 == codecSelferValueTypeArray1234 { + yyl3195 := r.ReadArrayStart() + if yyl3195 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3190, d) + x.codecDecodeSelfFromArray(yyl3195, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40883,12 +40924,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3191Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3191Slc - var yyhl3191 bool = l >= 0 - for yyj3191 := 0; ; yyj3191++ { - if yyhl3191 { - if yyj3191 >= l { + var yys3196Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3196Slc + var yyhl3196 bool = l >= 0 + for yyj3196 := 0; ; yyj3196++ { + if yyhl3196 { + if yyj3196 >= l { break } } else { @@ -40897,10 +40938,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3191Slc = r.DecodeBytes(yys3191Slc, true, true) - yys3191 := string(yys3191Slc) + yys3196Slc = r.DecodeBytes(yys3196Slc, true, true) + yys3196 := string(yys3196Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3191 { + switch yys3196 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40917,31 +40958,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3194 := &x.ListMeta - yym3195 := z.DecBinary() - _ = yym3195 + yyv3199 := &x.ListMeta + yym3200 := z.DecBinary() + _ = yym3200 if false { - } else if z.HasExtensions() && z.DecExt(yyv3194) { + } else if z.HasExtensions() && z.DecExt(yyv3199) { } else { - z.DecFallback(yyv3194, false) + z.DecFallback(yyv3199, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3196 := &x.Items - yym3197 := z.DecBinary() - _ = yym3197 + yyv3201 := &x.Items + yym3202 := z.DecBinary() + _ = yym3202 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3196), d) + h.decSliceNamespace((*[]Namespace)(yyv3201), d) } } default: - z.DecStructFieldNotFound(-1, yys3191) - } // end switch yys3191 - } // end for yyj3191 + z.DecStructFieldNotFound(-1, yys3196) + } // end switch yys3196 + } // end for yyj3196 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40949,16 +40990,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3198 int - var yyb3198 bool - var yyhl3198 bool = l >= 0 - yyj3198++ - if yyhl3198 { - yyb3198 = yyj3198 > l + var yyj3203 int + var yyb3203 bool + var yyhl3203 bool = l >= 0 + yyj3203++ + if yyhl3203 { + yyb3203 = yyj3203 > l } else { - yyb3198 = r.CheckBreak() + yyb3203 = r.CheckBreak() } - if yyb3198 { + if yyb3203 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40968,13 +41009,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3198++ - if yyhl3198 { - yyb3198 = yyj3198 > l + yyj3203++ + if yyhl3203 { + yyb3203 = yyj3203 > l } else { - yyb3198 = r.CheckBreak() + yyb3203 = r.CheckBreak() } - if yyb3198 { + if yyb3203 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40984,13 +41025,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3198++ - if yyhl3198 { - yyb3198 = yyj3198 > l + yyj3203++ + if yyhl3203 { + yyb3203 = yyj3203 > l } else { - yyb3198 = r.CheckBreak() + yyb3203 = r.CheckBreak() } - if yyb3198 { + if yyb3203 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40998,22 +41039,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3201 := &x.ListMeta - yym3202 := z.DecBinary() - _ = yym3202 + yyv3206 := &x.ListMeta + yym3207 := z.DecBinary() + _ = yym3207 if false { - } else if z.HasExtensions() && z.DecExt(yyv3201) { + } else if z.HasExtensions() && z.DecExt(yyv3206) { } else { - z.DecFallback(yyv3201, false) + z.DecFallback(yyv3206, false) } } - yyj3198++ - if yyhl3198 { - yyb3198 = yyj3198 > l + yyj3203++ + if yyhl3203 { + yyb3203 = yyj3203 > l } else { - yyb3198 = r.CheckBreak() + yyb3203 = r.CheckBreak() } - if yyb3198 { + if yyb3203 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41021,26 +41062,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3203 := &x.Items - yym3204 := z.DecBinary() - _ = yym3204 + yyv3208 := &x.Items + yym3209 := z.DecBinary() + _ = yym3209 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3203), d) + h.decSliceNamespace((*[]Namespace)(yyv3208), d) } } for { - yyj3198++ - if yyhl3198 { - yyb3198 = yyj3198 > l + yyj3203++ + if yyhl3203 { + yyb3203 = yyj3203 > l } else { - yyb3198 = r.CheckBreak() + yyb3203 = r.CheckBreak() } - if yyb3198 { + if yyb3203 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3198-1, "") + z.DecStructFieldNotFound(yyj3203-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41052,37 +41093,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3205 := z.EncBinary() - _ = yym3205 + yym3210 := z.EncBinary() + _ = yym3210 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3206 := !z.EncBinary() - yy2arr3206 := z.EncBasicHandle().StructToArray - var yyq3206 [4]bool - _, _, _ = yysep3206, yyq3206, yy2arr3206 - const yyr3206 bool = false - yyq3206[0] = x.Kind != "" - yyq3206[1] = x.APIVersion != "" - yyq3206[2] = true - var yynn3206 int - if yyr3206 || yy2arr3206 { + yysep3211 := !z.EncBinary() + yy2arr3211 := z.EncBasicHandle().StructToArray + var yyq3211 [4]bool + _, _, _ = yysep3211, yyq3211, yy2arr3211 + const yyr3211 bool = false + yyq3211[0] = x.Kind != "" + yyq3211[1] = x.APIVersion != "" + yyq3211[2] = true + var yynn3211 int + if yyr3211 || yy2arr3211 { r.EncodeArrayStart(4) } else { - yynn3206 = 1 - for _, b := range yyq3206 { + yynn3211 = 1 + for _, b := range yyq3211 { if b { - yynn3206++ + yynn3211++ } } - r.EncodeMapStart(yynn3206) - yynn3206 = 0 + r.EncodeMapStart(yynn3211) + yynn3211 = 0 } - if yyr3206 || yy2arr3206 { + if yyr3211 || yy2arr3211 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3206[0] { - yym3208 := z.EncBinary() - _ = yym3208 + if yyq3211[0] { + yym3213 := z.EncBinary() + _ = yym3213 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41091,23 +41132,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3206[0] { + if yyq3211[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3209 := z.EncBinary() - _ = yym3209 + yym3214 := z.EncBinary() + _ = yym3214 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3206 || yy2arr3206 { + if yyr3211 || yy2arr3211 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3206[1] { - yym3211 := z.EncBinary() - _ = yym3211 + if yyq3211[1] { + yym3216 := z.EncBinary() + _ = yym3216 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41116,47 +41157,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3206[1] { + if yyq3211[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3212 := z.EncBinary() - _ = yym3212 + yym3217 := z.EncBinary() + _ = yym3217 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3206 || yy2arr3206 { + if yyr3211 || yy2arr3211 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3206[2] { - yy3214 := &x.ObjectMeta - yy3214.CodecEncodeSelf(e) + if yyq3211[2] { + yy3219 := &x.ObjectMeta + yy3219.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3206[2] { + if yyq3211[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3215 := &x.ObjectMeta - yy3215.CodecEncodeSelf(e) + yy3220 := &x.ObjectMeta + yy3220.CodecEncodeSelf(e) } } - if yyr3206 || yy2arr3206 { + if yyr3211 || yy2arr3211 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3217 := &x.Target - yy3217.CodecEncodeSelf(e) + yy3222 := &x.Target + yy3222.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3218 := &x.Target - yy3218.CodecEncodeSelf(e) + yy3223 := &x.Target + yy3223.CodecEncodeSelf(e) } - if yyr3206 || yy2arr3206 { + if yyr3211 || yy2arr3211 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41169,25 +41210,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3219 := z.DecBinary() - _ = yym3219 + yym3224 := z.DecBinary() + _ = yym3224 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3220 := r.ContainerType() - if yyct3220 == codecSelferValueTypeMap1234 { - yyl3220 := r.ReadMapStart() - if yyl3220 == 0 { + yyct3225 := r.ContainerType() + if yyct3225 == codecSelferValueTypeMap1234 { + yyl3225 := r.ReadMapStart() + if yyl3225 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3220, d) + x.codecDecodeSelfFromMap(yyl3225, d) } - } else if yyct3220 == codecSelferValueTypeArray1234 { - yyl3220 := r.ReadArrayStart() - if yyl3220 == 0 { + } else if yyct3225 == codecSelferValueTypeArray1234 { + yyl3225 := r.ReadArrayStart() + if yyl3225 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3220, d) + x.codecDecodeSelfFromArray(yyl3225, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41199,12 +41240,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3221Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3221Slc - var yyhl3221 bool = l >= 0 - for yyj3221 := 0; ; yyj3221++ { - if yyhl3221 { - if yyj3221 >= l { + var yys3226Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3226Slc + var yyhl3226 bool = l >= 0 + for yyj3226 := 0; ; yyj3226++ { + if yyhl3226 { + if yyj3226 >= l { break } } else { @@ -41213,10 +41254,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3221Slc = r.DecodeBytes(yys3221Slc, true, true) - yys3221 := string(yys3221Slc) + yys3226Slc = r.DecodeBytes(yys3226Slc, true, true) + yys3226 := string(yys3226Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3221 { + switch yys3226 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41233,20 +41274,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3224 := &x.ObjectMeta - yyv3224.CodecDecodeSelf(d) + yyv3229 := &x.ObjectMeta + yyv3229.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3225 := &x.Target - yyv3225.CodecDecodeSelf(d) + yyv3230 := &x.Target + yyv3230.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3221) - } // end switch yys3221 - } // end for yyj3221 + z.DecStructFieldNotFound(-1, yys3226) + } // end switch yys3226 + } // end for yyj3226 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41254,16 +41295,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3226 int - var yyb3226 bool - var yyhl3226 bool = l >= 0 - yyj3226++ - if yyhl3226 { - yyb3226 = yyj3226 > l + var yyj3231 int + var yyb3231 bool + var yyhl3231 bool = l >= 0 + yyj3231++ + if yyhl3231 { + yyb3231 = yyj3231 > l } else { - yyb3226 = r.CheckBreak() + yyb3231 = r.CheckBreak() } - if yyb3226 { + if yyb3231 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41273,13 +41314,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3226++ - if yyhl3226 { - yyb3226 = yyj3226 > l + yyj3231++ + if yyhl3231 { + yyb3231 = yyj3231 > l } else { - yyb3226 = r.CheckBreak() + yyb3231 = r.CheckBreak() } - if yyb3226 { + if yyb3231 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41289,13 +41330,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3226++ - if yyhl3226 { - yyb3226 = yyj3226 > l + yyj3231++ + if yyhl3231 { + yyb3231 = yyj3231 > l } else { - yyb3226 = r.CheckBreak() + yyb3231 = r.CheckBreak() } - if yyb3226 { + if yyb3231 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41303,16 +41344,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3229 := &x.ObjectMeta - yyv3229.CodecDecodeSelf(d) + yyv3234 := &x.ObjectMeta + yyv3234.CodecDecodeSelf(d) } - yyj3226++ - if yyhl3226 { - yyb3226 = yyj3226 > l + yyj3231++ + if yyhl3231 { + yyb3231 = yyj3231 > l } else { - yyb3226 = r.CheckBreak() + yyb3231 = r.CheckBreak() } - if yyb3226 { + if yyb3231 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41320,21 +41361,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3230 := &x.Target - yyv3230.CodecDecodeSelf(d) + yyv3235 := &x.Target + yyv3235.CodecDecodeSelf(d) } for { - yyj3226++ - if yyhl3226 { - yyb3226 = yyj3226 > l + yyj3231++ + if yyhl3231 { + yyb3231 = yyj3231 > l } else { - yyb3226 = r.CheckBreak() + yyb3231 = r.CheckBreak() } - if yyb3226 { + if yyb3231 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3226-1, "") + z.DecStructFieldNotFound(yyj3231-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41346,68 +41387,68 @@ func (x *Preconditions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3231 := z.EncBinary() - _ = yym3231 + yym3236 := z.EncBinary() + _ = yym3236 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3232 := !z.EncBinary() - yy2arr3232 := z.EncBasicHandle().StructToArray - var yyq3232 [1]bool - _, _, _ = yysep3232, yyq3232, yy2arr3232 - const yyr3232 bool = false - yyq3232[0] = x.UID != nil - var yynn3232 int - if yyr3232 || yy2arr3232 { + yysep3237 := !z.EncBinary() + yy2arr3237 := z.EncBasicHandle().StructToArray + var yyq3237 [1]bool + _, _, _ = yysep3237, yyq3237, yy2arr3237 + const yyr3237 bool = false + yyq3237[0] = x.UID != nil + var yynn3237 int + if yyr3237 || yy2arr3237 { r.EncodeArrayStart(1) } else { - yynn3232 = 0 - for _, b := range yyq3232 { + yynn3237 = 0 + for _, b := range yyq3237 { if b { - yynn3232++ + yynn3237++ } } - r.EncodeMapStart(yynn3232) - yynn3232 = 0 + r.EncodeMapStart(yynn3237) + yynn3237 = 0 } - if yyr3232 || yy2arr3232 { + if yyr3237 || yy2arr3237 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3232[0] { + if yyq3237[0] { if x.UID == nil { r.EncodeNil() } else { - yy3234 := *x.UID - yym3235 := z.EncBinary() - _ = yym3235 + yy3239 := *x.UID + yym3240 := z.EncBinary() + _ = yym3240 if false { - } else if z.HasExtensions() && z.EncExt(yy3234) { + } else if z.HasExtensions() && z.EncExt(yy3239) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3234)) + r.EncodeString(codecSelferC_UTF81234, string(yy3239)) } } } else { r.EncodeNil() } } else { - if yyq3232[0] { + if yyq3237[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.UID == nil { r.EncodeNil() } else { - yy3236 := *x.UID - yym3237 := z.EncBinary() - _ = yym3237 + yy3241 := *x.UID + yym3242 := z.EncBinary() + _ = yym3242 if false { - } else if z.HasExtensions() && z.EncExt(yy3236) { + } else if z.HasExtensions() && z.EncExt(yy3241) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3236)) + r.EncodeString(codecSelferC_UTF81234, string(yy3241)) } } } } - if yyr3232 || yy2arr3232 { + if yyr3237 || yy2arr3237 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41420,25 +41461,25 @@ func (x *Preconditions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3238 := z.DecBinary() - _ = yym3238 + yym3243 := z.DecBinary() + _ = yym3243 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3239 := r.ContainerType() - if yyct3239 == codecSelferValueTypeMap1234 { - yyl3239 := r.ReadMapStart() - if yyl3239 == 0 { + yyct3244 := r.ContainerType() + if yyct3244 == codecSelferValueTypeMap1234 { + yyl3244 := r.ReadMapStart() + if yyl3244 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3239, d) + x.codecDecodeSelfFromMap(yyl3244, d) } - } else if yyct3239 == codecSelferValueTypeArray1234 { - yyl3239 := r.ReadArrayStart() - if yyl3239 == 0 { + } else if yyct3244 == codecSelferValueTypeArray1234 { + yyl3244 := r.ReadArrayStart() + if yyl3244 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3239, d) + x.codecDecodeSelfFromArray(yyl3244, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41450,12 +41491,12 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3240Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3240Slc - var yyhl3240 bool = l >= 0 - for yyj3240 := 0; ; yyj3240++ { - if yyhl3240 { - if yyj3240 >= l { + var yys3245Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3245Slc + var yyhl3245 bool = l >= 0 + for yyj3245 := 0; ; yyj3245++ { + if yyhl3245 { + if yyj3245 >= l { break } } else { @@ -41464,10 +41505,10 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3240Slc = r.DecodeBytes(yys3240Slc, true, true) - yys3240 := string(yys3240Slc) + yys3245Slc = r.DecodeBytes(yys3245Slc, true, true) + yys3245 := string(yys3245Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3240 { + switch yys3245 { case "uid": if r.TryDecodeAsNil() { if x.UID != nil { @@ -41477,8 +41518,8 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3242 := z.DecBinary() - _ = yym3242 + yym3247 := z.DecBinary() + _ = yym3247 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -41486,9 +41527,9 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3240) - } // end switch yys3240 - } // end for yyj3240 + z.DecStructFieldNotFound(-1, yys3245) + } // end switch yys3245 + } // end for yyj3245 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41496,16 +41537,16 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3243 int - var yyb3243 bool - var yyhl3243 bool = l >= 0 - yyj3243++ - if yyhl3243 { - yyb3243 = yyj3243 > l + var yyj3248 int + var yyb3248 bool + var yyhl3248 bool = l >= 0 + yyj3248++ + if yyhl3248 { + yyb3248 = yyj3248 > l } else { - yyb3243 = r.CheckBreak() + yyb3248 = r.CheckBreak() } - if yyb3243 { + if yyb3248 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41518,8 +41559,8 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3245 := z.DecBinary() - _ = yym3245 + yym3250 := z.DecBinary() + _ = yym3250 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -41527,17 +41568,17 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3243++ - if yyhl3243 { - yyb3243 = yyj3243 > l + yyj3248++ + if yyhl3248 { + yyb3248 = yyj3248 > l } else { - yyb3243 = r.CheckBreak() + yyb3248 = r.CheckBreak() } - if yyb3243 { + if yyb3248 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3243-1, "") + z.DecStructFieldNotFound(yyj3248-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41549,39 +41590,39 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3246 := z.EncBinary() - _ = yym3246 + yym3251 := z.EncBinary() + _ = yym3251 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3247 := !z.EncBinary() - yy2arr3247 := z.EncBasicHandle().StructToArray - var yyq3247 [5]bool - _, _, _ = yysep3247, yyq3247, yy2arr3247 - const yyr3247 bool = false - yyq3247[0] = x.Kind != "" - yyq3247[1] = x.APIVersion != "" - yyq3247[2] = x.GracePeriodSeconds != nil - yyq3247[3] = x.Preconditions != nil - yyq3247[4] = x.OrphanDependents != nil - var yynn3247 int - if yyr3247 || yy2arr3247 { + yysep3252 := !z.EncBinary() + yy2arr3252 := z.EncBasicHandle().StructToArray + var yyq3252 [5]bool + _, _, _ = yysep3252, yyq3252, yy2arr3252 + const yyr3252 bool = false + yyq3252[0] = x.Kind != "" + yyq3252[1] = x.APIVersion != "" + yyq3252[2] = x.GracePeriodSeconds != nil + yyq3252[3] = x.Preconditions != nil + yyq3252[4] = x.OrphanDependents != nil + var yynn3252 int + if yyr3252 || yy2arr3252 { r.EncodeArrayStart(5) } else { - yynn3247 = 0 - for _, b := range yyq3247 { + yynn3252 = 0 + for _, b := range yyq3252 { if b { - yynn3247++ + yynn3252++ } } - r.EncodeMapStart(yynn3247) - yynn3247 = 0 + r.EncodeMapStart(yynn3252) + yynn3252 = 0 } - if yyr3247 || yy2arr3247 { + if yyr3252 || yy2arr3252 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3247[0] { - yym3249 := z.EncBinary() - _ = yym3249 + if yyq3252[0] { + yym3254 := z.EncBinary() + _ = yym3254 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41590,23 +41631,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3247[0] { + if yyq3252[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3250 := z.EncBinary() - _ = yym3250 + yym3255 := z.EncBinary() + _ = yym3255 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3247 || yy2arr3247 { + if yyr3252 || yy2arr3252 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3247[1] { - yym3252 := z.EncBinary() - _ = yym3252 + if yyq3252[1] { + yym3257 := z.EncBinary() + _ = yym3257 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41615,56 +41656,56 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3247[1] { + if yyq3252[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3253 := z.EncBinary() - _ = yym3253 + yym3258 := z.EncBinary() + _ = yym3258 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3247 || yy2arr3247 { + if yyr3252 || yy2arr3252 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3247[2] { + if yyq3252[2] { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3255 := *x.GracePeriodSeconds - yym3256 := z.EncBinary() - _ = yym3256 + yy3260 := *x.GracePeriodSeconds + yym3261 := z.EncBinary() + _ = yym3261 if false { } else { - r.EncodeInt(int64(yy3255)) + r.EncodeInt(int64(yy3260)) } } } else { r.EncodeNil() } } else { - if yyq3247[2] { + if yyq3252[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3257 := *x.GracePeriodSeconds - yym3258 := z.EncBinary() - _ = yym3258 + yy3262 := *x.GracePeriodSeconds + yym3263 := z.EncBinary() + _ = yym3263 if false { } else { - r.EncodeInt(int64(yy3257)) + r.EncodeInt(int64(yy3262)) } } } } - if yyr3247 || yy2arr3247 { + if yyr3252 || yy2arr3252 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3247[3] { + if yyq3252[3] { if x.Preconditions == nil { r.EncodeNil() } else { @@ -41674,7 +41715,7 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3247[3] { + if yyq3252[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preconditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41685,42 +41726,42 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3247 || yy2arr3247 { + if yyr3252 || yy2arr3252 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3247[4] { + if yyq3252[4] { if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3261 := *x.OrphanDependents - yym3262 := z.EncBinary() - _ = yym3262 + yy3266 := *x.OrphanDependents + yym3267 := z.EncBinary() + _ = yym3267 if false { } else { - r.EncodeBool(bool(yy3261)) + r.EncodeBool(bool(yy3266)) } } } else { r.EncodeNil() } } else { - if yyq3247[4] { + if yyq3252[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("orphanDependents")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3263 := *x.OrphanDependents - yym3264 := z.EncBinary() - _ = yym3264 + yy3268 := *x.OrphanDependents + yym3269 := z.EncBinary() + _ = yym3269 if false { } else { - r.EncodeBool(bool(yy3263)) + r.EncodeBool(bool(yy3268)) } } } } - if yyr3247 || yy2arr3247 { + if yyr3252 || yy2arr3252 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41733,25 +41774,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3265 := z.DecBinary() - _ = yym3265 + yym3270 := z.DecBinary() + _ = yym3270 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3266 := r.ContainerType() - if yyct3266 == codecSelferValueTypeMap1234 { - yyl3266 := r.ReadMapStart() - if yyl3266 == 0 { + yyct3271 := r.ContainerType() + if yyct3271 == codecSelferValueTypeMap1234 { + yyl3271 := r.ReadMapStart() + if yyl3271 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3266, d) + x.codecDecodeSelfFromMap(yyl3271, d) } - } else if yyct3266 == codecSelferValueTypeArray1234 { - yyl3266 := r.ReadArrayStart() - if yyl3266 == 0 { + } else if yyct3271 == codecSelferValueTypeArray1234 { + yyl3271 := r.ReadArrayStart() + if yyl3271 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3266, d) + x.codecDecodeSelfFromArray(yyl3271, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41763,12 +41804,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3267Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3267Slc - var yyhl3267 bool = l >= 0 - for yyj3267 := 0; ; yyj3267++ { - if yyhl3267 { - if yyj3267 >= l { + var yys3272Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3272Slc + var yyhl3272 bool = l >= 0 + for yyj3272 := 0; ; yyj3272++ { + if yyhl3272 { + if yyj3272 >= l { break } } else { @@ -41777,10 +41818,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3267Slc = r.DecodeBytes(yys3267Slc, true, true) - yys3267 := string(yys3267Slc) + yys3272Slc = r.DecodeBytes(yys3272Slc, true, true) + yys3272 := string(yys3272Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3267 { + switch yys3272 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41802,8 +41843,8 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3271 := z.DecBinary() - _ = yym3271 + yym3276 := z.DecBinary() + _ = yym3276 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -41829,17 +41870,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3274 := z.DecBinary() - _ = yym3274 + yym3279 := z.DecBinary() + _ = yym3279 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3267) - } // end switch yys3267 - } // end for yyj3267 + z.DecStructFieldNotFound(-1, yys3272) + } // end switch yys3272 + } // end for yyj3272 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41847,16 +41888,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3275 int - var yyb3275 bool - var yyhl3275 bool = l >= 0 - yyj3275++ - if yyhl3275 { - yyb3275 = yyj3275 > l + var yyj3280 int + var yyb3280 bool + var yyhl3280 bool = l >= 0 + yyj3280++ + if yyhl3280 { + yyb3280 = yyj3280 > l } else { - yyb3275 = r.CheckBreak() + yyb3280 = r.CheckBreak() } - if yyb3275 { + if yyb3280 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41866,13 +41907,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3275++ - if yyhl3275 { - yyb3275 = yyj3275 > l + yyj3280++ + if yyhl3280 { + yyb3280 = yyj3280 > l } else { - yyb3275 = r.CheckBreak() + yyb3280 = r.CheckBreak() } - if yyb3275 { + if yyb3280 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41882,13 +41923,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3275++ - if yyhl3275 { - yyb3275 = yyj3275 > l + yyj3280++ + if yyhl3280 { + yyb3280 = yyj3280 > l } else { - yyb3275 = r.CheckBreak() + yyb3280 = r.CheckBreak() } - if yyb3275 { + if yyb3280 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41901,20 +41942,20 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3279 := z.DecBinary() - _ = yym3279 + yym3284 := z.DecBinary() + _ = yym3284 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj3275++ - if yyhl3275 { - yyb3275 = yyj3275 > l + yyj3280++ + if yyhl3280 { + yyb3280 = yyj3280 > l } else { - yyb3275 = r.CheckBreak() + yyb3280 = r.CheckBreak() } - if yyb3275 { + if yyb3280 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41929,13 +41970,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Preconditions.CodecDecodeSelf(d) } - yyj3275++ - if yyhl3275 { - yyb3275 = yyj3275 > l + yyj3280++ + if yyhl3280 { + yyb3280 = yyj3280 > l } else { - yyb3275 = r.CheckBreak() + yyb3280 = r.CheckBreak() } - if yyb3275 { + if yyb3280 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41948,25 +41989,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3282 := z.DecBinary() - _ = yym3282 + yym3287 := z.DecBinary() + _ = yym3287 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } for { - yyj3275++ - if yyhl3275 { - yyb3275 = yyj3275 > l + yyj3280++ + if yyhl3280 { + yyb3280 = yyj3280 > l } else { - yyb3275 = r.CheckBreak() + yyb3280 = r.CheckBreak() } - if yyb3275 { + if yyb3280 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3275-1, "") + z.DecStructFieldNotFound(yyj3280-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41978,36 +42019,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3283 := z.EncBinary() - _ = yym3283 + yym3288 := z.EncBinary() + _ = yym3288 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3284 := !z.EncBinary() - yy2arr3284 := z.EncBasicHandle().StructToArray - var yyq3284 [4]bool - _, _, _ = yysep3284, yyq3284, yy2arr3284 - const yyr3284 bool = false - yyq3284[0] = x.Kind != "" - yyq3284[1] = x.APIVersion != "" - var yynn3284 int - if yyr3284 || yy2arr3284 { + yysep3289 := !z.EncBinary() + yy2arr3289 := z.EncBasicHandle().StructToArray + var yyq3289 [4]bool + _, _, _ = yysep3289, yyq3289, yy2arr3289 + const yyr3289 bool = false + yyq3289[0] = x.Kind != "" + yyq3289[1] = x.APIVersion != "" + var yynn3289 int + if yyr3289 || yy2arr3289 { r.EncodeArrayStart(4) } else { - yynn3284 = 2 - for _, b := range yyq3284 { + yynn3289 = 2 + for _, b := range yyq3289 { if b { - yynn3284++ + yynn3289++ } } - r.EncodeMapStart(yynn3284) - yynn3284 = 0 + r.EncodeMapStart(yynn3289) + yynn3289 = 0 } - if yyr3284 || yy2arr3284 { + if yyr3289 || yy2arr3289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3284[0] { - yym3286 := z.EncBinary() - _ = yym3286 + if yyq3289[0] { + yym3291 := z.EncBinary() + _ = yym3291 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42016,23 +42057,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3284[0] { + if yyq3289[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3287 := z.EncBinary() - _ = yym3287 + yym3292 := z.EncBinary() + _ = yym3292 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3284 || yy2arr3284 { + if yyr3289 || yy2arr3289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3284[1] { - yym3289 := z.EncBinary() - _ = yym3289 + if yyq3289[1] { + yym3294 := z.EncBinary() + _ = yym3294 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42041,22 +42082,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3284[1] { + if yyq3289[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3290 := z.EncBinary() - _ = yym3290 + yym3295 := z.EncBinary() + _ = yym3295 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3284 || yy2arr3284 { + if yyr3289 || yy2arr3289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3292 := z.EncBinary() - _ = yym3292 + yym3297 := z.EncBinary() + _ = yym3297 if false { } else { r.EncodeBool(bool(x.Export)) @@ -42065,17 +42106,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3293 := z.EncBinary() - _ = yym3293 + yym3298 := z.EncBinary() + _ = yym3298 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr3284 || yy2arr3284 { + if yyr3289 || yy2arr3289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3295 := z.EncBinary() - _ = yym3295 + yym3300 := z.EncBinary() + _ = yym3300 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -42084,14 +42125,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3296 := z.EncBinary() - _ = yym3296 + yym3301 := z.EncBinary() + _ = yym3301 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr3284 || yy2arr3284 { + if yyr3289 || yy2arr3289 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42104,25 +42145,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3297 := z.DecBinary() - _ = yym3297 + yym3302 := z.DecBinary() + _ = yym3302 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3298 := r.ContainerType() - if yyct3298 == codecSelferValueTypeMap1234 { - yyl3298 := r.ReadMapStart() - if yyl3298 == 0 { + yyct3303 := r.ContainerType() + if yyct3303 == codecSelferValueTypeMap1234 { + yyl3303 := r.ReadMapStart() + if yyl3303 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3298, d) + x.codecDecodeSelfFromMap(yyl3303, d) } - } else if yyct3298 == codecSelferValueTypeArray1234 { - yyl3298 := r.ReadArrayStart() - if yyl3298 == 0 { + } else if yyct3303 == codecSelferValueTypeArray1234 { + yyl3303 := r.ReadArrayStart() + if yyl3303 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3298, d) + x.codecDecodeSelfFromArray(yyl3303, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42134,12 +42175,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3299Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3299Slc - var yyhl3299 bool = l >= 0 - for yyj3299 := 0; ; yyj3299++ { - if yyhl3299 { - if yyj3299 >= l { + var yys3304Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3304Slc + var yyhl3304 bool = l >= 0 + for yyj3304 := 0; ; yyj3304++ { + if yyhl3304 { + if yyj3304 >= l { break } } else { @@ -42148,10 +42189,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3299Slc = r.DecodeBytes(yys3299Slc, true, true) - yys3299 := string(yys3299Slc) + yys3304Slc = r.DecodeBytes(yys3304Slc, true, true) + yys3304 := string(yys3304Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3299 { + switch yys3304 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42177,9 +42218,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys3299) - } // end switch yys3299 - } // end for yyj3299 + z.DecStructFieldNotFound(-1, yys3304) + } // end switch yys3304 + } // end for yyj3304 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42187,16 +42228,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3304 int - var yyb3304 bool - var yyhl3304 bool = l >= 0 - yyj3304++ - if yyhl3304 { - yyb3304 = yyj3304 > l + var yyj3309 int + var yyb3309 bool + var yyhl3309 bool = l >= 0 + yyj3309++ + if yyhl3309 { + yyb3309 = yyj3309 > l } else { - yyb3304 = r.CheckBreak() + yyb3309 = r.CheckBreak() } - if yyb3304 { + if yyb3309 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42206,13 +42247,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3304++ - if yyhl3304 { - yyb3304 = yyj3304 > l + yyj3309++ + if yyhl3309 { + yyb3309 = yyj3309 > l } else { - yyb3304 = r.CheckBreak() + yyb3309 = r.CheckBreak() } - if yyb3304 { + if yyb3309 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42222,13 +42263,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3304++ - if yyhl3304 { - yyb3304 = yyj3304 > l + yyj3309++ + if yyhl3309 { + yyb3309 = yyj3309 > l } else { - yyb3304 = r.CheckBreak() + yyb3309 = r.CheckBreak() } - if yyb3304 { + if yyb3309 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42238,13 +42279,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj3304++ - if yyhl3304 { - yyb3304 = yyj3304 > l + yyj3309++ + if yyhl3309 { + yyb3309 = yyj3309 > l } else { - yyb3304 = r.CheckBreak() + yyb3309 = r.CheckBreak() } - if yyb3304 { + if yyb3309 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42255,17 +42296,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj3304++ - if yyhl3304 { - yyb3304 = yyj3304 > l + yyj3309++ + if yyhl3309 { + yyb3309 = yyj3309 > l } else { - yyb3304 = r.CheckBreak() + yyb3309 = r.CheckBreak() } - if yyb3304 { + if yyb3309 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3304-1, "") + z.DecStructFieldNotFound(yyj3309-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42277,36 +42318,36 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3309 := z.EncBinary() - _ = yym3309 + yym3314 := z.EncBinary() + _ = yym3314 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3310 := !z.EncBinary() - yy2arr3310 := z.EncBasicHandle().StructToArray - var yyq3310 [7]bool - _, _, _ = yysep3310, yyq3310, yy2arr3310 - const yyr3310 bool = false - yyq3310[0] = x.Kind != "" - yyq3310[1] = x.APIVersion != "" - var yynn3310 int - if yyr3310 || yy2arr3310 { + yysep3315 := !z.EncBinary() + yy2arr3315 := z.EncBasicHandle().StructToArray + var yyq3315 [7]bool + _, _, _ = yysep3315, yyq3315, yy2arr3315 + const yyr3315 bool = false + yyq3315[0] = x.Kind != "" + yyq3315[1] = x.APIVersion != "" + var yynn3315 int + if yyr3315 || yy2arr3315 { r.EncodeArrayStart(7) } else { - yynn3310 = 5 - for _, b := range yyq3310 { + yynn3315 = 5 + for _, b := range yyq3315 { if b { - yynn3310++ + yynn3315++ } } - r.EncodeMapStart(yynn3310) - yynn3310 = 0 + r.EncodeMapStart(yynn3315) + yynn3315 = 0 } - if yyr3310 || yy2arr3310 { + if yyr3315 || yy2arr3315 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3310[0] { - yym3312 := z.EncBinary() - _ = yym3312 + if yyq3315[0] { + yym3317 := z.EncBinary() + _ = yym3317 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42315,23 +42356,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3310[0] { + if yyq3315[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3313 := z.EncBinary() - _ = yym3313 + yym3318 := z.EncBinary() + _ = yym3318 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3310 || yy2arr3310 { + if yyr3315 || yy2arr3315 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3310[1] { - yym3315 := z.EncBinary() - _ = yym3315 + if yyq3315[1] { + yym3320 := z.EncBinary() + _ = yym3320 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42340,25 +42381,25 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3310[1] { + if yyq3315[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3316 := z.EncBinary() - _ = yym3316 + yym3321 := z.EncBinary() + _ = yym3321 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3310 || yy2arr3310 { + if yyr3315 || yy2arr3315 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LabelSelector == nil { r.EncodeNil() } else { - yym3318 := z.EncBinary() - _ = yym3318 + yym3323 := z.EncBinary() + _ = yym3323 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -42372,8 +42413,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LabelSelector == nil { r.EncodeNil() } else { - yym3319 := z.EncBinary() - _ = yym3319 + yym3324 := z.EncBinary() + _ = yym3324 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -42381,13 +42422,13 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3310 || yy2arr3310 { + if yyr3315 || yy2arr3315 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.FieldSelector == nil { r.EncodeNil() } else { - yym3321 := z.EncBinary() - _ = yym3321 + yym3326 := z.EncBinary() + _ = yym3326 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -42401,8 +42442,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.FieldSelector == nil { r.EncodeNil() } else { - yym3322 := z.EncBinary() - _ = yym3322 + yym3327 := z.EncBinary() + _ = yym3327 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -42410,10 +42451,10 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3310 || yy2arr3310 { + if yyr3315 || yy2arr3315 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3324 := z.EncBinary() - _ = yym3324 + yym3329 := z.EncBinary() + _ = yym3329 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -42422,17 +42463,17 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3325 := z.EncBinary() - _ = yym3325 + yym3330 := z.EncBinary() + _ = yym3330 if false { } else { r.EncodeBool(bool(x.Watch)) } } - if yyr3310 || yy2arr3310 { + if yyr3315 || yy2arr3315 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3327 := z.EncBinary() - _ = yym3327 + yym3332 := z.EncBinary() + _ = yym3332 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -42441,24 +42482,24 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ResourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3328 := z.EncBinary() - _ = yym3328 + yym3333 := z.EncBinary() + _ = yym3333 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } - if yyr3310 || yy2arr3310 { + if yyr3315 || yy2arr3315 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3330 := *x.TimeoutSeconds - yym3331 := z.EncBinary() - _ = yym3331 + yy3335 := *x.TimeoutSeconds + yym3336 := z.EncBinary() + _ = yym3336 if false { } else { - r.EncodeInt(int64(yy3330)) + r.EncodeInt(int64(yy3335)) } } } else { @@ -42468,16 +42509,16 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3332 := *x.TimeoutSeconds - yym3333 := z.EncBinary() - _ = yym3333 + yy3337 := *x.TimeoutSeconds + yym3338 := z.EncBinary() + _ = yym3338 if false { } else { - r.EncodeInt(int64(yy3332)) + r.EncodeInt(int64(yy3337)) } } } - if yyr3310 || yy2arr3310 { + if yyr3315 || yy2arr3315 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42490,25 +42531,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3334 := z.DecBinary() - _ = yym3334 + yym3339 := z.DecBinary() + _ = yym3339 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3335 := r.ContainerType() - if yyct3335 == codecSelferValueTypeMap1234 { - yyl3335 := r.ReadMapStart() - if yyl3335 == 0 { + yyct3340 := r.ContainerType() + if yyct3340 == codecSelferValueTypeMap1234 { + yyl3340 := r.ReadMapStart() + if yyl3340 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3335, d) + x.codecDecodeSelfFromMap(yyl3340, d) } - } else if yyct3335 == codecSelferValueTypeArray1234 { - yyl3335 := r.ReadArrayStart() - if yyl3335 == 0 { + } else if yyct3340 == codecSelferValueTypeArray1234 { + yyl3340 := r.ReadArrayStart() + if yyl3340 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3335, d) + x.codecDecodeSelfFromArray(yyl3340, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42520,12 +42561,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3336Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3336Slc - var yyhl3336 bool = l >= 0 - for yyj3336 := 0; ; yyj3336++ { - if yyhl3336 { - if yyj3336 >= l { + var yys3341Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3341Slc + var yyhl3341 bool = l >= 0 + for yyj3341 := 0; ; yyj3341++ { + if yyhl3341 { + if yyj3341 >= l { break } } else { @@ -42534,10 +42575,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3336Slc = r.DecodeBytes(yys3336Slc, true, true) - yys3336 := string(yys3336Slc) + yys3341Slc = r.DecodeBytes(yys3341Slc, true, true) + yys3341 := string(yys3341Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3336 { + switch yys3341 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42554,26 +42595,26 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv3339 := &x.LabelSelector - yym3340 := z.DecBinary() - _ = yym3340 + yyv3344 := &x.LabelSelector + yym3345 := z.DecBinary() + _ = yym3345 if false { - } else if z.HasExtensions() && z.DecExt(yyv3339) { + } else if z.HasExtensions() && z.DecExt(yyv3344) { } else { - z.DecFallback(yyv3339, true) + z.DecFallback(yyv3344, true) } } case "FieldSelector": if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv3341 := &x.FieldSelector - yym3342 := z.DecBinary() - _ = yym3342 + yyv3346 := &x.FieldSelector + yym3347 := z.DecBinary() + _ = yym3347 if false { - } else if z.HasExtensions() && z.DecExt(yyv3341) { + } else if z.HasExtensions() && z.DecExt(yyv3346) { } else { - z.DecFallback(yyv3341, true) + z.DecFallback(yyv3346, true) } } case "Watch": @@ -42597,17 +42638,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3346 := z.DecBinary() - _ = yym3346 + yym3351 := z.DecBinary() + _ = yym3351 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3336) - } // end switch yys3336 - } // end for yyj3336 + z.DecStructFieldNotFound(-1, yys3341) + } // end switch yys3341 + } // end for yyj3341 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42615,16 +42656,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3347 int - var yyb3347 bool - var yyhl3347 bool = l >= 0 - yyj3347++ - if yyhl3347 { - yyb3347 = yyj3347 > l + var yyj3352 int + var yyb3352 bool + var yyhl3352 bool = l >= 0 + yyj3352++ + if yyhl3352 { + yyb3352 = yyj3352 > l } else { - yyb3347 = r.CheckBreak() + yyb3352 = r.CheckBreak() } - if yyb3347 { + if yyb3352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42634,13 +42675,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3347++ - if yyhl3347 { - yyb3347 = yyj3347 > l + yyj3352++ + if yyhl3352 { + yyb3352 = yyj3352 > l } else { - yyb3347 = r.CheckBreak() + yyb3352 = r.CheckBreak() } - if yyb3347 { + if yyb3352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42650,13 +42691,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3347++ - if yyhl3347 { - yyb3347 = yyj3347 > l + yyj3352++ + if yyhl3352 { + yyb3352 = yyj3352 > l } else { - yyb3347 = r.CheckBreak() + yyb3352 = r.CheckBreak() } - if yyb3347 { + if yyb3352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42664,22 +42705,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv3350 := &x.LabelSelector - yym3351 := z.DecBinary() - _ = yym3351 + yyv3355 := &x.LabelSelector + yym3356 := z.DecBinary() + _ = yym3356 if false { - } else if z.HasExtensions() && z.DecExt(yyv3350) { + } else if z.HasExtensions() && z.DecExt(yyv3355) { } else { - z.DecFallback(yyv3350, true) + z.DecFallback(yyv3355, true) } } - yyj3347++ - if yyhl3347 { - yyb3347 = yyj3347 > l + yyj3352++ + if yyhl3352 { + yyb3352 = yyj3352 > l } else { - yyb3347 = r.CheckBreak() + yyb3352 = r.CheckBreak() } - if yyb3347 { + if yyb3352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42687,22 +42728,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv3352 := &x.FieldSelector - yym3353 := z.DecBinary() - _ = yym3353 + yyv3357 := &x.FieldSelector + yym3358 := z.DecBinary() + _ = yym3358 if false { - } else if z.HasExtensions() && z.DecExt(yyv3352) { + } else if z.HasExtensions() && z.DecExt(yyv3357) { } else { - z.DecFallback(yyv3352, true) + z.DecFallback(yyv3357, true) } } - yyj3347++ - if yyhl3347 { - yyb3347 = yyj3347 > l + yyj3352++ + if yyhl3352 { + yyb3352 = yyj3352 > l } else { - yyb3347 = r.CheckBreak() + yyb3352 = r.CheckBreak() } - if yyb3347 { + if yyb3352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42712,13 +42753,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3347++ - if yyhl3347 { - yyb3347 = yyj3347 > l + yyj3352++ + if yyhl3352 { + yyb3352 = yyj3352 > l } else { - yyb3347 = r.CheckBreak() + yyb3352 = r.CheckBreak() } - if yyb3347 { + if yyb3352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42728,13 +42769,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3347++ - if yyhl3347 { - yyb3347 = yyj3347 > l + yyj3352++ + if yyhl3352 { + yyb3352 = yyj3352 > l } else { - yyb3347 = r.CheckBreak() + yyb3352 = r.CheckBreak() } - if yyb3347 { + if yyb3352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42747,25 +42788,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3357 := z.DecBinary() - _ = yym3357 + yym3362 := z.DecBinary() + _ = yym3362 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3347++ - if yyhl3347 { - yyb3347 = yyj3347 > l + yyj3352++ + if yyhl3352 { + yyb3352 = yyj3352 > l } else { - yyb3347 = r.CheckBreak() + yyb3352 = r.CheckBreak() } - if yyb3347 { + if yyb3352 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3347-1, "") + z.DecStructFieldNotFound(yyj3352-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42777,36 +42818,36 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3358 := z.EncBinary() - _ = yym3358 + yym3363 := z.EncBinary() + _ = yym3363 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3359 := !z.EncBinary() - yy2arr3359 := z.EncBasicHandle().StructToArray - var yyq3359 [10]bool - _, _, _ = yysep3359, yyq3359, yy2arr3359 - const yyr3359 bool = false - yyq3359[0] = x.Kind != "" - yyq3359[1] = x.APIVersion != "" - var yynn3359 int - if yyr3359 || yy2arr3359 { + yysep3364 := !z.EncBinary() + yy2arr3364 := z.EncBasicHandle().StructToArray + var yyq3364 [10]bool + _, _, _ = yysep3364, yyq3364, yy2arr3364 + const yyr3364 bool = false + yyq3364[0] = x.Kind != "" + yyq3364[1] = x.APIVersion != "" + var yynn3364 int + if yyr3364 || yy2arr3364 { r.EncodeArrayStart(10) } else { - yynn3359 = 8 - for _, b := range yyq3359 { + yynn3364 = 8 + for _, b := range yyq3364 { if b { - yynn3359++ + yynn3364++ } } - r.EncodeMapStart(yynn3359) - yynn3359 = 0 + r.EncodeMapStart(yynn3364) + yynn3364 = 0 } - if yyr3359 || yy2arr3359 { + if yyr3364 || yy2arr3364 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3359[0] { - yym3361 := z.EncBinary() - _ = yym3361 + if yyq3364[0] { + yym3366 := z.EncBinary() + _ = yym3366 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42815,23 +42856,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3359[0] { + if yyq3364[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3362 := z.EncBinary() - _ = yym3362 + yym3367 := z.EncBinary() + _ = yym3367 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3359 || yy2arr3359 { + if yyr3364 || yy2arr3364 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3359[1] { - yym3364 := z.EncBinary() - _ = yym3364 + if yyq3364[1] { + yym3369 := z.EncBinary() + _ = yym3369 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42840,22 +42881,22 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3359[1] { + if yyq3364[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3365 := z.EncBinary() - _ = yym3365 + yym3370 := z.EncBinary() + _ = yym3370 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3359 || yy2arr3359 { + if yyr3364 || yy2arr3364 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3367 := z.EncBinary() - _ = yym3367 + yym3372 := z.EncBinary() + _ = yym3372 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -42864,17 +42905,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3368 := z.EncBinary() - _ = yym3368 + yym3373 := z.EncBinary() + _ = yym3373 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr3359 || yy2arr3359 { + if yyr3364 || yy2arr3364 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3370 := z.EncBinary() - _ = yym3370 + yym3375 := z.EncBinary() + _ = yym3375 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -42883,17 +42924,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3371 := z.EncBinary() - _ = yym3371 + yym3376 := z.EncBinary() + _ = yym3376 if false { } else { r.EncodeBool(bool(x.Follow)) } } - if yyr3359 || yy2arr3359 { + if yyr3364 || yy2arr3364 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3373 := z.EncBinary() - _ = yym3373 + yym3378 := z.EncBinary() + _ = yym3378 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -42902,24 +42943,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3374 := z.EncBinary() - _ = yym3374 + yym3379 := z.EncBinary() + _ = yym3379 if false { } else { r.EncodeBool(bool(x.Previous)) } } - if yyr3359 || yy2arr3359 { + if yyr3364 || yy2arr3364 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3376 := *x.SinceSeconds - yym3377 := z.EncBinary() - _ = yym3377 + yy3381 := *x.SinceSeconds + yym3382 := z.EncBinary() + _ = yym3382 if false { } else { - r.EncodeInt(int64(yy3376)) + r.EncodeInt(int64(yy3381)) } } } else { @@ -42929,27 +42970,27 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3378 := *x.SinceSeconds - yym3379 := z.EncBinary() - _ = yym3379 + yy3383 := *x.SinceSeconds + yym3384 := z.EncBinary() + _ = yym3384 if false { } else { - r.EncodeInt(int64(yy3378)) + r.EncodeInt(int64(yy3383)) } } } - if yyr3359 || yy2arr3359 { + if yyr3364 || yy2arr3364 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3381 := z.EncBinary() - _ = yym3381 + yym3386 := z.EncBinary() + _ = yym3386 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3381 { + } else if yym3386 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3381 && z.IsJSONHandle() { + } else if !yym3386 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -42962,23 +43003,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceTime == nil { r.EncodeNil() } else { - yym3382 := z.EncBinary() - _ = yym3382 + yym3387 := z.EncBinary() + _ = yym3387 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3382 { + } else if yym3387 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3382 && z.IsJSONHandle() { + } else if !yym3387 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) } } } - if yyr3359 || yy2arr3359 { + if yyr3364 || yy2arr3364 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3384 := z.EncBinary() - _ = yym3384 + yym3389 := z.EncBinary() + _ = yym3389 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -42987,24 +43028,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3385 := z.EncBinary() - _ = yym3385 + yym3390 := z.EncBinary() + _ = yym3390 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } - if yyr3359 || yy2arr3359 { + if yyr3364 || yy2arr3364 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3387 := *x.TailLines - yym3388 := z.EncBinary() - _ = yym3388 + yy3392 := *x.TailLines + yym3393 := z.EncBinary() + _ = yym3393 if false { } else { - r.EncodeInt(int64(yy3387)) + r.EncodeInt(int64(yy3392)) } } } else { @@ -43014,26 +43055,26 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TailLines == nil { r.EncodeNil() } else { - yy3389 := *x.TailLines - yym3390 := z.EncBinary() - _ = yym3390 + yy3394 := *x.TailLines + yym3395 := z.EncBinary() + _ = yym3395 if false { } else { - r.EncodeInt(int64(yy3389)) + r.EncodeInt(int64(yy3394)) } } } - if yyr3359 || yy2arr3359 { + if yyr3364 || yy2arr3364 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3392 := *x.LimitBytes - yym3393 := z.EncBinary() - _ = yym3393 + yy3397 := *x.LimitBytes + yym3398 := z.EncBinary() + _ = yym3398 if false { } else { - r.EncodeInt(int64(yy3392)) + r.EncodeInt(int64(yy3397)) } } } else { @@ -43043,16 +43084,16 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LimitBytes == nil { r.EncodeNil() } else { - yy3394 := *x.LimitBytes - yym3395 := z.EncBinary() - _ = yym3395 + yy3399 := *x.LimitBytes + yym3400 := z.EncBinary() + _ = yym3400 if false { } else { - r.EncodeInt(int64(yy3394)) + r.EncodeInt(int64(yy3399)) } } } - if yyr3359 || yy2arr3359 { + if yyr3364 || yy2arr3364 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43065,25 +43106,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3396 := z.DecBinary() - _ = yym3396 + yym3401 := z.DecBinary() + _ = yym3401 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3397 := r.ContainerType() - if yyct3397 == codecSelferValueTypeMap1234 { - yyl3397 := r.ReadMapStart() - if yyl3397 == 0 { + yyct3402 := r.ContainerType() + if yyct3402 == codecSelferValueTypeMap1234 { + yyl3402 := r.ReadMapStart() + if yyl3402 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3397, d) + x.codecDecodeSelfFromMap(yyl3402, d) } - } else if yyct3397 == codecSelferValueTypeArray1234 { - yyl3397 := r.ReadArrayStart() - if yyl3397 == 0 { + } else if yyct3402 == codecSelferValueTypeArray1234 { + yyl3402 := r.ReadArrayStart() + if yyl3402 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3397, d) + x.codecDecodeSelfFromArray(yyl3402, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43095,12 +43136,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3398Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3398Slc - var yyhl3398 bool = l >= 0 - for yyj3398 := 0; ; yyj3398++ { - if yyhl3398 { - if yyj3398 >= l { + var yys3403Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3403Slc + var yyhl3403 bool = l >= 0 + for yyj3403 := 0; ; yyj3403++ { + if yyhl3403 { + if yyj3403 >= l { break } } else { @@ -43109,10 +43150,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3398Slc = r.DecodeBytes(yys3398Slc, true, true) - yys3398 := string(yys3398Slc) + yys3403Slc = r.DecodeBytes(yys3403Slc, true, true) + yys3403 := string(yys3403Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3398 { + switch yys3403 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43152,8 +43193,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3405 := z.DecBinary() - _ = yym3405 + yym3410 := z.DecBinary() + _ = yym3410 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -43168,13 +43209,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3407 := z.DecBinary() - _ = yym3407 - if false { + yym3412 := z.DecBinary() + _ = yym3412 + if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3407 { + } else if yym3412 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3407 && z.IsJSONHandle() { + } else if !yym3412 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -43195,8 +43236,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3410 := z.DecBinary() - _ = yym3410 + yym3415 := z.DecBinary() + _ = yym3415 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -43211,17 +43252,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3412 := z.DecBinary() - _ = yym3412 + yym3417 := z.DecBinary() + _ = yym3417 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3398) - } // end switch yys3398 - } // end for yyj3398 + z.DecStructFieldNotFound(-1, yys3403) + } // end switch yys3403 + } // end for yyj3403 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43229,16 +43270,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3413 int - var yyb3413 bool - var yyhl3413 bool = l >= 0 - yyj3413++ - if yyhl3413 { - yyb3413 = yyj3413 > l + var yyj3418 int + var yyb3418 bool + var yyhl3418 bool = l >= 0 + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l } else { - yyb3413 = r.CheckBreak() + yyb3418 = r.CheckBreak() } - if yyb3413 { + if yyb3418 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43248,13 +43289,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3413++ - if yyhl3413 { - yyb3413 = yyj3413 > l + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l } else { - yyb3413 = r.CheckBreak() + yyb3418 = r.CheckBreak() } - if yyb3413 { + if yyb3418 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43264,13 +43305,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3413++ - if yyhl3413 { - yyb3413 = yyj3413 > l + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l } else { - yyb3413 = r.CheckBreak() + yyb3418 = r.CheckBreak() } - if yyb3413 { + if yyb3418 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43280,13 +43321,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3413++ - if yyhl3413 { - yyb3413 = yyj3413 > l + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l } else { - yyb3413 = r.CheckBreak() + yyb3418 = r.CheckBreak() } - if yyb3413 { + if yyb3418 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43296,13 +43337,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3413++ - if yyhl3413 { - yyb3413 = yyj3413 > l + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l } else { - yyb3413 = r.CheckBreak() + yyb3418 = r.CheckBreak() } - if yyb3413 { + if yyb3418 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43312,13 +43353,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3413++ - if yyhl3413 { - yyb3413 = yyj3413 > l + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l } else { - yyb3413 = r.CheckBreak() + yyb3418 = r.CheckBreak() } - if yyb3413 { + if yyb3418 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43331,20 +43372,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3420 := z.DecBinary() - _ = yym3420 + yym3425 := z.DecBinary() + _ = yym3425 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3413++ - if yyhl3413 { - yyb3413 = yyj3413 > l + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l } else { - yyb3413 = r.CheckBreak() + yyb3418 = r.CheckBreak() } - if yyb3413 { + if yyb3418 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43357,25 +43398,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3422 := z.DecBinary() - _ = yym3422 + yym3427 := z.DecBinary() + _ = yym3427 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3422 { + } else if yym3427 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3422 && z.IsJSONHandle() { + } else if !yym3427 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3413++ - if yyhl3413 { - yyb3413 = yyj3413 > l + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l } else { - yyb3413 = r.CheckBreak() + yyb3418 = r.CheckBreak() } - if yyb3413 { + if yyb3418 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43385,13 +43426,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3413++ - if yyhl3413 { - yyb3413 = yyj3413 > l + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l } else { - yyb3413 = r.CheckBreak() + yyb3418 = r.CheckBreak() } - if yyb3413 { + if yyb3418 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43404,20 +43445,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3425 := z.DecBinary() - _ = yym3425 + yym3430 := z.DecBinary() + _ = yym3430 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3413++ - if yyhl3413 { - yyb3413 = yyj3413 > l + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l } else { - yyb3413 = r.CheckBreak() + yyb3418 = r.CheckBreak() } - if yyb3413 { + if yyb3418 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43430,25 +43471,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3427 := z.DecBinary() - _ = yym3427 + yym3432 := z.DecBinary() + _ = yym3432 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3413++ - if yyhl3413 { - yyb3413 = yyj3413 > l + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l } else { - yyb3413 = r.CheckBreak() + yyb3418 = r.CheckBreak() } - if yyb3413 { + if yyb3418 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3413-1, "") + z.DecStructFieldNotFound(yyj3418-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43460,41 +43501,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3428 := z.EncBinary() - _ = yym3428 + yym3433 := z.EncBinary() + _ = yym3433 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3429 := !z.EncBinary() - yy2arr3429 := z.EncBasicHandle().StructToArray - var yyq3429 [7]bool - _, _, _ = yysep3429, yyq3429, yy2arr3429 - const yyr3429 bool = false - yyq3429[0] = x.Kind != "" - yyq3429[1] = x.APIVersion != "" - yyq3429[2] = x.Stdin != false - yyq3429[3] = x.Stdout != false - yyq3429[4] = x.Stderr != false - yyq3429[5] = x.TTY != false - yyq3429[6] = x.Container != "" - var yynn3429 int - if yyr3429 || yy2arr3429 { + yysep3434 := !z.EncBinary() + yy2arr3434 := z.EncBasicHandle().StructToArray + var yyq3434 [7]bool + _, _, _ = yysep3434, yyq3434, yy2arr3434 + const yyr3434 bool = false + yyq3434[0] = x.Kind != "" + yyq3434[1] = x.APIVersion != "" + yyq3434[2] = x.Stdin != false + yyq3434[3] = x.Stdout != false + yyq3434[4] = x.Stderr != false + yyq3434[5] = x.TTY != false + yyq3434[6] = x.Container != "" + var yynn3434 int + if yyr3434 || yy2arr3434 { r.EncodeArrayStart(7) } else { - yynn3429 = 0 - for _, b := range yyq3429 { + yynn3434 = 0 + for _, b := range yyq3434 { if b { - yynn3429++ + yynn3434++ } } - r.EncodeMapStart(yynn3429) - yynn3429 = 0 + r.EncodeMapStart(yynn3434) + yynn3434 = 0 } - if yyr3429 || yy2arr3429 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3429[0] { - yym3431 := z.EncBinary() - _ = yym3431 + if yyq3434[0] { + yym3436 := z.EncBinary() + _ = yym3436 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43503,23 +43544,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3429[0] { + if yyq3434[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3432 := z.EncBinary() - _ = yym3432 + yym3437 := z.EncBinary() + _ = yym3437 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3429 || yy2arr3429 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3429[1] { - yym3434 := z.EncBinary() - _ = yym3434 + if yyq3434[1] { + yym3439 := z.EncBinary() + _ = yym3439 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43528,23 +43569,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3429[1] { + if yyq3434[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3435 := z.EncBinary() - _ = yym3435 + yym3440 := z.EncBinary() + _ = yym3440 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3429 || yy2arr3429 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3429[2] { - yym3437 := z.EncBinary() - _ = yym3437 + if yyq3434[2] { + yym3442 := z.EncBinary() + _ = yym3442 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -43553,23 +43594,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3429[2] { + if yyq3434[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3438 := z.EncBinary() - _ = yym3438 + yym3443 := z.EncBinary() + _ = yym3443 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3429 || yy2arr3429 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3429[3] { - yym3440 := z.EncBinary() - _ = yym3440 + if yyq3434[3] { + yym3445 := z.EncBinary() + _ = yym3445 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -43578,23 +43619,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3429[3] { + if yyq3434[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3441 := z.EncBinary() - _ = yym3441 + yym3446 := z.EncBinary() + _ = yym3446 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3429 || yy2arr3429 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3429[4] { - yym3443 := z.EncBinary() - _ = yym3443 + if yyq3434[4] { + yym3448 := z.EncBinary() + _ = yym3448 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -43603,23 +43644,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3429[4] { + if yyq3434[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3444 := z.EncBinary() - _ = yym3444 + yym3449 := z.EncBinary() + _ = yym3449 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3429 || yy2arr3429 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3429[5] { - yym3446 := z.EncBinary() - _ = yym3446 + if yyq3434[5] { + yym3451 := z.EncBinary() + _ = yym3451 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -43628,23 +43669,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3429[5] { + if yyq3434[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3447 := z.EncBinary() - _ = yym3447 + yym3452 := z.EncBinary() + _ = yym3452 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3429 || yy2arr3429 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3429[6] { - yym3449 := z.EncBinary() - _ = yym3449 + if yyq3434[6] { + yym3454 := z.EncBinary() + _ = yym3454 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -43653,19 +43694,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3429[6] { + if yyq3434[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3450 := z.EncBinary() - _ = yym3450 + yym3455 := z.EncBinary() + _ = yym3455 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3429 || yy2arr3429 { + if yyr3434 || yy2arr3434 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43678,25 +43719,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3451 := z.DecBinary() - _ = yym3451 + yym3456 := z.DecBinary() + _ = yym3456 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3452 := r.ContainerType() - if yyct3452 == codecSelferValueTypeMap1234 { - yyl3452 := r.ReadMapStart() - if yyl3452 == 0 { + yyct3457 := r.ContainerType() + if yyct3457 == codecSelferValueTypeMap1234 { + yyl3457 := r.ReadMapStart() + if yyl3457 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3452, d) + x.codecDecodeSelfFromMap(yyl3457, d) } - } else if yyct3452 == codecSelferValueTypeArray1234 { - yyl3452 := r.ReadArrayStart() - if yyl3452 == 0 { + } else if yyct3457 == codecSelferValueTypeArray1234 { + yyl3457 := r.ReadArrayStart() + if yyl3457 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3452, d) + x.codecDecodeSelfFromArray(yyl3457, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43708,12 +43749,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3453Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3453Slc - var yyhl3453 bool = l >= 0 - for yyj3453 := 0; ; yyj3453++ { - if yyhl3453 { - if yyj3453 >= l { + var yys3458Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3458Slc + var yyhl3458 bool = l >= 0 + for yyj3458 := 0; ; yyj3458++ { + if yyhl3458 { + if yyj3458 >= l { break } } else { @@ -43722,10 +43763,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3453Slc = r.DecodeBytes(yys3453Slc, true, true) - yys3453 := string(yys3453Slc) + yys3458Slc = r.DecodeBytes(yys3458Slc, true, true) + yys3458 := string(yys3458Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3453 { + switch yys3458 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43769,9 +43810,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3453) - } // end switch yys3453 - } // end for yyj3453 + z.DecStructFieldNotFound(-1, yys3458) + } // end switch yys3458 + } // end for yyj3458 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43779,16 +43820,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3461 int - var yyb3461 bool - var yyhl3461 bool = l >= 0 - yyj3461++ - if yyhl3461 { - yyb3461 = yyj3461 > l + var yyj3466 int + var yyb3466 bool + var yyhl3466 bool = l >= 0 + yyj3466++ + if yyhl3466 { + yyb3466 = yyj3466 > l } else { - yyb3461 = r.CheckBreak() + yyb3466 = r.CheckBreak() } - if yyb3461 { + if yyb3466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43798,13 +43839,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3461++ - if yyhl3461 { - yyb3461 = yyj3461 > l + yyj3466++ + if yyhl3466 { + yyb3466 = yyj3466 > l } else { - yyb3461 = r.CheckBreak() + yyb3466 = r.CheckBreak() } - if yyb3461 { + if yyb3466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43814,13 +43855,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3461++ - if yyhl3461 { - yyb3461 = yyj3461 > l + yyj3466++ + if yyhl3466 { + yyb3466 = yyj3466 > l } else { - yyb3461 = r.CheckBreak() + yyb3466 = r.CheckBreak() } - if yyb3461 { + if yyb3466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43830,13 +43871,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3461++ - if yyhl3461 { - yyb3461 = yyj3461 > l + yyj3466++ + if yyhl3466 { + yyb3466 = yyj3466 > l } else { - yyb3461 = r.CheckBreak() + yyb3466 = r.CheckBreak() } - if yyb3461 { + if yyb3466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43846,13 +43887,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3461++ - if yyhl3461 { - yyb3461 = yyj3461 > l + yyj3466++ + if yyhl3466 { + yyb3466 = yyj3466 > l } else { - yyb3461 = r.CheckBreak() + yyb3466 = r.CheckBreak() } - if yyb3461 { + if yyb3466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43862,13 +43903,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3461++ - if yyhl3461 { - yyb3461 = yyj3461 > l + yyj3466++ + if yyhl3466 { + yyb3466 = yyj3466 > l } else { - yyb3461 = r.CheckBreak() + yyb3466 = r.CheckBreak() } - if yyb3461 { + if yyb3466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43878,13 +43919,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3461++ - if yyhl3461 { - yyb3461 = yyj3461 > l + yyj3466++ + if yyhl3466 { + yyb3466 = yyj3466 > l } else { - yyb3461 = r.CheckBreak() + yyb3466 = r.CheckBreak() } - if yyb3461 { + if yyb3466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43895,17 +43936,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3461++ - if yyhl3461 { - yyb3461 = yyj3461 > l + yyj3466++ + if yyhl3466 { + yyb3466 = yyj3466 > l } else { - yyb3461 = r.CheckBreak() + yyb3466 = r.CheckBreak() } - if yyb3461 { + if yyb3466 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3461-1, "") + z.DecStructFieldNotFound(yyj3466-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43917,36 +43958,36 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3469 := z.EncBinary() - _ = yym3469 + yym3474 := z.EncBinary() + _ = yym3474 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3470 := !z.EncBinary() - yy2arr3470 := z.EncBasicHandle().StructToArray - var yyq3470 [8]bool - _, _, _ = yysep3470, yyq3470, yy2arr3470 - const yyr3470 bool = false - yyq3470[0] = x.Kind != "" - yyq3470[1] = x.APIVersion != "" - var yynn3470 int - if yyr3470 || yy2arr3470 { + yysep3475 := !z.EncBinary() + yy2arr3475 := z.EncBasicHandle().StructToArray + var yyq3475 [8]bool + _, _, _ = yysep3475, yyq3475, yy2arr3475 + const yyr3475 bool = false + yyq3475[0] = x.Kind != "" + yyq3475[1] = x.APIVersion != "" + var yynn3475 int + if yyr3475 || yy2arr3475 { r.EncodeArrayStart(8) } else { - yynn3470 = 6 - for _, b := range yyq3470 { + yynn3475 = 6 + for _, b := range yyq3475 { if b { - yynn3470++ + yynn3475++ } } - r.EncodeMapStart(yynn3470) - yynn3470 = 0 + r.EncodeMapStart(yynn3475) + yynn3475 = 0 } - if yyr3470 || yy2arr3470 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3470[0] { - yym3472 := z.EncBinary() - _ = yym3472 + if yyq3475[0] { + yym3477 := z.EncBinary() + _ = yym3477 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43955,23 +43996,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3470[0] { + if yyq3475[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3473 := z.EncBinary() - _ = yym3473 + yym3478 := z.EncBinary() + _ = yym3478 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3470 || yy2arr3470 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3470[1] { - yym3475 := z.EncBinary() - _ = yym3475 + if yyq3475[1] { + yym3480 := z.EncBinary() + _ = yym3480 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43980,22 +44021,22 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3470[1] { + if yyq3475[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3476 := z.EncBinary() - _ = yym3476 + yym3481 := z.EncBinary() + _ = yym3481 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3470 || yy2arr3470 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3478 := z.EncBinary() - _ = yym3478 + yym3483 := z.EncBinary() + _ = yym3483 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -44004,17 +44045,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3479 := z.EncBinary() - _ = yym3479 + yym3484 := z.EncBinary() + _ = yym3484 if false { } else { r.EncodeBool(bool(x.Stdin)) } } - if yyr3470 || yy2arr3470 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3481 := z.EncBinary() - _ = yym3481 + yym3486 := z.EncBinary() + _ = yym3486 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -44023,17 +44064,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3482 := z.EncBinary() - _ = yym3482 + yym3487 := z.EncBinary() + _ = yym3487 if false { } else { r.EncodeBool(bool(x.Stdout)) } } - if yyr3470 || yy2arr3470 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3484 := z.EncBinary() - _ = yym3484 + yym3489 := z.EncBinary() + _ = yym3489 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -44042,17 +44083,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3485 := z.EncBinary() - _ = yym3485 + yym3490 := z.EncBinary() + _ = yym3490 if false { } else { r.EncodeBool(bool(x.Stderr)) } } - if yyr3470 || yy2arr3470 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3487 := z.EncBinary() - _ = yym3487 + yym3492 := z.EncBinary() + _ = yym3492 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -44061,17 +44102,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("TTY")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3488 := z.EncBinary() - _ = yym3488 + yym3493 := z.EncBinary() + _ = yym3493 if false { } else { r.EncodeBool(bool(x.TTY)) } } - if yyr3470 || yy2arr3470 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3490 := z.EncBinary() - _ = yym3490 + yym3495 := z.EncBinary() + _ = yym3495 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -44080,20 +44121,20 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3491 := z.EncBinary() - _ = yym3491 + yym3496 := z.EncBinary() + _ = yym3496 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr3470 || yy2arr3470 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3493 := z.EncBinary() - _ = yym3493 + yym3498 := z.EncBinary() + _ = yym3498 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -44106,15 +44147,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3494 := z.EncBinary() - _ = yym3494 + yym3499 := z.EncBinary() + _ = yym3499 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3470 || yy2arr3470 { + if yyr3475 || yy2arr3475 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44127,25 +44168,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3495 := z.DecBinary() - _ = yym3495 + yym3500 := z.DecBinary() + _ = yym3500 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3496 := r.ContainerType() - if yyct3496 == codecSelferValueTypeMap1234 { - yyl3496 := r.ReadMapStart() - if yyl3496 == 0 { + yyct3501 := r.ContainerType() + if yyct3501 == codecSelferValueTypeMap1234 { + yyl3501 := r.ReadMapStart() + if yyl3501 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3496, d) + x.codecDecodeSelfFromMap(yyl3501, d) } - } else if yyct3496 == codecSelferValueTypeArray1234 { - yyl3496 := r.ReadArrayStart() - if yyl3496 == 0 { + } else if yyct3501 == codecSelferValueTypeArray1234 { + yyl3501 := r.ReadArrayStart() + if yyl3501 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3496, d) + x.codecDecodeSelfFromArray(yyl3501, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44157,12 +44198,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3497Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3497Slc - var yyhl3497 bool = l >= 0 - for yyj3497 := 0; ; yyj3497++ { - if yyhl3497 { - if yyj3497 >= l { + var yys3502Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3502Slc + var yyhl3502 bool = l >= 0 + for yyj3502 := 0; ; yyj3502++ { + if yyhl3502 { + if yyj3502 >= l { break } } else { @@ -44171,10 +44212,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3497Slc = r.DecodeBytes(yys3497Slc, true, true) - yys3497 := string(yys3497Slc) + yys3502Slc = r.DecodeBytes(yys3502Slc, true, true) + yys3502 := string(yys3502Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3497 { + switch yys3502 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44221,18 +44262,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3505 := &x.Command - yym3506 := z.DecBinary() - _ = yym3506 + yyv3510 := &x.Command + yym3511 := z.DecBinary() + _ = yym3511 if false { } else { - z.F.DecSliceStringX(yyv3505, false, d) + z.F.DecSliceStringX(yyv3510, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3497) - } // end switch yys3497 - } // end for yyj3497 + z.DecStructFieldNotFound(-1, yys3502) + } // end switch yys3502 + } // end for yyj3502 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44240,16 +44281,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3507 int - var yyb3507 bool - var yyhl3507 bool = l >= 0 - yyj3507++ - if yyhl3507 { - yyb3507 = yyj3507 > l + var yyj3512 int + var yyb3512 bool + var yyhl3512 bool = l >= 0 + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3507 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3507 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44259,13 +44300,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3507++ - if yyhl3507 { - yyb3507 = yyj3507 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3507 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3507 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44275,13 +44316,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3507++ - if yyhl3507 { - yyb3507 = yyj3507 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3507 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3507 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44291,13 +44332,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3507++ - if yyhl3507 { - yyb3507 = yyj3507 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3507 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3507 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44307,13 +44348,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3507++ - if yyhl3507 { - yyb3507 = yyj3507 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3507 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3507 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44323,13 +44364,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3507++ - if yyhl3507 { - yyb3507 = yyj3507 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3507 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3507 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44339,13 +44380,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3507++ - if yyhl3507 { - yyb3507 = yyj3507 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3507 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3507 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44355,13 +44396,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3507++ - if yyhl3507 { - yyb3507 = yyj3507 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3507 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3507 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44369,26 +44410,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3515 := &x.Command - yym3516 := z.DecBinary() - _ = yym3516 + yyv3520 := &x.Command + yym3521 := z.DecBinary() + _ = yym3521 if false { } else { - z.F.DecSliceStringX(yyv3515, false, d) + z.F.DecSliceStringX(yyv3520, false, d) } } for { - yyj3507++ - if yyhl3507 { - yyb3507 = yyj3507 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3507 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3507 { + if yyb3512 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3507-1, "") + z.DecStructFieldNotFound(yyj3512-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44400,36 +44441,36 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3517 := z.EncBinary() - _ = yym3517 + yym3522 := z.EncBinary() + _ = yym3522 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3518 := !z.EncBinary() - yy2arr3518 := z.EncBasicHandle().StructToArray - var yyq3518 [3]bool - _, _, _ = yysep3518, yyq3518, yy2arr3518 - const yyr3518 bool = false - yyq3518[0] = x.Kind != "" - yyq3518[1] = x.APIVersion != "" - var yynn3518 int - if yyr3518 || yy2arr3518 { + yysep3523 := !z.EncBinary() + yy2arr3523 := z.EncBasicHandle().StructToArray + var yyq3523 [3]bool + _, _, _ = yysep3523, yyq3523, yy2arr3523 + const yyr3523 bool = false + yyq3523[0] = x.Kind != "" + yyq3523[1] = x.APIVersion != "" + var yynn3523 int + if yyr3523 || yy2arr3523 { r.EncodeArrayStart(3) } else { - yynn3518 = 1 - for _, b := range yyq3518 { + yynn3523 = 1 + for _, b := range yyq3523 { if b { - yynn3518++ + yynn3523++ } } - r.EncodeMapStart(yynn3518) - yynn3518 = 0 + r.EncodeMapStart(yynn3523) + yynn3523 = 0 } - if yyr3518 || yy2arr3518 { + if yyr3523 || yy2arr3523 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3518[0] { - yym3520 := z.EncBinary() - _ = yym3520 + if yyq3523[0] { + yym3525 := z.EncBinary() + _ = yym3525 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44438,23 +44479,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3518[0] { + if yyq3523[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3521 := z.EncBinary() - _ = yym3521 + yym3526 := z.EncBinary() + _ = yym3526 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3518 || yy2arr3518 { + if yyr3523 || yy2arr3523 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3518[1] { - yym3523 := z.EncBinary() - _ = yym3523 + if yyq3523[1] { + yym3528 := z.EncBinary() + _ = yym3528 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44463,22 +44504,22 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3518[1] { + if yyq3523[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3524 := z.EncBinary() - _ = yym3524 + yym3529 := z.EncBinary() + _ = yym3529 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3518 || yy2arr3518 { + if yyr3523 || yy2arr3523 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3526 := z.EncBinary() - _ = yym3526 + yym3531 := z.EncBinary() + _ = yym3531 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -44487,14 +44528,14 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3527 := z.EncBinary() - _ = yym3527 + yym3532 := z.EncBinary() + _ = yym3532 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3518 || yy2arr3518 { + if yyr3523 || yy2arr3523 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44507,25 +44548,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3528 := z.DecBinary() - _ = yym3528 + yym3533 := z.DecBinary() + _ = yym3533 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3529 := r.ContainerType() - if yyct3529 == codecSelferValueTypeMap1234 { - yyl3529 := r.ReadMapStart() - if yyl3529 == 0 { + yyct3534 := r.ContainerType() + if yyct3534 == codecSelferValueTypeMap1234 { + yyl3534 := r.ReadMapStart() + if yyl3534 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3529, d) + x.codecDecodeSelfFromMap(yyl3534, d) } - } else if yyct3529 == codecSelferValueTypeArray1234 { - yyl3529 := r.ReadArrayStart() - if yyl3529 == 0 { + } else if yyct3534 == codecSelferValueTypeArray1234 { + yyl3534 := r.ReadArrayStart() + if yyl3534 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3529, d) + x.codecDecodeSelfFromArray(yyl3534, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44537,12 +44578,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3530Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3530Slc - var yyhl3530 bool = l >= 0 - for yyj3530 := 0; ; yyj3530++ { - if yyhl3530 { - if yyj3530 >= l { + var yys3535Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3535Slc + var yyhl3535 bool = l >= 0 + for yyj3535 := 0; ; yyj3535++ { + if yyhl3535 { + if yyj3535 >= l { break } } else { @@ -44551,10 +44592,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3530Slc = r.DecodeBytes(yys3530Slc, true, true) - yys3530 := string(yys3530Slc) + yys3535Slc = r.DecodeBytes(yys3535Slc, true, true) + yys3535 := string(yys3535Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3530 { + switch yys3535 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44574,9 +44615,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3530) - } // end switch yys3530 - } // end for yyj3530 + z.DecStructFieldNotFound(-1, yys3535) + } // end switch yys3535 + } // end for yyj3535 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44584,16 +44625,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3534 int - var yyb3534 bool - var yyhl3534 bool = l >= 0 - yyj3534++ - if yyhl3534 { - yyb3534 = yyj3534 > l + var yyj3539 int + var yyb3539 bool + var yyhl3539 bool = l >= 0 + yyj3539++ + if yyhl3539 { + yyb3539 = yyj3539 > l } else { - yyb3534 = r.CheckBreak() + yyb3539 = r.CheckBreak() } - if yyb3534 { + if yyb3539 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44603,13 +44644,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3534++ - if yyhl3534 { - yyb3534 = yyj3534 > l + yyj3539++ + if yyhl3539 { + yyb3539 = yyj3539 > l } else { - yyb3534 = r.CheckBreak() + yyb3539 = r.CheckBreak() } - if yyb3534 { + if yyb3539 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44619,13 +44660,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3534++ - if yyhl3534 { - yyb3534 = yyj3534 > l + yyj3539++ + if yyhl3539 { + yyb3539 = yyj3539 > l } else { - yyb3534 = r.CheckBreak() + yyb3539 = r.CheckBreak() } - if yyb3534 { + if yyb3539 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44636,17 +44677,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3534++ - if yyhl3534 { - yyb3534 = yyj3534 > l + yyj3539++ + if yyhl3539 { + yyb3539 = yyj3539 > l } else { - yyb3534 = r.CheckBreak() + yyb3539 = r.CheckBreak() } - if yyb3534 { + if yyb3539 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3534-1, "") + z.DecStructFieldNotFound(yyj3539-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44658,36 +44699,36 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3538 := z.EncBinary() - _ = yym3538 + yym3543 := z.EncBinary() + _ = yym3543 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3539 := !z.EncBinary() - yy2arr3539 := z.EncBasicHandle().StructToArray - var yyq3539 [3]bool - _, _, _ = yysep3539, yyq3539, yy2arr3539 - const yyr3539 bool = false - yyq3539[0] = x.Kind != "" - yyq3539[1] = x.APIVersion != "" - var yynn3539 int - if yyr3539 || yy2arr3539 { + yysep3544 := !z.EncBinary() + yy2arr3544 := z.EncBasicHandle().StructToArray + var yyq3544 [3]bool + _, _, _ = yysep3544, yyq3544, yy2arr3544 + const yyr3544 bool = false + yyq3544[0] = x.Kind != "" + yyq3544[1] = x.APIVersion != "" + var yynn3544 int + if yyr3544 || yy2arr3544 { r.EncodeArrayStart(3) } else { - yynn3539 = 1 - for _, b := range yyq3539 { + yynn3544 = 1 + for _, b := range yyq3544 { if b { - yynn3539++ + yynn3544++ } } - r.EncodeMapStart(yynn3539) - yynn3539 = 0 + r.EncodeMapStart(yynn3544) + yynn3544 = 0 } - if yyr3539 || yy2arr3539 { + if yyr3544 || yy2arr3544 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3539[0] { - yym3541 := z.EncBinary() - _ = yym3541 + if yyq3544[0] { + yym3546 := z.EncBinary() + _ = yym3546 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44696,23 +44737,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3539[0] { + if yyq3544[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3542 := z.EncBinary() - _ = yym3542 + yym3547 := z.EncBinary() + _ = yym3547 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3539 || yy2arr3539 { + if yyr3544 || yy2arr3544 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3539[1] { - yym3544 := z.EncBinary() - _ = yym3544 + if yyq3544[1] { + yym3549 := z.EncBinary() + _ = yym3549 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44721,22 +44762,22 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3539[1] { + if yyq3544[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3545 := z.EncBinary() - _ = yym3545 + yym3550 := z.EncBinary() + _ = yym3550 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3539 || yy2arr3539 { + if yyr3544 || yy2arr3544 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3547 := z.EncBinary() - _ = yym3547 + yym3552 := z.EncBinary() + _ = yym3552 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -44745,14 +44786,14 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3548 := z.EncBinary() - _ = yym3548 + yym3553 := z.EncBinary() + _ = yym3553 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3539 || yy2arr3539 { + if yyr3544 || yy2arr3544 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44765,25 +44806,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3549 := z.DecBinary() - _ = yym3549 + yym3554 := z.DecBinary() + _ = yym3554 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3550 := r.ContainerType() - if yyct3550 == codecSelferValueTypeMap1234 { - yyl3550 := r.ReadMapStart() - if yyl3550 == 0 { + yyct3555 := r.ContainerType() + if yyct3555 == codecSelferValueTypeMap1234 { + yyl3555 := r.ReadMapStart() + if yyl3555 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3550, d) + x.codecDecodeSelfFromMap(yyl3555, d) } - } else if yyct3550 == codecSelferValueTypeArray1234 { - yyl3550 := r.ReadArrayStart() - if yyl3550 == 0 { + } else if yyct3555 == codecSelferValueTypeArray1234 { + yyl3555 := r.ReadArrayStart() + if yyl3555 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3550, d) + x.codecDecodeSelfFromArray(yyl3555, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44795,12 +44836,12 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3551Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3551Slc - var yyhl3551 bool = l >= 0 - for yyj3551 := 0; ; yyj3551++ { - if yyhl3551 { - if yyj3551 >= l { + var yys3556Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3556Slc + var yyhl3556 bool = l >= 0 + for yyj3556 := 0; ; yyj3556++ { + if yyhl3556 { + if yyj3556 >= l { break } } else { @@ -44809,10 +44850,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3551Slc = r.DecodeBytes(yys3551Slc, true, true) - yys3551 := string(yys3551Slc) + yys3556Slc = r.DecodeBytes(yys3556Slc, true, true) + yys3556 := string(yys3556Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3551 { + switch yys3556 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44832,9 +44873,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3551) - } // end switch yys3551 - } // end for yyj3551 + z.DecStructFieldNotFound(-1, yys3556) + } // end switch yys3556 + } // end for yyj3556 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44842,16 +44883,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3555 int - var yyb3555 bool - var yyhl3555 bool = l >= 0 - yyj3555++ - if yyhl3555 { - yyb3555 = yyj3555 > l + var yyj3560 int + var yyb3560 bool + var yyhl3560 bool = l >= 0 + yyj3560++ + if yyhl3560 { + yyb3560 = yyj3560 > l } else { - yyb3555 = r.CheckBreak() + yyb3560 = r.CheckBreak() } - if yyb3555 { + if yyb3560 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44861,13 +44902,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3555++ - if yyhl3555 { - yyb3555 = yyj3555 > l + yyj3560++ + if yyhl3560 { + yyb3560 = yyj3560 > l } else { - yyb3555 = r.CheckBreak() + yyb3560 = r.CheckBreak() } - if yyb3555 { + if yyb3560 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44877,13 +44918,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3555++ - if yyhl3555 { - yyb3555 = yyj3555 > l + yyj3560++ + if yyhl3560 { + yyb3560 = yyj3560 > l } else { - yyb3555 = r.CheckBreak() + yyb3560 = r.CheckBreak() } - if yyb3555 { + if yyb3560 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44894,17 +44935,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3555++ - if yyhl3555 { - yyb3555 = yyj3555 > l + yyj3560++ + if yyhl3560 { + yyb3560 = yyj3560 > l } else { - yyb3555 = r.CheckBreak() + yyb3560 = r.CheckBreak() } - if yyb3555 { + if yyb3560 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3555-1, "") + z.DecStructFieldNotFound(yyj3560-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44916,36 +44957,36 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3559 := z.EncBinary() - _ = yym3559 + yym3564 := z.EncBinary() + _ = yym3564 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3560 := !z.EncBinary() - yy2arr3560 := z.EncBasicHandle().StructToArray - var yyq3560 [3]bool - _, _, _ = yysep3560, yyq3560, yy2arr3560 - const yyr3560 bool = false - yyq3560[0] = x.Kind != "" - yyq3560[1] = x.APIVersion != "" - var yynn3560 int - if yyr3560 || yy2arr3560 { + yysep3565 := !z.EncBinary() + yy2arr3565 := z.EncBasicHandle().StructToArray + var yyq3565 [3]bool + _, _, _ = yysep3565, yyq3565, yy2arr3565 + const yyr3565 bool = false + yyq3565[0] = x.Kind != "" + yyq3565[1] = x.APIVersion != "" + var yynn3565 int + if yyr3565 || yy2arr3565 { r.EncodeArrayStart(3) } else { - yynn3560 = 1 - for _, b := range yyq3560 { + yynn3565 = 1 + for _, b := range yyq3565 { if b { - yynn3560++ + yynn3565++ } } - r.EncodeMapStart(yynn3560) - yynn3560 = 0 + r.EncodeMapStart(yynn3565) + yynn3565 = 0 } - if yyr3560 || yy2arr3560 { + if yyr3565 || yy2arr3565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3560[0] { - yym3562 := z.EncBinary() - _ = yym3562 + if yyq3565[0] { + yym3567 := z.EncBinary() + _ = yym3567 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44954,23 +44995,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3560[0] { + if yyq3565[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3563 := z.EncBinary() - _ = yym3563 + yym3568 := z.EncBinary() + _ = yym3568 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3560 || yy2arr3560 { + if yyr3565 || yy2arr3565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3560[1] { - yym3565 := z.EncBinary() - _ = yym3565 + if yyq3565[1] { + yym3570 := z.EncBinary() + _ = yym3570 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44979,22 +45020,22 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3560[1] { + if yyq3565[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3566 := z.EncBinary() - _ = yym3566 + yym3571 := z.EncBinary() + _ = yym3571 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3560 || yy2arr3560 { + if yyr3565 || yy2arr3565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3568 := z.EncBinary() - _ = yym3568 + yym3573 := z.EncBinary() + _ = yym3573 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -45003,14 +45044,14 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3569 := z.EncBinary() - _ = yym3569 + yym3574 := z.EncBinary() + _ = yym3574 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3560 || yy2arr3560 { + if yyr3565 || yy2arr3565 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45023,25 +45064,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3570 := z.DecBinary() - _ = yym3570 + yym3575 := z.DecBinary() + _ = yym3575 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3571 := r.ContainerType() - if yyct3571 == codecSelferValueTypeMap1234 { - yyl3571 := r.ReadMapStart() - if yyl3571 == 0 { + yyct3576 := r.ContainerType() + if yyct3576 == codecSelferValueTypeMap1234 { + yyl3576 := r.ReadMapStart() + if yyl3576 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3571, d) + x.codecDecodeSelfFromMap(yyl3576, d) } - } else if yyct3571 == codecSelferValueTypeArray1234 { - yyl3571 := r.ReadArrayStart() - if yyl3571 == 0 { + } else if yyct3576 == codecSelferValueTypeArray1234 { + yyl3576 := r.ReadArrayStart() + if yyl3576 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3571, d) + x.codecDecodeSelfFromArray(yyl3576, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45053,12 +45094,12 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3572Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3572Slc - var yyhl3572 bool = l >= 0 - for yyj3572 := 0; ; yyj3572++ { - if yyhl3572 { - if yyj3572 >= l { + var yys3577Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3577Slc + var yyhl3577 bool = l >= 0 + for yyj3577 := 0; ; yyj3577++ { + if yyhl3577 { + if yyj3577 >= l { break } } else { @@ -45067,10 +45108,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3572Slc = r.DecodeBytes(yys3572Slc, true, true) - yys3572 := string(yys3572Slc) + yys3577Slc = r.DecodeBytes(yys3577Slc, true, true) + yys3577 := string(yys3577Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3572 { + switch yys3577 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45090,9 +45131,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3572) - } // end switch yys3572 - } // end for yyj3572 + z.DecStructFieldNotFound(-1, yys3577) + } // end switch yys3577 + } // end for yyj3577 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45100,16 +45141,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3576 int - var yyb3576 bool - var yyhl3576 bool = l >= 0 - yyj3576++ - if yyhl3576 { - yyb3576 = yyj3576 > l + var yyj3581 int + var yyb3581 bool + var yyhl3581 bool = l >= 0 + yyj3581++ + if yyhl3581 { + yyb3581 = yyj3581 > l } else { - yyb3576 = r.CheckBreak() + yyb3581 = r.CheckBreak() } - if yyb3576 { + if yyb3581 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45119,13 +45160,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3576++ - if yyhl3576 { - yyb3576 = yyj3576 > l + yyj3581++ + if yyhl3581 { + yyb3581 = yyj3581 > l } else { - yyb3576 = r.CheckBreak() + yyb3581 = r.CheckBreak() } - if yyb3576 { + if yyb3581 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45135,13 +45176,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3576++ - if yyhl3576 { - yyb3576 = yyj3576 > l + yyj3581++ + if yyhl3581 { + yyb3581 = yyj3581 > l } else { - yyb3576 = r.CheckBreak() + yyb3581 = r.CheckBreak() } - if yyb3576 { + if yyb3581 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45152,17 +45193,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3576++ - if yyhl3576 { - yyb3576 = yyj3576 > l + yyj3581++ + if yyhl3581 { + yyb3581 = yyj3581 > l } else { - yyb3576 = r.CheckBreak() + yyb3581 = r.CheckBreak() } - if yyb3576 { + if yyb3581 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3576-1, "") + z.DecStructFieldNotFound(yyj3581-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45174,34 +45215,34 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3580 := z.EncBinary() - _ = yym3580 + yym3585 := z.EncBinary() + _ = yym3585 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3581 := !z.EncBinary() - yy2arr3581 := z.EncBasicHandle().StructToArray - var yyq3581 [5]bool - _, _, _ = yysep3581, yyq3581, yy2arr3581 - const yyr3581 bool = false - yyq3581[4] = x.Controller != nil - var yynn3581 int - if yyr3581 || yy2arr3581 { + yysep3586 := !z.EncBinary() + yy2arr3586 := z.EncBasicHandle().StructToArray + var yyq3586 [5]bool + _, _, _ = yysep3586, yyq3586, yy2arr3586 + const yyr3586 bool = false + yyq3586[4] = x.Controller != nil + var yynn3586 int + if yyr3586 || yy2arr3586 { r.EncodeArrayStart(5) } else { - yynn3581 = 4 - for _, b := range yyq3581 { + yynn3586 = 4 + for _, b := range yyq3586 { if b { - yynn3581++ + yynn3586++ } } - r.EncodeMapStart(yynn3581) - yynn3581 = 0 + r.EncodeMapStart(yynn3586) + yynn3586 = 0 } - if yyr3581 || yy2arr3581 { + if yyr3586 || yy2arr3586 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3583 := z.EncBinary() - _ = yym3583 + yym3588 := z.EncBinary() + _ = yym3588 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45210,17 +45251,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3584 := z.EncBinary() - _ = yym3584 + yym3589 := z.EncBinary() + _ = yym3589 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr3581 || yy2arr3581 { + if yyr3586 || yy2arr3586 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3586 := z.EncBinary() - _ = yym3586 + yym3591 := z.EncBinary() + _ = yym3591 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45229,17 +45270,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3587 := z.EncBinary() - _ = yym3587 + yym3592 := z.EncBinary() + _ = yym3592 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } - if yyr3581 || yy2arr3581 { + if yyr3586 || yy2arr3586 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3589 := z.EncBinary() - _ = yym3589 + yym3594 := z.EncBinary() + _ = yym3594 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -45248,17 +45289,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3590 := z.EncBinary() - _ = yym3590 + yym3595 := z.EncBinary() + _ = yym3595 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3581 || yy2arr3581 { + if yyr3586 || yy2arr3586 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3592 := z.EncBinary() - _ = yym3592 + yym3597 := z.EncBinary() + _ = yym3597 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45268,50 +45309,50 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3593 := z.EncBinary() - _ = yym3593 + yym3598 := z.EncBinary() + _ = yym3598 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.UID)) } } - if yyr3581 || yy2arr3581 { + if yyr3586 || yy2arr3586 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3581[4] { + if yyq3586[4] { if x.Controller == nil { r.EncodeNil() } else { - yy3595 := *x.Controller - yym3596 := z.EncBinary() - _ = yym3596 + yy3600 := *x.Controller + yym3601 := z.EncBinary() + _ = yym3601 if false { } else { - r.EncodeBool(bool(yy3595)) + r.EncodeBool(bool(yy3600)) } } } else { r.EncodeNil() } } else { - if yyq3581[4] { + if yyq3586[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controller")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Controller == nil { r.EncodeNil() } else { - yy3597 := *x.Controller - yym3598 := z.EncBinary() - _ = yym3598 + yy3602 := *x.Controller + yym3603 := z.EncBinary() + _ = yym3603 if false { } else { - r.EncodeBool(bool(yy3597)) + r.EncodeBool(bool(yy3602)) } } } } - if yyr3581 || yy2arr3581 { + if yyr3586 || yy2arr3586 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45324,25 +45365,25 @@ func (x *OwnerReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3599 := z.DecBinary() - _ = yym3599 + yym3604 := z.DecBinary() + _ = yym3604 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3600 := r.ContainerType() - if yyct3600 == codecSelferValueTypeMap1234 { - yyl3600 := r.ReadMapStart() - if yyl3600 == 0 { + yyct3605 := r.ContainerType() + if yyct3605 == codecSelferValueTypeMap1234 { + yyl3605 := r.ReadMapStart() + if yyl3605 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3600, d) + x.codecDecodeSelfFromMap(yyl3605, d) } - } else if yyct3600 == codecSelferValueTypeArray1234 { - yyl3600 := r.ReadArrayStart() - if yyl3600 == 0 { + } else if yyct3605 == codecSelferValueTypeArray1234 { + yyl3605 := r.ReadArrayStart() + if yyl3605 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3600, d) + x.codecDecodeSelfFromArray(yyl3605, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45354,12 +45395,12 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3601Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3601Slc - var yyhl3601 bool = l >= 0 - for yyj3601 := 0; ; yyj3601++ { - if yyhl3601 { - if yyj3601 >= l { + var yys3606Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3606Slc + var yyhl3606 bool = l >= 0 + for yyj3606 := 0; ; yyj3606++ { + if yyhl3606 { + if yyj3606 >= l { break } } else { @@ -45368,10 +45409,10 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3601Slc = r.DecodeBytes(yys3601Slc, true, true) - yys3601 := string(yys3601Slc) + yys3606Slc = r.DecodeBytes(yys3606Slc, true, true) + yys3606 := string(yys3606Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3601 { + switch yys3606 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -45405,17 +45446,17 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3607 := z.DecBinary() - _ = yym3607 + yym3612 := z.DecBinary() + _ = yym3612 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3601) - } // end switch yys3601 - } // end for yyj3601 + z.DecStructFieldNotFound(-1, yys3606) + } // end switch yys3606 + } // end for yyj3606 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45423,16 +45464,16 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3608 int - var yyb3608 bool - var yyhl3608 bool = l >= 0 - yyj3608++ - if yyhl3608 { - yyb3608 = yyj3608 > l + var yyj3613 int + var yyb3613 bool + var yyhl3613 bool = l >= 0 + yyj3613++ + if yyhl3613 { + yyb3613 = yyj3613 > l } else { - yyb3608 = r.CheckBreak() + yyb3613 = r.CheckBreak() } - if yyb3608 { + if yyb3613 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45442,13 +45483,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3608++ - if yyhl3608 { - yyb3608 = yyj3608 > l + yyj3613++ + if yyhl3613 { + yyb3613 = yyj3613 > l } else { - yyb3608 = r.CheckBreak() + yyb3613 = r.CheckBreak() } - if yyb3608 { + if yyb3613 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45458,13 +45499,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3608++ - if yyhl3608 { - yyb3608 = yyj3608 > l + yyj3613++ + if yyhl3613 { + yyb3613 = yyj3613 > l } else { - yyb3608 = r.CheckBreak() + yyb3613 = r.CheckBreak() } - if yyb3608 { + if yyb3613 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45474,13 +45515,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj3608++ - if yyhl3608 { - yyb3608 = yyj3608 > l + yyj3613++ + if yyhl3613 { + yyb3613 = yyj3613 > l } else { - yyb3608 = r.CheckBreak() + yyb3613 = r.CheckBreak() } - if yyb3608 { + if yyb3613 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45490,13 +45531,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3608++ - if yyhl3608 { - yyb3608 = yyj3608 > l + yyj3613++ + if yyhl3613 { + yyb3613 = yyj3613 > l } else { - yyb3608 = r.CheckBreak() + yyb3613 = r.CheckBreak() } - if yyb3608 { + if yyb3613 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45509,25 +45550,25 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3614 := z.DecBinary() - _ = yym3614 + yym3619 := z.DecBinary() + _ = yym3619 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } for { - yyj3608++ - if yyhl3608 { - yyb3608 = yyj3608 > l + yyj3613++ + if yyhl3613 { + yyb3613 = yyj3613 > l } else { - yyb3608 = r.CheckBreak() + yyb3613 = r.CheckBreak() } - if yyb3608 { + if yyb3613 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3608-1, "") + z.DecStructFieldNotFound(yyj3613-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45539,41 +45580,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3615 := z.EncBinary() - _ = yym3615 + yym3620 := z.EncBinary() + _ = yym3620 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3616 := !z.EncBinary() - yy2arr3616 := z.EncBasicHandle().StructToArray - var yyq3616 [7]bool - _, _, _ = yysep3616, yyq3616, yy2arr3616 - const yyr3616 bool = false - yyq3616[0] = x.Kind != "" - yyq3616[1] = x.Namespace != "" - yyq3616[2] = x.Name != "" - yyq3616[3] = x.UID != "" - yyq3616[4] = x.APIVersion != "" - yyq3616[5] = x.ResourceVersion != "" - yyq3616[6] = x.FieldPath != "" - var yynn3616 int - if yyr3616 || yy2arr3616 { + yysep3621 := !z.EncBinary() + yy2arr3621 := z.EncBasicHandle().StructToArray + var yyq3621 [7]bool + _, _, _ = yysep3621, yyq3621, yy2arr3621 + const yyr3621 bool = false + yyq3621[0] = x.Kind != "" + yyq3621[1] = x.Namespace != "" + yyq3621[2] = x.Name != "" + yyq3621[3] = x.UID != "" + yyq3621[4] = x.APIVersion != "" + yyq3621[5] = x.ResourceVersion != "" + yyq3621[6] = x.FieldPath != "" + var yynn3621 int + if yyr3621 || yy2arr3621 { r.EncodeArrayStart(7) } else { - yynn3616 = 0 - for _, b := range yyq3616 { + yynn3621 = 0 + for _, b := range yyq3621 { if b { - yynn3616++ + yynn3621++ } } - r.EncodeMapStart(yynn3616) - yynn3616 = 0 + r.EncodeMapStart(yynn3621) + yynn3621 = 0 } - if yyr3616 || yy2arr3616 { + if yyr3621 || yy2arr3621 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3616[0] { - yym3618 := z.EncBinary() - _ = yym3618 + if yyq3621[0] { + yym3623 := z.EncBinary() + _ = yym3623 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45582,23 +45623,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3616[0] { + if yyq3621[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3619 := z.EncBinary() - _ = yym3619 + yym3624 := z.EncBinary() + _ = yym3624 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3616 || yy2arr3616 { + if yyr3621 || yy2arr3621 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3616[1] { - yym3621 := z.EncBinary() - _ = yym3621 + if yyq3621[1] { + yym3626 := z.EncBinary() + _ = yym3626 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -45607,23 +45648,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3616[1] { + if yyq3621[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3622 := z.EncBinary() - _ = yym3622 + yym3627 := z.EncBinary() + _ = yym3627 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3616 || yy2arr3616 { + if yyr3621 || yy2arr3621 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3616[2] { - yym3624 := z.EncBinary() - _ = yym3624 + if yyq3621[2] { + yym3629 := z.EncBinary() + _ = yym3629 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -45632,23 +45673,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3616[2] { + if yyq3621[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3625 := z.EncBinary() - _ = yym3625 + yym3630 := z.EncBinary() + _ = yym3630 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3616 || yy2arr3616 { + if yyr3621 || yy2arr3621 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3616[3] { - yym3627 := z.EncBinary() - _ = yym3627 + if yyq3621[3] { + yym3632 := z.EncBinary() + _ = yym3632 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45658,12 +45699,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3616[3] { + if yyq3621[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3628 := z.EncBinary() - _ = yym3628 + yym3633 := z.EncBinary() + _ = yym3633 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45671,11 +45712,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3616 || yy2arr3616 { + if yyr3621 || yy2arr3621 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3616[4] { - yym3630 := z.EncBinary() - _ = yym3630 + if yyq3621[4] { + yym3635 := z.EncBinary() + _ = yym3635 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45684,23 +45725,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3616[4] { + if yyq3621[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3631 := z.EncBinary() - _ = yym3631 + yym3636 := z.EncBinary() + _ = yym3636 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3616 || yy2arr3616 { + if yyr3621 || yy2arr3621 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3616[5] { - yym3633 := z.EncBinary() - _ = yym3633 + if yyq3621[5] { + yym3638 := z.EncBinary() + _ = yym3638 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -45709,23 +45750,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3616[5] { + if yyq3621[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3634 := z.EncBinary() - _ = yym3634 + yym3639 := z.EncBinary() + _ = yym3639 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3616 || yy2arr3616 { + if yyr3621 || yy2arr3621 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3616[6] { - yym3636 := z.EncBinary() - _ = yym3636 + if yyq3621[6] { + yym3641 := z.EncBinary() + _ = yym3641 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -45734,19 +45775,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3616[6] { + if yyq3621[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3637 := z.EncBinary() - _ = yym3637 + yym3642 := z.EncBinary() + _ = yym3642 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3616 || yy2arr3616 { + if yyr3621 || yy2arr3621 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45759,25 +45800,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3638 := z.DecBinary() - _ = yym3638 + yym3643 := z.DecBinary() + _ = yym3643 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3639 := r.ContainerType() - if yyct3639 == codecSelferValueTypeMap1234 { - yyl3639 := r.ReadMapStart() - if yyl3639 == 0 { + yyct3644 := r.ContainerType() + if yyct3644 == codecSelferValueTypeMap1234 { + yyl3644 := r.ReadMapStart() + if yyl3644 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3639, d) + x.codecDecodeSelfFromMap(yyl3644, d) } - } else if yyct3639 == codecSelferValueTypeArray1234 { - yyl3639 := r.ReadArrayStart() - if yyl3639 == 0 { + } else if yyct3644 == codecSelferValueTypeArray1234 { + yyl3644 := r.ReadArrayStart() + if yyl3644 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3639, d) + x.codecDecodeSelfFromArray(yyl3644, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45789,12 +45830,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3640Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3640Slc - var yyhl3640 bool = l >= 0 - for yyj3640 := 0; ; yyj3640++ { - if yyhl3640 { - if yyj3640 >= l { + var yys3645Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3645Slc + var yyhl3645 bool = l >= 0 + for yyj3645 := 0; ; yyj3645++ { + if yyhl3645 { + if yyj3645 >= l { break } } else { @@ -45803,10 +45844,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3640Slc = r.DecodeBytes(yys3640Slc, true, true) - yys3640 := string(yys3640Slc) + yys3645Slc = r.DecodeBytes(yys3645Slc, true, true) + yys3645 := string(yys3645Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3640 { + switch yys3645 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45850,9 +45891,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3640) - } // end switch yys3640 - } // end for yyj3640 + z.DecStructFieldNotFound(-1, yys3645) + } // end switch yys3645 + } // end for yyj3645 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45860,16 +45901,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3648 int - var yyb3648 bool - var yyhl3648 bool = l >= 0 - yyj3648++ - if yyhl3648 { - yyb3648 = yyj3648 > l + var yyj3653 int + var yyb3653 bool + var yyhl3653 bool = l >= 0 + yyj3653++ + if yyhl3653 { + yyb3653 = yyj3653 > l } else { - yyb3648 = r.CheckBreak() + yyb3653 = r.CheckBreak() } - if yyb3648 { + if yyb3653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45879,13 +45920,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3648++ - if yyhl3648 { - yyb3648 = yyj3648 > l + yyj3653++ + if yyhl3653 { + yyb3653 = yyj3653 > l } else { - yyb3648 = r.CheckBreak() + yyb3653 = r.CheckBreak() } - if yyb3648 { + if yyb3653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45895,13 +45936,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3648++ - if yyhl3648 { - yyb3648 = yyj3648 > l + yyj3653++ + if yyhl3653 { + yyb3653 = yyj3653 > l } else { - yyb3648 = r.CheckBreak() + yyb3653 = r.CheckBreak() } - if yyb3648 { + if yyb3653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45911,13 +45952,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3648++ - if yyhl3648 { - yyb3648 = yyj3648 > l + yyj3653++ + if yyhl3653 { + yyb3653 = yyj3653 > l } else { - yyb3648 = r.CheckBreak() + yyb3653 = r.CheckBreak() } - if yyb3648 { + if yyb3653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45927,13 +45968,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3648++ - if yyhl3648 { - yyb3648 = yyj3648 > l + yyj3653++ + if yyhl3653 { + yyb3653 = yyj3653 > l } else { - yyb3648 = r.CheckBreak() + yyb3653 = r.CheckBreak() } - if yyb3648 { + if yyb3653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45943,13 +45984,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3648++ - if yyhl3648 { - yyb3648 = yyj3648 > l + yyj3653++ + if yyhl3653 { + yyb3653 = yyj3653 > l } else { - yyb3648 = r.CheckBreak() + yyb3653 = r.CheckBreak() } - if yyb3648 { + if yyb3653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45959,13 +46000,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3648++ - if yyhl3648 { - yyb3648 = yyj3648 > l + yyj3653++ + if yyhl3653 { + yyb3653 = yyj3653 > l } else { - yyb3648 = r.CheckBreak() + yyb3653 = r.CheckBreak() } - if yyb3648 { + if yyb3653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45976,17 +46017,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3648++ - if yyhl3648 { - yyb3648 = yyj3648 > l + yyj3653++ + if yyhl3653 { + yyb3653 = yyj3653 > l } else { - yyb3648 = r.CheckBreak() + yyb3653 = r.CheckBreak() } - if yyb3648 { + if yyb3653 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3648-1, "") + z.DecStructFieldNotFound(yyj3653-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45998,33 +46039,33 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3656 := z.EncBinary() - _ = yym3656 + yym3661 := z.EncBinary() + _ = yym3661 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3657 := !z.EncBinary() - yy2arr3657 := z.EncBasicHandle().StructToArray - var yyq3657 [1]bool - _, _, _ = yysep3657, yyq3657, yy2arr3657 - const yyr3657 bool = false - var yynn3657 int - if yyr3657 || yy2arr3657 { + yysep3662 := !z.EncBinary() + yy2arr3662 := z.EncBasicHandle().StructToArray + var yyq3662 [1]bool + _, _, _ = yysep3662, yyq3662, yy2arr3662 + const yyr3662 bool = false + var yynn3662 int + if yyr3662 || yy2arr3662 { r.EncodeArrayStart(1) } else { - yynn3657 = 1 - for _, b := range yyq3657 { + yynn3662 = 1 + for _, b := range yyq3662 { if b { - yynn3657++ + yynn3662++ } } - r.EncodeMapStart(yynn3657) - yynn3657 = 0 + r.EncodeMapStart(yynn3662) + yynn3662 = 0 } - if yyr3657 || yy2arr3657 { + if yyr3662 || yy2arr3662 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3659 := z.EncBinary() - _ = yym3659 + yym3664 := z.EncBinary() + _ = yym3664 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -46033,14 +46074,14 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3660 := z.EncBinary() - _ = yym3660 + yym3665 := z.EncBinary() + _ = yym3665 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3657 || yy2arr3657 { + if yyr3662 || yy2arr3662 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46053,25 +46094,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3661 := z.DecBinary() - _ = yym3661 + yym3666 := z.DecBinary() + _ = yym3666 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3662 := r.ContainerType() - if yyct3662 == codecSelferValueTypeMap1234 { - yyl3662 := r.ReadMapStart() - if yyl3662 == 0 { + yyct3667 := r.ContainerType() + if yyct3667 == codecSelferValueTypeMap1234 { + yyl3667 := r.ReadMapStart() + if yyl3667 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3662, d) + x.codecDecodeSelfFromMap(yyl3667, d) } - } else if yyct3662 == codecSelferValueTypeArray1234 { - yyl3662 := r.ReadArrayStart() - if yyl3662 == 0 { + } else if yyct3667 == codecSelferValueTypeArray1234 { + yyl3667 := r.ReadArrayStart() + if yyl3667 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3662, d) + x.codecDecodeSelfFromArray(yyl3667, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46083,12 +46124,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3663Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3663Slc - var yyhl3663 bool = l >= 0 - for yyj3663 := 0; ; yyj3663++ { - if yyhl3663 { - if yyj3663 >= l { + var yys3668Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3668Slc + var yyhl3668 bool = l >= 0 + for yyj3668 := 0; ; yyj3668++ { + if yyhl3668 { + if yyj3668 >= l { break } } else { @@ -46097,10 +46138,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3663Slc = r.DecodeBytes(yys3663Slc, true, true) - yys3663 := string(yys3663Slc) + yys3668Slc = r.DecodeBytes(yys3668Slc, true, true) + yys3668 := string(yys3668Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3663 { + switch yys3668 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -46108,9 +46149,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3663) - } // end switch yys3663 - } // end for yyj3663 + z.DecStructFieldNotFound(-1, yys3668) + } // end switch yys3668 + } // end for yyj3668 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46118,16 +46159,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3665 int - var yyb3665 bool - var yyhl3665 bool = l >= 0 - yyj3665++ - if yyhl3665 { - yyb3665 = yyj3665 > l + var yyj3670 int + var yyb3670 bool + var yyhl3670 bool = l >= 0 + yyj3670++ + if yyhl3670 { + yyb3670 = yyj3670 > l } else { - yyb3665 = r.CheckBreak() + yyb3670 = r.CheckBreak() } - if yyb3665 { + if yyb3670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46138,17 +46179,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj3665++ - if yyhl3665 { - yyb3665 = yyj3665 > l + yyj3670++ + if yyhl3670 { + yyb3670 = yyj3670 > l } else { - yyb3665 = r.CheckBreak() + yyb3670 = r.CheckBreak() } - if yyb3665 { + if yyb3670 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3665-1, "") + z.DecStructFieldNotFound(yyj3670-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46160,37 +46201,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3667 := z.EncBinary() - _ = yym3667 + yym3672 := z.EncBinary() + _ = yym3672 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3668 := !z.EncBinary() - yy2arr3668 := z.EncBasicHandle().StructToArray - var yyq3668 [3]bool - _, _, _ = yysep3668, yyq3668, yy2arr3668 - const yyr3668 bool = false - yyq3668[0] = x.Kind != "" - yyq3668[1] = x.APIVersion != "" - yyq3668[2] = true - var yynn3668 int - if yyr3668 || yy2arr3668 { + yysep3673 := !z.EncBinary() + yy2arr3673 := z.EncBasicHandle().StructToArray + var yyq3673 [3]bool + _, _, _ = yysep3673, yyq3673, yy2arr3673 + const yyr3673 bool = false + yyq3673[0] = x.Kind != "" + yyq3673[1] = x.APIVersion != "" + yyq3673[2] = true + var yynn3673 int + if yyr3673 || yy2arr3673 { r.EncodeArrayStart(3) } else { - yynn3668 = 0 - for _, b := range yyq3668 { + yynn3673 = 0 + for _, b := range yyq3673 { if b { - yynn3668++ + yynn3673++ } } - r.EncodeMapStart(yynn3668) - yynn3668 = 0 + r.EncodeMapStart(yynn3673) + yynn3673 = 0 } - if yyr3668 || yy2arr3668 { + if yyr3673 || yy2arr3673 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3668[0] { - yym3670 := z.EncBinary() - _ = yym3670 + if yyq3673[0] { + yym3675 := z.EncBinary() + _ = yym3675 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46199,23 +46240,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3668[0] { + if yyq3673[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3671 := z.EncBinary() - _ = yym3671 + yym3676 := z.EncBinary() + _ = yym3676 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3668 || yy2arr3668 { + if yyr3673 || yy2arr3673 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3668[1] { - yym3673 := z.EncBinary() - _ = yym3673 + if yyq3673[1] { + yym3678 := z.EncBinary() + _ = yym3678 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46224,36 +46265,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3668[1] { + if yyq3673[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3674 := z.EncBinary() - _ = yym3674 + yym3679 := z.EncBinary() + _ = yym3679 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3668 || yy2arr3668 { + if yyr3673 || yy2arr3673 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3668[2] { - yy3676 := &x.Reference - yy3676.CodecEncodeSelf(e) + if yyq3673[2] { + yy3681 := &x.Reference + yy3681.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3668[2] { + if yyq3673[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3677 := &x.Reference - yy3677.CodecEncodeSelf(e) + yy3682 := &x.Reference + yy3682.CodecEncodeSelf(e) } } - if yyr3668 || yy2arr3668 { + if yyr3673 || yy2arr3673 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46266,25 +46307,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3678 := z.DecBinary() - _ = yym3678 + yym3683 := z.DecBinary() + _ = yym3683 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3679 := r.ContainerType() - if yyct3679 == codecSelferValueTypeMap1234 { - yyl3679 := r.ReadMapStart() - if yyl3679 == 0 { + yyct3684 := r.ContainerType() + if yyct3684 == codecSelferValueTypeMap1234 { + yyl3684 := r.ReadMapStart() + if yyl3684 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3679, d) + x.codecDecodeSelfFromMap(yyl3684, d) } - } else if yyct3679 == codecSelferValueTypeArray1234 { - yyl3679 := r.ReadArrayStart() - if yyl3679 == 0 { + } else if yyct3684 == codecSelferValueTypeArray1234 { + yyl3684 := r.ReadArrayStart() + if yyl3684 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3679, d) + x.codecDecodeSelfFromArray(yyl3684, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46296,12 +46337,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3680Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3680Slc - var yyhl3680 bool = l >= 0 - for yyj3680 := 0; ; yyj3680++ { - if yyhl3680 { - if yyj3680 >= l { + var yys3685Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3685Slc + var yyhl3685 bool = l >= 0 + for yyj3685 := 0; ; yyj3685++ { + if yyhl3685 { + if yyj3685 >= l { break } } else { @@ -46310,10 +46351,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3680Slc = r.DecodeBytes(yys3680Slc, true, true) - yys3680 := string(yys3680Slc) + yys3685Slc = r.DecodeBytes(yys3685Slc, true, true) + yys3685 := string(yys3685Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3680 { + switch yys3685 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46330,13 +46371,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3683 := &x.Reference - yyv3683.CodecDecodeSelf(d) + yyv3688 := &x.Reference + yyv3688.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3680) - } // end switch yys3680 - } // end for yyj3680 + z.DecStructFieldNotFound(-1, yys3685) + } // end switch yys3685 + } // end for yyj3685 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46344,16 +46385,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3684 int - var yyb3684 bool - var yyhl3684 bool = l >= 0 - yyj3684++ - if yyhl3684 { - yyb3684 = yyj3684 > l + var yyj3689 int + var yyb3689 bool + var yyhl3689 bool = l >= 0 + yyj3689++ + if yyhl3689 { + yyb3689 = yyj3689 > l } else { - yyb3684 = r.CheckBreak() + yyb3689 = r.CheckBreak() } - if yyb3684 { + if yyb3689 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46363,13 +46404,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3684++ - if yyhl3684 { - yyb3684 = yyj3684 > l + yyj3689++ + if yyhl3689 { + yyb3689 = yyj3689 > l } else { - yyb3684 = r.CheckBreak() + yyb3689 = r.CheckBreak() } - if yyb3684 { + if yyb3689 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46379,13 +46420,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3684++ - if yyhl3684 { - yyb3684 = yyj3684 > l + yyj3689++ + if yyhl3689 { + yyb3689 = yyj3689 > l } else { - yyb3684 = r.CheckBreak() + yyb3689 = r.CheckBreak() } - if yyb3684 { + if yyb3689 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46393,21 +46434,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3687 := &x.Reference - yyv3687.CodecDecodeSelf(d) + yyv3692 := &x.Reference + yyv3692.CodecDecodeSelf(d) } for { - yyj3684++ - if yyhl3684 { - yyb3684 = yyj3684 > l + yyj3689++ + if yyhl3689 { + yyb3689 = yyj3689 > l } else { - yyb3684 = r.CheckBreak() + yyb3689 = r.CheckBreak() } - if yyb3684 { + if yyb3689 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3684-1, "") + z.DecStructFieldNotFound(yyj3689-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46419,36 +46460,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3688 := z.EncBinary() - _ = yym3688 + yym3693 := z.EncBinary() + _ = yym3693 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3689 := !z.EncBinary() - yy2arr3689 := z.EncBasicHandle().StructToArray - var yyq3689 [2]bool - _, _, _ = yysep3689, yyq3689, yy2arr3689 - const yyr3689 bool = false - yyq3689[0] = x.Component != "" - yyq3689[1] = x.Host != "" - var yynn3689 int - if yyr3689 || yy2arr3689 { + yysep3694 := !z.EncBinary() + yy2arr3694 := z.EncBasicHandle().StructToArray + var yyq3694 [2]bool + _, _, _ = yysep3694, yyq3694, yy2arr3694 + const yyr3694 bool = false + yyq3694[0] = x.Component != "" + yyq3694[1] = x.Host != "" + var yynn3694 int + if yyr3694 || yy2arr3694 { r.EncodeArrayStart(2) } else { - yynn3689 = 0 - for _, b := range yyq3689 { + yynn3694 = 0 + for _, b := range yyq3694 { if b { - yynn3689++ + yynn3694++ } } - r.EncodeMapStart(yynn3689) - yynn3689 = 0 + r.EncodeMapStart(yynn3694) + yynn3694 = 0 } - if yyr3689 || yy2arr3689 { + if yyr3694 || yy2arr3694 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3689[0] { - yym3691 := z.EncBinary() - _ = yym3691 + if yyq3694[0] { + yym3696 := z.EncBinary() + _ = yym3696 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -46457,23 +46498,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3689[0] { + if yyq3694[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3692 := z.EncBinary() - _ = yym3692 + yym3697 := z.EncBinary() + _ = yym3697 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr3689 || yy2arr3689 { + if yyr3694 || yy2arr3694 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3689[1] { - yym3694 := z.EncBinary() - _ = yym3694 + if yyq3694[1] { + yym3699 := z.EncBinary() + _ = yym3699 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -46482,19 +46523,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3689[1] { + if yyq3694[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3695 := z.EncBinary() - _ = yym3695 + yym3700 := z.EncBinary() + _ = yym3700 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3689 || yy2arr3689 { + if yyr3694 || yy2arr3694 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46507,25 +46548,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3696 := z.DecBinary() - _ = yym3696 + yym3701 := z.DecBinary() + _ = yym3701 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3697 := r.ContainerType() - if yyct3697 == codecSelferValueTypeMap1234 { - yyl3697 := r.ReadMapStart() - if yyl3697 == 0 { + yyct3702 := r.ContainerType() + if yyct3702 == codecSelferValueTypeMap1234 { + yyl3702 := r.ReadMapStart() + if yyl3702 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3697, d) + x.codecDecodeSelfFromMap(yyl3702, d) } - } else if yyct3697 == codecSelferValueTypeArray1234 { - yyl3697 := r.ReadArrayStart() - if yyl3697 == 0 { + } else if yyct3702 == codecSelferValueTypeArray1234 { + yyl3702 := r.ReadArrayStart() + if yyl3702 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3697, d) + x.codecDecodeSelfFromArray(yyl3702, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46537,12 +46578,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3698Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3698Slc - var yyhl3698 bool = l >= 0 - for yyj3698 := 0; ; yyj3698++ { - if yyhl3698 { - if yyj3698 >= l { + var yys3703Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3703Slc + var yyhl3703 bool = l >= 0 + for yyj3703 := 0; ; yyj3703++ { + if yyhl3703 { + if yyj3703 >= l { break } } else { @@ -46551,10 +46592,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3698Slc = r.DecodeBytes(yys3698Slc, true, true) - yys3698 := string(yys3698Slc) + yys3703Slc = r.DecodeBytes(yys3703Slc, true, true) + yys3703 := string(yys3703Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3698 { + switch yys3703 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -46568,9 +46609,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3698) - } // end switch yys3698 - } // end for yyj3698 + z.DecStructFieldNotFound(-1, yys3703) + } // end switch yys3703 + } // end for yyj3703 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46578,16 +46619,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3701 int - var yyb3701 bool - var yyhl3701 bool = l >= 0 - yyj3701++ - if yyhl3701 { - yyb3701 = yyj3701 > l + var yyj3706 int + var yyb3706 bool + var yyhl3706 bool = l >= 0 + yyj3706++ + if yyhl3706 { + yyb3706 = yyj3706 > l } else { - yyb3701 = r.CheckBreak() + yyb3706 = r.CheckBreak() } - if yyb3701 { + if yyb3706 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46597,13 +46638,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3701++ - if yyhl3701 { - yyb3701 = yyj3701 > l + yyj3706++ + if yyhl3706 { + yyb3706 = yyj3706 > l } else { - yyb3701 = r.CheckBreak() + yyb3706 = r.CheckBreak() } - if yyb3701 { + if yyb3706 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46614,17 +46655,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3701++ - if yyhl3701 { - yyb3701 = yyj3701 > l + yyj3706++ + if yyhl3706 { + yyb3706 = yyj3706 > l } else { - yyb3701 = r.CheckBreak() + yyb3706 = r.CheckBreak() } - if yyb3701 { + if yyb3706 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3701-1, "") + z.DecStructFieldNotFound(yyj3706-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46636,45 +46677,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3704 := z.EncBinary() - _ = yym3704 + yym3709 := z.EncBinary() + _ = yym3709 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3705 := !z.EncBinary() - yy2arr3705 := z.EncBasicHandle().StructToArray - var yyq3705 [11]bool - _, _, _ = yysep3705, yyq3705, yy2arr3705 - const yyr3705 bool = false - yyq3705[0] = x.Kind != "" - yyq3705[1] = x.APIVersion != "" - yyq3705[2] = true - yyq3705[3] = true - yyq3705[4] = x.Reason != "" - yyq3705[5] = x.Message != "" - yyq3705[6] = true - yyq3705[7] = true - yyq3705[8] = true - yyq3705[9] = x.Count != 0 - yyq3705[10] = x.Type != "" - var yynn3705 int - if yyr3705 || yy2arr3705 { + yysep3710 := !z.EncBinary() + yy2arr3710 := z.EncBasicHandle().StructToArray + var yyq3710 [11]bool + _, _, _ = yysep3710, yyq3710, yy2arr3710 + const yyr3710 bool = false + yyq3710[0] = x.Kind != "" + yyq3710[1] = x.APIVersion != "" + yyq3710[2] = true + yyq3710[3] = true + yyq3710[4] = x.Reason != "" + yyq3710[5] = x.Message != "" + yyq3710[6] = true + yyq3710[7] = true + yyq3710[8] = true + yyq3710[9] = x.Count != 0 + yyq3710[10] = x.Type != "" + var yynn3710 int + if yyr3710 || yy2arr3710 { r.EncodeArrayStart(11) } else { - yynn3705 = 0 - for _, b := range yyq3705 { + yynn3710 = 0 + for _, b := range yyq3710 { if b { - yynn3705++ + yynn3710++ } } - r.EncodeMapStart(yynn3705) - yynn3705 = 0 + r.EncodeMapStart(yynn3710) + yynn3710 = 0 } - if yyr3705 || yy2arr3705 { + if yyr3710 || yy2arr3710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3705[0] { - yym3707 := z.EncBinary() - _ = yym3707 + if yyq3710[0] { + yym3712 := z.EncBinary() + _ = yym3712 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46683,23 +46724,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3705[0] { + if yyq3710[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3708 := z.EncBinary() - _ = yym3708 + yym3713 := z.EncBinary() + _ = yym3713 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3705 || yy2arr3705 { + if yyr3710 || yy2arr3710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3705[1] { - yym3710 := z.EncBinary() - _ = yym3710 + if yyq3710[1] { + yym3715 := z.EncBinary() + _ = yym3715 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46708,57 +46749,57 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3705[1] { + if yyq3710[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3711 := z.EncBinary() - _ = yym3711 + yym3716 := z.EncBinary() + _ = yym3716 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3705 || yy2arr3705 { + if yyr3710 || yy2arr3710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3705[2] { - yy3713 := &x.ObjectMeta - yy3713.CodecEncodeSelf(e) + if yyq3710[2] { + yy3718 := &x.ObjectMeta + yy3718.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3705[2] { + if yyq3710[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3714 := &x.ObjectMeta - yy3714.CodecEncodeSelf(e) + yy3719 := &x.ObjectMeta + yy3719.CodecEncodeSelf(e) } } - if yyr3705 || yy2arr3705 { + if yyr3710 || yy2arr3710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3705[3] { - yy3716 := &x.InvolvedObject - yy3716.CodecEncodeSelf(e) + if yyq3710[3] { + yy3721 := &x.InvolvedObject + yy3721.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3705[3] { + if yyq3710[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3717 := &x.InvolvedObject - yy3717.CodecEncodeSelf(e) + yy3722 := &x.InvolvedObject + yy3722.CodecEncodeSelf(e) } } - if yyr3705 || yy2arr3705 { + if yyr3710 || yy2arr3710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3705[4] { - yym3719 := z.EncBinary() - _ = yym3719 + if yyq3710[4] { + yym3724 := z.EncBinary() + _ = yym3724 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -46767,23 +46808,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3705[4] { + if yyq3710[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3720 := z.EncBinary() - _ = yym3720 + yym3725 := z.EncBinary() + _ = yym3725 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3705 || yy2arr3705 { + if yyr3710 || yy2arr3710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3705[5] { - yym3722 := z.EncBinary() - _ = yym3722 + if yyq3710[5] { + yym3727 := z.EncBinary() + _ = yym3727 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -46792,114 +46833,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3705[5] { + if yyq3710[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3723 := z.EncBinary() - _ = yym3723 + yym3728 := z.EncBinary() + _ = yym3728 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3705 || yy2arr3705 { + if yyr3710 || yy2arr3710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3705[6] { - yy3725 := &x.Source - yy3725.CodecEncodeSelf(e) + if yyq3710[6] { + yy3730 := &x.Source + yy3730.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3705[6] { + if yyq3710[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3726 := &x.Source - yy3726.CodecEncodeSelf(e) + yy3731 := &x.Source + yy3731.CodecEncodeSelf(e) } } - if yyr3705 || yy2arr3705 { + if yyr3710 || yy2arr3710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3705[7] { - yy3728 := &x.FirstTimestamp - yym3729 := z.EncBinary() - _ = yym3729 + if yyq3710[7] { + yy3733 := &x.FirstTimestamp + yym3734 := z.EncBinary() + _ = yym3734 if false { - } else if z.HasExtensions() && z.EncExt(yy3728) { - } else if yym3729 { - z.EncBinaryMarshal(yy3728) - } else if !yym3729 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3728) + } else if z.HasExtensions() && z.EncExt(yy3733) { + } else if yym3734 { + z.EncBinaryMarshal(yy3733) + } else if !yym3734 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3733) } else { - z.EncFallback(yy3728) + z.EncFallback(yy3733) } } else { r.EncodeNil() } } else { - if yyq3705[7] { + if yyq3710[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3730 := &x.FirstTimestamp - yym3731 := z.EncBinary() - _ = yym3731 + yy3735 := &x.FirstTimestamp + yym3736 := z.EncBinary() + _ = yym3736 if false { - } else if z.HasExtensions() && z.EncExt(yy3730) { - } else if yym3731 { - z.EncBinaryMarshal(yy3730) - } else if !yym3731 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3730) + } else if z.HasExtensions() && z.EncExt(yy3735) { + } else if yym3736 { + z.EncBinaryMarshal(yy3735) + } else if !yym3736 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3735) } else { - z.EncFallback(yy3730) + z.EncFallback(yy3735) } } } - if yyr3705 || yy2arr3705 { + if yyr3710 || yy2arr3710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3705[8] { - yy3733 := &x.LastTimestamp - yym3734 := z.EncBinary() - _ = yym3734 + if yyq3710[8] { + yy3738 := &x.LastTimestamp + yym3739 := z.EncBinary() + _ = yym3739 if false { - } else if z.HasExtensions() && z.EncExt(yy3733) { - } else if yym3734 { - z.EncBinaryMarshal(yy3733) - } else if !yym3734 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3733) + } else if z.HasExtensions() && z.EncExt(yy3738) { + } else if yym3739 { + z.EncBinaryMarshal(yy3738) + } else if !yym3739 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3738) } else { - z.EncFallback(yy3733) + z.EncFallback(yy3738) } } else { r.EncodeNil() } } else { - if yyq3705[8] { + if yyq3710[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3735 := &x.LastTimestamp - yym3736 := z.EncBinary() - _ = yym3736 + yy3740 := &x.LastTimestamp + yym3741 := z.EncBinary() + _ = yym3741 if false { - } else if z.HasExtensions() && z.EncExt(yy3735) { - } else if yym3736 { - z.EncBinaryMarshal(yy3735) - } else if !yym3736 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3735) + } else if z.HasExtensions() && z.EncExt(yy3740) { + } else if yym3741 { + z.EncBinaryMarshal(yy3740) + } else if !yym3741 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3740) } else { - z.EncFallback(yy3735) + z.EncFallback(yy3740) } } } - if yyr3705 || yy2arr3705 { + if yyr3710 || yy2arr3710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3705[9] { - yym3738 := z.EncBinary() - _ = yym3738 + if yyq3710[9] { + yym3743 := z.EncBinary() + _ = yym3743 if false { } else { r.EncodeInt(int64(x.Count)) @@ -46908,23 +46949,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3705[9] { + if yyq3710[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3739 := z.EncBinary() - _ = yym3739 + yym3744 := z.EncBinary() + _ = yym3744 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3705 || yy2arr3705 { + if yyr3710 || yy2arr3710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3705[10] { - yym3741 := z.EncBinary() - _ = yym3741 + if yyq3710[10] { + yym3746 := z.EncBinary() + _ = yym3746 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -46933,19 +46974,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3705[10] { + if yyq3710[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3742 := z.EncBinary() - _ = yym3742 + yym3747 := z.EncBinary() + _ = yym3747 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3705 || yy2arr3705 { + if yyr3710 || yy2arr3710 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46958,25 +46999,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3743 := z.DecBinary() - _ = yym3743 + yym3748 := z.DecBinary() + _ = yym3748 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3744 := r.ContainerType() - if yyct3744 == codecSelferValueTypeMap1234 { - yyl3744 := r.ReadMapStart() - if yyl3744 == 0 { + yyct3749 := r.ContainerType() + if yyct3749 == codecSelferValueTypeMap1234 { + yyl3749 := r.ReadMapStart() + if yyl3749 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3744, d) + x.codecDecodeSelfFromMap(yyl3749, d) } - } else if yyct3744 == codecSelferValueTypeArray1234 { - yyl3744 := r.ReadArrayStart() - if yyl3744 == 0 { + } else if yyct3749 == codecSelferValueTypeArray1234 { + yyl3749 := r.ReadArrayStart() + if yyl3749 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3744, d) + x.codecDecodeSelfFromArray(yyl3749, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46988,12 +47029,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3745Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3745Slc - var yyhl3745 bool = l >= 0 - for yyj3745 := 0; ; yyj3745++ { - if yyhl3745 { - if yyj3745 >= l { + var yys3750Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3750Slc + var yyhl3750 bool = l >= 0 + for yyj3750 := 0; ; yyj3750++ { + if yyhl3750 { + if yyj3750 >= l { break } } else { @@ -47002,10 +47043,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3745Slc = r.DecodeBytes(yys3745Slc, true, true) - yys3745 := string(yys3745Slc) + yys3750Slc = r.DecodeBytes(yys3750Slc, true, true) + yys3750 := string(yys3750Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3745 { + switch yys3750 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47022,15 +47063,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3748 := &x.ObjectMeta - yyv3748.CodecDecodeSelf(d) + yyv3753 := &x.ObjectMeta + yyv3753.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3749 := &x.InvolvedObject - yyv3749.CodecDecodeSelf(d) + yyv3754 := &x.InvolvedObject + yyv3754.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -47048,41 +47089,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3752 := &x.Source - yyv3752.CodecDecodeSelf(d) + yyv3757 := &x.Source + yyv3757.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3753 := &x.FirstTimestamp - yym3754 := z.DecBinary() - _ = yym3754 + yyv3758 := &x.FirstTimestamp + yym3759 := z.DecBinary() + _ = yym3759 if false { - } else if z.HasExtensions() && z.DecExt(yyv3753) { - } else if yym3754 { - z.DecBinaryUnmarshal(yyv3753) - } else if !yym3754 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3753) + } else if z.HasExtensions() && z.DecExt(yyv3758) { + } else if yym3759 { + z.DecBinaryUnmarshal(yyv3758) + } else if !yym3759 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3758) } else { - z.DecFallback(yyv3753, false) + z.DecFallback(yyv3758, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3755 := &x.LastTimestamp - yym3756 := z.DecBinary() - _ = yym3756 + yyv3760 := &x.LastTimestamp + yym3761 := z.DecBinary() + _ = yym3761 if false { - } else if z.HasExtensions() && z.DecExt(yyv3755) { - } else if yym3756 { - z.DecBinaryUnmarshal(yyv3755) - } else if !yym3756 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3755) + } else if z.HasExtensions() && z.DecExt(yyv3760) { + } else if yym3761 { + z.DecBinaryUnmarshal(yyv3760) + } else if !yym3761 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3760) } else { - z.DecFallback(yyv3755, false) + z.DecFallback(yyv3760, false) } } case "count": @@ -47098,9 +47139,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3745) - } // end switch yys3745 - } // end for yyj3745 + z.DecStructFieldNotFound(-1, yys3750) + } // end switch yys3750 + } // end for yyj3750 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47108,16 +47149,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3759 int - var yyb3759 bool - var yyhl3759 bool = l >= 0 - yyj3759++ - if yyhl3759 { - yyb3759 = yyj3759 > l + var yyj3764 int + var yyb3764 bool + var yyhl3764 bool = l >= 0 + yyj3764++ + if yyhl3764 { + yyb3764 = yyj3764 > l } else { - yyb3759 = r.CheckBreak() + yyb3764 = r.CheckBreak() } - if yyb3759 { + if yyb3764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47127,13 +47168,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3759++ - if yyhl3759 { - yyb3759 = yyj3759 > l + yyj3764++ + if yyhl3764 { + yyb3764 = yyj3764 > l } else { - yyb3759 = r.CheckBreak() + yyb3764 = r.CheckBreak() } - if yyb3759 { + if yyb3764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47143,13 +47184,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3759++ - if yyhl3759 { - yyb3759 = yyj3759 > l + yyj3764++ + if yyhl3764 { + yyb3764 = yyj3764 > l } else { - yyb3759 = r.CheckBreak() + yyb3764 = r.CheckBreak() } - if yyb3759 { + if yyb3764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47157,16 +47198,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3762 := &x.ObjectMeta - yyv3762.CodecDecodeSelf(d) + yyv3767 := &x.ObjectMeta + yyv3767.CodecDecodeSelf(d) } - yyj3759++ - if yyhl3759 { - yyb3759 = yyj3759 > l + yyj3764++ + if yyhl3764 { + yyb3764 = yyj3764 > l } else { - yyb3759 = r.CheckBreak() + yyb3764 = r.CheckBreak() } - if yyb3759 { + if yyb3764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47174,16 +47215,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3763 := &x.InvolvedObject - yyv3763.CodecDecodeSelf(d) + yyv3768 := &x.InvolvedObject + yyv3768.CodecDecodeSelf(d) } - yyj3759++ - if yyhl3759 { - yyb3759 = yyj3759 > l + yyj3764++ + if yyhl3764 { + yyb3764 = yyj3764 > l } else { - yyb3759 = r.CheckBreak() + yyb3764 = r.CheckBreak() } - if yyb3759 { + if yyb3764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47193,13 +47234,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3759++ - if yyhl3759 { - yyb3759 = yyj3759 > l + yyj3764++ + if yyhl3764 { + yyb3764 = yyj3764 > l } else { - yyb3759 = r.CheckBreak() + yyb3764 = r.CheckBreak() } - if yyb3759 { + if yyb3764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47209,13 +47250,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3759++ - if yyhl3759 { - yyb3759 = yyj3759 > l + yyj3764++ + if yyhl3764 { + yyb3764 = yyj3764 > l } else { - yyb3759 = r.CheckBreak() + yyb3764 = r.CheckBreak() } - if yyb3759 { + if yyb3764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47223,16 +47264,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3766 := &x.Source - yyv3766.CodecDecodeSelf(d) + yyv3771 := &x.Source + yyv3771.CodecDecodeSelf(d) } - yyj3759++ - if yyhl3759 { - yyb3759 = yyj3759 > l + yyj3764++ + if yyhl3764 { + yyb3764 = yyj3764 > l } else { - yyb3759 = r.CheckBreak() + yyb3764 = r.CheckBreak() } - if yyb3759 { + if yyb3764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47240,26 +47281,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3767 := &x.FirstTimestamp - yym3768 := z.DecBinary() - _ = yym3768 + yyv3772 := &x.FirstTimestamp + yym3773 := z.DecBinary() + _ = yym3773 if false { - } else if z.HasExtensions() && z.DecExt(yyv3767) { - } else if yym3768 { - z.DecBinaryUnmarshal(yyv3767) - } else if !yym3768 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3767) + } else if z.HasExtensions() && z.DecExt(yyv3772) { + } else if yym3773 { + z.DecBinaryUnmarshal(yyv3772) + } else if !yym3773 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3772) } else { - z.DecFallback(yyv3767, false) + z.DecFallback(yyv3772, false) } } - yyj3759++ - if yyhl3759 { - yyb3759 = yyj3759 > l + yyj3764++ + if yyhl3764 { + yyb3764 = yyj3764 > l } else { - yyb3759 = r.CheckBreak() + yyb3764 = r.CheckBreak() } - if yyb3759 { + if yyb3764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47267,26 +47308,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3769 := &x.LastTimestamp - yym3770 := z.DecBinary() - _ = yym3770 + yyv3774 := &x.LastTimestamp + yym3775 := z.DecBinary() + _ = yym3775 if false { - } else if z.HasExtensions() && z.DecExt(yyv3769) { - } else if yym3770 { - z.DecBinaryUnmarshal(yyv3769) - } else if !yym3770 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3769) + } else if z.HasExtensions() && z.DecExt(yyv3774) { + } else if yym3775 { + z.DecBinaryUnmarshal(yyv3774) + } else if !yym3775 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3774) } else { - z.DecFallback(yyv3769, false) + z.DecFallback(yyv3774, false) } } - yyj3759++ - if yyhl3759 { - yyb3759 = yyj3759 > l + yyj3764++ + if yyhl3764 { + yyb3764 = yyj3764 > l } else { - yyb3759 = r.CheckBreak() + yyb3764 = r.CheckBreak() } - if yyb3759 { + if yyb3764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47296,13 +47337,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3759++ - if yyhl3759 { - yyb3759 = yyj3759 > l + yyj3764++ + if yyhl3764 { + yyb3764 = yyj3764 > l } else { - yyb3759 = r.CheckBreak() + yyb3764 = r.CheckBreak() } - if yyb3759 { + if yyb3764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47313,17 +47354,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3759++ - if yyhl3759 { - yyb3759 = yyj3759 > l + yyj3764++ + if yyhl3764 { + yyb3764 = yyj3764 > l } else { - yyb3759 = r.CheckBreak() + yyb3764 = r.CheckBreak() } - if yyb3759 { + if yyb3764 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3759-1, "") + z.DecStructFieldNotFound(yyj3764-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47335,37 +47376,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3773 := z.EncBinary() - _ = yym3773 + yym3778 := z.EncBinary() + _ = yym3778 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3774 := !z.EncBinary() - yy2arr3774 := z.EncBasicHandle().StructToArray - var yyq3774 [4]bool - _, _, _ = yysep3774, yyq3774, yy2arr3774 - const yyr3774 bool = false - yyq3774[0] = x.Kind != "" - yyq3774[1] = x.APIVersion != "" - yyq3774[2] = true - var yynn3774 int - if yyr3774 || yy2arr3774 { + yysep3779 := !z.EncBinary() + yy2arr3779 := z.EncBasicHandle().StructToArray + var yyq3779 [4]bool + _, _, _ = yysep3779, yyq3779, yy2arr3779 + const yyr3779 bool = false + yyq3779[0] = x.Kind != "" + yyq3779[1] = x.APIVersion != "" + yyq3779[2] = true + var yynn3779 int + if yyr3779 || yy2arr3779 { r.EncodeArrayStart(4) } else { - yynn3774 = 1 - for _, b := range yyq3774 { + yynn3779 = 1 + for _, b := range yyq3779 { if b { - yynn3774++ + yynn3779++ } } - r.EncodeMapStart(yynn3774) - yynn3774 = 0 + r.EncodeMapStart(yynn3779) + yynn3779 = 0 } - if yyr3774 || yy2arr3774 { + if yyr3779 || yy2arr3779 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3774[0] { - yym3776 := z.EncBinary() - _ = yym3776 + if yyq3779[0] { + yym3781 := z.EncBinary() + _ = yym3781 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47374,23 +47415,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3774[0] { + if yyq3779[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3777 := z.EncBinary() - _ = yym3777 + yym3782 := z.EncBinary() + _ = yym3782 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3774 || yy2arr3774 { + if yyr3779 || yy2arr3779 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3774[1] { - yym3779 := z.EncBinary() - _ = yym3779 + if yyq3779[1] { + yym3784 := z.EncBinary() + _ = yym3784 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47399,54 +47440,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3774[1] { + if yyq3779[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3780 := z.EncBinary() - _ = yym3780 + yym3785 := z.EncBinary() + _ = yym3785 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3774 || yy2arr3774 { + if yyr3779 || yy2arr3779 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3774[2] { - yy3782 := &x.ListMeta - yym3783 := z.EncBinary() - _ = yym3783 + if yyq3779[2] { + yy3787 := &x.ListMeta + yym3788 := z.EncBinary() + _ = yym3788 if false { - } else if z.HasExtensions() && z.EncExt(yy3782) { + } else if z.HasExtensions() && z.EncExt(yy3787) { } else { - z.EncFallback(yy3782) + z.EncFallback(yy3787) } } else { r.EncodeNil() } } else { - if yyq3774[2] { + if yyq3779[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3784 := &x.ListMeta - yym3785 := z.EncBinary() - _ = yym3785 + yy3789 := &x.ListMeta + yym3790 := z.EncBinary() + _ = yym3790 if false { - } else if z.HasExtensions() && z.EncExt(yy3784) { + } else if z.HasExtensions() && z.EncExt(yy3789) { } else { - z.EncFallback(yy3784) + z.EncFallback(yy3789) } } } - if yyr3774 || yy2arr3774 { + if yyr3779 || yy2arr3779 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3787 := z.EncBinary() - _ = yym3787 + yym3792 := z.EncBinary() + _ = yym3792 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -47459,15 +47500,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3788 := z.EncBinary() - _ = yym3788 + yym3793 := z.EncBinary() + _ = yym3793 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3774 || yy2arr3774 { + if yyr3779 || yy2arr3779 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47480,25 +47521,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3789 := z.DecBinary() - _ = yym3789 + yym3794 := z.DecBinary() + _ = yym3794 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3790 := r.ContainerType() - if yyct3790 == codecSelferValueTypeMap1234 { - yyl3790 := r.ReadMapStart() - if yyl3790 == 0 { + yyct3795 := r.ContainerType() + if yyct3795 == codecSelferValueTypeMap1234 { + yyl3795 := r.ReadMapStart() + if yyl3795 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3790, d) + x.codecDecodeSelfFromMap(yyl3795, d) } - } else if yyct3790 == codecSelferValueTypeArray1234 { - yyl3790 := r.ReadArrayStart() - if yyl3790 == 0 { + } else if yyct3795 == codecSelferValueTypeArray1234 { + yyl3795 := r.ReadArrayStart() + if yyl3795 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3790, d) + x.codecDecodeSelfFromArray(yyl3795, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47510,12 +47551,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3791Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3791Slc - var yyhl3791 bool = l >= 0 - for yyj3791 := 0; ; yyj3791++ { - if yyhl3791 { - if yyj3791 >= l { + var yys3796Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3796Slc + var yyhl3796 bool = l >= 0 + for yyj3796 := 0; ; yyj3796++ { + if yyhl3796 { + if yyj3796 >= l { break } } else { @@ -47524,10 +47565,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3791Slc = r.DecodeBytes(yys3791Slc, true, true) - yys3791 := string(yys3791Slc) + yys3796Slc = r.DecodeBytes(yys3796Slc, true, true) + yys3796 := string(yys3796Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3791 { + switch yys3796 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47544,31 +47585,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3794 := &x.ListMeta - yym3795 := z.DecBinary() - _ = yym3795 + yyv3799 := &x.ListMeta + yym3800 := z.DecBinary() + _ = yym3800 if false { - } else if z.HasExtensions() && z.DecExt(yyv3794) { + } else if z.HasExtensions() && z.DecExt(yyv3799) { } else { - z.DecFallback(yyv3794, false) + z.DecFallback(yyv3799, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3796 := &x.Items - yym3797 := z.DecBinary() - _ = yym3797 + yyv3801 := &x.Items + yym3802 := z.DecBinary() + _ = yym3802 if false { } else { - h.decSliceEvent((*[]Event)(yyv3796), d) + h.decSliceEvent((*[]Event)(yyv3801), d) } } default: - z.DecStructFieldNotFound(-1, yys3791) - } // end switch yys3791 - } // end for yyj3791 + z.DecStructFieldNotFound(-1, yys3796) + } // end switch yys3796 + } // end for yyj3796 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47576,16 +47617,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3798 int - var yyb3798 bool - var yyhl3798 bool = l >= 0 - yyj3798++ - if yyhl3798 { - yyb3798 = yyj3798 > l + var yyj3803 int + var yyb3803 bool + var yyhl3803 bool = l >= 0 + yyj3803++ + if yyhl3803 { + yyb3803 = yyj3803 > l } else { - yyb3798 = r.CheckBreak() + yyb3803 = r.CheckBreak() } - if yyb3798 { + if yyb3803 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47595,13 +47636,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3798++ - if yyhl3798 { - yyb3798 = yyj3798 > l + yyj3803++ + if yyhl3803 { + yyb3803 = yyj3803 > l } else { - yyb3798 = r.CheckBreak() + yyb3803 = r.CheckBreak() } - if yyb3798 { + if yyb3803 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47611,13 +47652,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3798++ - if yyhl3798 { - yyb3798 = yyj3798 > l + yyj3803++ + if yyhl3803 { + yyb3803 = yyj3803 > l } else { - yyb3798 = r.CheckBreak() + yyb3803 = r.CheckBreak() } - if yyb3798 { + if yyb3803 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47625,22 +47666,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3801 := &x.ListMeta - yym3802 := z.DecBinary() - _ = yym3802 + yyv3806 := &x.ListMeta + yym3807 := z.DecBinary() + _ = yym3807 if false { - } else if z.HasExtensions() && z.DecExt(yyv3801) { + } else if z.HasExtensions() && z.DecExt(yyv3806) { } else { - z.DecFallback(yyv3801, false) + z.DecFallback(yyv3806, false) } } - yyj3798++ - if yyhl3798 { - yyb3798 = yyj3798 > l + yyj3803++ + if yyhl3803 { + yyb3803 = yyj3803 > l } else { - yyb3798 = r.CheckBreak() + yyb3803 = r.CheckBreak() } - if yyb3798 { + if yyb3803 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47648,26 +47689,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3803 := &x.Items - yym3804 := z.DecBinary() - _ = yym3804 + yyv3808 := &x.Items + yym3809 := z.DecBinary() + _ = yym3809 if false { } else { - h.decSliceEvent((*[]Event)(yyv3803), d) + h.decSliceEvent((*[]Event)(yyv3808), d) } } for { - yyj3798++ - if yyhl3798 { - yyb3798 = yyj3798 > l + yyj3803++ + if yyhl3803 { + yyb3803 = yyj3803 > l } else { - yyb3798 = r.CheckBreak() + yyb3803 = r.CheckBreak() } - if yyb3798 { + if yyb3803 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3798-1, "") + z.DecStructFieldNotFound(yyj3803-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47679,37 +47720,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3805 := z.EncBinary() - _ = yym3805 + yym3810 := z.EncBinary() + _ = yym3810 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3806 := !z.EncBinary() - yy2arr3806 := z.EncBasicHandle().StructToArray - var yyq3806 [4]bool - _, _, _ = yysep3806, yyq3806, yy2arr3806 - const yyr3806 bool = false - yyq3806[0] = x.Kind != "" - yyq3806[1] = x.APIVersion != "" - yyq3806[2] = true - var yynn3806 int - if yyr3806 || yy2arr3806 { + yysep3811 := !z.EncBinary() + yy2arr3811 := z.EncBasicHandle().StructToArray + var yyq3811 [4]bool + _, _, _ = yysep3811, yyq3811, yy2arr3811 + const yyr3811 bool = false + yyq3811[0] = x.Kind != "" + yyq3811[1] = x.APIVersion != "" + yyq3811[2] = true + var yynn3811 int + if yyr3811 || yy2arr3811 { r.EncodeArrayStart(4) } else { - yynn3806 = 1 - for _, b := range yyq3806 { + yynn3811 = 1 + for _, b := range yyq3811 { if b { - yynn3806++ + yynn3811++ } } - r.EncodeMapStart(yynn3806) - yynn3806 = 0 + r.EncodeMapStart(yynn3811) + yynn3811 = 0 } - if yyr3806 || yy2arr3806 { + if yyr3811 || yy2arr3811 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3806[0] { - yym3808 := z.EncBinary() - _ = yym3808 + if yyq3811[0] { + yym3813 := z.EncBinary() + _ = yym3813 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47718,23 +47759,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3806[0] { + if yyq3811[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3809 := z.EncBinary() - _ = yym3809 + yym3814 := z.EncBinary() + _ = yym3814 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3806 || yy2arr3806 { + if yyr3811 || yy2arr3811 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3806[1] { - yym3811 := z.EncBinary() - _ = yym3811 + if yyq3811[1] { + yym3816 := z.EncBinary() + _ = yym3816 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47743,54 +47784,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3806[1] { + if yyq3811[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3812 := z.EncBinary() - _ = yym3812 + yym3817 := z.EncBinary() + _ = yym3817 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3806 || yy2arr3806 { + if yyr3811 || yy2arr3811 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3806[2] { - yy3814 := &x.ListMeta - yym3815 := z.EncBinary() - _ = yym3815 + if yyq3811[2] { + yy3819 := &x.ListMeta + yym3820 := z.EncBinary() + _ = yym3820 if false { - } else if z.HasExtensions() && z.EncExt(yy3814) { + } else if z.HasExtensions() && z.EncExt(yy3819) { } else { - z.EncFallback(yy3814) + z.EncFallback(yy3819) } } else { r.EncodeNil() } } else { - if yyq3806[2] { + if yyq3811[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3816 := &x.ListMeta - yym3817 := z.EncBinary() - _ = yym3817 + yy3821 := &x.ListMeta + yym3822 := z.EncBinary() + _ = yym3822 if false { - } else if z.HasExtensions() && z.EncExt(yy3816) { + } else if z.HasExtensions() && z.EncExt(yy3821) { } else { - z.EncFallback(yy3816) + z.EncFallback(yy3821) } } } - if yyr3806 || yy2arr3806 { + if yyr3811 || yy2arr3811 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3819 := z.EncBinary() - _ = yym3819 + yym3824 := z.EncBinary() + _ = yym3824 if false { } else { h.encSliceruntime_Object(([]pkg7_runtime.Object)(x.Items), e) @@ -47803,15 +47844,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3820 := z.EncBinary() - _ = yym3820 + yym3825 := z.EncBinary() + _ = yym3825 if false { } else { h.encSliceruntime_Object(([]pkg7_runtime.Object)(x.Items), e) } } } - if yyr3806 || yy2arr3806 { + if yyr3811 || yy2arr3811 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47824,25 +47865,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3821 := z.DecBinary() - _ = yym3821 + yym3826 := z.DecBinary() + _ = yym3826 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3822 := r.ContainerType() - if yyct3822 == codecSelferValueTypeMap1234 { - yyl3822 := r.ReadMapStart() - if yyl3822 == 0 { + yyct3827 := r.ContainerType() + if yyct3827 == codecSelferValueTypeMap1234 { + yyl3827 := r.ReadMapStart() + if yyl3827 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3822, d) + x.codecDecodeSelfFromMap(yyl3827, d) } - } else if yyct3822 == codecSelferValueTypeArray1234 { - yyl3822 := r.ReadArrayStart() - if yyl3822 == 0 { + } else if yyct3827 == codecSelferValueTypeArray1234 { + yyl3827 := r.ReadArrayStart() + if yyl3827 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3822, d) + x.codecDecodeSelfFromArray(yyl3827, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47854,12 +47895,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3823Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3823Slc - var yyhl3823 bool = l >= 0 - for yyj3823 := 0; ; yyj3823++ { - if yyhl3823 { - if yyj3823 >= l { + var yys3828Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3828Slc + var yyhl3828 bool = l >= 0 + for yyj3828 := 0; ; yyj3828++ { + if yyhl3828 { + if yyj3828 >= l { break } } else { @@ -47868,10 +47909,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3823Slc = r.DecodeBytes(yys3823Slc, true, true) - yys3823 := string(yys3823Slc) + yys3828Slc = r.DecodeBytes(yys3828Slc, true, true) + yys3828 := string(yys3828Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3823 { + switch yys3828 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47888,31 +47929,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3826 := &x.ListMeta - yym3827 := z.DecBinary() - _ = yym3827 + yyv3831 := &x.ListMeta + yym3832 := z.DecBinary() + _ = yym3832 if false { - } else if z.HasExtensions() && z.DecExt(yyv3826) { + } else if z.HasExtensions() && z.DecExt(yyv3831) { } else { - z.DecFallback(yyv3826, false) + z.DecFallback(yyv3831, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3828 := &x.Items - yym3829 := z.DecBinary() - _ = yym3829 + yyv3833 := &x.Items + yym3834 := z.DecBinary() + _ = yym3834 if false { } else { - h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3828), d) + h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3833), d) } } default: - z.DecStructFieldNotFound(-1, yys3823) - } // end switch yys3823 - } // end for yyj3823 + z.DecStructFieldNotFound(-1, yys3828) + } // end switch yys3828 + } // end for yyj3828 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47920,16 +47961,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3830 int - var yyb3830 bool - var yyhl3830 bool = l >= 0 - yyj3830++ - if yyhl3830 { - yyb3830 = yyj3830 > l + var yyj3835 int + var yyb3835 bool + var yyhl3835 bool = l >= 0 + yyj3835++ + if yyhl3835 { + yyb3835 = yyj3835 > l } else { - yyb3830 = r.CheckBreak() + yyb3835 = r.CheckBreak() } - if yyb3830 { + if yyb3835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47939,13 +47980,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3830++ - if yyhl3830 { - yyb3830 = yyj3830 > l + yyj3835++ + if yyhl3835 { + yyb3835 = yyj3835 > l } else { - yyb3830 = r.CheckBreak() + yyb3835 = r.CheckBreak() } - if yyb3830 { + if yyb3835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47955,13 +47996,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3830++ - if yyhl3830 { - yyb3830 = yyj3830 > l + yyj3835++ + if yyhl3835 { + yyb3835 = yyj3835 > l } else { - yyb3830 = r.CheckBreak() + yyb3835 = r.CheckBreak() } - if yyb3830 { + if yyb3835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47969,22 +48010,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3833 := &x.ListMeta - yym3834 := z.DecBinary() - _ = yym3834 + yyv3838 := &x.ListMeta + yym3839 := z.DecBinary() + _ = yym3839 if false { - } else if z.HasExtensions() && z.DecExt(yyv3833) { + } else if z.HasExtensions() && z.DecExt(yyv3838) { } else { - z.DecFallback(yyv3833, false) + z.DecFallback(yyv3838, false) } } - yyj3830++ - if yyhl3830 { - yyb3830 = yyj3830 > l + yyj3835++ + if yyhl3835 { + yyb3835 = yyj3835 > l } else { - yyb3830 = r.CheckBreak() + yyb3835 = r.CheckBreak() } - if yyb3830 { + if yyb3835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47992,26 +48033,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3835 := &x.Items - yym3836 := z.DecBinary() - _ = yym3836 + yyv3840 := &x.Items + yym3841 := z.DecBinary() + _ = yym3841 if false { } else { - h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3835), d) + h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv3840), d) } } for { - yyj3830++ - if yyhl3830 { - yyb3830 = yyj3830 > l + yyj3835++ + if yyhl3835 { + yyb3835 = yyj3835 > l } else { - yyb3830 = r.CheckBreak() + yyb3835 = r.CheckBreak() } - if yyb3830 { + if yyb3835 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3830-1, "") + z.DecStructFieldNotFound(yyj3835-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48020,8 +48061,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3837 := z.EncBinary() - _ = yym3837 + yym3842 := z.EncBinary() + _ = yym3842 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -48033,8 +48074,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3838 := z.DecBinary() - _ = yym3838 + yym3843 := z.DecBinary() + _ = yym3843 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -48049,53 +48090,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3839 := z.EncBinary() - _ = yym3839 + yym3844 := z.EncBinary() + _ = yym3844 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3840 := !z.EncBinary() - yy2arr3840 := z.EncBasicHandle().StructToArray - var yyq3840 [6]bool - _, _, _ = yysep3840, yyq3840, yy2arr3840 - const yyr3840 bool = false - yyq3840[0] = x.Type != "" - yyq3840[1] = len(x.Max) != 0 - yyq3840[2] = len(x.Min) != 0 - yyq3840[3] = len(x.Default) != 0 - yyq3840[4] = len(x.DefaultRequest) != 0 - yyq3840[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3840 int - if yyr3840 || yy2arr3840 { + yysep3845 := !z.EncBinary() + yy2arr3845 := z.EncBasicHandle().StructToArray + var yyq3845 [6]bool + _, _, _ = yysep3845, yyq3845, yy2arr3845 + const yyr3845 bool = false + yyq3845[0] = x.Type != "" + yyq3845[1] = len(x.Max) != 0 + yyq3845[2] = len(x.Min) != 0 + yyq3845[3] = len(x.Default) != 0 + yyq3845[4] = len(x.DefaultRequest) != 0 + yyq3845[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3845 int + if yyr3845 || yy2arr3845 { r.EncodeArrayStart(6) } else { - yynn3840 = 0 - for _, b := range yyq3840 { + yynn3845 = 0 + for _, b := range yyq3845 { if b { - yynn3840++ + yynn3845++ } } - r.EncodeMapStart(yynn3840) - yynn3840 = 0 + r.EncodeMapStart(yynn3845) + yynn3845 = 0 } - if yyr3840 || yy2arr3840 { + if yyr3845 || yy2arr3845 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[0] { + if yyq3845[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3840[0] { + if yyq3845[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3840 || yy2arr3840 { + if yyr3845 || yy2arr3845 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[1] { + if yyq3845[1] { if x.Max == nil { r.EncodeNil() } else { @@ -48105,7 +48146,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3840[1] { + if yyq3845[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48116,9 +48157,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3840 || yy2arr3840 { + if yyr3845 || yy2arr3845 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[2] { + if yyq3845[2] { if x.Min == nil { r.EncodeNil() } else { @@ -48128,7 +48169,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3840[2] { + if yyq3845[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48139,9 +48180,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3840 || yy2arr3840 { + if yyr3845 || yy2arr3845 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[3] { + if yyq3845[3] { if x.Default == nil { r.EncodeNil() } else { @@ -48151,7 +48192,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3840[3] { + if yyq3845[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48162,9 +48203,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3840 || yy2arr3840 { + if yyr3845 || yy2arr3845 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[4] { + if yyq3845[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -48174,7 +48215,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3840[4] { + if yyq3845[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48185,9 +48226,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3840 || yy2arr3840 { + if yyr3845 || yy2arr3845 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[5] { + if yyq3845[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -48197,7 +48238,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3840[5] { + if yyq3845[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -48208,7 +48249,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3840 || yy2arr3840 { + if yyr3845 || yy2arr3845 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48221,25 +48262,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3847 := z.DecBinary() - _ = yym3847 + yym3852 := z.DecBinary() + _ = yym3852 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3848 := r.ContainerType() - if yyct3848 == codecSelferValueTypeMap1234 { - yyl3848 := r.ReadMapStart() - if yyl3848 == 0 { + yyct3853 := r.ContainerType() + if yyct3853 == codecSelferValueTypeMap1234 { + yyl3853 := r.ReadMapStart() + if yyl3853 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3848, d) + x.codecDecodeSelfFromMap(yyl3853, d) } - } else if yyct3848 == codecSelferValueTypeArray1234 { - yyl3848 := r.ReadArrayStart() - if yyl3848 == 0 { + } else if yyct3853 == codecSelferValueTypeArray1234 { + yyl3853 := r.ReadArrayStart() + if yyl3853 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3848, d) + x.codecDecodeSelfFromArray(yyl3853, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48251,12 +48292,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3849Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3849Slc - var yyhl3849 bool = l >= 0 - for yyj3849 := 0; ; yyj3849++ { - if yyhl3849 { - if yyj3849 >= l { + var yys3854Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3854Slc + var yyhl3854 bool = l >= 0 + for yyj3854 := 0; ; yyj3854++ { + if yyhl3854 { + if yyj3854 >= l { break } } else { @@ -48265,10 +48306,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3849Slc = r.DecodeBytes(yys3849Slc, true, true) - yys3849 := string(yys3849Slc) + yys3854Slc = r.DecodeBytes(yys3854Slc, true, true) + yys3854 := string(yys3854Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3849 { + switch yys3854 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -48279,41 +48320,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3851 := &x.Max - yyv3851.CodecDecodeSelf(d) + yyv3856 := &x.Max + yyv3856.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3852 := &x.Min - yyv3852.CodecDecodeSelf(d) + yyv3857 := &x.Min + yyv3857.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3853 := &x.Default - yyv3853.CodecDecodeSelf(d) + yyv3858 := &x.Default + yyv3858.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3854 := &x.DefaultRequest - yyv3854.CodecDecodeSelf(d) + yyv3859 := &x.DefaultRequest + yyv3859.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3855 := &x.MaxLimitRequestRatio - yyv3855.CodecDecodeSelf(d) + yyv3860 := &x.MaxLimitRequestRatio + yyv3860.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3849) - } // end switch yys3849 - } // end for yyj3849 + z.DecStructFieldNotFound(-1, yys3854) + } // end switch yys3854 + } // end for yyj3854 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48321,16 +48362,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3856 int - var yyb3856 bool - var yyhl3856 bool = l >= 0 - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + var yyj3861 int + var yyb3861 bool + var yyhl3861 bool = l >= 0 + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48340,13 +48381,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48354,16 +48395,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3858 := &x.Max - yyv3858.CodecDecodeSelf(d) + yyv3863 := &x.Max + yyv3863.CodecDecodeSelf(d) } - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48371,16 +48412,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3859 := &x.Min - yyv3859.CodecDecodeSelf(d) + yyv3864 := &x.Min + yyv3864.CodecDecodeSelf(d) } - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48388,16 +48429,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3860 := &x.Default - yyv3860.CodecDecodeSelf(d) + yyv3865 := &x.Default + yyv3865.CodecDecodeSelf(d) } - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48405,16 +48446,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3861 := &x.DefaultRequest - yyv3861.CodecDecodeSelf(d) + yyv3866 := &x.DefaultRequest + yyv3866.CodecDecodeSelf(d) } - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48422,21 +48463,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3862 := &x.MaxLimitRequestRatio - yyv3862.CodecDecodeSelf(d) + yyv3867 := &x.MaxLimitRequestRatio + yyv3867.CodecDecodeSelf(d) } for { - yyj3856++ - if yyhl3856 { - yyb3856 = yyj3856 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3856 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3856 { + if yyb3861 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3856-1, "") + z.DecStructFieldNotFound(yyj3861-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48448,36 +48489,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3863 := z.EncBinary() - _ = yym3863 + yym3868 := z.EncBinary() + _ = yym3868 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3864 := !z.EncBinary() - yy2arr3864 := z.EncBasicHandle().StructToArray - var yyq3864 [1]bool - _, _, _ = yysep3864, yyq3864, yy2arr3864 - const yyr3864 bool = false - var yynn3864 int - if yyr3864 || yy2arr3864 { + yysep3869 := !z.EncBinary() + yy2arr3869 := z.EncBasicHandle().StructToArray + var yyq3869 [1]bool + _, _, _ = yysep3869, yyq3869, yy2arr3869 + const yyr3869 bool = false + var yynn3869 int + if yyr3869 || yy2arr3869 { r.EncodeArrayStart(1) } else { - yynn3864 = 1 - for _, b := range yyq3864 { + yynn3869 = 1 + for _, b := range yyq3869 { if b { - yynn3864++ + yynn3869++ } } - r.EncodeMapStart(yynn3864) - yynn3864 = 0 + r.EncodeMapStart(yynn3869) + yynn3869 = 0 } - if yyr3864 || yy2arr3864 { + if yyr3869 || yy2arr3869 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3866 := z.EncBinary() - _ = yym3866 + yym3871 := z.EncBinary() + _ = yym3871 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -48490,15 +48531,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3867 := z.EncBinary() - _ = yym3867 + yym3872 := z.EncBinary() + _ = yym3872 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3864 || yy2arr3864 { + if yyr3869 || yy2arr3869 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48511,25 +48552,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3868 := z.DecBinary() - _ = yym3868 + yym3873 := z.DecBinary() + _ = yym3873 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3869 := r.ContainerType() - if yyct3869 == codecSelferValueTypeMap1234 { - yyl3869 := r.ReadMapStart() - if yyl3869 == 0 { + yyct3874 := r.ContainerType() + if yyct3874 == codecSelferValueTypeMap1234 { + yyl3874 := r.ReadMapStart() + if yyl3874 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3869, d) + x.codecDecodeSelfFromMap(yyl3874, d) } - } else if yyct3869 == codecSelferValueTypeArray1234 { - yyl3869 := r.ReadArrayStart() - if yyl3869 == 0 { + } else if yyct3874 == codecSelferValueTypeArray1234 { + yyl3874 := r.ReadArrayStart() + if yyl3874 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3869, d) + x.codecDecodeSelfFromArray(yyl3874, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48541,12 +48582,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3870Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3870Slc - var yyhl3870 bool = l >= 0 - for yyj3870 := 0; ; yyj3870++ { - if yyhl3870 { - if yyj3870 >= l { + var yys3875Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3875Slc + var yyhl3875 bool = l >= 0 + for yyj3875 := 0; ; yyj3875++ { + if yyhl3875 { + if yyj3875 >= l { break } } else { @@ -48555,26 +48596,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3870Slc = r.DecodeBytes(yys3870Slc, true, true) - yys3870 := string(yys3870Slc) + yys3875Slc = r.DecodeBytes(yys3875Slc, true, true) + yys3875 := string(yys3875Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3870 { + switch yys3875 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3871 := &x.Limits - yym3872 := z.DecBinary() - _ = yym3872 + yyv3876 := &x.Limits + yym3877 := z.DecBinary() + _ = yym3877 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3871), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3876), d) } } default: - z.DecStructFieldNotFound(-1, yys3870) - } // end switch yys3870 - } // end for yyj3870 + z.DecStructFieldNotFound(-1, yys3875) + } // end switch yys3875 + } // end for yyj3875 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48582,16 +48623,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3873 int - var yyb3873 bool - var yyhl3873 bool = l >= 0 - yyj3873++ - if yyhl3873 { - yyb3873 = yyj3873 > l + var yyj3878 int + var yyb3878 bool + var yyhl3878 bool = l >= 0 + yyj3878++ + if yyhl3878 { + yyb3878 = yyj3878 > l } else { - yyb3873 = r.CheckBreak() + yyb3878 = r.CheckBreak() } - if yyb3873 { + if yyb3878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48599,26 +48640,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3874 := &x.Limits - yym3875 := z.DecBinary() - _ = yym3875 + yyv3879 := &x.Limits + yym3880 := z.DecBinary() + _ = yym3880 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3874), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3879), d) } } for { - yyj3873++ - if yyhl3873 { - yyb3873 = yyj3873 > l + yyj3878++ + if yyhl3878 { + yyb3878 = yyj3878 > l } else { - yyb3873 = r.CheckBreak() + yyb3878 = r.CheckBreak() } - if yyb3873 { + if yyb3878 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3873-1, "") + z.DecStructFieldNotFound(yyj3878-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48630,38 +48671,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3876 := z.EncBinary() - _ = yym3876 + yym3881 := z.EncBinary() + _ = yym3881 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3877 := !z.EncBinary() - yy2arr3877 := z.EncBasicHandle().StructToArray - var yyq3877 [4]bool - _, _, _ = yysep3877, yyq3877, yy2arr3877 - const yyr3877 bool = false - yyq3877[0] = x.Kind != "" - yyq3877[1] = x.APIVersion != "" - yyq3877[2] = true - yyq3877[3] = true - var yynn3877 int - if yyr3877 || yy2arr3877 { + yysep3882 := !z.EncBinary() + yy2arr3882 := z.EncBasicHandle().StructToArray + var yyq3882 [4]bool + _, _, _ = yysep3882, yyq3882, yy2arr3882 + const yyr3882 bool = false + yyq3882[0] = x.Kind != "" + yyq3882[1] = x.APIVersion != "" + yyq3882[2] = true + yyq3882[3] = true + var yynn3882 int + if yyr3882 || yy2arr3882 { r.EncodeArrayStart(4) } else { - yynn3877 = 0 - for _, b := range yyq3877 { + yynn3882 = 0 + for _, b := range yyq3882 { if b { - yynn3877++ + yynn3882++ } } - r.EncodeMapStart(yynn3877) - yynn3877 = 0 + r.EncodeMapStart(yynn3882) + yynn3882 = 0 } - if yyr3877 || yy2arr3877 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3877[0] { - yym3879 := z.EncBinary() - _ = yym3879 + if yyq3882[0] { + yym3884 := z.EncBinary() + _ = yym3884 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48670,23 +48711,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3877[0] { + if yyq3882[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3880 := z.EncBinary() - _ = yym3880 + yym3885 := z.EncBinary() + _ = yym3885 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3877 || yy2arr3877 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3877[1] { - yym3882 := z.EncBinary() - _ = yym3882 + if yyq3882[1] { + yym3887 := z.EncBinary() + _ = yym3887 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48695,53 +48736,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3877[1] { + if yyq3882[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3883 := z.EncBinary() - _ = yym3883 + yym3888 := z.EncBinary() + _ = yym3888 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3877 || yy2arr3877 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3877[2] { - yy3885 := &x.ObjectMeta - yy3885.CodecEncodeSelf(e) + if yyq3882[2] { + yy3890 := &x.ObjectMeta + yy3890.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3877[2] { + if yyq3882[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3886 := &x.ObjectMeta - yy3886.CodecEncodeSelf(e) + yy3891 := &x.ObjectMeta + yy3891.CodecEncodeSelf(e) } } - if yyr3877 || yy2arr3877 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3877[3] { - yy3888 := &x.Spec - yy3888.CodecEncodeSelf(e) + if yyq3882[3] { + yy3893 := &x.Spec + yy3893.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3877[3] { + if yyq3882[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3889 := &x.Spec - yy3889.CodecEncodeSelf(e) + yy3894 := &x.Spec + yy3894.CodecEncodeSelf(e) } } - if yyr3877 || yy2arr3877 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48754,25 +48795,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3890 := z.DecBinary() - _ = yym3890 + yym3895 := z.DecBinary() + _ = yym3895 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3891 := r.ContainerType() - if yyct3891 == codecSelferValueTypeMap1234 { - yyl3891 := r.ReadMapStart() - if yyl3891 == 0 { + yyct3896 := r.ContainerType() + if yyct3896 == codecSelferValueTypeMap1234 { + yyl3896 := r.ReadMapStart() + if yyl3896 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3891, d) + x.codecDecodeSelfFromMap(yyl3896, d) } - } else if yyct3891 == codecSelferValueTypeArray1234 { - yyl3891 := r.ReadArrayStart() - if yyl3891 == 0 { + } else if yyct3896 == codecSelferValueTypeArray1234 { + yyl3896 := r.ReadArrayStart() + if yyl3896 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3891, d) + x.codecDecodeSelfFromArray(yyl3896, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48784,12 +48825,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3892Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3892Slc - var yyhl3892 bool = l >= 0 - for yyj3892 := 0; ; yyj3892++ { - if yyhl3892 { - if yyj3892 >= l { + var yys3897Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3897Slc + var yyhl3897 bool = l >= 0 + for yyj3897 := 0; ; yyj3897++ { + if yyhl3897 { + if yyj3897 >= l { break } } else { @@ -48798,10 +48839,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3892Slc = r.DecodeBytes(yys3892Slc, true, true) - yys3892 := string(yys3892Slc) + yys3897Slc = r.DecodeBytes(yys3897Slc, true, true) + yys3897 := string(yys3897Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3892 { + switch yys3897 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48818,20 +48859,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3895 := &x.ObjectMeta - yyv3895.CodecDecodeSelf(d) + yyv3900 := &x.ObjectMeta + yyv3900.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3896 := &x.Spec - yyv3896.CodecDecodeSelf(d) + yyv3901 := &x.Spec + yyv3901.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3892) - } // end switch yys3892 - } // end for yyj3892 + z.DecStructFieldNotFound(-1, yys3897) + } // end switch yys3897 + } // end for yyj3897 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48839,16 +48880,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3897 int - var yyb3897 bool - var yyhl3897 bool = l >= 0 - yyj3897++ - if yyhl3897 { - yyb3897 = yyj3897 > l + var yyj3902 int + var yyb3902 bool + var yyhl3902 bool = l >= 0 + yyj3902++ + if yyhl3902 { + yyb3902 = yyj3902 > l } else { - yyb3897 = r.CheckBreak() + yyb3902 = r.CheckBreak() } - if yyb3897 { + if yyb3902 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48858,13 +48899,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3897++ - if yyhl3897 { - yyb3897 = yyj3897 > l + yyj3902++ + if yyhl3902 { + yyb3902 = yyj3902 > l } else { - yyb3897 = r.CheckBreak() + yyb3902 = r.CheckBreak() } - if yyb3897 { + if yyb3902 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48874,13 +48915,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3897++ - if yyhl3897 { - yyb3897 = yyj3897 > l + yyj3902++ + if yyhl3902 { + yyb3902 = yyj3902 > l } else { - yyb3897 = r.CheckBreak() + yyb3902 = r.CheckBreak() } - if yyb3897 { + if yyb3902 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48888,16 +48929,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3900 := &x.ObjectMeta - yyv3900.CodecDecodeSelf(d) + yyv3905 := &x.ObjectMeta + yyv3905.CodecDecodeSelf(d) } - yyj3897++ - if yyhl3897 { - yyb3897 = yyj3897 > l + yyj3902++ + if yyhl3902 { + yyb3902 = yyj3902 > l } else { - yyb3897 = r.CheckBreak() + yyb3902 = r.CheckBreak() } - if yyb3897 { + if yyb3902 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48905,21 +48946,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3901 := &x.Spec - yyv3901.CodecDecodeSelf(d) + yyv3906 := &x.Spec + yyv3906.CodecDecodeSelf(d) } for { - yyj3897++ - if yyhl3897 { - yyb3897 = yyj3897 > l + yyj3902++ + if yyhl3902 { + yyb3902 = yyj3902 > l } else { - yyb3897 = r.CheckBreak() + yyb3902 = r.CheckBreak() } - if yyb3897 { + if yyb3902 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3897-1, "") + z.DecStructFieldNotFound(yyj3902-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48931,37 +48972,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3902 := z.EncBinary() - _ = yym3902 + yym3907 := z.EncBinary() + _ = yym3907 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3903 := !z.EncBinary() - yy2arr3903 := z.EncBasicHandle().StructToArray - var yyq3903 [4]bool - _, _, _ = yysep3903, yyq3903, yy2arr3903 - const yyr3903 bool = false - yyq3903[0] = x.Kind != "" - yyq3903[1] = x.APIVersion != "" - yyq3903[2] = true - var yynn3903 int - if yyr3903 || yy2arr3903 { + yysep3908 := !z.EncBinary() + yy2arr3908 := z.EncBasicHandle().StructToArray + var yyq3908 [4]bool + _, _, _ = yysep3908, yyq3908, yy2arr3908 + const yyr3908 bool = false + yyq3908[0] = x.Kind != "" + yyq3908[1] = x.APIVersion != "" + yyq3908[2] = true + var yynn3908 int + if yyr3908 || yy2arr3908 { r.EncodeArrayStart(4) } else { - yynn3903 = 1 - for _, b := range yyq3903 { + yynn3908 = 1 + for _, b := range yyq3908 { if b { - yynn3903++ + yynn3908++ } } - r.EncodeMapStart(yynn3903) - yynn3903 = 0 + r.EncodeMapStart(yynn3908) + yynn3908 = 0 } - if yyr3903 || yy2arr3903 { + if yyr3908 || yy2arr3908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3903[0] { - yym3905 := z.EncBinary() - _ = yym3905 + if yyq3908[0] { + yym3910 := z.EncBinary() + _ = yym3910 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48970,23 +49011,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3903[0] { + if yyq3908[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3906 := z.EncBinary() - _ = yym3906 + yym3911 := z.EncBinary() + _ = yym3911 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3903 || yy2arr3903 { + if yyr3908 || yy2arr3908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3903[1] { - yym3908 := z.EncBinary() - _ = yym3908 + if yyq3908[1] { + yym3913 := z.EncBinary() + _ = yym3913 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48995,54 +49036,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3903[1] { + if yyq3908[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3909 := z.EncBinary() - _ = yym3909 + yym3914 := z.EncBinary() + _ = yym3914 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3903 || yy2arr3903 { + if yyr3908 || yy2arr3908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3903[2] { - yy3911 := &x.ListMeta - yym3912 := z.EncBinary() - _ = yym3912 + if yyq3908[2] { + yy3916 := &x.ListMeta + yym3917 := z.EncBinary() + _ = yym3917 if false { - } else if z.HasExtensions() && z.EncExt(yy3911) { + } else if z.HasExtensions() && z.EncExt(yy3916) { } else { - z.EncFallback(yy3911) + z.EncFallback(yy3916) } } else { r.EncodeNil() } } else { - if yyq3903[2] { + if yyq3908[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3913 := &x.ListMeta - yym3914 := z.EncBinary() - _ = yym3914 + yy3918 := &x.ListMeta + yym3919 := z.EncBinary() + _ = yym3919 if false { - } else if z.HasExtensions() && z.EncExt(yy3913) { + } else if z.HasExtensions() && z.EncExt(yy3918) { } else { - z.EncFallback(yy3913) + z.EncFallback(yy3918) } } } - if yyr3903 || yy2arr3903 { + if yyr3908 || yy2arr3908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3916 := z.EncBinary() - _ = yym3916 + yym3921 := z.EncBinary() + _ = yym3921 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -49055,15 +49096,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3917 := z.EncBinary() - _ = yym3917 + yym3922 := z.EncBinary() + _ = yym3922 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr3903 || yy2arr3903 { + if yyr3908 || yy2arr3908 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49076,25 +49117,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3918 := z.DecBinary() - _ = yym3918 + yym3923 := z.DecBinary() + _ = yym3923 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3919 := r.ContainerType() - if yyct3919 == codecSelferValueTypeMap1234 { - yyl3919 := r.ReadMapStart() - if yyl3919 == 0 { + yyct3924 := r.ContainerType() + if yyct3924 == codecSelferValueTypeMap1234 { + yyl3924 := r.ReadMapStart() + if yyl3924 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3919, d) + x.codecDecodeSelfFromMap(yyl3924, d) } - } else if yyct3919 == codecSelferValueTypeArray1234 { - yyl3919 := r.ReadArrayStart() - if yyl3919 == 0 { + } else if yyct3924 == codecSelferValueTypeArray1234 { + yyl3924 := r.ReadArrayStart() + if yyl3924 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3919, d) + x.codecDecodeSelfFromArray(yyl3924, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49106,12 +49147,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3920Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3920Slc - var yyhl3920 bool = l >= 0 - for yyj3920 := 0; ; yyj3920++ { - if yyhl3920 { - if yyj3920 >= l { + var yys3925Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3925Slc + var yyhl3925 bool = l >= 0 + for yyj3925 := 0; ; yyj3925++ { + if yyhl3925 { + if yyj3925 >= l { break } } else { @@ -49120,10 +49161,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3920Slc = r.DecodeBytes(yys3920Slc, true, true) - yys3920 := string(yys3920Slc) + yys3925Slc = r.DecodeBytes(yys3925Slc, true, true) + yys3925 := string(yys3925Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3920 { + switch yys3925 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49140,31 +49181,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3923 := &x.ListMeta - yym3924 := z.DecBinary() - _ = yym3924 + yyv3928 := &x.ListMeta + yym3929 := z.DecBinary() + _ = yym3929 if false { - } else if z.HasExtensions() && z.DecExt(yyv3923) { + } else if z.HasExtensions() && z.DecExt(yyv3928) { } else { - z.DecFallback(yyv3923, false) + z.DecFallback(yyv3928, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3925 := &x.Items - yym3926 := z.DecBinary() - _ = yym3926 + yyv3930 := &x.Items + yym3931 := z.DecBinary() + _ = yym3931 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3925), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3930), d) } } default: - z.DecStructFieldNotFound(-1, yys3920) - } // end switch yys3920 - } // end for yyj3920 + z.DecStructFieldNotFound(-1, yys3925) + } // end switch yys3925 + } // end for yyj3925 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49172,16 +49213,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3927 int - var yyb3927 bool - var yyhl3927 bool = l >= 0 - yyj3927++ - if yyhl3927 { - yyb3927 = yyj3927 > l + var yyj3932 int + var yyb3932 bool + var yyhl3932 bool = l >= 0 + yyj3932++ + if yyhl3932 { + yyb3932 = yyj3932 > l } else { - yyb3927 = r.CheckBreak() + yyb3932 = r.CheckBreak() } - if yyb3927 { + if yyb3932 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49191,13 +49232,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3927++ - if yyhl3927 { - yyb3927 = yyj3927 > l + yyj3932++ + if yyhl3932 { + yyb3932 = yyj3932 > l } else { - yyb3927 = r.CheckBreak() + yyb3932 = r.CheckBreak() } - if yyb3927 { + if yyb3932 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49207,13 +49248,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3927++ - if yyhl3927 { - yyb3927 = yyj3927 > l + yyj3932++ + if yyhl3932 { + yyb3932 = yyj3932 > l } else { - yyb3927 = r.CheckBreak() + yyb3932 = r.CheckBreak() } - if yyb3927 { + if yyb3932 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49221,22 +49262,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3930 := &x.ListMeta - yym3931 := z.DecBinary() - _ = yym3931 + yyv3935 := &x.ListMeta + yym3936 := z.DecBinary() + _ = yym3936 if false { - } else if z.HasExtensions() && z.DecExt(yyv3930) { + } else if z.HasExtensions() && z.DecExt(yyv3935) { } else { - z.DecFallback(yyv3930, false) + z.DecFallback(yyv3935, false) } } - yyj3927++ - if yyhl3927 { - yyb3927 = yyj3927 > l + yyj3932++ + if yyhl3932 { + yyb3932 = yyj3932 > l } else { - yyb3927 = r.CheckBreak() + yyb3932 = r.CheckBreak() } - if yyb3927 { + if yyb3932 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49244,26 +49285,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3932 := &x.Items - yym3933 := z.DecBinary() - _ = yym3933 + yyv3937 := &x.Items + yym3938 := z.DecBinary() + _ = yym3938 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3932), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3937), d) } } for { - yyj3927++ - if yyhl3927 { - yyb3927 = yyj3927 > l + yyj3932++ + if yyhl3932 { + yyb3932 = yyj3932 > l } else { - yyb3927 = r.CheckBreak() + yyb3932 = r.CheckBreak() } - if yyb3927 { + if yyb3932 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3927-1, "") + z.DecStructFieldNotFound(yyj3932-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49272,8 +49313,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3934 := z.EncBinary() - _ = yym3934 + yym3939 := z.EncBinary() + _ = yym3939 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -49285,8 +49326,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3935 := z.DecBinary() - _ = yym3935 + yym3940 := z.DecBinary() + _ = yym3940 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -49301,34 +49342,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3936 := z.EncBinary() - _ = yym3936 + yym3941 := z.EncBinary() + _ = yym3941 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3937 := !z.EncBinary() - yy2arr3937 := z.EncBasicHandle().StructToArray - var yyq3937 [2]bool - _, _, _ = yysep3937, yyq3937, yy2arr3937 - const yyr3937 bool = false - yyq3937[0] = len(x.Hard) != 0 - yyq3937[1] = len(x.Scopes) != 0 - var yynn3937 int - if yyr3937 || yy2arr3937 { + yysep3942 := !z.EncBinary() + yy2arr3942 := z.EncBasicHandle().StructToArray + var yyq3942 [2]bool + _, _, _ = yysep3942, yyq3942, yy2arr3942 + const yyr3942 bool = false + yyq3942[0] = len(x.Hard) != 0 + yyq3942[1] = len(x.Scopes) != 0 + var yynn3942 int + if yyr3942 || yy2arr3942 { r.EncodeArrayStart(2) } else { - yynn3937 = 0 - for _, b := range yyq3937 { + yynn3942 = 0 + for _, b := range yyq3942 { if b { - yynn3937++ + yynn3942++ } } - r.EncodeMapStart(yynn3937) - yynn3937 = 0 + r.EncodeMapStart(yynn3942) + yynn3942 = 0 } - if yyr3937 || yy2arr3937 { + if yyr3942 || yy2arr3942 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3937[0] { + if yyq3942[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -49338,7 +49379,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3937[0] { + if yyq3942[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49349,14 +49390,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3937 || yy2arr3937 { + if yyr3942 || yy2arr3942 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3937[1] { + if yyq3942[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym3940 := z.EncBinary() - _ = yym3940 + yym3945 := z.EncBinary() + _ = yym3945 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -49366,15 +49407,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3937[1] { + if yyq3942[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym3941 := z.EncBinary() - _ = yym3941 + yym3946 := z.EncBinary() + _ = yym3946 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -49382,7 +49423,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3937 || yy2arr3937 { + if yyr3942 || yy2arr3942 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49395,25 +49436,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3942 := z.DecBinary() - _ = yym3942 + yym3947 := z.DecBinary() + _ = yym3947 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3943 := r.ContainerType() - if yyct3943 == codecSelferValueTypeMap1234 { - yyl3943 := r.ReadMapStart() - if yyl3943 == 0 { + yyct3948 := r.ContainerType() + if yyct3948 == codecSelferValueTypeMap1234 { + yyl3948 := r.ReadMapStart() + if yyl3948 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3943, d) + x.codecDecodeSelfFromMap(yyl3948, d) } - } else if yyct3943 == codecSelferValueTypeArray1234 { - yyl3943 := r.ReadArrayStart() - if yyl3943 == 0 { + } else if yyct3948 == codecSelferValueTypeArray1234 { + yyl3948 := r.ReadArrayStart() + if yyl3948 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3943, d) + x.codecDecodeSelfFromArray(yyl3948, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49425,12 +49466,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3944Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3944Slc - var yyhl3944 bool = l >= 0 - for yyj3944 := 0; ; yyj3944++ { - if yyhl3944 { - if yyj3944 >= l { + var yys3949Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3949Slc + var yyhl3949 bool = l >= 0 + for yyj3949 := 0; ; yyj3949++ { + if yyhl3949 { + if yyj3949 >= l { break } } else { @@ -49439,33 +49480,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3944Slc = r.DecodeBytes(yys3944Slc, true, true) - yys3944 := string(yys3944Slc) + yys3949Slc = r.DecodeBytes(yys3949Slc, true, true) + yys3949 := string(yys3949Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3944 { + switch yys3949 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3945 := &x.Hard - yyv3945.CodecDecodeSelf(d) + yyv3950 := &x.Hard + yyv3950.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv3946 := &x.Scopes - yym3947 := z.DecBinary() - _ = yym3947 + yyv3951 := &x.Scopes + yym3952 := z.DecBinary() + _ = yym3952 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3946), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3951), d) } } default: - z.DecStructFieldNotFound(-1, yys3944) - } // end switch yys3944 - } // end for yyj3944 + z.DecStructFieldNotFound(-1, yys3949) + } // end switch yys3949 + } // end for yyj3949 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49473,16 +49514,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3948 int - var yyb3948 bool - var yyhl3948 bool = l >= 0 - yyj3948++ - if yyhl3948 { - yyb3948 = yyj3948 > l + var yyj3953 int + var yyb3953 bool + var yyhl3953 bool = l >= 0 + yyj3953++ + if yyhl3953 { + yyb3953 = yyj3953 > l } else { - yyb3948 = r.CheckBreak() + yyb3953 = r.CheckBreak() } - if yyb3948 { + if yyb3953 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49490,16 +49531,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3949 := &x.Hard - yyv3949.CodecDecodeSelf(d) + yyv3954 := &x.Hard + yyv3954.CodecDecodeSelf(d) } - yyj3948++ - if yyhl3948 { - yyb3948 = yyj3948 > l + yyj3953++ + if yyhl3953 { + yyb3953 = yyj3953 > l } else { - yyb3948 = r.CheckBreak() + yyb3953 = r.CheckBreak() } - if yyb3948 { + if yyb3953 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49507,26 +49548,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv3950 := &x.Scopes - yym3951 := z.DecBinary() - _ = yym3951 + yyv3955 := &x.Scopes + yym3956 := z.DecBinary() + _ = yym3956 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3950), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3955), d) } } for { - yyj3948++ - if yyhl3948 { - yyb3948 = yyj3948 > l + yyj3953++ + if yyhl3953 { + yyb3953 = yyj3953 > l } else { - yyb3948 = r.CheckBreak() + yyb3953 = r.CheckBreak() } - if yyb3948 { + if yyb3953 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3948-1, "") + z.DecStructFieldNotFound(yyj3953-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49538,34 +49579,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3952 := z.EncBinary() - _ = yym3952 + yym3957 := z.EncBinary() + _ = yym3957 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3953 := !z.EncBinary() - yy2arr3953 := z.EncBasicHandle().StructToArray - var yyq3953 [2]bool - _, _, _ = yysep3953, yyq3953, yy2arr3953 - const yyr3953 bool = false - yyq3953[0] = len(x.Hard) != 0 - yyq3953[1] = len(x.Used) != 0 - var yynn3953 int - if yyr3953 || yy2arr3953 { + yysep3958 := !z.EncBinary() + yy2arr3958 := z.EncBasicHandle().StructToArray + var yyq3958 [2]bool + _, _, _ = yysep3958, yyq3958, yy2arr3958 + const yyr3958 bool = false + yyq3958[0] = len(x.Hard) != 0 + yyq3958[1] = len(x.Used) != 0 + var yynn3958 int + if yyr3958 || yy2arr3958 { r.EncodeArrayStart(2) } else { - yynn3953 = 0 - for _, b := range yyq3953 { + yynn3958 = 0 + for _, b := range yyq3958 { if b { - yynn3953++ + yynn3958++ } } - r.EncodeMapStart(yynn3953) - yynn3953 = 0 + r.EncodeMapStart(yynn3958) + yynn3958 = 0 } - if yyr3953 || yy2arr3953 { + if yyr3958 || yy2arr3958 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3953[0] { + if yyq3958[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -49575,7 +49616,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3953[0] { + if yyq3958[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49586,9 +49627,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3953 || yy2arr3953 { + if yyr3958 || yy2arr3958 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3953[1] { + if yyq3958[1] { if x.Used == nil { r.EncodeNil() } else { @@ -49598,7 +49639,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3953[1] { + if yyq3958[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49609,7 +49650,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3953 || yy2arr3953 { + if yyr3958 || yy2arr3958 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49622,25 +49663,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3956 := z.DecBinary() - _ = yym3956 + yym3961 := z.DecBinary() + _ = yym3961 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3957 := r.ContainerType() - if yyct3957 == codecSelferValueTypeMap1234 { - yyl3957 := r.ReadMapStart() - if yyl3957 == 0 { + yyct3962 := r.ContainerType() + if yyct3962 == codecSelferValueTypeMap1234 { + yyl3962 := r.ReadMapStart() + if yyl3962 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3957, d) + x.codecDecodeSelfFromMap(yyl3962, d) } - } else if yyct3957 == codecSelferValueTypeArray1234 { - yyl3957 := r.ReadArrayStart() - if yyl3957 == 0 { + } else if yyct3962 == codecSelferValueTypeArray1234 { + yyl3962 := r.ReadArrayStart() + if yyl3962 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3957, d) + x.codecDecodeSelfFromArray(yyl3962, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49652,12 +49693,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3958Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3958Slc - var yyhl3958 bool = l >= 0 - for yyj3958 := 0; ; yyj3958++ { - if yyhl3958 { - if yyj3958 >= l { + var yys3963Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3963Slc + var yyhl3963 bool = l >= 0 + for yyj3963 := 0; ; yyj3963++ { + if yyhl3963 { + if yyj3963 >= l { break } } else { @@ -49666,28 +49707,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3958Slc = r.DecodeBytes(yys3958Slc, true, true) - yys3958 := string(yys3958Slc) + yys3963Slc = r.DecodeBytes(yys3963Slc, true, true) + yys3963 := string(yys3963Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3958 { + switch yys3963 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3959 := &x.Hard - yyv3959.CodecDecodeSelf(d) + yyv3964 := &x.Hard + yyv3964.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3960 := &x.Used - yyv3960.CodecDecodeSelf(d) + yyv3965 := &x.Used + yyv3965.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3958) - } // end switch yys3958 - } // end for yyj3958 + z.DecStructFieldNotFound(-1, yys3963) + } // end switch yys3963 + } // end for yyj3963 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49695,16 +49736,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3961 int - var yyb3961 bool - var yyhl3961 bool = l >= 0 - yyj3961++ - if yyhl3961 { - yyb3961 = yyj3961 > l + var yyj3966 int + var yyb3966 bool + var yyhl3966 bool = l >= 0 + yyj3966++ + if yyhl3966 { + yyb3966 = yyj3966 > l } else { - yyb3961 = r.CheckBreak() + yyb3966 = r.CheckBreak() } - if yyb3961 { + if yyb3966 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49712,16 +49753,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3962 := &x.Hard - yyv3962.CodecDecodeSelf(d) + yyv3967 := &x.Hard + yyv3967.CodecDecodeSelf(d) } - yyj3961++ - if yyhl3961 { - yyb3961 = yyj3961 > l + yyj3966++ + if yyhl3966 { + yyb3966 = yyj3966 > l } else { - yyb3961 = r.CheckBreak() + yyb3966 = r.CheckBreak() } - if yyb3961 { + if yyb3966 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49729,21 +49770,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3963 := &x.Used - yyv3963.CodecDecodeSelf(d) + yyv3968 := &x.Used + yyv3968.CodecDecodeSelf(d) } for { - yyj3961++ - if yyhl3961 { - yyb3961 = yyj3961 > l + yyj3966++ + if yyhl3966 { + yyb3966 = yyj3966 > l } else { - yyb3961 = r.CheckBreak() + yyb3966 = r.CheckBreak() } - if yyb3961 { + if yyb3966 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3961-1, "") + z.DecStructFieldNotFound(yyj3966-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49755,39 +49796,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3964 := z.EncBinary() - _ = yym3964 + yym3969 := z.EncBinary() + _ = yym3969 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3965 := !z.EncBinary() - yy2arr3965 := z.EncBasicHandle().StructToArray - var yyq3965 [5]bool - _, _, _ = yysep3965, yyq3965, yy2arr3965 - const yyr3965 bool = false - yyq3965[0] = x.Kind != "" - yyq3965[1] = x.APIVersion != "" - yyq3965[2] = true - yyq3965[3] = true - yyq3965[4] = true - var yynn3965 int - if yyr3965 || yy2arr3965 { + yysep3970 := !z.EncBinary() + yy2arr3970 := z.EncBasicHandle().StructToArray + var yyq3970 [5]bool + _, _, _ = yysep3970, yyq3970, yy2arr3970 + const yyr3970 bool = false + yyq3970[0] = x.Kind != "" + yyq3970[1] = x.APIVersion != "" + yyq3970[2] = true + yyq3970[3] = true + yyq3970[4] = true + var yynn3970 int + if yyr3970 || yy2arr3970 { r.EncodeArrayStart(5) } else { - yynn3965 = 0 - for _, b := range yyq3965 { + yynn3970 = 0 + for _, b := range yyq3970 { if b { - yynn3965++ + yynn3970++ } } - r.EncodeMapStart(yynn3965) - yynn3965 = 0 + r.EncodeMapStart(yynn3970) + yynn3970 = 0 } - if yyr3965 || yy2arr3965 { + if yyr3970 || yy2arr3970 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3965[0] { - yym3967 := z.EncBinary() - _ = yym3967 + if yyq3970[0] { + yym3972 := z.EncBinary() + _ = yym3972 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49796,23 +49837,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3965[0] { + if yyq3970[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3968 := z.EncBinary() - _ = yym3968 + yym3973 := z.EncBinary() + _ = yym3973 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3965 || yy2arr3965 { + if yyr3970 || yy2arr3970 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3965[1] { - yym3970 := z.EncBinary() - _ = yym3970 + if yyq3970[1] { + yym3975 := z.EncBinary() + _ = yym3975 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49821,70 +49862,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3965[1] { + if yyq3970[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3971 := z.EncBinary() - _ = yym3971 + yym3976 := z.EncBinary() + _ = yym3976 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3965 || yy2arr3965 { + if yyr3970 || yy2arr3970 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3965[2] { - yy3973 := &x.ObjectMeta - yy3973.CodecEncodeSelf(e) + if yyq3970[2] { + yy3978 := &x.ObjectMeta + yy3978.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3965[2] { + if yyq3970[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3974 := &x.ObjectMeta - yy3974.CodecEncodeSelf(e) + yy3979 := &x.ObjectMeta + yy3979.CodecEncodeSelf(e) } } - if yyr3965 || yy2arr3965 { + if yyr3970 || yy2arr3970 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3965[3] { - yy3976 := &x.Spec - yy3976.CodecEncodeSelf(e) + if yyq3970[3] { + yy3981 := &x.Spec + yy3981.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3965[3] { + if yyq3970[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3977 := &x.Spec - yy3977.CodecEncodeSelf(e) + yy3982 := &x.Spec + yy3982.CodecEncodeSelf(e) } } - if yyr3965 || yy2arr3965 { + if yyr3970 || yy2arr3970 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3965[4] { - yy3979 := &x.Status - yy3979.CodecEncodeSelf(e) + if yyq3970[4] { + yy3984 := &x.Status + yy3984.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3965[4] { + if yyq3970[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3980 := &x.Status - yy3980.CodecEncodeSelf(e) + yy3985 := &x.Status + yy3985.CodecEncodeSelf(e) } } - if yyr3965 || yy2arr3965 { + if yyr3970 || yy2arr3970 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49897,25 +49938,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3981 := z.DecBinary() - _ = yym3981 + yym3986 := z.DecBinary() + _ = yym3986 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3982 := r.ContainerType() - if yyct3982 == codecSelferValueTypeMap1234 { - yyl3982 := r.ReadMapStart() - if yyl3982 == 0 { + yyct3987 := r.ContainerType() + if yyct3987 == codecSelferValueTypeMap1234 { + yyl3987 := r.ReadMapStart() + if yyl3987 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3982, d) + x.codecDecodeSelfFromMap(yyl3987, d) } - } else if yyct3982 == codecSelferValueTypeArray1234 { - yyl3982 := r.ReadArrayStart() - if yyl3982 == 0 { + } else if yyct3987 == codecSelferValueTypeArray1234 { + yyl3987 := r.ReadArrayStart() + if yyl3987 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3982, d) + x.codecDecodeSelfFromArray(yyl3987, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49927,12 +49968,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3983Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3983Slc - var yyhl3983 bool = l >= 0 - for yyj3983 := 0; ; yyj3983++ { - if yyhl3983 { - if yyj3983 >= l { + var yys3988Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3988Slc + var yyhl3988 bool = l >= 0 + for yyj3988 := 0; ; yyj3988++ { + if yyhl3988 { + if yyj3988 >= l { break } } else { @@ -49941,10 +49982,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3983Slc = r.DecodeBytes(yys3983Slc, true, true) - yys3983 := string(yys3983Slc) + yys3988Slc = r.DecodeBytes(yys3988Slc, true, true) + yys3988 := string(yys3988Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3983 { + switch yys3988 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49961,27 +50002,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3986 := &x.ObjectMeta - yyv3986.CodecDecodeSelf(d) + yyv3991 := &x.ObjectMeta + yyv3991.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3987 := &x.Spec - yyv3987.CodecDecodeSelf(d) + yyv3992 := &x.Spec + yyv3992.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3988 := &x.Status - yyv3988.CodecDecodeSelf(d) + yyv3993 := &x.Status + yyv3993.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3983) - } // end switch yys3983 - } // end for yyj3983 + z.DecStructFieldNotFound(-1, yys3988) + } // end switch yys3988 + } // end for yyj3988 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49989,16 +50030,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3989 int - var yyb3989 bool - var yyhl3989 bool = l >= 0 - yyj3989++ - if yyhl3989 { - yyb3989 = yyj3989 > l + var yyj3994 int + var yyb3994 bool + var yyhl3994 bool = l >= 0 + yyj3994++ + if yyhl3994 { + yyb3994 = yyj3994 > l } else { - yyb3989 = r.CheckBreak() + yyb3994 = r.CheckBreak() } - if yyb3989 { + if yyb3994 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50008,13 +50049,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3989++ - if yyhl3989 { - yyb3989 = yyj3989 > l + yyj3994++ + if yyhl3994 { + yyb3994 = yyj3994 > l } else { - yyb3989 = r.CheckBreak() + yyb3994 = r.CheckBreak() } - if yyb3989 { + if yyb3994 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50024,13 +50065,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3989++ - if yyhl3989 { - yyb3989 = yyj3989 > l + yyj3994++ + if yyhl3994 { + yyb3994 = yyj3994 > l } else { - yyb3989 = r.CheckBreak() + yyb3994 = r.CheckBreak() } - if yyb3989 { + if yyb3994 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50038,16 +50079,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3992 := &x.ObjectMeta - yyv3992.CodecDecodeSelf(d) + yyv3997 := &x.ObjectMeta + yyv3997.CodecDecodeSelf(d) } - yyj3989++ - if yyhl3989 { - yyb3989 = yyj3989 > l + yyj3994++ + if yyhl3994 { + yyb3994 = yyj3994 > l } else { - yyb3989 = r.CheckBreak() + yyb3994 = r.CheckBreak() } - if yyb3989 { + if yyb3994 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50055,16 +50096,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3993 := &x.Spec - yyv3993.CodecDecodeSelf(d) + yyv3998 := &x.Spec + yyv3998.CodecDecodeSelf(d) } - yyj3989++ - if yyhl3989 { - yyb3989 = yyj3989 > l + yyj3994++ + if yyhl3994 { + yyb3994 = yyj3994 > l } else { - yyb3989 = r.CheckBreak() + yyb3994 = r.CheckBreak() } - if yyb3989 { + if yyb3994 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50072,21 +50113,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3994 := &x.Status - yyv3994.CodecDecodeSelf(d) + yyv3999 := &x.Status + yyv3999.CodecDecodeSelf(d) } for { - yyj3989++ - if yyhl3989 { - yyb3989 = yyj3989 > l + yyj3994++ + if yyhl3994 { + yyb3994 = yyj3994 > l } else { - yyb3989 = r.CheckBreak() + yyb3994 = r.CheckBreak() } - if yyb3989 { + if yyb3994 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3989-1, "") + z.DecStructFieldNotFound(yyj3994-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50098,37 +50139,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3995 := z.EncBinary() - _ = yym3995 + yym4000 := z.EncBinary() + _ = yym4000 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3996 := !z.EncBinary() - yy2arr3996 := z.EncBasicHandle().StructToArray - var yyq3996 [4]bool - _, _, _ = yysep3996, yyq3996, yy2arr3996 - const yyr3996 bool = false - yyq3996[0] = x.Kind != "" - yyq3996[1] = x.APIVersion != "" - yyq3996[2] = true - var yynn3996 int - if yyr3996 || yy2arr3996 { + yysep4001 := !z.EncBinary() + yy2arr4001 := z.EncBasicHandle().StructToArray + var yyq4001 [4]bool + _, _, _ = yysep4001, yyq4001, yy2arr4001 + const yyr4001 bool = false + yyq4001[0] = x.Kind != "" + yyq4001[1] = x.APIVersion != "" + yyq4001[2] = true + var yynn4001 int + if yyr4001 || yy2arr4001 { r.EncodeArrayStart(4) } else { - yynn3996 = 1 - for _, b := range yyq3996 { + yynn4001 = 1 + for _, b := range yyq4001 { if b { - yynn3996++ + yynn4001++ } } - r.EncodeMapStart(yynn3996) - yynn3996 = 0 + r.EncodeMapStart(yynn4001) + yynn4001 = 0 } - if yyr3996 || yy2arr3996 { + if yyr4001 || yy2arr4001 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3996[0] { - yym3998 := z.EncBinary() - _ = yym3998 + if yyq4001[0] { + yym4003 := z.EncBinary() + _ = yym4003 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50137,23 +50178,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3996[0] { + if yyq4001[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3999 := z.EncBinary() - _ = yym3999 + yym4004 := z.EncBinary() + _ = yym4004 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3996 || yy2arr3996 { + if yyr4001 || yy2arr4001 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3996[1] { - yym4001 := z.EncBinary() - _ = yym4001 + if yyq4001[1] { + yym4006 := z.EncBinary() + _ = yym4006 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50162,54 +50203,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3996[1] { + if yyq4001[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4002 := z.EncBinary() - _ = yym4002 + yym4007 := z.EncBinary() + _ = yym4007 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3996 || yy2arr3996 { + if yyr4001 || yy2arr4001 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3996[2] { - yy4004 := &x.ListMeta - yym4005 := z.EncBinary() - _ = yym4005 + if yyq4001[2] { + yy4009 := &x.ListMeta + yym4010 := z.EncBinary() + _ = yym4010 if false { - } else if z.HasExtensions() && z.EncExt(yy4004) { + } else if z.HasExtensions() && z.EncExt(yy4009) { } else { - z.EncFallback(yy4004) + z.EncFallback(yy4009) } } else { r.EncodeNil() } } else { - if yyq3996[2] { + if yyq4001[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4006 := &x.ListMeta - yym4007 := z.EncBinary() - _ = yym4007 + yy4011 := &x.ListMeta + yym4012 := z.EncBinary() + _ = yym4012 if false { - } else if z.HasExtensions() && z.EncExt(yy4006) { + } else if z.HasExtensions() && z.EncExt(yy4011) { } else { - z.EncFallback(yy4006) + z.EncFallback(yy4011) } } } - if yyr3996 || yy2arr3996 { + if yyr4001 || yy2arr4001 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4009 := z.EncBinary() - _ = yym4009 + yym4014 := z.EncBinary() + _ = yym4014 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -50222,15 +50263,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4010 := z.EncBinary() - _ = yym4010 + yym4015 := z.EncBinary() + _ = yym4015 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr3996 || yy2arr3996 { + if yyr4001 || yy2arr4001 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50243,25 +50284,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4011 := z.DecBinary() - _ = yym4011 + yym4016 := z.DecBinary() + _ = yym4016 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4012 := r.ContainerType() - if yyct4012 == codecSelferValueTypeMap1234 { - yyl4012 := r.ReadMapStart() - if yyl4012 == 0 { + yyct4017 := r.ContainerType() + if yyct4017 == codecSelferValueTypeMap1234 { + yyl4017 := r.ReadMapStart() + if yyl4017 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4012, d) + x.codecDecodeSelfFromMap(yyl4017, d) } - } else if yyct4012 == codecSelferValueTypeArray1234 { - yyl4012 := r.ReadArrayStart() - if yyl4012 == 0 { + } else if yyct4017 == codecSelferValueTypeArray1234 { + yyl4017 := r.ReadArrayStart() + if yyl4017 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4012, d) + x.codecDecodeSelfFromArray(yyl4017, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50273,12 +50314,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4013Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4013Slc - var yyhl4013 bool = l >= 0 - for yyj4013 := 0; ; yyj4013++ { - if yyhl4013 { - if yyj4013 >= l { + var yys4018Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4018Slc + var yyhl4018 bool = l >= 0 + for yyj4018 := 0; ; yyj4018++ { + if yyhl4018 { + if yyj4018 >= l { break } } else { @@ -50287,10 +50328,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4013Slc = r.DecodeBytes(yys4013Slc, true, true) - yys4013 := string(yys4013Slc) + yys4018Slc = r.DecodeBytes(yys4018Slc, true, true) + yys4018 := string(yys4018Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4013 { + switch yys4018 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50307,31 +50348,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4016 := &x.ListMeta - yym4017 := z.DecBinary() - _ = yym4017 + yyv4021 := &x.ListMeta + yym4022 := z.DecBinary() + _ = yym4022 if false { - } else if z.HasExtensions() && z.DecExt(yyv4016) { + } else if z.HasExtensions() && z.DecExt(yyv4021) { } else { - z.DecFallback(yyv4016, false) + z.DecFallback(yyv4021, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4018 := &x.Items - yym4019 := z.DecBinary() - _ = yym4019 + yyv4023 := &x.Items + yym4024 := z.DecBinary() + _ = yym4024 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4018), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4023), d) } } default: - z.DecStructFieldNotFound(-1, yys4013) - } // end switch yys4013 - } // end for yyj4013 + z.DecStructFieldNotFound(-1, yys4018) + } // end switch yys4018 + } // end for yyj4018 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50339,16 +50380,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4020 int - var yyb4020 bool - var yyhl4020 bool = l >= 0 - yyj4020++ - if yyhl4020 { - yyb4020 = yyj4020 > l + var yyj4025 int + var yyb4025 bool + var yyhl4025 bool = l >= 0 + yyj4025++ + if yyhl4025 { + yyb4025 = yyj4025 > l } else { - yyb4020 = r.CheckBreak() + yyb4025 = r.CheckBreak() } - if yyb4020 { + if yyb4025 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50358,13 +50399,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj4020++ - if yyhl4020 { - yyb4020 = yyj4020 > l + yyj4025++ + if yyhl4025 { + yyb4025 = yyj4025 > l } else { - yyb4020 = r.CheckBreak() + yyb4025 = r.CheckBreak() } - if yyb4020 { + if yyb4025 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50374,13 +50415,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj4020++ - if yyhl4020 { - yyb4020 = yyj4020 > l + yyj4025++ + if yyhl4025 { + yyb4025 = yyj4025 > l } else { - yyb4020 = r.CheckBreak() + yyb4025 = r.CheckBreak() } - if yyb4020 { + if yyb4025 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50388,22 +50429,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4023 := &x.ListMeta - yym4024 := z.DecBinary() - _ = yym4024 + yyv4028 := &x.ListMeta + yym4029 := z.DecBinary() + _ = yym4029 if false { - } else if z.HasExtensions() && z.DecExt(yyv4023) { + } else if z.HasExtensions() && z.DecExt(yyv4028) { } else { - z.DecFallback(yyv4023, false) + z.DecFallback(yyv4028, false) } } - yyj4020++ - if yyhl4020 { - yyb4020 = yyj4020 > l + yyj4025++ + if yyhl4025 { + yyb4025 = yyj4025 > l } else { - yyb4020 = r.CheckBreak() + yyb4025 = r.CheckBreak() } - if yyb4020 { + if yyb4025 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50411,26 +50452,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4025 := &x.Items - yym4026 := z.DecBinary() - _ = yym4026 + yyv4030 := &x.Items + yym4031 := z.DecBinary() + _ = yym4031 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4025), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4030), d) } } for { - yyj4020++ - if yyhl4020 { - yyb4020 = yyj4020 > l + yyj4025++ + if yyhl4025 { + yyb4025 = yyj4025 > l } else { - yyb4020 = r.CheckBreak() + yyb4025 = r.CheckBreak() } - if yyb4020 { + if yyb4025 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4020-1, "") + z.DecStructFieldNotFound(yyj4025-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50442,39 +50483,39 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4027 := z.EncBinary() - _ = yym4027 + yym4032 := z.EncBinary() + _ = yym4032 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4028 := !z.EncBinary() - yy2arr4028 := z.EncBasicHandle().StructToArray - var yyq4028 [5]bool - _, _, _ = yysep4028, yyq4028, yy2arr4028 - const yyr4028 bool = false - yyq4028[0] = x.Kind != "" - yyq4028[1] = x.APIVersion != "" - yyq4028[2] = true - yyq4028[3] = len(x.Data) != 0 - yyq4028[4] = x.Type != "" - var yynn4028 int - if yyr4028 || yy2arr4028 { + yysep4033 := !z.EncBinary() + yy2arr4033 := z.EncBasicHandle().StructToArray + var yyq4033 [5]bool + _, _, _ = yysep4033, yyq4033, yy2arr4033 + const yyr4033 bool = false + yyq4033[0] = x.Kind != "" + yyq4033[1] = x.APIVersion != "" + yyq4033[2] = true + yyq4033[3] = len(x.Data) != 0 + yyq4033[4] = x.Type != "" + var yynn4033 int + if yyr4033 || yy2arr4033 { r.EncodeArrayStart(5) } else { - yynn4028 = 0 - for _, b := range yyq4028 { + yynn4033 = 0 + for _, b := range yyq4033 { if b { - yynn4028++ + yynn4033++ } } - r.EncodeMapStart(yynn4028) - yynn4028 = 0 + r.EncodeMapStart(yynn4033) + yynn4033 = 0 } - if yyr4028 || yy2arr4028 { + if yyr4033 || yy2arr4033 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4028[0] { - yym4030 := z.EncBinary() - _ = yym4030 + if yyq4033[0] { + yym4035 := z.EncBinary() + _ = yym4035 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50483,23 +50524,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4028[0] { + if yyq4033[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4031 := z.EncBinary() - _ = yym4031 + yym4036 := z.EncBinary() + _ = yym4036 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4028 || yy2arr4028 { + if yyr4033 || yy2arr4033 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4028[1] { - yym4033 := z.EncBinary() - _ = yym4033 + if yyq4033[1] { + yym4038 := z.EncBinary() + _ = yym4038 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50508,43 +50549,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4028[1] { + if yyq4033[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4034 := z.EncBinary() - _ = yym4034 + yym4039 := z.EncBinary() + _ = yym4039 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4028 || yy2arr4028 { + if yyr4033 || yy2arr4033 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4028[2] { - yy4036 := &x.ObjectMeta - yy4036.CodecEncodeSelf(e) + if yyq4033[2] { + yy4041 := &x.ObjectMeta + yy4041.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4028[2] { + if yyq4033[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4037 := &x.ObjectMeta - yy4037.CodecEncodeSelf(e) + yy4042 := &x.ObjectMeta + yy4042.CodecEncodeSelf(e) } } - if yyr4028 || yy2arr4028 { + if yyr4033 || yy2arr4033 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4028[3] { + if yyq4033[3] { if x.Data == nil { r.EncodeNil() } else { - yym4039 := z.EncBinary() - _ = yym4039 + yym4044 := z.EncBinary() + _ = yym4044 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -50554,15 +50595,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4028[3] { + if yyq4033[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4040 := z.EncBinary() - _ = yym4040 + yym4045 := z.EncBinary() + _ = yym4045 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -50570,22 +50611,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4028 || yy2arr4028 { + if yyr4033 || yy2arr4033 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4028[4] { + if yyq4033[4] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4028[4] { + if yyq4033[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4028 || yy2arr4028 { + if yyr4033 || yy2arr4033 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50598,25 +50639,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4042 := z.DecBinary() - _ = yym4042 + yym4047 := z.DecBinary() + _ = yym4047 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4043 := r.ContainerType() - if yyct4043 == codecSelferValueTypeMap1234 { - yyl4043 := r.ReadMapStart() - if yyl4043 == 0 { + yyct4048 := r.ContainerType() + if yyct4048 == codecSelferValueTypeMap1234 { + yyl4048 := r.ReadMapStart() + if yyl4048 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4043, d) + x.codecDecodeSelfFromMap(yyl4048, d) } - } else if yyct4043 == codecSelferValueTypeArray1234 { - yyl4043 := r.ReadArrayStart() - if yyl4043 == 0 { + } else if yyct4048 == codecSelferValueTypeArray1234 { + yyl4048 := r.ReadArrayStart() + if yyl4048 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4043, d) + x.codecDecodeSelfFromArray(yyl4048, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50628,12 +50669,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4044Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4044Slc - var yyhl4044 bool = l >= 0 - for yyj4044 := 0; ; yyj4044++ { - if yyhl4044 { - if yyj4044 >= l { + var yys4049Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4049Slc + var yyhl4049 bool = l >= 0 + for yyj4049 := 0; ; yyj4049++ { + if yyhl4049 { + if yyj4049 >= l { break } } else { @@ -50642,10 +50683,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4044Slc = r.DecodeBytes(yys4044Slc, true, true) - yys4044 := string(yys4044Slc) + yys4049Slc = r.DecodeBytes(yys4049Slc, true, true) + yys4049 := string(yys4049Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4044 { + switch yys4049 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50662,19 +50703,19 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4047 := &x.ObjectMeta - yyv4047.CodecDecodeSelf(d) + yyv4052 := &x.ObjectMeta + yyv4052.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4048 := &x.Data - yym4049 := z.DecBinary() - _ = yym4049 + yyv4053 := &x.Data + yym4054 := z.DecBinary() + _ = yym4054 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4048), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4053), d) } } case "type": @@ -50684,9 +50725,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4044) - } // end switch yys4044 - } // end for yyj4044 + z.DecStructFieldNotFound(-1, yys4049) + } // end switch yys4049 + } // end for yyj4049 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50694,16 +50735,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4051 int - var yyb4051 bool - var yyhl4051 bool = l >= 0 - yyj4051++ - if yyhl4051 { - yyb4051 = yyj4051 > l + var yyj4056 int + var yyb4056 bool + var yyhl4056 bool = l >= 0 + yyj4056++ + if yyhl4056 { + yyb4056 = yyj4056 > l } else { - yyb4051 = r.CheckBreak() + yyb4056 = r.CheckBreak() } - if yyb4051 { + if yyb4056 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50713,13 +50754,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4051++ - if yyhl4051 { - yyb4051 = yyj4051 > l + yyj4056++ + if yyhl4056 { + yyb4056 = yyj4056 > l } else { - yyb4051 = r.CheckBreak() + yyb4056 = r.CheckBreak() } - if yyb4051 { + if yyb4056 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50729,13 +50770,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4051++ - if yyhl4051 { - yyb4051 = yyj4051 > l + yyj4056++ + if yyhl4056 { + yyb4056 = yyj4056 > l } else { - yyb4051 = r.CheckBreak() + yyb4056 = r.CheckBreak() } - if yyb4051 { + if yyb4056 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50743,16 +50784,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4054 := &x.ObjectMeta - yyv4054.CodecDecodeSelf(d) + yyv4059 := &x.ObjectMeta + yyv4059.CodecDecodeSelf(d) } - yyj4051++ - if yyhl4051 { - yyb4051 = yyj4051 > l + yyj4056++ + if yyhl4056 { + yyb4056 = yyj4056 > l } else { - yyb4051 = r.CheckBreak() + yyb4056 = r.CheckBreak() } - if yyb4051 { + if yyb4056 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50760,21 +50801,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4055 := &x.Data - yym4056 := z.DecBinary() - _ = yym4056 + yyv4060 := &x.Data + yym4061 := z.DecBinary() + _ = yym4061 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4055), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4060), d) } } - yyj4051++ - if yyhl4051 { - yyb4051 = yyj4051 > l + yyj4056++ + if yyhl4056 { + yyb4056 = yyj4056 > l } else { - yyb4051 = r.CheckBreak() + yyb4056 = r.CheckBreak() } - if yyb4051 { + if yyb4056 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50785,17 +50826,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj4051++ - if yyhl4051 { - yyb4051 = yyj4051 > l + yyj4056++ + if yyhl4056 { + yyb4056 = yyj4056 > l } else { - yyb4051 = r.CheckBreak() + yyb4056 = r.CheckBreak() } - if yyb4051 { + if yyb4056 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4051-1, "") + z.DecStructFieldNotFound(yyj4056-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50804,8 +50845,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4058 := z.EncBinary() - _ = yym4058 + yym4063 := z.EncBinary() + _ = yym4063 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -50817,8 +50858,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4059 := z.DecBinary() - _ = yym4059 + yym4064 := z.DecBinary() + _ = yym4064 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -50833,37 +50874,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4060 := z.EncBinary() - _ = yym4060 + yym4065 := z.EncBinary() + _ = yym4065 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4061 := !z.EncBinary() - yy2arr4061 := z.EncBasicHandle().StructToArray - var yyq4061 [4]bool - _, _, _ = yysep4061, yyq4061, yy2arr4061 - const yyr4061 bool = false - yyq4061[0] = x.Kind != "" - yyq4061[1] = x.APIVersion != "" - yyq4061[2] = true - var yynn4061 int - if yyr4061 || yy2arr4061 { + yysep4066 := !z.EncBinary() + yy2arr4066 := z.EncBasicHandle().StructToArray + var yyq4066 [4]bool + _, _, _ = yysep4066, yyq4066, yy2arr4066 + const yyr4066 bool = false + yyq4066[0] = x.Kind != "" + yyq4066[1] = x.APIVersion != "" + yyq4066[2] = true + var yynn4066 int + if yyr4066 || yy2arr4066 { r.EncodeArrayStart(4) } else { - yynn4061 = 1 - for _, b := range yyq4061 { + yynn4066 = 1 + for _, b := range yyq4066 { if b { - yynn4061++ + yynn4066++ } } - r.EncodeMapStart(yynn4061) - yynn4061 = 0 + r.EncodeMapStart(yynn4066) + yynn4066 = 0 } - if yyr4061 || yy2arr4061 { + if yyr4066 || yy2arr4066 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4061[0] { - yym4063 := z.EncBinary() - _ = yym4063 + if yyq4066[0] { + yym4068 := z.EncBinary() + _ = yym4068 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50872,23 +50913,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4061[0] { + if yyq4066[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4064 := z.EncBinary() - _ = yym4064 + yym4069 := z.EncBinary() + _ = yym4069 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4061 || yy2arr4061 { + if yyr4066 || yy2arr4066 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4061[1] { - yym4066 := z.EncBinary() - _ = yym4066 + if yyq4066[1] { + yym4071 := z.EncBinary() + _ = yym4071 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50897,54 +50938,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4061[1] { + if yyq4066[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4067 := z.EncBinary() - _ = yym4067 + yym4072 := z.EncBinary() + _ = yym4072 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4061 || yy2arr4061 { + if yyr4066 || yy2arr4066 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4061[2] { - yy4069 := &x.ListMeta - yym4070 := z.EncBinary() - _ = yym4070 + if yyq4066[2] { + yy4074 := &x.ListMeta + yym4075 := z.EncBinary() + _ = yym4075 if false { - } else if z.HasExtensions() && z.EncExt(yy4069) { + } else if z.HasExtensions() && z.EncExt(yy4074) { } else { - z.EncFallback(yy4069) + z.EncFallback(yy4074) } } else { r.EncodeNil() } } else { - if yyq4061[2] { + if yyq4066[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4071 := &x.ListMeta - yym4072 := z.EncBinary() - _ = yym4072 + yy4076 := &x.ListMeta + yym4077 := z.EncBinary() + _ = yym4077 if false { - } else if z.HasExtensions() && z.EncExt(yy4071) { + } else if z.HasExtensions() && z.EncExt(yy4076) { } else { - z.EncFallback(yy4071) + z.EncFallback(yy4076) } } } - if yyr4061 || yy2arr4061 { + if yyr4066 || yy2arr4066 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4074 := z.EncBinary() - _ = yym4074 + yym4079 := z.EncBinary() + _ = yym4079 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -50957,15 +50998,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4075 := z.EncBinary() - _ = yym4075 + yym4080 := z.EncBinary() + _ = yym4080 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4061 || yy2arr4061 { + if yyr4066 || yy2arr4066 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50978,25 +51019,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4076 := z.DecBinary() - _ = yym4076 + yym4081 := z.DecBinary() + _ = yym4081 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4077 := r.ContainerType() - if yyct4077 == codecSelferValueTypeMap1234 { - yyl4077 := r.ReadMapStart() - if yyl4077 == 0 { + yyct4082 := r.ContainerType() + if yyct4082 == codecSelferValueTypeMap1234 { + yyl4082 := r.ReadMapStart() + if yyl4082 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4077, d) + x.codecDecodeSelfFromMap(yyl4082, d) } - } else if yyct4077 == codecSelferValueTypeArray1234 { - yyl4077 := r.ReadArrayStart() - if yyl4077 == 0 { + } else if yyct4082 == codecSelferValueTypeArray1234 { + yyl4082 := r.ReadArrayStart() + if yyl4082 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4077, d) + x.codecDecodeSelfFromArray(yyl4082, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51008,12 +51049,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4078Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4078Slc - var yyhl4078 bool = l >= 0 - for yyj4078 := 0; ; yyj4078++ { - if yyhl4078 { - if yyj4078 >= l { + var yys4083Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4083Slc + var yyhl4083 bool = l >= 0 + for yyj4083 := 0; ; yyj4083++ { + if yyhl4083 { + if yyj4083 >= l { break } } else { @@ -51022,10 +51063,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4078Slc = r.DecodeBytes(yys4078Slc, true, true) - yys4078 := string(yys4078Slc) + yys4083Slc = r.DecodeBytes(yys4083Slc, true, true) + yys4083 := string(yys4083Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4078 { + switch yys4083 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51042,31 +51083,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4081 := &x.ListMeta - yym4082 := z.DecBinary() - _ = yym4082 + yyv4086 := &x.ListMeta + yym4087 := z.DecBinary() + _ = yym4087 if false { - } else if z.HasExtensions() && z.DecExt(yyv4081) { + } else if z.HasExtensions() && z.DecExt(yyv4086) { } else { - z.DecFallback(yyv4081, false) + z.DecFallback(yyv4086, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4083 := &x.Items - yym4084 := z.DecBinary() - _ = yym4084 + yyv4088 := &x.Items + yym4089 := z.DecBinary() + _ = yym4089 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4083), d) + h.decSliceSecret((*[]Secret)(yyv4088), d) } } default: - z.DecStructFieldNotFound(-1, yys4078) - } // end switch yys4078 - } // end for yyj4078 + z.DecStructFieldNotFound(-1, yys4083) + } // end switch yys4083 + } // end for yyj4083 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51074,16 +51115,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4085 int - var yyb4085 bool - var yyhl4085 bool = l >= 0 - yyj4085++ - if yyhl4085 { - yyb4085 = yyj4085 > l + var yyj4090 int + var yyb4090 bool + var yyhl4090 bool = l >= 0 + yyj4090++ + if yyhl4090 { + yyb4090 = yyj4090 > l } else { - yyb4085 = r.CheckBreak() + yyb4090 = r.CheckBreak() } - if yyb4085 { + if yyb4090 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51093,13 +51134,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4085++ - if yyhl4085 { - yyb4085 = yyj4085 > l + yyj4090++ + if yyhl4090 { + yyb4090 = yyj4090 > l } else { - yyb4085 = r.CheckBreak() + yyb4090 = r.CheckBreak() } - if yyb4085 { + if yyb4090 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51109,13 +51150,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4085++ - if yyhl4085 { - yyb4085 = yyj4085 > l + yyj4090++ + if yyhl4090 { + yyb4090 = yyj4090 > l } else { - yyb4085 = r.CheckBreak() + yyb4090 = r.CheckBreak() } - if yyb4085 { + if yyb4090 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51123,22 +51164,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4088 := &x.ListMeta - yym4089 := z.DecBinary() - _ = yym4089 + yyv4093 := &x.ListMeta + yym4094 := z.DecBinary() + _ = yym4094 if false { - } else if z.HasExtensions() && z.DecExt(yyv4088) { + } else if z.HasExtensions() && z.DecExt(yyv4093) { } else { - z.DecFallback(yyv4088, false) + z.DecFallback(yyv4093, false) } } - yyj4085++ - if yyhl4085 { - yyb4085 = yyj4085 > l + yyj4090++ + if yyhl4090 { + yyb4090 = yyj4090 > l } else { - yyb4085 = r.CheckBreak() + yyb4090 = r.CheckBreak() } - if yyb4085 { + if yyb4090 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51146,26 +51187,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4090 := &x.Items - yym4091 := z.DecBinary() - _ = yym4091 + yyv4095 := &x.Items + yym4096 := z.DecBinary() + _ = yym4096 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4090), d) + h.decSliceSecret((*[]Secret)(yyv4095), d) } } for { - yyj4085++ - if yyhl4085 { - yyb4085 = yyj4085 > l + yyj4090++ + if yyhl4090 { + yyb4090 = yyj4090 > l } else { - yyb4085 = r.CheckBreak() + yyb4090 = r.CheckBreak() } - if yyb4085 { + if yyb4090 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4085-1, "") + z.DecStructFieldNotFound(yyj4090-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51177,38 +51218,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4092 := z.EncBinary() - _ = yym4092 + yym4097 := z.EncBinary() + _ = yym4097 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4093 := !z.EncBinary() - yy2arr4093 := z.EncBasicHandle().StructToArray - var yyq4093 [4]bool - _, _, _ = yysep4093, yyq4093, yy2arr4093 - const yyr4093 bool = false - yyq4093[0] = x.Kind != "" - yyq4093[1] = x.APIVersion != "" - yyq4093[2] = true - yyq4093[3] = len(x.Data) != 0 - var yynn4093 int - if yyr4093 || yy2arr4093 { + yysep4098 := !z.EncBinary() + yy2arr4098 := z.EncBasicHandle().StructToArray + var yyq4098 [4]bool + _, _, _ = yysep4098, yyq4098, yy2arr4098 + const yyr4098 bool = false + yyq4098[0] = x.Kind != "" + yyq4098[1] = x.APIVersion != "" + yyq4098[2] = true + yyq4098[3] = len(x.Data) != 0 + var yynn4098 int + if yyr4098 || yy2arr4098 { r.EncodeArrayStart(4) } else { - yynn4093 = 0 - for _, b := range yyq4093 { + yynn4098 = 0 + for _, b := range yyq4098 { if b { - yynn4093++ + yynn4098++ } } - r.EncodeMapStart(yynn4093) - yynn4093 = 0 + r.EncodeMapStart(yynn4098) + yynn4098 = 0 } - if yyr4093 || yy2arr4093 { + if yyr4098 || yy2arr4098 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4093[0] { - yym4095 := z.EncBinary() - _ = yym4095 + if yyq4098[0] { + yym4100 := z.EncBinary() + _ = yym4100 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51217,23 +51258,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4093[0] { + if yyq4098[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4096 := z.EncBinary() - _ = yym4096 + yym4101 := z.EncBinary() + _ = yym4101 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4093 || yy2arr4093 { + if yyr4098 || yy2arr4098 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4093[1] { - yym4098 := z.EncBinary() - _ = yym4098 + if yyq4098[1] { + yym4103 := z.EncBinary() + _ = yym4103 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51242,43 +51283,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4093[1] { + if yyq4098[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4099 := z.EncBinary() - _ = yym4099 + yym4104 := z.EncBinary() + _ = yym4104 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4093 || yy2arr4093 { + if yyr4098 || yy2arr4098 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4093[2] { - yy4101 := &x.ObjectMeta - yy4101.CodecEncodeSelf(e) + if yyq4098[2] { + yy4106 := &x.ObjectMeta + yy4106.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4093[2] { + if yyq4098[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4102 := &x.ObjectMeta - yy4102.CodecEncodeSelf(e) + yy4107 := &x.ObjectMeta + yy4107.CodecEncodeSelf(e) } } - if yyr4093 || yy2arr4093 { + if yyr4098 || yy2arr4098 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4093[3] { + if yyq4098[3] { if x.Data == nil { r.EncodeNil() } else { - yym4104 := z.EncBinary() - _ = yym4104 + yym4109 := z.EncBinary() + _ = yym4109 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -51288,15 +51329,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4093[3] { + if yyq4098[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4105 := z.EncBinary() - _ = yym4105 + yym4110 := z.EncBinary() + _ = yym4110 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -51304,7 +51345,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4093 || yy2arr4093 { + if yyr4098 || yy2arr4098 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51317,25 +51358,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4106 := z.DecBinary() - _ = yym4106 + yym4111 := z.DecBinary() + _ = yym4111 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4107 := r.ContainerType() - if yyct4107 == codecSelferValueTypeMap1234 { - yyl4107 := r.ReadMapStart() - if yyl4107 == 0 { + yyct4112 := r.ContainerType() + if yyct4112 == codecSelferValueTypeMap1234 { + yyl4112 := r.ReadMapStart() + if yyl4112 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4107, d) + x.codecDecodeSelfFromMap(yyl4112, d) } - } else if yyct4107 == codecSelferValueTypeArray1234 { - yyl4107 := r.ReadArrayStart() - if yyl4107 == 0 { + } else if yyct4112 == codecSelferValueTypeArray1234 { + yyl4112 := r.ReadArrayStart() + if yyl4112 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4107, d) + x.codecDecodeSelfFromArray(yyl4112, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51347,12 +51388,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4108Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4108Slc - var yyhl4108 bool = l >= 0 - for yyj4108 := 0; ; yyj4108++ { - if yyhl4108 { - if yyj4108 >= l { + var yys4113Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4113Slc + var yyhl4113 bool = l >= 0 + for yyj4113 := 0; ; yyj4113++ { + if yyhl4113 { + if yyj4113 >= l { break } } else { @@ -51361,10 +51402,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4108Slc = r.DecodeBytes(yys4108Slc, true, true) - yys4108 := string(yys4108Slc) + yys4113Slc = r.DecodeBytes(yys4113Slc, true, true) + yys4113 := string(yys4113Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4108 { + switch yys4113 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51381,25 +51422,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4111 := &x.ObjectMeta - yyv4111.CodecDecodeSelf(d) + yyv4116 := &x.ObjectMeta + yyv4116.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4112 := &x.Data - yym4113 := z.DecBinary() - _ = yym4113 + yyv4117 := &x.Data + yym4118 := z.DecBinary() + _ = yym4118 if false { } else { - z.F.DecMapStringStringX(yyv4112, false, d) + z.F.DecMapStringStringX(yyv4117, false, d) } } default: - z.DecStructFieldNotFound(-1, yys4108) - } // end switch yys4108 - } // end for yyj4108 + z.DecStructFieldNotFound(-1, yys4113) + } // end switch yys4113 + } // end for yyj4113 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51407,16 +51448,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4114 int - var yyb4114 bool - var yyhl4114 bool = l >= 0 - yyj4114++ - if yyhl4114 { - yyb4114 = yyj4114 > l + var yyj4119 int + var yyb4119 bool + var yyhl4119 bool = l >= 0 + yyj4119++ + if yyhl4119 { + yyb4119 = yyj4119 > l } else { - yyb4114 = r.CheckBreak() + yyb4119 = r.CheckBreak() } - if yyb4114 { + if yyb4119 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51426,13 +51467,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4114++ - if yyhl4114 { - yyb4114 = yyj4114 > l + yyj4119++ + if yyhl4119 { + yyb4119 = yyj4119 > l } else { - yyb4114 = r.CheckBreak() + yyb4119 = r.CheckBreak() } - if yyb4114 { + if yyb4119 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51442,13 +51483,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4114++ - if yyhl4114 { - yyb4114 = yyj4114 > l + yyj4119++ + if yyhl4119 { + yyb4119 = yyj4119 > l } else { - yyb4114 = r.CheckBreak() + yyb4119 = r.CheckBreak() } - if yyb4114 { + if yyb4119 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51456,16 +51497,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4117 := &x.ObjectMeta - yyv4117.CodecDecodeSelf(d) + yyv4122 := &x.ObjectMeta + yyv4122.CodecDecodeSelf(d) } - yyj4114++ - if yyhl4114 { - yyb4114 = yyj4114 > l + yyj4119++ + if yyhl4119 { + yyb4119 = yyj4119 > l } else { - yyb4114 = r.CheckBreak() + yyb4119 = r.CheckBreak() } - if yyb4114 { + if yyb4119 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51473,26 +51514,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4118 := &x.Data - yym4119 := z.DecBinary() - _ = yym4119 + yyv4123 := &x.Data + yym4124 := z.DecBinary() + _ = yym4124 if false { } else { - z.F.DecMapStringStringX(yyv4118, false, d) + z.F.DecMapStringStringX(yyv4123, false, d) } } for { - yyj4114++ - if yyhl4114 { - yyb4114 = yyj4114 > l + yyj4119++ + if yyhl4119 { + yyb4119 = yyj4119 > l } else { - yyb4114 = r.CheckBreak() + yyb4119 = r.CheckBreak() } - if yyb4114 { + if yyb4119 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4114-1, "") + z.DecStructFieldNotFound(yyj4119-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51504,37 +51545,37 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4120 := z.EncBinary() - _ = yym4120 + yym4125 := z.EncBinary() + _ = yym4125 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4121 := !z.EncBinary() - yy2arr4121 := z.EncBasicHandle().StructToArray - var yyq4121 [4]bool - _, _, _ = yysep4121, yyq4121, yy2arr4121 - const yyr4121 bool = false - yyq4121[0] = x.Kind != "" - yyq4121[1] = x.APIVersion != "" - yyq4121[2] = true - var yynn4121 int - if yyr4121 || yy2arr4121 { + yysep4126 := !z.EncBinary() + yy2arr4126 := z.EncBasicHandle().StructToArray + var yyq4126 [4]bool + _, _, _ = yysep4126, yyq4126, yy2arr4126 + const yyr4126 bool = false + yyq4126[0] = x.Kind != "" + yyq4126[1] = x.APIVersion != "" + yyq4126[2] = true + var yynn4126 int + if yyr4126 || yy2arr4126 { r.EncodeArrayStart(4) } else { - yynn4121 = 1 - for _, b := range yyq4121 { + yynn4126 = 1 + for _, b := range yyq4126 { if b { - yynn4121++ + yynn4126++ } } - r.EncodeMapStart(yynn4121) - yynn4121 = 0 + r.EncodeMapStart(yynn4126) + yynn4126 = 0 } - if yyr4121 || yy2arr4121 { + if yyr4126 || yy2arr4126 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4121[0] { - yym4123 := z.EncBinary() - _ = yym4123 + if yyq4126[0] { + yym4128 := z.EncBinary() + _ = yym4128 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51543,23 +51584,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4121[0] { + if yyq4126[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4124 := z.EncBinary() - _ = yym4124 + yym4129 := z.EncBinary() + _ = yym4129 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4121 || yy2arr4121 { + if yyr4126 || yy2arr4126 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4121[1] { - yym4126 := z.EncBinary() - _ = yym4126 + if yyq4126[1] { + yym4131 := z.EncBinary() + _ = yym4131 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51568,54 +51609,54 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4121[1] { + if yyq4126[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4127 := z.EncBinary() - _ = yym4127 + yym4132 := z.EncBinary() + _ = yym4132 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4121 || yy2arr4121 { + if yyr4126 || yy2arr4126 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4121[2] { - yy4129 := &x.ListMeta - yym4130 := z.EncBinary() - _ = yym4130 + if yyq4126[2] { + yy4134 := &x.ListMeta + yym4135 := z.EncBinary() + _ = yym4135 if false { - } else if z.HasExtensions() && z.EncExt(yy4129) { + } else if z.HasExtensions() && z.EncExt(yy4134) { } else { - z.EncFallback(yy4129) + z.EncFallback(yy4134) } } else { r.EncodeNil() } } else { - if yyq4121[2] { + if yyq4126[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4131 := &x.ListMeta - yym4132 := z.EncBinary() - _ = yym4132 + yy4136 := &x.ListMeta + yym4137 := z.EncBinary() + _ = yym4137 if false { - } else if z.HasExtensions() && z.EncExt(yy4131) { + } else if z.HasExtensions() && z.EncExt(yy4136) { } else { - z.EncFallback(yy4131) + z.EncFallback(yy4136) } } } - if yyr4121 || yy2arr4121 { + if yyr4126 || yy2arr4126 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4134 := z.EncBinary() - _ = yym4134 + yym4139 := z.EncBinary() + _ = yym4139 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -51628,15 +51669,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4135 := z.EncBinary() - _ = yym4135 + yym4140 := z.EncBinary() + _ = yym4140 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) } } } - if yyr4121 || yy2arr4121 { + if yyr4126 || yy2arr4126 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51649,25 +51690,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4136 := z.DecBinary() - _ = yym4136 + yym4141 := z.DecBinary() + _ = yym4141 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4137 := r.ContainerType() - if yyct4137 == codecSelferValueTypeMap1234 { - yyl4137 := r.ReadMapStart() - if yyl4137 == 0 { + yyct4142 := r.ContainerType() + if yyct4142 == codecSelferValueTypeMap1234 { + yyl4142 := r.ReadMapStart() + if yyl4142 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4137, d) + x.codecDecodeSelfFromMap(yyl4142, d) } - } else if yyct4137 == codecSelferValueTypeArray1234 { - yyl4137 := r.ReadArrayStart() - if yyl4137 == 0 { + } else if yyct4142 == codecSelferValueTypeArray1234 { + yyl4142 := r.ReadArrayStart() + if yyl4142 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4137, d) + x.codecDecodeSelfFromArray(yyl4142, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51679,12 +51720,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4138Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4138Slc - var yyhl4138 bool = l >= 0 - for yyj4138 := 0; ; yyj4138++ { - if yyhl4138 { - if yyj4138 >= l { + var yys4143Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4143Slc + var yyhl4143 bool = l >= 0 + for yyj4143 := 0; ; yyj4143++ { + if yyhl4143 { + if yyj4143 >= l { break } } else { @@ -51693,10 +51734,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4138Slc = r.DecodeBytes(yys4138Slc, true, true) - yys4138 := string(yys4138Slc) + yys4143Slc = r.DecodeBytes(yys4143Slc, true, true) + yys4143 := string(yys4143Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4138 { + switch yys4143 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51713,31 +51754,31 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4141 := &x.ListMeta - yym4142 := z.DecBinary() - _ = yym4142 + yyv4146 := &x.ListMeta + yym4147 := z.DecBinary() + _ = yym4147 if false { - } else if z.HasExtensions() && z.DecExt(yyv4141) { + } else if z.HasExtensions() && z.DecExt(yyv4146) { } else { - z.DecFallback(yyv4141, false) + z.DecFallback(yyv4146, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4143 := &x.Items - yym4144 := z.DecBinary() - _ = yym4144 + yyv4148 := &x.Items + yym4149 := z.DecBinary() + _ = yym4149 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4143), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4148), d) } } default: - z.DecStructFieldNotFound(-1, yys4138) - } // end switch yys4138 - } // end for yyj4138 + z.DecStructFieldNotFound(-1, yys4143) + } // end switch yys4143 + } // end for yyj4143 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51745,16 +51786,16 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4145 int - var yyb4145 bool - var yyhl4145 bool = l >= 0 - yyj4145++ - if yyhl4145 { - yyb4145 = yyj4145 > l + var yyj4150 int + var yyb4150 bool + var yyhl4150 bool = l >= 0 + yyj4150++ + if yyhl4150 { + yyb4150 = yyj4150 > l } else { - yyb4145 = r.CheckBreak() + yyb4150 = r.CheckBreak() } - if yyb4145 { + if yyb4150 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51764,13 +51805,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4145++ - if yyhl4145 { - yyb4145 = yyj4145 > l + yyj4150++ + if yyhl4150 { + yyb4150 = yyj4150 > l } else { - yyb4145 = r.CheckBreak() + yyb4150 = r.CheckBreak() } - if yyb4145 { + if yyb4150 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51780,13 +51821,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4145++ - if yyhl4145 { - yyb4145 = yyj4145 > l + yyj4150++ + if yyhl4150 { + yyb4150 = yyj4150 > l } else { - yyb4145 = r.CheckBreak() + yyb4150 = r.CheckBreak() } - if yyb4145 { + if yyb4150 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51794,22 +51835,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4148 := &x.ListMeta - yym4149 := z.DecBinary() - _ = yym4149 + yyv4153 := &x.ListMeta + yym4154 := z.DecBinary() + _ = yym4154 if false { - } else if z.HasExtensions() && z.DecExt(yyv4148) { + } else if z.HasExtensions() && z.DecExt(yyv4153) { } else { - z.DecFallback(yyv4148, false) + z.DecFallback(yyv4153, false) } } - yyj4145++ - if yyhl4145 { - yyb4145 = yyj4145 > l + yyj4150++ + if yyhl4150 { + yyb4150 = yyj4150 > l } else { - yyb4145 = r.CheckBreak() + yyb4150 = r.CheckBreak() } - if yyb4145 { + if yyb4150 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51817,26 +51858,26 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4150 := &x.Items - yym4151 := z.DecBinary() - _ = yym4151 + yyv4155 := &x.Items + yym4156 := z.DecBinary() + _ = yym4156 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4150), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4155), d) } } for { - yyj4145++ - if yyhl4145 { - yyb4145 = yyj4145 > l + yyj4150++ + if yyhl4150 { + yyb4150 = yyj4150 > l } else { - yyb4145 = r.CheckBreak() + yyb4150 = r.CheckBreak() } - if yyb4145 { + if yyb4150 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4145-1, "") + z.DecStructFieldNotFound(yyj4150-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51845,8 +51886,8 @@ func (x PatchType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4152 := z.EncBinary() - _ = yym4152 + yym4157 := z.EncBinary() + _ = yym4157 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -51858,8 +51899,8 @@ func (x *PatchType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4153 := z.DecBinary() - _ = yym4153 + yym4158 := z.DecBinary() + _ = yym4158 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -51871,8 +51912,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4154 := z.EncBinary() - _ = yym4154 + yym4159 := z.EncBinary() + _ = yym4159 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -51884,8 +51925,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4155 := z.DecBinary() - _ = yym4155 + yym4160 := z.DecBinary() + _ = yym4160 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -51900,32 +51941,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4156 := z.EncBinary() - _ = yym4156 + yym4161 := z.EncBinary() + _ = yym4161 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4157 := !z.EncBinary() - yy2arr4157 := z.EncBasicHandle().StructToArray - var yyq4157 [4]bool - _, _, _ = yysep4157, yyq4157, yy2arr4157 - const yyr4157 bool = false - yyq4157[2] = x.Message != "" - yyq4157[3] = x.Error != "" - var yynn4157 int - if yyr4157 || yy2arr4157 { + yysep4162 := !z.EncBinary() + yy2arr4162 := z.EncBasicHandle().StructToArray + var yyq4162 [4]bool + _, _, _ = yysep4162, yyq4162, yy2arr4162 + const yyr4162 bool = false + yyq4162[2] = x.Message != "" + yyq4162[3] = x.Error != "" + var yynn4162 int + if yyr4162 || yy2arr4162 { r.EncodeArrayStart(4) } else { - yynn4157 = 2 - for _, b := range yyq4157 { + yynn4162 = 2 + for _, b := range yyq4162 { if b { - yynn4157++ + yynn4162++ } } - r.EncodeMapStart(yynn4157) - yynn4157 = 0 + r.EncodeMapStart(yynn4162) + yynn4162 = 0 } - if yyr4157 || yy2arr4157 { + if yyr4162 || yy2arr4162 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -51934,7 +51975,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr4157 || yy2arr4157 { + if yyr4162 || yy2arr4162 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -51943,11 +51984,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr4157 || yy2arr4157 { + if yyr4162 || yy2arr4162 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4157[2] { - yym4161 := z.EncBinary() - _ = yym4161 + if yyq4162[2] { + yym4166 := z.EncBinary() + _ = yym4166 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -51956,23 +51997,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4157[2] { + if yyq4162[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4162 := z.EncBinary() - _ = yym4162 + yym4167 := z.EncBinary() + _ = yym4167 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr4157 || yy2arr4157 { + if yyr4162 || yy2arr4162 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4157[3] { - yym4164 := z.EncBinary() - _ = yym4164 + if yyq4162[3] { + yym4169 := z.EncBinary() + _ = yym4169 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -51981,19 +52022,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4157[3] { + if yyq4162[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4165 := z.EncBinary() - _ = yym4165 + yym4170 := z.EncBinary() + _ = yym4170 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr4157 || yy2arr4157 { + if yyr4162 || yy2arr4162 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52006,25 +52047,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4166 := z.DecBinary() - _ = yym4166 + yym4171 := z.DecBinary() + _ = yym4171 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4167 := r.ContainerType() - if yyct4167 == codecSelferValueTypeMap1234 { - yyl4167 := r.ReadMapStart() - if yyl4167 == 0 { + yyct4172 := r.ContainerType() + if yyct4172 == codecSelferValueTypeMap1234 { + yyl4172 := r.ReadMapStart() + if yyl4172 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4167, d) + x.codecDecodeSelfFromMap(yyl4172, d) } - } else if yyct4167 == codecSelferValueTypeArray1234 { - yyl4167 := r.ReadArrayStart() - if yyl4167 == 0 { + } else if yyct4172 == codecSelferValueTypeArray1234 { + yyl4172 := r.ReadArrayStart() + if yyl4172 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4167, d) + x.codecDecodeSelfFromArray(yyl4172, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52036,12 +52077,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4168Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4168Slc - var yyhl4168 bool = l >= 0 - for yyj4168 := 0; ; yyj4168++ { - if yyhl4168 { - if yyj4168 >= l { + var yys4173Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4173Slc + var yyhl4173 bool = l >= 0 + for yyj4173 := 0; ; yyj4173++ { + if yyhl4173 { + if yyj4173 >= l { break } } else { @@ -52050,10 +52091,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4168Slc = r.DecodeBytes(yys4168Slc, true, true) - yys4168 := string(yys4168Slc) + yys4173Slc = r.DecodeBytes(yys4173Slc, true, true) + yys4173 := string(yys4173Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4168 { + switch yys4173 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -52079,9 +52120,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4168) - } // end switch yys4168 - } // end for yyj4168 + z.DecStructFieldNotFound(-1, yys4173) + } // end switch yys4173 + } // end for yyj4173 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52089,16 +52130,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4173 int - var yyb4173 bool - var yyhl4173 bool = l >= 0 - yyj4173++ - if yyhl4173 { - yyb4173 = yyj4173 > l + var yyj4178 int + var yyb4178 bool + var yyhl4178 bool = l >= 0 + yyj4178++ + if yyhl4178 { + yyb4178 = yyj4178 > l } else { - yyb4173 = r.CheckBreak() + yyb4178 = r.CheckBreak() } - if yyb4173 { + if yyb4178 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52108,13 +52149,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj4173++ - if yyhl4173 { - yyb4173 = yyj4173 > l + yyj4178++ + if yyhl4178 { + yyb4178 = yyj4178 > l } else { - yyb4173 = r.CheckBreak() + yyb4178 = r.CheckBreak() } - if yyb4173 { + if yyb4178 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52124,13 +52165,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj4173++ - if yyhl4173 { - yyb4173 = yyj4173 > l + yyj4178++ + if yyhl4178 { + yyb4178 = yyj4178 > l } else { - yyb4173 = r.CheckBreak() + yyb4178 = r.CheckBreak() } - if yyb4173 { + if yyb4178 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52140,13 +52181,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj4173++ - if yyhl4173 { - yyb4173 = yyj4173 > l + yyj4178++ + if yyhl4178 { + yyb4178 = yyj4178 > l } else { - yyb4173 = r.CheckBreak() + yyb4178 = r.CheckBreak() } - if yyb4173 { + if yyb4178 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52157,17 +52198,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj4173++ - if yyhl4173 { - yyb4173 = yyj4173 > l + yyj4178++ + if yyhl4178 { + yyb4178 = yyj4178 > l } else { - yyb4173 = r.CheckBreak() + yyb4178 = r.CheckBreak() } - if yyb4173 { + if yyb4178 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4173-1, "") + z.DecStructFieldNotFound(yyj4178-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52179,38 +52220,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4178 := z.EncBinary() - _ = yym4178 + yym4183 := z.EncBinary() + _ = yym4183 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4179 := !z.EncBinary() - yy2arr4179 := z.EncBasicHandle().StructToArray - var yyq4179 [4]bool - _, _, _ = yysep4179, yyq4179, yy2arr4179 - const yyr4179 bool = false - yyq4179[0] = x.Kind != "" - yyq4179[1] = x.APIVersion != "" - yyq4179[2] = true - yyq4179[3] = len(x.Conditions) != 0 - var yynn4179 int - if yyr4179 || yy2arr4179 { + yysep4184 := !z.EncBinary() + yy2arr4184 := z.EncBasicHandle().StructToArray + var yyq4184 [4]bool + _, _, _ = yysep4184, yyq4184, yy2arr4184 + const yyr4184 bool = false + yyq4184[0] = x.Kind != "" + yyq4184[1] = x.APIVersion != "" + yyq4184[2] = true + yyq4184[3] = len(x.Conditions) != 0 + var yynn4184 int + if yyr4184 || yy2arr4184 { r.EncodeArrayStart(4) } else { - yynn4179 = 0 - for _, b := range yyq4179 { + yynn4184 = 0 + for _, b := range yyq4184 { if b { - yynn4179++ + yynn4184++ } } - r.EncodeMapStart(yynn4179) - yynn4179 = 0 + r.EncodeMapStart(yynn4184) + yynn4184 = 0 } - if yyr4179 || yy2arr4179 { + if yyr4184 || yy2arr4184 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4179[0] { - yym4181 := z.EncBinary() - _ = yym4181 + if yyq4184[0] { + yym4186 := z.EncBinary() + _ = yym4186 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52219,23 +52260,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4179[0] { + if yyq4184[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4182 := z.EncBinary() - _ = yym4182 + yym4187 := z.EncBinary() + _ = yym4187 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4179 || yy2arr4179 { + if yyr4184 || yy2arr4184 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4179[1] { - yym4184 := z.EncBinary() - _ = yym4184 + if yyq4184[1] { + yym4189 := z.EncBinary() + _ = yym4189 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52244,43 +52285,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4179[1] { + if yyq4184[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4185 := z.EncBinary() - _ = yym4185 + yym4190 := z.EncBinary() + _ = yym4190 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4179 || yy2arr4179 { + if yyr4184 || yy2arr4184 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4179[2] { - yy4187 := &x.ObjectMeta - yy4187.CodecEncodeSelf(e) + if yyq4184[2] { + yy4192 := &x.ObjectMeta + yy4192.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4179[2] { + if yyq4184[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4188 := &x.ObjectMeta - yy4188.CodecEncodeSelf(e) + yy4193 := &x.ObjectMeta + yy4193.CodecEncodeSelf(e) } } - if yyr4179 || yy2arr4179 { + if yyr4184 || yy2arr4184 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4179[3] { + if yyq4184[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym4190 := z.EncBinary() - _ = yym4190 + yym4195 := z.EncBinary() + _ = yym4195 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -52290,15 +52331,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4179[3] { + if yyq4184[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym4191 := z.EncBinary() - _ = yym4191 + yym4196 := z.EncBinary() + _ = yym4196 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -52306,7 +52347,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4179 || yy2arr4179 { + if yyr4184 || yy2arr4184 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52319,25 +52360,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4192 := z.DecBinary() - _ = yym4192 + yym4197 := z.DecBinary() + _ = yym4197 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4193 := r.ContainerType() - if yyct4193 == codecSelferValueTypeMap1234 { - yyl4193 := r.ReadMapStart() - if yyl4193 == 0 { + yyct4198 := r.ContainerType() + if yyct4198 == codecSelferValueTypeMap1234 { + yyl4198 := r.ReadMapStart() + if yyl4198 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4193, d) + x.codecDecodeSelfFromMap(yyl4198, d) } - } else if yyct4193 == codecSelferValueTypeArray1234 { - yyl4193 := r.ReadArrayStart() - if yyl4193 == 0 { + } else if yyct4198 == codecSelferValueTypeArray1234 { + yyl4198 := r.ReadArrayStart() + if yyl4198 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4193, d) + x.codecDecodeSelfFromArray(yyl4198, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52349,12 +52390,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4194Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4194Slc - var yyhl4194 bool = l >= 0 - for yyj4194 := 0; ; yyj4194++ { - if yyhl4194 { - if yyj4194 >= l { + var yys4199Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4199Slc + var yyhl4199 bool = l >= 0 + for yyj4199 := 0; ; yyj4199++ { + if yyhl4199 { + if yyj4199 >= l { break } } else { @@ -52363,10 +52404,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4194Slc = r.DecodeBytes(yys4194Slc, true, true) - yys4194 := string(yys4194Slc) + yys4199Slc = r.DecodeBytes(yys4199Slc, true, true) + yys4199 := string(yys4199Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4194 { + switch yys4199 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52383,25 +52424,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4197 := &x.ObjectMeta - yyv4197.CodecDecodeSelf(d) + yyv4202 := &x.ObjectMeta + yyv4202.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4198 := &x.Conditions - yym4199 := z.DecBinary() - _ = yym4199 + yyv4203 := &x.Conditions + yym4204 := z.DecBinary() + _ = yym4204 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4198), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4203), d) } } default: - z.DecStructFieldNotFound(-1, yys4194) - } // end switch yys4194 - } // end for yyj4194 + z.DecStructFieldNotFound(-1, yys4199) + } // end switch yys4199 + } // end for yyj4199 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52409,16 +52450,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4200 int - var yyb4200 bool - var yyhl4200 bool = l >= 0 - yyj4200++ - if yyhl4200 { - yyb4200 = yyj4200 > l + var yyj4205 int + var yyb4205 bool + var yyhl4205 bool = l >= 0 + yyj4205++ + if yyhl4205 { + yyb4205 = yyj4205 > l } else { - yyb4200 = r.CheckBreak() + yyb4205 = r.CheckBreak() } - if yyb4200 { + if yyb4205 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52428,13 +52469,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4200++ - if yyhl4200 { - yyb4200 = yyj4200 > l + yyj4205++ + if yyhl4205 { + yyb4205 = yyj4205 > l } else { - yyb4200 = r.CheckBreak() + yyb4205 = r.CheckBreak() } - if yyb4200 { + if yyb4205 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52444,13 +52485,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4200++ - if yyhl4200 { - yyb4200 = yyj4200 > l + yyj4205++ + if yyhl4205 { + yyb4205 = yyj4205 > l } else { - yyb4200 = r.CheckBreak() + yyb4205 = r.CheckBreak() } - if yyb4200 { + if yyb4205 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52458,16 +52499,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4203 := &x.ObjectMeta - yyv4203.CodecDecodeSelf(d) + yyv4208 := &x.ObjectMeta + yyv4208.CodecDecodeSelf(d) } - yyj4200++ - if yyhl4200 { - yyb4200 = yyj4200 > l + yyj4205++ + if yyhl4205 { + yyb4205 = yyj4205 > l } else { - yyb4200 = r.CheckBreak() + yyb4205 = r.CheckBreak() } - if yyb4200 { + if yyb4205 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52475,26 +52516,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4204 := &x.Conditions - yym4205 := z.DecBinary() - _ = yym4205 + yyv4209 := &x.Conditions + yym4210 := z.DecBinary() + _ = yym4210 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4204), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4209), d) } } for { - yyj4200++ - if yyhl4200 { - yyb4200 = yyj4200 > l + yyj4205++ + if yyhl4205 { + yyb4205 = yyj4205 > l } else { - yyb4200 = r.CheckBreak() + yyb4205 = r.CheckBreak() } - if yyb4200 { + if yyb4205 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4200-1, "") + z.DecStructFieldNotFound(yyj4205-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52506,37 +52547,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4206 := z.EncBinary() - _ = yym4206 + yym4211 := z.EncBinary() + _ = yym4211 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4207 := !z.EncBinary() - yy2arr4207 := z.EncBasicHandle().StructToArray - var yyq4207 [4]bool - _, _, _ = yysep4207, yyq4207, yy2arr4207 - const yyr4207 bool = false - yyq4207[0] = x.Kind != "" - yyq4207[1] = x.APIVersion != "" - yyq4207[2] = true - var yynn4207 int - if yyr4207 || yy2arr4207 { + yysep4212 := !z.EncBinary() + yy2arr4212 := z.EncBasicHandle().StructToArray + var yyq4212 [4]bool + _, _, _ = yysep4212, yyq4212, yy2arr4212 + const yyr4212 bool = false + yyq4212[0] = x.Kind != "" + yyq4212[1] = x.APIVersion != "" + yyq4212[2] = true + var yynn4212 int + if yyr4212 || yy2arr4212 { r.EncodeArrayStart(4) } else { - yynn4207 = 1 - for _, b := range yyq4207 { + yynn4212 = 1 + for _, b := range yyq4212 { if b { - yynn4207++ + yynn4212++ } } - r.EncodeMapStart(yynn4207) - yynn4207 = 0 + r.EncodeMapStart(yynn4212) + yynn4212 = 0 } - if yyr4207 || yy2arr4207 { + if yyr4212 || yy2arr4212 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4207[0] { - yym4209 := z.EncBinary() - _ = yym4209 + if yyq4212[0] { + yym4214 := z.EncBinary() + _ = yym4214 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52545,23 +52586,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4207[0] { + if yyq4212[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4210 := z.EncBinary() - _ = yym4210 + yym4215 := z.EncBinary() + _ = yym4215 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4207 || yy2arr4207 { + if yyr4212 || yy2arr4212 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4207[1] { - yym4212 := z.EncBinary() - _ = yym4212 + if yyq4212[1] { + yym4217 := z.EncBinary() + _ = yym4217 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52570,54 +52611,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4207[1] { + if yyq4212[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4213 := z.EncBinary() - _ = yym4213 + yym4218 := z.EncBinary() + _ = yym4218 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4207 || yy2arr4207 { + if yyr4212 || yy2arr4212 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4207[2] { - yy4215 := &x.ListMeta - yym4216 := z.EncBinary() - _ = yym4216 + if yyq4212[2] { + yy4220 := &x.ListMeta + yym4221 := z.EncBinary() + _ = yym4221 if false { - } else if z.HasExtensions() && z.EncExt(yy4215) { + } else if z.HasExtensions() && z.EncExt(yy4220) { } else { - z.EncFallback(yy4215) + z.EncFallback(yy4220) } } else { r.EncodeNil() } } else { - if yyq4207[2] { + if yyq4212[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4217 := &x.ListMeta - yym4218 := z.EncBinary() - _ = yym4218 + yy4222 := &x.ListMeta + yym4223 := z.EncBinary() + _ = yym4223 if false { - } else if z.HasExtensions() && z.EncExt(yy4217) { + } else if z.HasExtensions() && z.EncExt(yy4222) { } else { - z.EncFallback(yy4217) + z.EncFallback(yy4222) } } } - if yyr4207 || yy2arr4207 { + if yyr4212 || yy2arr4212 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4220 := z.EncBinary() - _ = yym4220 + yym4225 := z.EncBinary() + _ = yym4225 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -52630,15 +52671,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4221 := z.EncBinary() - _ = yym4221 + yym4226 := z.EncBinary() + _ = yym4226 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4207 || yy2arr4207 { + if yyr4212 || yy2arr4212 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52651,25 +52692,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4222 := z.DecBinary() - _ = yym4222 + yym4227 := z.DecBinary() + _ = yym4227 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4223 := r.ContainerType() - if yyct4223 == codecSelferValueTypeMap1234 { - yyl4223 := r.ReadMapStart() - if yyl4223 == 0 { + yyct4228 := r.ContainerType() + if yyct4228 == codecSelferValueTypeMap1234 { + yyl4228 := r.ReadMapStart() + if yyl4228 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4223, d) + x.codecDecodeSelfFromMap(yyl4228, d) } - } else if yyct4223 == codecSelferValueTypeArray1234 { - yyl4223 := r.ReadArrayStart() - if yyl4223 == 0 { + } else if yyct4228 == codecSelferValueTypeArray1234 { + yyl4228 := r.ReadArrayStart() + if yyl4228 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4223, d) + x.codecDecodeSelfFromArray(yyl4228, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52681,12 +52722,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4224Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4224Slc - var yyhl4224 bool = l >= 0 - for yyj4224 := 0; ; yyj4224++ { - if yyhl4224 { - if yyj4224 >= l { + var yys4229Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4229Slc + var yyhl4229 bool = l >= 0 + for yyj4229 := 0; ; yyj4229++ { + if yyhl4229 { + if yyj4229 >= l { break } } else { @@ -52695,10 +52736,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4224Slc = r.DecodeBytes(yys4224Slc, true, true) - yys4224 := string(yys4224Slc) + yys4229Slc = r.DecodeBytes(yys4229Slc, true, true) + yys4229 := string(yys4229Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4224 { + switch yys4229 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52715,31 +52756,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4227 := &x.ListMeta - yym4228 := z.DecBinary() - _ = yym4228 + yyv4232 := &x.ListMeta + yym4233 := z.DecBinary() + _ = yym4233 if false { - } else if z.HasExtensions() && z.DecExt(yyv4227) { + } else if z.HasExtensions() && z.DecExt(yyv4232) { } else { - z.DecFallback(yyv4227, false) + z.DecFallback(yyv4232, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4229 := &x.Items - yym4230 := z.DecBinary() - _ = yym4230 + yyv4234 := &x.Items + yym4235 := z.DecBinary() + _ = yym4235 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4229), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4234), d) } } default: - z.DecStructFieldNotFound(-1, yys4224) - } // end switch yys4224 - } // end for yyj4224 + z.DecStructFieldNotFound(-1, yys4229) + } // end switch yys4229 + } // end for yyj4229 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52747,16 +52788,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4231 int - var yyb4231 bool - var yyhl4231 bool = l >= 0 - yyj4231++ - if yyhl4231 { - yyb4231 = yyj4231 > l + var yyj4236 int + var yyb4236 bool + var yyhl4236 bool = l >= 0 + yyj4236++ + if yyhl4236 { + yyb4236 = yyj4236 > l } else { - yyb4231 = r.CheckBreak() + yyb4236 = r.CheckBreak() } - if yyb4231 { + if yyb4236 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52766,13 +52807,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj4231++ - if yyhl4231 { - yyb4231 = yyj4231 > l + yyj4236++ + if yyhl4236 { + yyb4236 = yyj4236 > l } else { - yyb4231 = r.CheckBreak() + yyb4236 = r.CheckBreak() } - if yyb4231 { + if yyb4236 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52782,13 +52823,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj4231++ - if yyhl4231 { - yyb4231 = yyj4231 > l + yyj4236++ + if yyhl4236 { + yyb4236 = yyj4236 > l } else { - yyb4231 = r.CheckBreak() + yyb4236 = r.CheckBreak() } - if yyb4231 { + if yyb4236 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52796,22 +52837,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4234 := &x.ListMeta - yym4235 := z.DecBinary() - _ = yym4235 + yyv4239 := &x.ListMeta + yym4240 := z.DecBinary() + _ = yym4240 if false { - } else if z.HasExtensions() && z.DecExt(yyv4234) { + } else if z.HasExtensions() && z.DecExt(yyv4239) { } else { - z.DecFallback(yyv4234, false) + z.DecFallback(yyv4239, false) } } - yyj4231++ - if yyhl4231 { - yyb4231 = yyj4231 > l + yyj4236++ + if yyhl4236 { + yyb4236 = yyj4236 > l } else { - yyb4231 = r.CheckBreak() + yyb4236 = r.CheckBreak() } - if yyb4231 { + if yyb4236 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52819,26 +52860,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4236 := &x.Items - yym4237 := z.DecBinary() - _ = yym4237 + yyv4241 := &x.Items + yym4242 := z.DecBinary() + _ = yym4242 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4236), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4241), d) } } for { - yyj4231++ - if yyhl4231 { - yyb4231 = yyj4231 > l + yyj4236++ + if yyhl4236 { + yyb4236 = yyj4236 > l } else { - yyb4231 = r.CheckBreak() + yyb4236 = r.CheckBreak() } - if yyb4231 { + if yyb4236 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4231-1, "") + z.DecStructFieldNotFound(yyj4236-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52850,38 +52891,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4238 := z.EncBinary() - _ = yym4238 + yym4243 := z.EncBinary() + _ = yym4243 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4239 := !z.EncBinary() - yy2arr4239 := z.EncBasicHandle().StructToArray - var yyq4239 [6]bool - _, _, _ = yysep4239, yyq4239, yy2arr4239 - const yyr4239 bool = false - yyq4239[0] = x.Capabilities != nil - yyq4239[1] = x.Privileged != nil - yyq4239[2] = x.SELinuxOptions != nil - yyq4239[3] = x.RunAsUser != nil - yyq4239[4] = x.RunAsNonRoot != nil - yyq4239[5] = x.ReadOnlyRootFilesystem != nil - var yynn4239 int - if yyr4239 || yy2arr4239 { + yysep4244 := !z.EncBinary() + yy2arr4244 := z.EncBasicHandle().StructToArray + var yyq4244 [6]bool + _, _, _ = yysep4244, yyq4244, yy2arr4244 + const yyr4244 bool = false + yyq4244[0] = x.Capabilities != nil + yyq4244[1] = x.Privileged != nil + yyq4244[2] = x.SELinuxOptions != nil + yyq4244[3] = x.RunAsUser != nil + yyq4244[4] = x.RunAsNonRoot != nil + yyq4244[5] = x.ReadOnlyRootFilesystem != nil + var yynn4244 int + if yyr4244 || yy2arr4244 { r.EncodeArrayStart(6) } else { - yynn4239 = 0 - for _, b := range yyq4239 { + yynn4244 = 0 + for _, b := range yyq4244 { if b { - yynn4239++ + yynn4244++ } } - r.EncodeMapStart(yynn4239) - yynn4239 = 0 + r.EncodeMapStart(yynn4244) + yynn4244 = 0 } - if yyr4239 || yy2arr4239 { + if yyr4244 || yy2arr4244 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4239[0] { + if yyq4244[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -52891,7 +52932,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4239[0] { + if yyq4244[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -52902,44 +52943,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4239 || yy2arr4239 { + if yyr4244 || yy2arr4244 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4239[1] { + if yyq4244[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4242 := *x.Privileged - yym4243 := z.EncBinary() - _ = yym4243 + yy4247 := *x.Privileged + yym4248 := z.EncBinary() + _ = yym4248 if false { } else { - r.EncodeBool(bool(yy4242)) + r.EncodeBool(bool(yy4247)) } } } else { r.EncodeNil() } } else { - if yyq4239[1] { + if yyq4244[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4244 := *x.Privileged - yym4245 := z.EncBinary() - _ = yym4245 + yy4249 := *x.Privileged + yym4250 := z.EncBinary() + _ = yym4250 if false { } else { - r.EncodeBool(bool(yy4244)) + r.EncodeBool(bool(yy4249)) } } } } - if yyr4239 || yy2arr4239 { + if yyr4244 || yy2arr4244 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4239[2] { + if yyq4244[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -52949,7 +52990,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4239[2] { + if yyq4244[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -52960,112 +53001,112 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4239 || yy2arr4239 { + if yyr4244 || yy2arr4244 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4239[3] { + if yyq4244[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4248 := *x.RunAsUser - yym4249 := z.EncBinary() - _ = yym4249 + yy4253 := *x.RunAsUser + yym4254 := z.EncBinary() + _ = yym4254 if false { } else { - r.EncodeInt(int64(yy4248)) + r.EncodeInt(int64(yy4253)) } } } else { r.EncodeNil() } } else { - if yyq4239[3] { + if yyq4244[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4250 := *x.RunAsUser - yym4251 := z.EncBinary() - _ = yym4251 + yy4255 := *x.RunAsUser + yym4256 := z.EncBinary() + _ = yym4256 if false { } else { - r.EncodeInt(int64(yy4250)) + r.EncodeInt(int64(yy4255)) } } } } - if yyr4239 || yy2arr4239 { + if yyr4244 || yy2arr4244 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4239[4] { + if yyq4244[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4253 := *x.RunAsNonRoot - yym4254 := z.EncBinary() - _ = yym4254 + yy4258 := *x.RunAsNonRoot + yym4259 := z.EncBinary() + _ = yym4259 if false { } else { - r.EncodeBool(bool(yy4253)) + r.EncodeBool(bool(yy4258)) } } } else { r.EncodeNil() } } else { - if yyq4239[4] { + if yyq4244[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4255 := *x.RunAsNonRoot - yym4256 := z.EncBinary() - _ = yym4256 + yy4260 := *x.RunAsNonRoot + yym4261 := z.EncBinary() + _ = yym4261 if false { } else { - r.EncodeBool(bool(yy4255)) + r.EncodeBool(bool(yy4260)) } } } } - if yyr4239 || yy2arr4239 { + if yyr4244 || yy2arr4244 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4239[5] { + if yyq4244[5] { if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4258 := *x.ReadOnlyRootFilesystem - yym4259 := z.EncBinary() - _ = yym4259 + yy4263 := *x.ReadOnlyRootFilesystem + yym4264 := z.EncBinary() + _ = yym4264 if false { } else { - r.EncodeBool(bool(yy4258)) + r.EncodeBool(bool(yy4263)) } } } else { r.EncodeNil() } } else { - if yyq4239[5] { + if yyq4244[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4260 := *x.ReadOnlyRootFilesystem - yym4261 := z.EncBinary() - _ = yym4261 + yy4265 := *x.ReadOnlyRootFilesystem + yym4266 := z.EncBinary() + _ = yym4266 if false { } else { - r.EncodeBool(bool(yy4260)) + r.EncodeBool(bool(yy4265)) } } } } - if yyr4239 || yy2arr4239 { + if yyr4244 || yy2arr4244 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53078,25 +53119,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4262 := z.DecBinary() - _ = yym4262 + yym4267 := z.DecBinary() + _ = yym4267 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4263 := r.ContainerType() - if yyct4263 == codecSelferValueTypeMap1234 { - yyl4263 := r.ReadMapStart() - if yyl4263 == 0 { + yyct4268 := r.ContainerType() + if yyct4268 == codecSelferValueTypeMap1234 { + yyl4268 := r.ReadMapStart() + if yyl4268 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4263, d) + x.codecDecodeSelfFromMap(yyl4268, d) } - } else if yyct4263 == codecSelferValueTypeArray1234 { - yyl4263 := r.ReadArrayStart() - if yyl4263 == 0 { + } else if yyct4268 == codecSelferValueTypeArray1234 { + yyl4268 := r.ReadArrayStart() + if yyl4268 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4263, d) + x.codecDecodeSelfFromArray(yyl4268, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53108,12 +53149,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4264Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4264Slc - var yyhl4264 bool = l >= 0 - for yyj4264 := 0; ; yyj4264++ { - if yyhl4264 { - if yyj4264 >= l { + var yys4269Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4269Slc + var yyhl4269 bool = l >= 0 + for yyj4269 := 0; ; yyj4269++ { + if yyhl4269 { + if yyj4269 >= l { break } } else { @@ -53122,10 +53163,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4264Slc = r.DecodeBytes(yys4264Slc, true, true) - yys4264 := string(yys4264Slc) + yys4269Slc = r.DecodeBytes(yys4269Slc, true, true) + yys4269 := string(yys4269Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4264 { + switch yys4269 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -53146,8 +53187,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4267 := z.DecBinary() - _ = yym4267 + yym4272 := z.DecBinary() + _ = yym4272 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -53173,8 +53214,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4270 := z.DecBinary() - _ = yym4270 + yym4275 := z.DecBinary() + _ = yym4275 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -53189,8 +53230,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4272 := z.DecBinary() - _ = yym4272 + yym4277 := z.DecBinary() + _ = yym4277 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -53205,17 +53246,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4274 := z.DecBinary() - _ = yym4274 + yym4279 := z.DecBinary() + _ = yym4279 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4264) - } // end switch yys4264 - } // end for yyj4264 + z.DecStructFieldNotFound(-1, yys4269) + } // end switch yys4269 + } // end for yyj4269 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53223,16 +53264,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4275 int - var yyb4275 bool - var yyhl4275 bool = l >= 0 - yyj4275++ - if yyhl4275 { - yyb4275 = yyj4275 > l + var yyj4280 int + var yyb4280 bool + var yyhl4280 bool = l >= 0 + yyj4280++ + if yyhl4280 { + yyb4280 = yyj4280 > l } else { - yyb4275 = r.CheckBreak() + yyb4280 = r.CheckBreak() } - if yyb4275 { + if yyb4280 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53247,13 +53288,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4275++ - if yyhl4275 { - yyb4275 = yyj4275 > l + yyj4280++ + if yyhl4280 { + yyb4280 = yyj4280 > l } else { - yyb4275 = r.CheckBreak() + yyb4280 = r.CheckBreak() } - if yyb4275 { + if yyb4280 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53266,20 +53307,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4278 := z.DecBinary() - _ = yym4278 + yym4283 := z.DecBinary() + _ = yym4283 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4275++ - if yyhl4275 { - yyb4275 = yyj4275 > l + yyj4280++ + if yyhl4280 { + yyb4280 = yyj4280 > l } else { - yyb4275 = r.CheckBreak() + yyb4280 = r.CheckBreak() } - if yyb4275 { + if yyb4280 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53294,13 +53335,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4275++ - if yyhl4275 { - yyb4275 = yyj4275 > l + yyj4280++ + if yyhl4280 { + yyb4280 = yyj4280 > l } else { - yyb4275 = r.CheckBreak() + yyb4280 = r.CheckBreak() } - if yyb4275 { + if yyb4280 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53313,20 +53354,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4281 := z.DecBinary() - _ = yym4281 + yym4286 := z.DecBinary() + _ = yym4286 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4275++ - if yyhl4275 { - yyb4275 = yyj4275 > l + yyj4280++ + if yyhl4280 { + yyb4280 = yyj4280 > l } else { - yyb4275 = r.CheckBreak() + yyb4280 = r.CheckBreak() } - if yyb4275 { + if yyb4280 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53339,20 +53380,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4283 := z.DecBinary() - _ = yym4283 + yym4288 := z.DecBinary() + _ = yym4288 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4275++ - if yyhl4275 { - yyb4275 = yyj4275 > l + yyj4280++ + if yyhl4280 { + yyb4280 = yyj4280 > l } else { - yyb4275 = r.CheckBreak() + yyb4280 = r.CheckBreak() } - if yyb4275 { + if yyb4280 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53365,25 +53406,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4285 := z.DecBinary() - _ = yym4285 + yym4290 := z.DecBinary() + _ = yym4290 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4275++ - if yyhl4275 { - yyb4275 = yyj4275 > l + yyj4280++ + if yyhl4280 { + yyb4280 = yyj4280 > l } else { - yyb4275 = r.CheckBreak() + yyb4280 = r.CheckBreak() } - if yyb4275 { + if yyb4280 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4275-1, "") + z.DecStructFieldNotFound(yyj4280-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53395,38 +53436,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4286 := z.EncBinary() - _ = yym4286 + yym4291 := z.EncBinary() + _ = yym4291 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4287 := !z.EncBinary() - yy2arr4287 := z.EncBasicHandle().StructToArray - var yyq4287 [4]bool - _, _, _ = yysep4287, yyq4287, yy2arr4287 - const yyr4287 bool = false - yyq4287[0] = x.User != "" - yyq4287[1] = x.Role != "" - yyq4287[2] = x.Type != "" - yyq4287[3] = x.Level != "" - var yynn4287 int - if yyr4287 || yy2arr4287 { + yysep4292 := !z.EncBinary() + yy2arr4292 := z.EncBasicHandle().StructToArray + var yyq4292 [4]bool + _, _, _ = yysep4292, yyq4292, yy2arr4292 + const yyr4292 bool = false + yyq4292[0] = x.User != "" + yyq4292[1] = x.Role != "" + yyq4292[2] = x.Type != "" + yyq4292[3] = x.Level != "" + var yynn4292 int + if yyr4292 || yy2arr4292 { r.EncodeArrayStart(4) } else { - yynn4287 = 0 - for _, b := range yyq4287 { + yynn4292 = 0 + for _, b := range yyq4292 { if b { - yynn4287++ + yynn4292++ } } - r.EncodeMapStart(yynn4287) - yynn4287 = 0 + r.EncodeMapStart(yynn4292) + yynn4292 = 0 } - if yyr4287 || yy2arr4287 { + if yyr4292 || yy2arr4292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4287[0] { - yym4289 := z.EncBinary() - _ = yym4289 + if yyq4292[0] { + yym4294 := z.EncBinary() + _ = yym4294 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -53435,23 +53476,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4287[0] { + if yyq4292[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4290 := z.EncBinary() - _ = yym4290 + yym4295 := z.EncBinary() + _ = yym4295 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4287 || yy2arr4287 { + if yyr4292 || yy2arr4292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4287[1] { - yym4292 := z.EncBinary() - _ = yym4292 + if yyq4292[1] { + yym4297 := z.EncBinary() + _ = yym4297 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -53460,23 +53501,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4287[1] { + if yyq4292[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4293 := z.EncBinary() - _ = yym4293 + yym4298 := z.EncBinary() + _ = yym4298 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr4287 || yy2arr4287 { + if yyr4292 || yy2arr4292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4287[2] { - yym4295 := z.EncBinary() - _ = yym4295 + if yyq4292[2] { + yym4300 := z.EncBinary() + _ = yym4300 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -53485,23 +53526,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4287[2] { + if yyq4292[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4296 := z.EncBinary() - _ = yym4296 + yym4301 := z.EncBinary() + _ = yym4301 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4287 || yy2arr4287 { + if yyr4292 || yy2arr4292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4287[3] { - yym4298 := z.EncBinary() - _ = yym4298 + if yyq4292[3] { + yym4303 := z.EncBinary() + _ = yym4303 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -53510,19 +53551,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4287[3] { + if yyq4292[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4299 := z.EncBinary() - _ = yym4299 + yym4304 := z.EncBinary() + _ = yym4304 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4287 || yy2arr4287 { + if yyr4292 || yy2arr4292 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53535,25 +53576,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4300 := z.DecBinary() - _ = yym4300 + yym4305 := z.DecBinary() + _ = yym4305 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4301 := r.ContainerType() - if yyct4301 == codecSelferValueTypeMap1234 { - yyl4301 := r.ReadMapStart() - if yyl4301 == 0 { + yyct4306 := r.ContainerType() + if yyct4306 == codecSelferValueTypeMap1234 { + yyl4306 := r.ReadMapStart() + if yyl4306 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4301, d) + x.codecDecodeSelfFromMap(yyl4306, d) } - } else if yyct4301 == codecSelferValueTypeArray1234 { - yyl4301 := r.ReadArrayStart() - if yyl4301 == 0 { + } else if yyct4306 == codecSelferValueTypeArray1234 { + yyl4306 := r.ReadArrayStart() + if yyl4306 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4301, d) + x.codecDecodeSelfFromArray(yyl4306, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53565,12 +53606,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4302Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4302Slc - var yyhl4302 bool = l >= 0 - for yyj4302 := 0; ; yyj4302++ { - if yyhl4302 { - if yyj4302 >= l { + var yys4307Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4307Slc + var yyhl4307 bool = l >= 0 + for yyj4307 := 0; ; yyj4307++ { + if yyhl4307 { + if yyj4307 >= l { break } } else { @@ -53579,10 +53620,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4302Slc = r.DecodeBytes(yys4302Slc, true, true) - yys4302 := string(yys4302Slc) + yys4307Slc = r.DecodeBytes(yys4307Slc, true, true) + yys4307 := string(yys4307Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4302 { + switch yys4307 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -53608,9 +53649,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4302) - } // end switch yys4302 - } // end for yyj4302 + z.DecStructFieldNotFound(-1, yys4307) + } // end switch yys4307 + } // end for yyj4307 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53618,16 +53659,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4307 int - var yyb4307 bool - var yyhl4307 bool = l >= 0 - yyj4307++ - if yyhl4307 { - yyb4307 = yyj4307 > l + var yyj4312 int + var yyb4312 bool + var yyhl4312 bool = l >= 0 + yyj4312++ + if yyhl4312 { + yyb4312 = yyj4312 > l } else { - yyb4307 = r.CheckBreak() + yyb4312 = r.CheckBreak() } - if yyb4307 { + if yyb4312 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53637,13 +53678,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4307++ - if yyhl4307 { - yyb4307 = yyj4307 > l + yyj4312++ + if yyhl4312 { + yyb4312 = yyj4312 > l } else { - yyb4307 = r.CheckBreak() + yyb4312 = r.CheckBreak() } - if yyb4307 { + if yyb4312 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53653,13 +53694,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4307++ - if yyhl4307 { - yyb4307 = yyj4307 > l + yyj4312++ + if yyhl4312 { + yyb4312 = yyj4312 > l } else { - yyb4307 = r.CheckBreak() + yyb4312 = r.CheckBreak() } - if yyb4307 { + if yyb4312 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53669,13 +53710,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4307++ - if yyhl4307 { - yyb4307 = yyj4307 > l + yyj4312++ + if yyhl4312 { + yyb4312 = yyj4312 > l } else { - yyb4307 = r.CheckBreak() + yyb4312 = r.CheckBreak() } - if yyb4307 { + if yyb4312 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53686,17 +53727,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4307++ - if yyhl4307 { - yyb4307 = yyj4307 > l + yyj4312++ + if yyhl4312 { + yyb4312 = yyj4312 > l } else { - yyb4307 = r.CheckBreak() + yyb4312 = r.CheckBreak() } - if yyb4307 { + if yyb4312 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4307-1, "") + z.DecStructFieldNotFound(yyj4312-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53708,37 +53749,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4312 := z.EncBinary() - _ = yym4312 + yym4317 := z.EncBinary() + _ = yym4317 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4313 := !z.EncBinary() - yy2arr4313 := z.EncBasicHandle().StructToArray - var yyq4313 [5]bool - _, _, _ = yysep4313, yyq4313, yy2arr4313 - const yyr4313 bool = false - yyq4313[0] = x.Kind != "" - yyq4313[1] = x.APIVersion != "" - yyq4313[2] = true - var yynn4313 int - if yyr4313 || yy2arr4313 { + yysep4318 := !z.EncBinary() + yy2arr4318 := z.EncBasicHandle().StructToArray + var yyq4318 [5]bool + _, _, _ = yysep4318, yyq4318, yy2arr4318 + const yyr4318 bool = false + yyq4318[0] = x.Kind != "" + yyq4318[1] = x.APIVersion != "" + yyq4318[2] = true + var yynn4318 int + if yyr4318 || yy2arr4318 { r.EncodeArrayStart(5) } else { - yynn4313 = 2 - for _, b := range yyq4313 { + yynn4318 = 2 + for _, b := range yyq4318 { if b { - yynn4313++ + yynn4318++ } } - r.EncodeMapStart(yynn4313) - yynn4313 = 0 + r.EncodeMapStart(yynn4318) + yynn4318 = 0 } - if yyr4313 || yy2arr4313 { + if yyr4318 || yy2arr4318 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4313[0] { - yym4315 := z.EncBinary() - _ = yym4315 + if yyq4318[0] { + yym4320 := z.EncBinary() + _ = yym4320 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53747,23 +53788,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4313[0] { + if yyq4318[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4316 := z.EncBinary() - _ = yym4316 + yym4321 := z.EncBinary() + _ = yym4321 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4313 || yy2arr4313 { + if yyr4318 || yy2arr4318 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4313[1] { - yym4318 := z.EncBinary() - _ = yym4318 + if yyq4318[1] { + yym4323 := z.EncBinary() + _ = yym4323 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53772,39 +53813,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4313[1] { + if yyq4318[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4319 := z.EncBinary() - _ = yym4319 + yym4324 := z.EncBinary() + _ = yym4324 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4313 || yy2arr4313 { + if yyr4318 || yy2arr4318 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4313[2] { - yy4321 := &x.ObjectMeta - yy4321.CodecEncodeSelf(e) + if yyq4318[2] { + yy4326 := &x.ObjectMeta + yy4326.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4313[2] { + if yyq4318[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4322 := &x.ObjectMeta - yy4322.CodecEncodeSelf(e) + yy4327 := &x.ObjectMeta + yy4327.CodecEncodeSelf(e) } } - if yyr4313 || yy2arr4313 { + if yyr4318 || yy2arr4318 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4324 := z.EncBinary() - _ = yym4324 + yym4329 := z.EncBinary() + _ = yym4329 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -53813,20 +53854,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4325 := z.EncBinary() - _ = yym4325 + yym4330 := z.EncBinary() + _ = yym4330 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4313 || yy2arr4313 { + if yyr4318 || yy2arr4318 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4327 := z.EncBinary() - _ = yym4327 + yym4332 := z.EncBinary() + _ = yym4332 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -53839,15 +53880,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4328 := z.EncBinary() - _ = yym4328 + yym4333 := z.EncBinary() + _ = yym4333 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4313 || yy2arr4313 { + if yyr4318 || yy2arr4318 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53860,25 +53901,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4329 := z.DecBinary() - _ = yym4329 + yym4334 := z.DecBinary() + _ = yym4334 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4330 := r.ContainerType() - if yyct4330 == codecSelferValueTypeMap1234 { - yyl4330 := r.ReadMapStart() - if yyl4330 == 0 { + yyct4335 := r.ContainerType() + if yyct4335 == codecSelferValueTypeMap1234 { + yyl4335 := r.ReadMapStart() + if yyl4335 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4330, d) + x.codecDecodeSelfFromMap(yyl4335, d) } - } else if yyct4330 == codecSelferValueTypeArray1234 { - yyl4330 := r.ReadArrayStart() - if yyl4330 == 0 { + } else if yyct4335 == codecSelferValueTypeArray1234 { + yyl4335 := r.ReadArrayStart() + if yyl4335 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4330, d) + x.codecDecodeSelfFromArray(yyl4335, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53890,12 +53931,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4331Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4331Slc - var yyhl4331 bool = l >= 0 - for yyj4331 := 0; ; yyj4331++ { - if yyhl4331 { - if yyj4331 >= l { + var yys4336Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4336Slc + var yyhl4336 bool = l >= 0 + for yyj4336 := 0; ; yyj4336++ { + if yyhl4336 { + if yyj4336 >= l { break } } else { @@ -53904,10 +53945,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4331Slc = r.DecodeBytes(yys4331Slc, true, true) - yys4331 := string(yys4331Slc) + yys4336Slc = r.DecodeBytes(yys4336Slc, true, true) + yys4336 := string(yys4336Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4331 { + switch yys4336 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53924,8 +53965,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4334 := &x.ObjectMeta - yyv4334.CodecDecodeSelf(d) + yyv4339 := &x.ObjectMeta + yyv4339.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -53937,18 +53978,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4336 := &x.Data - yym4337 := z.DecBinary() - _ = yym4337 + yyv4341 := &x.Data + yym4342 := z.DecBinary() + _ = yym4342 if false { } else { - *yyv4336 = r.DecodeBytes(*(*[]byte)(yyv4336), false, false) + *yyv4341 = r.DecodeBytes(*(*[]byte)(yyv4341), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4331) - } // end switch yys4331 - } // end for yyj4331 + z.DecStructFieldNotFound(-1, yys4336) + } // end switch yys4336 + } // end for yyj4336 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53956,16 +53997,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4338 int - var yyb4338 bool - var yyhl4338 bool = l >= 0 - yyj4338++ - if yyhl4338 { - yyb4338 = yyj4338 > l + var yyj4343 int + var yyb4343 bool + var yyhl4343 bool = l >= 0 + yyj4343++ + if yyhl4343 { + yyb4343 = yyj4343 > l } else { - yyb4338 = r.CheckBreak() + yyb4343 = r.CheckBreak() } - if yyb4338 { + if yyb4343 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53975,13 +54016,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4338++ - if yyhl4338 { - yyb4338 = yyj4338 > l + yyj4343++ + if yyhl4343 { + yyb4343 = yyj4343 > l } else { - yyb4338 = r.CheckBreak() + yyb4343 = r.CheckBreak() } - if yyb4338 { + if yyb4343 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53991,13 +54032,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4338++ - if yyhl4338 { - yyb4338 = yyj4338 > l + yyj4343++ + if yyhl4343 { + yyb4343 = yyj4343 > l } else { - yyb4338 = r.CheckBreak() + yyb4343 = r.CheckBreak() } - if yyb4338 { + if yyb4343 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54005,16 +54046,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4341 := &x.ObjectMeta - yyv4341.CodecDecodeSelf(d) + yyv4346 := &x.ObjectMeta + yyv4346.CodecDecodeSelf(d) } - yyj4338++ - if yyhl4338 { - yyb4338 = yyj4338 > l + yyj4343++ + if yyhl4343 { + yyb4343 = yyj4343 > l } else { - yyb4338 = r.CheckBreak() + yyb4343 = r.CheckBreak() } - if yyb4338 { + if yyb4343 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54024,13 +54065,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4338++ - if yyhl4338 { - yyb4338 = yyj4338 > l + yyj4343++ + if yyhl4343 { + yyb4343 = yyj4343 > l } else { - yyb4338 = r.CheckBreak() + yyb4343 = r.CheckBreak() } - if yyb4338 { + if yyb4343 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54038,26 +54079,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4343 := &x.Data - yym4344 := z.DecBinary() - _ = yym4344 + yyv4348 := &x.Data + yym4349 := z.DecBinary() + _ = yym4349 if false { } else { - *yyv4343 = r.DecodeBytes(*(*[]byte)(yyv4343), false, false) + *yyv4348 = r.DecodeBytes(*(*[]byte)(yyv4348), false, false) } } for { - yyj4338++ - if yyhl4338 { - yyb4338 = yyj4338 > l + yyj4343++ + if yyhl4343 { + yyb4343 = yyj4343 > l } else { - yyb4338 = r.CheckBreak() + yyb4343 = r.CheckBreak() } - if yyb4338 { + if yyb4343 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4338-1, "") + z.DecStructFieldNotFound(yyj4343-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54067,10 +54108,10 @@ func (x codecSelfer1234) encSliceOwnerReference(v []OwnerReference, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4345 := range v { + for _, yyv4350 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4346 := &yyv4345 - yy4346.CodecEncodeSelf(e) + yy4351 := &yyv4350 + yy4351.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54080,83 +54121,83 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4347 := *v - yyh4347, yyl4347 := z.DecSliceHelperStart() - var yyc4347 bool - if yyl4347 == 0 { - if yyv4347 == nil { - yyv4347 = []OwnerReference{} - yyc4347 = true - } else if len(yyv4347) != 0 { - yyv4347 = yyv4347[:0] - yyc4347 = true + yyv4352 := *v + yyh4352, yyl4352 := z.DecSliceHelperStart() + var yyc4352 bool + if yyl4352 == 0 { + if yyv4352 == nil { + yyv4352 = []OwnerReference{} + yyc4352 = true + } else if len(yyv4352) != 0 { + yyv4352 = yyv4352[:0] + yyc4352 = true } - } else if yyl4347 > 0 { - var yyrr4347, yyrl4347 int - var yyrt4347 bool - if yyl4347 > cap(yyv4347) { + } else if yyl4352 > 0 { + var yyrr4352, yyrl4352 int + var yyrt4352 bool + if yyl4352 > cap(yyv4352) { - yyrg4347 := len(yyv4347) > 0 - yyv24347 := yyv4347 - yyrl4347, yyrt4347 = z.DecInferLen(yyl4347, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4347 { - if yyrl4347 <= cap(yyv4347) { - yyv4347 = yyv4347[:yyrl4347] + yyrg4352 := len(yyv4352) > 0 + yyv24352 := yyv4352 + yyrl4352, yyrt4352 = z.DecInferLen(yyl4352, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4352 { + if yyrl4352 <= cap(yyv4352) { + yyv4352 = yyv4352[:yyrl4352] } else { - yyv4347 = make([]OwnerReference, yyrl4347) + yyv4352 = make([]OwnerReference, yyrl4352) } } else { - yyv4347 = make([]OwnerReference, yyrl4347) + yyv4352 = make([]OwnerReference, yyrl4352) } - yyc4347 = true - yyrr4347 = len(yyv4347) - if yyrg4347 { - copy(yyv4347, yyv24347) + yyc4352 = true + yyrr4352 = len(yyv4352) + if yyrg4352 { + copy(yyv4352, yyv24352) } - } else if yyl4347 != len(yyv4347) { - yyv4347 = yyv4347[:yyl4347] - yyc4347 = true + } else if yyl4352 != len(yyv4352) { + yyv4352 = yyv4352[:yyl4352] + yyc4352 = true } - yyj4347 := 0 - for ; yyj4347 < yyrr4347; yyj4347++ { - yyh4347.ElemContainerState(yyj4347) + yyj4352 := 0 + for ; yyj4352 < yyrr4352; yyj4352++ { + yyh4352.ElemContainerState(yyj4352) if r.TryDecodeAsNil() { - yyv4347[yyj4347] = OwnerReference{} + yyv4352[yyj4352] = OwnerReference{} } else { - yyv4348 := &yyv4347[yyj4347] - yyv4348.CodecDecodeSelf(d) + yyv4353 := &yyv4352[yyj4352] + yyv4353.CodecDecodeSelf(d) } } - if yyrt4347 { - for ; yyj4347 < yyl4347; yyj4347++ { - yyv4347 = append(yyv4347, OwnerReference{}) - yyh4347.ElemContainerState(yyj4347) - if r.TryDecodeAsNil() { - yyv4347[yyj4347] = OwnerReference{} + if yyrt4352 { + for ; yyj4352 < yyl4352; yyj4352++ { + yyv4352 = append(yyv4352, OwnerReference{}) + yyh4352.ElemContainerState(yyj4352) + if r.TryDecodeAsNil() { + yyv4352[yyj4352] = OwnerReference{} } else { - yyv4349 := &yyv4347[yyj4347] - yyv4349.CodecDecodeSelf(d) + yyv4354 := &yyv4352[yyj4352] + yyv4354.CodecDecodeSelf(d) } } } } else { - yyj4347 := 0 - for ; !r.CheckBreak(); yyj4347++ { + yyj4352 := 0 + for ; !r.CheckBreak(); yyj4352++ { - if yyj4347 >= len(yyv4347) { - yyv4347 = append(yyv4347, OwnerReference{}) // var yyz4347 OwnerReference - yyc4347 = true + if yyj4352 >= len(yyv4352) { + yyv4352 = append(yyv4352, OwnerReference{}) // var yyz4352 OwnerReference + yyc4352 = true } - yyh4347.ElemContainerState(yyj4347) - if yyj4347 < len(yyv4347) { + yyh4352.ElemContainerState(yyj4352) + if yyj4352 < len(yyv4352) { if r.TryDecodeAsNil() { - yyv4347[yyj4347] = OwnerReference{} + yyv4352[yyj4352] = OwnerReference{} } else { - yyv4350 := &yyv4347[yyj4347] - yyv4350.CodecDecodeSelf(d) + yyv4355 := &yyv4352[yyj4352] + yyv4355.CodecDecodeSelf(d) } } else { @@ -54164,17 +54205,17 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 } } - if yyj4347 < len(yyv4347) { - yyv4347 = yyv4347[:yyj4347] - yyc4347 = true - } else if yyj4347 == 0 && yyv4347 == nil { - yyv4347 = []OwnerReference{} - yyc4347 = true + if yyj4352 < len(yyv4352) { + yyv4352 = yyv4352[:yyj4352] + yyc4352 = true + } else if yyj4352 == 0 && yyv4352 == nil { + yyv4352 = []OwnerReference{} + yyc4352 = true } } - yyh4347.End() - if yyc4347 { - *v = yyv4347 + yyh4352.End() + if yyc4352 { + *v = yyv4352 } } @@ -54183,9 +54224,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4351 := range v { + for _, yyv4356 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4351.CodecEncodeSelf(e) + yyv4356.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54195,75 +54236,75 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4352 := *v - yyh4352, yyl4352 := z.DecSliceHelperStart() - var yyc4352 bool - if yyl4352 == 0 { - if yyv4352 == nil { - yyv4352 = []PersistentVolumeAccessMode{} - yyc4352 = true - } else if len(yyv4352) != 0 { - yyv4352 = yyv4352[:0] - yyc4352 = true + yyv4357 := *v + yyh4357, yyl4357 := z.DecSliceHelperStart() + var yyc4357 bool + if yyl4357 == 0 { + if yyv4357 == nil { + yyv4357 = []PersistentVolumeAccessMode{} + yyc4357 = true + } else if len(yyv4357) != 0 { + yyv4357 = yyv4357[:0] + yyc4357 = true } - } else if yyl4352 > 0 { - var yyrr4352, yyrl4352 int - var yyrt4352 bool - if yyl4352 > cap(yyv4352) { + } else if yyl4357 > 0 { + var yyrr4357, yyrl4357 int + var yyrt4357 bool + if yyl4357 > cap(yyv4357) { - yyrl4352, yyrt4352 = z.DecInferLen(yyl4352, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4352 { - if yyrl4352 <= cap(yyv4352) { - yyv4352 = yyv4352[:yyrl4352] + yyrl4357, yyrt4357 = z.DecInferLen(yyl4357, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4357 { + if yyrl4357 <= cap(yyv4357) { + yyv4357 = yyv4357[:yyrl4357] } else { - yyv4352 = make([]PersistentVolumeAccessMode, yyrl4352) + yyv4357 = make([]PersistentVolumeAccessMode, yyrl4357) } } else { - yyv4352 = make([]PersistentVolumeAccessMode, yyrl4352) + yyv4357 = make([]PersistentVolumeAccessMode, yyrl4357) } - yyc4352 = true - yyrr4352 = len(yyv4352) - } else if yyl4352 != len(yyv4352) { - yyv4352 = yyv4352[:yyl4352] - yyc4352 = true + yyc4357 = true + yyrr4357 = len(yyv4357) + } else if yyl4357 != len(yyv4357) { + yyv4357 = yyv4357[:yyl4357] + yyc4357 = true } - yyj4352 := 0 - for ; yyj4352 < yyrr4352; yyj4352++ { - yyh4352.ElemContainerState(yyj4352) + yyj4357 := 0 + for ; yyj4357 < yyrr4357; yyj4357++ { + yyh4357.ElemContainerState(yyj4357) if r.TryDecodeAsNil() { - yyv4352[yyj4352] = "" + yyv4357[yyj4357] = "" } else { - yyv4352[yyj4352] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4357[yyj4357] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt4352 { - for ; yyj4352 < yyl4352; yyj4352++ { - yyv4352 = append(yyv4352, "") - yyh4352.ElemContainerState(yyj4352) + if yyrt4357 { + for ; yyj4357 < yyl4357; yyj4357++ { + yyv4357 = append(yyv4357, "") + yyh4357.ElemContainerState(yyj4357) if r.TryDecodeAsNil() { - yyv4352[yyj4352] = "" + yyv4357[yyj4357] = "" } else { - yyv4352[yyj4352] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4357[yyj4357] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj4352 := 0 - for ; !r.CheckBreak(); yyj4352++ { + yyj4357 := 0 + for ; !r.CheckBreak(); yyj4357++ { - if yyj4352 >= len(yyv4352) { - yyv4352 = append(yyv4352, "") // var yyz4352 PersistentVolumeAccessMode - yyc4352 = true + if yyj4357 >= len(yyv4357) { + yyv4357 = append(yyv4357, "") // var yyz4357 PersistentVolumeAccessMode + yyc4357 = true } - yyh4352.ElemContainerState(yyj4352) - if yyj4352 < len(yyv4352) { + yyh4357.ElemContainerState(yyj4357) + if yyj4357 < len(yyv4357) { if r.TryDecodeAsNil() { - yyv4352[yyj4352] = "" + yyv4357[yyj4357] = "" } else { - yyv4352[yyj4352] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4357[yyj4357] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -54271,17 +54312,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } - if yyj4352 < len(yyv4352) { - yyv4352 = yyv4352[:yyj4352] - yyc4352 = true - } else if yyj4352 == 0 && yyv4352 == nil { - yyv4352 = []PersistentVolumeAccessMode{} - yyc4352 = true + if yyj4357 < len(yyv4357) { + yyv4357 = yyv4357[:yyj4357] + yyc4357 = true + } else if yyj4357 == 0 && yyv4357 == nil { + yyv4357 = []PersistentVolumeAccessMode{} + yyc4357 = true } } - yyh4352.End() - if yyc4352 { - *v = yyv4352 + yyh4357.End() + if yyc4357 { + *v = yyv4357 } } @@ -54290,10 +54331,10 @@ func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4356 := range v { + for _, yyv4361 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4357 := &yyv4356 - yy4357.CodecEncodeSelf(e) + yy4362 := &yyv4361 + yy4362.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54303,83 +54344,83 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4358 := *v - yyh4358, yyl4358 := z.DecSliceHelperStart() - var yyc4358 bool - if yyl4358 == 0 { - if yyv4358 == nil { - yyv4358 = []PersistentVolume{} - yyc4358 = true - } else if len(yyv4358) != 0 { - yyv4358 = yyv4358[:0] - yyc4358 = true + yyv4363 := *v + yyh4363, yyl4363 := z.DecSliceHelperStart() + var yyc4363 bool + if yyl4363 == 0 { + if yyv4363 == nil { + yyv4363 = []PersistentVolume{} + yyc4363 = true + } else if len(yyv4363) != 0 { + yyv4363 = yyv4363[:0] + yyc4363 = true } - } else if yyl4358 > 0 { - var yyrr4358, yyrl4358 int - var yyrt4358 bool - if yyl4358 > cap(yyv4358) { + } else if yyl4363 > 0 { + var yyrr4363, yyrl4363 int + var yyrt4363 bool + if yyl4363 > cap(yyv4363) { - yyrg4358 := len(yyv4358) > 0 - yyv24358 := yyv4358 - yyrl4358, yyrt4358 = z.DecInferLen(yyl4358, z.DecBasicHandle().MaxInitLen, 456) - if yyrt4358 { - if yyrl4358 <= cap(yyv4358) { - yyv4358 = yyv4358[:yyrl4358] + yyrg4363 := len(yyv4363) > 0 + yyv24363 := yyv4363 + yyrl4363, yyrt4363 = z.DecInferLen(yyl4363, z.DecBasicHandle().MaxInitLen, 456) + if yyrt4363 { + if yyrl4363 <= cap(yyv4363) { + yyv4363 = yyv4363[:yyrl4363] } else { - yyv4358 = make([]PersistentVolume, yyrl4358) + yyv4363 = make([]PersistentVolume, yyrl4363) } } else { - yyv4358 = make([]PersistentVolume, yyrl4358) + yyv4363 = make([]PersistentVolume, yyrl4363) } - yyc4358 = true - yyrr4358 = len(yyv4358) - if yyrg4358 { - copy(yyv4358, yyv24358) + yyc4363 = true + yyrr4363 = len(yyv4363) + if yyrg4363 { + copy(yyv4363, yyv24363) } - } else if yyl4358 != len(yyv4358) { - yyv4358 = yyv4358[:yyl4358] - yyc4358 = true + } else if yyl4363 != len(yyv4363) { + yyv4363 = yyv4363[:yyl4363] + yyc4363 = true } - yyj4358 := 0 - for ; yyj4358 < yyrr4358; yyj4358++ { - yyh4358.ElemContainerState(yyj4358) + yyj4363 := 0 + for ; yyj4363 < yyrr4363; yyj4363++ { + yyh4363.ElemContainerState(yyj4363) if r.TryDecodeAsNil() { - yyv4358[yyj4358] = PersistentVolume{} + yyv4363[yyj4363] = PersistentVolume{} } else { - yyv4359 := &yyv4358[yyj4358] - yyv4359.CodecDecodeSelf(d) + yyv4364 := &yyv4363[yyj4363] + yyv4364.CodecDecodeSelf(d) } } - if yyrt4358 { - for ; yyj4358 < yyl4358; yyj4358++ { - yyv4358 = append(yyv4358, PersistentVolume{}) - yyh4358.ElemContainerState(yyj4358) + if yyrt4363 { + for ; yyj4363 < yyl4363; yyj4363++ { + yyv4363 = append(yyv4363, PersistentVolume{}) + yyh4363.ElemContainerState(yyj4363) if r.TryDecodeAsNil() { - yyv4358[yyj4358] = PersistentVolume{} + yyv4363[yyj4363] = PersistentVolume{} } else { - yyv4360 := &yyv4358[yyj4358] - yyv4360.CodecDecodeSelf(d) + yyv4365 := &yyv4363[yyj4363] + yyv4365.CodecDecodeSelf(d) } } } } else { - yyj4358 := 0 - for ; !r.CheckBreak(); yyj4358++ { + yyj4363 := 0 + for ; !r.CheckBreak(); yyj4363++ { - if yyj4358 >= len(yyv4358) { - yyv4358 = append(yyv4358, PersistentVolume{}) // var yyz4358 PersistentVolume - yyc4358 = true + if yyj4363 >= len(yyv4363) { + yyv4363 = append(yyv4363, PersistentVolume{}) // var yyz4363 PersistentVolume + yyc4363 = true } - yyh4358.ElemContainerState(yyj4358) - if yyj4358 < len(yyv4358) { + yyh4363.ElemContainerState(yyj4363) + if yyj4363 < len(yyv4363) { if r.TryDecodeAsNil() { - yyv4358[yyj4358] = PersistentVolume{} + yyv4363[yyj4363] = PersistentVolume{} } else { - yyv4361 := &yyv4358[yyj4358] - yyv4361.CodecDecodeSelf(d) + yyv4366 := &yyv4363[yyj4363] + yyv4366.CodecDecodeSelf(d) } } else { @@ -54387,17 +54428,17 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj4358 < len(yyv4358) { - yyv4358 = yyv4358[:yyj4358] - yyc4358 = true - } else if yyj4358 == 0 && yyv4358 == nil { - yyv4358 = []PersistentVolume{} - yyc4358 = true + if yyj4363 < len(yyv4363) { + yyv4363 = yyv4363[:yyj4363] + yyc4363 = true + } else if yyj4363 == 0 && yyv4363 == nil { + yyv4363 = []PersistentVolume{} + yyc4363 = true } } - yyh4358.End() - if yyc4358 { - *v = yyv4358 + yyh4363.End() + if yyc4363 { + *v = yyv4363 } } @@ -54406,10 +54447,10 @@ func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4362 := range v { + for _, yyv4367 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4363 := &yyv4362 - yy4363.CodecEncodeSelf(e) + yy4368 := &yyv4367 + yy4368.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54419,83 +54460,83 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4364 := *v - yyh4364, yyl4364 := z.DecSliceHelperStart() - var yyc4364 bool - if yyl4364 == 0 { - if yyv4364 == nil { - yyv4364 = []PersistentVolumeClaim{} - yyc4364 = true - } else if len(yyv4364) != 0 { - yyv4364 = yyv4364[:0] - yyc4364 = true + yyv4369 := *v + yyh4369, yyl4369 := z.DecSliceHelperStart() + var yyc4369 bool + if yyl4369 == 0 { + if yyv4369 == nil { + yyv4369 = []PersistentVolumeClaim{} + yyc4369 = true + } else if len(yyv4369) != 0 { + yyv4369 = yyv4369[:0] + yyc4369 = true } - } else if yyl4364 > 0 { - var yyrr4364, yyrl4364 int - var yyrt4364 bool - if yyl4364 > cap(yyv4364) { + } else if yyl4369 > 0 { + var yyrr4369, yyrl4369 int + var yyrt4369 bool + if yyl4369 > cap(yyv4369) { - yyrg4364 := len(yyv4364) > 0 - yyv24364 := yyv4364 - yyrl4364, yyrt4364 = z.DecInferLen(yyl4364, z.DecBasicHandle().MaxInitLen, 352) - if yyrt4364 { - if yyrl4364 <= cap(yyv4364) { - yyv4364 = yyv4364[:yyrl4364] + yyrg4369 := len(yyv4369) > 0 + yyv24369 := yyv4369 + yyrl4369, yyrt4369 = z.DecInferLen(yyl4369, z.DecBasicHandle().MaxInitLen, 352) + if yyrt4369 { + if yyrl4369 <= cap(yyv4369) { + yyv4369 = yyv4369[:yyrl4369] } else { - yyv4364 = make([]PersistentVolumeClaim, yyrl4364) + yyv4369 = make([]PersistentVolumeClaim, yyrl4369) } } else { - yyv4364 = make([]PersistentVolumeClaim, yyrl4364) + yyv4369 = make([]PersistentVolumeClaim, yyrl4369) } - yyc4364 = true - yyrr4364 = len(yyv4364) - if yyrg4364 { - copy(yyv4364, yyv24364) + yyc4369 = true + yyrr4369 = len(yyv4369) + if yyrg4369 { + copy(yyv4369, yyv24369) } - } else if yyl4364 != len(yyv4364) { - yyv4364 = yyv4364[:yyl4364] - yyc4364 = true + } else if yyl4369 != len(yyv4369) { + yyv4369 = yyv4369[:yyl4369] + yyc4369 = true } - yyj4364 := 0 - for ; yyj4364 < yyrr4364; yyj4364++ { - yyh4364.ElemContainerState(yyj4364) + yyj4369 := 0 + for ; yyj4369 < yyrr4369; yyj4369++ { + yyh4369.ElemContainerState(yyj4369) if r.TryDecodeAsNil() { - yyv4364[yyj4364] = PersistentVolumeClaim{} + yyv4369[yyj4369] = PersistentVolumeClaim{} } else { - yyv4365 := &yyv4364[yyj4364] - yyv4365.CodecDecodeSelf(d) + yyv4370 := &yyv4369[yyj4369] + yyv4370.CodecDecodeSelf(d) } } - if yyrt4364 { - for ; yyj4364 < yyl4364; yyj4364++ { - yyv4364 = append(yyv4364, PersistentVolumeClaim{}) - yyh4364.ElemContainerState(yyj4364) + if yyrt4369 { + for ; yyj4369 < yyl4369; yyj4369++ { + yyv4369 = append(yyv4369, PersistentVolumeClaim{}) + yyh4369.ElemContainerState(yyj4369) if r.TryDecodeAsNil() { - yyv4364[yyj4364] = PersistentVolumeClaim{} + yyv4369[yyj4369] = PersistentVolumeClaim{} } else { - yyv4366 := &yyv4364[yyj4364] - yyv4366.CodecDecodeSelf(d) + yyv4371 := &yyv4369[yyj4369] + yyv4371.CodecDecodeSelf(d) } } } } else { - yyj4364 := 0 - for ; !r.CheckBreak(); yyj4364++ { + yyj4369 := 0 + for ; !r.CheckBreak(); yyj4369++ { - if yyj4364 >= len(yyv4364) { - yyv4364 = append(yyv4364, PersistentVolumeClaim{}) // var yyz4364 PersistentVolumeClaim - yyc4364 = true + if yyj4369 >= len(yyv4369) { + yyv4369 = append(yyv4369, PersistentVolumeClaim{}) // var yyz4369 PersistentVolumeClaim + yyc4369 = true } - yyh4364.ElemContainerState(yyj4364) - if yyj4364 < len(yyv4364) { + yyh4369.ElemContainerState(yyj4369) + if yyj4369 < len(yyv4369) { if r.TryDecodeAsNil() { - yyv4364[yyj4364] = PersistentVolumeClaim{} + yyv4369[yyj4369] = PersistentVolumeClaim{} } else { - yyv4367 := &yyv4364[yyj4364] - yyv4367.CodecDecodeSelf(d) + yyv4372 := &yyv4369[yyj4369] + yyv4372.CodecDecodeSelf(d) } } else { @@ -54503,17 +54544,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj4364 < len(yyv4364) { - yyv4364 = yyv4364[:yyj4364] - yyc4364 = true - } else if yyj4364 == 0 && yyv4364 == nil { - yyv4364 = []PersistentVolumeClaim{} - yyc4364 = true + if yyj4369 < len(yyv4369) { + yyv4369 = yyv4369[:yyj4369] + yyc4369 = true + } else if yyj4369 == 0 && yyv4369 == nil { + yyv4369 = []PersistentVolumeClaim{} + yyc4369 = true } } - yyh4364.End() - if yyc4364 { - *v = yyv4364 + yyh4369.End() + if yyc4369 { + *v = yyv4369 } } @@ -54522,10 +54563,10 @@ func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4368 := range v { + for _, yyv4373 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4369 := &yyv4368 - yy4369.CodecEncodeSelf(e) + yy4374 := &yyv4373 + yy4374.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54535,83 +54576,83 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4370 := *v - yyh4370, yyl4370 := z.DecSliceHelperStart() - var yyc4370 bool - if yyl4370 == 0 { - if yyv4370 == nil { - yyv4370 = []KeyToPath{} - yyc4370 = true - } else if len(yyv4370) != 0 { - yyv4370 = yyv4370[:0] - yyc4370 = true + yyv4375 := *v + yyh4375, yyl4375 := z.DecSliceHelperStart() + var yyc4375 bool + if yyl4375 == 0 { + if yyv4375 == nil { + yyv4375 = []KeyToPath{} + yyc4375 = true + } else if len(yyv4375) != 0 { + yyv4375 = yyv4375[:0] + yyc4375 = true } - } else if yyl4370 > 0 { - var yyrr4370, yyrl4370 int - var yyrt4370 bool - if yyl4370 > cap(yyv4370) { + } else if yyl4375 > 0 { + var yyrr4375, yyrl4375 int + var yyrt4375 bool + if yyl4375 > cap(yyv4375) { - yyrg4370 := len(yyv4370) > 0 - yyv24370 := yyv4370 - yyrl4370, yyrt4370 = z.DecInferLen(yyl4370, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4370 { - if yyrl4370 <= cap(yyv4370) { - yyv4370 = yyv4370[:yyrl4370] + yyrg4375 := len(yyv4375) > 0 + yyv24375 := yyv4375 + yyrl4375, yyrt4375 = z.DecInferLen(yyl4375, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4375 { + if yyrl4375 <= cap(yyv4375) { + yyv4375 = yyv4375[:yyrl4375] } else { - yyv4370 = make([]KeyToPath, yyrl4370) + yyv4375 = make([]KeyToPath, yyrl4375) } } else { - yyv4370 = make([]KeyToPath, yyrl4370) + yyv4375 = make([]KeyToPath, yyrl4375) } - yyc4370 = true - yyrr4370 = len(yyv4370) - if yyrg4370 { - copy(yyv4370, yyv24370) + yyc4375 = true + yyrr4375 = len(yyv4375) + if yyrg4375 { + copy(yyv4375, yyv24375) } - } else if yyl4370 != len(yyv4370) { - yyv4370 = yyv4370[:yyl4370] - yyc4370 = true + } else if yyl4375 != len(yyv4375) { + yyv4375 = yyv4375[:yyl4375] + yyc4375 = true } - yyj4370 := 0 - for ; yyj4370 < yyrr4370; yyj4370++ { - yyh4370.ElemContainerState(yyj4370) + yyj4375 := 0 + for ; yyj4375 < yyrr4375; yyj4375++ { + yyh4375.ElemContainerState(yyj4375) if r.TryDecodeAsNil() { - yyv4370[yyj4370] = KeyToPath{} + yyv4375[yyj4375] = KeyToPath{} } else { - yyv4371 := &yyv4370[yyj4370] - yyv4371.CodecDecodeSelf(d) + yyv4376 := &yyv4375[yyj4375] + yyv4376.CodecDecodeSelf(d) } } - if yyrt4370 { - for ; yyj4370 < yyl4370; yyj4370++ { - yyv4370 = append(yyv4370, KeyToPath{}) - yyh4370.ElemContainerState(yyj4370) + if yyrt4375 { + for ; yyj4375 < yyl4375; yyj4375++ { + yyv4375 = append(yyv4375, KeyToPath{}) + yyh4375.ElemContainerState(yyj4375) if r.TryDecodeAsNil() { - yyv4370[yyj4370] = KeyToPath{} + yyv4375[yyj4375] = KeyToPath{} } else { - yyv4372 := &yyv4370[yyj4370] - yyv4372.CodecDecodeSelf(d) + yyv4377 := &yyv4375[yyj4375] + yyv4377.CodecDecodeSelf(d) } } } } else { - yyj4370 := 0 - for ; !r.CheckBreak(); yyj4370++ { + yyj4375 := 0 + for ; !r.CheckBreak(); yyj4375++ { - if yyj4370 >= len(yyv4370) { - yyv4370 = append(yyv4370, KeyToPath{}) // var yyz4370 KeyToPath - yyc4370 = true + if yyj4375 >= len(yyv4375) { + yyv4375 = append(yyv4375, KeyToPath{}) // var yyz4375 KeyToPath + yyc4375 = true } - yyh4370.ElemContainerState(yyj4370) - if yyj4370 < len(yyv4370) { + yyh4375.ElemContainerState(yyj4375) + if yyj4375 < len(yyv4375) { if r.TryDecodeAsNil() { - yyv4370[yyj4370] = KeyToPath{} + yyv4375[yyj4375] = KeyToPath{} } else { - yyv4373 := &yyv4370[yyj4370] - yyv4373.CodecDecodeSelf(d) + yyv4378 := &yyv4375[yyj4375] + yyv4378.CodecDecodeSelf(d) } } else { @@ -54619,17 +54660,17 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) } } - if yyj4370 < len(yyv4370) { - yyv4370 = yyv4370[:yyj4370] - yyc4370 = true - } else if yyj4370 == 0 && yyv4370 == nil { - yyv4370 = []KeyToPath{} - yyc4370 = true + if yyj4375 < len(yyv4375) { + yyv4375 = yyv4375[:yyj4375] + yyc4375 = true + } else if yyj4375 == 0 && yyv4375 == nil { + yyv4375 = []KeyToPath{} + yyc4375 = true } } - yyh4370.End() - if yyc4370 { - *v = yyv4370 + yyh4375.End() + if yyc4375 { + *v = yyv4375 } } @@ -54638,10 +54679,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4374 := range v { + for _, yyv4379 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4375 := &yyv4374 - yy4375.CodecEncodeSelf(e) + yy4380 := &yyv4379 + yy4380.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54651,83 +54692,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4376 := *v - yyh4376, yyl4376 := z.DecSliceHelperStart() - var yyc4376 bool - if yyl4376 == 0 { - if yyv4376 == nil { - yyv4376 = []DownwardAPIVolumeFile{} - yyc4376 = true - } else if len(yyv4376) != 0 { - yyv4376 = yyv4376[:0] - yyc4376 = true + yyv4381 := *v + yyh4381, yyl4381 := z.DecSliceHelperStart() + var yyc4381 bool + if yyl4381 == 0 { + if yyv4381 == nil { + yyv4381 = []DownwardAPIVolumeFile{} + yyc4381 = true + } else if len(yyv4381) != 0 { + yyv4381 = yyv4381[:0] + yyc4381 = true } - } else if yyl4376 > 0 { - var yyrr4376, yyrl4376 int - var yyrt4376 bool - if yyl4376 > cap(yyv4376) { + } else if yyl4381 > 0 { + var yyrr4381, yyrl4381 int + var yyrt4381 bool + if yyl4381 > cap(yyv4381) { - yyrg4376 := len(yyv4376) > 0 - yyv24376 := yyv4376 - yyrl4376, yyrt4376 = z.DecInferLen(yyl4376, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4376 { - if yyrl4376 <= cap(yyv4376) { - yyv4376 = yyv4376[:yyrl4376] + yyrg4381 := len(yyv4381) > 0 + yyv24381 := yyv4381 + yyrl4381, yyrt4381 = z.DecInferLen(yyl4381, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4381 { + if yyrl4381 <= cap(yyv4381) { + yyv4381 = yyv4381[:yyrl4381] } else { - yyv4376 = make([]DownwardAPIVolumeFile, yyrl4376) + yyv4381 = make([]DownwardAPIVolumeFile, yyrl4381) } } else { - yyv4376 = make([]DownwardAPIVolumeFile, yyrl4376) + yyv4381 = make([]DownwardAPIVolumeFile, yyrl4381) } - yyc4376 = true - yyrr4376 = len(yyv4376) - if yyrg4376 { - copy(yyv4376, yyv24376) + yyc4381 = true + yyrr4381 = len(yyv4381) + if yyrg4381 { + copy(yyv4381, yyv24381) } - } else if yyl4376 != len(yyv4376) { - yyv4376 = yyv4376[:yyl4376] - yyc4376 = true + } else if yyl4381 != len(yyv4381) { + yyv4381 = yyv4381[:yyl4381] + yyc4381 = true } - yyj4376 := 0 - for ; yyj4376 < yyrr4376; yyj4376++ { - yyh4376.ElemContainerState(yyj4376) + yyj4381 := 0 + for ; yyj4381 < yyrr4381; yyj4381++ { + yyh4381.ElemContainerState(yyj4381) if r.TryDecodeAsNil() { - yyv4376[yyj4376] = DownwardAPIVolumeFile{} + yyv4381[yyj4381] = DownwardAPIVolumeFile{} } else { - yyv4377 := &yyv4376[yyj4376] - yyv4377.CodecDecodeSelf(d) + yyv4382 := &yyv4381[yyj4381] + yyv4382.CodecDecodeSelf(d) } } - if yyrt4376 { - for ; yyj4376 < yyl4376; yyj4376++ { - yyv4376 = append(yyv4376, DownwardAPIVolumeFile{}) - yyh4376.ElemContainerState(yyj4376) + if yyrt4381 { + for ; yyj4381 < yyl4381; yyj4381++ { + yyv4381 = append(yyv4381, DownwardAPIVolumeFile{}) + yyh4381.ElemContainerState(yyj4381) if r.TryDecodeAsNil() { - yyv4376[yyj4376] = DownwardAPIVolumeFile{} + yyv4381[yyj4381] = DownwardAPIVolumeFile{} } else { - yyv4378 := &yyv4376[yyj4376] - yyv4378.CodecDecodeSelf(d) + yyv4383 := &yyv4381[yyj4381] + yyv4383.CodecDecodeSelf(d) } } } } else { - yyj4376 := 0 - for ; !r.CheckBreak(); yyj4376++ { + yyj4381 := 0 + for ; !r.CheckBreak(); yyj4381++ { - if yyj4376 >= len(yyv4376) { - yyv4376 = append(yyv4376, DownwardAPIVolumeFile{}) // var yyz4376 DownwardAPIVolumeFile - yyc4376 = true + if yyj4381 >= len(yyv4381) { + yyv4381 = append(yyv4381, DownwardAPIVolumeFile{}) // var yyz4381 DownwardAPIVolumeFile + yyc4381 = true } - yyh4376.ElemContainerState(yyj4376) - if yyj4376 < len(yyv4376) { + yyh4381.ElemContainerState(yyj4381) + if yyj4381 < len(yyv4381) { if r.TryDecodeAsNil() { - yyv4376[yyj4376] = DownwardAPIVolumeFile{} + yyv4381[yyj4381] = DownwardAPIVolumeFile{} } else { - yyv4379 := &yyv4376[yyj4376] - yyv4379.CodecDecodeSelf(d) + yyv4384 := &yyv4381[yyj4381] + yyv4384.CodecDecodeSelf(d) } } else { @@ -54735,17 +54776,17 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4376 < len(yyv4376) { - yyv4376 = yyv4376[:yyj4376] - yyc4376 = true - } else if yyj4376 == 0 && yyv4376 == nil { - yyv4376 = []DownwardAPIVolumeFile{} - yyc4376 = true + if yyj4381 < len(yyv4381) { + yyv4381 = yyv4381[:yyj4381] + yyc4381 = true + } else if yyj4381 == 0 && yyv4381 == nil { + yyv4381 = []DownwardAPIVolumeFile{} + yyc4381 = true } } - yyh4376.End() - if yyc4376 { - *v = yyv4376 + yyh4381.End() + if yyc4381 { + *v = yyv4381 } } @@ -54754,10 +54795,10 @@ func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4380 := range v { + for _, yyv4385 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4381 := &yyv4380 - yy4381.CodecEncodeSelf(e) + yy4386 := &yyv4385 + yy4386.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54767,83 +54808,83 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4382 := *v - yyh4382, yyl4382 := z.DecSliceHelperStart() - var yyc4382 bool - if yyl4382 == 0 { - if yyv4382 == nil { - yyv4382 = []HTTPHeader{} - yyc4382 = true - } else if len(yyv4382) != 0 { - yyv4382 = yyv4382[:0] - yyc4382 = true + yyv4387 := *v + yyh4387, yyl4387 := z.DecSliceHelperStart() + var yyc4387 bool + if yyl4387 == 0 { + if yyv4387 == nil { + yyv4387 = []HTTPHeader{} + yyc4387 = true + } else if len(yyv4387) != 0 { + yyv4387 = yyv4387[:0] + yyc4387 = true } - } else if yyl4382 > 0 { - var yyrr4382, yyrl4382 int - var yyrt4382 bool - if yyl4382 > cap(yyv4382) { + } else if yyl4387 > 0 { + var yyrr4387, yyrl4387 int + var yyrt4387 bool + if yyl4387 > cap(yyv4387) { - yyrg4382 := len(yyv4382) > 0 - yyv24382 := yyv4382 - yyrl4382, yyrt4382 = z.DecInferLen(yyl4382, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4382 { - if yyrl4382 <= cap(yyv4382) { - yyv4382 = yyv4382[:yyrl4382] + yyrg4387 := len(yyv4387) > 0 + yyv24387 := yyv4387 + yyrl4387, yyrt4387 = z.DecInferLen(yyl4387, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4387 { + if yyrl4387 <= cap(yyv4387) { + yyv4387 = yyv4387[:yyrl4387] } else { - yyv4382 = make([]HTTPHeader, yyrl4382) + yyv4387 = make([]HTTPHeader, yyrl4387) } } else { - yyv4382 = make([]HTTPHeader, yyrl4382) + yyv4387 = make([]HTTPHeader, yyrl4387) } - yyc4382 = true - yyrr4382 = len(yyv4382) - if yyrg4382 { - copy(yyv4382, yyv24382) + yyc4387 = true + yyrr4387 = len(yyv4387) + if yyrg4387 { + copy(yyv4387, yyv24387) } - } else if yyl4382 != len(yyv4382) { - yyv4382 = yyv4382[:yyl4382] - yyc4382 = true + } else if yyl4387 != len(yyv4387) { + yyv4387 = yyv4387[:yyl4387] + yyc4387 = true } - yyj4382 := 0 - for ; yyj4382 < yyrr4382; yyj4382++ { - yyh4382.ElemContainerState(yyj4382) + yyj4387 := 0 + for ; yyj4387 < yyrr4387; yyj4387++ { + yyh4387.ElemContainerState(yyj4387) if r.TryDecodeAsNil() { - yyv4382[yyj4382] = HTTPHeader{} + yyv4387[yyj4387] = HTTPHeader{} } else { - yyv4383 := &yyv4382[yyj4382] - yyv4383.CodecDecodeSelf(d) + yyv4388 := &yyv4387[yyj4387] + yyv4388.CodecDecodeSelf(d) } } - if yyrt4382 { - for ; yyj4382 < yyl4382; yyj4382++ { - yyv4382 = append(yyv4382, HTTPHeader{}) - yyh4382.ElemContainerState(yyj4382) + if yyrt4387 { + for ; yyj4387 < yyl4387; yyj4387++ { + yyv4387 = append(yyv4387, HTTPHeader{}) + yyh4387.ElemContainerState(yyj4387) if r.TryDecodeAsNil() { - yyv4382[yyj4382] = HTTPHeader{} + yyv4387[yyj4387] = HTTPHeader{} } else { - yyv4384 := &yyv4382[yyj4382] - yyv4384.CodecDecodeSelf(d) + yyv4389 := &yyv4387[yyj4387] + yyv4389.CodecDecodeSelf(d) } } } } else { - yyj4382 := 0 - for ; !r.CheckBreak(); yyj4382++ { + yyj4387 := 0 + for ; !r.CheckBreak(); yyj4387++ { - if yyj4382 >= len(yyv4382) { - yyv4382 = append(yyv4382, HTTPHeader{}) // var yyz4382 HTTPHeader - yyc4382 = true + if yyj4387 >= len(yyv4387) { + yyv4387 = append(yyv4387, HTTPHeader{}) // var yyz4387 HTTPHeader + yyc4387 = true } - yyh4382.ElemContainerState(yyj4382) - if yyj4382 < len(yyv4382) { + yyh4387.ElemContainerState(yyj4387) + if yyj4387 < len(yyv4387) { if r.TryDecodeAsNil() { - yyv4382[yyj4382] = HTTPHeader{} + yyv4387[yyj4387] = HTTPHeader{} } else { - yyv4385 := &yyv4382[yyj4382] - yyv4385.CodecDecodeSelf(d) + yyv4390 := &yyv4387[yyj4387] + yyv4390.CodecDecodeSelf(d) } } else { @@ -54851,17 +54892,17 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode } } - if yyj4382 < len(yyv4382) { - yyv4382 = yyv4382[:yyj4382] - yyc4382 = true - } else if yyj4382 == 0 && yyv4382 == nil { - yyv4382 = []HTTPHeader{} - yyc4382 = true + if yyj4387 < len(yyv4387) { + yyv4387 = yyv4387[:yyj4387] + yyc4387 = true + } else if yyj4387 == 0 && yyv4387 == nil { + yyv4387 = []HTTPHeader{} + yyc4387 = true } } - yyh4382.End() - if yyc4382 { - *v = yyv4382 + yyh4387.End() + if yyc4387 { + *v = yyv4387 } } @@ -54870,9 +54911,9 @@ func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4386 := range v { + for _, yyv4391 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4386.CodecEncodeSelf(e) + yyv4391.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54882,75 +54923,75 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4387 := *v - yyh4387, yyl4387 := z.DecSliceHelperStart() - var yyc4387 bool - if yyl4387 == 0 { - if yyv4387 == nil { - yyv4387 = []Capability{} - yyc4387 = true - } else if len(yyv4387) != 0 { - yyv4387 = yyv4387[:0] - yyc4387 = true + yyv4392 := *v + yyh4392, yyl4392 := z.DecSliceHelperStart() + var yyc4392 bool + if yyl4392 == 0 { + if yyv4392 == nil { + yyv4392 = []Capability{} + yyc4392 = true + } else if len(yyv4392) != 0 { + yyv4392 = yyv4392[:0] + yyc4392 = true } - } else if yyl4387 > 0 { - var yyrr4387, yyrl4387 int - var yyrt4387 bool - if yyl4387 > cap(yyv4387) { + } else if yyl4392 > 0 { + var yyrr4392, yyrl4392 int + var yyrt4392 bool + if yyl4392 > cap(yyv4392) { - yyrl4387, yyrt4387 = z.DecInferLen(yyl4387, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4387 { - if yyrl4387 <= cap(yyv4387) { - yyv4387 = yyv4387[:yyrl4387] + yyrl4392, yyrt4392 = z.DecInferLen(yyl4392, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4392 { + if yyrl4392 <= cap(yyv4392) { + yyv4392 = yyv4392[:yyrl4392] } else { - yyv4387 = make([]Capability, yyrl4387) + yyv4392 = make([]Capability, yyrl4392) } } else { - yyv4387 = make([]Capability, yyrl4387) + yyv4392 = make([]Capability, yyrl4392) } - yyc4387 = true - yyrr4387 = len(yyv4387) - } else if yyl4387 != len(yyv4387) { - yyv4387 = yyv4387[:yyl4387] - yyc4387 = true + yyc4392 = true + yyrr4392 = len(yyv4392) + } else if yyl4392 != len(yyv4392) { + yyv4392 = yyv4392[:yyl4392] + yyc4392 = true } - yyj4387 := 0 - for ; yyj4387 < yyrr4387; yyj4387++ { - yyh4387.ElemContainerState(yyj4387) + yyj4392 := 0 + for ; yyj4392 < yyrr4392; yyj4392++ { + yyh4392.ElemContainerState(yyj4392) if r.TryDecodeAsNil() { - yyv4387[yyj4387] = "" + yyv4392[yyj4392] = "" } else { - yyv4387[yyj4387] = Capability(r.DecodeString()) + yyv4392[yyj4392] = Capability(r.DecodeString()) } } - if yyrt4387 { - for ; yyj4387 < yyl4387; yyj4387++ { - yyv4387 = append(yyv4387, "") - yyh4387.ElemContainerState(yyj4387) + if yyrt4392 { + for ; yyj4392 < yyl4392; yyj4392++ { + yyv4392 = append(yyv4392, "") + yyh4392.ElemContainerState(yyj4392) if r.TryDecodeAsNil() { - yyv4387[yyj4387] = "" + yyv4392[yyj4392] = "" } else { - yyv4387[yyj4387] = Capability(r.DecodeString()) + yyv4392[yyj4392] = Capability(r.DecodeString()) } } } } else { - yyj4387 := 0 - for ; !r.CheckBreak(); yyj4387++ { + yyj4392 := 0 + for ; !r.CheckBreak(); yyj4392++ { - if yyj4387 >= len(yyv4387) { - yyv4387 = append(yyv4387, "") // var yyz4387 Capability - yyc4387 = true + if yyj4392 >= len(yyv4392) { + yyv4392 = append(yyv4392, "") // var yyz4392 Capability + yyc4392 = true } - yyh4387.ElemContainerState(yyj4387) - if yyj4387 < len(yyv4387) { + yyh4392.ElemContainerState(yyj4392) + if yyj4392 < len(yyv4392) { if r.TryDecodeAsNil() { - yyv4387[yyj4387] = "" + yyv4392[yyj4392] = "" } else { - yyv4387[yyj4387] = Capability(r.DecodeString()) + yyv4392[yyj4392] = Capability(r.DecodeString()) } } else { @@ -54958,17 +54999,17 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } - if yyj4387 < len(yyv4387) { - yyv4387 = yyv4387[:yyj4387] - yyc4387 = true - } else if yyj4387 == 0 && yyv4387 == nil { - yyv4387 = []Capability{} - yyc4387 = true + if yyj4392 < len(yyv4392) { + yyv4392 = yyv4392[:yyj4392] + yyc4392 = true + } else if yyj4392 == 0 && yyv4392 == nil { + yyv4392 = []Capability{} + yyc4392 = true } } - yyh4387.End() - if yyc4387 { - *v = yyv4387 + yyh4392.End() + if yyc4392 { + *v = yyv4392 } } @@ -54977,10 +55018,10 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4391 := range v { + for _, yyv4396 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4392 := &yyv4391 - yy4392.CodecEncodeSelf(e) + yy4397 := &yyv4396 + yy4397.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54990,83 +55031,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4393 := *v - yyh4393, yyl4393 := z.DecSliceHelperStart() - var yyc4393 bool - if yyl4393 == 0 { - if yyv4393 == nil { - yyv4393 = []ContainerPort{} - yyc4393 = true - } else if len(yyv4393) != 0 { - yyv4393 = yyv4393[:0] - yyc4393 = true + yyv4398 := *v + yyh4398, yyl4398 := z.DecSliceHelperStart() + var yyc4398 bool + if yyl4398 == 0 { + if yyv4398 == nil { + yyv4398 = []ContainerPort{} + yyc4398 = true + } else if len(yyv4398) != 0 { + yyv4398 = yyv4398[:0] + yyc4398 = true } - } else if yyl4393 > 0 { - var yyrr4393, yyrl4393 int - var yyrt4393 bool - if yyl4393 > cap(yyv4393) { + } else if yyl4398 > 0 { + var yyrr4398, yyrl4398 int + var yyrt4398 bool + if yyl4398 > cap(yyv4398) { - yyrg4393 := len(yyv4393) > 0 - yyv24393 := yyv4393 - yyrl4393, yyrt4393 = z.DecInferLen(yyl4393, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4393 { - if yyrl4393 <= cap(yyv4393) { - yyv4393 = yyv4393[:yyrl4393] + yyrg4398 := len(yyv4398) > 0 + yyv24398 := yyv4398 + yyrl4398, yyrt4398 = z.DecInferLen(yyl4398, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4398 { + if yyrl4398 <= cap(yyv4398) { + yyv4398 = yyv4398[:yyrl4398] } else { - yyv4393 = make([]ContainerPort, yyrl4393) + yyv4398 = make([]ContainerPort, yyrl4398) } } else { - yyv4393 = make([]ContainerPort, yyrl4393) + yyv4398 = make([]ContainerPort, yyrl4398) } - yyc4393 = true - yyrr4393 = len(yyv4393) - if yyrg4393 { - copy(yyv4393, yyv24393) + yyc4398 = true + yyrr4398 = len(yyv4398) + if yyrg4398 { + copy(yyv4398, yyv24398) } - } else if yyl4393 != len(yyv4393) { - yyv4393 = yyv4393[:yyl4393] - yyc4393 = true + } else if yyl4398 != len(yyv4398) { + yyv4398 = yyv4398[:yyl4398] + yyc4398 = true } - yyj4393 := 0 - for ; yyj4393 < yyrr4393; yyj4393++ { - yyh4393.ElemContainerState(yyj4393) + yyj4398 := 0 + for ; yyj4398 < yyrr4398; yyj4398++ { + yyh4398.ElemContainerState(yyj4398) if r.TryDecodeAsNil() { - yyv4393[yyj4393] = ContainerPort{} + yyv4398[yyj4398] = ContainerPort{} } else { - yyv4394 := &yyv4393[yyj4393] - yyv4394.CodecDecodeSelf(d) + yyv4399 := &yyv4398[yyj4398] + yyv4399.CodecDecodeSelf(d) } } - if yyrt4393 { - for ; yyj4393 < yyl4393; yyj4393++ { - yyv4393 = append(yyv4393, ContainerPort{}) - yyh4393.ElemContainerState(yyj4393) + if yyrt4398 { + for ; yyj4398 < yyl4398; yyj4398++ { + yyv4398 = append(yyv4398, ContainerPort{}) + yyh4398.ElemContainerState(yyj4398) if r.TryDecodeAsNil() { - yyv4393[yyj4393] = ContainerPort{} + yyv4398[yyj4398] = ContainerPort{} } else { - yyv4395 := &yyv4393[yyj4393] - yyv4395.CodecDecodeSelf(d) + yyv4400 := &yyv4398[yyj4398] + yyv4400.CodecDecodeSelf(d) } } } } else { - yyj4393 := 0 - for ; !r.CheckBreak(); yyj4393++ { + yyj4398 := 0 + for ; !r.CheckBreak(); yyj4398++ { - if yyj4393 >= len(yyv4393) { - yyv4393 = append(yyv4393, ContainerPort{}) // var yyz4393 ContainerPort - yyc4393 = true + if yyj4398 >= len(yyv4398) { + yyv4398 = append(yyv4398, ContainerPort{}) // var yyz4398 ContainerPort + yyc4398 = true } - yyh4393.ElemContainerState(yyj4393) - if yyj4393 < len(yyv4393) { + yyh4398.ElemContainerState(yyj4398) + if yyj4398 < len(yyv4398) { if r.TryDecodeAsNil() { - yyv4393[yyj4393] = ContainerPort{} + yyv4398[yyj4398] = ContainerPort{} } else { - yyv4396 := &yyv4393[yyj4393] - yyv4396.CodecDecodeSelf(d) + yyv4401 := &yyv4398[yyj4398] + yyv4401.CodecDecodeSelf(d) } } else { @@ -55074,17 +55115,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj4393 < len(yyv4393) { - yyv4393 = yyv4393[:yyj4393] - yyc4393 = true - } else if yyj4393 == 0 && yyv4393 == nil { - yyv4393 = []ContainerPort{} - yyc4393 = true + if yyj4398 < len(yyv4398) { + yyv4398 = yyv4398[:yyj4398] + yyc4398 = true + } else if yyj4398 == 0 && yyv4398 == nil { + yyv4398 = []ContainerPort{} + yyc4398 = true } } - yyh4393.End() - if yyc4393 { - *v = yyv4393 + yyh4398.End() + if yyc4398 { + *v = yyv4398 } } @@ -55093,10 +55134,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4397 := range v { + for _, yyv4402 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4398 := &yyv4397 - yy4398.CodecEncodeSelf(e) + yy4403 := &yyv4402 + yy4403.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55106,83 +55147,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4399 := *v - yyh4399, yyl4399 := z.DecSliceHelperStart() - var yyc4399 bool - if yyl4399 == 0 { - if yyv4399 == nil { - yyv4399 = []EnvVar{} - yyc4399 = true - } else if len(yyv4399) != 0 { - yyv4399 = yyv4399[:0] - yyc4399 = true + yyv4404 := *v + yyh4404, yyl4404 := z.DecSliceHelperStart() + var yyc4404 bool + if yyl4404 == 0 { + if yyv4404 == nil { + yyv4404 = []EnvVar{} + yyc4404 = true + } else if len(yyv4404) != 0 { + yyv4404 = yyv4404[:0] + yyc4404 = true } - } else if yyl4399 > 0 { - var yyrr4399, yyrl4399 int - var yyrt4399 bool - if yyl4399 > cap(yyv4399) { + } else if yyl4404 > 0 { + var yyrr4404, yyrl4404 int + var yyrt4404 bool + if yyl4404 > cap(yyv4404) { - yyrg4399 := len(yyv4399) > 0 - yyv24399 := yyv4399 - yyrl4399, yyrt4399 = z.DecInferLen(yyl4399, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4399 { - if yyrl4399 <= cap(yyv4399) { - yyv4399 = yyv4399[:yyrl4399] + yyrg4404 := len(yyv4404) > 0 + yyv24404 := yyv4404 + yyrl4404, yyrt4404 = z.DecInferLen(yyl4404, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4404 { + if yyrl4404 <= cap(yyv4404) { + yyv4404 = yyv4404[:yyrl4404] } else { - yyv4399 = make([]EnvVar, yyrl4399) + yyv4404 = make([]EnvVar, yyrl4404) } } else { - yyv4399 = make([]EnvVar, yyrl4399) + yyv4404 = make([]EnvVar, yyrl4404) } - yyc4399 = true - yyrr4399 = len(yyv4399) - if yyrg4399 { - copy(yyv4399, yyv24399) + yyc4404 = true + yyrr4404 = len(yyv4404) + if yyrg4404 { + copy(yyv4404, yyv24404) } - } else if yyl4399 != len(yyv4399) { - yyv4399 = yyv4399[:yyl4399] - yyc4399 = true + } else if yyl4404 != len(yyv4404) { + yyv4404 = yyv4404[:yyl4404] + yyc4404 = true } - yyj4399 := 0 - for ; yyj4399 < yyrr4399; yyj4399++ { - yyh4399.ElemContainerState(yyj4399) + yyj4404 := 0 + for ; yyj4404 < yyrr4404; yyj4404++ { + yyh4404.ElemContainerState(yyj4404) if r.TryDecodeAsNil() { - yyv4399[yyj4399] = EnvVar{} + yyv4404[yyj4404] = EnvVar{} } else { - yyv4400 := &yyv4399[yyj4399] - yyv4400.CodecDecodeSelf(d) + yyv4405 := &yyv4404[yyj4404] + yyv4405.CodecDecodeSelf(d) } } - if yyrt4399 { - for ; yyj4399 < yyl4399; yyj4399++ { - yyv4399 = append(yyv4399, EnvVar{}) - yyh4399.ElemContainerState(yyj4399) + if yyrt4404 { + for ; yyj4404 < yyl4404; yyj4404++ { + yyv4404 = append(yyv4404, EnvVar{}) + yyh4404.ElemContainerState(yyj4404) if r.TryDecodeAsNil() { - yyv4399[yyj4399] = EnvVar{} + yyv4404[yyj4404] = EnvVar{} } else { - yyv4401 := &yyv4399[yyj4399] - yyv4401.CodecDecodeSelf(d) + yyv4406 := &yyv4404[yyj4404] + yyv4406.CodecDecodeSelf(d) } } } } else { - yyj4399 := 0 - for ; !r.CheckBreak(); yyj4399++ { + yyj4404 := 0 + for ; !r.CheckBreak(); yyj4404++ { - if yyj4399 >= len(yyv4399) { - yyv4399 = append(yyv4399, EnvVar{}) // var yyz4399 EnvVar - yyc4399 = true + if yyj4404 >= len(yyv4404) { + yyv4404 = append(yyv4404, EnvVar{}) // var yyz4404 EnvVar + yyc4404 = true } - yyh4399.ElemContainerState(yyj4399) - if yyj4399 < len(yyv4399) { + yyh4404.ElemContainerState(yyj4404) + if yyj4404 < len(yyv4404) { if r.TryDecodeAsNil() { - yyv4399[yyj4399] = EnvVar{} + yyv4404[yyj4404] = EnvVar{} } else { - yyv4402 := &yyv4399[yyj4399] - yyv4402.CodecDecodeSelf(d) + yyv4407 := &yyv4404[yyj4404] + yyv4407.CodecDecodeSelf(d) } } else { @@ -55190,17 +55231,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj4399 < len(yyv4399) { - yyv4399 = yyv4399[:yyj4399] - yyc4399 = true - } else if yyj4399 == 0 && yyv4399 == nil { - yyv4399 = []EnvVar{} - yyc4399 = true + if yyj4404 < len(yyv4404) { + yyv4404 = yyv4404[:yyj4404] + yyc4404 = true + } else if yyj4404 == 0 && yyv4404 == nil { + yyv4404 = []EnvVar{} + yyc4404 = true } } - yyh4399.End() - if yyc4399 { - *v = yyv4399 + yyh4404.End() + if yyc4404 { + *v = yyv4404 } } @@ -55209,10 +55250,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4403 := range v { + for _, yyv4408 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4404 := &yyv4403 - yy4404.CodecEncodeSelf(e) + yy4409 := &yyv4408 + yy4409.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55222,83 +55263,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4405 := *v - yyh4405, yyl4405 := z.DecSliceHelperStart() - var yyc4405 bool - if yyl4405 == 0 { - if yyv4405 == nil { - yyv4405 = []VolumeMount{} - yyc4405 = true - } else if len(yyv4405) != 0 { - yyv4405 = yyv4405[:0] - yyc4405 = true + yyv4410 := *v + yyh4410, yyl4410 := z.DecSliceHelperStart() + var yyc4410 bool + if yyl4410 == 0 { + if yyv4410 == nil { + yyv4410 = []VolumeMount{} + yyc4410 = true + } else if len(yyv4410) != 0 { + yyv4410 = yyv4410[:0] + yyc4410 = true } - } else if yyl4405 > 0 { - var yyrr4405, yyrl4405 int - var yyrt4405 bool - if yyl4405 > cap(yyv4405) { + } else if yyl4410 > 0 { + var yyrr4410, yyrl4410 int + var yyrt4410 bool + if yyl4410 > cap(yyv4410) { - yyrg4405 := len(yyv4405) > 0 - yyv24405 := yyv4405 - yyrl4405, yyrt4405 = z.DecInferLen(yyl4405, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4405 { - if yyrl4405 <= cap(yyv4405) { - yyv4405 = yyv4405[:yyrl4405] + yyrg4410 := len(yyv4410) > 0 + yyv24410 := yyv4410 + yyrl4410, yyrt4410 = z.DecInferLen(yyl4410, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4410 { + if yyrl4410 <= cap(yyv4410) { + yyv4410 = yyv4410[:yyrl4410] } else { - yyv4405 = make([]VolumeMount, yyrl4405) + yyv4410 = make([]VolumeMount, yyrl4410) } } else { - yyv4405 = make([]VolumeMount, yyrl4405) + yyv4410 = make([]VolumeMount, yyrl4410) } - yyc4405 = true - yyrr4405 = len(yyv4405) - if yyrg4405 { - copy(yyv4405, yyv24405) + yyc4410 = true + yyrr4410 = len(yyv4410) + if yyrg4410 { + copy(yyv4410, yyv24410) } - } else if yyl4405 != len(yyv4405) { - yyv4405 = yyv4405[:yyl4405] - yyc4405 = true + } else if yyl4410 != len(yyv4410) { + yyv4410 = yyv4410[:yyl4410] + yyc4410 = true } - yyj4405 := 0 - for ; yyj4405 < yyrr4405; yyj4405++ { - yyh4405.ElemContainerState(yyj4405) + yyj4410 := 0 + for ; yyj4410 < yyrr4410; yyj4410++ { + yyh4410.ElemContainerState(yyj4410) if r.TryDecodeAsNil() { - yyv4405[yyj4405] = VolumeMount{} + yyv4410[yyj4410] = VolumeMount{} } else { - yyv4406 := &yyv4405[yyj4405] - yyv4406.CodecDecodeSelf(d) + yyv4411 := &yyv4410[yyj4410] + yyv4411.CodecDecodeSelf(d) } } - if yyrt4405 { - for ; yyj4405 < yyl4405; yyj4405++ { - yyv4405 = append(yyv4405, VolumeMount{}) - yyh4405.ElemContainerState(yyj4405) + if yyrt4410 { + for ; yyj4410 < yyl4410; yyj4410++ { + yyv4410 = append(yyv4410, VolumeMount{}) + yyh4410.ElemContainerState(yyj4410) if r.TryDecodeAsNil() { - yyv4405[yyj4405] = VolumeMount{} + yyv4410[yyj4410] = VolumeMount{} } else { - yyv4407 := &yyv4405[yyj4405] - yyv4407.CodecDecodeSelf(d) + yyv4412 := &yyv4410[yyj4410] + yyv4412.CodecDecodeSelf(d) } } } } else { - yyj4405 := 0 - for ; !r.CheckBreak(); yyj4405++ { + yyj4410 := 0 + for ; !r.CheckBreak(); yyj4410++ { - if yyj4405 >= len(yyv4405) { - yyv4405 = append(yyv4405, VolumeMount{}) // var yyz4405 VolumeMount - yyc4405 = true + if yyj4410 >= len(yyv4410) { + yyv4410 = append(yyv4410, VolumeMount{}) // var yyz4410 VolumeMount + yyc4410 = true } - yyh4405.ElemContainerState(yyj4405) - if yyj4405 < len(yyv4405) { + yyh4410.ElemContainerState(yyj4410) + if yyj4410 < len(yyv4410) { if r.TryDecodeAsNil() { - yyv4405[yyj4405] = VolumeMount{} + yyv4410[yyj4410] = VolumeMount{} } else { - yyv4408 := &yyv4405[yyj4405] - yyv4408.CodecDecodeSelf(d) + yyv4413 := &yyv4410[yyj4410] + yyv4413.CodecDecodeSelf(d) } } else { @@ -55306,17 +55347,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj4405 < len(yyv4405) { - yyv4405 = yyv4405[:yyj4405] - yyc4405 = true - } else if yyj4405 == 0 && yyv4405 == nil { - yyv4405 = []VolumeMount{} - yyc4405 = true + if yyj4410 < len(yyv4410) { + yyv4410 = yyv4410[:yyj4410] + yyc4410 = true + } else if yyj4410 == 0 && yyv4410 == nil { + yyv4410 = []VolumeMount{} + yyc4410 = true } } - yyh4405.End() - if yyc4405 { - *v = yyv4405 + yyh4410.End() + if yyc4410 { + *v = yyv4410 } } @@ -55325,10 +55366,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4409 := range v { + for _, yyv4414 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4410 := &yyv4409 - yy4410.CodecEncodeSelf(e) + yy4415 := &yyv4414 + yy4415.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55338,83 +55379,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4411 := *v - yyh4411, yyl4411 := z.DecSliceHelperStart() - var yyc4411 bool - if yyl4411 == 0 { - if yyv4411 == nil { - yyv4411 = []Pod{} - yyc4411 = true - } else if len(yyv4411) != 0 { - yyv4411 = yyv4411[:0] - yyc4411 = true + yyv4416 := *v + yyh4416, yyl4416 := z.DecSliceHelperStart() + var yyc4416 bool + if yyl4416 == 0 { + if yyv4416 == nil { + yyv4416 = []Pod{} + yyc4416 = true + } else if len(yyv4416) != 0 { + yyv4416 = yyv4416[:0] + yyc4416 = true } - } else if yyl4411 > 0 { - var yyrr4411, yyrl4411 int - var yyrt4411 bool - if yyl4411 > cap(yyv4411) { + } else if yyl4416 > 0 { + var yyrr4416, yyrl4416 int + var yyrt4416 bool + if yyl4416 > cap(yyv4416) { - yyrg4411 := len(yyv4411) > 0 - yyv24411 := yyv4411 - yyrl4411, yyrt4411 = z.DecInferLen(yyl4411, z.DecBasicHandle().MaxInitLen, 624) - if yyrt4411 { - if yyrl4411 <= cap(yyv4411) { - yyv4411 = yyv4411[:yyrl4411] + yyrg4416 := len(yyv4416) > 0 + yyv24416 := yyv4416 + yyrl4416, yyrt4416 = z.DecInferLen(yyl4416, z.DecBasicHandle().MaxInitLen, 624) + if yyrt4416 { + if yyrl4416 <= cap(yyv4416) { + yyv4416 = yyv4416[:yyrl4416] } else { - yyv4411 = make([]Pod, yyrl4411) + yyv4416 = make([]Pod, yyrl4416) } } else { - yyv4411 = make([]Pod, yyrl4411) + yyv4416 = make([]Pod, yyrl4416) } - yyc4411 = true - yyrr4411 = len(yyv4411) - if yyrg4411 { - copy(yyv4411, yyv24411) + yyc4416 = true + yyrr4416 = len(yyv4416) + if yyrg4416 { + copy(yyv4416, yyv24416) } - } else if yyl4411 != len(yyv4411) { - yyv4411 = yyv4411[:yyl4411] - yyc4411 = true + } else if yyl4416 != len(yyv4416) { + yyv4416 = yyv4416[:yyl4416] + yyc4416 = true } - yyj4411 := 0 - for ; yyj4411 < yyrr4411; yyj4411++ { - yyh4411.ElemContainerState(yyj4411) + yyj4416 := 0 + for ; yyj4416 < yyrr4416; yyj4416++ { + yyh4416.ElemContainerState(yyj4416) if r.TryDecodeAsNil() { - yyv4411[yyj4411] = Pod{} + yyv4416[yyj4416] = Pod{} } else { - yyv4412 := &yyv4411[yyj4411] - yyv4412.CodecDecodeSelf(d) + yyv4417 := &yyv4416[yyj4416] + yyv4417.CodecDecodeSelf(d) } } - if yyrt4411 { - for ; yyj4411 < yyl4411; yyj4411++ { - yyv4411 = append(yyv4411, Pod{}) - yyh4411.ElemContainerState(yyj4411) + if yyrt4416 { + for ; yyj4416 < yyl4416; yyj4416++ { + yyv4416 = append(yyv4416, Pod{}) + yyh4416.ElemContainerState(yyj4416) if r.TryDecodeAsNil() { - yyv4411[yyj4411] = Pod{} + yyv4416[yyj4416] = Pod{} } else { - yyv4413 := &yyv4411[yyj4411] - yyv4413.CodecDecodeSelf(d) + yyv4418 := &yyv4416[yyj4416] + yyv4418.CodecDecodeSelf(d) } } } } else { - yyj4411 := 0 - for ; !r.CheckBreak(); yyj4411++ { + yyj4416 := 0 + for ; !r.CheckBreak(); yyj4416++ { - if yyj4411 >= len(yyv4411) { - yyv4411 = append(yyv4411, Pod{}) // var yyz4411 Pod - yyc4411 = true + if yyj4416 >= len(yyv4416) { + yyv4416 = append(yyv4416, Pod{}) // var yyz4416 Pod + yyc4416 = true } - yyh4411.ElemContainerState(yyj4411) - if yyj4411 < len(yyv4411) { + yyh4416.ElemContainerState(yyj4416) + if yyj4416 < len(yyv4416) { if r.TryDecodeAsNil() { - yyv4411[yyj4411] = Pod{} + yyv4416[yyj4416] = Pod{} } else { - yyv4414 := &yyv4411[yyj4411] - yyv4414.CodecDecodeSelf(d) + yyv4419 := &yyv4416[yyj4416] + yyv4419.CodecDecodeSelf(d) } } else { @@ -55422,17 +55463,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj4411 < len(yyv4411) { - yyv4411 = yyv4411[:yyj4411] - yyc4411 = true - } else if yyj4411 == 0 && yyv4411 == nil { - yyv4411 = []Pod{} - yyc4411 = true + if yyj4416 < len(yyv4416) { + yyv4416 = yyv4416[:yyj4416] + yyc4416 = true + } else if yyj4416 == 0 && yyv4416 == nil { + yyv4416 = []Pod{} + yyc4416 = true } } - yyh4411.End() - if yyc4411 { - *v = yyv4411 + yyh4416.End() + if yyc4416 { + *v = yyv4416 } } @@ -55441,10 +55482,10 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4415 := range v { + for _, yyv4420 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4416 := &yyv4415 - yy4416.CodecEncodeSelf(e) + yy4421 := &yyv4420 + yy4421.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55454,83 +55495,83 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4417 := *v - yyh4417, yyl4417 := z.DecSliceHelperStart() - var yyc4417 bool - if yyl4417 == 0 { - if yyv4417 == nil { - yyv4417 = []NodeSelectorTerm{} - yyc4417 = true - } else if len(yyv4417) != 0 { - yyv4417 = yyv4417[:0] - yyc4417 = true + yyv4422 := *v + yyh4422, yyl4422 := z.DecSliceHelperStart() + var yyc4422 bool + if yyl4422 == 0 { + if yyv4422 == nil { + yyv4422 = []NodeSelectorTerm{} + yyc4422 = true + } else if len(yyv4422) != 0 { + yyv4422 = yyv4422[:0] + yyc4422 = true } - } else if yyl4417 > 0 { - var yyrr4417, yyrl4417 int - var yyrt4417 bool - if yyl4417 > cap(yyv4417) { + } else if yyl4422 > 0 { + var yyrr4422, yyrl4422 int + var yyrt4422 bool + if yyl4422 > cap(yyv4422) { - yyrg4417 := len(yyv4417) > 0 - yyv24417 := yyv4417 - yyrl4417, yyrt4417 = z.DecInferLen(yyl4417, z.DecBasicHandle().MaxInitLen, 24) - if yyrt4417 { - if yyrl4417 <= cap(yyv4417) { - yyv4417 = yyv4417[:yyrl4417] + yyrg4422 := len(yyv4422) > 0 + yyv24422 := yyv4422 + yyrl4422, yyrt4422 = z.DecInferLen(yyl4422, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4422 { + if yyrl4422 <= cap(yyv4422) { + yyv4422 = yyv4422[:yyrl4422] } else { - yyv4417 = make([]NodeSelectorTerm, yyrl4417) + yyv4422 = make([]NodeSelectorTerm, yyrl4422) } } else { - yyv4417 = make([]NodeSelectorTerm, yyrl4417) + yyv4422 = make([]NodeSelectorTerm, yyrl4422) } - yyc4417 = true - yyrr4417 = len(yyv4417) - if yyrg4417 { - copy(yyv4417, yyv24417) + yyc4422 = true + yyrr4422 = len(yyv4422) + if yyrg4422 { + copy(yyv4422, yyv24422) } - } else if yyl4417 != len(yyv4417) { - yyv4417 = yyv4417[:yyl4417] - yyc4417 = true + } else if yyl4422 != len(yyv4422) { + yyv4422 = yyv4422[:yyl4422] + yyc4422 = true } - yyj4417 := 0 - for ; yyj4417 < yyrr4417; yyj4417++ { - yyh4417.ElemContainerState(yyj4417) + yyj4422 := 0 + for ; yyj4422 < yyrr4422; yyj4422++ { + yyh4422.ElemContainerState(yyj4422) if r.TryDecodeAsNil() { - yyv4417[yyj4417] = NodeSelectorTerm{} + yyv4422[yyj4422] = NodeSelectorTerm{} } else { - yyv4418 := &yyv4417[yyj4417] - yyv4418.CodecDecodeSelf(d) + yyv4423 := &yyv4422[yyj4422] + yyv4423.CodecDecodeSelf(d) } } - if yyrt4417 { - for ; yyj4417 < yyl4417; yyj4417++ { - yyv4417 = append(yyv4417, NodeSelectorTerm{}) - yyh4417.ElemContainerState(yyj4417) + if yyrt4422 { + for ; yyj4422 < yyl4422; yyj4422++ { + yyv4422 = append(yyv4422, NodeSelectorTerm{}) + yyh4422.ElemContainerState(yyj4422) if r.TryDecodeAsNil() { - yyv4417[yyj4417] = NodeSelectorTerm{} + yyv4422[yyj4422] = NodeSelectorTerm{} } else { - yyv4419 := &yyv4417[yyj4417] - yyv4419.CodecDecodeSelf(d) + yyv4424 := &yyv4422[yyj4422] + yyv4424.CodecDecodeSelf(d) } } } } else { - yyj4417 := 0 - for ; !r.CheckBreak(); yyj4417++ { + yyj4422 := 0 + for ; !r.CheckBreak(); yyj4422++ { - if yyj4417 >= len(yyv4417) { - yyv4417 = append(yyv4417, NodeSelectorTerm{}) // var yyz4417 NodeSelectorTerm - yyc4417 = true + if yyj4422 >= len(yyv4422) { + yyv4422 = append(yyv4422, NodeSelectorTerm{}) // var yyz4422 NodeSelectorTerm + yyc4422 = true } - yyh4417.ElemContainerState(yyj4417) - if yyj4417 < len(yyv4417) { + yyh4422.ElemContainerState(yyj4422) + if yyj4422 < len(yyv4422) { if r.TryDecodeAsNil() { - yyv4417[yyj4417] = NodeSelectorTerm{} + yyv4422[yyj4422] = NodeSelectorTerm{} } else { - yyv4420 := &yyv4417[yyj4417] - yyv4420.CodecDecodeSelf(d) + yyv4425 := &yyv4422[yyj4422] + yyv4425.CodecDecodeSelf(d) } } else { @@ -55538,17 +55579,17 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } - if yyj4417 < len(yyv4417) { - yyv4417 = yyv4417[:yyj4417] - yyc4417 = true - } else if yyj4417 == 0 && yyv4417 == nil { - yyv4417 = []NodeSelectorTerm{} - yyc4417 = true + if yyj4422 < len(yyv4422) { + yyv4422 = yyv4422[:yyj4422] + yyc4422 = true + } else if yyj4422 == 0 && yyv4422 == nil { + yyv4422 = []NodeSelectorTerm{} + yyc4422 = true } } - yyh4417.End() - if yyc4417 { - *v = yyv4417 + yyh4422.End() + if yyc4422 { + *v = yyv4422 } } @@ -55557,10 +55598,10 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4421 := range v { + for _, yyv4426 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4422 := &yyv4421 - yy4422.CodecEncodeSelf(e) + yy4427 := &yyv4426 + yy4427.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55570,83 +55611,83 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4423 := *v - yyh4423, yyl4423 := z.DecSliceHelperStart() - var yyc4423 bool - if yyl4423 == 0 { - if yyv4423 == nil { - yyv4423 = []NodeSelectorRequirement{} - yyc4423 = true - } else if len(yyv4423) != 0 { - yyv4423 = yyv4423[:0] - yyc4423 = true + yyv4428 := *v + yyh4428, yyl4428 := z.DecSliceHelperStart() + var yyc4428 bool + if yyl4428 == 0 { + if yyv4428 == nil { + yyv4428 = []NodeSelectorRequirement{} + yyc4428 = true + } else if len(yyv4428) != 0 { + yyv4428 = yyv4428[:0] + yyc4428 = true } - } else if yyl4423 > 0 { - var yyrr4423, yyrl4423 int - var yyrt4423 bool - if yyl4423 > cap(yyv4423) { + } else if yyl4428 > 0 { + var yyrr4428, yyrl4428 int + var yyrt4428 bool + if yyl4428 > cap(yyv4428) { - yyrg4423 := len(yyv4423) > 0 - yyv24423 := yyv4423 - yyrl4423, yyrt4423 = z.DecInferLen(yyl4423, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4423 { - if yyrl4423 <= cap(yyv4423) { - yyv4423 = yyv4423[:yyrl4423] + yyrg4428 := len(yyv4428) > 0 + yyv24428 := yyv4428 + yyrl4428, yyrt4428 = z.DecInferLen(yyl4428, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4428 { + if yyrl4428 <= cap(yyv4428) { + yyv4428 = yyv4428[:yyrl4428] } else { - yyv4423 = make([]NodeSelectorRequirement, yyrl4423) + yyv4428 = make([]NodeSelectorRequirement, yyrl4428) } } else { - yyv4423 = make([]NodeSelectorRequirement, yyrl4423) + yyv4428 = make([]NodeSelectorRequirement, yyrl4428) } - yyc4423 = true - yyrr4423 = len(yyv4423) - if yyrg4423 { - copy(yyv4423, yyv24423) + yyc4428 = true + yyrr4428 = len(yyv4428) + if yyrg4428 { + copy(yyv4428, yyv24428) } - } else if yyl4423 != len(yyv4423) { - yyv4423 = yyv4423[:yyl4423] - yyc4423 = true + } else if yyl4428 != len(yyv4428) { + yyv4428 = yyv4428[:yyl4428] + yyc4428 = true } - yyj4423 := 0 - for ; yyj4423 < yyrr4423; yyj4423++ { - yyh4423.ElemContainerState(yyj4423) + yyj4428 := 0 + for ; yyj4428 < yyrr4428; yyj4428++ { + yyh4428.ElemContainerState(yyj4428) if r.TryDecodeAsNil() { - yyv4423[yyj4423] = NodeSelectorRequirement{} + yyv4428[yyj4428] = NodeSelectorRequirement{} } else { - yyv4424 := &yyv4423[yyj4423] - yyv4424.CodecDecodeSelf(d) + yyv4429 := &yyv4428[yyj4428] + yyv4429.CodecDecodeSelf(d) } } - if yyrt4423 { - for ; yyj4423 < yyl4423; yyj4423++ { - yyv4423 = append(yyv4423, NodeSelectorRequirement{}) - yyh4423.ElemContainerState(yyj4423) + if yyrt4428 { + for ; yyj4428 < yyl4428; yyj4428++ { + yyv4428 = append(yyv4428, NodeSelectorRequirement{}) + yyh4428.ElemContainerState(yyj4428) if r.TryDecodeAsNil() { - yyv4423[yyj4423] = NodeSelectorRequirement{} + yyv4428[yyj4428] = NodeSelectorRequirement{} } else { - yyv4425 := &yyv4423[yyj4423] - yyv4425.CodecDecodeSelf(d) + yyv4430 := &yyv4428[yyj4428] + yyv4430.CodecDecodeSelf(d) } } } } else { - yyj4423 := 0 - for ; !r.CheckBreak(); yyj4423++ { + yyj4428 := 0 + for ; !r.CheckBreak(); yyj4428++ { - if yyj4423 >= len(yyv4423) { - yyv4423 = append(yyv4423, NodeSelectorRequirement{}) // var yyz4423 NodeSelectorRequirement - yyc4423 = true + if yyj4428 >= len(yyv4428) { + yyv4428 = append(yyv4428, NodeSelectorRequirement{}) // var yyz4428 NodeSelectorRequirement + yyc4428 = true } - yyh4423.ElemContainerState(yyj4423) - if yyj4423 < len(yyv4423) { + yyh4428.ElemContainerState(yyj4428) + if yyj4428 < len(yyv4428) { if r.TryDecodeAsNil() { - yyv4423[yyj4423] = NodeSelectorRequirement{} + yyv4428[yyj4428] = NodeSelectorRequirement{} } else { - yyv4426 := &yyv4423[yyj4423] - yyv4426.CodecDecodeSelf(d) + yyv4431 := &yyv4428[yyj4428] + yyv4431.CodecDecodeSelf(d) } } else { @@ -55654,17 +55695,17 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj4423 < len(yyv4423) { - yyv4423 = yyv4423[:yyj4423] - yyc4423 = true - } else if yyj4423 == 0 && yyv4423 == nil { - yyv4423 = []NodeSelectorRequirement{} - yyc4423 = true + if yyj4428 < len(yyv4428) { + yyv4428 = yyv4428[:yyj4428] + yyc4428 = true + } else if yyj4428 == 0 && yyv4428 == nil { + yyv4428 = []NodeSelectorRequirement{} + yyc4428 = true } } - yyh4423.End() - if yyc4423 { - *v = yyv4423 + yyh4428.End() + if yyc4428 { + *v = yyv4428 } } @@ -55673,10 +55714,10 @@ func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4427 := range v { + for _, yyv4432 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4428 := &yyv4427 - yy4428.CodecEncodeSelf(e) + yy4433 := &yyv4432 + yy4433.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55686,83 +55727,83 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4429 := *v - yyh4429, yyl4429 := z.DecSliceHelperStart() - var yyc4429 bool - if yyl4429 == 0 { - if yyv4429 == nil { - yyv4429 = []PodAffinityTerm{} - yyc4429 = true - } else if len(yyv4429) != 0 { - yyv4429 = yyv4429[:0] - yyc4429 = true + yyv4434 := *v + yyh4434, yyl4434 := z.DecSliceHelperStart() + var yyc4434 bool + if yyl4434 == 0 { + if yyv4434 == nil { + yyv4434 = []PodAffinityTerm{} + yyc4434 = true + } else if len(yyv4434) != 0 { + yyv4434 = yyv4434[:0] + yyc4434 = true } - } else if yyl4429 > 0 { - var yyrr4429, yyrl4429 int - var yyrt4429 bool - if yyl4429 > cap(yyv4429) { + } else if yyl4434 > 0 { + var yyrr4434, yyrl4434 int + var yyrt4434 bool + if yyl4434 > cap(yyv4434) { - yyrg4429 := len(yyv4429) > 0 - yyv24429 := yyv4429 - yyrl4429, yyrt4429 = z.DecInferLen(yyl4429, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4429 { - if yyrl4429 <= cap(yyv4429) { - yyv4429 = yyv4429[:yyrl4429] + yyrg4434 := len(yyv4434) > 0 + yyv24434 := yyv4434 + yyrl4434, yyrt4434 = z.DecInferLen(yyl4434, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4434 { + if yyrl4434 <= cap(yyv4434) { + yyv4434 = yyv4434[:yyrl4434] } else { - yyv4429 = make([]PodAffinityTerm, yyrl4429) + yyv4434 = make([]PodAffinityTerm, yyrl4434) } } else { - yyv4429 = make([]PodAffinityTerm, yyrl4429) + yyv4434 = make([]PodAffinityTerm, yyrl4434) } - yyc4429 = true - yyrr4429 = len(yyv4429) - if yyrg4429 { - copy(yyv4429, yyv24429) + yyc4434 = true + yyrr4434 = len(yyv4434) + if yyrg4434 { + copy(yyv4434, yyv24434) } - } else if yyl4429 != len(yyv4429) { - yyv4429 = yyv4429[:yyl4429] - yyc4429 = true + } else if yyl4434 != len(yyv4434) { + yyv4434 = yyv4434[:yyl4434] + yyc4434 = true } - yyj4429 := 0 - for ; yyj4429 < yyrr4429; yyj4429++ { - yyh4429.ElemContainerState(yyj4429) + yyj4434 := 0 + for ; yyj4434 < yyrr4434; yyj4434++ { + yyh4434.ElemContainerState(yyj4434) if r.TryDecodeAsNil() { - yyv4429[yyj4429] = PodAffinityTerm{} + yyv4434[yyj4434] = PodAffinityTerm{} } else { - yyv4430 := &yyv4429[yyj4429] - yyv4430.CodecDecodeSelf(d) + yyv4435 := &yyv4434[yyj4434] + yyv4435.CodecDecodeSelf(d) } } - if yyrt4429 { - for ; yyj4429 < yyl4429; yyj4429++ { - yyv4429 = append(yyv4429, PodAffinityTerm{}) - yyh4429.ElemContainerState(yyj4429) + if yyrt4434 { + for ; yyj4434 < yyl4434; yyj4434++ { + yyv4434 = append(yyv4434, PodAffinityTerm{}) + yyh4434.ElemContainerState(yyj4434) if r.TryDecodeAsNil() { - yyv4429[yyj4429] = PodAffinityTerm{} + yyv4434[yyj4434] = PodAffinityTerm{} } else { - yyv4431 := &yyv4429[yyj4429] - yyv4431.CodecDecodeSelf(d) + yyv4436 := &yyv4434[yyj4434] + yyv4436.CodecDecodeSelf(d) } } } } else { - yyj4429 := 0 - for ; !r.CheckBreak(); yyj4429++ { + yyj4434 := 0 + for ; !r.CheckBreak(); yyj4434++ { - if yyj4429 >= len(yyv4429) { - yyv4429 = append(yyv4429, PodAffinityTerm{}) // var yyz4429 PodAffinityTerm - yyc4429 = true + if yyj4434 >= len(yyv4434) { + yyv4434 = append(yyv4434, PodAffinityTerm{}) // var yyz4434 PodAffinityTerm + yyc4434 = true } - yyh4429.ElemContainerState(yyj4429) - if yyj4429 < len(yyv4429) { + yyh4434.ElemContainerState(yyj4434) + if yyj4434 < len(yyv4434) { if r.TryDecodeAsNil() { - yyv4429[yyj4429] = PodAffinityTerm{} + yyv4434[yyj4434] = PodAffinityTerm{} } else { - yyv4432 := &yyv4429[yyj4429] - yyv4432.CodecDecodeSelf(d) + yyv4437 := &yyv4434[yyj4434] + yyv4437.CodecDecodeSelf(d) } } else { @@ -55770,17 +55811,17 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } - if yyj4429 < len(yyv4429) { - yyv4429 = yyv4429[:yyj4429] - yyc4429 = true - } else if yyj4429 == 0 && yyv4429 == nil { - yyv4429 = []PodAffinityTerm{} - yyc4429 = true + if yyj4434 < len(yyv4434) { + yyv4434 = yyv4434[:yyj4434] + yyc4434 = true + } else if yyj4434 == 0 && yyv4434 == nil { + yyv4434 = []PodAffinityTerm{} + yyc4434 = true } } - yyh4429.End() - if yyc4429 { - *v = yyv4429 + yyh4434.End() + if yyc4434 { + *v = yyv4434 } } @@ -55789,10 +55830,10 @@ func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinity z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4433 := range v { + for _, yyv4438 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4434 := &yyv4433 - yy4434.CodecEncodeSelf(e) + yy4439 := &yyv4438 + yy4439.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55802,83 +55843,83 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4435 := *v - yyh4435, yyl4435 := z.DecSliceHelperStart() - var yyc4435 bool - if yyl4435 == 0 { - if yyv4435 == nil { - yyv4435 = []WeightedPodAffinityTerm{} - yyc4435 = true - } else if len(yyv4435) != 0 { - yyv4435 = yyv4435[:0] - yyc4435 = true + yyv4440 := *v + yyh4440, yyl4440 := z.DecSliceHelperStart() + var yyc4440 bool + if yyl4440 == 0 { + if yyv4440 == nil { + yyv4440 = []WeightedPodAffinityTerm{} + yyc4440 = true + } else if len(yyv4440) != 0 { + yyv4440 = yyv4440[:0] + yyc4440 = true } - } else if yyl4435 > 0 { - var yyrr4435, yyrl4435 int - var yyrt4435 bool - if yyl4435 > cap(yyv4435) { + } else if yyl4440 > 0 { + var yyrr4440, yyrl4440 int + var yyrt4440 bool + if yyl4440 > cap(yyv4440) { - yyrg4435 := len(yyv4435) > 0 - yyv24435 := yyv4435 - yyrl4435, yyrt4435 = z.DecInferLen(yyl4435, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4435 { - if yyrl4435 <= cap(yyv4435) { - yyv4435 = yyv4435[:yyrl4435] + yyrg4440 := len(yyv4440) > 0 + yyv24440 := yyv4440 + yyrl4440, yyrt4440 = z.DecInferLen(yyl4440, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4440 { + if yyrl4440 <= cap(yyv4440) { + yyv4440 = yyv4440[:yyrl4440] } else { - yyv4435 = make([]WeightedPodAffinityTerm, yyrl4435) + yyv4440 = make([]WeightedPodAffinityTerm, yyrl4440) } } else { - yyv4435 = make([]WeightedPodAffinityTerm, yyrl4435) + yyv4440 = make([]WeightedPodAffinityTerm, yyrl4440) } - yyc4435 = true - yyrr4435 = len(yyv4435) - if yyrg4435 { - copy(yyv4435, yyv24435) + yyc4440 = true + yyrr4440 = len(yyv4440) + if yyrg4440 { + copy(yyv4440, yyv24440) } - } else if yyl4435 != len(yyv4435) { - yyv4435 = yyv4435[:yyl4435] - yyc4435 = true + } else if yyl4440 != len(yyv4440) { + yyv4440 = yyv4440[:yyl4440] + yyc4440 = true } - yyj4435 := 0 - for ; yyj4435 < yyrr4435; yyj4435++ { - yyh4435.ElemContainerState(yyj4435) + yyj4440 := 0 + for ; yyj4440 < yyrr4440; yyj4440++ { + yyh4440.ElemContainerState(yyj4440) if r.TryDecodeAsNil() { - yyv4435[yyj4435] = WeightedPodAffinityTerm{} + yyv4440[yyj4440] = WeightedPodAffinityTerm{} } else { - yyv4436 := &yyv4435[yyj4435] - yyv4436.CodecDecodeSelf(d) + yyv4441 := &yyv4440[yyj4440] + yyv4441.CodecDecodeSelf(d) } } - if yyrt4435 { - for ; yyj4435 < yyl4435; yyj4435++ { - yyv4435 = append(yyv4435, WeightedPodAffinityTerm{}) - yyh4435.ElemContainerState(yyj4435) + if yyrt4440 { + for ; yyj4440 < yyl4440; yyj4440++ { + yyv4440 = append(yyv4440, WeightedPodAffinityTerm{}) + yyh4440.ElemContainerState(yyj4440) if r.TryDecodeAsNil() { - yyv4435[yyj4435] = WeightedPodAffinityTerm{} + yyv4440[yyj4440] = WeightedPodAffinityTerm{} } else { - yyv4437 := &yyv4435[yyj4435] - yyv4437.CodecDecodeSelf(d) + yyv4442 := &yyv4440[yyj4440] + yyv4442.CodecDecodeSelf(d) } } } } else { - yyj4435 := 0 - for ; !r.CheckBreak(); yyj4435++ { + yyj4440 := 0 + for ; !r.CheckBreak(); yyj4440++ { - if yyj4435 >= len(yyv4435) { - yyv4435 = append(yyv4435, WeightedPodAffinityTerm{}) // var yyz4435 WeightedPodAffinityTerm - yyc4435 = true + if yyj4440 >= len(yyv4440) { + yyv4440 = append(yyv4440, WeightedPodAffinityTerm{}) // var yyz4440 WeightedPodAffinityTerm + yyc4440 = true } - yyh4435.ElemContainerState(yyj4435) - if yyj4435 < len(yyv4435) { + yyh4440.ElemContainerState(yyj4440) + if yyj4440 < len(yyv4440) { if r.TryDecodeAsNil() { - yyv4435[yyj4435] = WeightedPodAffinityTerm{} + yyv4440[yyj4440] = WeightedPodAffinityTerm{} } else { - yyv4438 := &yyv4435[yyj4435] - yyv4438.CodecDecodeSelf(d) + yyv4443 := &yyv4440[yyj4440] + yyv4443.CodecDecodeSelf(d) } } else { @@ -55886,17 +55927,17 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } - if yyj4435 < len(yyv4435) { - yyv4435 = yyv4435[:yyj4435] - yyc4435 = true - } else if yyj4435 == 0 && yyv4435 == nil { - yyv4435 = []WeightedPodAffinityTerm{} - yyc4435 = true + if yyj4440 < len(yyv4440) { + yyv4440 = yyv4440[:yyj4440] + yyc4440 = true + } else if yyj4440 == 0 && yyv4440 == nil { + yyv4440 = []WeightedPodAffinityTerm{} + yyc4440 = true } } - yyh4435.End() - if yyc4435 { - *v = yyv4435 + yyh4440.End() + if yyc4440 { + *v = yyv4440 } } @@ -55905,10 +55946,10 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4439 := range v { + for _, yyv4444 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4440 := &yyv4439 - yy4440.CodecEncodeSelf(e) + yy4445 := &yyv4444 + yy4445.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55918,83 +55959,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4441 := *v - yyh4441, yyl4441 := z.DecSliceHelperStart() - var yyc4441 bool - if yyl4441 == 0 { - if yyv4441 == nil { - yyv4441 = []PreferredSchedulingTerm{} - yyc4441 = true - } else if len(yyv4441) != 0 { - yyv4441 = yyv4441[:0] - yyc4441 = true + yyv4446 := *v + yyh4446, yyl4446 := z.DecSliceHelperStart() + var yyc4446 bool + if yyl4446 == 0 { + if yyv4446 == nil { + yyv4446 = []PreferredSchedulingTerm{} + yyc4446 = true + } else if len(yyv4446) != 0 { + yyv4446 = yyv4446[:0] + yyc4446 = true } - } else if yyl4441 > 0 { - var yyrr4441, yyrl4441 int - var yyrt4441 bool - if yyl4441 > cap(yyv4441) { + } else if yyl4446 > 0 { + var yyrr4446, yyrl4446 int + var yyrt4446 bool + if yyl4446 > cap(yyv4446) { - yyrg4441 := len(yyv4441) > 0 - yyv24441 := yyv4441 - yyrl4441, yyrt4441 = z.DecInferLen(yyl4441, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4441 { - if yyrl4441 <= cap(yyv4441) { - yyv4441 = yyv4441[:yyrl4441] + yyrg4446 := len(yyv4446) > 0 + yyv24446 := yyv4446 + yyrl4446, yyrt4446 = z.DecInferLen(yyl4446, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4446 { + if yyrl4446 <= cap(yyv4446) { + yyv4446 = yyv4446[:yyrl4446] } else { - yyv4441 = make([]PreferredSchedulingTerm, yyrl4441) + yyv4446 = make([]PreferredSchedulingTerm, yyrl4446) } } else { - yyv4441 = make([]PreferredSchedulingTerm, yyrl4441) + yyv4446 = make([]PreferredSchedulingTerm, yyrl4446) } - yyc4441 = true - yyrr4441 = len(yyv4441) - if yyrg4441 { - copy(yyv4441, yyv24441) + yyc4446 = true + yyrr4446 = len(yyv4446) + if yyrg4446 { + copy(yyv4446, yyv24446) } - } else if yyl4441 != len(yyv4441) { - yyv4441 = yyv4441[:yyl4441] - yyc4441 = true + } else if yyl4446 != len(yyv4446) { + yyv4446 = yyv4446[:yyl4446] + yyc4446 = true } - yyj4441 := 0 - for ; yyj4441 < yyrr4441; yyj4441++ { - yyh4441.ElemContainerState(yyj4441) + yyj4446 := 0 + for ; yyj4446 < yyrr4446; yyj4446++ { + yyh4446.ElemContainerState(yyj4446) if r.TryDecodeAsNil() { - yyv4441[yyj4441] = PreferredSchedulingTerm{} + yyv4446[yyj4446] = PreferredSchedulingTerm{} } else { - yyv4442 := &yyv4441[yyj4441] - yyv4442.CodecDecodeSelf(d) + yyv4447 := &yyv4446[yyj4446] + yyv4447.CodecDecodeSelf(d) } } - if yyrt4441 { - for ; yyj4441 < yyl4441; yyj4441++ { - yyv4441 = append(yyv4441, PreferredSchedulingTerm{}) - yyh4441.ElemContainerState(yyj4441) + if yyrt4446 { + for ; yyj4446 < yyl4446; yyj4446++ { + yyv4446 = append(yyv4446, PreferredSchedulingTerm{}) + yyh4446.ElemContainerState(yyj4446) if r.TryDecodeAsNil() { - yyv4441[yyj4441] = PreferredSchedulingTerm{} + yyv4446[yyj4446] = PreferredSchedulingTerm{} } else { - yyv4443 := &yyv4441[yyj4441] - yyv4443.CodecDecodeSelf(d) + yyv4448 := &yyv4446[yyj4446] + yyv4448.CodecDecodeSelf(d) } } } } else { - yyj4441 := 0 - for ; !r.CheckBreak(); yyj4441++ { + yyj4446 := 0 + for ; !r.CheckBreak(); yyj4446++ { - if yyj4441 >= len(yyv4441) { - yyv4441 = append(yyv4441, PreferredSchedulingTerm{}) // var yyz4441 PreferredSchedulingTerm - yyc4441 = true + if yyj4446 >= len(yyv4446) { + yyv4446 = append(yyv4446, PreferredSchedulingTerm{}) // var yyz4446 PreferredSchedulingTerm + yyc4446 = true } - yyh4441.ElemContainerState(yyj4441) - if yyj4441 < len(yyv4441) { + yyh4446.ElemContainerState(yyj4446) + if yyj4446 < len(yyv4446) { if r.TryDecodeAsNil() { - yyv4441[yyj4441] = PreferredSchedulingTerm{} + yyv4446[yyj4446] = PreferredSchedulingTerm{} } else { - yyv4444 := &yyv4441[yyj4441] - yyv4444.CodecDecodeSelf(d) + yyv4449 := &yyv4446[yyj4446] + yyv4449.CodecDecodeSelf(d) } } else { @@ -56002,17 +56043,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj4441 < len(yyv4441) { - yyv4441 = yyv4441[:yyj4441] - yyc4441 = true - } else if yyj4441 == 0 && yyv4441 == nil { - yyv4441 = []PreferredSchedulingTerm{} - yyc4441 = true + if yyj4446 < len(yyv4446) { + yyv4446 = yyv4446[:yyj4446] + yyc4446 = true + } else if yyj4446 == 0 && yyv4446 == nil { + yyv4446 = []PreferredSchedulingTerm{} + yyc4446 = true } } - yyh4441.End() - if yyc4441 { - *v = yyv4441 + yyh4446.End() + if yyc4446 { + *v = yyv4446 } } @@ -56021,10 +56062,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4445 := range v { + for _, yyv4450 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4446 := &yyv4445 - yy4446.CodecEncodeSelf(e) + yy4451 := &yyv4450 + yy4451.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56034,83 +56075,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4447 := *v - yyh4447, yyl4447 := z.DecSliceHelperStart() - var yyc4447 bool - if yyl4447 == 0 { - if yyv4447 == nil { - yyv4447 = []Volume{} - yyc4447 = true - } else if len(yyv4447) != 0 { - yyv4447 = yyv4447[:0] - yyc4447 = true + yyv4452 := *v + yyh4452, yyl4452 := z.DecSliceHelperStart() + var yyc4452 bool + if yyl4452 == 0 { + if yyv4452 == nil { + yyv4452 = []Volume{} + yyc4452 = true + } else if len(yyv4452) != 0 { + yyv4452 = yyv4452[:0] + yyc4452 = true } - } else if yyl4447 > 0 { - var yyrr4447, yyrl4447 int - var yyrt4447 bool - if yyl4447 > cap(yyv4447) { + } else if yyl4452 > 0 { + var yyrr4452, yyrl4452 int + var yyrt4452 bool + if yyl4452 > cap(yyv4452) { - yyrg4447 := len(yyv4447) > 0 - yyv24447 := yyv4447 - yyrl4447, yyrt4447 = z.DecInferLen(yyl4447, z.DecBasicHandle().MaxInitLen, 176) - if yyrt4447 { - if yyrl4447 <= cap(yyv4447) { - yyv4447 = yyv4447[:yyrl4447] + yyrg4452 := len(yyv4452) > 0 + yyv24452 := yyv4452 + yyrl4452, yyrt4452 = z.DecInferLen(yyl4452, z.DecBasicHandle().MaxInitLen, 176) + if yyrt4452 { + if yyrl4452 <= cap(yyv4452) { + yyv4452 = yyv4452[:yyrl4452] } else { - yyv4447 = make([]Volume, yyrl4447) + yyv4452 = make([]Volume, yyrl4452) } } else { - yyv4447 = make([]Volume, yyrl4447) + yyv4452 = make([]Volume, yyrl4452) } - yyc4447 = true - yyrr4447 = len(yyv4447) - if yyrg4447 { - copy(yyv4447, yyv24447) + yyc4452 = true + yyrr4452 = len(yyv4452) + if yyrg4452 { + copy(yyv4452, yyv24452) } - } else if yyl4447 != len(yyv4447) { - yyv4447 = yyv4447[:yyl4447] - yyc4447 = true + } else if yyl4452 != len(yyv4452) { + yyv4452 = yyv4452[:yyl4452] + yyc4452 = true } - yyj4447 := 0 - for ; yyj4447 < yyrr4447; yyj4447++ { - yyh4447.ElemContainerState(yyj4447) + yyj4452 := 0 + for ; yyj4452 < yyrr4452; yyj4452++ { + yyh4452.ElemContainerState(yyj4452) if r.TryDecodeAsNil() { - yyv4447[yyj4447] = Volume{} + yyv4452[yyj4452] = Volume{} } else { - yyv4448 := &yyv4447[yyj4447] - yyv4448.CodecDecodeSelf(d) + yyv4453 := &yyv4452[yyj4452] + yyv4453.CodecDecodeSelf(d) } } - if yyrt4447 { - for ; yyj4447 < yyl4447; yyj4447++ { - yyv4447 = append(yyv4447, Volume{}) - yyh4447.ElemContainerState(yyj4447) + if yyrt4452 { + for ; yyj4452 < yyl4452; yyj4452++ { + yyv4452 = append(yyv4452, Volume{}) + yyh4452.ElemContainerState(yyj4452) if r.TryDecodeAsNil() { - yyv4447[yyj4447] = Volume{} + yyv4452[yyj4452] = Volume{} } else { - yyv4449 := &yyv4447[yyj4447] - yyv4449.CodecDecodeSelf(d) + yyv4454 := &yyv4452[yyj4452] + yyv4454.CodecDecodeSelf(d) } } } } else { - yyj4447 := 0 - for ; !r.CheckBreak(); yyj4447++ { + yyj4452 := 0 + for ; !r.CheckBreak(); yyj4452++ { - if yyj4447 >= len(yyv4447) { - yyv4447 = append(yyv4447, Volume{}) // var yyz4447 Volume - yyc4447 = true + if yyj4452 >= len(yyv4452) { + yyv4452 = append(yyv4452, Volume{}) // var yyz4452 Volume + yyc4452 = true } - yyh4447.ElemContainerState(yyj4447) - if yyj4447 < len(yyv4447) { + yyh4452.ElemContainerState(yyj4452) + if yyj4452 < len(yyv4452) { if r.TryDecodeAsNil() { - yyv4447[yyj4447] = Volume{} + yyv4452[yyj4452] = Volume{} } else { - yyv4450 := &yyv4447[yyj4447] - yyv4450.CodecDecodeSelf(d) + yyv4455 := &yyv4452[yyj4452] + yyv4455.CodecDecodeSelf(d) } } else { @@ -56118,17 +56159,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4447 < len(yyv4447) { - yyv4447 = yyv4447[:yyj4447] - yyc4447 = true - } else if yyj4447 == 0 && yyv4447 == nil { - yyv4447 = []Volume{} - yyc4447 = true + if yyj4452 < len(yyv4452) { + yyv4452 = yyv4452[:yyj4452] + yyc4452 = true + } else if yyj4452 == 0 && yyv4452 == nil { + yyv4452 = []Volume{} + yyc4452 = true } } - yyh4447.End() - if yyc4447 { - *v = yyv4447 + yyh4452.End() + if yyc4452 { + *v = yyv4452 } } @@ -56137,10 +56178,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4451 := range v { + for _, yyv4456 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4452 := &yyv4451 - yy4452.CodecEncodeSelf(e) + yy4457 := &yyv4456 + yy4457.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56150,83 +56191,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4453 := *v - yyh4453, yyl4453 := z.DecSliceHelperStart() - var yyc4453 bool - if yyl4453 == 0 { - if yyv4453 == nil { - yyv4453 = []Container{} - yyc4453 = true - } else if len(yyv4453) != 0 { - yyv4453 = yyv4453[:0] - yyc4453 = true + yyv4458 := *v + yyh4458, yyl4458 := z.DecSliceHelperStart() + var yyc4458 bool + if yyl4458 == 0 { + if yyv4458 == nil { + yyv4458 = []Container{} + yyc4458 = true + } else if len(yyv4458) != 0 { + yyv4458 = yyv4458[:0] + yyc4458 = true } - } else if yyl4453 > 0 { - var yyrr4453, yyrl4453 int - var yyrt4453 bool - if yyl4453 > cap(yyv4453) { + } else if yyl4458 > 0 { + var yyrr4458, yyrl4458 int + var yyrt4458 bool + if yyl4458 > cap(yyv4458) { - yyrg4453 := len(yyv4453) > 0 - yyv24453 := yyv4453 - yyrl4453, yyrt4453 = z.DecInferLen(yyl4453, z.DecBasicHandle().MaxInitLen, 256) - if yyrt4453 { - if yyrl4453 <= cap(yyv4453) { - yyv4453 = yyv4453[:yyrl4453] + yyrg4458 := len(yyv4458) > 0 + yyv24458 := yyv4458 + yyrl4458, yyrt4458 = z.DecInferLen(yyl4458, z.DecBasicHandle().MaxInitLen, 256) + if yyrt4458 { + if yyrl4458 <= cap(yyv4458) { + yyv4458 = yyv4458[:yyrl4458] } else { - yyv4453 = make([]Container, yyrl4453) + yyv4458 = make([]Container, yyrl4458) } } else { - yyv4453 = make([]Container, yyrl4453) + yyv4458 = make([]Container, yyrl4458) } - yyc4453 = true - yyrr4453 = len(yyv4453) - if yyrg4453 { - copy(yyv4453, yyv24453) + yyc4458 = true + yyrr4458 = len(yyv4458) + if yyrg4458 { + copy(yyv4458, yyv24458) } - } else if yyl4453 != len(yyv4453) { - yyv4453 = yyv4453[:yyl4453] - yyc4453 = true + } else if yyl4458 != len(yyv4458) { + yyv4458 = yyv4458[:yyl4458] + yyc4458 = true } - yyj4453 := 0 - for ; yyj4453 < yyrr4453; yyj4453++ { - yyh4453.ElemContainerState(yyj4453) + yyj4458 := 0 + for ; yyj4458 < yyrr4458; yyj4458++ { + yyh4458.ElemContainerState(yyj4458) if r.TryDecodeAsNil() { - yyv4453[yyj4453] = Container{} + yyv4458[yyj4458] = Container{} } else { - yyv4454 := &yyv4453[yyj4453] - yyv4454.CodecDecodeSelf(d) + yyv4459 := &yyv4458[yyj4458] + yyv4459.CodecDecodeSelf(d) } } - if yyrt4453 { - for ; yyj4453 < yyl4453; yyj4453++ { - yyv4453 = append(yyv4453, Container{}) - yyh4453.ElemContainerState(yyj4453) + if yyrt4458 { + for ; yyj4458 < yyl4458; yyj4458++ { + yyv4458 = append(yyv4458, Container{}) + yyh4458.ElemContainerState(yyj4458) if r.TryDecodeAsNil() { - yyv4453[yyj4453] = Container{} + yyv4458[yyj4458] = Container{} } else { - yyv4455 := &yyv4453[yyj4453] - yyv4455.CodecDecodeSelf(d) + yyv4460 := &yyv4458[yyj4458] + yyv4460.CodecDecodeSelf(d) } } } } else { - yyj4453 := 0 - for ; !r.CheckBreak(); yyj4453++ { + yyj4458 := 0 + for ; !r.CheckBreak(); yyj4458++ { - if yyj4453 >= len(yyv4453) { - yyv4453 = append(yyv4453, Container{}) // var yyz4453 Container - yyc4453 = true + if yyj4458 >= len(yyv4458) { + yyv4458 = append(yyv4458, Container{}) // var yyz4458 Container + yyc4458 = true } - yyh4453.ElemContainerState(yyj4453) - if yyj4453 < len(yyv4453) { + yyh4458.ElemContainerState(yyj4458) + if yyj4458 < len(yyv4458) { if r.TryDecodeAsNil() { - yyv4453[yyj4453] = Container{} + yyv4458[yyj4458] = Container{} } else { - yyv4456 := &yyv4453[yyj4453] - yyv4456.CodecDecodeSelf(d) + yyv4461 := &yyv4458[yyj4458] + yyv4461.CodecDecodeSelf(d) } } else { @@ -56234,17 +56275,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4453 < len(yyv4453) { - yyv4453 = yyv4453[:yyj4453] - yyc4453 = true - } else if yyj4453 == 0 && yyv4453 == nil { - yyv4453 = []Container{} - yyc4453 = true + if yyj4458 < len(yyv4458) { + yyv4458 = yyv4458[:yyj4458] + yyc4458 = true + } else if yyj4458 == 0 && yyv4458 == nil { + yyv4458 = []Container{} + yyc4458 = true } } - yyh4453.End() - if yyc4453 { - *v = yyv4453 + yyh4458.End() + if yyc4458 { + *v = yyv4458 } } @@ -56253,10 +56294,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4457 := range v { + for _, yyv4462 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4458 := &yyv4457 - yy4458.CodecEncodeSelf(e) + yy4463 := &yyv4462 + yy4463.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56266,83 +56307,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4459 := *v - yyh4459, yyl4459 := z.DecSliceHelperStart() - var yyc4459 bool - if yyl4459 == 0 { - if yyv4459 == nil { - yyv4459 = []LocalObjectReference{} - yyc4459 = true - } else if len(yyv4459) != 0 { - yyv4459 = yyv4459[:0] - yyc4459 = true + yyv4464 := *v + yyh4464, yyl4464 := z.DecSliceHelperStart() + var yyc4464 bool + if yyl4464 == 0 { + if yyv4464 == nil { + yyv4464 = []LocalObjectReference{} + yyc4464 = true + } else if len(yyv4464) != 0 { + yyv4464 = yyv4464[:0] + yyc4464 = true } - } else if yyl4459 > 0 { - var yyrr4459, yyrl4459 int - var yyrt4459 bool - if yyl4459 > cap(yyv4459) { + } else if yyl4464 > 0 { + var yyrr4464, yyrl4464 int + var yyrt4464 bool + if yyl4464 > cap(yyv4464) { - yyrg4459 := len(yyv4459) > 0 - yyv24459 := yyv4459 - yyrl4459, yyrt4459 = z.DecInferLen(yyl4459, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4459 { - if yyrl4459 <= cap(yyv4459) { - yyv4459 = yyv4459[:yyrl4459] + yyrg4464 := len(yyv4464) > 0 + yyv24464 := yyv4464 + yyrl4464, yyrt4464 = z.DecInferLen(yyl4464, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4464 { + if yyrl4464 <= cap(yyv4464) { + yyv4464 = yyv4464[:yyrl4464] } else { - yyv4459 = make([]LocalObjectReference, yyrl4459) + yyv4464 = make([]LocalObjectReference, yyrl4464) } } else { - yyv4459 = make([]LocalObjectReference, yyrl4459) + yyv4464 = make([]LocalObjectReference, yyrl4464) } - yyc4459 = true - yyrr4459 = len(yyv4459) - if yyrg4459 { - copy(yyv4459, yyv24459) + yyc4464 = true + yyrr4464 = len(yyv4464) + if yyrg4464 { + copy(yyv4464, yyv24464) } - } else if yyl4459 != len(yyv4459) { - yyv4459 = yyv4459[:yyl4459] - yyc4459 = true + } else if yyl4464 != len(yyv4464) { + yyv4464 = yyv4464[:yyl4464] + yyc4464 = true } - yyj4459 := 0 - for ; yyj4459 < yyrr4459; yyj4459++ { - yyh4459.ElemContainerState(yyj4459) + yyj4464 := 0 + for ; yyj4464 < yyrr4464; yyj4464++ { + yyh4464.ElemContainerState(yyj4464) if r.TryDecodeAsNil() { - yyv4459[yyj4459] = LocalObjectReference{} + yyv4464[yyj4464] = LocalObjectReference{} } else { - yyv4460 := &yyv4459[yyj4459] - yyv4460.CodecDecodeSelf(d) + yyv4465 := &yyv4464[yyj4464] + yyv4465.CodecDecodeSelf(d) } } - if yyrt4459 { - for ; yyj4459 < yyl4459; yyj4459++ { - yyv4459 = append(yyv4459, LocalObjectReference{}) - yyh4459.ElemContainerState(yyj4459) + if yyrt4464 { + for ; yyj4464 < yyl4464; yyj4464++ { + yyv4464 = append(yyv4464, LocalObjectReference{}) + yyh4464.ElemContainerState(yyj4464) if r.TryDecodeAsNil() { - yyv4459[yyj4459] = LocalObjectReference{} + yyv4464[yyj4464] = LocalObjectReference{} } else { - yyv4461 := &yyv4459[yyj4459] - yyv4461.CodecDecodeSelf(d) + yyv4466 := &yyv4464[yyj4464] + yyv4466.CodecDecodeSelf(d) } } } } else { - yyj4459 := 0 - for ; !r.CheckBreak(); yyj4459++ { + yyj4464 := 0 + for ; !r.CheckBreak(); yyj4464++ { - if yyj4459 >= len(yyv4459) { - yyv4459 = append(yyv4459, LocalObjectReference{}) // var yyz4459 LocalObjectReference - yyc4459 = true + if yyj4464 >= len(yyv4464) { + yyv4464 = append(yyv4464, LocalObjectReference{}) // var yyz4464 LocalObjectReference + yyc4464 = true } - yyh4459.ElemContainerState(yyj4459) - if yyj4459 < len(yyv4459) { + yyh4464.ElemContainerState(yyj4464) + if yyj4464 < len(yyv4464) { if r.TryDecodeAsNil() { - yyv4459[yyj4459] = LocalObjectReference{} + yyv4464[yyj4464] = LocalObjectReference{} } else { - yyv4462 := &yyv4459[yyj4459] - yyv4462.CodecDecodeSelf(d) + yyv4467 := &yyv4464[yyj4464] + yyv4467.CodecDecodeSelf(d) } } else { @@ -56350,17 +56391,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4459 < len(yyv4459) { - yyv4459 = yyv4459[:yyj4459] - yyc4459 = true - } else if yyj4459 == 0 && yyv4459 == nil { - yyv4459 = []LocalObjectReference{} - yyc4459 = true + if yyj4464 < len(yyv4464) { + yyv4464 = yyv4464[:yyj4464] + yyc4464 = true + } else if yyj4464 == 0 && yyv4464 == nil { + yyv4464 = []LocalObjectReference{} + yyc4464 = true } } - yyh4459.End() - if yyc4459 { - *v = yyv4459 + yyh4464.End() + if yyc4464 { + *v = yyv4464 } } @@ -56369,10 +56410,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4463 := range v { + for _, yyv4468 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4464 := &yyv4463 - yy4464.CodecEncodeSelf(e) + yy4469 := &yyv4468 + yy4469.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56382,83 +56423,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4465 := *v - yyh4465, yyl4465 := z.DecSliceHelperStart() - var yyc4465 bool - if yyl4465 == 0 { - if yyv4465 == nil { - yyv4465 = []PodCondition{} - yyc4465 = true - } else if len(yyv4465) != 0 { - yyv4465 = yyv4465[:0] - yyc4465 = true + yyv4470 := *v + yyh4470, yyl4470 := z.DecSliceHelperStart() + var yyc4470 bool + if yyl4470 == 0 { + if yyv4470 == nil { + yyv4470 = []PodCondition{} + yyc4470 = true + } else if len(yyv4470) != 0 { + yyv4470 = yyv4470[:0] + yyc4470 = true } - } else if yyl4465 > 0 { - var yyrr4465, yyrl4465 int - var yyrt4465 bool - if yyl4465 > cap(yyv4465) { + } else if yyl4470 > 0 { + var yyrr4470, yyrl4470 int + var yyrt4470 bool + if yyl4470 > cap(yyv4470) { - yyrg4465 := len(yyv4465) > 0 - yyv24465 := yyv4465 - yyrl4465, yyrt4465 = z.DecInferLen(yyl4465, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4465 { - if yyrl4465 <= cap(yyv4465) { - yyv4465 = yyv4465[:yyrl4465] + yyrg4470 := len(yyv4470) > 0 + yyv24470 := yyv4470 + yyrl4470, yyrt4470 = z.DecInferLen(yyl4470, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4470 { + if yyrl4470 <= cap(yyv4470) { + yyv4470 = yyv4470[:yyrl4470] } else { - yyv4465 = make([]PodCondition, yyrl4465) + yyv4470 = make([]PodCondition, yyrl4470) } } else { - yyv4465 = make([]PodCondition, yyrl4465) + yyv4470 = make([]PodCondition, yyrl4470) } - yyc4465 = true - yyrr4465 = len(yyv4465) - if yyrg4465 { - copy(yyv4465, yyv24465) + yyc4470 = true + yyrr4470 = len(yyv4470) + if yyrg4470 { + copy(yyv4470, yyv24470) } - } else if yyl4465 != len(yyv4465) { - yyv4465 = yyv4465[:yyl4465] - yyc4465 = true + } else if yyl4470 != len(yyv4470) { + yyv4470 = yyv4470[:yyl4470] + yyc4470 = true } - yyj4465 := 0 - for ; yyj4465 < yyrr4465; yyj4465++ { - yyh4465.ElemContainerState(yyj4465) + yyj4470 := 0 + for ; yyj4470 < yyrr4470; yyj4470++ { + yyh4470.ElemContainerState(yyj4470) if r.TryDecodeAsNil() { - yyv4465[yyj4465] = PodCondition{} + yyv4470[yyj4470] = PodCondition{} } else { - yyv4466 := &yyv4465[yyj4465] - yyv4466.CodecDecodeSelf(d) + yyv4471 := &yyv4470[yyj4470] + yyv4471.CodecDecodeSelf(d) } } - if yyrt4465 { - for ; yyj4465 < yyl4465; yyj4465++ { - yyv4465 = append(yyv4465, PodCondition{}) - yyh4465.ElemContainerState(yyj4465) + if yyrt4470 { + for ; yyj4470 < yyl4470; yyj4470++ { + yyv4470 = append(yyv4470, PodCondition{}) + yyh4470.ElemContainerState(yyj4470) if r.TryDecodeAsNil() { - yyv4465[yyj4465] = PodCondition{} + yyv4470[yyj4470] = PodCondition{} } else { - yyv4467 := &yyv4465[yyj4465] - yyv4467.CodecDecodeSelf(d) + yyv4472 := &yyv4470[yyj4470] + yyv4472.CodecDecodeSelf(d) } } } } else { - yyj4465 := 0 - for ; !r.CheckBreak(); yyj4465++ { + yyj4470 := 0 + for ; !r.CheckBreak(); yyj4470++ { - if yyj4465 >= len(yyv4465) { - yyv4465 = append(yyv4465, PodCondition{}) // var yyz4465 PodCondition - yyc4465 = true + if yyj4470 >= len(yyv4470) { + yyv4470 = append(yyv4470, PodCondition{}) // var yyz4470 PodCondition + yyc4470 = true } - yyh4465.ElemContainerState(yyj4465) - if yyj4465 < len(yyv4465) { + yyh4470.ElemContainerState(yyj4470) + if yyj4470 < len(yyv4470) { if r.TryDecodeAsNil() { - yyv4465[yyj4465] = PodCondition{} + yyv4470[yyj4470] = PodCondition{} } else { - yyv4468 := &yyv4465[yyj4465] - yyv4468.CodecDecodeSelf(d) + yyv4473 := &yyv4470[yyj4470] + yyv4473.CodecDecodeSelf(d) } } else { @@ -56466,17 +56507,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4465 < len(yyv4465) { - yyv4465 = yyv4465[:yyj4465] - yyc4465 = true - } else if yyj4465 == 0 && yyv4465 == nil { - yyv4465 = []PodCondition{} - yyc4465 = true + if yyj4470 < len(yyv4470) { + yyv4470 = yyv4470[:yyj4470] + yyc4470 = true + } else if yyj4470 == 0 && yyv4470 == nil { + yyv4470 = []PodCondition{} + yyc4470 = true } } - yyh4465.End() - if yyc4465 { - *v = yyv4465 + yyh4470.End() + if yyc4470 { + *v = yyv4470 } } @@ -56485,10 +56526,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4469 := range v { + for _, yyv4474 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4470 := &yyv4469 - yy4470.CodecEncodeSelf(e) + yy4475 := &yyv4474 + yy4475.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56498,83 +56539,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4471 := *v - yyh4471, yyl4471 := z.DecSliceHelperStart() - var yyc4471 bool - if yyl4471 == 0 { - if yyv4471 == nil { - yyv4471 = []ContainerStatus{} - yyc4471 = true - } else if len(yyv4471) != 0 { - yyv4471 = yyv4471[:0] - yyc4471 = true + yyv4476 := *v + yyh4476, yyl4476 := z.DecSliceHelperStart() + var yyc4476 bool + if yyl4476 == 0 { + if yyv4476 == nil { + yyv4476 = []ContainerStatus{} + yyc4476 = true + } else if len(yyv4476) != 0 { + yyv4476 = yyv4476[:0] + yyc4476 = true } - } else if yyl4471 > 0 { - var yyrr4471, yyrl4471 int - var yyrt4471 bool - if yyl4471 > cap(yyv4471) { + } else if yyl4476 > 0 { + var yyrr4476, yyrl4476 int + var yyrt4476 bool + if yyl4476 > cap(yyv4476) { - yyrg4471 := len(yyv4471) > 0 - yyv24471 := yyv4471 - yyrl4471, yyrt4471 = z.DecInferLen(yyl4471, z.DecBasicHandle().MaxInitLen, 120) - if yyrt4471 { - if yyrl4471 <= cap(yyv4471) { - yyv4471 = yyv4471[:yyrl4471] + yyrg4476 := len(yyv4476) > 0 + yyv24476 := yyv4476 + yyrl4476, yyrt4476 = z.DecInferLen(yyl4476, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4476 { + if yyrl4476 <= cap(yyv4476) { + yyv4476 = yyv4476[:yyrl4476] } else { - yyv4471 = make([]ContainerStatus, yyrl4471) + yyv4476 = make([]ContainerStatus, yyrl4476) } } else { - yyv4471 = make([]ContainerStatus, yyrl4471) + yyv4476 = make([]ContainerStatus, yyrl4476) } - yyc4471 = true - yyrr4471 = len(yyv4471) - if yyrg4471 { - copy(yyv4471, yyv24471) + yyc4476 = true + yyrr4476 = len(yyv4476) + if yyrg4476 { + copy(yyv4476, yyv24476) } - } else if yyl4471 != len(yyv4471) { - yyv4471 = yyv4471[:yyl4471] - yyc4471 = true + } else if yyl4476 != len(yyv4476) { + yyv4476 = yyv4476[:yyl4476] + yyc4476 = true } - yyj4471 := 0 - for ; yyj4471 < yyrr4471; yyj4471++ { - yyh4471.ElemContainerState(yyj4471) + yyj4476 := 0 + for ; yyj4476 < yyrr4476; yyj4476++ { + yyh4476.ElemContainerState(yyj4476) if r.TryDecodeAsNil() { - yyv4471[yyj4471] = ContainerStatus{} + yyv4476[yyj4476] = ContainerStatus{} } else { - yyv4472 := &yyv4471[yyj4471] - yyv4472.CodecDecodeSelf(d) + yyv4477 := &yyv4476[yyj4476] + yyv4477.CodecDecodeSelf(d) } } - if yyrt4471 { - for ; yyj4471 < yyl4471; yyj4471++ { - yyv4471 = append(yyv4471, ContainerStatus{}) - yyh4471.ElemContainerState(yyj4471) + if yyrt4476 { + for ; yyj4476 < yyl4476; yyj4476++ { + yyv4476 = append(yyv4476, ContainerStatus{}) + yyh4476.ElemContainerState(yyj4476) if r.TryDecodeAsNil() { - yyv4471[yyj4471] = ContainerStatus{} + yyv4476[yyj4476] = ContainerStatus{} } else { - yyv4473 := &yyv4471[yyj4471] - yyv4473.CodecDecodeSelf(d) + yyv4478 := &yyv4476[yyj4476] + yyv4478.CodecDecodeSelf(d) } } } } else { - yyj4471 := 0 - for ; !r.CheckBreak(); yyj4471++ { + yyj4476 := 0 + for ; !r.CheckBreak(); yyj4476++ { - if yyj4471 >= len(yyv4471) { - yyv4471 = append(yyv4471, ContainerStatus{}) // var yyz4471 ContainerStatus - yyc4471 = true + if yyj4476 >= len(yyv4476) { + yyv4476 = append(yyv4476, ContainerStatus{}) // var yyz4476 ContainerStatus + yyc4476 = true } - yyh4471.ElemContainerState(yyj4471) - if yyj4471 < len(yyv4471) { + yyh4476.ElemContainerState(yyj4476) + if yyj4476 < len(yyv4476) { if r.TryDecodeAsNil() { - yyv4471[yyj4471] = ContainerStatus{} + yyv4476[yyj4476] = ContainerStatus{} } else { - yyv4474 := &yyv4471[yyj4471] - yyv4474.CodecDecodeSelf(d) + yyv4479 := &yyv4476[yyj4476] + yyv4479.CodecDecodeSelf(d) } } else { @@ -56582,17 +56623,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4471 < len(yyv4471) { - yyv4471 = yyv4471[:yyj4471] - yyc4471 = true - } else if yyj4471 == 0 && yyv4471 == nil { - yyv4471 = []ContainerStatus{} - yyc4471 = true + if yyj4476 < len(yyv4476) { + yyv4476 = yyv4476[:yyj4476] + yyc4476 = true + } else if yyj4476 == 0 && yyv4476 == nil { + yyv4476 = []ContainerStatus{} + yyc4476 = true } } - yyh4471.End() - if yyc4471 { - *v = yyv4471 + yyh4476.End() + if yyc4476 { + *v = yyv4476 } } @@ -56601,10 +56642,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4475 := range v { + for _, yyv4480 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4476 := &yyv4475 - yy4476.CodecEncodeSelf(e) + yy4481 := &yyv4480 + yy4481.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56614,83 +56655,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4477 := *v - yyh4477, yyl4477 := z.DecSliceHelperStart() - var yyc4477 bool - if yyl4477 == 0 { - if yyv4477 == nil { - yyv4477 = []PodTemplate{} - yyc4477 = true - } else if len(yyv4477) != 0 { - yyv4477 = yyv4477[:0] - yyc4477 = true + yyv4482 := *v + yyh4482, yyl4482 := z.DecSliceHelperStart() + var yyc4482 bool + if yyl4482 == 0 { + if yyv4482 == nil { + yyv4482 = []PodTemplate{} + yyc4482 = true + } else if len(yyv4482) != 0 { + yyv4482 = yyv4482[:0] + yyc4482 = true } - } else if yyl4477 > 0 { - var yyrr4477, yyrl4477 int - var yyrt4477 bool - if yyl4477 > cap(yyv4477) { + } else if yyl4482 > 0 { + var yyrr4482, yyrl4482 int + var yyrt4482 bool + if yyl4482 > cap(yyv4482) { - yyrg4477 := len(yyv4477) > 0 - yyv24477 := yyv4477 - yyrl4477, yyrt4477 = z.DecInferLen(yyl4477, z.DecBasicHandle().MaxInitLen, 672) - if yyrt4477 { - if yyrl4477 <= cap(yyv4477) { - yyv4477 = yyv4477[:yyrl4477] + yyrg4482 := len(yyv4482) > 0 + yyv24482 := yyv4482 + yyrl4482, yyrt4482 = z.DecInferLen(yyl4482, z.DecBasicHandle().MaxInitLen, 672) + if yyrt4482 { + if yyrl4482 <= cap(yyv4482) { + yyv4482 = yyv4482[:yyrl4482] } else { - yyv4477 = make([]PodTemplate, yyrl4477) + yyv4482 = make([]PodTemplate, yyrl4482) } } else { - yyv4477 = make([]PodTemplate, yyrl4477) + yyv4482 = make([]PodTemplate, yyrl4482) } - yyc4477 = true - yyrr4477 = len(yyv4477) - if yyrg4477 { - copy(yyv4477, yyv24477) + yyc4482 = true + yyrr4482 = len(yyv4482) + if yyrg4482 { + copy(yyv4482, yyv24482) } - } else if yyl4477 != len(yyv4477) { - yyv4477 = yyv4477[:yyl4477] - yyc4477 = true + } else if yyl4482 != len(yyv4482) { + yyv4482 = yyv4482[:yyl4482] + yyc4482 = true } - yyj4477 := 0 - for ; yyj4477 < yyrr4477; yyj4477++ { - yyh4477.ElemContainerState(yyj4477) + yyj4482 := 0 + for ; yyj4482 < yyrr4482; yyj4482++ { + yyh4482.ElemContainerState(yyj4482) if r.TryDecodeAsNil() { - yyv4477[yyj4477] = PodTemplate{} + yyv4482[yyj4482] = PodTemplate{} } else { - yyv4478 := &yyv4477[yyj4477] - yyv4478.CodecDecodeSelf(d) + yyv4483 := &yyv4482[yyj4482] + yyv4483.CodecDecodeSelf(d) } } - if yyrt4477 { - for ; yyj4477 < yyl4477; yyj4477++ { - yyv4477 = append(yyv4477, PodTemplate{}) - yyh4477.ElemContainerState(yyj4477) + if yyrt4482 { + for ; yyj4482 < yyl4482; yyj4482++ { + yyv4482 = append(yyv4482, PodTemplate{}) + yyh4482.ElemContainerState(yyj4482) if r.TryDecodeAsNil() { - yyv4477[yyj4477] = PodTemplate{} + yyv4482[yyj4482] = PodTemplate{} } else { - yyv4479 := &yyv4477[yyj4477] - yyv4479.CodecDecodeSelf(d) + yyv4484 := &yyv4482[yyj4482] + yyv4484.CodecDecodeSelf(d) } } } } else { - yyj4477 := 0 - for ; !r.CheckBreak(); yyj4477++ { + yyj4482 := 0 + for ; !r.CheckBreak(); yyj4482++ { - if yyj4477 >= len(yyv4477) { - yyv4477 = append(yyv4477, PodTemplate{}) // var yyz4477 PodTemplate - yyc4477 = true + if yyj4482 >= len(yyv4482) { + yyv4482 = append(yyv4482, PodTemplate{}) // var yyz4482 PodTemplate + yyc4482 = true } - yyh4477.ElemContainerState(yyj4477) - if yyj4477 < len(yyv4477) { + yyh4482.ElemContainerState(yyj4482) + if yyj4482 < len(yyv4482) { if r.TryDecodeAsNil() { - yyv4477[yyj4477] = PodTemplate{} + yyv4482[yyj4482] = PodTemplate{} } else { - yyv4480 := &yyv4477[yyj4477] - yyv4480.CodecDecodeSelf(d) + yyv4485 := &yyv4482[yyj4482] + yyv4485.CodecDecodeSelf(d) } } else { @@ -56698,17 +56739,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4477 < len(yyv4477) { - yyv4477 = yyv4477[:yyj4477] - yyc4477 = true - } else if yyj4477 == 0 && yyv4477 == nil { - yyv4477 = []PodTemplate{} - yyc4477 = true + if yyj4482 < len(yyv4482) { + yyv4482 = yyv4482[:yyj4482] + yyc4482 = true + } else if yyj4482 == 0 && yyv4482 == nil { + yyv4482 = []PodTemplate{} + yyc4482 = true } } - yyh4477.End() - if yyc4477 { - *v = yyv4477 + yyh4482.End() + if yyc4482 { + *v = yyv4482 } } @@ -56717,10 +56758,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4481 := range v { + for _, yyv4486 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4482 := &yyv4481 - yy4482.CodecEncodeSelf(e) + yy4487 := &yyv4486 + yy4487.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56730,83 +56771,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4483 := *v - yyh4483, yyl4483 := z.DecSliceHelperStart() - var yyc4483 bool - if yyl4483 == 0 { - if yyv4483 == nil { - yyv4483 = []ReplicationController{} - yyc4483 = true - } else if len(yyv4483) != 0 { - yyv4483 = yyv4483[:0] - yyc4483 = true + yyv4488 := *v + yyh4488, yyl4488 := z.DecSliceHelperStart() + var yyc4488 bool + if yyl4488 == 0 { + if yyv4488 == nil { + yyv4488 = []ReplicationController{} + yyc4488 = true + } else if len(yyv4488) != 0 { + yyv4488 = yyv4488[:0] + yyc4488 = true } - } else if yyl4483 > 0 { - var yyrr4483, yyrl4483 int - var yyrt4483 bool - if yyl4483 > cap(yyv4483) { + } else if yyl4488 > 0 { + var yyrr4488, yyrl4488 int + var yyrt4488 bool + if yyl4488 > cap(yyv4488) { - yyrg4483 := len(yyv4483) > 0 - yyv24483 := yyv4483 - yyrl4483, yyrt4483 = z.DecInferLen(yyl4483, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4483 { - if yyrl4483 <= cap(yyv4483) { - yyv4483 = yyv4483[:yyrl4483] + yyrg4488 := len(yyv4488) > 0 + yyv24488 := yyv4488 + yyrl4488, yyrt4488 = z.DecInferLen(yyl4488, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4488 { + if yyrl4488 <= cap(yyv4488) { + yyv4488 = yyv4488[:yyrl4488] } else { - yyv4483 = make([]ReplicationController, yyrl4483) + yyv4488 = make([]ReplicationController, yyrl4488) } } else { - yyv4483 = make([]ReplicationController, yyrl4483) + yyv4488 = make([]ReplicationController, yyrl4488) } - yyc4483 = true - yyrr4483 = len(yyv4483) - if yyrg4483 { - copy(yyv4483, yyv24483) + yyc4488 = true + yyrr4488 = len(yyv4488) + if yyrg4488 { + copy(yyv4488, yyv24488) } - } else if yyl4483 != len(yyv4483) { - yyv4483 = yyv4483[:yyl4483] - yyc4483 = true + } else if yyl4488 != len(yyv4488) { + yyv4488 = yyv4488[:yyl4488] + yyc4488 = true } - yyj4483 := 0 - for ; yyj4483 < yyrr4483; yyj4483++ { - yyh4483.ElemContainerState(yyj4483) + yyj4488 := 0 + for ; yyj4488 < yyrr4488; yyj4488++ { + yyh4488.ElemContainerState(yyj4488) if r.TryDecodeAsNil() { - yyv4483[yyj4483] = ReplicationController{} + yyv4488[yyj4488] = ReplicationController{} } else { - yyv4484 := &yyv4483[yyj4483] - yyv4484.CodecDecodeSelf(d) + yyv4489 := &yyv4488[yyj4488] + yyv4489.CodecDecodeSelf(d) } } - if yyrt4483 { - for ; yyj4483 < yyl4483; yyj4483++ { - yyv4483 = append(yyv4483, ReplicationController{}) - yyh4483.ElemContainerState(yyj4483) + if yyrt4488 { + for ; yyj4488 < yyl4488; yyj4488++ { + yyv4488 = append(yyv4488, ReplicationController{}) + yyh4488.ElemContainerState(yyj4488) if r.TryDecodeAsNil() { - yyv4483[yyj4483] = ReplicationController{} + yyv4488[yyj4488] = ReplicationController{} } else { - yyv4485 := &yyv4483[yyj4483] - yyv4485.CodecDecodeSelf(d) + yyv4490 := &yyv4488[yyj4488] + yyv4490.CodecDecodeSelf(d) } } } } else { - yyj4483 := 0 - for ; !r.CheckBreak(); yyj4483++ { + yyj4488 := 0 + for ; !r.CheckBreak(); yyj4488++ { - if yyj4483 >= len(yyv4483) { - yyv4483 = append(yyv4483, ReplicationController{}) // var yyz4483 ReplicationController - yyc4483 = true + if yyj4488 >= len(yyv4488) { + yyv4488 = append(yyv4488, ReplicationController{}) // var yyz4488 ReplicationController + yyc4488 = true } - yyh4483.ElemContainerState(yyj4483) - if yyj4483 < len(yyv4483) { + yyh4488.ElemContainerState(yyj4488) + if yyj4488 < len(yyv4488) { if r.TryDecodeAsNil() { - yyv4483[yyj4483] = ReplicationController{} + yyv4488[yyj4488] = ReplicationController{} } else { - yyv4486 := &yyv4483[yyj4483] - yyv4486.CodecDecodeSelf(d) + yyv4491 := &yyv4488[yyj4488] + yyv4491.CodecDecodeSelf(d) } } else { @@ -56814,17 +56855,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4483 < len(yyv4483) { - yyv4483 = yyv4483[:yyj4483] - yyc4483 = true - } else if yyj4483 == 0 && yyv4483 == nil { - yyv4483 = []ReplicationController{} - yyc4483 = true + if yyj4488 < len(yyv4488) { + yyv4488 = yyv4488[:yyj4488] + yyc4488 = true + } else if yyj4488 == 0 && yyv4488 == nil { + yyv4488 = []ReplicationController{} + yyc4488 = true } } - yyh4483.End() - if yyc4483 { - *v = yyv4483 + yyh4488.End() + if yyc4488 { + *v = yyv4488 } } @@ -56833,10 +56874,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4487 := range v { + for _, yyv4492 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4488 := &yyv4487 - yy4488.CodecEncodeSelf(e) + yy4493 := &yyv4492 + yy4493.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56846,83 +56887,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4489 := *v - yyh4489, yyl4489 := z.DecSliceHelperStart() - var yyc4489 bool - if yyl4489 == 0 { - if yyv4489 == nil { - yyv4489 = []Service{} - yyc4489 = true - } else if len(yyv4489) != 0 { - yyv4489 = yyv4489[:0] - yyc4489 = true + yyv4494 := *v + yyh4494, yyl4494 := z.DecSliceHelperStart() + var yyc4494 bool + if yyl4494 == 0 { + if yyv4494 == nil { + yyv4494 = []Service{} + yyc4494 = true + } else if len(yyv4494) != 0 { + yyv4494 = yyv4494[:0] + yyc4494 = true } - } else if yyl4489 > 0 { - var yyrr4489, yyrl4489 int - var yyrt4489 bool - if yyl4489 > cap(yyv4489) { + } else if yyl4494 > 0 { + var yyrr4494, yyrl4494 int + var yyrt4494 bool + if yyl4494 > cap(yyv4494) { - yyrg4489 := len(yyv4489) > 0 - yyv24489 := yyv4489 - yyrl4489, yyrt4489 = z.DecInferLen(yyl4489, z.DecBasicHandle().MaxInitLen, 408) - if yyrt4489 { - if yyrl4489 <= cap(yyv4489) { - yyv4489 = yyv4489[:yyrl4489] + yyrg4494 := len(yyv4494) > 0 + yyv24494 := yyv4494 + yyrl4494, yyrt4494 = z.DecInferLen(yyl4494, z.DecBasicHandle().MaxInitLen, 424) + if yyrt4494 { + if yyrl4494 <= cap(yyv4494) { + yyv4494 = yyv4494[:yyrl4494] } else { - yyv4489 = make([]Service, yyrl4489) + yyv4494 = make([]Service, yyrl4494) } } else { - yyv4489 = make([]Service, yyrl4489) + yyv4494 = make([]Service, yyrl4494) } - yyc4489 = true - yyrr4489 = len(yyv4489) - if yyrg4489 { - copy(yyv4489, yyv24489) + yyc4494 = true + yyrr4494 = len(yyv4494) + if yyrg4494 { + copy(yyv4494, yyv24494) } - } else if yyl4489 != len(yyv4489) { - yyv4489 = yyv4489[:yyl4489] - yyc4489 = true + } else if yyl4494 != len(yyv4494) { + yyv4494 = yyv4494[:yyl4494] + yyc4494 = true } - yyj4489 := 0 - for ; yyj4489 < yyrr4489; yyj4489++ { - yyh4489.ElemContainerState(yyj4489) + yyj4494 := 0 + for ; yyj4494 < yyrr4494; yyj4494++ { + yyh4494.ElemContainerState(yyj4494) if r.TryDecodeAsNil() { - yyv4489[yyj4489] = Service{} + yyv4494[yyj4494] = Service{} } else { - yyv4490 := &yyv4489[yyj4489] - yyv4490.CodecDecodeSelf(d) + yyv4495 := &yyv4494[yyj4494] + yyv4495.CodecDecodeSelf(d) } } - if yyrt4489 { - for ; yyj4489 < yyl4489; yyj4489++ { - yyv4489 = append(yyv4489, Service{}) - yyh4489.ElemContainerState(yyj4489) + if yyrt4494 { + for ; yyj4494 < yyl4494; yyj4494++ { + yyv4494 = append(yyv4494, Service{}) + yyh4494.ElemContainerState(yyj4494) if r.TryDecodeAsNil() { - yyv4489[yyj4489] = Service{} + yyv4494[yyj4494] = Service{} } else { - yyv4491 := &yyv4489[yyj4489] - yyv4491.CodecDecodeSelf(d) + yyv4496 := &yyv4494[yyj4494] + yyv4496.CodecDecodeSelf(d) } } } } else { - yyj4489 := 0 - for ; !r.CheckBreak(); yyj4489++ { + yyj4494 := 0 + for ; !r.CheckBreak(); yyj4494++ { - if yyj4489 >= len(yyv4489) { - yyv4489 = append(yyv4489, Service{}) // var yyz4489 Service - yyc4489 = true + if yyj4494 >= len(yyv4494) { + yyv4494 = append(yyv4494, Service{}) // var yyz4494 Service + yyc4494 = true } - yyh4489.ElemContainerState(yyj4489) - if yyj4489 < len(yyv4489) { + yyh4494.ElemContainerState(yyj4494) + if yyj4494 < len(yyv4494) { if r.TryDecodeAsNil() { - yyv4489[yyj4489] = Service{} + yyv4494[yyj4494] = Service{} } else { - yyv4492 := &yyv4489[yyj4489] - yyv4492.CodecDecodeSelf(d) + yyv4497 := &yyv4494[yyj4494] + yyv4497.CodecDecodeSelf(d) } } else { @@ -56930,17 +56971,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4489 < len(yyv4489) { - yyv4489 = yyv4489[:yyj4489] - yyc4489 = true - } else if yyj4489 == 0 && yyv4489 == nil { - yyv4489 = []Service{} - yyc4489 = true + if yyj4494 < len(yyv4494) { + yyv4494 = yyv4494[:yyj4494] + yyc4494 = true + } else if yyj4494 == 0 && yyv4494 == nil { + yyv4494 = []Service{} + yyc4494 = true } } - yyh4489.End() - if yyc4489 { - *v = yyv4489 + yyh4494.End() + if yyc4494 { + *v = yyv4494 } } @@ -56949,10 +56990,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4493 := range v { + for _, yyv4498 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4494 := &yyv4493 - yy4494.CodecEncodeSelf(e) + yy4499 := &yyv4498 + yy4499.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56962,83 +57003,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4495 := *v - yyh4495, yyl4495 := z.DecSliceHelperStart() - var yyc4495 bool - if yyl4495 == 0 { - if yyv4495 == nil { - yyv4495 = []LoadBalancerIngress{} - yyc4495 = true - } else if len(yyv4495) != 0 { - yyv4495 = yyv4495[:0] - yyc4495 = true + yyv4500 := *v + yyh4500, yyl4500 := z.DecSliceHelperStart() + var yyc4500 bool + if yyl4500 == 0 { + if yyv4500 == nil { + yyv4500 = []LoadBalancerIngress{} + yyc4500 = true + } else if len(yyv4500) != 0 { + yyv4500 = yyv4500[:0] + yyc4500 = true } - } else if yyl4495 > 0 { - var yyrr4495, yyrl4495 int - var yyrt4495 bool - if yyl4495 > cap(yyv4495) { + } else if yyl4500 > 0 { + var yyrr4500, yyrl4500 int + var yyrt4500 bool + if yyl4500 > cap(yyv4500) { - yyrg4495 := len(yyv4495) > 0 - yyv24495 := yyv4495 - yyrl4495, yyrt4495 = z.DecInferLen(yyl4495, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4495 { - if yyrl4495 <= cap(yyv4495) { - yyv4495 = yyv4495[:yyrl4495] + yyrg4500 := len(yyv4500) > 0 + yyv24500 := yyv4500 + yyrl4500, yyrt4500 = z.DecInferLen(yyl4500, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4500 { + if yyrl4500 <= cap(yyv4500) { + yyv4500 = yyv4500[:yyrl4500] } else { - yyv4495 = make([]LoadBalancerIngress, yyrl4495) + yyv4500 = make([]LoadBalancerIngress, yyrl4500) } } else { - yyv4495 = make([]LoadBalancerIngress, yyrl4495) + yyv4500 = make([]LoadBalancerIngress, yyrl4500) } - yyc4495 = true - yyrr4495 = len(yyv4495) - if yyrg4495 { - copy(yyv4495, yyv24495) + yyc4500 = true + yyrr4500 = len(yyv4500) + if yyrg4500 { + copy(yyv4500, yyv24500) } - } else if yyl4495 != len(yyv4495) { - yyv4495 = yyv4495[:yyl4495] - yyc4495 = true + } else if yyl4500 != len(yyv4500) { + yyv4500 = yyv4500[:yyl4500] + yyc4500 = true } - yyj4495 := 0 - for ; yyj4495 < yyrr4495; yyj4495++ { - yyh4495.ElemContainerState(yyj4495) + yyj4500 := 0 + for ; yyj4500 < yyrr4500; yyj4500++ { + yyh4500.ElemContainerState(yyj4500) if r.TryDecodeAsNil() { - yyv4495[yyj4495] = LoadBalancerIngress{} + yyv4500[yyj4500] = LoadBalancerIngress{} } else { - yyv4496 := &yyv4495[yyj4495] - yyv4496.CodecDecodeSelf(d) + yyv4501 := &yyv4500[yyj4500] + yyv4501.CodecDecodeSelf(d) } } - if yyrt4495 { - for ; yyj4495 < yyl4495; yyj4495++ { - yyv4495 = append(yyv4495, LoadBalancerIngress{}) - yyh4495.ElemContainerState(yyj4495) + if yyrt4500 { + for ; yyj4500 < yyl4500; yyj4500++ { + yyv4500 = append(yyv4500, LoadBalancerIngress{}) + yyh4500.ElemContainerState(yyj4500) if r.TryDecodeAsNil() { - yyv4495[yyj4495] = LoadBalancerIngress{} + yyv4500[yyj4500] = LoadBalancerIngress{} } else { - yyv4497 := &yyv4495[yyj4495] - yyv4497.CodecDecodeSelf(d) + yyv4502 := &yyv4500[yyj4500] + yyv4502.CodecDecodeSelf(d) } } } } else { - yyj4495 := 0 - for ; !r.CheckBreak(); yyj4495++ { + yyj4500 := 0 + for ; !r.CheckBreak(); yyj4500++ { - if yyj4495 >= len(yyv4495) { - yyv4495 = append(yyv4495, LoadBalancerIngress{}) // var yyz4495 LoadBalancerIngress - yyc4495 = true + if yyj4500 >= len(yyv4500) { + yyv4500 = append(yyv4500, LoadBalancerIngress{}) // var yyz4500 LoadBalancerIngress + yyc4500 = true } - yyh4495.ElemContainerState(yyj4495) - if yyj4495 < len(yyv4495) { + yyh4500.ElemContainerState(yyj4500) + if yyj4500 < len(yyv4500) { if r.TryDecodeAsNil() { - yyv4495[yyj4495] = LoadBalancerIngress{} + yyv4500[yyj4500] = LoadBalancerIngress{} } else { - yyv4498 := &yyv4495[yyj4495] - yyv4498.CodecDecodeSelf(d) + yyv4503 := &yyv4500[yyj4500] + yyv4503.CodecDecodeSelf(d) } } else { @@ -57046,17 +57087,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4495 < len(yyv4495) { - yyv4495 = yyv4495[:yyj4495] - yyc4495 = true - } else if yyj4495 == 0 && yyv4495 == nil { - yyv4495 = []LoadBalancerIngress{} - yyc4495 = true + if yyj4500 < len(yyv4500) { + yyv4500 = yyv4500[:yyj4500] + yyc4500 = true + } else if yyj4500 == 0 && yyv4500 == nil { + yyv4500 = []LoadBalancerIngress{} + yyc4500 = true } } - yyh4495.End() - if yyc4495 { - *v = yyv4495 + yyh4500.End() + if yyc4500 { + *v = yyv4500 } } @@ -57065,10 +57106,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4499 := range v { + for _, yyv4504 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4500 := &yyv4499 - yy4500.CodecEncodeSelf(e) + yy4505 := &yyv4504 + yy4505.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57078,83 +57119,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4501 := *v - yyh4501, yyl4501 := z.DecSliceHelperStart() - var yyc4501 bool - if yyl4501 == 0 { - if yyv4501 == nil { - yyv4501 = []ServicePort{} - yyc4501 = true - } else if len(yyv4501) != 0 { - yyv4501 = yyv4501[:0] - yyc4501 = true + yyv4506 := *v + yyh4506, yyl4506 := z.DecSliceHelperStart() + var yyc4506 bool + if yyl4506 == 0 { + if yyv4506 == nil { + yyv4506 = []ServicePort{} + yyc4506 = true + } else if len(yyv4506) != 0 { + yyv4506 = yyv4506[:0] + yyc4506 = true } - } else if yyl4501 > 0 { - var yyrr4501, yyrl4501 int - var yyrt4501 bool - if yyl4501 > cap(yyv4501) { + } else if yyl4506 > 0 { + var yyrr4506, yyrl4506 int + var yyrt4506 bool + if yyl4506 > cap(yyv4506) { - yyrg4501 := len(yyv4501) > 0 - yyv24501 := yyv4501 - yyrl4501, yyrt4501 = z.DecInferLen(yyl4501, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4501 { - if yyrl4501 <= cap(yyv4501) { - yyv4501 = yyv4501[:yyrl4501] + yyrg4506 := len(yyv4506) > 0 + yyv24506 := yyv4506 + yyrl4506, yyrt4506 = z.DecInferLen(yyl4506, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4506 { + if yyrl4506 <= cap(yyv4506) { + yyv4506 = yyv4506[:yyrl4506] } else { - yyv4501 = make([]ServicePort, yyrl4501) + yyv4506 = make([]ServicePort, yyrl4506) } } else { - yyv4501 = make([]ServicePort, yyrl4501) + yyv4506 = make([]ServicePort, yyrl4506) } - yyc4501 = true - yyrr4501 = len(yyv4501) - if yyrg4501 { - copy(yyv4501, yyv24501) + yyc4506 = true + yyrr4506 = len(yyv4506) + if yyrg4506 { + copy(yyv4506, yyv24506) } - } else if yyl4501 != len(yyv4501) { - yyv4501 = yyv4501[:yyl4501] - yyc4501 = true + } else if yyl4506 != len(yyv4506) { + yyv4506 = yyv4506[:yyl4506] + yyc4506 = true } - yyj4501 := 0 - for ; yyj4501 < yyrr4501; yyj4501++ { - yyh4501.ElemContainerState(yyj4501) + yyj4506 := 0 + for ; yyj4506 < yyrr4506; yyj4506++ { + yyh4506.ElemContainerState(yyj4506) if r.TryDecodeAsNil() { - yyv4501[yyj4501] = ServicePort{} + yyv4506[yyj4506] = ServicePort{} } else { - yyv4502 := &yyv4501[yyj4501] - yyv4502.CodecDecodeSelf(d) + yyv4507 := &yyv4506[yyj4506] + yyv4507.CodecDecodeSelf(d) } } - if yyrt4501 { - for ; yyj4501 < yyl4501; yyj4501++ { - yyv4501 = append(yyv4501, ServicePort{}) - yyh4501.ElemContainerState(yyj4501) + if yyrt4506 { + for ; yyj4506 < yyl4506; yyj4506++ { + yyv4506 = append(yyv4506, ServicePort{}) + yyh4506.ElemContainerState(yyj4506) if r.TryDecodeAsNil() { - yyv4501[yyj4501] = ServicePort{} + yyv4506[yyj4506] = ServicePort{} } else { - yyv4503 := &yyv4501[yyj4501] - yyv4503.CodecDecodeSelf(d) + yyv4508 := &yyv4506[yyj4506] + yyv4508.CodecDecodeSelf(d) } } } } else { - yyj4501 := 0 - for ; !r.CheckBreak(); yyj4501++ { + yyj4506 := 0 + for ; !r.CheckBreak(); yyj4506++ { - if yyj4501 >= len(yyv4501) { - yyv4501 = append(yyv4501, ServicePort{}) // var yyz4501 ServicePort - yyc4501 = true + if yyj4506 >= len(yyv4506) { + yyv4506 = append(yyv4506, ServicePort{}) // var yyz4506 ServicePort + yyc4506 = true } - yyh4501.ElemContainerState(yyj4501) - if yyj4501 < len(yyv4501) { + yyh4506.ElemContainerState(yyj4506) + if yyj4506 < len(yyv4506) { if r.TryDecodeAsNil() { - yyv4501[yyj4501] = ServicePort{} + yyv4506[yyj4506] = ServicePort{} } else { - yyv4504 := &yyv4501[yyj4501] - yyv4504.CodecDecodeSelf(d) + yyv4509 := &yyv4506[yyj4506] + yyv4509.CodecDecodeSelf(d) } } else { @@ -57162,17 +57203,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4501 < len(yyv4501) { - yyv4501 = yyv4501[:yyj4501] - yyc4501 = true - } else if yyj4501 == 0 && yyv4501 == nil { - yyv4501 = []ServicePort{} - yyc4501 = true + if yyj4506 < len(yyv4506) { + yyv4506 = yyv4506[:yyj4506] + yyc4506 = true + } else if yyj4506 == 0 && yyv4506 == nil { + yyv4506 = []ServicePort{} + yyc4506 = true } } - yyh4501.End() - if yyc4501 { - *v = yyv4501 + yyh4506.End() + if yyc4506 { + *v = yyv4506 } } @@ -57181,10 +57222,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4505 := range v { + for _, yyv4510 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4506 := &yyv4505 - yy4506.CodecEncodeSelf(e) + yy4511 := &yyv4510 + yy4511.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57194,83 +57235,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4507 := *v - yyh4507, yyl4507 := z.DecSliceHelperStart() - var yyc4507 bool - if yyl4507 == 0 { - if yyv4507 == nil { - yyv4507 = []ObjectReference{} - yyc4507 = true - } else if len(yyv4507) != 0 { - yyv4507 = yyv4507[:0] - yyc4507 = true + yyv4512 := *v + yyh4512, yyl4512 := z.DecSliceHelperStart() + var yyc4512 bool + if yyl4512 == 0 { + if yyv4512 == nil { + yyv4512 = []ObjectReference{} + yyc4512 = true + } else if len(yyv4512) != 0 { + yyv4512 = yyv4512[:0] + yyc4512 = true } - } else if yyl4507 > 0 { - var yyrr4507, yyrl4507 int - var yyrt4507 bool - if yyl4507 > cap(yyv4507) { + } else if yyl4512 > 0 { + var yyrr4512, yyrl4512 int + var yyrt4512 bool + if yyl4512 > cap(yyv4512) { - yyrg4507 := len(yyv4507) > 0 - yyv24507 := yyv4507 - yyrl4507, yyrt4507 = z.DecInferLen(yyl4507, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4507 { - if yyrl4507 <= cap(yyv4507) { - yyv4507 = yyv4507[:yyrl4507] + yyrg4512 := len(yyv4512) > 0 + yyv24512 := yyv4512 + yyrl4512, yyrt4512 = z.DecInferLen(yyl4512, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4512 { + if yyrl4512 <= cap(yyv4512) { + yyv4512 = yyv4512[:yyrl4512] } else { - yyv4507 = make([]ObjectReference, yyrl4507) + yyv4512 = make([]ObjectReference, yyrl4512) } } else { - yyv4507 = make([]ObjectReference, yyrl4507) + yyv4512 = make([]ObjectReference, yyrl4512) } - yyc4507 = true - yyrr4507 = len(yyv4507) - if yyrg4507 { - copy(yyv4507, yyv24507) + yyc4512 = true + yyrr4512 = len(yyv4512) + if yyrg4512 { + copy(yyv4512, yyv24512) } - } else if yyl4507 != len(yyv4507) { - yyv4507 = yyv4507[:yyl4507] - yyc4507 = true + } else if yyl4512 != len(yyv4512) { + yyv4512 = yyv4512[:yyl4512] + yyc4512 = true } - yyj4507 := 0 - for ; yyj4507 < yyrr4507; yyj4507++ { - yyh4507.ElemContainerState(yyj4507) + yyj4512 := 0 + for ; yyj4512 < yyrr4512; yyj4512++ { + yyh4512.ElemContainerState(yyj4512) if r.TryDecodeAsNil() { - yyv4507[yyj4507] = ObjectReference{} + yyv4512[yyj4512] = ObjectReference{} } else { - yyv4508 := &yyv4507[yyj4507] - yyv4508.CodecDecodeSelf(d) + yyv4513 := &yyv4512[yyj4512] + yyv4513.CodecDecodeSelf(d) } } - if yyrt4507 { - for ; yyj4507 < yyl4507; yyj4507++ { - yyv4507 = append(yyv4507, ObjectReference{}) - yyh4507.ElemContainerState(yyj4507) + if yyrt4512 { + for ; yyj4512 < yyl4512; yyj4512++ { + yyv4512 = append(yyv4512, ObjectReference{}) + yyh4512.ElemContainerState(yyj4512) if r.TryDecodeAsNil() { - yyv4507[yyj4507] = ObjectReference{} + yyv4512[yyj4512] = ObjectReference{} } else { - yyv4509 := &yyv4507[yyj4507] - yyv4509.CodecDecodeSelf(d) + yyv4514 := &yyv4512[yyj4512] + yyv4514.CodecDecodeSelf(d) } } } } else { - yyj4507 := 0 - for ; !r.CheckBreak(); yyj4507++ { + yyj4512 := 0 + for ; !r.CheckBreak(); yyj4512++ { - if yyj4507 >= len(yyv4507) { - yyv4507 = append(yyv4507, ObjectReference{}) // var yyz4507 ObjectReference - yyc4507 = true + if yyj4512 >= len(yyv4512) { + yyv4512 = append(yyv4512, ObjectReference{}) // var yyz4512 ObjectReference + yyc4512 = true } - yyh4507.ElemContainerState(yyj4507) - if yyj4507 < len(yyv4507) { + yyh4512.ElemContainerState(yyj4512) + if yyj4512 < len(yyv4512) { if r.TryDecodeAsNil() { - yyv4507[yyj4507] = ObjectReference{} + yyv4512[yyj4512] = ObjectReference{} } else { - yyv4510 := &yyv4507[yyj4507] - yyv4510.CodecDecodeSelf(d) + yyv4515 := &yyv4512[yyj4512] + yyv4515.CodecDecodeSelf(d) } } else { @@ -57278,17 +57319,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj4507 < len(yyv4507) { - yyv4507 = yyv4507[:yyj4507] - yyc4507 = true - } else if yyj4507 == 0 && yyv4507 == nil { - yyv4507 = []ObjectReference{} - yyc4507 = true + if yyj4512 < len(yyv4512) { + yyv4512 = yyv4512[:yyj4512] + yyc4512 = true + } else if yyj4512 == 0 && yyv4512 == nil { + yyv4512 = []ObjectReference{} + yyc4512 = true } } - yyh4507.End() - if yyc4507 { - *v = yyv4507 + yyh4512.End() + if yyc4512 { + *v = yyv4512 } } @@ -57297,10 +57338,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4511 := range v { + for _, yyv4516 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4512 := &yyv4511 - yy4512.CodecEncodeSelf(e) + yy4517 := &yyv4516 + yy4517.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57310,83 +57351,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4513 := *v - yyh4513, yyl4513 := z.DecSliceHelperStart() - var yyc4513 bool - if yyl4513 == 0 { - if yyv4513 == nil { - yyv4513 = []ServiceAccount{} - yyc4513 = true - } else if len(yyv4513) != 0 { - yyv4513 = yyv4513[:0] - yyc4513 = true + yyv4518 := *v + yyh4518, yyl4518 := z.DecSliceHelperStart() + var yyc4518 bool + if yyl4518 == 0 { + if yyv4518 == nil { + yyv4518 = []ServiceAccount{} + yyc4518 = true + } else if len(yyv4518) != 0 { + yyv4518 = yyv4518[:0] + yyc4518 = true } - } else if yyl4513 > 0 { - var yyrr4513, yyrl4513 int - var yyrt4513 bool - if yyl4513 > cap(yyv4513) { + } else if yyl4518 > 0 { + var yyrr4518, yyrl4518 int + var yyrt4518 bool + if yyl4518 > cap(yyv4518) { - yyrg4513 := len(yyv4513) > 0 - yyv24513 := yyv4513 - yyrl4513, yyrt4513 = z.DecInferLen(yyl4513, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4513 { - if yyrl4513 <= cap(yyv4513) { - yyv4513 = yyv4513[:yyrl4513] + yyrg4518 := len(yyv4518) > 0 + yyv24518 := yyv4518 + yyrl4518, yyrt4518 = z.DecInferLen(yyl4518, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4518 { + if yyrl4518 <= cap(yyv4518) { + yyv4518 = yyv4518[:yyrl4518] } else { - yyv4513 = make([]ServiceAccount, yyrl4513) + yyv4518 = make([]ServiceAccount, yyrl4518) } } else { - yyv4513 = make([]ServiceAccount, yyrl4513) + yyv4518 = make([]ServiceAccount, yyrl4518) } - yyc4513 = true - yyrr4513 = len(yyv4513) - if yyrg4513 { - copy(yyv4513, yyv24513) + yyc4518 = true + yyrr4518 = len(yyv4518) + if yyrg4518 { + copy(yyv4518, yyv24518) } - } else if yyl4513 != len(yyv4513) { - yyv4513 = yyv4513[:yyl4513] - yyc4513 = true + } else if yyl4518 != len(yyv4518) { + yyv4518 = yyv4518[:yyl4518] + yyc4518 = true } - yyj4513 := 0 - for ; yyj4513 < yyrr4513; yyj4513++ { - yyh4513.ElemContainerState(yyj4513) + yyj4518 := 0 + for ; yyj4518 < yyrr4518; yyj4518++ { + yyh4518.ElemContainerState(yyj4518) if r.TryDecodeAsNil() { - yyv4513[yyj4513] = ServiceAccount{} + yyv4518[yyj4518] = ServiceAccount{} } else { - yyv4514 := &yyv4513[yyj4513] - yyv4514.CodecDecodeSelf(d) + yyv4519 := &yyv4518[yyj4518] + yyv4519.CodecDecodeSelf(d) } } - if yyrt4513 { - for ; yyj4513 < yyl4513; yyj4513++ { - yyv4513 = append(yyv4513, ServiceAccount{}) - yyh4513.ElemContainerState(yyj4513) + if yyrt4518 { + for ; yyj4518 < yyl4518; yyj4518++ { + yyv4518 = append(yyv4518, ServiceAccount{}) + yyh4518.ElemContainerState(yyj4518) if r.TryDecodeAsNil() { - yyv4513[yyj4513] = ServiceAccount{} + yyv4518[yyj4518] = ServiceAccount{} } else { - yyv4515 := &yyv4513[yyj4513] - yyv4515.CodecDecodeSelf(d) + yyv4520 := &yyv4518[yyj4518] + yyv4520.CodecDecodeSelf(d) } } } } else { - yyj4513 := 0 - for ; !r.CheckBreak(); yyj4513++ { + yyj4518 := 0 + for ; !r.CheckBreak(); yyj4518++ { - if yyj4513 >= len(yyv4513) { - yyv4513 = append(yyv4513, ServiceAccount{}) // var yyz4513 ServiceAccount - yyc4513 = true + if yyj4518 >= len(yyv4518) { + yyv4518 = append(yyv4518, ServiceAccount{}) // var yyz4518 ServiceAccount + yyc4518 = true } - yyh4513.ElemContainerState(yyj4513) - if yyj4513 < len(yyv4513) { + yyh4518.ElemContainerState(yyj4518) + if yyj4518 < len(yyv4518) { if r.TryDecodeAsNil() { - yyv4513[yyj4513] = ServiceAccount{} + yyv4518[yyj4518] = ServiceAccount{} } else { - yyv4516 := &yyv4513[yyj4513] - yyv4516.CodecDecodeSelf(d) + yyv4521 := &yyv4518[yyj4518] + yyv4521.CodecDecodeSelf(d) } } else { @@ -57394,17 +57435,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj4513 < len(yyv4513) { - yyv4513 = yyv4513[:yyj4513] - yyc4513 = true - } else if yyj4513 == 0 && yyv4513 == nil { - yyv4513 = []ServiceAccount{} - yyc4513 = true + if yyj4518 < len(yyv4518) { + yyv4518 = yyv4518[:yyj4518] + yyc4518 = true + } else if yyj4518 == 0 && yyv4518 == nil { + yyv4518 = []ServiceAccount{} + yyc4518 = true } } - yyh4513.End() - if yyc4513 { - *v = yyv4513 + yyh4518.End() + if yyc4518 { + *v = yyv4518 } } @@ -57413,10 +57454,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4517 := range v { + for _, yyv4522 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4518 := &yyv4517 - yy4518.CodecEncodeSelf(e) + yy4523 := &yyv4522 + yy4523.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57426,83 +57467,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4519 := *v - yyh4519, yyl4519 := z.DecSliceHelperStart() - var yyc4519 bool - if yyl4519 == 0 { - if yyv4519 == nil { - yyv4519 = []EndpointSubset{} - yyc4519 = true - } else if len(yyv4519) != 0 { - yyv4519 = yyv4519[:0] - yyc4519 = true + yyv4524 := *v + yyh4524, yyl4524 := z.DecSliceHelperStart() + var yyc4524 bool + if yyl4524 == 0 { + if yyv4524 == nil { + yyv4524 = []EndpointSubset{} + yyc4524 = true + } else if len(yyv4524) != 0 { + yyv4524 = yyv4524[:0] + yyc4524 = true } - } else if yyl4519 > 0 { - var yyrr4519, yyrl4519 int - var yyrt4519 bool - if yyl4519 > cap(yyv4519) { + } else if yyl4524 > 0 { + var yyrr4524, yyrl4524 int + var yyrt4524 bool + if yyl4524 > cap(yyv4524) { - yyrg4519 := len(yyv4519) > 0 - yyv24519 := yyv4519 - yyrl4519, yyrt4519 = z.DecInferLen(yyl4519, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4519 { - if yyrl4519 <= cap(yyv4519) { - yyv4519 = yyv4519[:yyrl4519] + yyrg4524 := len(yyv4524) > 0 + yyv24524 := yyv4524 + yyrl4524, yyrt4524 = z.DecInferLen(yyl4524, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4524 { + if yyrl4524 <= cap(yyv4524) { + yyv4524 = yyv4524[:yyrl4524] } else { - yyv4519 = make([]EndpointSubset, yyrl4519) + yyv4524 = make([]EndpointSubset, yyrl4524) } } else { - yyv4519 = make([]EndpointSubset, yyrl4519) + yyv4524 = make([]EndpointSubset, yyrl4524) } - yyc4519 = true - yyrr4519 = len(yyv4519) - if yyrg4519 { - copy(yyv4519, yyv24519) + yyc4524 = true + yyrr4524 = len(yyv4524) + if yyrg4524 { + copy(yyv4524, yyv24524) } - } else if yyl4519 != len(yyv4519) { - yyv4519 = yyv4519[:yyl4519] - yyc4519 = true + } else if yyl4524 != len(yyv4524) { + yyv4524 = yyv4524[:yyl4524] + yyc4524 = true } - yyj4519 := 0 - for ; yyj4519 < yyrr4519; yyj4519++ { - yyh4519.ElemContainerState(yyj4519) + yyj4524 := 0 + for ; yyj4524 < yyrr4524; yyj4524++ { + yyh4524.ElemContainerState(yyj4524) if r.TryDecodeAsNil() { - yyv4519[yyj4519] = EndpointSubset{} + yyv4524[yyj4524] = EndpointSubset{} } else { - yyv4520 := &yyv4519[yyj4519] - yyv4520.CodecDecodeSelf(d) + yyv4525 := &yyv4524[yyj4524] + yyv4525.CodecDecodeSelf(d) } } - if yyrt4519 { - for ; yyj4519 < yyl4519; yyj4519++ { - yyv4519 = append(yyv4519, EndpointSubset{}) - yyh4519.ElemContainerState(yyj4519) + if yyrt4524 { + for ; yyj4524 < yyl4524; yyj4524++ { + yyv4524 = append(yyv4524, EndpointSubset{}) + yyh4524.ElemContainerState(yyj4524) if r.TryDecodeAsNil() { - yyv4519[yyj4519] = EndpointSubset{} + yyv4524[yyj4524] = EndpointSubset{} } else { - yyv4521 := &yyv4519[yyj4519] - yyv4521.CodecDecodeSelf(d) + yyv4526 := &yyv4524[yyj4524] + yyv4526.CodecDecodeSelf(d) } } } } else { - yyj4519 := 0 - for ; !r.CheckBreak(); yyj4519++ { + yyj4524 := 0 + for ; !r.CheckBreak(); yyj4524++ { - if yyj4519 >= len(yyv4519) { - yyv4519 = append(yyv4519, EndpointSubset{}) // var yyz4519 EndpointSubset - yyc4519 = true + if yyj4524 >= len(yyv4524) { + yyv4524 = append(yyv4524, EndpointSubset{}) // var yyz4524 EndpointSubset + yyc4524 = true } - yyh4519.ElemContainerState(yyj4519) - if yyj4519 < len(yyv4519) { + yyh4524.ElemContainerState(yyj4524) + if yyj4524 < len(yyv4524) { if r.TryDecodeAsNil() { - yyv4519[yyj4519] = EndpointSubset{} + yyv4524[yyj4524] = EndpointSubset{} } else { - yyv4522 := &yyv4519[yyj4519] - yyv4522.CodecDecodeSelf(d) + yyv4527 := &yyv4524[yyj4524] + yyv4527.CodecDecodeSelf(d) } } else { @@ -57510,17 +57551,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj4519 < len(yyv4519) { - yyv4519 = yyv4519[:yyj4519] - yyc4519 = true - } else if yyj4519 == 0 && yyv4519 == nil { - yyv4519 = []EndpointSubset{} - yyc4519 = true + if yyj4524 < len(yyv4524) { + yyv4524 = yyv4524[:yyj4524] + yyc4524 = true + } else if yyj4524 == 0 && yyv4524 == nil { + yyv4524 = []EndpointSubset{} + yyc4524 = true } } - yyh4519.End() - if yyc4519 { - *v = yyv4519 + yyh4524.End() + if yyc4524 { + *v = yyv4524 } } @@ -57529,10 +57570,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4523 := range v { + for _, yyv4528 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4524 := &yyv4523 - yy4524.CodecEncodeSelf(e) + yy4529 := &yyv4528 + yy4529.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57542,83 +57583,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4525 := *v - yyh4525, yyl4525 := z.DecSliceHelperStart() - var yyc4525 bool - if yyl4525 == 0 { - if yyv4525 == nil { - yyv4525 = []EndpointAddress{} - yyc4525 = true - } else if len(yyv4525) != 0 { - yyv4525 = yyv4525[:0] - yyc4525 = true + yyv4530 := *v + yyh4530, yyl4530 := z.DecSliceHelperStart() + var yyc4530 bool + if yyl4530 == 0 { + if yyv4530 == nil { + yyv4530 = []EndpointAddress{} + yyc4530 = true + } else if len(yyv4530) != 0 { + yyv4530 = yyv4530[:0] + yyc4530 = true } - } else if yyl4525 > 0 { - var yyrr4525, yyrl4525 int - var yyrt4525 bool - if yyl4525 > cap(yyv4525) { + } else if yyl4530 > 0 { + var yyrr4530, yyrl4530 int + var yyrt4530 bool + if yyl4530 > cap(yyv4530) { - yyrg4525 := len(yyv4525) > 0 - yyv24525 := yyv4525 - yyrl4525, yyrt4525 = z.DecInferLen(yyl4525, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4525 { - if yyrl4525 <= cap(yyv4525) { - yyv4525 = yyv4525[:yyrl4525] + yyrg4530 := len(yyv4530) > 0 + yyv24530 := yyv4530 + yyrl4530, yyrt4530 = z.DecInferLen(yyl4530, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4530 { + if yyrl4530 <= cap(yyv4530) { + yyv4530 = yyv4530[:yyrl4530] } else { - yyv4525 = make([]EndpointAddress, yyrl4525) + yyv4530 = make([]EndpointAddress, yyrl4530) } } else { - yyv4525 = make([]EndpointAddress, yyrl4525) + yyv4530 = make([]EndpointAddress, yyrl4530) } - yyc4525 = true - yyrr4525 = len(yyv4525) - if yyrg4525 { - copy(yyv4525, yyv24525) + yyc4530 = true + yyrr4530 = len(yyv4530) + if yyrg4530 { + copy(yyv4530, yyv24530) } - } else if yyl4525 != len(yyv4525) { - yyv4525 = yyv4525[:yyl4525] - yyc4525 = true + } else if yyl4530 != len(yyv4530) { + yyv4530 = yyv4530[:yyl4530] + yyc4530 = true } - yyj4525 := 0 - for ; yyj4525 < yyrr4525; yyj4525++ { - yyh4525.ElemContainerState(yyj4525) + yyj4530 := 0 + for ; yyj4530 < yyrr4530; yyj4530++ { + yyh4530.ElemContainerState(yyj4530) if r.TryDecodeAsNil() { - yyv4525[yyj4525] = EndpointAddress{} + yyv4530[yyj4530] = EndpointAddress{} } else { - yyv4526 := &yyv4525[yyj4525] - yyv4526.CodecDecodeSelf(d) + yyv4531 := &yyv4530[yyj4530] + yyv4531.CodecDecodeSelf(d) } } - if yyrt4525 { - for ; yyj4525 < yyl4525; yyj4525++ { - yyv4525 = append(yyv4525, EndpointAddress{}) - yyh4525.ElemContainerState(yyj4525) + if yyrt4530 { + for ; yyj4530 < yyl4530; yyj4530++ { + yyv4530 = append(yyv4530, EndpointAddress{}) + yyh4530.ElemContainerState(yyj4530) if r.TryDecodeAsNil() { - yyv4525[yyj4525] = EndpointAddress{} + yyv4530[yyj4530] = EndpointAddress{} } else { - yyv4527 := &yyv4525[yyj4525] - yyv4527.CodecDecodeSelf(d) + yyv4532 := &yyv4530[yyj4530] + yyv4532.CodecDecodeSelf(d) } } } } else { - yyj4525 := 0 - for ; !r.CheckBreak(); yyj4525++ { + yyj4530 := 0 + for ; !r.CheckBreak(); yyj4530++ { - if yyj4525 >= len(yyv4525) { - yyv4525 = append(yyv4525, EndpointAddress{}) // var yyz4525 EndpointAddress - yyc4525 = true + if yyj4530 >= len(yyv4530) { + yyv4530 = append(yyv4530, EndpointAddress{}) // var yyz4530 EndpointAddress + yyc4530 = true } - yyh4525.ElemContainerState(yyj4525) - if yyj4525 < len(yyv4525) { + yyh4530.ElemContainerState(yyj4530) + if yyj4530 < len(yyv4530) { if r.TryDecodeAsNil() { - yyv4525[yyj4525] = EndpointAddress{} + yyv4530[yyj4530] = EndpointAddress{} } else { - yyv4528 := &yyv4525[yyj4525] - yyv4528.CodecDecodeSelf(d) + yyv4533 := &yyv4530[yyj4530] + yyv4533.CodecDecodeSelf(d) } } else { @@ -57626,17 +57667,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj4525 < len(yyv4525) { - yyv4525 = yyv4525[:yyj4525] - yyc4525 = true - } else if yyj4525 == 0 && yyv4525 == nil { - yyv4525 = []EndpointAddress{} - yyc4525 = true + if yyj4530 < len(yyv4530) { + yyv4530 = yyv4530[:yyj4530] + yyc4530 = true + } else if yyj4530 == 0 && yyv4530 == nil { + yyv4530 = []EndpointAddress{} + yyc4530 = true } } - yyh4525.End() - if yyc4525 { - *v = yyv4525 + yyh4530.End() + if yyc4530 { + *v = yyv4530 } } @@ -57645,10 +57686,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4529 := range v { + for _, yyv4534 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4530 := &yyv4529 - yy4530.CodecEncodeSelf(e) + yy4535 := &yyv4534 + yy4535.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57658,83 +57699,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4531 := *v - yyh4531, yyl4531 := z.DecSliceHelperStart() - var yyc4531 bool - if yyl4531 == 0 { - if yyv4531 == nil { - yyv4531 = []EndpointPort{} - yyc4531 = true - } else if len(yyv4531) != 0 { - yyv4531 = yyv4531[:0] - yyc4531 = true + yyv4536 := *v + yyh4536, yyl4536 := z.DecSliceHelperStart() + var yyc4536 bool + if yyl4536 == 0 { + if yyv4536 == nil { + yyv4536 = []EndpointPort{} + yyc4536 = true + } else if len(yyv4536) != 0 { + yyv4536 = yyv4536[:0] + yyc4536 = true } - } else if yyl4531 > 0 { - var yyrr4531, yyrl4531 int - var yyrt4531 bool - if yyl4531 > cap(yyv4531) { + } else if yyl4536 > 0 { + var yyrr4536, yyrl4536 int + var yyrt4536 bool + if yyl4536 > cap(yyv4536) { - yyrg4531 := len(yyv4531) > 0 - yyv24531 := yyv4531 - yyrl4531, yyrt4531 = z.DecInferLen(yyl4531, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4531 { - if yyrl4531 <= cap(yyv4531) { - yyv4531 = yyv4531[:yyrl4531] + yyrg4536 := len(yyv4536) > 0 + yyv24536 := yyv4536 + yyrl4536, yyrt4536 = z.DecInferLen(yyl4536, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4536 { + if yyrl4536 <= cap(yyv4536) { + yyv4536 = yyv4536[:yyrl4536] } else { - yyv4531 = make([]EndpointPort, yyrl4531) + yyv4536 = make([]EndpointPort, yyrl4536) } } else { - yyv4531 = make([]EndpointPort, yyrl4531) + yyv4536 = make([]EndpointPort, yyrl4536) } - yyc4531 = true - yyrr4531 = len(yyv4531) - if yyrg4531 { - copy(yyv4531, yyv24531) + yyc4536 = true + yyrr4536 = len(yyv4536) + if yyrg4536 { + copy(yyv4536, yyv24536) } - } else if yyl4531 != len(yyv4531) { - yyv4531 = yyv4531[:yyl4531] - yyc4531 = true + } else if yyl4536 != len(yyv4536) { + yyv4536 = yyv4536[:yyl4536] + yyc4536 = true } - yyj4531 := 0 - for ; yyj4531 < yyrr4531; yyj4531++ { - yyh4531.ElemContainerState(yyj4531) + yyj4536 := 0 + for ; yyj4536 < yyrr4536; yyj4536++ { + yyh4536.ElemContainerState(yyj4536) if r.TryDecodeAsNil() { - yyv4531[yyj4531] = EndpointPort{} + yyv4536[yyj4536] = EndpointPort{} } else { - yyv4532 := &yyv4531[yyj4531] - yyv4532.CodecDecodeSelf(d) + yyv4537 := &yyv4536[yyj4536] + yyv4537.CodecDecodeSelf(d) } } - if yyrt4531 { - for ; yyj4531 < yyl4531; yyj4531++ { - yyv4531 = append(yyv4531, EndpointPort{}) - yyh4531.ElemContainerState(yyj4531) + if yyrt4536 { + for ; yyj4536 < yyl4536; yyj4536++ { + yyv4536 = append(yyv4536, EndpointPort{}) + yyh4536.ElemContainerState(yyj4536) if r.TryDecodeAsNil() { - yyv4531[yyj4531] = EndpointPort{} + yyv4536[yyj4536] = EndpointPort{} } else { - yyv4533 := &yyv4531[yyj4531] - yyv4533.CodecDecodeSelf(d) + yyv4538 := &yyv4536[yyj4536] + yyv4538.CodecDecodeSelf(d) } } } } else { - yyj4531 := 0 - for ; !r.CheckBreak(); yyj4531++ { + yyj4536 := 0 + for ; !r.CheckBreak(); yyj4536++ { - if yyj4531 >= len(yyv4531) { - yyv4531 = append(yyv4531, EndpointPort{}) // var yyz4531 EndpointPort - yyc4531 = true + if yyj4536 >= len(yyv4536) { + yyv4536 = append(yyv4536, EndpointPort{}) // var yyz4536 EndpointPort + yyc4536 = true } - yyh4531.ElemContainerState(yyj4531) - if yyj4531 < len(yyv4531) { + yyh4536.ElemContainerState(yyj4536) + if yyj4536 < len(yyv4536) { if r.TryDecodeAsNil() { - yyv4531[yyj4531] = EndpointPort{} + yyv4536[yyj4536] = EndpointPort{} } else { - yyv4534 := &yyv4531[yyj4531] - yyv4534.CodecDecodeSelf(d) + yyv4539 := &yyv4536[yyj4536] + yyv4539.CodecDecodeSelf(d) } } else { @@ -57742,17 +57783,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj4531 < len(yyv4531) { - yyv4531 = yyv4531[:yyj4531] - yyc4531 = true - } else if yyj4531 == 0 && yyv4531 == nil { - yyv4531 = []EndpointPort{} - yyc4531 = true + if yyj4536 < len(yyv4536) { + yyv4536 = yyv4536[:yyj4536] + yyc4536 = true + } else if yyj4536 == 0 && yyv4536 == nil { + yyv4536 = []EndpointPort{} + yyc4536 = true } } - yyh4531.End() - if yyc4531 { - *v = yyv4531 + yyh4536.End() + if yyc4536 { + *v = yyv4536 } } @@ -57761,10 +57802,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4535 := range v { + for _, yyv4540 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4536 := &yyv4535 - yy4536.CodecEncodeSelf(e) + yy4541 := &yyv4540 + yy4541.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57774,83 +57815,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4537 := *v - yyh4537, yyl4537 := z.DecSliceHelperStart() - var yyc4537 bool - if yyl4537 == 0 { - if yyv4537 == nil { - yyv4537 = []Endpoints{} - yyc4537 = true - } else if len(yyv4537) != 0 { - yyv4537 = yyv4537[:0] - yyc4537 = true + yyv4542 := *v + yyh4542, yyl4542 := z.DecSliceHelperStart() + var yyc4542 bool + if yyl4542 == 0 { + if yyv4542 == nil { + yyv4542 = []Endpoints{} + yyc4542 = true + } else if len(yyv4542) != 0 { + yyv4542 = yyv4542[:0] + yyc4542 = true } - } else if yyl4537 > 0 { - var yyrr4537, yyrl4537 int - var yyrt4537 bool - if yyl4537 > cap(yyv4537) { + } else if yyl4542 > 0 { + var yyrr4542, yyrl4542 int + var yyrt4542 bool + if yyl4542 > cap(yyv4542) { - yyrg4537 := len(yyv4537) > 0 - yyv24537 := yyv4537 - yyrl4537, yyrt4537 = z.DecInferLen(yyl4537, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4537 { - if yyrl4537 <= cap(yyv4537) { - yyv4537 = yyv4537[:yyrl4537] + yyrg4542 := len(yyv4542) > 0 + yyv24542 := yyv4542 + yyrl4542, yyrt4542 = z.DecInferLen(yyl4542, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4542 { + if yyrl4542 <= cap(yyv4542) { + yyv4542 = yyv4542[:yyrl4542] } else { - yyv4537 = make([]Endpoints, yyrl4537) + yyv4542 = make([]Endpoints, yyrl4542) } } else { - yyv4537 = make([]Endpoints, yyrl4537) + yyv4542 = make([]Endpoints, yyrl4542) } - yyc4537 = true - yyrr4537 = len(yyv4537) - if yyrg4537 { - copy(yyv4537, yyv24537) + yyc4542 = true + yyrr4542 = len(yyv4542) + if yyrg4542 { + copy(yyv4542, yyv24542) } - } else if yyl4537 != len(yyv4537) { - yyv4537 = yyv4537[:yyl4537] - yyc4537 = true + } else if yyl4542 != len(yyv4542) { + yyv4542 = yyv4542[:yyl4542] + yyc4542 = true } - yyj4537 := 0 - for ; yyj4537 < yyrr4537; yyj4537++ { - yyh4537.ElemContainerState(yyj4537) + yyj4542 := 0 + for ; yyj4542 < yyrr4542; yyj4542++ { + yyh4542.ElemContainerState(yyj4542) if r.TryDecodeAsNil() { - yyv4537[yyj4537] = Endpoints{} + yyv4542[yyj4542] = Endpoints{} } else { - yyv4538 := &yyv4537[yyj4537] - yyv4538.CodecDecodeSelf(d) + yyv4543 := &yyv4542[yyj4542] + yyv4543.CodecDecodeSelf(d) } } - if yyrt4537 { - for ; yyj4537 < yyl4537; yyj4537++ { - yyv4537 = append(yyv4537, Endpoints{}) - yyh4537.ElemContainerState(yyj4537) + if yyrt4542 { + for ; yyj4542 < yyl4542; yyj4542++ { + yyv4542 = append(yyv4542, Endpoints{}) + yyh4542.ElemContainerState(yyj4542) if r.TryDecodeAsNil() { - yyv4537[yyj4537] = Endpoints{} + yyv4542[yyj4542] = Endpoints{} } else { - yyv4539 := &yyv4537[yyj4537] - yyv4539.CodecDecodeSelf(d) + yyv4544 := &yyv4542[yyj4542] + yyv4544.CodecDecodeSelf(d) } } } } else { - yyj4537 := 0 - for ; !r.CheckBreak(); yyj4537++ { + yyj4542 := 0 + for ; !r.CheckBreak(); yyj4542++ { - if yyj4537 >= len(yyv4537) { - yyv4537 = append(yyv4537, Endpoints{}) // var yyz4537 Endpoints - yyc4537 = true + if yyj4542 >= len(yyv4542) { + yyv4542 = append(yyv4542, Endpoints{}) // var yyz4542 Endpoints + yyc4542 = true } - yyh4537.ElemContainerState(yyj4537) - if yyj4537 < len(yyv4537) { + yyh4542.ElemContainerState(yyj4542) + if yyj4542 < len(yyv4542) { if r.TryDecodeAsNil() { - yyv4537[yyj4537] = Endpoints{} + yyv4542[yyj4542] = Endpoints{} } else { - yyv4540 := &yyv4537[yyj4537] - yyv4540.CodecDecodeSelf(d) + yyv4545 := &yyv4542[yyj4542] + yyv4545.CodecDecodeSelf(d) } } else { @@ -57858,17 +57899,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj4537 < len(yyv4537) { - yyv4537 = yyv4537[:yyj4537] - yyc4537 = true - } else if yyj4537 == 0 && yyv4537 == nil { - yyv4537 = []Endpoints{} - yyc4537 = true + if yyj4542 < len(yyv4542) { + yyv4542 = yyv4542[:yyj4542] + yyc4542 = true + } else if yyj4542 == 0 && yyv4542 == nil { + yyv4542 = []Endpoints{} + yyc4542 = true } } - yyh4537.End() - if yyc4537 { - *v = yyv4537 + yyh4542.End() + if yyc4542 { + *v = yyv4542 } } @@ -57877,10 +57918,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4541 := range v { + for _, yyv4546 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4542 := &yyv4541 - yy4542.CodecEncodeSelf(e) + yy4547 := &yyv4546 + yy4547.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57890,83 +57931,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4543 := *v - yyh4543, yyl4543 := z.DecSliceHelperStart() - var yyc4543 bool - if yyl4543 == 0 { - if yyv4543 == nil { - yyv4543 = []NodeCondition{} - yyc4543 = true - } else if len(yyv4543) != 0 { - yyv4543 = yyv4543[:0] - yyc4543 = true + yyv4548 := *v + yyh4548, yyl4548 := z.DecSliceHelperStart() + var yyc4548 bool + if yyl4548 == 0 { + if yyv4548 == nil { + yyv4548 = []NodeCondition{} + yyc4548 = true + } else if len(yyv4548) != 0 { + yyv4548 = yyv4548[:0] + yyc4548 = true } - } else if yyl4543 > 0 { - var yyrr4543, yyrl4543 int - var yyrt4543 bool - if yyl4543 > cap(yyv4543) { + } else if yyl4548 > 0 { + var yyrr4548, yyrl4548 int + var yyrt4548 bool + if yyl4548 > cap(yyv4548) { - yyrg4543 := len(yyv4543) > 0 - yyv24543 := yyv4543 - yyrl4543, yyrt4543 = z.DecInferLen(yyl4543, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4543 { - if yyrl4543 <= cap(yyv4543) { - yyv4543 = yyv4543[:yyrl4543] + yyrg4548 := len(yyv4548) > 0 + yyv24548 := yyv4548 + yyrl4548, yyrt4548 = z.DecInferLen(yyl4548, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4548 { + if yyrl4548 <= cap(yyv4548) { + yyv4548 = yyv4548[:yyrl4548] } else { - yyv4543 = make([]NodeCondition, yyrl4543) + yyv4548 = make([]NodeCondition, yyrl4548) } } else { - yyv4543 = make([]NodeCondition, yyrl4543) + yyv4548 = make([]NodeCondition, yyrl4548) } - yyc4543 = true - yyrr4543 = len(yyv4543) - if yyrg4543 { - copy(yyv4543, yyv24543) + yyc4548 = true + yyrr4548 = len(yyv4548) + if yyrg4548 { + copy(yyv4548, yyv24548) } - } else if yyl4543 != len(yyv4543) { - yyv4543 = yyv4543[:yyl4543] - yyc4543 = true + } else if yyl4548 != len(yyv4548) { + yyv4548 = yyv4548[:yyl4548] + yyc4548 = true } - yyj4543 := 0 - for ; yyj4543 < yyrr4543; yyj4543++ { - yyh4543.ElemContainerState(yyj4543) + yyj4548 := 0 + for ; yyj4548 < yyrr4548; yyj4548++ { + yyh4548.ElemContainerState(yyj4548) if r.TryDecodeAsNil() { - yyv4543[yyj4543] = NodeCondition{} + yyv4548[yyj4548] = NodeCondition{} } else { - yyv4544 := &yyv4543[yyj4543] - yyv4544.CodecDecodeSelf(d) + yyv4549 := &yyv4548[yyj4548] + yyv4549.CodecDecodeSelf(d) } } - if yyrt4543 { - for ; yyj4543 < yyl4543; yyj4543++ { - yyv4543 = append(yyv4543, NodeCondition{}) - yyh4543.ElemContainerState(yyj4543) + if yyrt4548 { + for ; yyj4548 < yyl4548; yyj4548++ { + yyv4548 = append(yyv4548, NodeCondition{}) + yyh4548.ElemContainerState(yyj4548) if r.TryDecodeAsNil() { - yyv4543[yyj4543] = NodeCondition{} + yyv4548[yyj4548] = NodeCondition{} } else { - yyv4545 := &yyv4543[yyj4543] - yyv4545.CodecDecodeSelf(d) + yyv4550 := &yyv4548[yyj4548] + yyv4550.CodecDecodeSelf(d) } } } } else { - yyj4543 := 0 - for ; !r.CheckBreak(); yyj4543++ { + yyj4548 := 0 + for ; !r.CheckBreak(); yyj4548++ { - if yyj4543 >= len(yyv4543) { - yyv4543 = append(yyv4543, NodeCondition{}) // var yyz4543 NodeCondition - yyc4543 = true + if yyj4548 >= len(yyv4548) { + yyv4548 = append(yyv4548, NodeCondition{}) // var yyz4548 NodeCondition + yyc4548 = true } - yyh4543.ElemContainerState(yyj4543) - if yyj4543 < len(yyv4543) { + yyh4548.ElemContainerState(yyj4548) + if yyj4548 < len(yyv4548) { if r.TryDecodeAsNil() { - yyv4543[yyj4543] = NodeCondition{} + yyv4548[yyj4548] = NodeCondition{} } else { - yyv4546 := &yyv4543[yyj4543] - yyv4546.CodecDecodeSelf(d) + yyv4551 := &yyv4548[yyj4548] + yyv4551.CodecDecodeSelf(d) } } else { @@ -57974,17 +58015,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj4543 < len(yyv4543) { - yyv4543 = yyv4543[:yyj4543] - yyc4543 = true - } else if yyj4543 == 0 && yyv4543 == nil { - yyv4543 = []NodeCondition{} - yyc4543 = true + if yyj4548 < len(yyv4548) { + yyv4548 = yyv4548[:yyj4548] + yyc4548 = true + } else if yyj4548 == 0 && yyv4548 == nil { + yyv4548 = []NodeCondition{} + yyc4548 = true } } - yyh4543.End() - if yyc4543 { - *v = yyv4543 + yyh4548.End() + if yyc4548 { + *v = yyv4548 } } @@ -57993,10 +58034,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4547 := range v { + for _, yyv4552 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4548 := &yyv4547 - yy4548.CodecEncodeSelf(e) + yy4553 := &yyv4552 + yy4553.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58006,83 +58047,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4549 := *v - yyh4549, yyl4549 := z.DecSliceHelperStart() - var yyc4549 bool - if yyl4549 == 0 { - if yyv4549 == nil { - yyv4549 = []NodeAddress{} - yyc4549 = true - } else if len(yyv4549) != 0 { - yyv4549 = yyv4549[:0] - yyc4549 = true + yyv4554 := *v + yyh4554, yyl4554 := z.DecSliceHelperStart() + var yyc4554 bool + if yyl4554 == 0 { + if yyv4554 == nil { + yyv4554 = []NodeAddress{} + yyc4554 = true + } else if len(yyv4554) != 0 { + yyv4554 = yyv4554[:0] + yyc4554 = true } - } else if yyl4549 > 0 { - var yyrr4549, yyrl4549 int - var yyrt4549 bool - if yyl4549 > cap(yyv4549) { + } else if yyl4554 > 0 { + var yyrr4554, yyrl4554 int + var yyrt4554 bool + if yyl4554 > cap(yyv4554) { - yyrg4549 := len(yyv4549) > 0 - yyv24549 := yyv4549 - yyrl4549, yyrt4549 = z.DecInferLen(yyl4549, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4549 { - if yyrl4549 <= cap(yyv4549) { - yyv4549 = yyv4549[:yyrl4549] + yyrg4554 := len(yyv4554) > 0 + yyv24554 := yyv4554 + yyrl4554, yyrt4554 = z.DecInferLen(yyl4554, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4554 { + if yyrl4554 <= cap(yyv4554) { + yyv4554 = yyv4554[:yyrl4554] } else { - yyv4549 = make([]NodeAddress, yyrl4549) + yyv4554 = make([]NodeAddress, yyrl4554) } } else { - yyv4549 = make([]NodeAddress, yyrl4549) + yyv4554 = make([]NodeAddress, yyrl4554) } - yyc4549 = true - yyrr4549 = len(yyv4549) - if yyrg4549 { - copy(yyv4549, yyv24549) + yyc4554 = true + yyrr4554 = len(yyv4554) + if yyrg4554 { + copy(yyv4554, yyv24554) } - } else if yyl4549 != len(yyv4549) { - yyv4549 = yyv4549[:yyl4549] - yyc4549 = true + } else if yyl4554 != len(yyv4554) { + yyv4554 = yyv4554[:yyl4554] + yyc4554 = true } - yyj4549 := 0 - for ; yyj4549 < yyrr4549; yyj4549++ { - yyh4549.ElemContainerState(yyj4549) + yyj4554 := 0 + for ; yyj4554 < yyrr4554; yyj4554++ { + yyh4554.ElemContainerState(yyj4554) if r.TryDecodeAsNil() { - yyv4549[yyj4549] = NodeAddress{} + yyv4554[yyj4554] = NodeAddress{} } else { - yyv4550 := &yyv4549[yyj4549] - yyv4550.CodecDecodeSelf(d) + yyv4555 := &yyv4554[yyj4554] + yyv4555.CodecDecodeSelf(d) } } - if yyrt4549 { - for ; yyj4549 < yyl4549; yyj4549++ { - yyv4549 = append(yyv4549, NodeAddress{}) - yyh4549.ElemContainerState(yyj4549) + if yyrt4554 { + for ; yyj4554 < yyl4554; yyj4554++ { + yyv4554 = append(yyv4554, NodeAddress{}) + yyh4554.ElemContainerState(yyj4554) if r.TryDecodeAsNil() { - yyv4549[yyj4549] = NodeAddress{} + yyv4554[yyj4554] = NodeAddress{} } else { - yyv4551 := &yyv4549[yyj4549] - yyv4551.CodecDecodeSelf(d) + yyv4556 := &yyv4554[yyj4554] + yyv4556.CodecDecodeSelf(d) } } } } else { - yyj4549 := 0 - for ; !r.CheckBreak(); yyj4549++ { + yyj4554 := 0 + for ; !r.CheckBreak(); yyj4554++ { - if yyj4549 >= len(yyv4549) { - yyv4549 = append(yyv4549, NodeAddress{}) // var yyz4549 NodeAddress - yyc4549 = true + if yyj4554 >= len(yyv4554) { + yyv4554 = append(yyv4554, NodeAddress{}) // var yyz4554 NodeAddress + yyc4554 = true } - yyh4549.ElemContainerState(yyj4549) - if yyj4549 < len(yyv4549) { + yyh4554.ElemContainerState(yyj4554) + if yyj4554 < len(yyv4554) { if r.TryDecodeAsNil() { - yyv4549[yyj4549] = NodeAddress{} + yyv4554[yyj4554] = NodeAddress{} } else { - yyv4552 := &yyv4549[yyj4549] - yyv4552.CodecDecodeSelf(d) + yyv4557 := &yyv4554[yyj4554] + yyv4557.CodecDecodeSelf(d) } } else { @@ -58090,17 +58131,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj4549 < len(yyv4549) { - yyv4549 = yyv4549[:yyj4549] - yyc4549 = true - } else if yyj4549 == 0 && yyv4549 == nil { - yyv4549 = []NodeAddress{} - yyc4549 = true + if yyj4554 < len(yyv4554) { + yyv4554 = yyv4554[:yyj4554] + yyc4554 = true + } else if yyj4554 == 0 && yyv4554 == nil { + yyv4554 = []NodeAddress{} + yyc4554 = true } } - yyh4549.End() - if yyc4549 { - *v = yyv4549 + yyh4554.End() + if yyc4554 { + *v = yyv4554 } } @@ -58109,10 +58150,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4553 := range v { + for _, yyv4558 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4554 := &yyv4553 - yy4554.CodecEncodeSelf(e) + yy4559 := &yyv4558 + yy4559.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58122,83 +58163,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4555 := *v - yyh4555, yyl4555 := z.DecSliceHelperStart() - var yyc4555 bool - if yyl4555 == 0 { - if yyv4555 == nil { - yyv4555 = []ContainerImage{} - yyc4555 = true - } else if len(yyv4555) != 0 { - yyv4555 = yyv4555[:0] - yyc4555 = true + yyv4560 := *v + yyh4560, yyl4560 := z.DecSliceHelperStart() + var yyc4560 bool + if yyl4560 == 0 { + if yyv4560 == nil { + yyv4560 = []ContainerImage{} + yyc4560 = true + } else if len(yyv4560) != 0 { + yyv4560 = yyv4560[:0] + yyc4560 = true } - } else if yyl4555 > 0 { - var yyrr4555, yyrl4555 int - var yyrt4555 bool - if yyl4555 > cap(yyv4555) { + } else if yyl4560 > 0 { + var yyrr4560, yyrl4560 int + var yyrt4560 bool + if yyl4560 > cap(yyv4560) { - yyrg4555 := len(yyv4555) > 0 - yyv24555 := yyv4555 - yyrl4555, yyrt4555 = z.DecInferLen(yyl4555, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4555 { - if yyrl4555 <= cap(yyv4555) { - yyv4555 = yyv4555[:yyrl4555] + yyrg4560 := len(yyv4560) > 0 + yyv24560 := yyv4560 + yyrl4560, yyrt4560 = z.DecInferLen(yyl4560, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4560 { + if yyrl4560 <= cap(yyv4560) { + yyv4560 = yyv4560[:yyrl4560] } else { - yyv4555 = make([]ContainerImage, yyrl4555) + yyv4560 = make([]ContainerImage, yyrl4560) } } else { - yyv4555 = make([]ContainerImage, yyrl4555) + yyv4560 = make([]ContainerImage, yyrl4560) } - yyc4555 = true - yyrr4555 = len(yyv4555) - if yyrg4555 { - copy(yyv4555, yyv24555) + yyc4560 = true + yyrr4560 = len(yyv4560) + if yyrg4560 { + copy(yyv4560, yyv24560) } - } else if yyl4555 != len(yyv4555) { - yyv4555 = yyv4555[:yyl4555] - yyc4555 = true + } else if yyl4560 != len(yyv4560) { + yyv4560 = yyv4560[:yyl4560] + yyc4560 = true } - yyj4555 := 0 - for ; yyj4555 < yyrr4555; yyj4555++ { - yyh4555.ElemContainerState(yyj4555) + yyj4560 := 0 + for ; yyj4560 < yyrr4560; yyj4560++ { + yyh4560.ElemContainerState(yyj4560) if r.TryDecodeAsNil() { - yyv4555[yyj4555] = ContainerImage{} + yyv4560[yyj4560] = ContainerImage{} } else { - yyv4556 := &yyv4555[yyj4555] - yyv4556.CodecDecodeSelf(d) + yyv4561 := &yyv4560[yyj4560] + yyv4561.CodecDecodeSelf(d) } } - if yyrt4555 { - for ; yyj4555 < yyl4555; yyj4555++ { - yyv4555 = append(yyv4555, ContainerImage{}) - yyh4555.ElemContainerState(yyj4555) + if yyrt4560 { + for ; yyj4560 < yyl4560; yyj4560++ { + yyv4560 = append(yyv4560, ContainerImage{}) + yyh4560.ElemContainerState(yyj4560) if r.TryDecodeAsNil() { - yyv4555[yyj4555] = ContainerImage{} + yyv4560[yyj4560] = ContainerImage{} } else { - yyv4557 := &yyv4555[yyj4555] - yyv4557.CodecDecodeSelf(d) + yyv4562 := &yyv4560[yyj4560] + yyv4562.CodecDecodeSelf(d) } } } } else { - yyj4555 := 0 - for ; !r.CheckBreak(); yyj4555++ { + yyj4560 := 0 + for ; !r.CheckBreak(); yyj4560++ { - if yyj4555 >= len(yyv4555) { - yyv4555 = append(yyv4555, ContainerImage{}) // var yyz4555 ContainerImage - yyc4555 = true + if yyj4560 >= len(yyv4560) { + yyv4560 = append(yyv4560, ContainerImage{}) // var yyz4560 ContainerImage + yyc4560 = true } - yyh4555.ElemContainerState(yyj4555) - if yyj4555 < len(yyv4555) { + yyh4560.ElemContainerState(yyj4560) + if yyj4560 < len(yyv4560) { if r.TryDecodeAsNil() { - yyv4555[yyj4555] = ContainerImage{} + yyv4560[yyj4560] = ContainerImage{} } else { - yyv4558 := &yyv4555[yyj4555] - yyv4558.CodecDecodeSelf(d) + yyv4563 := &yyv4560[yyj4560] + yyv4563.CodecDecodeSelf(d) } } else { @@ -58206,17 +58247,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj4555 < len(yyv4555) { - yyv4555 = yyv4555[:yyj4555] - yyc4555 = true - } else if yyj4555 == 0 && yyv4555 == nil { - yyv4555 = []ContainerImage{} - yyc4555 = true + if yyj4560 < len(yyv4560) { + yyv4560 = yyv4560[:yyj4560] + yyc4560 = true + } else if yyj4560 == 0 && yyv4560 == nil { + yyv4560 = []ContainerImage{} + yyc4560 = true } } - yyh4555.End() - if yyc4555 { - *v = yyv4555 + yyh4560.End() + if yyc4560 { + *v = yyv4560 } } @@ -58225,9 +58266,9 @@ func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4559 := range v { + for _, yyv4564 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4559.CodecEncodeSelf(e) + yyv4564.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58237,75 +58278,75 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4560 := *v - yyh4560, yyl4560 := z.DecSliceHelperStart() - var yyc4560 bool - if yyl4560 == 0 { - if yyv4560 == nil { - yyv4560 = []UniqueVolumeName{} - yyc4560 = true - } else if len(yyv4560) != 0 { - yyv4560 = yyv4560[:0] - yyc4560 = true + yyv4565 := *v + yyh4565, yyl4565 := z.DecSliceHelperStart() + var yyc4565 bool + if yyl4565 == 0 { + if yyv4565 == nil { + yyv4565 = []UniqueVolumeName{} + yyc4565 = true + } else if len(yyv4565) != 0 { + yyv4565 = yyv4565[:0] + yyc4565 = true } - } else if yyl4560 > 0 { - var yyrr4560, yyrl4560 int - var yyrt4560 bool - if yyl4560 > cap(yyv4560) { + } else if yyl4565 > 0 { + var yyrr4565, yyrl4565 int + var yyrt4565 bool + if yyl4565 > cap(yyv4565) { - yyrl4560, yyrt4560 = z.DecInferLen(yyl4560, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4560 { - if yyrl4560 <= cap(yyv4560) { - yyv4560 = yyv4560[:yyrl4560] + yyrl4565, yyrt4565 = z.DecInferLen(yyl4565, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4565 { + if yyrl4565 <= cap(yyv4565) { + yyv4565 = yyv4565[:yyrl4565] } else { - yyv4560 = make([]UniqueVolumeName, yyrl4560) + yyv4565 = make([]UniqueVolumeName, yyrl4565) } } else { - yyv4560 = make([]UniqueVolumeName, yyrl4560) + yyv4565 = make([]UniqueVolumeName, yyrl4565) } - yyc4560 = true - yyrr4560 = len(yyv4560) - } else if yyl4560 != len(yyv4560) { - yyv4560 = yyv4560[:yyl4560] - yyc4560 = true + yyc4565 = true + yyrr4565 = len(yyv4565) + } else if yyl4565 != len(yyv4565) { + yyv4565 = yyv4565[:yyl4565] + yyc4565 = true } - yyj4560 := 0 - for ; yyj4560 < yyrr4560; yyj4560++ { - yyh4560.ElemContainerState(yyj4560) + yyj4565 := 0 + for ; yyj4565 < yyrr4565; yyj4565++ { + yyh4565.ElemContainerState(yyj4565) if r.TryDecodeAsNil() { - yyv4560[yyj4560] = "" + yyv4565[yyj4565] = "" } else { - yyv4560[yyj4560] = UniqueVolumeName(r.DecodeString()) + yyv4565[yyj4565] = UniqueVolumeName(r.DecodeString()) } } - if yyrt4560 { - for ; yyj4560 < yyl4560; yyj4560++ { - yyv4560 = append(yyv4560, "") - yyh4560.ElemContainerState(yyj4560) + if yyrt4565 { + for ; yyj4565 < yyl4565; yyj4565++ { + yyv4565 = append(yyv4565, "") + yyh4565.ElemContainerState(yyj4565) if r.TryDecodeAsNil() { - yyv4560[yyj4560] = "" + yyv4565[yyj4565] = "" } else { - yyv4560[yyj4560] = UniqueVolumeName(r.DecodeString()) + yyv4565[yyj4565] = UniqueVolumeName(r.DecodeString()) } } } } else { - yyj4560 := 0 - for ; !r.CheckBreak(); yyj4560++ { + yyj4565 := 0 + for ; !r.CheckBreak(); yyj4565++ { - if yyj4560 >= len(yyv4560) { - yyv4560 = append(yyv4560, "") // var yyz4560 UniqueVolumeName - yyc4560 = true + if yyj4565 >= len(yyv4565) { + yyv4565 = append(yyv4565, "") // var yyz4565 UniqueVolumeName + yyc4565 = true } - yyh4560.ElemContainerState(yyj4560) - if yyj4560 < len(yyv4560) { + yyh4565.ElemContainerState(yyj4565) + if yyj4565 < len(yyv4565) { if r.TryDecodeAsNil() { - yyv4560[yyj4560] = "" + yyv4565[yyj4565] = "" } else { - yyv4560[yyj4560] = UniqueVolumeName(r.DecodeString()) + yyv4565[yyj4565] = UniqueVolumeName(r.DecodeString()) } } else { @@ -58313,17 +58354,17 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code } } - if yyj4560 < len(yyv4560) { - yyv4560 = yyv4560[:yyj4560] - yyc4560 = true - } else if yyj4560 == 0 && yyv4560 == nil { - yyv4560 = []UniqueVolumeName{} - yyc4560 = true + if yyj4565 < len(yyv4565) { + yyv4565 = yyv4565[:yyj4565] + yyc4565 = true + } else if yyj4565 == 0 && yyv4565 == nil { + yyv4565 = []UniqueVolumeName{} + yyc4565 = true } } - yyh4560.End() - if yyc4560 { - *v = yyv4560 + yyh4565.End() + if yyc4565 { + *v = yyv4565 } } @@ -58332,10 +58373,10 @@ func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4564 := range v { + for _, yyv4569 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4565 := &yyv4564 - yy4565.CodecEncodeSelf(e) + yy4570 := &yyv4569 + yy4570.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58345,83 +58386,83 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4566 := *v - yyh4566, yyl4566 := z.DecSliceHelperStart() - var yyc4566 bool - if yyl4566 == 0 { - if yyv4566 == nil { - yyv4566 = []AttachedVolume{} - yyc4566 = true - } else if len(yyv4566) != 0 { - yyv4566 = yyv4566[:0] - yyc4566 = true + yyv4571 := *v + yyh4571, yyl4571 := z.DecSliceHelperStart() + var yyc4571 bool + if yyl4571 == 0 { + if yyv4571 == nil { + yyv4571 = []AttachedVolume{} + yyc4571 = true + } else if len(yyv4571) != 0 { + yyv4571 = yyv4571[:0] + yyc4571 = true } - } else if yyl4566 > 0 { - var yyrr4566, yyrl4566 int - var yyrt4566 bool - if yyl4566 > cap(yyv4566) { + } else if yyl4571 > 0 { + var yyrr4571, yyrl4571 int + var yyrt4571 bool + if yyl4571 > cap(yyv4571) { - yyrg4566 := len(yyv4566) > 0 - yyv24566 := yyv4566 - yyrl4566, yyrt4566 = z.DecInferLen(yyl4566, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4566 { - if yyrl4566 <= cap(yyv4566) { - yyv4566 = yyv4566[:yyrl4566] + yyrg4571 := len(yyv4571) > 0 + yyv24571 := yyv4571 + yyrl4571, yyrt4571 = z.DecInferLen(yyl4571, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4571 { + if yyrl4571 <= cap(yyv4571) { + yyv4571 = yyv4571[:yyrl4571] } else { - yyv4566 = make([]AttachedVolume, yyrl4566) + yyv4571 = make([]AttachedVolume, yyrl4571) } } else { - yyv4566 = make([]AttachedVolume, yyrl4566) + yyv4571 = make([]AttachedVolume, yyrl4571) } - yyc4566 = true - yyrr4566 = len(yyv4566) - if yyrg4566 { - copy(yyv4566, yyv24566) + yyc4571 = true + yyrr4571 = len(yyv4571) + if yyrg4571 { + copy(yyv4571, yyv24571) } - } else if yyl4566 != len(yyv4566) { - yyv4566 = yyv4566[:yyl4566] - yyc4566 = true + } else if yyl4571 != len(yyv4571) { + yyv4571 = yyv4571[:yyl4571] + yyc4571 = true } - yyj4566 := 0 - for ; yyj4566 < yyrr4566; yyj4566++ { - yyh4566.ElemContainerState(yyj4566) + yyj4571 := 0 + for ; yyj4571 < yyrr4571; yyj4571++ { + yyh4571.ElemContainerState(yyj4571) if r.TryDecodeAsNil() { - yyv4566[yyj4566] = AttachedVolume{} + yyv4571[yyj4571] = AttachedVolume{} } else { - yyv4567 := &yyv4566[yyj4566] - yyv4567.CodecDecodeSelf(d) + yyv4572 := &yyv4571[yyj4571] + yyv4572.CodecDecodeSelf(d) } } - if yyrt4566 { - for ; yyj4566 < yyl4566; yyj4566++ { - yyv4566 = append(yyv4566, AttachedVolume{}) - yyh4566.ElemContainerState(yyj4566) + if yyrt4571 { + for ; yyj4571 < yyl4571; yyj4571++ { + yyv4571 = append(yyv4571, AttachedVolume{}) + yyh4571.ElemContainerState(yyj4571) if r.TryDecodeAsNil() { - yyv4566[yyj4566] = AttachedVolume{} + yyv4571[yyj4571] = AttachedVolume{} } else { - yyv4568 := &yyv4566[yyj4566] - yyv4568.CodecDecodeSelf(d) + yyv4573 := &yyv4571[yyj4571] + yyv4573.CodecDecodeSelf(d) } } } } else { - yyj4566 := 0 - for ; !r.CheckBreak(); yyj4566++ { + yyj4571 := 0 + for ; !r.CheckBreak(); yyj4571++ { - if yyj4566 >= len(yyv4566) { - yyv4566 = append(yyv4566, AttachedVolume{}) // var yyz4566 AttachedVolume - yyc4566 = true + if yyj4571 >= len(yyv4571) { + yyv4571 = append(yyv4571, AttachedVolume{}) // var yyz4571 AttachedVolume + yyc4571 = true } - yyh4566.ElemContainerState(yyj4566) - if yyj4566 < len(yyv4566) { + yyh4571.ElemContainerState(yyj4571) + if yyj4571 < len(yyv4571) { if r.TryDecodeAsNil() { - yyv4566[yyj4566] = AttachedVolume{} + yyv4571[yyj4571] = AttachedVolume{} } else { - yyv4569 := &yyv4566[yyj4566] - yyv4569.CodecDecodeSelf(d) + yyv4574 := &yyv4571[yyj4571] + yyv4574.CodecDecodeSelf(d) } } else { @@ -58429,17 +58470,17 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } } - if yyj4566 < len(yyv4566) { - yyv4566 = yyv4566[:yyj4566] - yyc4566 = true - } else if yyj4566 == 0 && yyv4566 == nil { - yyv4566 = []AttachedVolume{} - yyc4566 = true + if yyj4571 < len(yyv4571) { + yyv4571 = yyv4571[:yyj4571] + yyc4571 = true + } else if yyj4571 == 0 && yyv4571 == nil { + yyv4571 = []AttachedVolume{} + yyc4571 = true } } - yyh4566.End() - if yyc4566 { - *v = yyv4566 + yyh4571.End() + if yyc4571 { + *v = yyv4571 } } @@ -58448,10 +58489,10 @@ func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4570 := range v { + for _, yyv4575 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4571 := &yyv4570 - yy4571.CodecEncodeSelf(e) + yy4576 := &yyv4575 + yy4576.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58461,83 +58502,83 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4572 := *v - yyh4572, yyl4572 := z.DecSliceHelperStart() - var yyc4572 bool - if yyl4572 == 0 { - if yyv4572 == nil { - yyv4572 = []PreferAvoidPodsEntry{} - yyc4572 = true - } else if len(yyv4572) != 0 { - yyv4572 = yyv4572[:0] - yyc4572 = true + yyv4577 := *v + yyh4577, yyl4577 := z.DecSliceHelperStart() + var yyc4577 bool + if yyl4577 == 0 { + if yyv4577 == nil { + yyv4577 = []PreferAvoidPodsEntry{} + yyc4577 = true + } else if len(yyv4577) != 0 { + yyv4577 = yyv4577[:0] + yyc4577 = true } - } else if yyl4572 > 0 { - var yyrr4572, yyrl4572 int - var yyrt4572 bool - if yyl4572 > cap(yyv4572) { + } else if yyl4577 > 0 { + var yyrr4577, yyrl4577 int + var yyrt4577 bool + if yyl4577 > cap(yyv4577) { - yyrg4572 := len(yyv4572) > 0 - yyv24572 := yyv4572 - yyrl4572, yyrt4572 = z.DecInferLen(yyl4572, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4572 { - if yyrl4572 <= cap(yyv4572) { - yyv4572 = yyv4572[:yyrl4572] + yyrg4577 := len(yyv4577) > 0 + yyv24577 := yyv4577 + yyrl4577, yyrt4577 = z.DecInferLen(yyl4577, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4577 { + if yyrl4577 <= cap(yyv4577) { + yyv4577 = yyv4577[:yyrl4577] } else { - yyv4572 = make([]PreferAvoidPodsEntry, yyrl4572) + yyv4577 = make([]PreferAvoidPodsEntry, yyrl4577) } } else { - yyv4572 = make([]PreferAvoidPodsEntry, yyrl4572) + yyv4577 = make([]PreferAvoidPodsEntry, yyrl4577) } - yyc4572 = true - yyrr4572 = len(yyv4572) - if yyrg4572 { - copy(yyv4572, yyv24572) + yyc4577 = true + yyrr4577 = len(yyv4577) + if yyrg4577 { + copy(yyv4577, yyv24577) } - } else if yyl4572 != len(yyv4572) { - yyv4572 = yyv4572[:yyl4572] - yyc4572 = true + } else if yyl4577 != len(yyv4577) { + yyv4577 = yyv4577[:yyl4577] + yyc4577 = true } - yyj4572 := 0 - for ; yyj4572 < yyrr4572; yyj4572++ { - yyh4572.ElemContainerState(yyj4572) + yyj4577 := 0 + for ; yyj4577 < yyrr4577; yyj4577++ { + yyh4577.ElemContainerState(yyj4577) if r.TryDecodeAsNil() { - yyv4572[yyj4572] = PreferAvoidPodsEntry{} + yyv4577[yyj4577] = PreferAvoidPodsEntry{} } else { - yyv4573 := &yyv4572[yyj4572] - yyv4573.CodecDecodeSelf(d) + yyv4578 := &yyv4577[yyj4577] + yyv4578.CodecDecodeSelf(d) } } - if yyrt4572 { - for ; yyj4572 < yyl4572; yyj4572++ { - yyv4572 = append(yyv4572, PreferAvoidPodsEntry{}) - yyh4572.ElemContainerState(yyj4572) + if yyrt4577 { + for ; yyj4577 < yyl4577; yyj4577++ { + yyv4577 = append(yyv4577, PreferAvoidPodsEntry{}) + yyh4577.ElemContainerState(yyj4577) if r.TryDecodeAsNil() { - yyv4572[yyj4572] = PreferAvoidPodsEntry{} + yyv4577[yyj4577] = PreferAvoidPodsEntry{} } else { - yyv4574 := &yyv4572[yyj4572] - yyv4574.CodecDecodeSelf(d) + yyv4579 := &yyv4577[yyj4577] + yyv4579.CodecDecodeSelf(d) } } } } else { - yyj4572 := 0 - for ; !r.CheckBreak(); yyj4572++ { + yyj4577 := 0 + for ; !r.CheckBreak(); yyj4577++ { - if yyj4572 >= len(yyv4572) { - yyv4572 = append(yyv4572, PreferAvoidPodsEntry{}) // var yyz4572 PreferAvoidPodsEntry - yyc4572 = true + if yyj4577 >= len(yyv4577) { + yyv4577 = append(yyv4577, PreferAvoidPodsEntry{}) // var yyz4577 PreferAvoidPodsEntry + yyc4577 = true } - yyh4572.ElemContainerState(yyj4572) - if yyj4572 < len(yyv4572) { + yyh4577.ElemContainerState(yyj4577) + if yyj4577 < len(yyv4577) { if r.TryDecodeAsNil() { - yyv4572[yyj4572] = PreferAvoidPodsEntry{} + yyv4577[yyj4577] = PreferAvoidPodsEntry{} } else { - yyv4575 := &yyv4572[yyj4572] - yyv4575.CodecDecodeSelf(d) + yyv4580 := &yyv4577[yyj4577] + yyv4580.CodecDecodeSelf(d) } } else { @@ -58545,17 +58586,17 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } } - if yyj4572 < len(yyv4572) { - yyv4572 = yyv4572[:yyj4572] - yyc4572 = true - } else if yyj4572 == 0 && yyv4572 == nil { - yyv4572 = []PreferAvoidPodsEntry{} - yyc4572 = true + if yyj4577 < len(yyv4577) { + yyv4577 = yyv4577[:yyj4577] + yyc4577 = true + } else if yyj4577 == 0 && yyv4577 == nil { + yyv4577 = []PreferAvoidPodsEntry{} + yyc4577 = true } } - yyh4572.End() - if yyc4572 { - *v = yyv4572 + yyh4577.End() + if yyc4577 { + *v = yyv4577 } } @@ -58564,19 +58605,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4576, yyv4576 := range v { + for yyk4581, yyv4581 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4576.CodecEncodeSelf(e) + yyk4581.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4577 := &yyv4576 - yym4578 := z.EncBinary() - _ = yym4578 + yy4582 := &yyv4581 + yym4583 := z.EncBinary() + _ = yym4583 if false { - } else if z.HasExtensions() && z.EncExt(yy4577) { - } else if !yym4578 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4577) + } else if z.HasExtensions() && z.EncExt(yy4582) { + } else if !yym4583 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4582) } else { - z.EncFallback(yy4577) + z.EncFallback(yy4582) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -58587,86 +58628,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4579 := *v - yyl4579 := r.ReadMapStart() - yybh4579 := z.DecBasicHandle() - if yyv4579 == nil { - yyrl4579, _ := z.DecInferLen(yyl4579, yybh4579.MaxInitLen, 72) - yyv4579 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4579) - *v = yyv4579 + yyv4584 := *v + yyl4584 := r.ReadMapStart() + yybh4584 := z.DecBasicHandle() + if yyv4584 == nil { + yyrl4584, _ := z.DecInferLen(yyl4584, yybh4584.MaxInitLen, 72) + yyv4584 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4584) + *v = yyv4584 } - var yymk4579 ResourceName - var yymv4579 pkg3_resource.Quantity - var yymg4579 bool - if yybh4579.MapValueReset { - yymg4579 = true + var yymk4584 ResourceName + var yymv4584 pkg3_resource.Quantity + var yymg4584 bool + if yybh4584.MapValueReset { + yymg4584 = true } - if yyl4579 > 0 { - for yyj4579 := 0; yyj4579 < yyl4579; yyj4579++ { + if yyl4584 > 0 { + for yyj4584 := 0; yyj4584 < yyl4584; yyj4584++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4579 = "" + yymk4584 = "" } else { - yymk4579 = ResourceName(r.DecodeString()) + yymk4584 = ResourceName(r.DecodeString()) } - if yymg4579 { - yymv4579 = yyv4579[yymk4579] + if yymg4584 { + yymv4584 = yyv4584[yymk4584] } else { - yymv4579 = pkg3_resource.Quantity{} + yymv4584 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4579 = pkg3_resource.Quantity{} + yymv4584 = pkg3_resource.Quantity{} } else { - yyv4581 := &yymv4579 - yym4582 := z.DecBinary() - _ = yym4582 + yyv4586 := &yymv4584 + yym4587 := z.DecBinary() + _ = yym4587 if false { - } else if z.HasExtensions() && z.DecExt(yyv4581) { - } else if !yym4582 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4581) + } else if z.HasExtensions() && z.DecExt(yyv4586) { + } else if !yym4587 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4586) } else { - z.DecFallback(yyv4581, false) + z.DecFallback(yyv4586, false) } } - if yyv4579 != nil { - yyv4579[yymk4579] = yymv4579 + if yyv4584 != nil { + yyv4584[yymk4584] = yymv4584 } } - } else if yyl4579 < 0 { - for yyj4579 := 0; !r.CheckBreak(); yyj4579++ { + } else if yyl4584 < 0 { + for yyj4584 := 0; !r.CheckBreak(); yyj4584++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4579 = "" + yymk4584 = "" } else { - yymk4579 = ResourceName(r.DecodeString()) + yymk4584 = ResourceName(r.DecodeString()) } - if yymg4579 { - yymv4579 = yyv4579[yymk4579] + if yymg4584 { + yymv4584 = yyv4584[yymk4584] } else { - yymv4579 = pkg3_resource.Quantity{} + yymv4584 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4579 = pkg3_resource.Quantity{} + yymv4584 = pkg3_resource.Quantity{} } else { - yyv4584 := &yymv4579 - yym4585 := z.DecBinary() - _ = yym4585 + yyv4589 := &yymv4584 + yym4590 := z.DecBinary() + _ = yym4590 if false { - } else if z.HasExtensions() && z.DecExt(yyv4584) { - } else if !yym4585 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4584) + } else if z.HasExtensions() && z.DecExt(yyv4589) { + } else if !yym4590 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4589) } else { - z.DecFallback(yyv4584, false) + z.DecFallback(yyv4589, false) } } - if yyv4579 != nil { - yyv4579[yymk4579] = yymv4579 + if yyv4584 != nil { + yyv4584[yymk4584] = yymv4584 } } } // else len==0: TODO: Should we clear map entries? @@ -58678,10 +58719,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4586 := range v { + for _, yyv4591 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4587 := &yyv4586 - yy4587.CodecEncodeSelf(e) + yy4592 := &yyv4591 + yy4592.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58691,127 +58732,12 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4588 := *v - yyh4588, yyl4588 := z.DecSliceHelperStart() - var yyc4588 bool - if yyl4588 == 0 { - if yyv4588 == nil { - yyv4588 = []Node{} - yyc4588 = true - } else if len(yyv4588) != 0 { - yyv4588 = yyv4588[:0] - yyc4588 = true - } - } else if yyl4588 > 0 { - var yyrr4588, yyrl4588 int - var yyrt4588 bool - if yyl4588 > cap(yyv4588) { - - yyrg4588 := len(yyv4588) > 0 - yyv24588 := yyv4588 - yyrl4588, yyrt4588 = z.DecInferLen(yyl4588, z.DecBasicHandle().MaxInitLen, 616) - if yyrt4588 { - if yyrl4588 <= cap(yyv4588) { - yyv4588 = yyv4588[:yyrl4588] - } else { - yyv4588 = make([]Node, yyrl4588) - } - } else { - yyv4588 = make([]Node, yyrl4588) - } - yyc4588 = true - yyrr4588 = len(yyv4588) - if yyrg4588 { - copy(yyv4588, yyv24588) - } - } else if yyl4588 != len(yyv4588) { - yyv4588 = yyv4588[:yyl4588] - yyc4588 = true - } - yyj4588 := 0 - for ; yyj4588 < yyrr4588; yyj4588++ { - yyh4588.ElemContainerState(yyj4588) - if r.TryDecodeAsNil() { - yyv4588[yyj4588] = Node{} - } else { - yyv4589 := &yyv4588[yyj4588] - yyv4589.CodecDecodeSelf(d) - } - - } - if yyrt4588 { - for ; yyj4588 < yyl4588; yyj4588++ { - yyv4588 = append(yyv4588, Node{}) - yyh4588.ElemContainerState(yyj4588) - if r.TryDecodeAsNil() { - yyv4588[yyj4588] = Node{} - } else { - yyv4590 := &yyv4588[yyj4588] - yyv4590.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4588 := 0 - for ; !r.CheckBreak(); yyj4588++ { - - if yyj4588 >= len(yyv4588) { - yyv4588 = append(yyv4588, Node{}) // var yyz4588 Node - yyc4588 = true - } - yyh4588.ElemContainerState(yyj4588) - if yyj4588 < len(yyv4588) { - if r.TryDecodeAsNil() { - yyv4588[yyj4588] = Node{} - } else { - yyv4591 := &yyv4588[yyj4588] - yyv4591.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4588 < len(yyv4588) { - yyv4588 = yyv4588[:yyj4588] - yyc4588 = true - } else if yyj4588 == 0 && yyv4588 == nil { - yyv4588 = []Node{} - yyc4588 = true - } - } - yyh4588.End() - if yyc4588 { - *v = yyv4588 - } -} - -func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4592 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4592.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yyv4593 := *v yyh4593, yyl4593 := z.DecSliceHelperStart() var yyc4593 bool if yyl4593 == 0 { if yyv4593 == nil { - yyv4593 = []FinalizerName{} + yyv4593 = []Node{} yyc4593 = true } else if len(yyv4593) != 0 { yyv4593 = yyv4593[:0] @@ -58822,18 +58748,23 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. var yyrt4593 bool if yyl4593 > cap(yyv4593) { - yyrl4593, yyrt4593 = z.DecInferLen(yyl4593, z.DecBasicHandle().MaxInitLen, 16) + yyrg4593 := len(yyv4593) > 0 + yyv24593 := yyv4593 + yyrl4593, yyrt4593 = z.DecInferLen(yyl4593, z.DecBasicHandle().MaxInitLen, 616) if yyrt4593 { if yyrl4593 <= cap(yyv4593) { yyv4593 = yyv4593[:yyrl4593] } else { - yyv4593 = make([]FinalizerName, yyrl4593) + yyv4593 = make([]Node, yyrl4593) } } else { - yyv4593 = make([]FinalizerName, yyrl4593) + yyv4593 = make([]Node, yyrl4593) } yyc4593 = true yyrr4593 = len(yyv4593) + if yyrg4593 { + copy(yyv4593, yyv24593) + } } else if yyl4593 != len(yyv4593) { yyv4593 = yyv4593[:yyl4593] yyc4593 = true @@ -58842,20 +58773,22 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. for ; yyj4593 < yyrr4593; yyj4593++ { yyh4593.ElemContainerState(yyj4593) if r.TryDecodeAsNil() { - yyv4593[yyj4593] = "" + yyv4593[yyj4593] = Node{} } else { - yyv4593[yyj4593] = FinalizerName(r.DecodeString()) + yyv4594 := &yyv4593[yyj4593] + yyv4594.CodecDecodeSelf(d) } } if yyrt4593 { for ; yyj4593 < yyl4593; yyj4593++ { - yyv4593 = append(yyv4593, "") + yyv4593 = append(yyv4593, Node{}) yyh4593.ElemContainerState(yyj4593) if r.TryDecodeAsNil() { - yyv4593[yyj4593] = "" + yyv4593[yyj4593] = Node{} } else { - yyv4593[yyj4593] = FinalizerName(r.DecodeString()) + yyv4595 := &yyv4593[yyj4593] + yyv4595.CodecDecodeSelf(d) } } @@ -58866,15 +58799,16 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. for ; !r.CheckBreak(); yyj4593++ { if yyj4593 >= len(yyv4593) { - yyv4593 = append(yyv4593, "") // var yyz4593 FinalizerName + yyv4593 = append(yyv4593, Node{}) // var yyz4593 Node yyc4593 = true } yyh4593.ElemContainerState(yyj4593) if yyj4593 < len(yyv4593) { if r.TryDecodeAsNil() { - yyv4593[yyj4593] = "" + yyv4593[yyj4593] = Node{} } else { - yyv4593[yyj4593] = FinalizerName(r.DecodeString()) + yyv4596 := &yyv4593[yyj4593] + yyv4596.CodecDecodeSelf(d) } } else { @@ -58886,7 +58820,7 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. yyv4593 = yyv4593[:yyj4593] yyc4593 = true } else if yyj4593 == 0 && yyv4593 == nil { - yyv4593 = []FinalizerName{} + yyv4593 = []Node{} yyc4593 = true } } @@ -58896,101 +58830,92 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } -func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) for _, yyv4597 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4598 := &yyv4597 - yy4598.CodecEncodeSelf(e) + yyv4597.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4599 := *v - yyh4599, yyl4599 := z.DecSliceHelperStart() - var yyc4599 bool - if yyl4599 == 0 { - if yyv4599 == nil { - yyv4599 = []Namespace{} - yyc4599 = true - } else if len(yyv4599) != 0 { - yyv4599 = yyv4599[:0] - yyc4599 = true + yyv4598 := *v + yyh4598, yyl4598 := z.DecSliceHelperStart() + var yyc4598 bool + if yyl4598 == 0 { + if yyv4598 == nil { + yyv4598 = []FinalizerName{} + yyc4598 = true + } else if len(yyv4598) != 0 { + yyv4598 = yyv4598[:0] + yyc4598 = true } - } else if yyl4599 > 0 { - var yyrr4599, yyrl4599 int - var yyrt4599 bool - if yyl4599 > cap(yyv4599) { + } else if yyl4598 > 0 { + var yyrr4598, yyrl4598 int + var yyrt4598 bool + if yyl4598 > cap(yyv4598) { - yyrg4599 := len(yyv4599) > 0 - yyv24599 := yyv4599 - yyrl4599, yyrt4599 = z.DecInferLen(yyl4599, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4599 { - if yyrl4599 <= cap(yyv4599) { - yyv4599 = yyv4599[:yyrl4599] + yyrl4598, yyrt4598 = z.DecInferLen(yyl4598, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4598 { + if yyrl4598 <= cap(yyv4598) { + yyv4598 = yyv4598[:yyrl4598] } else { - yyv4599 = make([]Namespace, yyrl4599) + yyv4598 = make([]FinalizerName, yyrl4598) } } else { - yyv4599 = make([]Namespace, yyrl4599) - } - yyc4599 = true - yyrr4599 = len(yyv4599) - if yyrg4599 { - copy(yyv4599, yyv24599) + yyv4598 = make([]FinalizerName, yyrl4598) } - } else if yyl4599 != len(yyv4599) { - yyv4599 = yyv4599[:yyl4599] - yyc4599 = true + yyc4598 = true + yyrr4598 = len(yyv4598) + } else if yyl4598 != len(yyv4598) { + yyv4598 = yyv4598[:yyl4598] + yyc4598 = true } - yyj4599 := 0 - for ; yyj4599 < yyrr4599; yyj4599++ { - yyh4599.ElemContainerState(yyj4599) + yyj4598 := 0 + for ; yyj4598 < yyrr4598; yyj4598++ { + yyh4598.ElemContainerState(yyj4598) if r.TryDecodeAsNil() { - yyv4599[yyj4599] = Namespace{} + yyv4598[yyj4598] = "" } else { - yyv4600 := &yyv4599[yyj4599] - yyv4600.CodecDecodeSelf(d) + yyv4598[yyj4598] = FinalizerName(r.DecodeString()) } } - if yyrt4599 { - for ; yyj4599 < yyl4599; yyj4599++ { - yyv4599 = append(yyv4599, Namespace{}) - yyh4599.ElemContainerState(yyj4599) + if yyrt4598 { + for ; yyj4598 < yyl4598; yyj4598++ { + yyv4598 = append(yyv4598, "") + yyh4598.ElemContainerState(yyj4598) if r.TryDecodeAsNil() { - yyv4599[yyj4599] = Namespace{} + yyv4598[yyj4598] = "" } else { - yyv4601 := &yyv4599[yyj4599] - yyv4601.CodecDecodeSelf(d) + yyv4598[yyj4598] = FinalizerName(r.DecodeString()) } } } } else { - yyj4599 := 0 - for ; !r.CheckBreak(); yyj4599++ { + yyj4598 := 0 + for ; !r.CheckBreak(); yyj4598++ { - if yyj4599 >= len(yyv4599) { - yyv4599 = append(yyv4599, Namespace{}) // var yyz4599 Namespace - yyc4599 = true + if yyj4598 >= len(yyv4598) { + yyv4598 = append(yyv4598, "") // var yyz4598 FinalizerName + yyc4598 = true } - yyh4599.ElemContainerState(yyj4599) - if yyj4599 < len(yyv4599) { + yyh4598.ElemContainerState(yyj4598) + if yyj4598 < len(yyv4598) { if r.TryDecodeAsNil() { - yyv4599[yyj4599] = Namespace{} + yyv4598[yyj4598] = "" } else { - yyv4602 := &yyv4599[yyj4599] - yyv4602.CodecDecodeSelf(d) + yyv4598[yyj4598] = FinalizerName(r.DecodeString()) } } else { @@ -58998,115 +58923,115 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4599 < len(yyv4599) { - yyv4599 = yyv4599[:yyj4599] - yyc4599 = true - } else if yyj4599 == 0 && yyv4599 == nil { - yyv4599 = []Namespace{} - yyc4599 = true + if yyj4598 < len(yyv4598) { + yyv4598 = yyv4598[:yyj4598] + yyc4598 = true + } else if yyj4598 == 0 && yyv4598 == nil { + yyv4598 = []FinalizerName{} + yyc4598 = true } } - yyh4599.End() - if yyc4599 { - *v = yyv4599 + yyh4598.End() + if yyc4598 { + *v = yyv4598 } } -func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4603 := range v { + for _, yyv4602 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4604 := &yyv4603 - yy4604.CodecEncodeSelf(e) + yy4603 := &yyv4602 + yy4603.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4605 := *v - yyh4605, yyl4605 := z.DecSliceHelperStart() - var yyc4605 bool - if yyl4605 == 0 { - if yyv4605 == nil { - yyv4605 = []Event{} - yyc4605 = true - } else if len(yyv4605) != 0 { - yyv4605 = yyv4605[:0] - yyc4605 = true + yyv4604 := *v + yyh4604, yyl4604 := z.DecSliceHelperStart() + var yyc4604 bool + if yyl4604 == 0 { + if yyv4604 == nil { + yyv4604 = []Namespace{} + yyc4604 = true + } else if len(yyv4604) != 0 { + yyv4604 = yyv4604[:0] + yyc4604 = true } - } else if yyl4605 > 0 { - var yyrr4605, yyrl4605 int - var yyrt4605 bool - if yyl4605 > cap(yyv4605) { + } else if yyl4604 > 0 { + var yyrr4604, yyrl4604 int + var yyrt4604 bool + if yyl4604 > cap(yyv4604) { - yyrg4605 := len(yyv4605) > 0 - yyv24605 := yyv4605 - yyrl4605, yyrt4605 = z.DecInferLen(yyl4605, z.DecBasicHandle().MaxInitLen, 488) - if yyrt4605 { - if yyrl4605 <= cap(yyv4605) { - yyv4605 = yyv4605[:yyrl4605] + yyrg4604 := len(yyv4604) > 0 + yyv24604 := yyv4604 + yyrl4604, yyrt4604 = z.DecInferLen(yyl4604, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4604 { + if yyrl4604 <= cap(yyv4604) { + yyv4604 = yyv4604[:yyrl4604] } else { - yyv4605 = make([]Event, yyrl4605) + yyv4604 = make([]Namespace, yyrl4604) } } else { - yyv4605 = make([]Event, yyrl4605) + yyv4604 = make([]Namespace, yyrl4604) } - yyc4605 = true - yyrr4605 = len(yyv4605) - if yyrg4605 { - copy(yyv4605, yyv24605) + yyc4604 = true + yyrr4604 = len(yyv4604) + if yyrg4604 { + copy(yyv4604, yyv24604) } - } else if yyl4605 != len(yyv4605) { - yyv4605 = yyv4605[:yyl4605] - yyc4605 = true + } else if yyl4604 != len(yyv4604) { + yyv4604 = yyv4604[:yyl4604] + yyc4604 = true } - yyj4605 := 0 - for ; yyj4605 < yyrr4605; yyj4605++ { - yyh4605.ElemContainerState(yyj4605) + yyj4604 := 0 + for ; yyj4604 < yyrr4604; yyj4604++ { + yyh4604.ElemContainerState(yyj4604) if r.TryDecodeAsNil() { - yyv4605[yyj4605] = Event{} + yyv4604[yyj4604] = Namespace{} } else { - yyv4606 := &yyv4605[yyj4605] - yyv4606.CodecDecodeSelf(d) + yyv4605 := &yyv4604[yyj4604] + yyv4605.CodecDecodeSelf(d) } } - if yyrt4605 { - for ; yyj4605 < yyl4605; yyj4605++ { - yyv4605 = append(yyv4605, Event{}) - yyh4605.ElemContainerState(yyj4605) + if yyrt4604 { + for ; yyj4604 < yyl4604; yyj4604++ { + yyv4604 = append(yyv4604, Namespace{}) + yyh4604.ElemContainerState(yyj4604) if r.TryDecodeAsNil() { - yyv4605[yyj4605] = Event{} + yyv4604[yyj4604] = Namespace{} } else { - yyv4607 := &yyv4605[yyj4605] - yyv4607.CodecDecodeSelf(d) + yyv4606 := &yyv4604[yyj4604] + yyv4606.CodecDecodeSelf(d) } } } } else { - yyj4605 := 0 - for ; !r.CheckBreak(); yyj4605++ { + yyj4604 := 0 + for ; !r.CheckBreak(); yyj4604++ { - if yyj4605 >= len(yyv4605) { - yyv4605 = append(yyv4605, Event{}) // var yyz4605 Event - yyc4605 = true + if yyj4604 >= len(yyv4604) { + yyv4604 = append(yyv4604, Namespace{}) // var yyz4604 Namespace + yyc4604 = true } - yyh4605.ElemContainerState(yyj4605) - if yyj4605 < len(yyv4605) { + yyh4604.ElemContainerState(yyj4604) + if yyj4604 < len(yyv4604) { if r.TryDecodeAsNil() { - yyv4605[yyj4605] = Event{} + yyv4604[yyj4604] = Namespace{} } else { - yyv4608 := &yyv4605[yyj4605] - yyv4608.CodecDecodeSelf(d) + yyv4607 := &yyv4604[yyj4604] + yyv4607.CodecDecodeSelf(d) } } else { @@ -59114,142 +59039,115 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4605 < len(yyv4605) { - yyv4605 = yyv4605[:yyj4605] - yyc4605 = true - } else if yyj4605 == 0 && yyv4605 == nil { - yyv4605 = []Event{} - yyc4605 = true + if yyj4604 < len(yyv4604) { + yyv4604 = yyv4604[:yyj4604] + yyc4604 = true + } else if yyj4604 == 0 && yyv4604 == nil { + yyv4604 = []Namespace{} + yyc4604 = true } } - yyh4605.End() - if yyc4605 { - *v = yyv4605 + yyh4604.End() + if yyc4604 { + *v = yyv4604 } } -func (x codecSelfer1234) encSliceruntime_Object(v []pkg7_runtime.Object, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4609 := range v { + for _, yyv4608 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyv4609 == nil { - r.EncodeNil() - } else { - yym4610 := z.EncBinary() - _ = yym4610 - if false { - } else if z.HasExtensions() && z.EncExt(yyv4609) { - } else { - z.EncFallback(yyv4609) - } - } + yy4609 := &yyv4608 + yy4609.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4611 := *v - yyh4611, yyl4611 := z.DecSliceHelperStart() - var yyc4611 bool - if yyl4611 == 0 { - if yyv4611 == nil { - yyv4611 = []pkg7_runtime.Object{} - yyc4611 = true - } else if len(yyv4611) != 0 { - yyv4611 = yyv4611[:0] - yyc4611 = true + yyv4610 := *v + yyh4610, yyl4610 := z.DecSliceHelperStart() + var yyc4610 bool + if yyl4610 == 0 { + if yyv4610 == nil { + yyv4610 = []Event{} + yyc4610 = true + } else if len(yyv4610) != 0 { + yyv4610 = yyv4610[:0] + yyc4610 = true } - } else if yyl4611 > 0 { - var yyrr4611, yyrl4611 int - var yyrt4611 bool - if yyl4611 > cap(yyv4611) { + } else if yyl4610 > 0 { + var yyrr4610, yyrl4610 int + var yyrt4610 bool + if yyl4610 > cap(yyv4610) { - yyrg4611 := len(yyv4611) > 0 - yyv24611 := yyv4611 - yyrl4611, yyrt4611 = z.DecInferLen(yyl4611, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4611 { - if yyrl4611 <= cap(yyv4611) { - yyv4611 = yyv4611[:yyrl4611] + yyrg4610 := len(yyv4610) > 0 + yyv24610 := yyv4610 + yyrl4610, yyrt4610 = z.DecInferLen(yyl4610, z.DecBasicHandle().MaxInitLen, 488) + if yyrt4610 { + if yyrl4610 <= cap(yyv4610) { + yyv4610 = yyv4610[:yyrl4610] } else { - yyv4611 = make([]pkg7_runtime.Object, yyrl4611) + yyv4610 = make([]Event, yyrl4610) } } else { - yyv4611 = make([]pkg7_runtime.Object, yyrl4611) + yyv4610 = make([]Event, yyrl4610) } - yyc4611 = true - yyrr4611 = len(yyv4611) - if yyrg4611 { - copy(yyv4611, yyv24611) + yyc4610 = true + yyrr4610 = len(yyv4610) + if yyrg4610 { + copy(yyv4610, yyv24610) } - } else if yyl4611 != len(yyv4611) { - yyv4611 = yyv4611[:yyl4611] - yyc4611 = true + } else if yyl4610 != len(yyv4610) { + yyv4610 = yyv4610[:yyl4610] + yyc4610 = true } - yyj4611 := 0 - for ; yyj4611 < yyrr4611; yyj4611++ { - yyh4611.ElemContainerState(yyj4611) + yyj4610 := 0 + for ; yyj4610 < yyrr4610; yyj4610++ { + yyh4610.ElemContainerState(yyj4610) if r.TryDecodeAsNil() { - yyv4611[yyj4611] = nil + yyv4610[yyj4610] = Event{} } else { - yyv4612 := &yyv4611[yyj4611] - yym4613 := z.DecBinary() - _ = yym4613 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4612) { - } else { - z.DecFallback(yyv4612, true) - } + yyv4611 := &yyv4610[yyj4610] + yyv4611.CodecDecodeSelf(d) } } - if yyrt4611 { - for ; yyj4611 < yyl4611; yyj4611++ { - yyv4611 = append(yyv4611, nil) - yyh4611.ElemContainerState(yyj4611) + if yyrt4610 { + for ; yyj4610 < yyl4610; yyj4610++ { + yyv4610 = append(yyv4610, Event{}) + yyh4610.ElemContainerState(yyj4610) if r.TryDecodeAsNil() { - yyv4611[yyj4611] = nil + yyv4610[yyj4610] = Event{} } else { - yyv4614 := &yyv4611[yyj4611] - yym4615 := z.DecBinary() - _ = yym4615 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4614) { - } else { - z.DecFallback(yyv4614, true) - } + yyv4612 := &yyv4610[yyj4610] + yyv4612.CodecDecodeSelf(d) } } } } else { - yyj4611 := 0 - for ; !r.CheckBreak(); yyj4611++ { + yyj4610 := 0 + for ; !r.CheckBreak(); yyj4610++ { - if yyj4611 >= len(yyv4611) { - yyv4611 = append(yyv4611, nil) // var yyz4611 pkg7_runtime.Object - yyc4611 = true + if yyj4610 >= len(yyv4610) { + yyv4610 = append(yyv4610, Event{}) // var yyz4610 Event + yyc4610 = true } - yyh4611.ElemContainerState(yyj4611) - if yyj4611 < len(yyv4611) { + yyh4610.ElemContainerState(yyj4610) + if yyj4610 < len(yyv4610) { if r.TryDecodeAsNil() { - yyv4611[yyj4611] = nil + yyv4610[yyj4610] = Event{} } else { - yyv4616 := &yyv4611[yyj4611] - yym4617 := z.DecBinary() - _ = yym4617 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4616) { - } else { - z.DecFallback(yyv4616, true) - } + yyv4613 := &yyv4610[yyj4610] + yyv4613.CodecDecodeSelf(d) } } else { @@ -59257,115 +59155,142 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod } } - if yyj4611 < len(yyv4611) { - yyv4611 = yyv4611[:yyj4611] - yyc4611 = true - } else if yyj4611 == 0 && yyv4611 == nil { - yyv4611 = []pkg7_runtime.Object{} - yyc4611 = true + if yyj4610 < len(yyv4610) { + yyv4610 = yyv4610[:yyj4610] + yyc4610 = true + } else if yyj4610 == 0 && yyv4610 == nil { + yyv4610 = []Event{} + yyc4610 = true } } - yyh4611.End() - if yyc4611 { - *v = yyv4611 + yyh4610.End() + if yyc4610 { + *v = yyv4610 } } -func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceruntime_Object(v []pkg7_runtime.Object, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4618 := range v { + for _, yyv4614 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4619 := &yyv4618 - yy4619.CodecEncodeSelf(e) + if yyv4614 == nil { + r.EncodeNil() + } else { + yym4615 := z.EncBinary() + _ = yym4615 + if false { + } else if z.HasExtensions() && z.EncExt(yyv4614) { + } else { + z.EncFallback(yyv4614) + } + } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4620 := *v - yyh4620, yyl4620 := z.DecSliceHelperStart() - var yyc4620 bool - if yyl4620 == 0 { - if yyv4620 == nil { - yyv4620 = []LimitRangeItem{} - yyc4620 = true - } else if len(yyv4620) != 0 { - yyv4620 = yyv4620[:0] - yyc4620 = true + yyv4616 := *v + yyh4616, yyl4616 := z.DecSliceHelperStart() + var yyc4616 bool + if yyl4616 == 0 { + if yyv4616 == nil { + yyv4616 = []pkg7_runtime.Object{} + yyc4616 = true + } else if len(yyv4616) != 0 { + yyv4616 = yyv4616[:0] + yyc4616 = true } - } else if yyl4620 > 0 { - var yyrr4620, yyrl4620 int - var yyrt4620 bool - if yyl4620 > cap(yyv4620) { + } else if yyl4616 > 0 { + var yyrr4616, yyrl4616 int + var yyrt4616 bool + if yyl4616 > cap(yyv4616) { - yyrg4620 := len(yyv4620) > 0 - yyv24620 := yyv4620 - yyrl4620, yyrt4620 = z.DecInferLen(yyl4620, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4620 { - if yyrl4620 <= cap(yyv4620) { - yyv4620 = yyv4620[:yyrl4620] + yyrg4616 := len(yyv4616) > 0 + yyv24616 := yyv4616 + yyrl4616, yyrt4616 = z.DecInferLen(yyl4616, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4616 { + if yyrl4616 <= cap(yyv4616) { + yyv4616 = yyv4616[:yyrl4616] } else { - yyv4620 = make([]LimitRangeItem, yyrl4620) + yyv4616 = make([]pkg7_runtime.Object, yyrl4616) } } else { - yyv4620 = make([]LimitRangeItem, yyrl4620) + yyv4616 = make([]pkg7_runtime.Object, yyrl4616) } - yyc4620 = true - yyrr4620 = len(yyv4620) - if yyrg4620 { - copy(yyv4620, yyv24620) + yyc4616 = true + yyrr4616 = len(yyv4616) + if yyrg4616 { + copy(yyv4616, yyv24616) } - } else if yyl4620 != len(yyv4620) { - yyv4620 = yyv4620[:yyl4620] - yyc4620 = true + } else if yyl4616 != len(yyv4616) { + yyv4616 = yyv4616[:yyl4616] + yyc4616 = true } - yyj4620 := 0 - for ; yyj4620 < yyrr4620; yyj4620++ { - yyh4620.ElemContainerState(yyj4620) + yyj4616 := 0 + for ; yyj4616 < yyrr4616; yyj4616++ { + yyh4616.ElemContainerState(yyj4616) if r.TryDecodeAsNil() { - yyv4620[yyj4620] = LimitRangeItem{} + yyv4616[yyj4616] = nil } else { - yyv4621 := &yyv4620[yyj4620] - yyv4621.CodecDecodeSelf(d) + yyv4617 := &yyv4616[yyj4616] + yym4618 := z.DecBinary() + _ = yym4618 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4617) { + } else { + z.DecFallback(yyv4617, true) + } } } - if yyrt4620 { - for ; yyj4620 < yyl4620; yyj4620++ { - yyv4620 = append(yyv4620, LimitRangeItem{}) - yyh4620.ElemContainerState(yyj4620) + if yyrt4616 { + for ; yyj4616 < yyl4616; yyj4616++ { + yyv4616 = append(yyv4616, nil) + yyh4616.ElemContainerState(yyj4616) if r.TryDecodeAsNil() { - yyv4620[yyj4620] = LimitRangeItem{} + yyv4616[yyj4616] = nil } else { - yyv4622 := &yyv4620[yyj4620] - yyv4622.CodecDecodeSelf(d) + yyv4619 := &yyv4616[yyj4616] + yym4620 := z.DecBinary() + _ = yym4620 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4619) { + } else { + z.DecFallback(yyv4619, true) + } } } } } else { - yyj4620 := 0 - for ; !r.CheckBreak(); yyj4620++ { + yyj4616 := 0 + for ; !r.CheckBreak(); yyj4616++ { - if yyj4620 >= len(yyv4620) { - yyv4620 = append(yyv4620, LimitRangeItem{}) // var yyz4620 LimitRangeItem - yyc4620 = true + if yyj4616 >= len(yyv4616) { + yyv4616 = append(yyv4616, nil) // var yyz4616 pkg7_runtime.Object + yyc4616 = true } - yyh4620.ElemContainerState(yyj4620) - if yyj4620 < len(yyv4620) { + yyh4616.ElemContainerState(yyj4616) + if yyj4616 < len(yyv4616) { if r.TryDecodeAsNil() { - yyv4620[yyj4620] = LimitRangeItem{} + yyv4616[yyj4616] = nil } else { - yyv4623 := &yyv4620[yyj4620] - yyv4623.CodecDecodeSelf(d) + yyv4621 := &yyv4616[yyj4616] + yym4622 := z.DecBinary() + _ = yym4622 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4621) { + } else { + z.DecFallback(yyv4621, true) + } } } else { @@ -59373,115 +59298,115 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4620 < len(yyv4620) { - yyv4620 = yyv4620[:yyj4620] - yyc4620 = true - } else if yyj4620 == 0 && yyv4620 == nil { - yyv4620 = []LimitRangeItem{} - yyc4620 = true + if yyj4616 < len(yyv4616) { + yyv4616 = yyv4616[:yyj4616] + yyc4616 = true + } else if yyj4616 == 0 && yyv4616 == nil { + yyv4616 = []pkg7_runtime.Object{} + yyc4616 = true } } - yyh4620.End() - if yyc4620 { - *v = yyv4620 + yyh4616.End() + if yyc4616 { + *v = yyv4616 } } -func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4624 := range v { + for _, yyv4623 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4625 := &yyv4624 - yy4625.CodecEncodeSelf(e) + yy4624 := &yyv4623 + yy4624.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4626 := *v - yyh4626, yyl4626 := z.DecSliceHelperStart() - var yyc4626 bool - if yyl4626 == 0 { - if yyv4626 == nil { - yyv4626 = []LimitRange{} - yyc4626 = true - } else if len(yyv4626) != 0 { - yyv4626 = yyv4626[:0] - yyc4626 = true + yyv4625 := *v + yyh4625, yyl4625 := z.DecSliceHelperStart() + var yyc4625 bool + if yyl4625 == 0 { + if yyv4625 == nil { + yyv4625 = []LimitRangeItem{} + yyc4625 = true + } else if len(yyv4625) != 0 { + yyv4625 = yyv4625[:0] + yyc4625 = true } - } else if yyl4626 > 0 { - var yyrr4626, yyrl4626 int - var yyrt4626 bool - if yyl4626 > cap(yyv4626) { + } else if yyl4625 > 0 { + var yyrr4625, yyrl4625 int + var yyrt4625 bool + if yyl4625 > cap(yyv4625) { - yyrg4626 := len(yyv4626) > 0 - yyv24626 := yyv4626 - yyrl4626, yyrt4626 = z.DecInferLen(yyl4626, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4626 { - if yyrl4626 <= cap(yyv4626) { - yyv4626 = yyv4626[:yyrl4626] + yyrg4625 := len(yyv4625) > 0 + yyv24625 := yyv4625 + yyrl4625, yyrt4625 = z.DecInferLen(yyl4625, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4625 { + if yyrl4625 <= cap(yyv4625) { + yyv4625 = yyv4625[:yyrl4625] } else { - yyv4626 = make([]LimitRange, yyrl4626) + yyv4625 = make([]LimitRangeItem, yyrl4625) } } else { - yyv4626 = make([]LimitRange, yyrl4626) + yyv4625 = make([]LimitRangeItem, yyrl4625) } - yyc4626 = true - yyrr4626 = len(yyv4626) - if yyrg4626 { - copy(yyv4626, yyv24626) + yyc4625 = true + yyrr4625 = len(yyv4625) + if yyrg4625 { + copy(yyv4625, yyv24625) } - } else if yyl4626 != len(yyv4626) { - yyv4626 = yyv4626[:yyl4626] - yyc4626 = true + } else if yyl4625 != len(yyv4625) { + yyv4625 = yyv4625[:yyl4625] + yyc4625 = true } - yyj4626 := 0 - for ; yyj4626 < yyrr4626; yyj4626++ { - yyh4626.ElemContainerState(yyj4626) + yyj4625 := 0 + for ; yyj4625 < yyrr4625; yyj4625++ { + yyh4625.ElemContainerState(yyj4625) if r.TryDecodeAsNil() { - yyv4626[yyj4626] = LimitRange{} + yyv4625[yyj4625] = LimitRangeItem{} } else { - yyv4627 := &yyv4626[yyj4626] - yyv4627.CodecDecodeSelf(d) + yyv4626 := &yyv4625[yyj4625] + yyv4626.CodecDecodeSelf(d) } } - if yyrt4626 { - for ; yyj4626 < yyl4626; yyj4626++ { - yyv4626 = append(yyv4626, LimitRange{}) - yyh4626.ElemContainerState(yyj4626) + if yyrt4625 { + for ; yyj4625 < yyl4625; yyj4625++ { + yyv4625 = append(yyv4625, LimitRangeItem{}) + yyh4625.ElemContainerState(yyj4625) if r.TryDecodeAsNil() { - yyv4626[yyj4626] = LimitRange{} + yyv4625[yyj4625] = LimitRangeItem{} } else { - yyv4628 := &yyv4626[yyj4626] - yyv4628.CodecDecodeSelf(d) + yyv4627 := &yyv4625[yyj4625] + yyv4627.CodecDecodeSelf(d) } } } } else { - yyj4626 := 0 - for ; !r.CheckBreak(); yyj4626++ { + yyj4625 := 0 + for ; !r.CheckBreak(); yyj4625++ { - if yyj4626 >= len(yyv4626) { - yyv4626 = append(yyv4626, LimitRange{}) // var yyz4626 LimitRange - yyc4626 = true + if yyj4625 >= len(yyv4625) { + yyv4625 = append(yyv4625, LimitRangeItem{}) // var yyz4625 LimitRangeItem + yyc4625 = true } - yyh4626.ElemContainerState(yyj4626) - if yyj4626 < len(yyv4626) { + yyh4625.ElemContainerState(yyj4625) + if yyj4625 < len(yyv4625) { if r.TryDecodeAsNil() { - yyv4626[yyj4626] = LimitRange{} + yyv4625[yyj4625] = LimitRangeItem{} } else { - yyv4629 := &yyv4626[yyj4626] - yyv4629.CodecDecodeSelf(d) + yyv4628 := &yyv4625[yyj4625] + yyv4628.CodecDecodeSelf(d) } } else { @@ -59489,33 +59414,34 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4626 < len(yyv4626) { - yyv4626 = yyv4626[:yyj4626] - yyc4626 = true - } else if yyj4626 == 0 && yyv4626 == nil { - yyv4626 = []LimitRange{} - yyc4626 = true + if yyj4625 < len(yyv4625) { + yyv4625 = yyv4625[:yyj4625] + yyc4625 = true + } else if yyj4625 == 0 && yyv4625 == nil { + yyv4625 = []LimitRangeItem{} + yyc4625 = true } } - yyh4626.End() - if yyc4626 { - *v = yyv4626 + yyh4625.End() + if yyc4625 { + *v = yyv4625 } } -func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4630 := range v { + for _, yyv4629 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4630.CodecEncodeSelf(e) + yy4630 := &yyv4629 + yy4630.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -59525,7 +59451,7 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * var yyc4631 bool if yyl4631 == 0 { if yyv4631 == nil { - yyv4631 = []ResourceQuotaScope{} + yyv4631 = []LimitRange{} yyc4631 = true } else if len(yyv4631) != 0 { yyv4631 = yyv4631[:0] @@ -59536,18 +59462,23 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * var yyrt4631 bool if yyl4631 > cap(yyv4631) { - yyrl4631, yyrt4631 = z.DecInferLen(yyl4631, z.DecBasicHandle().MaxInitLen, 16) + yyrg4631 := len(yyv4631) > 0 + yyv24631 := yyv4631 + yyrl4631, yyrt4631 = z.DecInferLen(yyl4631, z.DecBasicHandle().MaxInitLen, 264) if yyrt4631 { if yyrl4631 <= cap(yyv4631) { yyv4631 = yyv4631[:yyrl4631] } else { - yyv4631 = make([]ResourceQuotaScope, yyrl4631) + yyv4631 = make([]LimitRange, yyrl4631) } } else { - yyv4631 = make([]ResourceQuotaScope, yyrl4631) + yyv4631 = make([]LimitRange, yyrl4631) } yyc4631 = true yyrr4631 = len(yyv4631) + if yyrg4631 { + copy(yyv4631, yyv24631) + } } else if yyl4631 != len(yyv4631) { yyv4631 = yyv4631[:yyl4631] yyc4631 = true @@ -59556,20 +59487,22 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * for ; yyj4631 < yyrr4631; yyj4631++ { yyh4631.ElemContainerState(yyj4631) if r.TryDecodeAsNil() { - yyv4631[yyj4631] = "" + yyv4631[yyj4631] = LimitRange{} } else { - yyv4631[yyj4631] = ResourceQuotaScope(r.DecodeString()) + yyv4632 := &yyv4631[yyj4631] + yyv4632.CodecDecodeSelf(d) } } if yyrt4631 { for ; yyj4631 < yyl4631; yyj4631++ { - yyv4631 = append(yyv4631, "") + yyv4631 = append(yyv4631, LimitRange{}) yyh4631.ElemContainerState(yyj4631) if r.TryDecodeAsNil() { - yyv4631[yyj4631] = "" + yyv4631[yyj4631] = LimitRange{} } else { - yyv4631[yyj4631] = ResourceQuotaScope(r.DecodeString()) + yyv4633 := &yyv4631[yyj4631] + yyv4633.CodecDecodeSelf(d) } } @@ -59580,15 +59513,16 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * for ; !r.CheckBreak(); yyj4631++ { if yyj4631 >= len(yyv4631) { - yyv4631 = append(yyv4631, "") // var yyz4631 ResourceQuotaScope + yyv4631 = append(yyv4631, LimitRange{}) // var yyz4631 LimitRange yyc4631 = true } yyh4631.ElemContainerState(yyj4631) if yyj4631 < len(yyv4631) { if r.TryDecodeAsNil() { - yyv4631[yyj4631] = "" + yyv4631[yyj4631] = LimitRange{} } else { - yyv4631[yyj4631] = ResourceQuotaScope(r.DecodeString()) + yyv4634 := &yyv4631[yyj4631] + yyv4634.CodecDecodeSelf(d) } } else { @@ -59600,7 +59534,7 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * yyv4631 = yyv4631[:yyj4631] yyc4631 = true } else if yyj4631 == 0 && yyv4631 == nil { - yyv4631 = []ResourceQuotaScope{} + yyv4631 = []LimitRange{} yyc4631 = true } } @@ -59610,15 +59544,122 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * } } -func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) for _, yyv4635 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4636 := &yyv4635 - yy4636.CodecEncodeSelf(e) + yyv4635.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4636 := *v + yyh4636, yyl4636 := z.DecSliceHelperStart() + var yyc4636 bool + if yyl4636 == 0 { + if yyv4636 == nil { + yyv4636 = []ResourceQuotaScope{} + yyc4636 = true + } else if len(yyv4636) != 0 { + yyv4636 = yyv4636[:0] + yyc4636 = true + } + } else if yyl4636 > 0 { + var yyrr4636, yyrl4636 int + var yyrt4636 bool + if yyl4636 > cap(yyv4636) { + + yyrl4636, yyrt4636 = z.DecInferLen(yyl4636, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4636 { + if yyrl4636 <= cap(yyv4636) { + yyv4636 = yyv4636[:yyrl4636] + } else { + yyv4636 = make([]ResourceQuotaScope, yyrl4636) + } + } else { + yyv4636 = make([]ResourceQuotaScope, yyrl4636) + } + yyc4636 = true + yyrr4636 = len(yyv4636) + } else if yyl4636 != len(yyv4636) { + yyv4636 = yyv4636[:yyl4636] + yyc4636 = true + } + yyj4636 := 0 + for ; yyj4636 < yyrr4636; yyj4636++ { + yyh4636.ElemContainerState(yyj4636) + if r.TryDecodeAsNil() { + yyv4636[yyj4636] = "" + } else { + yyv4636[yyj4636] = ResourceQuotaScope(r.DecodeString()) + } + + } + if yyrt4636 { + for ; yyj4636 < yyl4636; yyj4636++ { + yyv4636 = append(yyv4636, "") + yyh4636.ElemContainerState(yyj4636) + if r.TryDecodeAsNil() { + yyv4636[yyj4636] = "" + } else { + yyv4636[yyj4636] = ResourceQuotaScope(r.DecodeString()) + } + + } + } + + } else { + yyj4636 := 0 + for ; !r.CheckBreak(); yyj4636++ { + + if yyj4636 >= len(yyv4636) { + yyv4636 = append(yyv4636, "") // var yyz4636 ResourceQuotaScope + yyc4636 = true + } + yyh4636.ElemContainerState(yyj4636) + if yyj4636 < len(yyv4636) { + if r.TryDecodeAsNil() { + yyv4636[yyj4636] = "" + } else { + yyv4636[yyj4636] = ResourceQuotaScope(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4636 < len(yyv4636) { + yyv4636 = yyv4636[:yyj4636] + yyc4636 = true + } else if yyj4636 == 0 && yyv4636 == nil { + yyv4636 = []ResourceQuotaScope{} + yyc4636 = true + } + } + yyh4636.End() + if yyc4636 { + *v = yyv4636 + } +} + +func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4640 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4641 := &yyv4640 + yy4641.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59628,83 +59669,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4637 := *v - yyh4637, yyl4637 := z.DecSliceHelperStart() - var yyc4637 bool - if yyl4637 == 0 { - if yyv4637 == nil { - yyv4637 = []ResourceQuota{} - yyc4637 = true - } else if len(yyv4637) != 0 { - yyv4637 = yyv4637[:0] - yyc4637 = true + yyv4642 := *v + yyh4642, yyl4642 := z.DecSliceHelperStart() + var yyc4642 bool + if yyl4642 == 0 { + if yyv4642 == nil { + yyv4642 = []ResourceQuota{} + yyc4642 = true + } else if len(yyv4642) != 0 { + yyv4642 = yyv4642[:0] + yyc4642 = true } - } else if yyl4637 > 0 { - var yyrr4637, yyrl4637 int - var yyrt4637 bool - if yyl4637 > cap(yyv4637) { + } else if yyl4642 > 0 { + var yyrr4642, yyrl4642 int + var yyrt4642 bool + if yyl4642 > cap(yyv4642) { - yyrg4637 := len(yyv4637) > 0 - yyv24637 := yyv4637 - yyrl4637, yyrt4637 = z.DecInferLen(yyl4637, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4637 { - if yyrl4637 <= cap(yyv4637) { - yyv4637 = yyv4637[:yyrl4637] + yyrg4642 := len(yyv4642) > 0 + yyv24642 := yyv4642 + yyrl4642, yyrt4642 = z.DecInferLen(yyl4642, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4642 { + if yyrl4642 <= cap(yyv4642) { + yyv4642 = yyv4642[:yyrl4642] } else { - yyv4637 = make([]ResourceQuota, yyrl4637) + yyv4642 = make([]ResourceQuota, yyrl4642) } } else { - yyv4637 = make([]ResourceQuota, yyrl4637) + yyv4642 = make([]ResourceQuota, yyrl4642) } - yyc4637 = true - yyrr4637 = len(yyv4637) - if yyrg4637 { - copy(yyv4637, yyv24637) + yyc4642 = true + yyrr4642 = len(yyv4642) + if yyrg4642 { + copy(yyv4642, yyv24642) } - } else if yyl4637 != len(yyv4637) { - yyv4637 = yyv4637[:yyl4637] - yyc4637 = true + } else if yyl4642 != len(yyv4642) { + yyv4642 = yyv4642[:yyl4642] + yyc4642 = true } - yyj4637 := 0 - for ; yyj4637 < yyrr4637; yyj4637++ { - yyh4637.ElemContainerState(yyj4637) + yyj4642 := 0 + for ; yyj4642 < yyrr4642; yyj4642++ { + yyh4642.ElemContainerState(yyj4642) if r.TryDecodeAsNil() { - yyv4637[yyj4637] = ResourceQuota{} + yyv4642[yyj4642] = ResourceQuota{} } else { - yyv4638 := &yyv4637[yyj4637] - yyv4638.CodecDecodeSelf(d) + yyv4643 := &yyv4642[yyj4642] + yyv4643.CodecDecodeSelf(d) } } - if yyrt4637 { - for ; yyj4637 < yyl4637; yyj4637++ { - yyv4637 = append(yyv4637, ResourceQuota{}) - yyh4637.ElemContainerState(yyj4637) + if yyrt4642 { + for ; yyj4642 < yyl4642; yyj4642++ { + yyv4642 = append(yyv4642, ResourceQuota{}) + yyh4642.ElemContainerState(yyj4642) if r.TryDecodeAsNil() { - yyv4637[yyj4637] = ResourceQuota{} + yyv4642[yyj4642] = ResourceQuota{} } else { - yyv4639 := &yyv4637[yyj4637] - yyv4639.CodecDecodeSelf(d) + yyv4644 := &yyv4642[yyj4642] + yyv4644.CodecDecodeSelf(d) } } } } else { - yyj4637 := 0 - for ; !r.CheckBreak(); yyj4637++ { + yyj4642 := 0 + for ; !r.CheckBreak(); yyj4642++ { - if yyj4637 >= len(yyv4637) { - yyv4637 = append(yyv4637, ResourceQuota{}) // var yyz4637 ResourceQuota - yyc4637 = true + if yyj4642 >= len(yyv4642) { + yyv4642 = append(yyv4642, ResourceQuota{}) // var yyz4642 ResourceQuota + yyc4642 = true } - yyh4637.ElemContainerState(yyj4637) - if yyj4637 < len(yyv4637) { + yyh4642.ElemContainerState(yyj4642) + if yyj4642 < len(yyv4642) { if r.TryDecodeAsNil() { - yyv4637[yyj4637] = ResourceQuota{} + yyv4642[yyj4642] = ResourceQuota{} } else { - yyv4640 := &yyv4637[yyj4637] - yyv4640.CodecDecodeSelf(d) + yyv4645 := &yyv4642[yyj4642] + yyv4645.CodecDecodeSelf(d) } } else { @@ -59712,17 +59753,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4637 < len(yyv4637) { - yyv4637 = yyv4637[:yyj4637] - yyc4637 = true - } else if yyj4637 == 0 && yyv4637 == nil { - yyv4637 = []ResourceQuota{} - yyc4637 = true + if yyj4642 < len(yyv4642) { + yyv4642 = yyv4642[:yyj4642] + yyc4642 = true + } else if yyj4642 == 0 && yyv4642 == nil { + yyv4642 = []ResourceQuota{} + yyc4642 = true } } - yyh4637.End() - if yyc4637 { - *v = yyv4637 + yyh4642.End() + if yyc4642 { + *v = yyv4642 } } @@ -59731,23 +59772,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4641, yyv4641 := range v { + for yyk4646, yyv4646 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4642 := z.EncBinary() - _ = yym4642 + yym4647 := z.EncBinary() + _ = yym4647 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4641)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4646)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4641 == nil { + if yyv4646 == nil { r.EncodeNil() } else { - yym4643 := z.EncBinary() - _ = yym4643 + yym4648 := z.EncBinary() + _ = yym4648 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4641)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4646)) } } } @@ -59759,80 +59800,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4644 := *v - yyl4644 := r.ReadMapStart() - yybh4644 := z.DecBasicHandle() - if yyv4644 == nil { - yyrl4644, _ := z.DecInferLen(yyl4644, yybh4644.MaxInitLen, 40) - yyv4644 = make(map[string][]uint8, yyrl4644) - *v = yyv4644 + yyv4649 := *v + yyl4649 := r.ReadMapStart() + yybh4649 := z.DecBasicHandle() + if yyv4649 == nil { + yyrl4649, _ := z.DecInferLen(yyl4649, yybh4649.MaxInitLen, 40) + yyv4649 = make(map[string][]uint8, yyrl4649) + *v = yyv4649 } - var yymk4644 string - var yymv4644 []uint8 - var yymg4644 bool - if yybh4644.MapValueReset { - yymg4644 = true + var yymk4649 string + var yymv4649 []uint8 + var yymg4649 bool + if yybh4649.MapValueReset { + yymg4649 = true } - if yyl4644 > 0 { - for yyj4644 := 0; yyj4644 < yyl4644; yyj4644++ { + if yyl4649 > 0 { + for yyj4649 := 0; yyj4649 < yyl4649; yyj4649++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4644 = "" + yymk4649 = "" } else { - yymk4644 = string(r.DecodeString()) + yymk4649 = string(r.DecodeString()) } - if yymg4644 { - yymv4644 = yyv4644[yymk4644] + if yymg4649 { + yymv4649 = yyv4649[yymk4649] } else { - yymv4644 = nil + yymv4649 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4644 = nil + yymv4649 = nil } else { - yyv4646 := &yymv4644 - yym4647 := z.DecBinary() - _ = yym4647 + yyv4651 := &yymv4649 + yym4652 := z.DecBinary() + _ = yym4652 if false { } else { - *yyv4646 = r.DecodeBytes(*(*[]byte)(yyv4646), false, false) + *yyv4651 = r.DecodeBytes(*(*[]byte)(yyv4651), false, false) } } - if yyv4644 != nil { - yyv4644[yymk4644] = yymv4644 + if yyv4649 != nil { + yyv4649[yymk4649] = yymv4649 } } - } else if yyl4644 < 0 { - for yyj4644 := 0; !r.CheckBreak(); yyj4644++ { + } else if yyl4649 < 0 { + for yyj4649 := 0; !r.CheckBreak(); yyj4649++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4644 = "" + yymk4649 = "" } else { - yymk4644 = string(r.DecodeString()) + yymk4649 = string(r.DecodeString()) } - if yymg4644 { - yymv4644 = yyv4644[yymk4644] + if yymg4649 { + yymv4649 = yyv4649[yymk4649] } else { - yymv4644 = nil + yymv4649 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4644 = nil + yymv4649 = nil } else { - yyv4649 := &yymv4644 - yym4650 := z.DecBinary() - _ = yym4650 + yyv4654 := &yymv4649 + yym4655 := z.DecBinary() + _ = yym4655 if false { } else { - *yyv4649 = r.DecodeBytes(*(*[]byte)(yyv4649), false, false) + *yyv4654 = r.DecodeBytes(*(*[]byte)(yyv4654), false, false) } } - if yyv4644 != nil { - yyv4644[yymk4644] = yymv4644 + if yyv4649 != nil { + yyv4649[yymk4649] = yymv4649 } } } // else len==0: TODO: Should we clear map entries? @@ -59844,10 +59885,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4651 := range v { + for _, yyv4656 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4652 := &yyv4651 - yy4652.CodecEncodeSelf(e) + yy4657 := &yyv4656 + yy4657.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59857,83 +59898,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4653 := *v - yyh4653, yyl4653 := z.DecSliceHelperStart() - var yyc4653 bool - if yyl4653 == 0 { - if yyv4653 == nil { - yyv4653 = []Secret{} - yyc4653 = true - } else if len(yyv4653) != 0 { - yyv4653 = yyv4653[:0] - yyc4653 = true + yyv4658 := *v + yyh4658, yyl4658 := z.DecSliceHelperStart() + var yyc4658 bool + if yyl4658 == 0 { + if yyv4658 == nil { + yyv4658 = []Secret{} + yyc4658 = true + } else if len(yyv4658) != 0 { + yyv4658 = yyv4658[:0] + yyc4658 = true } - } else if yyl4653 > 0 { - var yyrr4653, yyrl4653 int - var yyrt4653 bool - if yyl4653 > cap(yyv4653) { + } else if yyl4658 > 0 { + var yyrr4658, yyrl4658 int + var yyrt4658 bool + if yyl4658 > cap(yyv4658) { - yyrg4653 := len(yyv4653) > 0 - yyv24653 := yyv4653 - yyrl4653, yyrt4653 = z.DecInferLen(yyl4653, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4653 { - if yyrl4653 <= cap(yyv4653) { - yyv4653 = yyv4653[:yyrl4653] + yyrg4658 := len(yyv4658) > 0 + yyv24658 := yyv4658 + yyrl4658, yyrt4658 = z.DecInferLen(yyl4658, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4658 { + if yyrl4658 <= cap(yyv4658) { + yyv4658 = yyv4658[:yyrl4658] } else { - yyv4653 = make([]Secret, yyrl4653) + yyv4658 = make([]Secret, yyrl4658) } } else { - yyv4653 = make([]Secret, yyrl4653) + yyv4658 = make([]Secret, yyrl4658) } - yyc4653 = true - yyrr4653 = len(yyv4653) - if yyrg4653 { - copy(yyv4653, yyv24653) + yyc4658 = true + yyrr4658 = len(yyv4658) + if yyrg4658 { + copy(yyv4658, yyv24658) } - } else if yyl4653 != len(yyv4653) { - yyv4653 = yyv4653[:yyl4653] - yyc4653 = true + } else if yyl4658 != len(yyv4658) { + yyv4658 = yyv4658[:yyl4658] + yyc4658 = true } - yyj4653 := 0 - for ; yyj4653 < yyrr4653; yyj4653++ { - yyh4653.ElemContainerState(yyj4653) + yyj4658 := 0 + for ; yyj4658 < yyrr4658; yyj4658++ { + yyh4658.ElemContainerState(yyj4658) if r.TryDecodeAsNil() { - yyv4653[yyj4653] = Secret{} + yyv4658[yyj4658] = Secret{} } else { - yyv4654 := &yyv4653[yyj4653] - yyv4654.CodecDecodeSelf(d) + yyv4659 := &yyv4658[yyj4658] + yyv4659.CodecDecodeSelf(d) } } - if yyrt4653 { - for ; yyj4653 < yyl4653; yyj4653++ { - yyv4653 = append(yyv4653, Secret{}) - yyh4653.ElemContainerState(yyj4653) + if yyrt4658 { + for ; yyj4658 < yyl4658; yyj4658++ { + yyv4658 = append(yyv4658, Secret{}) + yyh4658.ElemContainerState(yyj4658) if r.TryDecodeAsNil() { - yyv4653[yyj4653] = Secret{} + yyv4658[yyj4658] = Secret{} } else { - yyv4655 := &yyv4653[yyj4653] - yyv4655.CodecDecodeSelf(d) + yyv4660 := &yyv4658[yyj4658] + yyv4660.CodecDecodeSelf(d) } } } } else { - yyj4653 := 0 - for ; !r.CheckBreak(); yyj4653++ { + yyj4658 := 0 + for ; !r.CheckBreak(); yyj4658++ { - if yyj4653 >= len(yyv4653) { - yyv4653 = append(yyv4653, Secret{}) // var yyz4653 Secret - yyc4653 = true + if yyj4658 >= len(yyv4658) { + yyv4658 = append(yyv4658, Secret{}) // var yyz4658 Secret + yyc4658 = true } - yyh4653.ElemContainerState(yyj4653) - if yyj4653 < len(yyv4653) { + yyh4658.ElemContainerState(yyj4658) + if yyj4658 < len(yyv4658) { if r.TryDecodeAsNil() { - yyv4653[yyj4653] = Secret{} + yyv4658[yyj4658] = Secret{} } else { - yyv4656 := &yyv4653[yyj4653] - yyv4656.CodecDecodeSelf(d) + yyv4661 := &yyv4658[yyj4658] + yyv4661.CodecDecodeSelf(d) } } else { @@ -59941,17 +59982,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4653 < len(yyv4653) { - yyv4653 = yyv4653[:yyj4653] - yyc4653 = true - } else if yyj4653 == 0 && yyv4653 == nil { - yyv4653 = []Secret{} - yyc4653 = true + if yyj4658 < len(yyv4658) { + yyv4658 = yyv4658[:yyj4658] + yyc4658 = true + } else if yyj4658 == 0 && yyv4658 == nil { + yyv4658 = []Secret{} + yyc4658 = true } } - yyh4653.End() - if yyc4653 { - *v = yyv4653 + yyh4658.End() + if yyc4658 { + *v = yyv4658 } } @@ -59960,10 +60001,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4657 := range v { + for _, yyv4662 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4658 := &yyv4657 - yy4658.CodecEncodeSelf(e) + yy4663 := &yyv4662 + yy4663.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59973,83 +60014,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4659 := *v - yyh4659, yyl4659 := z.DecSliceHelperStart() - var yyc4659 bool - if yyl4659 == 0 { - if yyv4659 == nil { - yyv4659 = []ConfigMap{} - yyc4659 = true - } else if len(yyv4659) != 0 { - yyv4659 = yyv4659[:0] - yyc4659 = true + yyv4664 := *v + yyh4664, yyl4664 := z.DecSliceHelperStart() + var yyc4664 bool + if yyl4664 == 0 { + if yyv4664 == nil { + yyv4664 = []ConfigMap{} + yyc4664 = true + } else if len(yyv4664) != 0 { + yyv4664 = yyv4664[:0] + yyc4664 = true } - } else if yyl4659 > 0 { - var yyrr4659, yyrl4659 int - var yyrt4659 bool - if yyl4659 > cap(yyv4659) { + } else if yyl4664 > 0 { + var yyrr4664, yyrl4664 int + var yyrt4664 bool + if yyl4664 > cap(yyv4664) { - yyrg4659 := len(yyv4659) > 0 - yyv24659 := yyv4659 - yyrl4659, yyrt4659 = z.DecInferLen(yyl4659, z.DecBasicHandle().MaxInitLen, 248) - if yyrt4659 { - if yyrl4659 <= cap(yyv4659) { - yyv4659 = yyv4659[:yyrl4659] + yyrg4664 := len(yyv4664) > 0 + yyv24664 := yyv4664 + yyrl4664, yyrt4664 = z.DecInferLen(yyl4664, z.DecBasicHandle().MaxInitLen, 248) + if yyrt4664 { + if yyrl4664 <= cap(yyv4664) { + yyv4664 = yyv4664[:yyrl4664] } else { - yyv4659 = make([]ConfigMap, yyrl4659) + yyv4664 = make([]ConfigMap, yyrl4664) } } else { - yyv4659 = make([]ConfigMap, yyrl4659) + yyv4664 = make([]ConfigMap, yyrl4664) } - yyc4659 = true - yyrr4659 = len(yyv4659) - if yyrg4659 { - copy(yyv4659, yyv24659) + yyc4664 = true + yyrr4664 = len(yyv4664) + if yyrg4664 { + copy(yyv4664, yyv24664) } - } else if yyl4659 != len(yyv4659) { - yyv4659 = yyv4659[:yyl4659] - yyc4659 = true + } else if yyl4664 != len(yyv4664) { + yyv4664 = yyv4664[:yyl4664] + yyc4664 = true } - yyj4659 := 0 - for ; yyj4659 < yyrr4659; yyj4659++ { - yyh4659.ElemContainerState(yyj4659) + yyj4664 := 0 + for ; yyj4664 < yyrr4664; yyj4664++ { + yyh4664.ElemContainerState(yyj4664) if r.TryDecodeAsNil() { - yyv4659[yyj4659] = ConfigMap{} + yyv4664[yyj4664] = ConfigMap{} } else { - yyv4660 := &yyv4659[yyj4659] - yyv4660.CodecDecodeSelf(d) + yyv4665 := &yyv4664[yyj4664] + yyv4665.CodecDecodeSelf(d) } } - if yyrt4659 { - for ; yyj4659 < yyl4659; yyj4659++ { - yyv4659 = append(yyv4659, ConfigMap{}) - yyh4659.ElemContainerState(yyj4659) + if yyrt4664 { + for ; yyj4664 < yyl4664; yyj4664++ { + yyv4664 = append(yyv4664, ConfigMap{}) + yyh4664.ElemContainerState(yyj4664) if r.TryDecodeAsNil() { - yyv4659[yyj4659] = ConfigMap{} + yyv4664[yyj4664] = ConfigMap{} } else { - yyv4661 := &yyv4659[yyj4659] - yyv4661.CodecDecodeSelf(d) + yyv4666 := &yyv4664[yyj4664] + yyv4666.CodecDecodeSelf(d) } } } } else { - yyj4659 := 0 - for ; !r.CheckBreak(); yyj4659++ { + yyj4664 := 0 + for ; !r.CheckBreak(); yyj4664++ { - if yyj4659 >= len(yyv4659) { - yyv4659 = append(yyv4659, ConfigMap{}) // var yyz4659 ConfigMap - yyc4659 = true + if yyj4664 >= len(yyv4664) { + yyv4664 = append(yyv4664, ConfigMap{}) // var yyz4664 ConfigMap + yyc4664 = true } - yyh4659.ElemContainerState(yyj4659) - if yyj4659 < len(yyv4659) { + yyh4664.ElemContainerState(yyj4664) + if yyj4664 < len(yyv4664) { if r.TryDecodeAsNil() { - yyv4659[yyj4659] = ConfigMap{} + yyv4664[yyj4664] = ConfigMap{} } else { - yyv4662 := &yyv4659[yyj4659] - yyv4662.CodecDecodeSelf(d) + yyv4667 := &yyv4664[yyj4664] + yyv4667.CodecDecodeSelf(d) } } else { @@ -60057,17 +60098,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4659 < len(yyv4659) { - yyv4659 = yyv4659[:yyj4659] - yyc4659 = true - } else if yyj4659 == 0 && yyv4659 == nil { - yyv4659 = []ConfigMap{} - yyc4659 = true + if yyj4664 < len(yyv4664) { + yyv4664 = yyv4664[:yyj4664] + yyc4664 = true + } else if yyj4664 == 0 && yyv4664 == nil { + yyv4664 = []ConfigMap{} + yyc4664 = true } } - yyh4659.End() - if yyc4659 { - *v = yyv4659 + yyh4664.End() + if yyc4664 { + *v = yyv4664 } } @@ -60076,10 +60117,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4663 := range v { + for _, yyv4668 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4664 := &yyv4663 - yy4664.CodecEncodeSelf(e) + yy4669 := &yyv4668 + yy4669.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60089,83 +60130,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4665 := *v - yyh4665, yyl4665 := z.DecSliceHelperStart() - var yyc4665 bool - if yyl4665 == 0 { - if yyv4665 == nil { - yyv4665 = []ComponentCondition{} - yyc4665 = true - } else if len(yyv4665) != 0 { - yyv4665 = yyv4665[:0] - yyc4665 = true + yyv4670 := *v + yyh4670, yyl4670 := z.DecSliceHelperStart() + var yyc4670 bool + if yyl4670 == 0 { + if yyv4670 == nil { + yyv4670 = []ComponentCondition{} + yyc4670 = true + } else if len(yyv4670) != 0 { + yyv4670 = yyv4670[:0] + yyc4670 = true } - } else if yyl4665 > 0 { - var yyrr4665, yyrl4665 int - var yyrt4665 bool - if yyl4665 > cap(yyv4665) { + } else if yyl4670 > 0 { + var yyrr4670, yyrl4670 int + var yyrt4670 bool + if yyl4670 > cap(yyv4670) { - yyrg4665 := len(yyv4665) > 0 - yyv24665 := yyv4665 - yyrl4665, yyrt4665 = z.DecInferLen(yyl4665, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4665 { - if yyrl4665 <= cap(yyv4665) { - yyv4665 = yyv4665[:yyrl4665] + yyrg4670 := len(yyv4670) > 0 + yyv24670 := yyv4670 + yyrl4670, yyrt4670 = z.DecInferLen(yyl4670, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4670 { + if yyrl4670 <= cap(yyv4670) { + yyv4670 = yyv4670[:yyrl4670] } else { - yyv4665 = make([]ComponentCondition, yyrl4665) + yyv4670 = make([]ComponentCondition, yyrl4670) } } else { - yyv4665 = make([]ComponentCondition, yyrl4665) + yyv4670 = make([]ComponentCondition, yyrl4670) } - yyc4665 = true - yyrr4665 = len(yyv4665) - if yyrg4665 { - copy(yyv4665, yyv24665) + yyc4670 = true + yyrr4670 = len(yyv4670) + if yyrg4670 { + copy(yyv4670, yyv24670) } - } else if yyl4665 != len(yyv4665) { - yyv4665 = yyv4665[:yyl4665] - yyc4665 = true + } else if yyl4670 != len(yyv4670) { + yyv4670 = yyv4670[:yyl4670] + yyc4670 = true } - yyj4665 := 0 - for ; yyj4665 < yyrr4665; yyj4665++ { - yyh4665.ElemContainerState(yyj4665) + yyj4670 := 0 + for ; yyj4670 < yyrr4670; yyj4670++ { + yyh4670.ElemContainerState(yyj4670) if r.TryDecodeAsNil() { - yyv4665[yyj4665] = ComponentCondition{} + yyv4670[yyj4670] = ComponentCondition{} } else { - yyv4666 := &yyv4665[yyj4665] - yyv4666.CodecDecodeSelf(d) + yyv4671 := &yyv4670[yyj4670] + yyv4671.CodecDecodeSelf(d) } } - if yyrt4665 { - for ; yyj4665 < yyl4665; yyj4665++ { - yyv4665 = append(yyv4665, ComponentCondition{}) - yyh4665.ElemContainerState(yyj4665) + if yyrt4670 { + for ; yyj4670 < yyl4670; yyj4670++ { + yyv4670 = append(yyv4670, ComponentCondition{}) + yyh4670.ElemContainerState(yyj4670) if r.TryDecodeAsNil() { - yyv4665[yyj4665] = ComponentCondition{} + yyv4670[yyj4670] = ComponentCondition{} } else { - yyv4667 := &yyv4665[yyj4665] - yyv4667.CodecDecodeSelf(d) + yyv4672 := &yyv4670[yyj4670] + yyv4672.CodecDecodeSelf(d) } } } } else { - yyj4665 := 0 - for ; !r.CheckBreak(); yyj4665++ { + yyj4670 := 0 + for ; !r.CheckBreak(); yyj4670++ { - if yyj4665 >= len(yyv4665) { - yyv4665 = append(yyv4665, ComponentCondition{}) // var yyz4665 ComponentCondition - yyc4665 = true + if yyj4670 >= len(yyv4670) { + yyv4670 = append(yyv4670, ComponentCondition{}) // var yyz4670 ComponentCondition + yyc4670 = true } - yyh4665.ElemContainerState(yyj4665) - if yyj4665 < len(yyv4665) { + yyh4670.ElemContainerState(yyj4670) + if yyj4670 < len(yyv4670) { if r.TryDecodeAsNil() { - yyv4665[yyj4665] = ComponentCondition{} + yyv4670[yyj4670] = ComponentCondition{} } else { - yyv4668 := &yyv4665[yyj4665] - yyv4668.CodecDecodeSelf(d) + yyv4673 := &yyv4670[yyj4670] + yyv4673.CodecDecodeSelf(d) } } else { @@ -60173,17 +60214,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4665 < len(yyv4665) { - yyv4665 = yyv4665[:yyj4665] - yyc4665 = true - } else if yyj4665 == 0 && yyv4665 == nil { - yyv4665 = []ComponentCondition{} - yyc4665 = true + if yyj4670 < len(yyv4670) { + yyv4670 = yyv4670[:yyj4670] + yyc4670 = true + } else if yyj4670 == 0 && yyv4670 == nil { + yyv4670 = []ComponentCondition{} + yyc4670 = true } } - yyh4665.End() - if yyc4665 { - *v = yyv4665 + yyh4670.End() + if yyc4670 { + *v = yyv4670 } } @@ -60192,10 +60233,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4669 := range v { + for _, yyv4674 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4670 := &yyv4669 - yy4670.CodecEncodeSelf(e) + yy4675 := &yyv4674 + yy4675.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60205,83 +60246,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4671 := *v - yyh4671, yyl4671 := z.DecSliceHelperStart() - var yyc4671 bool - if yyl4671 == 0 { - if yyv4671 == nil { - yyv4671 = []ComponentStatus{} - yyc4671 = true - } else if len(yyv4671) != 0 { - yyv4671 = yyv4671[:0] - yyc4671 = true + yyv4676 := *v + yyh4676, yyl4676 := z.DecSliceHelperStart() + var yyc4676 bool + if yyl4676 == 0 { + if yyv4676 == nil { + yyv4676 = []ComponentStatus{} + yyc4676 = true + } else if len(yyv4676) != 0 { + yyv4676 = yyv4676[:0] + yyc4676 = true } - } else if yyl4671 > 0 { - var yyrr4671, yyrl4671 int - var yyrt4671 bool - if yyl4671 > cap(yyv4671) { + } else if yyl4676 > 0 { + var yyrr4676, yyrl4676 int + var yyrt4676 bool + if yyl4676 > cap(yyv4676) { - yyrg4671 := len(yyv4671) > 0 - yyv24671 := yyv4671 - yyrl4671, yyrt4671 = z.DecInferLen(yyl4671, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4671 { - if yyrl4671 <= cap(yyv4671) { - yyv4671 = yyv4671[:yyrl4671] + yyrg4676 := len(yyv4676) > 0 + yyv24676 := yyv4676 + yyrl4676, yyrt4676 = z.DecInferLen(yyl4676, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4676 { + if yyrl4676 <= cap(yyv4676) { + yyv4676 = yyv4676[:yyrl4676] } else { - yyv4671 = make([]ComponentStatus, yyrl4671) + yyv4676 = make([]ComponentStatus, yyrl4676) } } else { - yyv4671 = make([]ComponentStatus, yyrl4671) + yyv4676 = make([]ComponentStatus, yyrl4676) } - yyc4671 = true - yyrr4671 = len(yyv4671) - if yyrg4671 { - copy(yyv4671, yyv24671) + yyc4676 = true + yyrr4676 = len(yyv4676) + if yyrg4676 { + copy(yyv4676, yyv24676) } - } else if yyl4671 != len(yyv4671) { - yyv4671 = yyv4671[:yyl4671] - yyc4671 = true + } else if yyl4676 != len(yyv4676) { + yyv4676 = yyv4676[:yyl4676] + yyc4676 = true } - yyj4671 := 0 - for ; yyj4671 < yyrr4671; yyj4671++ { - yyh4671.ElemContainerState(yyj4671) + yyj4676 := 0 + for ; yyj4676 < yyrr4676; yyj4676++ { + yyh4676.ElemContainerState(yyj4676) if r.TryDecodeAsNil() { - yyv4671[yyj4671] = ComponentStatus{} + yyv4676[yyj4676] = ComponentStatus{} } else { - yyv4672 := &yyv4671[yyj4671] - yyv4672.CodecDecodeSelf(d) + yyv4677 := &yyv4676[yyj4676] + yyv4677.CodecDecodeSelf(d) } } - if yyrt4671 { - for ; yyj4671 < yyl4671; yyj4671++ { - yyv4671 = append(yyv4671, ComponentStatus{}) - yyh4671.ElemContainerState(yyj4671) + if yyrt4676 { + for ; yyj4676 < yyl4676; yyj4676++ { + yyv4676 = append(yyv4676, ComponentStatus{}) + yyh4676.ElemContainerState(yyj4676) if r.TryDecodeAsNil() { - yyv4671[yyj4671] = ComponentStatus{} + yyv4676[yyj4676] = ComponentStatus{} } else { - yyv4673 := &yyv4671[yyj4671] - yyv4673.CodecDecodeSelf(d) + yyv4678 := &yyv4676[yyj4676] + yyv4678.CodecDecodeSelf(d) } } } } else { - yyj4671 := 0 - for ; !r.CheckBreak(); yyj4671++ { + yyj4676 := 0 + for ; !r.CheckBreak(); yyj4676++ { - if yyj4671 >= len(yyv4671) { - yyv4671 = append(yyv4671, ComponentStatus{}) // var yyz4671 ComponentStatus - yyc4671 = true + if yyj4676 >= len(yyv4676) { + yyv4676 = append(yyv4676, ComponentStatus{}) // var yyz4676 ComponentStatus + yyc4676 = true } - yyh4671.ElemContainerState(yyj4671) - if yyj4671 < len(yyv4671) { + yyh4676.ElemContainerState(yyj4676) + if yyj4676 < len(yyv4676) { if r.TryDecodeAsNil() { - yyv4671[yyj4671] = ComponentStatus{} + yyv4676[yyj4676] = ComponentStatus{} } else { - yyv4674 := &yyv4671[yyj4671] - yyv4674.CodecDecodeSelf(d) + yyv4679 := &yyv4676[yyj4676] + yyv4679.CodecDecodeSelf(d) } } else { @@ -60289,16 +60330,16 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4671 < len(yyv4671) { - yyv4671 = yyv4671[:yyj4671] - yyc4671 = true - } else if yyj4671 == 0 && yyv4671 == nil { - yyv4671 = []ComponentStatus{} - yyc4671 = true + if yyj4676 < len(yyv4676) { + yyv4676 = yyv4676[:yyj4676] + yyc4676 = true + } else if yyj4676 == 0 && yyv4676 == nil { + yyv4676 = []ComponentStatus{} + yyc4676 = true } } - yyh4671.End() - if yyc4671 { - *v = yyv4671 + yyh4676.End() + if yyc4676 { + *v = yyv4676 } } diff --git a/pkg/api/types.go b/pkg/api/types.go index d402a3376f2b2..46e566e28f066 100644 --- a/pkg/api/types.go +++ b/pkg/api/types.go @@ -1734,24 +1734,39 @@ type LoadBalancerIngress struct { // ServiceSpec describes the attributes that a user creates on a service type ServiceSpec struct { - // Type determines how the service will be exposed. Valid options: ClusterIP, NodePort, LoadBalancer + // Type determines how to expose the service. Defaults to ClusterIP and only + // applies if clusterIP != "None". Valid options are ClusterIP, NodePort, + // LoadBalancer, ExternalName. + // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview Type ServiceType `json:"type,omitempty"` // Required: The list of ports that are exposed by this service. Ports []ServicePort `json:"ports"` - // This service will route traffic to pods having labels matching this selector. If empty or not present, - // the service is assumed to have endpoints set by an external process and Kubernetes will not modify - // those endpoints. + // Route service traffic to pods with label keys and values matching this + // selector. If empty or not present, the service is assumed to have an + // external process managing its endpoints, which Kubernetes will not + // modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. + // Ignored if type is ExternalName. + // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview Selector map[string]string `json:"selector"` - // ClusterIP is usually assigned by the master. If specified by the user - // we will try to respect it or else fail the request. This field can - // not be changed by updates. - // Valid values are None, empty string (""), or a valid IP address - // None can be specified for headless services when proxying is not required + // ClusterIP is the IP address of the service and is usually assigned + // randomly by the master. If an address is specified manually and is not in + // use by others, it will be allocated to the service; otherwise, creation + // of the service will fail. This field can not be changed through updates. + // Valid values are "None", empty string (""), or a valid IP address. "None" + // can be specified for headless services when proxying is not required. + // Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if + // type is ExternalName. + // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies ClusterIP string `json:"clusterIP,omitempty"` + // ExternalName is the external reference that kubedns or equivalent will + // return as a CNAME record for this service. No proxying will be involved. + // Must be a valid DNS name and requires Type to be ExternalName. + ExternalName string + // ExternalIPs are used by external load balancers, or can be set by // users to handle external traffic that arrives at a node. ExternalIPs []string `json:"externalIPs,omitempty"` diff --git a/pkg/api/v1/generated.pb.go b/pkg/api/v1/generated.pb.go index f7a7ed3c8a059..15a6c3e88c101 100644 --- a/pkg/api/v1/generated.pb.go +++ b/pkg/api/v1/generated.pb.go @@ -7425,6 +7425,10 @@ func (m *ServiceSpec) MarshalTo(data []byte) (int, error) { i += copy(data[i:], s) } } + data[i] = 0x52 + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.ExternalName))) + i += copy(data[i:], m.ExternalName) return i, nil } @@ -10287,6 +10291,8 @@ func (m *ServiceSpec) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } + l = len(m.ExternalName) + n += 1 + l + sovGenerated(uint64(l)) return n } @@ -12479,6 +12485,7 @@ func (this *ServiceSpec) String() string { `SessionAffinity:` + fmt.Sprintf("%v", this.SessionAffinity) + `,`, `LoadBalancerIP:` + fmt.Sprintf("%v", this.LoadBalancerIP) + `,`, `LoadBalancerSourceRanges:` + fmt.Sprintf("%v", this.LoadBalancerSourceRanges) + `,`, + `ExternalName:` + fmt.Sprintf("%v", this.ExternalName) + `,`, `}`, }, "") return s @@ -35686,6 +35693,35 @@ func (m *ServiceSpec) Unmarshal(data []byte) error { } m.LoadBalancerSourceRanges = append(m.LoadBalancerSourceRanges, string(data[iNdEx:postIndex])) iNdEx = postIndex + case 10: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ExternalName", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ExternalName = string(data[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -37459,596 +37495,597 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 9454 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x8c, 0x64, 0x57, - 0x76, 0xd0, 0x56, 0x55, 0x7f, 0xd5, 0xed, 0xcf, 0x79, 0x33, 0x63, 0xb7, 0x7b, 0xd7, 0x5f, 0x6f, - 0x6d, 0xaf, 0x3d, 0xf6, 0xf4, 0x78, 0xc6, 0x76, 0x6c, 0xef, 0x2e, 0xbb, 0xee, 0xee, 0xea, 0x9e, - 0xe9, 0x4c, 0xcf, 0x4c, 0xf9, 0x54, 0x7b, 0x66, 0x37, 0x6b, 0x36, 0x7e, 0x5d, 0xf5, 0xba, 0xfb, - 0xed, 0x54, 0xd7, 0x2b, 0xbf, 0xf7, 0xaa, 0x67, 0xda, 0x4b, 0xa4, 0x10, 0x85, 0x20, 0x44, 0x08, - 0xfb, 0x83, 0x00, 0x12, 0x20, 0x05, 0x24, 0x24, 0x3e, 0x44, 0xc8, 0x86, 0x25, 0xf1, 0x42, 0x14, - 0x21, 0x11, 0x56, 0x2b, 0x20, 0xc8, 0x2b, 0x01, 0x89, 0x12, 0x69, 0x21, 0x89, 0x10, 0x42, 0xe2, - 0x07, 0x12, 0xbf, 0xb0, 0x22, 0xe0, 0x9e, 0xfb, 0x7d, 0x5f, 0xbd, 0xea, 0xf7, 0xaa, 0x3d, 0xd5, - 0x4c, 0x56, 0xfc, 0x68, 0xa9, 0xeb, 0xdc, 0x73, 0xcf, 0xfd, 0x78, 0xe7, 0x9e, 0x7b, 0xce, 0xb9, - 0xe7, 0x9e, 0x4b, 0x5e, 0xba, 0xfb, 0x46, 0xbc, 0x1c, 0x84, 0x97, 0xee, 0xf6, 0x76, 0xfc, 0xa8, - 0xe3, 0x27, 0x7e, 0x7c, 0xa9, 0x7b, 0x77, 0xef, 0x92, 0xd7, 0x0d, 0x2e, 0x1d, 0x5e, 0xbe, 0xb4, - 0xe7, 0x77, 0xfc, 0xc8, 0x4b, 0xfc, 0xd6, 0x72, 0x37, 0x0a, 0x93, 0xd0, 0xf9, 0x0c, 0xc7, 0x5e, - 0xd6, 0xd8, 0xcb, 0x14, 0x7b, 0x99, 0x62, 0x2f, 0x1f, 0x5e, 0x5e, 0xba, 0xb8, 0x17, 0x24, 0xfb, - 0xbd, 0x9d, 0xe5, 0x66, 0x78, 0x70, 0x69, 0x2f, 0xdc, 0x0b, 0x2f, 0xb1, 0x4a, 0x3b, 0xbd, 0x5d, - 0xf6, 0x8b, 0xfd, 0x60, 0xff, 0x71, 0x62, 0x4b, 0x57, 0x06, 0x37, 0x1d, 0xf9, 0x71, 0xd8, 0x8b, - 0x9a, 0x7e, 0xba, 0x03, 0x4b, 0xaf, 0x0d, 0xae, 0xd3, 0xeb, 0x1c, 0xfa, 0x51, 0x1c, 0x84, 0x1d, - 0xbf, 0xd5, 0x57, 0xed, 0x62, 0x76, 0xb5, 0xa8, 0xd7, 0x49, 0x82, 0x83, 0xfe, 0x56, 0x2e, 0x67, - 0xa3, 0xf7, 0x92, 0xa0, 0x7d, 0x29, 0xe8, 0x24, 0x71, 0x12, 0xa5, 0xab, 0xb8, 0xbf, 0x53, 0x22, - 0x4f, 0xad, 0xdc, 0x69, 0xac, 0xb7, 0xbd, 0x38, 0x09, 0x9a, 0xab, 0xed, 0xb0, 0x79, 0xb7, 0x91, - 0x84, 0x91, 0x7f, 0x3b, 0x6c, 0xf7, 0x0e, 0xfc, 0x06, 0x1b, 0x8d, 0xf3, 0x12, 0x99, 0x3a, 0x64, - 0xbf, 0x37, 0x6b, 0x8b, 0xa5, 0xa7, 0x4a, 0xcf, 0x57, 0x57, 0x17, 0xbe, 0xff, 0xc3, 0x27, 0x3f, - 0xf5, 0x87, 0x3f, 0x7c, 0x72, 0xea, 0xb6, 0x80, 0x83, 0xc2, 0x70, 0x9e, 0x23, 0x13, 0xbb, 0xf1, - 0xf6, 0x51, 0xd7, 0x5f, 0x2c, 0x33, 0xdc, 0x39, 0x81, 0x3b, 0xb1, 0xd1, 0x40, 0x28, 0x88, 0x52, + // 9468 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x6c, 0x24, 0x47, + 0x76, 0xd8, 0xcd, 0x0c, 0xbf, 0xa6, 0xf8, 0xb9, 0xbd, 0xbb, 0x12, 0xc5, 0x3b, 0x7d, 0xf5, 0x49, + 0x3a, 0x69, 0xa5, 0xe5, 0x6a, 0x57, 0x92, 0x25, 0xdd, 0x5d, 0xee, 0x44, 0x72, 0xc8, 0x5d, 0x7a, + 0xb9, 0xbb, 0xa3, 0x37, 0xd4, 0xee, 0x9d, 0x4f, 0x39, 0xab, 0x39, 0xd3, 0x24, 0xfb, 0x76, 0x38, + 0x3d, 0xea, 0xee, 0xe1, 0x2e, 0x75, 0x31, 0xe0, 0x18, 0x8e, 0x83, 0xc0, 0x8e, 0x73, 0x3f, 0xe2, + 0x24, 0x40, 0x12, 0xc0, 0x09, 0x10, 0x20, 0x1f, 0x88, 0xe3, 0x73, 0x2e, 0xb6, 0x2e, 0x31, 0x8c, + 0x00, 0x71, 0x0e, 0x87, 0x24, 0x0e, 0x64, 0x20, 0x89, 0x0d, 0x1b, 0xb8, 0xc4, 0x36, 0x82, 0x20, + 0x40, 0x7e, 0x04, 0xc8, 0xaf, 0x08, 0x46, 0x92, 0x7a, 0xf5, 0x5d, 0x3d, 0x3d, 0xec, 0x1e, 0x6a, + 0x87, 0x59, 0x1f, 0xfc, 0x83, 0x00, 0xa7, 0xde, 0xab, 0x57, 0x1f, 0xfd, 0xea, 0xd5, 0x7b, 0xaf, + 0x5e, 0xbd, 0x22, 0x2f, 0xdd, 0x7d, 0x23, 0x5e, 0x0e, 0xc2, 0x4b, 0x77, 0x7b, 0x3b, 0x7e, 0xd4, + 0xf1, 0x13, 0x3f, 0xbe, 0xd4, 0xbd, 0xbb, 0x77, 0xc9, 0xeb, 0x06, 0x97, 0x0e, 0x2f, 0x5f, 0xda, + 0xf3, 0x3b, 0x7e, 0xe4, 0x25, 0x7e, 0x6b, 0xb9, 0x1b, 0x85, 0x49, 0xe8, 0x7c, 0x86, 0x63, 0x2f, + 0x6b, 0xec, 0x65, 0x8a, 0xbd, 0x4c, 0xb1, 0x97, 0x0f, 0x2f, 0x2f, 0x5d, 0xdc, 0x0b, 0x92, 0xfd, + 0xde, 0xce, 0x72, 0x33, 0x3c, 0xb8, 0xb4, 0x17, 0xee, 0x85, 0x97, 0x58, 0xa5, 0x9d, 0xde, 0x2e, + 0xfb, 0xc5, 0x7e, 0xb0, 0xff, 0x38, 0xb1, 0xa5, 0x2b, 0x83, 0x9b, 0x8e, 0xfc, 0x38, 0xec, 0x45, + 0x4d, 0x3f, 0xdd, 0x81, 0xa5, 0xd7, 0x06, 0xd7, 0xe9, 0x75, 0x0e, 0xfd, 0x28, 0x0e, 0xc2, 0x8e, + 0xdf, 0xea, 0xab, 0x76, 0x31, 0xbb, 0x5a, 0xd4, 0xeb, 0x24, 0xc1, 0x41, 0x7f, 0x2b, 0x97, 0xb3, + 0xd1, 0x7b, 0x49, 0xd0, 0xbe, 0x14, 0x74, 0x92, 0x38, 0x89, 0xd2, 0x55, 0xdc, 0xdf, 0x29, 0x91, + 0xa7, 0x56, 0xee, 0x34, 0xd6, 0xdb, 0x5e, 0x9c, 0x04, 0xcd, 0xd5, 0x76, 0xd8, 0xbc, 0xdb, 0x48, + 0xc2, 0xc8, 0xbf, 0x1d, 0xb6, 0x7b, 0x07, 0x7e, 0x83, 0x8d, 0xc6, 0x79, 0x89, 0x4c, 0x1d, 0xb2, + 0xdf, 0x9b, 0xb5, 0xc5, 0xd2, 0x53, 0xa5, 0xe7, 0xab, 0xab, 0x0b, 0xdf, 0xff, 0xc1, 0x93, 0x9f, + 0xfa, 0xc3, 0x1f, 0x3c, 0x39, 0x75, 0x5b, 0x94, 0x83, 0xc2, 0x70, 0x9e, 0x23, 0x13, 0xbb, 0xf1, + 0xf6, 0x51, 0xd7, 0x5f, 0x2c, 0x33, 0xdc, 0x39, 0x81, 0x3b, 0xb1, 0xd1, 0xc0, 0x52, 0x10, 0x50, 0xe7, 0x12, 0xa9, 0x76, 0xbd, 0x28, 0x09, 0x12, 0x3a, 0xf6, 0xc5, 0x0a, 0x45, 0x1d, 0x5f, 0x3d, - 0x23, 0x50, 0xab, 0x75, 0x59, 0x00, 0x1a, 0x07, 0xbb, 0x11, 0xf9, 0x5e, 0xeb, 0x56, 0xa7, 0x7d, - 0xb4, 0x38, 0x46, 0xf1, 0xa7, 0x74, 0x37, 0x40, 0xc0, 0x41, 0x61, 0xb8, 0x1f, 0x96, 0xc9, 0xd4, + 0x23, 0x50, 0xab, 0x75, 0x09, 0x00, 0x8d, 0x83, 0xdd, 0x88, 0x7c, 0xaf, 0x75, 0xab, 0xd3, 0x3e, + 0x5a, 0x1c, 0xa3, 0xf8, 0x53, 0xba, 0x1b, 0x20, 0xca, 0x41, 0x61, 0xb8, 0x1f, 0x96, 0xc9, 0xd4, 0xca, 0xee, 0x6e, 0xd0, 0x09, 0x92, 0x23, 0xe7, 0x3d, 0x32, 0xd3, 0x09, 0x5b, 0xbe, 0xfc, 0xcd, 0x46, 0x31, 0x7d, 0xe5, 0xc2, 0xf2, 0x71, 0x7c, 0xb1, 0x7c, 0xd3, 0xa8, 0xb1, 0xba, 0x40, 0x9b, - 0x99, 0x31, 0x21, 0x60, 0x51, 0x74, 0xde, 0x25, 0xd3, 0xdd, 0xb0, 0xa5, 0x1a, 0x28, 0xb3, 0x06, - 0x5e, 0x38, 0xbe, 0x81, 0xba, 0xae, 0xb0, 0x3a, 0x4f, 0xe9, 0x4f, 0x1b, 0x00, 0x30, 0xc9, 0x39, - 0x6d, 0x32, 0x8f, 0x3f, 0xe9, 0x67, 0x57, 0x2d, 0x54, 0x58, 0x0b, 0x17, 0xf3, 0x5b, 0x30, 0x2a, - 0xad, 0x9e, 0xa5, 0xad, 0xcc, 0xa7, 0x80, 0x90, 0x26, 0xed, 0x7e, 0x40, 0xe6, 0x56, 0x92, 0xc4, - 0x6b, 0xee, 0xfb, 0x2d, 0xfe, 0x7d, 0x9d, 0x57, 0xc9, 0x58, 0xc7, 0x3b, 0xf0, 0xc5, 0xd7, 0x7f, - 0x4a, 0x4c, 0xfb, 0xd8, 0x4d, 0x0a, 0xfb, 0xf8, 0x87, 0x4f, 0x2e, 0xbc, 0xd3, 0x09, 0xde, 0xef, - 0x09, 0x9e, 0x41, 0x18, 0x30, 0x6c, 0xe7, 0x0a, 0x21, 0x2d, 0xff, 0x30, 0x68, 0xfa, 0x75, 0x2f, - 0xd9, 0x17, 0xdc, 0xe0, 0x88, 0xba, 0xa4, 0xa6, 0x4a, 0xc0, 0xc0, 0x72, 0x7f, 0xa6, 0x44, 0xaa, - 0x2b, 0x87, 0x61, 0xd0, 0xa2, 0xbd, 0x8c, 0x9d, 0x1e, 0x1d, 0x77, 0xe4, 0xef, 0xfa, 0x91, 0x02, - 0xd1, 0x2e, 0x54, 0xe8, 0xb8, 0xaf, 0xe4, 0x8c, 0xdb, 0xae, 0xb4, 0xde, 0x49, 0xa2, 0xa3, 0xd5, - 0x47, 0x45, 0xd3, 0xf3, 0xa9, 0x52, 0x48, 0xb7, 0xe1, 0xfe, 0x83, 0x12, 0x39, 0xbf, 0xf2, 0x41, - 0x2f, 0xf2, 0x37, 0x82, 0xb6, 0xbd, 0x14, 0xe8, 0x90, 0x62, 0xbf, 0x19, 0xf9, 0xc9, 0x4d, 0x3d, - 0x1d, 0x6a, 0x48, 0x0d, 0x55, 0x02, 0x06, 0x16, 0x32, 0x7a, 0xbc, 0xef, 0x45, 0x6c, 0x66, 0xc4, - 0x2c, 0x28, 0x46, 0x6f, 0xc8, 0x02, 0xd0, 0x38, 0x16, 0xa3, 0x57, 0x72, 0x19, 0xfd, 0x9f, 0x95, - 0xc8, 0xe4, 0x6a, 0xd0, 0x69, 0x05, 0x9d, 0x3d, 0xe7, 0x2b, 0x64, 0xea, 0xc0, 0x4f, 0xbc, 0x96, - 0x97, 0x78, 0x82, 0xc7, 0x9f, 0x3f, 0x7e, 0xa2, 0x6e, 0xed, 0x7c, 0xc3, 0x6f, 0x26, 0x37, 0x68, - 0x1d, 0x3d, 0x0c, 0x0d, 0x03, 0x45, 0xcd, 0x79, 0x87, 0x4c, 0x24, 0x5e, 0xb4, 0xe7, 0x27, 0x82, - 0xb5, 0x2f, 0x16, 0xa1, 0x0b, 0x38, 0xad, 0x7e, 0xa7, 0xe9, 0x6b, 0x21, 0xb0, 0xcd, 0x88, 0x80, - 0x20, 0xe6, 0x36, 0xc9, 0xcc, 0x9a, 0xd7, 0xf5, 0x76, 0x82, 0x36, 0x5d, 0xe3, 0x7e, 0xec, 0x7c, - 0x8e, 0x54, 0xbc, 0x56, 0x8b, 0x7d, 0xe4, 0xea, 0xea, 0x79, 0x5a, 0xa1, 0xb2, 0xd2, 0x6a, 0x51, - 0x16, 0x23, 0x0a, 0xeb, 0x08, 0x10, 0xc3, 0xb9, 0x40, 0xc6, 0x5a, 0x51, 0xd8, 0xa5, 0xbd, 0x41, - 0xcc, 0x47, 0x90, 0x1b, 0x6b, 0xf4, 0x77, 0x0a, 0x95, 0xe1, 0xb8, 0xff, 0xaa, 0x4c, 0x9c, 0x35, - 0xbf, 0xbb, 0xbf, 0xd1, 0xb0, 0xbe, 0xe5, 0xf3, 0x74, 0xb2, 0x42, 0xca, 0xf0, 0x61, 0x14, 0x8b, - 0x06, 0x67, 0x70, 0x8a, 0x6f, 0x08, 0x18, 0xa8, 0x52, 0xe7, 0x29, 0x32, 0xd6, 0xd5, 0x2c, 0x3c, - 0x23, 0xd9, 0x9f, 0x31, 0x2f, 0x2b, 0x41, 0x8c, 0x5e, 0xec, 0x47, 0xec, 0x73, 0x19, 0x18, 0xef, - 0x50, 0x18, 0xb0, 0x12, 0xcd, 0x39, 0xc8, 0x53, 0x4c, 0x7e, 0xf5, 0x71, 0x0e, 0x96, 0x80, 0x81, - 0xe5, 0xfc, 0x24, 0xe5, 0x1c, 0xf6, 0x8b, 0x4e, 0xe4, 0xe2, 0x38, 0x9b, 0xf7, 0x1c, 0xc6, 0xdf, - 0x0a, 0x9b, 0x5e, 0x3b, 0x3d, 0xf9, 0xb3, 0x8c, 0xd3, 0x24, 0x21, 0xd0, 0x34, 0x2d, 0x4e, 0x9b, - 0xc8, 0xe5, 0xb4, 0xbf, 0x5e, 0xa2, 0xf3, 0x48, 0x39, 0xcd, 0x8f, 0x4e, 0x61, 0x7b, 0x18, 0x6e, - 0x11, 0xfc, 0x3e, 0x76, 0x2d, 0x3c, 0xe8, 0xd2, 0x6d, 0xb4, 0x93, 0xac, 0x85, 0x74, 0x35, 0xb0, - 0x2d, 0xe3, 0xf3, 0x64, 0x2c, 0xc1, 0xa6, 0x78, 0xb7, 0x9e, 0x93, 0x9f, 0x05, 0x1b, 0xa0, 0x9c, - 0xf2, 0x48, 0x7f, 0x0d, 0xd6, 0x05, 0x56, 0xc7, 0x79, 0x93, 0x4c, 0xc4, 0x89, 0x97, 0xf4, 0x62, - 0xd1, 0xd1, 0xa7, 0x65, 0x47, 0x1b, 0x0c, 0x4a, 0xeb, 0xcf, 0xab, 0x6a, 0x1c, 0x04, 0xa2, 0x82, - 0xf3, 0x02, 0x99, 0x3c, 0xf0, 0xe3, 0xd8, 0xdb, 0xf3, 0x05, 0x43, 0xcc, 0x8b, 0xba, 0x93, 0x37, - 0x38, 0x18, 0x64, 0xb9, 0xf3, 0x59, 0x32, 0xee, 0x47, 0x51, 0x18, 0x09, 0x8e, 0x98, 0x15, 0x88, - 0xe3, 0xeb, 0x08, 0x04, 0x5e, 0xe6, 0xfe, 0xa0, 0x44, 0xe6, 0x55, 0x5f, 0x79, 0x5b, 0x23, 0x5c, - 0xea, 0x2d, 0x42, 0x9a, 0x72, 0x60, 0x31, 0x5b, 0x60, 0xd3, 0x57, 0x5e, 0x3e, 0x9e, 0x76, 0xff, - 0x44, 0xea, 0x36, 0x14, 0x28, 0x06, 0x83, 0xae, 0xfb, 0xfd, 0x12, 0x39, 0x9b, 0x1a, 0xd3, 0x56, - 0x10, 0x27, 0xce, 0x9f, 0xee, 0x1b, 0xd7, 0xa5, 0x63, 0xda, 0x36, 0xb4, 0xa7, 0x65, 0xac, 0xce, - 0x86, 0xa7, 0x18, 0x45, 0x42, 0x8c, 0xc1, 0x01, 0x19, 0x0f, 0x12, 0xff, 0x40, 0x8e, 0xeb, 0x62, - 0xc1, 0x71, 0xf1, 0x0e, 0xea, 0xcf, 0xb3, 0x89, 0x34, 0x80, 0x93, 0x72, 0xff, 0x27, 0xdd, 0xb3, - 0xe8, 0x28, 0x77, 0x83, 0xbd, 0x1b, 0x5e, 0x77, 0x84, 0x1f, 0xa6, 0x41, 0x65, 0x1e, 0x52, 0xe5, - 0x5d, 0xbf, 0x9c, 0xd7, 0x75, 0xd1, 0xa1, 0xe5, 0x1a, 0xad, 0xc3, 0x77, 0x40, 0x25, 0x97, 0x10, - 0x04, 0x8c, 0xd8, 0xd2, 0xeb, 0xa4, 0xaa, 0x10, 0x9c, 0x05, 0x52, 0xb9, 0xeb, 0x73, 0xf5, 0xa8, - 0x0a, 0xf8, 0xaf, 0x73, 0x8e, 0x8c, 0x1f, 0x7a, 0xed, 0x9e, 0x58, 0xad, 0xc0, 0x7f, 0x7c, 0xbe, - 0xfc, 0x46, 0xc9, 0xfd, 0x8d, 0x12, 0x39, 0xa7, 0x1a, 0xb9, 0xee, 0x1f, 0x35, 0xfc, 0x36, 0xed, - 0x72, 0x18, 0x39, 0x3f, 0x4b, 0x0b, 0xda, 0x19, 0x72, 0x48, 0xcc, 0xc6, 0x49, 0x24, 0xd8, 0x67, - 0x44, 0xc7, 0xcf, 0x65, 0x95, 0x42, 0x66, 0x6b, 0xce, 0xe3, 0x7c, 0x2c, 0x7c, 0xf1, 0x4e, 0x0b, - 0x02, 0x15, 0xda, 0x51, 0x36, 0x30, 0xec, 0xfe, 0xac, 0xea, 0xfe, 0x69, 0x70, 0xde, 0x96, 0xcd, - 0x79, 0x9f, 0x2b, 0xf8, 0xf9, 0x06, 0xf0, 0xdc, 0x7f, 0xa7, 0x2a, 0x8a, 0xc2, 0xb1, 0xc4, 0xf1, - 0x43, 0x32, 0xfd, 0xc3, 0x0d, 0x97, 0x7e, 0x96, 0xed, 0x10, 0xf7, 0xd3, 0x01, 0xc3, 0xfd, 0xed, - 0x2a, 0x5b, 0x62, 0x89, 0x17, 0x50, 0xfb, 0x05, 0x77, 0x5b, 0x43, 0x1d, 0x9d, 0x31, 0xd5, 0x51, - 0xa1, 0x7a, 0x52, 0xb1, 0x1a, 0x1c, 0xa0, 0xfc, 0x2d, 0xdb, 0x62, 0x75, 0x13, 0x81, 0xc0, 0xcb, - 0x9c, 0x67, 0xc9, 0x24, 0xb5, 0xf9, 0x0e, 0xbc, 0x4e, 0x8b, 0x8a, 0x69, 0xdc, 0xff, 0xa7, 0x51, - 0x44, 0xaf, 0x71, 0x10, 0xc8, 0x32, 0xe7, 0x33, 0x64, 0x8c, 0x2a, 0x2b, 0x31, 0x95, 0xd0, 0x88, - 0x33, 0x85, 0x2d, 0xad, 0xd0, 0xdf, 0xc0, 0xa0, 0xb8, 0xaf, 0xdf, 0x0b, 0xa3, 0xbb, 0x54, 0xfb, - 0xaa, 0x05, 0x11, 0xdb, 0xa4, 0x8d, 0x7d, 0xfd, 0x8e, 0x2a, 0x01, 0x03, 0xcb, 0xa9, 0x93, 0xf1, - 0x6e, 0x18, 0x25, 0x31, 0xdd, 0x73, 0x71, 0x6e, 0x5e, 0xcc, 0x65, 0x05, 0x3e, 0xee, 0x3a, 0xad, - 0xa3, 0x87, 0x82, 0xbf, 0xe8, 0xfc, 0x30, 0x42, 0xce, 0x1a, 0xa9, 0xf8, 0x9d, 0xc3, 0xc5, 0x49, - 0x46, 0xef, 0x99, 0xe3, 0xe9, 0xad, 0x77, 0x0e, 0x6f, 0x7b, 0x91, 0x5e, 0x12, 0xf4, 0x37, 0x60, - 0x6d, 0xa7, 0x49, 0xaa, 0xd2, 0x82, 0x8d, 0x17, 0xa7, 0x8a, 0x70, 0x0b, 0x08, 0x74, 0xf0, 0xdf, - 0xef, 0x05, 0x91, 0x7f, 0x40, 0x25, 0x65, 0xac, 0x95, 0x5b, 0x59, 0x1a, 0x83, 0xa6, 0x4b, 0x1b, - 0x99, 0xe1, 0xba, 0xc0, 0x8d, 0x90, 0x9a, 0xb1, 0xf1, 0x62, 0x95, 0x75, 0x39, 0xc7, 0x52, 0xba, - 0xad, 0x6b, 0xac, 0x9e, 0x13, 0xe4, 0x67, 0x0c, 0x60, 0x0c, 0x16, 0x51, 0x6a, 0x8d, 0xcd, 0xb6, - 0x83, 0x43, 0x6a, 0xeb, 0xc6, 0x71, 0x3d, 0x0a, 0x77, 0xfc, 0x45, 0xc2, 0x46, 0xf3, 0xd9, 0x3c, - 0xab, 0x81, 0xa2, 0xae, 0x9e, 0xa1, 0xb4, 0x67, 0xb7, 0xcc, 0xda, 0x60, 0x13, 0xa3, 0x6a, 0xd9, - 0x1c, 0x2a, 0x1e, 0x81, 0x26, 0x3f, 0x5d, 0x9c, 0xbc, 0x43, 0xc9, 0xcf, 0x81, 0x55, 0x1d, 0x52, - 0xe4, 0x9c, 0x6d, 0x52, 0x6d, 0x07, 0xbb, 0x7e, 0xf3, 0xa8, 0x49, 0x55, 0xc5, 0x19, 0x46, 0x3b, - 0x67, 0xfd, 0x6c, 0x49, 0x74, 0xae, 0xec, 0xa9, 0x9f, 0xa0, 0x09, 0x39, 0xb7, 0xc9, 0x23, 0x89, - 0x1f, 0x1d, 0x04, 0x1d, 0x0f, 0x77, 0x60, 0xa1, 0x89, 0x30, 0xd3, 0x6c, 0x96, 0x71, 0xed, 0x13, - 0x62, 0x62, 0x1f, 0xd9, 0xce, 0xc4, 0x82, 0x01, 0xb5, 0x9d, 0x5b, 0x64, 0x9e, 0xad, 0xa7, 0x7a, - 0xaf, 0xdd, 0xae, 0x87, 0xed, 0xa0, 0x79, 0xb4, 0x38, 0xc7, 0x08, 0x3e, 0x2b, 0x0d, 0xae, 0x4d, - 0xbb, 0x18, 0x95, 0x74, 0xfd, 0x0b, 0xd2, 0xb5, 0xd1, 0xda, 0xa5, 0x2a, 0x6a, 0x2f, 0xa2, 0x1a, - 0x3c, 0xf2, 0xbe, 0x7f, 0x3f, 0x59, 0x9c, 0x2f, 0x62, 0x74, 0x34, 0xec, 0x4a, 0xdc, 0xda, 0x4d, - 0x01, 0x21, 0x4d, 0x1a, 0x45, 0x45, 0x9c, 0xd0, 0xd9, 0x5f, 0x5c, 0x60, 0x5a, 0xa6, 0x5a, 0x5f, - 0x0d, 0x04, 0x02, 0x2f, 0x63, 0x36, 0x1c, 0xfe, 0x73, 0x0b, 0x05, 0xe9, 0x19, 0x86, 0xa8, 0x6d, - 0x38, 0x59, 0x00, 0x1a, 0x07, 0x77, 0x9f, 0x84, 0x5a, 0xe9, 0x0e, 0x43, 0x55, 0x4b, 0x6d, 0x7b, - 0xfb, 0xab, 0x80, 0x70, 0x77, 0x87, 0xcc, 0xa9, 0x65, 0xcd, 0x66, 0xc7, 0x79, 0x92, 0x8c, 0xa3, - 0xe4, 0x92, 0xa6, 0x48, 0x15, 0xbb, 0x80, 0x02, 0x8d, 0x2e, 0x71, 0x06, 0x67, 0x5d, 0x08, 0x3e, - 0xf0, 0x57, 0x8f, 0xe8, 0xa8, 0x99, 0x58, 0xab, 0x18, 0x5d, 0x90, 0x05, 0xa0, 0x71, 0xdc, 0xff, - 0xcd, 0x77, 0x38, 0x2d, 0x3b, 0x0a, 0xc8, 0x4d, 0xaa, 0x75, 0xef, 0x87, 0x71, 0x82, 0xd8, 0xac, - 0x8d, 0x71, 0xbd, 0xa5, 0x5d, 0x13, 0x70, 0x50, 0x18, 0xce, 0x17, 0xc8, 0x6c, 0xd3, 0x6c, 0x40, - 0xb8, 0x71, 0xce, 0x8b, 0x2a, 0x76, 0xeb, 0x60, 0xe3, 0x3a, 0x6f, 0x90, 0x29, 0xe6, 0x83, 0x6a, - 0x86, 0x6d, 0xa1, 0xfc, 0xca, 0x6d, 0x66, 0xaa, 0x2e, 0xe0, 0x1f, 0x1b, 0xff, 0x83, 0xc2, 0x46, - 0x13, 0x02, 0xbb, 0xb0, 0x59, 0x17, 0xe2, 0x56, 0x99, 0x10, 0xd7, 0x18, 0x14, 0x44, 0xa9, 0xfb, - 0x2b, 0x65, 0x63, 0x96, 0x51, 0x83, 0xf3, 0x9d, 0x9f, 0x20, 0x93, 0xf7, 0x3c, 0xaa, 0x81, 0x76, - 0xf6, 0xc4, 0x76, 0xf8, 0x4a, 0x41, 0xd9, 0xcb, 0xaa, 0xdf, 0xe1, 0x55, 0xf9, 0x3e, 0x21, 0x7e, - 0x80, 0x24, 0x88, 0xb4, 0xa3, 0x5e, 0xa7, 0x83, 0xb4, 0xcb, 0xc3, 0xd3, 0x06, 0x5e, 0x95, 0xd3, - 0x16, 0x3f, 0x40, 0x12, 0x74, 0x76, 0x09, 0x91, 0xab, 0xcf, 0x6f, 0x09, 0xdf, 0xcf, 0x8f, 0x0d, - 0x43, 0x7e, 0x5b, 0xd5, 0x5e, 0x9d, 0xc3, 0x9d, 0x49, 0xff, 0x06, 0x83, 0xb2, 0xdb, 0x63, 0x5a, - 0x45, 0x7f, 0xb7, 0xa8, 0x44, 0xa5, 0xcc, 0xed, 0x45, 0x14, 0x67, 0x25, 0x11, 0x53, 0xf7, 0x62, - 0x41, 0xed, 0x68, 0x3b, 0x38, 0xf0, 0xcd, 0xd5, 0x22, 0xa8, 0x80, 0x26, 0xe8, 0x7e, 0xb7, 0x42, - 0x16, 0x07, 0xf5, 0x17, 0x79, 0xd2, 0xbf, 0x1f, 0x50, 0xd3, 0xa2, 0xc5, 0x39, 0xd7, 0xe0, 0xc9, - 0x75, 0x01, 0x07, 0x85, 0x81, 0xcc, 0x11, 0x07, 0x7b, 0x1d, 0xaf, 0x2d, 0xf8, 0x57, 0x31, 0x47, - 0x83, 0x41, 0x41, 0x94, 0x22, 0x1e, 0x95, 0xba, 0xb1, 0xf0, 0x3d, 0x1a, 0x4c, 0x04, 0x0c, 0x0a, - 0xa2, 0xd4, 0xb4, 0xe5, 0xc6, 0x72, 0x6c, 0x39, 0x6b, 0x8e, 0xc6, 0x1f, 0xf0, 0x1c, 0xd1, 0x5d, - 0x87, 0xa0, 0x7f, 0x2e, 0xde, 0x67, 0xe4, 0x27, 0x86, 0x27, 0xaf, 0xb4, 0x92, 0x0d, 0x45, 0x06, - 0x0c, 0x92, 0xce, 0x6b, 0x64, 0x5a, 0xad, 0x50, 0x6a, 0xca, 0x4f, 0xb2, 0xd1, 0x9e, 0x15, 0x95, - 0xa6, 0xb5, 0xb8, 0xaa, 0x81, 0x89, 0xe7, 0x7e, 0x23, 0xcd, 0x32, 0x62, 0x61, 0x18, 0x33, 0x5c, - 0x2a, 0x3a, 0xc3, 0xe5, 0xe3, 0x67, 0xd8, 0xfd, 0x8f, 0x15, 0x34, 0x84, 0x8d, 0xc6, 0x7a, 0x71, - 0x01, 0xa1, 0xf6, 0x36, 0x4a, 0x78, 0xda, 0x31, 0xb1, 0x2c, 0x5f, 0x1a, 0x66, 0xdd, 0x98, 0xfb, - 0x01, 0x2e, 0x07, 0x4e, 0xc9, 0xd9, 0xa7, 0x3b, 0xb4, 0x17, 0x33, 0xb3, 0xd0, 0x17, 0xcb, 0x71, - 0x38, 0xb2, 0x5a, 0xa5, 0xa6, 0x64, 0x8c, 0x0d, 0x97, 0xb7, 0xa2, 0x89, 0xe3, 0xf6, 0x84, 0xda, - 0x81, 0x74, 0x79, 0xab, 0xee, 0xa0, 0x0a, 0x71, 0x04, 0xbc, 0x8c, 0xca, 0xd2, 0x19, 0xaa, 0x61, - 0x21, 0xab, 0xac, 0xa1, 0x02, 0xc4, 0x98, 0x6f, 0x5c, 0x6b, 0x4a, 0x60, 0x94, 0x81, 0x85, 0xa9, - 0x15, 0xe5, 0x89, 0x63, 0x14, 0x65, 0xfa, 0x85, 0xd8, 0x3f, 0x8a, 0x2b, 0xd4, 0x17, 0xda, 0xe4, - 0x60, 0x90, 0xe5, 0x69, 0x26, 0x9a, 0x2a, 0xc8, 0x44, 0x17, 0xc8, 0x5c, 0xcd, 0xf3, 0x0f, 0xc2, - 0xce, 0x7a, 0xa7, 0xd5, 0x0d, 0x03, 0xda, 0xb1, 0x45, 0x32, 0xc6, 0xb6, 0x14, 0xbe, 0xe2, 0xc7, - 0x90, 0x02, 0x8c, 0xa1, 0xb2, 0xeb, 0xfe, 0x1f, 0xba, 0xaf, 0xd5, 0xa8, 0xb1, 0x99, 0xf8, 0xb7, - 0xba, 0xcc, 0x97, 0xe0, 0x6c, 0x10, 0x67, 0x2f, 0xf2, 0x9a, 0x7e, 0xdd, 0x8f, 0x82, 0xb0, 0x45, - 0x77, 0xfc, 0xb0, 0xc3, 0x3c, 0xc5, 0xb8, 0x47, 0xa2, 0x6b, 0xd0, 0xb9, 0xda, 0x57, 0x0a, 0x19, - 0x35, 0x9c, 0x16, 0x99, 0xed, 0x46, 0xbe, 0xe5, 0xfc, 0x28, 0xe5, 0xeb, 0xe7, 0x75, 0xb3, 0x0a, - 0x57, 0x1f, 0x2d, 0x10, 0xd8, 0x44, 0x9d, 0xb7, 0xc8, 0x42, 0x18, 0x75, 0xf7, 0xbd, 0x4e, 0xcd, - 0xef, 0xfa, 0x9d, 0x16, 0xea, 0xcc, 0xc2, 0xc3, 0x75, 0x8e, 0xd6, 0x5d, 0xb8, 0x95, 0x2a, 0x83, - 0x3e, 0x6c, 0xf7, 0x2f, 0x95, 0xc9, 0xf9, 0x5a, 0x78, 0xaf, 0x73, 0xcf, 0x8b, 0x5a, 0x2b, 0xf5, - 0x4d, 0xae, 0x08, 0x33, 0x8f, 0xa1, 0xf4, 0x54, 0x96, 0x06, 0x7a, 0x2a, 0xbf, 0x46, 0xa6, 0x76, - 0x03, 0xbf, 0xdd, 0x42, 0x97, 0x22, 0x1f, 0xde, 0xe5, 0x22, 0xee, 0x89, 0x0d, 0xac, 0x23, 0x4d, - 0x7c, 0xee, 0x28, 0xdd, 0x10, 0x64, 0x40, 0x11, 0x74, 0x7a, 0x64, 0x41, 0x6a, 0xfa, 0xb2, 0x54, - 0xac, 0x8e, 0x57, 0x8a, 0x19, 0x12, 0x76, 0x33, 0x6c, 0x3e, 0x20, 0x45, 0x10, 0xfa, 0x9a, 0x70, - 0x63, 0xf2, 0x68, 0xdf, 0x74, 0x08, 0x6b, 0xf8, 0x2b, 0xd2, 0x0c, 0xe5, 0xe7, 0x06, 0x39, 0xdd, - 0xc8, 0x9c, 0xd4, 0x01, 0x26, 0xe9, 0x2d, 0x72, 0x6e, 0xfd, 0xa0, 0x9b, 0x1c, 0x51, 0x83, 0xce, - 0x6a, 0xf1, 0x75, 0x32, 0x71, 0xe0, 0xb7, 0x82, 0xde, 0x81, 0xf8, 0x08, 0x4f, 0x4a, 0xb1, 0x77, - 0x83, 0x41, 0xa9, 0x4e, 0x33, 0x8b, 0x47, 0x6c, 0x74, 0xb9, 0x70, 0x00, 0x08, 0x74, 0xf7, 0xd7, - 0x4b, 0x64, 0x5e, 0xb2, 0xff, 0x4a, 0xab, 0x45, 0x47, 0x19, 0x3b, 0x4b, 0xa4, 0x1c, 0x74, 0x05, - 0x21, 0x22, 0x08, 0x95, 0xa9, 0x8a, 0x43, 0xa1, 0x54, 0xdf, 0xa8, 0x72, 0x2f, 0xba, 0xfe, 0x94, - 0x43, 0x7a, 0xe5, 0x99, 0xad, 0xb0, 0x2d, 0x69, 0x80, 0x26, 0x27, 0xf5, 0x40, 0x26, 0x58, 0x2b, - 0xb6, 0x4f, 0xf7, 0x9a, 0x80, 0x83, 0xc2, 0x70, 0x7f, 0xbe, 0x44, 0x66, 0x64, 0xcf, 0x0b, 0x2a, - 0x9a, 0xc8, 0xa8, 0x5a, 0xc9, 0xd4, 0x8c, 0x8a, 0x8a, 0x22, 0x2b, 0xb1, 0xf4, 0xc3, 0xca, 0x30, - 0xfa, 0xa1, 0xfb, 0x5d, 0xaa, 0xf7, 0xc9, 0xee, 0x34, 0x7a, 0x3b, 0xb1, 0x9f, 0x38, 0x5f, 0x27, - 0x55, 0x8f, 0x4f, 0xa9, 0x2f, 0x59, 0xe1, 0x62, 0x9e, 0x95, 0x6c, 0x7d, 0x09, 0xbd, 0x39, 0xaf, - 0x48, 0x3a, 0xa0, 0x49, 0x3a, 0x87, 0xe4, 0x4c, 0x27, 0x4c, 0x98, 0x4c, 0x56, 0xe5, 0xc5, 0x5c, - 0x8c, 0xe9, 0x76, 0x1e, 0x13, 0xed, 0x9c, 0xb9, 0x99, 0xa6, 0x07, 0xfd, 0x4d, 0x50, 0xdb, 0x4b, - 0x78, 0x12, 0x2a, 0xac, 0xad, 0x0b, 0xc5, 0xda, 0x1a, 0xec, 0x48, 0x70, 0x7f, 0xb3, 0x44, 0xaa, - 0x12, 0x6d, 0x94, 0x4e, 0xe6, 0x3b, 0x64, 0x32, 0x66, 0x9f, 0x46, 0x4e, 0xd3, 0x4b, 0xc5, 0xba, - 0xce, 0xbf, 0xa7, 0xde, 0x80, 0xf8, 0xef, 0x18, 0x24, 0x35, 0xe6, 0xd7, 0x53, 0x03, 0x78, 0xf8, - 0xfc, 0x7a, 0xaa, 0x6b, 0x03, 0xa4, 0xca, 0xdf, 0x2b, 0x91, 0x09, 0xee, 0xa0, 0x29, 0xe6, 0xe5, - 0x32, 0x9c, 0xb3, 0x9a, 0xe2, 0x6d, 0x04, 0x0a, 0x5f, 0x2d, 0x9d, 0xe9, 0x2a, 0xfb, 0x67, 0x23, - 0x0a, 0x0f, 0x84, 0x30, 0xbe, 0x50, 0xc4, 0x41, 0xc4, 0xc5, 0x19, 0x97, 0x11, 0xb7, 0x25, 0x01, - 0xd0, 0xb4, 0xdc, 0xdf, 0xa8, 0xe0, 0xaa, 0xd7, 0xa8, 0xd6, 0xd6, 0x52, 0x3a, 0x8d, 0xad, 0xa5, - 0x3c, 0xf2, 0xad, 0xc5, 0x79, 0x9f, 0xcc, 0x37, 0x0d, 0x27, 0xb7, 0xde, 0xd0, 0xae, 0x14, 0xf4, - 0xdf, 0x1a, 0x9e, 0x71, 0xee, 0x90, 0x58, 0xb3, 0xc9, 0x41, 0x9a, 0xbe, 0xe3, 0x93, 0x19, 0x7e, - 0x42, 0x27, 0xda, 0x1b, 0xcb, 0xe5, 0x59, 0xee, 0xfb, 0xe0, 0x35, 0x54, 0x63, 0x2c, 0x62, 0xa1, - 0x61, 0x10, 0x02, 0x8b, 0xac, 0xfb, 0x57, 0xc6, 0xc9, 0xf8, 0xfa, 0x21, 0xd5, 0x27, 0x46, 0xb8, - 0xca, 0x0f, 0xc8, 0x5c, 0xd0, 0x39, 0x0c, 0xdb, 0x87, 0x7e, 0x8b, 0x97, 0x9f, 0x6c, 0x9f, 0x7a, - 0x44, 0x34, 0x32, 0xb7, 0x69, 0x11, 0x83, 0x14, 0xf1, 0x51, 0xd8, 0x74, 0x6f, 0x53, 0x73, 0x92, - 0x71, 0x84, 0x30, 0xe8, 0x72, 0x1c, 0x95, 0x6c, 0x42, 0xc5, 0xca, 0xd1, 0x96, 0x27, 0xf7, 0x91, - 0x0a, 0x42, 0xce, 0x5d, 0x32, 0xb7, 0x1b, 0x44, 0x54, 0xeb, 0xa7, 0x46, 0x19, 0xd5, 0xc4, 0x0f, - 0xba, 0x27, 0x31, 0xe6, 0xd4, 0x94, 0x6c, 0x58, 0xa4, 0x20, 0x45, 0x9a, 0x1a, 0x2a, 0xb3, 0x68, - 0x4b, 0xe8, 0xb6, 0x26, 0x87, 0x6f, 0x4b, 0xf9, 0x73, 0xb6, 0x4c, 0x4a, 0x60, 0x13, 0x46, 0x61, - 0xd4, 0x64, 0xc6, 0xc7, 0x14, 0xdb, 0xd2, 0x95, 0x30, 0xe2, 0x56, 0x07, 0x2f, 0x43, 0x99, 0xc6, - 0x0e, 0x64, 0xab, 0xb6, 0x4c, 0xd3, 0xc7, 0xae, 0xee, 0x77, 0x70, 0x03, 0xc2, 0x59, 0x3c, 0x0d, - 0xd9, 0x7d, 0xcd, 0x96, 0xdd, 0x9f, 0x2d, 0xf0, 0x71, 0x07, 0xc8, 0xed, 0xf7, 0xc8, 0xb4, 0xf1, - 0xed, 0xd1, 0x59, 0xd7, 0x94, 0x67, 0x87, 0x42, 0x80, 0x2b, 0x05, 0x42, 0x1d, 0x2a, 0x82, 0xc6, - 0xc1, 0x89, 0x41, 0x75, 0x2a, 0x1d, 0x62, 0x80, 0xca, 0x16, 0xb0, 0x12, 0xf7, 0x15, 0x42, 0xd6, - 0xef, 0xfb, 0xcd, 0x95, 0x26, 0x3b, 0xd9, 0x36, 0xce, 0x2e, 0x4a, 0x83, 0xcf, 0x2e, 0xdc, 0x77, - 0xe9, 0x66, 0x78, 0x1f, 0x77, 0x76, 0x69, 0x2a, 0xd1, 0x25, 0xe2, 0x33, 0x00, 0xeb, 0xd5, 0x94, - 0x66, 0x52, 0x8e, 0x06, 0xa2, 0x94, 0x9d, 0x4b, 0xdf, 0xf7, 0xc4, 0x82, 0x35, 0xcc, 0xce, 0x75, - 0x04, 0x02, 0x2f, 0x73, 0xbf, 0x5d, 0x22, 0x73, 0x1b, 0x6b, 0x96, 0xf6, 0xbb, 0x4c, 0x08, 0xd7, - 0x22, 0xef, 0xdc, 0xb9, 0x29, 0x7d, 0x99, 0xdc, 0xe1, 0xa4, 0xa0, 0x60, 0x60, 0x38, 0x8f, 0x91, - 0x4a, 0xbb, 0xd7, 0x11, 0x6a, 0xe0, 0x24, 0xfa, 0x48, 0xb7, 0x7a, 0x1d, 0x40, 0x98, 0x11, 0x29, - 0x50, 0x29, 0x1c, 0x29, 0x90, 0x1f, 0x17, 0xf6, 0x8b, 0x15, 0xb2, 0xb0, 0xd1, 0xf6, 0xef, 0x5b, - 0xbd, 0xa6, 0x4d, 0xb5, 0xa2, 0x80, 0x32, 0x4f, 0xda, 0x55, 0x51, 0x63, 0x50, 0x10, 0xa5, 0x85, - 0x83, 0x17, 0xac, 0xc0, 0x8d, 0xca, 0x88, 0x03, 0x37, 0x72, 0xc7, 0xec, 0xec, 0x92, 0xc9, 0x90, - 0x7f, 0x7f, 0x2a, 0xc5, 0x90, 0xd1, 0xbf, 0x70, 0x7c, 0x67, 0xd2, 0xf3, 0xb3, 0x2c, 0xb8, 0x87, - 0x9f, 0x22, 0x2b, 0x61, 0x29, 0xa0, 0x20, 0x89, 0x2f, 0x7d, 0x9e, 0xcc, 0x98, 0x98, 0x43, 0x1d, - 0x27, 0x6f, 0x91, 0xb3, 0x1b, 0x18, 0x7e, 0x98, 0x0a, 0x2e, 0x79, 0x8d, 0x4c, 0xe3, 0x4a, 0x8d, - 0xad, 0x88, 0x2b, 0xe5, 0x4f, 0xa8, 0xe9, 0x22, 0x30, 0xf1, 0xdc, 0x7f, 0x57, 0x22, 0x8f, 0x5f, - 0x5d, 0x5b, 0xaf, 0xa3, 0x38, 0x88, 0x13, 0xba, 0xc0, 0x6a, 0x41, 0x7c, 0x37, 0xfd, 0xc9, 0xbb, - 0x2d, 0x83, 0xa6, 0xfa, 0x94, 0xf5, 0x1a, 0x23, 0x27, 0x4a, 0x1f, 0x96, 0x70, 0x46, 0xaa, 0x17, - 0x9e, 0xbd, 0x1a, 0xd0, 0x6f, 0xdf, 0x0d, 0xd3, 0x01, 0x69, 0x11, 0x85, 0xc5, 0x18, 0xa8, 0x74, - 0x94, 0x0e, 0x48, 0x03, 0x55, 0x02, 0x06, 0x16, 0x6f, 0xf9, 0x30, 0x40, 0x41, 0x29, 0x06, 0x65, - 0xb4, 0xcc, 0xe1, 0xa0, 0x30, 0x70, 0x60, 0xad, 0x20, 0x62, 0x3a, 0xc5, 0x91, 0x58, 0x89, 0x6a, - 0x60, 0x35, 0x59, 0x00, 0x1a, 0xc7, 0xfd, 0x9b, 0x25, 0x72, 0xfe, 0x6a, 0xbb, 0x47, 0xa7, 0x3d, - 0xda, 0x8d, 0xad, 0xce, 0xbe, 0x42, 0xaa, 0xbe, 0xd4, 0x7f, 0x45, 0x5f, 0xd5, 0xde, 0xa2, 0x14, - 0x63, 0x1e, 0x0d, 0xa7, 0xf0, 0x0a, 0x04, 0x5f, 0x0d, 0x17, 0x2a, 0xf4, 0xcf, 0xcb, 0x64, 0xf6, - 0xda, 0xf6, 0x76, 0xfd, 0xaa, 0x9f, 0x08, 0x59, 0x9a, 0xef, 0x34, 0xa9, 0x1b, 0xd6, 0xea, 0xf4, - 0x95, 0xe5, 0x01, 0xab, 0x07, 0x03, 0x6d, 0x97, 0x79, 0xa0, 0xed, 0xf2, 0x66, 0x27, 0xb9, 0x15, - 0x35, 0x92, 0x08, 0x5d, 0xfa, 0x59, 0xd6, 0xad, 0x94, 0xf7, 0x95, 0x41, 0xf2, 0x9e, 0x4e, 0xd6, - 0x44, 0xdc, 0xdc, 0xf7, 0x0f, 0xa4, 0x8e, 0xf2, 0x69, 0xa5, 0x4e, 0x30, 0x28, 0xb5, 0x7d, 0xab, - 0xef, 0xc0, 0x26, 0xff, 0x01, 0x02, 0x95, 0x0a, 0x9e, 0xe9, 0xfd, 0x24, 0xe9, 0x5e, 0xa3, 0x83, - 0xa5, 0xac, 0x2f, 0x56, 0x7b, 0x8e, 0x36, 0x87, 0x93, 0xc1, 0x2b, 0xe8, 0x85, 0xa5, 0x61, 0x31, - 0x98, 0x14, 0xdd, 0x06, 0x21, 0xba, 0xec, 0x01, 0x99, 0x28, 0xee, 0x9f, 0x2d, 0x93, 0xc9, 0x6b, - 0x74, 0xbb, 0x6a, 0x53, 0x92, 0x1b, 0x64, 0xcc, 0xa7, 0xdb, 0x5c, 0x31, 0x45, 0x54, 0x6f, 0x88, - 0xfc, 0x5c, 0x1e, 0x7f, 0x03, 0xab, 0xef, 0x00, 0x99, 0xc4, 0x7e, 0x5f, 0x55, 0x11, 0x8b, 0x2f, - 0xe6, 0xcf, 0x82, 0x62, 0x09, 0xbe, 0x9b, 0x0a, 0x10, 0x48, 0x42, 0xcc, 0xe3, 0xd2, 0xec, 0x36, - 0x50, 0x4a, 0x25, 0xc5, 0x02, 0x70, 0xb7, 0xd7, 0xea, 0x1c, 0x5d, 0xd0, 0xe5, 0x1e, 0x17, 0x09, - 0x04, 0x4d, 0xce, 0x7d, 0x83, 0x9c, 0x63, 0x27, 0x6c, 0x94, 0xdd, 0xac, 0x35, 0x93, 0xcb, 0x9c, - 0xee, 0xdf, 0x2e, 0x93, 0x33, 0x9b, 0x8d, 0xb5, 0x86, 0xed, 0xf8, 0x7a, 0x83, 0xcc, 0xf0, 0x6d, - 0x16, 0x99, 0xce, 0x6b, 0x8b, 0xfa, 0xca, 0x25, 0xbc, 0x6d, 0x94, 0x81, 0x85, 0x89, 0x47, 0x97, - 0xc1, 0xfb, 0x9d, 0x74, 0xe0, 0xcc, 0xe6, 0xdb, 0x37, 0x01, 0xe1, 0x58, 0x8c, 0x3b, 0x36, 0x17, - 0x71, 0xaa, 0x58, 0xed, 0xda, 0x5f, 0xa2, 0x2a, 0x7f, 0xdc, 0x8c, 0x03, 0xba, 0x00, 0xe8, 0xfa, - 0xf7, 0x9a, 0x92, 0x7d, 0xb5, 0x0e, 0x8f, 0x5d, 0x55, 0xa5, 0x90, 0xc2, 0x36, 0xe4, 0xed, 0x78, - 0xe1, 0x5d, 0x3f, 0x3f, 0x74, 0x71, 0x8b, 0x54, 0x55, 0x88, 0x89, 0x8c, 0x0c, 0x2a, 0x65, 0x47, - 0x06, 0xe5, 0x0b, 0x1c, 0xf7, 0x1f, 0x51, 0x1d, 0x55, 0x1d, 0xb1, 0x53, 0x4e, 0xab, 0x52, 0xd1, - 0x9a, 0xb0, 0x43, 0x1b, 0xc1, 0xb6, 0xcf, 0xe6, 0xf0, 0x1a, 0xe7, 0x75, 0xce, 0x0d, 0x75, 0x59, - 0x17, 0x34, 0x19, 0x67, 0x8b, 0x4c, 0x76, 0x23, 0xbf, 0x91, 0xb0, 0x08, 0xd7, 0x21, 0x28, 0x32, - 0xbe, 0xad, 0xf3, 0x9a, 0x20, 0x49, 0xb8, 0xbf, 0x56, 0x22, 0x64, 0x2b, 0x38, 0xa0, 0xdb, 0x87, - 0xd7, 0xd9, 0xf3, 0x47, 0x68, 0xef, 0xdd, 0x24, 0x63, 0x71, 0x97, 0x2e, 0xde, 0x42, 0x07, 0x2d, - 0xba, 0x47, 0x0d, 0x5a, 0x47, 0x4f, 0x34, 0xfe, 0x02, 0x46, 0xc7, 0xfd, 0x65, 0x42, 0xe6, 0x34, - 0x1a, 0x2a, 0xdc, 0xce, 0x45, 0x2b, 0xa4, 0xf3, 0xb1, 0x54, 0x48, 0x67, 0x95, 0x61, 0x1b, 0x51, - 0x9c, 0x09, 0xa9, 0x1c, 0x78, 0xf7, 0x85, 0x7e, 0xff, 0x5a, 0xd1, 0x0e, 0x61, 0x4b, 0xcb, 0x37, - 0xbc, 0xfb, 0x5c, 0xe1, 0x79, 0x51, 0xb2, 0x08, 0x85, 0x7c, 0xcc, 0x8f, 0x53, 0xd8, 0x1a, 0x43, - 0x83, 0xe2, 0x67, 0xfe, 0x93, 0xfe, 0xcd, 0xc4, 0x1e, 0x36, 0xc7, 0x5a, 0x0d, 0x3a, 0xc2, 0x29, - 0x37, 0x64, 0xab, 0x41, 0x27, 0xdd, 0x6a, 0xd0, 0x29, 0xd0, 0x6a, 0xd0, 0xc1, 0xc8, 0xaf, 0xc9, - 0x96, 0xbf, 0xeb, 0xf5, 0xda, 0x09, 0x0b, 0x56, 0x9a, 0xbe, 0xf2, 0xe6, 0x50, 0x4d, 0xd7, 0x78, - 0x5d, 0xde, 0xfc, 0x25, 0xa9, 0xe5, 0x09, 0x68, 0x6e, 0x17, 0x64, 0xd3, 0xce, 0x2f, 0x51, 0xab, - 0x40, 0xfc, 0x8f, 0x71, 0x41, 0xd4, 0x3c, 0x14, 0xfb, 0xd0, 0x5b, 0x27, 0xe9, 0x8d, 0x20, 0xc1, - 0x3b, 0xf5, 0x63, 0x52, 0x88, 0xd8, 0x85, 0xb9, 0x7d, 0x4b, 0xf5, 0xc7, 0xf9, 0xb0, 0x44, 0xce, - 0xd1, 0xef, 0xc4, 0x5b, 0xe4, 0x30, 0xc0, 0xe3, 0x37, 0x11, 0x90, 0xb5, 0x31, 0x2c, 0x9f, 0xf4, - 0x11, 0xe2, 0xdd, 0xfd, 0xa2, 0x3c, 0xe4, 0xcb, 0x42, 0xc9, 0xed, 0x74, 0x66, 0x0f, 0x97, 0x5a, - 0x64, 0x4a, 0x32, 0x66, 0x86, 0x7e, 0xbd, 0x6a, 0x6e, 0xb7, 0xc7, 0xaf, 0x40, 0xe9, 0xea, 0x5a, - 0x7e, 0xbb, 0xe7, 0x75, 0x12, 0x8c, 0x96, 0xd7, 0xda, 0x38, 0x6b, 0x45, 0x30, 0xe2, 0x08, 0x5b, - 0xd9, 0x27, 0x33, 0x26, 0xcf, 0x8d, 0xb0, 0xa5, 0x90, 0x9c, 0xcd, 0xe0, 0xa7, 0x11, 0x36, 0xd8, - 0x23, 0x8f, 0x0d, 0xe4, 0x8b, 0xd1, 0x35, 0x8b, 0xee, 0x7b, 0x43, 0x60, 0x9e, 0x86, 0x0b, 0xe5, - 0x86, 0xed, 0x42, 0x79, 0xbe, 0xe8, 0xd2, 0x19, 0xe0, 0x47, 0xd9, 0x35, 0xfb, 0x8f, 0x3b, 0x81, - 0xb3, 0x4d, 0x26, 0xda, 0x08, 0x91, 0xe7, 0x36, 0x2f, 0x0d, 0xb3, 0x38, 0xb5, 0xfa, 0xc0, 0xe0, - 0x31, 0x08, 0x5a, 0x78, 0xd8, 0x36, 0x76, 0x1a, 0xd3, 0x53, 0xb7, 0xa7, 0x67, 0x90, 0x12, 0x2a, - 0xae, 0xf4, 0x2d, 0x83, 0x77, 0x6f, 0xfd, 0x3e, 0xb5, 0x57, 0x63, 0xa6, 0x2c, 0x66, 0xce, 0xd0, - 0x3f, 0x2c, 0x93, 0x69, 0x6c, 0x48, 0x7a, 0x74, 0xbe, 0x80, 0x1e, 0xbe, 0x1d, 0xbf, 0x2d, 0x1d, - 0xbf, 0x69, 0xc3, 0x6a, 0xcb, 0x2c, 0x04, 0x1b, 0x17, 0x2b, 0xef, 0x9a, 0x7e, 0x71, 0xa1, 0xf4, - 0xa8, 0xca, 0x96, 0xd3, 0x1c, 0x6c, 0x5c, 0xd4, 0xed, 0xef, 0x79, 0x49, 0x73, 0x5f, 0x18, 0x5d, - 0xaa, 0xbb, 0x77, 0x10, 0x08, 0xbc, 0xcc, 0x59, 0x21, 0xf3, 0x92, 0x63, 0x6f, 0xf3, 0xa9, 0x13, - 0x0a, 0xa1, 0xba, 0x8e, 0x05, 0x76, 0x31, 0xa4, 0xf1, 0x9d, 0xcf, 0x93, 0x39, 0x9c, 0x9c, 0xb0, - 0x97, 0xc8, 0xa3, 0xfd, 0x71, 0x76, 0xb4, 0xcf, 0x42, 0x29, 0xb7, 0xad, 0x12, 0x48, 0x61, 0xba, - 0x3f, 0x49, 0xce, 0x6e, 0x85, 0x5e, 0x6b, 0xd5, 0x6b, 0x7b, 0x9d, 0xa6, 0x1f, 0x6d, 0x76, 0xf6, - 0x72, 0xcf, 0x55, 0xcd, 0xb3, 0xcf, 0x72, 0xee, 0xd9, 0x67, 0x44, 0x1c, 0xb3, 0x01, 0x11, 0x94, - 0xf2, 0x2e, 0x99, 0x0c, 0x78, 0x53, 0x82, 0x6b, 0x2f, 0xe7, 0xb9, 0x7f, 0xfa, 0xfa, 0x68, 0x04, - 0x59, 0x70, 0x00, 0x48, 0x92, 0x68, 0x2b, 0x64, 0xf9, 0x8b, 0xf2, 0xcd, 0x31, 0xf7, 0x2f, 0x94, - 0xc8, 0xfc, 0xcd, 0xd4, 0x3d, 0x28, 0x8c, 0x98, 0xf2, 0xa3, 0x0c, 0xe7, 0x57, 0x83, 0x41, 0x41, - 0x94, 0x3e, 0x70, 0x43, 0xfc, 0x2f, 0x96, 0x49, 0x95, 0x45, 0x38, 0x76, 0xbd, 0xe6, 0x28, 0x95, - 0xd2, 0x1b, 0x96, 0x52, 0x9a, 0x63, 0x06, 0xaa, 0x0e, 0x0d, 0xd2, 0x49, 0xf1, 0x26, 0x9c, 0xb8, - 0x17, 0x54, 0xc8, 0x02, 0xd4, 0x04, 0xf9, 0x15, 0x92, 0x39, 0xfb, 0x1a, 0x91, 0xbc, 0x33, 0xc4, - 0xce, 0x2d, 0x15, 0xee, 0xc3, 0x77, 0x6e, 0xa9, 0xba, 0x36, 0x40, 0x2a, 0xd5, 0x8d, 0xde, 0x33, - 0xb1, 0xfd, 0x65, 0x16, 0xae, 0xe6, 0xb5, 0x83, 0x0f, 0x7c, 0x75, 0xbf, 0xee, 0x49, 0x11, 0x7d, - 0x26, 0xa0, 0x1f, 0x33, 0x01, 0x23, 0x7e, 0xf1, 0x6b, 0x93, 0xba, 0x8a, 0x7b, 0x8d, 0x72, 0xaa, - 0x3d, 0x77, 0xce, 0x6b, 0x64, 0xbc, 0xbb, 0xef, 0xc5, 0x7e, 0x2a, 0xb2, 0x62, 0xbc, 0x8e, 0x40, - 0x4a, 0x6d, 0x4e, 0x55, 0x60, 0x10, 0xe0, 0xd8, 0xee, 0x1f, 0x53, 0x59, 0x8f, 0x57, 0x77, 0x47, - 0xc8, 0x63, 0xd7, 0x2c, 0x1e, 0x7b, 0x2e, 0xff, 0x62, 0xf1, 0x40, 0xf6, 0xaa, 0xa7, 0xd8, 0xeb, - 0xf9, 0x02, 0xb4, 0x8e, 0xe7, 0xac, 0x03, 0x32, 0xcd, 0x2e, 0x2e, 0x8b, 0x90, 0x92, 0x57, 0x2c, - 0x03, 0xea, 0xc9, 0x94, 0x01, 0x35, 0x6f, 0xa0, 0x1a, 0x66, 0xd4, 0x0b, 0x64, 0x52, 0x04, 0x3b, - 0xa4, 0x63, 0xf4, 0x04, 0x2e, 0xc8, 0x72, 0xf7, 0x57, 0x2b, 0xc4, 0xba, 0x28, 0xed, 0x7c, 0xaf, - 0x44, 0xa8, 0xd2, 0xc2, 0x2e, 0x08, 0xb4, 0x6a, 0x3d, 0xf4, 0x88, 0xa1, 0xd3, 0xaa, 0xd5, 0x6b, - 0xd3, 0xff, 0x36, 0xf7, 0x3a, 0xa1, 0x02, 0xa3, 0xf7, 0xa6, 0xc7, 0xfc, 0xa7, 0x85, 0xef, 0x67, - 0xab, 0xd3, 0xce, 0x2b, 0xb4, 0x2f, 0xcb, 0x30, 0x54, 0x2b, 0x30, 0x64, 0xaf, 0x9c, 0xdf, 0x2d, - 0x91, 0x4b, 0xfc, 0xaa, 0x70, 0xf1, 0x91, 0x14, 0x32, 0x3c, 0xeb, 0x92, 0xa8, 0x26, 0x87, 0x21, - 0x81, 0xab, 0xaf, 0x8b, 0x49, 0xbe, 0x54, 0x1f, 0xae, 0x55, 0x18, 0xb6, 0x9b, 0xee, 0xbf, 0xac, - 0xd0, 0xf5, 0x4b, 0xe7, 0x53, 0x5f, 0x9d, 0x7c, 0xcd, 0x62, 0x93, 0xa7, 0x53, 0x6c, 0x72, 0xc6, - 0x42, 0x7e, 0x30, 0xb7, 0x26, 0x13, 0x72, 0x06, 0x4f, 0x14, 0xaf, 0xf9, 0x5e, 0x94, 0xec, 0xf8, - 0x1e, 0x3b, 0x5a, 0x14, 0x8b, 0x60, 0xa8, 0xe3, 0x4a, 0x15, 0x41, 0xb3, 0x95, 0xa6, 0x06, 0xfd, - 0x0d, 0x38, 0xf7, 0x88, 0xc3, 0xce, 0x31, 0x23, 0x8f, 0x2a, 0x5d, 0x6c, 0x30, 0x81, 0x70, 0xb9, - 0x0e, 0xd9, 0xec, 0x92, 0x68, 0xd6, 0xd9, 0xea, 0x23, 0x07, 0x19, 0x4d, 0x18, 0x87, 0xd5, 0xe3, - 0x45, 0x0f, 0xab, 0x27, 0x72, 0xc2, 0x63, 0x7f, 0xae, 0x44, 0xce, 0xe2, 0x87, 0xb1, 0x43, 0x29, - 0x63, 0x27, 0x24, 0xf3, 0x38, 0x82, 0xb6, 0x9f, 0x48, 0x98, 0x58, 0x61, 0x39, 0xba, 0xb4, 0x4d, - 0x47, 0x6b, 0x6c, 0xd7, 0x6d, 0x62, 0x90, 0xa6, 0xee, 0xfe, 0x6a, 0x89, 0x4c, 0x61, 0x47, 0x4e, - 0x63, 0x1f, 0xbb, 0x6a, 0xef, 0x63, 0x6e, 0xbe, 0xd0, 0x18, 0xb0, 0x85, 0xbd, 0x4a, 0x16, 0xb0, - 0xb4, 0x1e, 0x85, 0xf7, 0x8f, 0xa4, 0x72, 0x9d, 0xef, 0x7d, 0xfd, 0xf3, 0x25, 0x2e, 0xee, 0x94, - 0x56, 0x7c, 0x0f, 0x43, 0xc1, 0xf4, 0x6f, 0x5c, 0xc8, 0x52, 0x09, 0x5c, 0x2e, 0x2e, 0xd0, 0xd8, - 0xfa, 0x37, 0x62, 0xc1, 0x52, 0x04, 0xa1, 0xbf, 0x0d, 0xf7, 0xef, 0x94, 0xc8, 0xa3, 0x26, 0xa2, - 0x71, 0x29, 0x2b, 0xcf, 0xe5, 0x59, 0x23, 0x53, 0x61, 0x17, 0x13, 0x83, 0x28, 0x0b, 0xe0, 0x79, - 0x39, 0xe3, 0xb7, 0x04, 0x9c, 0xae, 0xdc, 0x73, 0x26, 0x75, 0x09, 0x07, 0x55, 0xd3, 0x71, 0xc9, - 0x04, 0xb3, 0x44, 0x63, 0x71, 0x9d, 0x8e, 0x20, 0x37, 0x33, 0x47, 0x3f, 0x5d, 0xe4, 0xbc, 0xc4, - 0xfd, 0xcb, 0x25, 0x3e, 0xcb, 0x66, 0xd7, 0x9d, 0x6f, 0x92, 0x85, 0x03, 0x34, 0x16, 0xd6, 0xef, - 0x77, 0x71, 0x0b, 0x61, 0x07, 0x95, 0xa5, 0x22, 0x82, 0x73, 0xc0, 0x70, 0x57, 0x17, 0x45, 0xef, - 0x17, 0x6e, 0xa4, 0xc8, 0x42, 0x5f, 0x43, 0xee, 0xef, 0x09, 0x5e, 0x65, 0x5a, 0x0b, 0x5d, 0x6c, - 0xdd, 0xb0, 0xb5, 0xb6, 0x59, 0x03, 0x31, 0x57, 0x6a, 0xb1, 0xd5, 0x39, 0x18, 0x64, 0x39, 0x9e, - 0xbc, 0xf9, 0xd4, 0x54, 0x8b, 0xa8, 0xc2, 0xb2, 0x59, 0x4b, 0x67, 0xb7, 0x58, 0x57, 0x25, 0x60, - 0x60, 0x61, 0x9d, 0x6e, 0x14, 0x1e, 0x06, 0x2d, 0x16, 0x1c, 0x5d, 0xb1, 0xeb, 0xd4, 0x55, 0x09, - 0x18, 0x58, 0x68, 0xa2, 0xf5, 0x3a, 0x31, 0x17, 0xe0, 0xde, 0x8e, 0xc8, 0x1d, 0x30, 0xa5, 0x4d, - 0xb4, 0x77, 0xcc, 0x42, 0xb0, 0x71, 0xdd, 0x1f, 0x54, 0x09, 0xd1, 0x2a, 0x02, 0x7a, 0x08, 0xa7, - 0x9a, 0x1e, 0x55, 0x90, 0x78, 0x12, 0x94, 0x4a, 0xfe, 0x2d, 0x12, 0x5d, 0x79, 0x79, 0x4d, 0x54, - 0xe4, 0xbe, 0xad, 0x97, 0x25, 0x83, 0x48, 0x70, 0xae, 0x3f, 0x4b, 0xb5, 0xec, 0x7c, 0xab, 0x44, - 0xa6, 0xbd, 0x36, 0x5e, 0x1b, 0x4d, 0xd8, 0x88, 0xca, 0x45, 0x9c, 0x95, 0x46, 0x4f, 0x56, 0x74, - 0x5d, 0xde, 0x99, 0x57, 0xe4, 0xb9, 0x95, 0x51, 0x92, 0xdb, 0x1f, 0xb3, 0x0b, 0xce, 0xcb, 0x52, - 0xb5, 0xe4, 0x1f, 0x65, 0x29, 0xad, 0x5a, 0x56, 0x99, 0x68, 0x30, 0xb4, 0x4a, 0xbc, 0x8f, 0x61, - 0x44, 0x8a, 0x8f, 0x15, 0xb9, 0xc9, 0x69, 0x6d, 0x9a, 0x79, 0x37, 0xe4, 0xf1, 0xb4, 0x49, 0xc7, - 0xac, 0x8e, 0x17, 0xb9, 0x26, 0x69, 0xe8, 0x6e, 0x39, 0xf1, 0xaa, 0x09, 0x99, 0x6f, 0xd9, 0x9b, - 0x84, 0x08, 0x42, 0xba, 0x9c, 0xdf, 0x42, 0x6a, 0x77, 0xd1, 0xdb, 0x42, 0xaa, 0x00, 0xd2, 0x4d, - 0xd0, 0x11, 0x4d, 0xa1, 0xd8, 0xda, 0xec, 0xec, 0x86, 0x22, 0x0e, 0xe9, 0xa5, 0x02, 0xdf, 0xfc, - 0x28, 0xa6, 0xe2, 0x19, 0xeb, 0xe8, 0x6d, 0xe0, 0xa6, 0xa0, 0x02, 0x8a, 0x1e, 0xba, 0x89, 0xd8, - 0x1d, 0x04, 0xbc, 0xb9, 0x5a, 0x19, 0xe2, 0x3a, 0x06, 0xbb, 0xc1, 0xa0, 0x37, 0x5f, 0xf6, 0x93, - 0x8a, 0x2b, 0x4e, 0x8b, 0xea, 0xf5, 0xe2, 0x62, 0x69, 0xbc, 0xd9, 0x79, 0x27, 0xf6, 0xd9, 0x6d, - 0xd5, 0xea, 0xea, 0x33, 0xfa, 0xfa, 0x29, 0x87, 0x67, 0x26, 0xc1, 0xb1, 0x6a, 0xe2, 0x1e, 0x2c, - 0x7e, 0xcb, 0xdc, 0x3a, 0x8b, 0xa4, 0x48, 0x47, 0xed, 0x4c, 0x3c, 0x7a, 0xb2, 0x6f, 0xdb, 0xc4, - 0x20, 0x4d, 0x7d, 0x29, 0x20, 0xb3, 0xd6, 0x8a, 0x1d, 0xa1, 0xb3, 0xb3, 0x4d, 0x16, 0xd2, 0x4b, - 0x72, 0x84, 0x3e, 0xce, 0x3f, 0x1a, 0x23, 0x73, 0x36, 0x63, 0x60, 0x8c, 0xc2, 0x01, 0x1d, 0x35, - 0xfd, 0x9e, 0x2a, 0x07, 0x89, 0xe2, 0xff, 0x1b, 0xb2, 0x00, 0x34, 0x0e, 0xcb, 0xc6, 0xc2, 0xaa, - 0xbf, 0xf3, 0x4e, 0xbf, 0xf0, 0x6e, 0xa8, 0x12, 0x30, 0xb0, 0x50, 0x61, 0xdb, 0x09, 0xc3, 0x44, - 0x09, 0x6e, 0xc5, 0x33, 0xab, 0x0c, 0x0a, 0xa2, 0x14, 0x05, 0xf6, 0x5d, 0x1c, 0x50, 0xdb, 0xf6, - 0x77, 0x29, 0x81, 0x7d, 0xdd, 0x2c, 0x04, 0x1b, 0x17, 0x37, 0xa0, 0x30, 0x66, 0x4c, 0x28, 0xd4, - 0x42, 0x1d, 0x6d, 0xd3, 0xe0, 0x77, 0x72, 0x64, 0xb9, 0xf3, 0x55, 0xf2, 0xa8, 0xba, 0x42, 0x03, - 0xdc, 0x7f, 0x28, 0x5b, 0x9c, 0xb0, 0x6c, 0xbb, 0x47, 0xd7, 0xb2, 0xd1, 0x60, 0x50, 0x7d, 0x3c, - 0xc4, 0x15, 0x2a, 0x9d, 0xa4, 0x38, 0x69, 0x1f, 0xe2, 0x5e, 0xb7, 0x4a, 0x21, 0x85, 0x4d, 0xf5, - 0x89, 0x05, 0x84, 0x30, 0x55, 0x4a, 0x52, 0xe0, 0x57, 0x81, 0xd4, 0xce, 0x7c, 0x3d, 0x55, 0x0e, - 0x7d, 0x35, 0xd0, 0x75, 0xc8, 0x75, 0x0b, 0xb4, 0x60, 0xd8, 0x77, 0x10, 0x71, 0x83, 0x6a, 0x11, - 0xdc, 0xb2, 0x8b, 0x21, 0x8d, 0x8f, 0xa7, 0xe0, 0x5e, 0x44, 0x3f, 0x7a, 0x42, 0x55, 0x84, 0x5e, - 0xc4, 0xef, 0x81, 0x1b, 0xa7, 0xe0, 0x2b, 0x46, 0x19, 0x58, 0x98, 0xee, 0x07, 0xe4, 0x6c, 0x46, - 0x78, 0x32, 0x32, 0x0e, 0x65, 0x50, 0x39, 0xa6, 0x54, 0xbc, 0x0d, 0x5e, 0x1b, 0x11, 0xa3, 0x31, - 0xb0, 0x90, 0x3b, 0x99, 0xe3, 0xd4, 0x48, 0x83, 0xa5, 0xb8, 0x73, 0x43, 0x16, 0x80, 0xc6, 0x71, + 0x99, 0x31, 0x4b, 0xc0, 0xa2, 0xe8, 0xbc, 0x4b, 0xa6, 0xbb, 0x61, 0x4b, 0x35, 0x50, 0x66, 0x0d, + 0xbc, 0x70, 0x7c, 0x03, 0x75, 0x5d, 0x61, 0x75, 0x9e, 0xd2, 0x9f, 0x36, 0x0a, 0xc0, 0x24, 0xe7, + 0xb4, 0xc9, 0x3c, 0xfe, 0xa4, 0x9f, 0x5d, 0xb5, 0x50, 0x61, 0x2d, 0x5c, 0xcc, 0x6f, 0xc1, 0xa8, + 0xb4, 0x7a, 0x96, 0xb6, 0x32, 0x9f, 0x2a, 0x84, 0x34, 0x69, 0xf7, 0x03, 0x32, 0xb7, 0x92, 0x24, + 0x5e, 0x73, 0xdf, 0x6f, 0xf1, 0xef, 0xeb, 0xbc, 0x4a, 0xc6, 0x3a, 0xde, 0x81, 0x2f, 0xbe, 0xfe, + 0x53, 0x62, 0xda, 0xc7, 0x6e, 0xd2, 0xb2, 0x8f, 0x7f, 0xf0, 0xe4, 0xc2, 0x3b, 0x9d, 0xe0, 0xfd, + 0x9e, 0xe0, 0x19, 0x2c, 0x03, 0x86, 0xed, 0x5c, 0x21, 0xa4, 0xe5, 0x1f, 0x06, 0x4d, 0xbf, 0xee, + 0x25, 0xfb, 0x82, 0x1b, 0x1c, 0x51, 0x97, 0xd4, 0x14, 0x04, 0x0c, 0x2c, 0xf7, 0xa7, 0x4a, 0xa4, + 0xba, 0x72, 0x18, 0x06, 0x2d, 0xda, 0xcb, 0xd8, 0xe9, 0xd1, 0x71, 0x47, 0xfe, 0xae, 0x1f, 0xa9, + 0x22, 0xda, 0x85, 0x0a, 0x1d, 0xf7, 0x95, 0x9c, 0x71, 0xdb, 0x95, 0xd6, 0x3b, 0x49, 0x74, 0xb4, + 0xfa, 0xa8, 0x68, 0x7a, 0x3e, 0x05, 0x85, 0x74, 0x1b, 0xee, 0x3f, 0x2c, 0x91, 0xf3, 0x2b, 0x1f, + 0xf4, 0x22, 0x7f, 0x23, 0x68, 0xdb, 0x4b, 0x81, 0x0e, 0x29, 0xf6, 0x9b, 0x91, 0x9f, 0xdc, 0xd4, + 0xd3, 0xa1, 0x86, 0xd4, 0x50, 0x10, 0x30, 0xb0, 0x90, 0xd1, 0xe3, 0x7d, 0x2f, 0x62, 0x33, 0x23, + 0x66, 0x41, 0x31, 0x7a, 0x43, 0x02, 0x40, 0xe3, 0x58, 0x8c, 0x5e, 0xc9, 0x65, 0xf4, 0x7f, 0x5e, + 0x22, 0x93, 0xab, 0x41, 0xa7, 0x15, 0x74, 0xf6, 0x9c, 0xaf, 0x90, 0xa9, 0x03, 0x3f, 0xf1, 0x5a, + 0x5e, 0xe2, 0x09, 0x1e, 0x7f, 0xfe, 0xf8, 0x89, 0xba, 0xb5, 0xf3, 0x0d, 0xbf, 0x99, 0xdc, 0xa0, + 0x75, 0xf4, 0x30, 0x74, 0x19, 0x28, 0x6a, 0xce, 0x3b, 0x64, 0x22, 0xf1, 0xa2, 0x3d, 0x3f, 0x11, + 0xac, 0x7d, 0xb1, 0x08, 0x5d, 0xc0, 0x69, 0xf5, 0x3b, 0x4d, 0x5f, 0x0b, 0x81, 0x6d, 0x46, 0x04, + 0x04, 0x31, 0xb7, 0x49, 0x66, 0xd6, 0xbc, 0xae, 0xb7, 0x13, 0xb4, 0xe9, 0x1a, 0xf7, 0x63, 0xe7, + 0x73, 0xa4, 0xe2, 0xb5, 0x5a, 0xec, 0x23, 0x57, 0x57, 0xcf, 0xd3, 0x0a, 0x95, 0x95, 0x56, 0x8b, + 0xb2, 0x18, 0x51, 0x58, 0x47, 0x80, 0x18, 0xce, 0x05, 0x32, 0xd6, 0x8a, 0xc2, 0x2e, 0xed, 0x0d, + 0x62, 0x3e, 0x82, 0xdc, 0x58, 0xa3, 0xbf, 0x53, 0xa8, 0x0c, 0xc7, 0xfd, 0xd7, 0x65, 0xe2, 0xac, + 0xf9, 0xdd, 0xfd, 0x8d, 0x86, 0xf5, 0x2d, 0x9f, 0xa7, 0x93, 0x15, 0x52, 0x86, 0x0f, 0xa3, 0x58, + 0x34, 0x38, 0x83, 0x53, 0x7c, 0x43, 0x94, 0x81, 0x82, 0x3a, 0x4f, 0x91, 0xb1, 0xae, 0x66, 0xe1, + 0x19, 0xc9, 0xfe, 0x8c, 0x79, 0x19, 0x04, 0x31, 0x7a, 0xb1, 0x1f, 0xb1, 0xcf, 0x65, 0x60, 0xbc, + 0x43, 0xcb, 0x80, 0x41, 0x34, 0xe7, 0x20, 0x4f, 0x31, 0xf9, 0xd5, 0xc7, 0x39, 0x08, 0x01, 0x03, + 0xcb, 0xf9, 0x71, 0xca, 0x39, 0xec, 0x17, 0x9d, 0xc8, 0xc5, 0x71, 0x36, 0xef, 0x39, 0x8c, 0xbf, + 0x15, 0x36, 0xbd, 0x76, 0x7a, 0xf2, 0x67, 0x19, 0xa7, 0x49, 0x42, 0xa0, 0x69, 0x5a, 0x9c, 0x36, + 0x91, 0xcb, 0x69, 0x7f, 0xa3, 0x44, 0xe7, 0x91, 0x72, 0x9a, 0x1f, 0x9d, 0xc2, 0xf6, 0x30, 0xdc, + 0x22, 0xf8, 0x7d, 0xec, 0x5a, 0x78, 0xd0, 0xa5, 0xdb, 0x68, 0x27, 0x59, 0x0b, 0xe9, 0x6a, 0x60, + 0x5b, 0xc6, 0xe7, 0xc9, 0x58, 0x82, 0x4d, 0xf1, 0x6e, 0x3d, 0x27, 0x3f, 0x0b, 0x36, 0x40, 0x39, + 0xe5, 0x91, 0xfe, 0x1a, 0xac, 0x0b, 0xac, 0x8e, 0xf3, 0x26, 0x99, 0x88, 0x13, 0x2f, 0xe9, 0xc5, + 0xa2, 0xa3, 0x4f, 0xcb, 0x8e, 0x36, 0x58, 0x29, 0xad, 0x3f, 0xaf, 0xaa, 0xf1, 0x22, 0x10, 0x15, + 0x9c, 0x17, 0xc8, 0xe4, 0x81, 0x1f, 0xc7, 0xde, 0x9e, 0x2f, 0x18, 0x62, 0x5e, 0xd4, 0x9d, 0xbc, + 0xc1, 0x8b, 0x41, 0xc2, 0x9d, 0xcf, 0x92, 0x71, 0x3f, 0x8a, 0xc2, 0x48, 0x70, 0xc4, 0xac, 0x40, + 0x1c, 0x5f, 0xc7, 0x42, 0xe0, 0x30, 0xf7, 0xb7, 0x4b, 0x64, 0x5e, 0xf5, 0x95, 0xb7, 0x35, 0xc2, + 0xa5, 0xde, 0x22, 0xa4, 0x29, 0x07, 0x16, 0xb3, 0x05, 0x36, 0x7d, 0xe5, 0xe5, 0xe3, 0x69, 0xf7, + 0x4f, 0xa4, 0x6e, 0x43, 0x15, 0xc5, 0x60, 0xd0, 0x75, 0xbf, 0x5f, 0x22, 0x67, 0x53, 0x63, 0xda, + 0x0a, 0xe2, 0xc4, 0xf9, 0xb3, 0x7d, 0xe3, 0xba, 0x74, 0x4c, 0xdb, 0x86, 0xf6, 0xb4, 0x8c, 0xd5, + 0xd9, 0xf0, 0x14, 0xa3, 0xc8, 0x12, 0x63, 0x70, 0x40, 0xc6, 0x83, 0xc4, 0x3f, 0x90, 0xe3, 0xba, + 0x58, 0x70, 0x5c, 0xbc, 0x83, 0xfa, 0xf3, 0x6c, 0x22, 0x0d, 0xe0, 0xa4, 0xdc, 0xff, 0x45, 0xf7, + 0x2c, 0x3a, 0xca, 0xdd, 0x60, 0xef, 0x86, 0xd7, 0x1d, 0xe1, 0x87, 0x69, 0x50, 0x99, 0x87, 0x54, + 0x79, 0xd7, 0x2f, 0xe7, 0x75, 0x5d, 0x74, 0x68, 0xb9, 0x46, 0xeb, 0xf0, 0x1d, 0x50, 0xc9, 0x25, + 0x2c, 0x02, 0x46, 0x6c, 0xe9, 0x75, 0x52, 0x55, 0x08, 0xce, 0x02, 0xa9, 0xdc, 0xf5, 0xb9, 0x7a, + 0x54, 0x05, 0xfc, 0xd7, 0x39, 0x47, 0xc6, 0x0f, 0xbd, 0x76, 0x4f, 0xac, 0x56, 0xe0, 0x3f, 0x3e, + 0x5f, 0x7e, 0xa3, 0xe4, 0xfe, 0x7a, 0x89, 0x9c, 0x53, 0x8d, 0x5c, 0xf7, 0x8f, 0x1a, 0x7e, 0x9b, + 0x76, 0x39, 0x8c, 0x9c, 0x9f, 0xa6, 0x80, 0x76, 0x86, 0x1c, 0x12, 0xb3, 0x71, 0x12, 0x09, 0xf6, + 0x19, 0xd1, 0xf1, 0x73, 0x59, 0x50, 0xc8, 0x6c, 0xcd, 0x79, 0x9c, 0x8f, 0x85, 0x2f, 0xde, 0x69, + 0x41, 0xa0, 0x42, 0x3b, 0xca, 0x06, 0x86, 0xdd, 0x9f, 0x55, 0xdd, 0x3f, 0x0d, 0xce, 0xdb, 0xb2, + 0x39, 0xef, 0x73, 0x05, 0x3f, 0xdf, 0x00, 0x9e, 0xfb, 0x1f, 0x54, 0x45, 0x51, 0x38, 0x96, 0x38, + 0x7e, 0x48, 0xa6, 0x7f, 0xb8, 0xe1, 0xd2, 0xcf, 0xb2, 0x1d, 0xe2, 0x7e, 0x3a, 0x60, 0xb8, 0xbf, + 0x55, 0x65, 0x4b, 0x2c, 0xf1, 0x02, 0x6a, 0xbf, 0xe0, 0x6e, 0x6b, 0xa8, 0xa3, 0x33, 0xa6, 0x3a, + 0x2a, 0x54, 0x4f, 0x2a, 0x56, 0x83, 0x03, 0x94, 0xbf, 0x65, 0x5b, 0xac, 0x6e, 0x62, 0x21, 0x70, + 0x98, 0xf3, 0x2c, 0x99, 0xa4, 0x36, 0xdf, 0x81, 0xd7, 0x69, 0x51, 0x31, 0x8d, 0xfb, 0xff, 0x34, + 0x8a, 0xe8, 0x35, 0x5e, 0x04, 0x12, 0xe6, 0x7c, 0x86, 0x8c, 0x51, 0x65, 0x25, 0xa6, 0x12, 0x1a, + 0x71, 0xa6, 0xb0, 0xa5, 0x15, 0xfa, 0x1b, 0x58, 0x29, 0xee, 0xeb, 0xf7, 0xc2, 0xe8, 0x2e, 0xd5, + 0xbe, 0x6a, 0x41, 0xc4, 0x36, 0x69, 0x63, 0x5f, 0xbf, 0xa3, 0x20, 0x60, 0x60, 0x39, 0x75, 0x32, + 0xde, 0x0d, 0xa3, 0x24, 0xa6, 0x7b, 0x2e, 0xce, 0xcd, 0x8b, 0xb9, 0xac, 0xc0, 0xc7, 0x5d, 0xa7, + 0x75, 0xf4, 0x50, 0xf0, 0x17, 0x9d, 0x1f, 0x46, 0xc8, 0x59, 0x23, 0x15, 0xbf, 0x73, 0xb8, 0x38, + 0xc9, 0xe8, 0x3d, 0x73, 0x3c, 0xbd, 0xf5, 0xce, 0xe1, 0x6d, 0x2f, 0xd2, 0x4b, 0x82, 0xfe, 0x06, + 0xac, 0xed, 0x34, 0x49, 0x55, 0x5a, 0xb0, 0xf1, 0xe2, 0x54, 0x11, 0x6e, 0x01, 0x81, 0x0e, 0xfe, + 0xfb, 0xbd, 0x20, 0xf2, 0x0f, 0xa8, 0xa4, 0x8c, 0xb5, 0x72, 0x2b, 0xa1, 0x31, 0x68, 0xba, 0xb4, + 0x91, 0x19, 0xae, 0x0b, 0xdc, 0x08, 0xa9, 0x19, 0x1b, 0x2f, 0x56, 0x59, 0x97, 0x73, 0x2c, 0xa5, + 0xdb, 0xba, 0xc6, 0xea, 0x39, 0x41, 0x7e, 0xc6, 0x28, 0x8c, 0xc1, 0x22, 0x4a, 0xad, 0xb1, 0xd9, + 0x76, 0x70, 0x48, 0x6d, 0xdd, 0x38, 0xae, 0x47, 0xe1, 0x8e, 0xbf, 0x48, 0xd8, 0x68, 0x3e, 0x9b, + 0x67, 0x35, 0x50, 0xd4, 0xd5, 0x33, 0x94, 0xf6, 0xec, 0x96, 0x59, 0x1b, 0x6c, 0x62, 0x54, 0x2d, + 0x9b, 0x43, 0xc5, 0x23, 0xd0, 0xe4, 0xa7, 0x8b, 0x93, 0x77, 0x28, 0xf9, 0x39, 0xb0, 0xaa, 0x43, + 0x8a, 0x9c, 0xb3, 0x4d, 0xaa, 0xed, 0x60, 0xd7, 0x6f, 0x1e, 0x35, 0xa9, 0xaa, 0x38, 0xc3, 0x68, + 0xe7, 0xac, 0x9f, 0x2d, 0x89, 0xce, 0x95, 0x3d, 0xf5, 0x13, 0x34, 0x21, 0xe7, 0x36, 0x79, 0x24, + 0xf1, 0xa3, 0x83, 0xa0, 0xe3, 0xe1, 0x0e, 0x2c, 0x34, 0x11, 0x66, 0x9a, 0xcd, 0x32, 0xae, 0x7d, + 0x42, 0x4c, 0xec, 0x23, 0xdb, 0x99, 0x58, 0x30, 0xa0, 0xb6, 0x73, 0x8b, 0xcc, 0xb3, 0xf5, 0x54, + 0xef, 0xb5, 0xdb, 0xf5, 0xb0, 0x1d, 0x34, 0x8f, 0x16, 0xe7, 0x18, 0xc1, 0x67, 0xa5, 0xc1, 0xb5, + 0x69, 0x83, 0x51, 0x49, 0xd7, 0xbf, 0x20, 0x5d, 0x1b, 0xad, 0x5d, 0xaa, 0xa2, 0xf6, 0x22, 0xaa, + 0xc1, 0x23, 0xef, 0xfb, 0xf7, 0x93, 0xc5, 0xf9, 0x22, 0x46, 0x47, 0xc3, 0xae, 0xc4, 0xad, 0xdd, + 0x54, 0x21, 0xa4, 0x49, 0xa3, 0xa8, 0x88, 0x13, 0x3a, 0xfb, 0x8b, 0x0b, 0x4c, 0xcb, 0x54, 0xeb, + 0xab, 0x81, 0x85, 0xc0, 0x61, 0xcc, 0x86, 0xc3, 0x7f, 0x6e, 0xa1, 0x20, 0x3d, 0xc3, 0x10, 0xb5, + 0x0d, 0x27, 0x01, 0xa0, 0x71, 0x70, 0xf7, 0x49, 0xa8, 0x95, 0xee, 0x30, 0x54, 0xb5, 0xd4, 0xb6, + 0xb7, 0xbf, 0x0a, 0x58, 0xee, 0xee, 0x90, 0x39, 0xb5, 0xac, 0xd9, 0xec, 0x38, 0x4f, 0x92, 0x71, + 0x94, 0x5c, 0xd2, 0x14, 0xa9, 0x62, 0x17, 0x50, 0xa0, 0xd1, 0x25, 0xce, 0xca, 0x59, 0x17, 0x82, + 0x0f, 0xfc, 0xd5, 0x23, 0x3a, 0x6a, 0x26, 0xd6, 0x2a, 0x46, 0x17, 0x24, 0x00, 0x34, 0x8e, 0xfb, + 0x7f, 0xf8, 0x0e, 0xa7, 0x65, 0x47, 0x01, 0xb9, 0x49, 0xb5, 0xee, 0xfd, 0x30, 0x4e, 0x10, 0x9b, + 0xb5, 0x31, 0xae, 0xb7, 0xb4, 0x6b, 0xa2, 0x1c, 0x14, 0x86, 0xf3, 0x05, 0x32, 0xdb, 0x34, 0x1b, + 0x10, 0x6e, 0x9c, 0xf3, 0xa2, 0x8a, 0xdd, 0x3a, 0xd8, 0xb8, 0xce, 0x1b, 0x64, 0x8a, 0xf9, 0xa0, + 0x9a, 0x61, 0x5b, 0x28, 0xbf, 0x72, 0x9b, 0x99, 0xaa, 0x8b, 0xf2, 0x8f, 0x8d, 0xff, 0x41, 0x61, + 0xa3, 0x09, 0x81, 0x5d, 0xd8, 0xac, 0x0b, 0x71, 0xab, 0x4c, 0x88, 0x6b, 0xac, 0x14, 0x04, 0xd4, + 0xfd, 0xe5, 0xb2, 0x31, 0xcb, 0xa8, 0xc1, 0xf9, 0xce, 0x8f, 0x91, 0xc9, 0x7b, 0x1e, 0xd5, 0x40, + 0x3b, 0x7b, 0x62, 0x3b, 0x7c, 0xa5, 0xa0, 0xec, 0x65, 0xd5, 0xef, 0xf0, 0xaa, 0x7c, 0x9f, 0x10, + 0x3f, 0x40, 0x12, 0x44, 0xda, 0x51, 0xaf, 0xd3, 0x41, 0xda, 0xe5, 0xe1, 0x69, 0x03, 0xaf, 0xca, + 0x69, 0x8b, 0x1f, 0x20, 0x09, 0x3a, 0xbb, 0x84, 0xc8, 0xd5, 0xe7, 0xb7, 0x84, 0xef, 0xe7, 0x47, + 0x86, 0x21, 0xbf, 0xad, 0x6a, 0xaf, 0xce, 0xe1, 0xce, 0xa4, 0x7f, 0x83, 0x41, 0xd9, 0xed, 0x31, + 0xad, 0xa2, 0xbf, 0x5b, 0x54, 0xa2, 0x52, 0xe6, 0xf6, 0x22, 0x8a, 0xb3, 0x92, 0x88, 0xa9, 0x7b, + 0xb1, 0xa0, 0x76, 0xb4, 0x1d, 0x1c, 0xf8, 0xe6, 0x6a, 0x11, 0x54, 0x40, 0x13, 0x74, 0xbf, 0x5b, + 0x21, 0x8b, 0x83, 0xfa, 0x8b, 0x3c, 0xe9, 0xdf, 0x0f, 0xa8, 0x69, 0xd1, 0xe2, 0x9c, 0x6b, 0xf0, + 0xe4, 0xba, 0x28, 0x07, 0x85, 0x81, 0xcc, 0x11, 0x07, 0x7b, 0x1d, 0xaf, 0x2d, 0xf8, 0x57, 0x31, + 0x47, 0x83, 0x95, 0x82, 0x80, 0x22, 0x1e, 0x95, 0xba, 0xb1, 0xf0, 0x3d, 0x1a, 0x4c, 0x04, 0xac, + 0x14, 0x04, 0xd4, 0xb4, 0xe5, 0xc6, 0x72, 0x6c, 0x39, 0x6b, 0x8e, 0xc6, 0x1f, 0xf0, 0x1c, 0xd1, + 0x5d, 0x87, 0xa0, 0x7f, 0x2e, 0xde, 0x67, 0xe4, 0x27, 0x86, 0x27, 0xaf, 0xb4, 0x92, 0x0d, 0x45, + 0x06, 0x0c, 0x92, 0xce, 0x6b, 0x64, 0x5a, 0xad, 0x50, 0x6a, 0xca, 0x4f, 0xb2, 0xd1, 0x9e, 0x15, + 0x95, 0xa6, 0xb5, 0xb8, 0xaa, 0x81, 0x89, 0xe7, 0x7e, 0x23, 0xcd, 0x32, 0x62, 0x61, 0x18, 0x33, + 0x5c, 0x2a, 0x3a, 0xc3, 0xe5, 0xe3, 0x67, 0xd8, 0xfd, 0x4f, 0x15, 0x34, 0x84, 0x8d, 0xc6, 0x7a, + 0x71, 0x01, 0xa1, 0xf6, 0x36, 0x4a, 0x78, 0xda, 0x31, 0xb1, 0x2c, 0x5f, 0x1a, 0x66, 0xdd, 0x98, + 0xfb, 0x01, 0x2e, 0x07, 0x4e, 0xc9, 0xd9, 0xa7, 0x3b, 0xb4, 0x17, 0x33, 0xb3, 0xd0, 0x17, 0xcb, + 0x71, 0x38, 0xb2, 0x5a, 0xa5, 0xa6, 0x64, 0x8c, 0x0d, 0x97, 0xb7, 0xa2, 0x89, 0xe3, 0xf6, 0x84, + 0xda, 0x81, 0x74, 0x79, 0xab, 0xee, 0xa0, 0x0a, 0x71, 0x04, 0x1c, 0x46, 0x65, 0xe9, 0x0c, 0xd5, + 0xb0, 0x90, 0x55, 0xd6, 0x50, 0x01, 0x62, 0xcc, 0x37, 0xae, 0x35, 0x25, 0x30, 0x60, 0x60, 0x61, + 0x6a, 0x45, 0x79, 0xe2, 0x18, 0x45, 0x99, 0x7e, 0x21, 0xf6, 0x8f, 0xe2, 0x0a, 0xf5, 0x85, 0x36, + 0x79, 0x31, 0x48, 0x78, 0x9a, 0x89, 0xa6, 0x0a, 0x32, 0xd1, 0x05, 0x32, 0x57, 0xf3, 0xfc, 0x83, + 0xb0, 0xb3, 0xde, 0x69, 0x75, 0xc3, 0x80, 0x76, 0x6c, 0x91, 0x8c, 0xb1, 0x2d, 0x85, 0xaf, 0xf8, + 0x31, 0xa4, 0x00, 0x63, 0xa8, 0xec, 0xba, 0xff, 0x97, 0xee, 0x6b, 0x35, 0x6a, 0x6c, 0x26, 0xfe, + 0xad, 0x2e, 0xf3, 0x25, 0x38, 0x1b, 0xc4, 0xd9, 0x8b, 0xbc, 0xa6, 0x5f, 0xf7, 0xa3, 0x20, 0x6c, + 0xd1, 0x1d, 0x3f, 0xec, 0x30, 0x4f, 0x31, 0xee, 0x91, 0xe8, 0x1a, 0x74, 0xae, 0xf6, 0x41, 0x21, + 0xa3, 0x86, 0xd3, 0x22, 0xb3, 0xdd, 0xc8, 0xb7, 0x9c, 0x1f, 0xa5, 0x7c, 0xfd, 0xbc, 0x6e, 0x56, + 0xe1, 0xea, 0xa3, 0x55, 0x04, 0x36, 0x51, 0xe7, 0x2d, 0xb2, 0x10, 0x46, 0xdd, 0x7d, 0xaf, 0x53, + 0xf3, 0xbb, 0x7e, 0xa7, 0x85, 0x3a, 0xb3, 0xf0, 0x70, 0x9d, 0xa3, 0x75, 0x17, 0x6e, 0xa5, 0x60, + 0xd0, 0x87, 0xed, 0xfe, 0xe5, 0x32, 0x39, 0x5f, 0x0b, 0xef, 0x75, 0xee, 0x79, 0x51, 0x6b, 0xa5, + 0xbe, 0xc9, 0x15, 0x61, 0xe6, 0x31, 0x94, 0x9e, 0xca, 0xd2, 0x40, 0x4f, 0xe5, 0xd7, 0xc8, 0xd4, + 0x6e, 0xe0, 0xb7, 0x5b, 0xe8, 0x52, 0xe4, 0xc3, 0xbb, 0x5c, 0xc4, 0x3d, 0xb1, 0x81, 0x75, 0xa4, + 0x89, 0xcf, 0x1d, 0xa5, 0x1b, 0x82, 0x0c, 0x28, 0x82, 0x4e, 0x8f, 0x2c, 0x48, 0x4d, 0x5f, 0x42, + 0xc5, 0xea, 0x78, 0xa5, 0x98, 0x21, 0x61, 0x37, 0xc3, 0xe6, 0x03, 0x52, 0x04, 0xa1, 0xaf, 0x09, + 0x37, 0x26, 0x8f, 0xf6, 0x4d, 0x87, 0xb0, 0x86, 0xbf, 0x22, 0xcd, 0x50, 0x7e, 0x6e, 0x90, 0xd3, + 0x8d, 0xcc, 0x49, 0x1d, 0x60, 0x92, 0xde, 0x22, 0xe7, 0xd6, 0x0f, 0xba, 0xc9, 0x11, 0x35, 0xe8, + 0xac, 0x16, 0x5f, 0x27, 0x13, 0x07, 0x7e, 0x2b, 0xe8, 0x1d, 0x88, 0x8f, 0xf0, 0xa4, 0x14, 0x7b, + 0x37, 0x58, 0x29, 0xd5, 0x69, 0x66, 0xf1, 0x88, 0x8d, 0x2e, 0x17, 0x5e, 0x00, 0x02, 0xdd, 0xfd, + 0xb5, 0x12, 0x99, 0x97, 0xec, 0xbf, 0xd2, 0x6a, 0xd1, 0x51, 0xc6, 0xce, 0x12, 0x29, 0x07, 0x5d, + 0x41, 0x88, 0x08, 0x42, 0x65, 0xaa, 0xe2, 0xd0, 0x52, 0xaa, 0x6f, 0x54, 0xb9, 0x17, 0x5d, 0x7f, + 0xca, 0x21, 0xbd, 0xf2, 0xcc, 0x56, 0xd8, 0x96, 0x34, 0x40, 0x93, 0x93, 0x7a, 0x20, 0x13, 0xac, + 0x15, 0xdb, 0xa7, 0x7b, 0x4d, 0x94, 0x83, 0xc2, 0x70, 0x7f, 0xae, 0x44, 0x66, 0x64, 0xcf, 0x0b, + 0x2a, 0x9a, 0xc8, 0xa8, 0x5a, 0xc9, 0xd4, 0x8c, 0x8a, 0x8a, 0x22, 0x83, 0x58, 0xfa, 0x61, 0x65, + 0x18, 0xfd, 0xd0, 0xfd, 0x2e, 0xd5, 0xfb, 0x64, 0x77, 0x1a, 0xbd, 0x9d, 0xd8, 0x4f, 0x9c, 0xaf, + 0x93, 0xaa, 0xc7, 0xa7, 0xd4, 0x97, 0xac, 0x70, 0x31, 0xcf, 0x4a, 0xb6, 0xbe, 0x84, 0xde, 0x9c, + 0x57, 0x24, 0x1d, 0xd0, 0x24, 0x9d, 0x43, 0x72, 0xa6, 0x13, 0x26, 0x4c, 0x26, 0x2b, 0x78, 0x31, + 0x17, 0x63, 0xba, 0x9d, 0xc7, 0x44, 0x3b, 0x67, 0x6e, 0xa6, 0xe9, 0x41, 0x7f, 0x13, 0xd4, 0xf6, + 0x12, 0x9e, 0x84, 0x0a, 0x6b, 0xeb, 0x42, 0xb1, 0xb6, 0x06, 0x3b, 0x12, 0xdc, 0xdf, 0x28, 0x91, + 0xaa, 0x44, 0x1b, 0xa5, 0x93, 0xf9, 0x0e, 0x99, 0x8c, 0xd9, 0xa7, 0x91, 0xd3, 0xf4, 0x52, 0xb1, + 0xae, 0xf3, 0xef, 0xa9, 0x37, 0x20, 0xfe, 0x3b, 0x06, 0x49, 0x8d, 0xf9, 0xf5, 0xd4, 0x00, 0x1e, + 0x3e, 0xbf, 0x9e, 0xea, 0xda, 0x00, 0xa9, 0xf2, 0xf7, 0x4b, 0x64, 0x82, 0x3b, 0x68, 0x8a, 0x79, + 0xb9, 0x0c, 0xe7, 0xac, 0xa6, 0x78, 0x1b, 0x0b, 0x85, 0xaf, 0x96, 0xce, 0x74, 0x95, 0xfd, 0xb3, + 0x11, 0x85, 0x07, 0x42, 0x18, 0x5f, 0x28, 0xe2, 0x20, 0xe2, 0xe2, 0x8c, 0xcb, 0x88, 0xdb, 0x92, + 0x00, 0x68, 0x5a, 0xee, 0xaf, 0x57, 0x70, 0xd5, 0x6b, 0x54, 0x6b, 0x6b, 0x29, 0x9d, 0xc6, 0xd6, + 0x52, 0x1e, 0xf9, 0xd6, 0xe2, 0xbc, 0x4f, 0xe6, 0x9b, 0x86, 0x93, 0x5b, 0x6f, 0x68, 0x57, 0x0a, + 0xfa, 0x6f, 0x0d, 0xcf, 0x38, 0x77, 0x48, 0xac, 0xd9, 0xe4, 0x20, 0x4d, 0xdf, 0xf1, 0xc9, 0x0c, + 0x3f, 0xa1, 0x13, 0xed, 0x8d, 0xe5, 0xf2, 0x2c, 0xf7, 0x7d, 0xf0, 0x1a, 0xaa, 0x31, 0x16, 0xb1, + 0xd0, 0x30, 0x08, 0x81, 0x45, 0xd6, 0xfd, 0xab, 0xe3, 0x64, 0x7c, 0xfd, 0x90, 0xea, 0x13, 0x23, + 0x5c, 0xe5, 0x07, 0x64, 0x2e, 0xe8, 0x1c, 0x86, 0xed, 0x43, 0xbf, 0xc5, 0xe1, 0x27, 0xdb, 0xa7, + 0x1e, 0x11, 0x8d, 0xcc, 0x6d, 0x5a, 0xc4, 0x20, 0x45, 0x7c, 0x14, 0x36, 0xdd, 0xdb, 0xd4, 0x9c, + 0x64, 0x1c, 0x21, 0x0c, 0xba, 0x1c, 0x47, 0x25, 0x9b, 0x50, 0xb1, 0x72, 0xb4, 0xe5, 0xc9, 0x7d, + 0xa4, 0x82, 0x90, 0x73, 0x97, 0xcc, 0xed, 0x06, 0x11, 0xd5, 0xfa, 0xa9, 0x51, 0x46, 0x35, 0xf1, + 0x83, 0xee, 0x49, 0x8c, 0x39, 0x35, 0x25, 0x1b, 0x16, 0x29, 0x48, 0x91, 0xa6, 0x86, 0xca, 0x2c, + 0xda, 0x12, 0xba, 0xad, 0xc9, 0xe1, 0xdb, 0x52, 0xfe, 0x9c, 0x2d, 0x93, 0x12, 0xd8, 0x84, 0x51, + 0x18, 0x35, 0x99, 0xf1, 0x31, 0xc5, 0xb6, 0x74, 0x25, 0x8c, 0xb8, 0xd5, 0xc1, 0x61, 0x28, 0xd3, + 0xd8, 0x81, 0x6c, 0xd5, 0x96, 0x69, 0xfa, 0xd8, 0xd5, 0xfd, 0x0e, 0x6e, 0x40, 0x38, 0x8b, 0xa7, + 0x21, 0xbb, 0xaf, 0xd9, 0xb2, 0xfb, 0xb3, 0x05, 0x3e, 0xee, 0x00, 0xb9, 0xfd, 0x1e, 0x99, 0x36, + 0xbe, 0x3d, 0x3a, 0xeb, 0x9a, 0xf2, 0xec, 0x50, 0x08, 0x70, 0xa5, 0x40, 0xa8, 0x43, 0x45, 0xd0, + 0x38, 0x38, 0x31, 0xa8, 0x4e, 0xa5, 0x43, 0x0c, 0x50, 0xd9, 0x02, 0x06, 0x71, 0x5f, 0x21, 0x64, + 0xfd, 0xbe, 0xdf, 0x5c, 0x69, 0xb2, 0x93, 0x6d, 0xe3, 0xec, 0xa2, 0x34, 0xf8, 0xec, 0xc2, 0x7d, + 0x97, 0x6e, 0x86, 0xf7, 0x71, 0x67, 0x97, 0xa6, 0x12, 0x5d, 0x22, 0x3e, 0x2b, 0x60, 0xbd, 0x9a, + 0xd2, 0x4c, 0xca, 0xd1, 0x40, 0x40, 0xd9, 0xb9, 0xf4, 0x7d, 0x4f, 0x2c, 0x58, 0xc3, 0xec, 0x5c, + 0xc7, 0x42, 0xe0, 0x30, 0xf7, 0xdb, 0x25, 0x32, 0xb7, 0xb1, 0x66, 0x69, 0xbf, 0xcb, 0x84, 0x70, + 0x2d, 0xf2, 0xce, 0x9d, 0x9b, 0xd2, 0x97, 0xc9, 0x1d, 0x4e, 0xaa, 0x14, 0x0c, 0x0c, 0xe7, 0x31, + 0x52, 0x69, 0xf7, 0x3a, 0x42, 0x0d, 0x9c, 0x44, 0x1f, 0xe9, 0x56, 0xaf, 0x03, 0x58, 0x66, 0x44, + 0x0a, 0x54, 0x0a, 0x47, 0x0a, 0xe4, 0xc7, 0x85, 0xfd, 0x42, 0x85, 0x2c, 0x6c, 0xb4, 0xfd, 0xfb, + 0x56, 0xaf, 0x69, 0x53, 0xad, 0x28, 0xa0, 0xcc, 0x93, 0x76, 0x55, 0xd4, 0x58, 0x29, 0x08, 0x68, + 0xe1, 0xe0, 0x05, 0x2b, 0x70, 0xa3, 0x32, 0xe2, 0xc0, 0x8d, 0xdc, 0x31, 0x3b, 0xbb, 0x64, 0x32, + 0xe4, 0xdf, 0x9f, 0x4a, 0x31, 0x64, 0xf4, 0x2f, 0x1c, 0xdf, 0x99, 0xf4, 0xfc, 0x2c, 0x0b, 0xee, + 0xe1, 0xa7, 0xc8, 0x4a, 0x58, 0x8a, 0x52, 0x90, 0xc4, 0x97, 0x3e, 0x4f, 0x66, 0x4c, 0xcc, 0xa1, + 0x8e, 0x93, 0xb7, 0xc8, 0xd9, 0x0d, 0x0c, 0x3f, 0x4c, 0x05, 0x97, 0xbc, 0x46, 0xa6, 0x71, 0xa5, + 0xc6, 0x56, 0xc4, 0x95, 0xf2, 0x27, 0xd4, 0x34, 0x08, 0x4c, 0x3c, 0xf7, 0xdf, 0x97, 0xc8, 0xe3, + 0x57, 0xd7, 0xd6, 0xeb, 0x28, 0x0e, 0xe2, 0x84, 0x2e, 0xb0, 0x5a, 0x10, 0xdf, 0x4d, 0x7f, 0xf2, + 0x6e, 0xcb, 0xa0, 0xa9, 0x3e, 0x65, 0xbd, 0xc6, 0xc8, 0x09, 0xe8, 0xc3, 0x12, 0xce, 0x48, 0xf5, + 0xc2, 0xb3, 0x57, 0x03, 0xfa, 0xed, 0xbb, 0x61, 0x3a, 0x20, 0x2d, 0xa2, 0x65, 0x31, 0x06, 0x2a, + 0x1d, 0xa5, 0x03, 0xd2, 0x40, 0x41, 0xc0, 0xc0, 0xe2, 0x2d, 0x1f, 0x06, 0x28, 0x28, 0xc5, 0xa0, + 0x8c, 0x96, 0x79, 0x39, 0x28, 0x0c, 0x1c, 0x58, 0x2b, 0x88, 0x98, 0x4e, 0x71, 0x24, 0x56, 0xa2, + 0x1a, 0x58, 0x4d, 0x02, 0x40, 0xe3, 0xb8, 0x7f, 0xab, 0x44, 0xce, 0x5f, 0x6d, 0xf7, 0xe8, 0xb4, + 0x47, 0xbb, 0xb1, 0xd5, 0xd9, 0x57, 0x48, 0xd5, 0x97, 0xfa, 0xaf, 0xe8, 0xab, 0xda, 0x5b, 0x94, + 0x62, 0xcc, 0xa3, 0xe1, 0x14, 0x5e, 0x81, 0xe0, 0xab, 0xe1, 0x42, 0x85, 0xfe, 0x45, 0x99, 0xcc, + 0x5e, 0xdb, 0xde, 0xae, 0x5f, 0xf5, 0x13, 0x21, 0x4b, 0xf3, 0x9d, 0x26, 0x75, 0xc3, 0x5a, 0x9d, + 0xbe, 0xb2, 0x3c, 0x60, 0xf5, 0x60, 0xa0, 0xed, 0x32, 0x0f, 0xb4, 0x5d, 0xde, 0xec, 0x24, 0xb7, + 0xa2, 0x46, 0x12, 0xa1, 0x4b, 0x3f, 0xcb, 0xba, 0x95, 0xf2, 0xbe, 0x32, 0x48, 0xde, 0xd3, 0xc9, + 0x9a, 0x88, 0x9b, 0xfb, 0xfe, 0x81, 0xd4, 0x51, 0x3e, 0xad, 0xd4, 0x09, 0x56, 0x4a, 0x6d, 0xdf, + 0xea, 0x3b, 0xb0, 0xc9, 0x7f, 0x80, 0x40, 0xa5, 0x82, 0x67, 0x7a, 0x3f, 0x49, 0xba, 0xd7, 0xe8, + 0x60, 0x29, 0xeb, 0x8b, 0xd5, 0x9e, 0xa3, 0xcd, 0xe1, 0x64, 0xf0, 0x0a, 0x7a, 0x61, 0xe9, 0xb2, + 0x18, 0x4c, 0x8a, 0x6e, 0x83, 0x10, 0x0d, 0x7b, 0x40, 0x26, 0x8a, 0xfb, 0xe7, 0xcb, 0x64, 0xf2, + 0x1a, 0xdd, 0xae, 0xda, 0x94, 0xe4, 0x06, 0x19, 0xf3, 0xe9, 0x36, 0x57, 0x4c, 0x11, 0xd5, 0x1b, + 0x22, 0x3f, 0x97, 0xc7, 0xdf, 0xc0, 0xea, 0x3b, 0x40, 0x26, 0xb1, 0xdf, 0x57, 0x55, 0xc4, 0xe2, + 0x8b, 0xf9, 0xb3, 0xa0, 0x58, 0x82, 0xef, 0xa6, 0xa2, 0x08, 0x24, 0x21, 0xe6, 0x71, 0x69, 0x76, + 0x1b, 0x28, 0xa5, 0x92, 0x62, 0x01, 0xb8, 0xdb, 0x6b, 0x75, 0x8e, 0x2e, 0xe8, 0x72, 0x8f, 0x8b, + 0x2c, 0x04, 0x4d, 0xce, 0x7d, 0x83, 0x9c, 0x63, 0x27, 0x6c, 0x94, 0xdd, 0xac, 0x35, 0x93, 0xcb, + 0x9c, 0xee, 0xdf, 0x29, 0x93, 0x33, 0x9b, 0x8d, 0xb5, 0x86, 0xed, 0xf8, 0x7a, 0x83, 0xcc, 0xf0, + 0x6d, 0x16, 0x99, 0xce, 0x6b, 0x8b, 0xfa, 0xca, 0x25, 0xbc, 0x6d, 0xc0, 0xc0, 0xc2, 0xc4, 0xa3, + 0xcb, 0xe0, 0xfd, 0x4e, 0x3a, 0x70, 0x66, 0xf3, 0xed, 0x9b, 0x80, 0xe5, 0x08, 0xc6, 0x1d, 0x9b, + 0x8b, 0x38, 0x05, 0x56, 0xbb, 0xf6, 0x97, 0xa8, 0xca, 0x1f, 0x37, 0xe3, 0x80, 0x2e, 0x00, 0xba, + 0xfe, 0xbd, 0xa6, 0x64, 0x5f, 0xad, 0xc3, 0x63, 0x57, 0x15, 0x14, 0x52, 0xd8, 0x86, 0xbc, 0x1d, + 0x2f, 0xbc, 0xeb, 0xe7, 0x87, 0x2e, 0x6e, 0x91, 0xaa, 0x0a, 0x31, 0x91, 0x91, 0x41, 0xa5, 0xec, + 0xc8, 0xa0, 0x7c, 0x81, 0xe3, 0xfe, 0x63, 0xaa, 0xa3, 0xaa, 0x23, 0x76, 0xca, 0x69, 0x55, 0x2a, + 0x5a, 0x13, 0x76, 0x68, 0x23, 0xd8, 0xf6, 0xd9, 0x1c, 0x5e, 0xe3, 0xbc, 0xce, 0xb9, 0xa1, 0x2e, + 0xeb, 0x82, 0x26, 0xe3, 0x6c, 0x91, 0xc9, 0x6e, 0xe4, 0x37, 0x12, 0x16, 0xe1, 0x3a, 0x04, 0x45, + 0xc6, 0xb7, 0x75, 0x5e, 0x13, 0x24, 0x09, 0xf7, 0x57, 0x4b, 0x84, 0x6c, 0x05, 0x07, 0x74, 0xfb, + 0xf0, 0x3a, 0x7b, 0xfe, 0x08, 0xed, 0xbd, 0x9b, 0x64, 0x2c, 0xee, 0xd2, 0xc5, 0x5b, 0xe8, 0xa0, + 0x45, 0xf7, 0xa8, 0x41, 0xeb, 0xe8, 0x89, 0xc6, 0x5f, 0xc0, 0xe8, 0xb8, 0xbf, 0x44, 0xc8, 0x9c, + 0x46, 0x43, 0x85, 0xdb, 0xb9, 0x68, 0x85, 0x74, 0x3e, 0x96, 0x0a, 0xe9, 0xac, 0x32, 0x6c, 0x23, + 0x8a, 0x33, 0x21, 0x95, 0x03, 0xef, 0xbe, 0xd0, 0xef, 0x5f, 0x2b, 0xda, 0x21, 0x6c, 0x69, 0xf9, + 0x86, 0x77, 0x9f, 0x2b, 0x3c, 0x2f, 0x4a, 0x16, 0xa1, 0x25, 0x1f, 0xf3, 0xe3, 0x14, 0xb6, 0xc6, + 0xd0, 0xa0, 0xf8, 0xa9, 0xff, 0xac, 0x7f, 0x33, 0xb1, 0x87, 0xcd, 0xb1, 0x56, 0x83, 0x8e, 0x70, + 0xca, 0x0d, 0xd9, 0x6a, 0xd0, 0x49, 0xb7, 0x1a, 0x74, 0x0a, 0xb4, 0x1a, 0x74, 0x30, 0xf2, 0x6b, + 0xb2, 0xe5, 0xef, 0x7a, 0xbd, 0x76, 0xc2, 0x82, 0x95, 0xa6, 0xaf, 0xbc, 0x39, 0x54, 0xd3, 0x35, + 0x5e, 0x97, 0x37, 0x7f, 0x49, 0x6a, 0x79, 0xa2, 0x34, 0xb7, 0x0b, 0xb2, 0x69, 0xe7, 0x17, 0xa9, + 0x55, 0x20, 0xfe, 0xc7, 0xb8, 0x20, 0x6a, 0x1e, 0x8a, 0x7d, 0xe8, 0xad, 0x93, 0xf4, 0x46, 0x90, + 0xe0, 0x9d, 0xfa, 0x11, 0x29, 0x44, 0x6c, 0x60, 0x6e, 0xdf, 0x52, 0xfd, 0x71, 0x3e, 0x2c, 0x91, + 0x73, 0xf4, 0x3b, 0xf1, 0x16, 0x79, 0x19, 0xe0, 0xf1, 0x9b, 0x08, 0xc8, 0xda, 0x18, 0x96, 0x4f, + 0xfa, 0x08, 0xf1, 0xee, 0x7e, 0x51, 0x1e, 0xf2, 0x65, 0xa1, 0xe4, 0x76, 0x3a, 0xb3, 0x87, 0x4b, + 0x2d, 0x32, 0x25, 0x19, 0x33, 0x43, 0xbf, 0x5e, 0x35, 0xb7, 0xdb, 0xe3, 0x57, 0xa0, 0x74, 0x75, + 0x2d, 0xbf, 0xdd, 0xf3, 0x3a, 0x09, 0x46, 0xcb, 0x6b, 0x6d, 0x9c, 0xb5, 0x22, 0x18, 0x71, 0x84, + 0xad, 0xec, 0x93, 0x19, 0x93, 0xe7, 0x46, 0xd8, 0x52, 0x48, 0xce, 0x66, 0xf0, 0xd3, 0x08, 0x1b, + 0xec, 0x91, 0xc7, 0x06, 0xf2, 0xc5, 0xe8, 0x9a, 0x45, 0xf7, 0xbd, 0x21, 0x30, 0x4f, 0xc3, 0x85, + 0x72, 0xc3, 0x76, 0xa1, 0x3c, 0x5f, 0x74, 0xe9, 0x0c, 0xf0, 0xa3, 0xec, 0x9a, 0xfd, 0xc7, 0x9d, + 0xc0, 0xd9, 0x26, 0x13, 0x6d, 0x2c, 0x91, 0xe7, 0x36, 0x2f, 0x0d, 0xb3, 0x38, 0xb5, 0xfa, 0xc0, + 0xca, 0x63, 0x10, 0xb4, 0xf0, 0xb0, 0x6d, 0xec, 0x34, 0xa6, 0xa7, 0x6e, 0x4f, 0xcf, 0x20, 0x25, + 0x54, 0x5c, 0xe9, 0x5b, 0x06, 0xef, 0xde, 0xfa, 0x7d, 0x6a, 0xaf, 0xc6, 0x4c, 0x59, 0xcc, 0x9c, + 0xa1, 0x7f, 0x54, 0x26, 0xd3, 0xd8, 0x90, 0xf4, 0xe8, 0x7c, 0x01, 0x3d, 0x7c, 0x3b, 0x7e, 0x5b, + 0x3a, 0x7e, 0xd3, 0x86, 0xd5, 0x96, 0x09, 0x04, 0x1b, 0x17, 0x2b, 0xef, 0x9a, 0x7e, 0x71, 0xa1, + 0xf4, 0xa8, 0xca, 0x96, 0xd3, 0x1c, 0x6c, 0x5c, 0xd4, 0xed, 0xef, 0x79, 0x49, 0x73, 0x5f, 0x18, + 0x5d, 0xaa, 0xbb, 0x77, 0xb0, 0x10, 0x38, 0xcc, 0x59, 0x21, 0xf3, 0x92, 0x63, 0x6f, 0xf3, 0xa9, + 0x13, 0x0a, 0xa1, 0xba, 0x8e, 0x05, 0x36, 0x18, 0xd2, 0xf8, 0xce, 0xe7, 0xc9, 0x1c, 0x4e, 0x4e, + 0xd8, 0x4b, 0xe4, 0xd1, 0xfe, 0x38, 0x3b, 0xda, 0x67, 0xa1, 0x94, 0xdb, 0x16, 0x04, 0x52, 0x98, + 0xee, 0x8f, 0x93, 0xb3, 0x5b, 0xa1, 0xd7, 0x5a, 0xf5, 0xda, 0x5e, 0xa7, 0xe9, 0x47, 0x9b, 0x9d, + 0xbd, 0xdc, 0x73, 0x55, 0xf3, 0xec, 0xb3, 0x9c, 0x7b, 0xf6, 0x19, 0x11, 0xc7, 0x6c, 0x40, 0x04, + 0xa5, 0xbc, 0x4b, 0x26, 0x03, 0xde, 0x94, 0xe0, 0xda, 0xcb, 0x79, 0xee, 0x9f, 0xbe, 0x3e, 0x1a, + 0x41, 0x16, 0xbc, 0x00, 0x24, 0x49, 0xb4, 0x15, 0xb2, 0xfc, 0x45, 0xf9, 0xe6, 0x98, 0xfb, 0x97, + 0x4a, 0x64, 0xfe, 0x66, 0xea, 0x1e, 0x14, 0x46, 0x4c, 0xf9, 0x51, 0x86, 0xf3, 0xab, 0xc1, 0x4a, + 0x41, 0x40, 0x1f, 0xb8, 0x21, 0xfe, 0xb3, 0x65, 0x52, 0x65, 0x11, 0x8e, 0x5d, 0xaf, 0x39, 0x4a, + 0xa5, 0xf4, 0x86, 0xa5, 0x94, 0xe6, 0x98, 0x81, 0xaa, 0x43, 0x83, 0x74, 0x52, 0xbc, 0x09, 0x27, + 0xee, 0x05, 0x15, 0xb2, 0x00, 0x35, 0x41, 0x7e, 0x85, 0x64, 0xce, 0xbe, 0x46, 0x24, 0xef, 0x0c, + 0xb1, 0x73, 0x4b, 0x85, 0xfb, 0xf0, 0x9d, 0x5b, 0xaa, 0xae, 0x0d, 0x90, 0x4a, 0x75, 0xa3, 0xf7, + 0x4c, 0x6c, 0x7f, 0x99, 0x85, 0xab, 0x79, 0xed, 0xe0, 0x03, 0x5f, 0xdd, 0xaf, 0x7b, 0x52, 0x44, + 0x9f, 0x89, 0xd2, 0x8f, 0x99, 0x80, 0x11, 0xbf, 0xf8, 0xb5, 0x49, 0x5d, 0xc5, 0xbd, 0x46, 0x39, + 0xd5, 0x9e, 0x3b, 0xe7, 0x35, 0x32, 0xde, 0xdd, 0xf7, 0x62, 0x3f, 0x15, 0x59, 0x31, 0x5e, 0xc7, + 0x42, 0x4a, 0x6d, 0x4e, 0x55, 0x60, 0x25, 0xc0, 0xb1, 0xdd, 0x3f, 0xa6, 0xb2, 0x1e, 0xaf, 0xee, + 0x8e, 0x90, 0xc7, 0xae, 0x59, 0x3c, 0xf6, 0x5c, 0xfe, 0xc5, 0xe2, 0x81, 0xec, 0x55, 0x4f, 0xb1, + 0xd7, 0xf3, 0x05, 0x68, 0x1d, 0xcf, 0x59, 0x07, 0x64, 0x9a, 0x5d, 0x5c, 0x16, 0x21, 0x25, 0xaf, + 0x58, 0x06, 0xd4, 0x93, 0x29, 0x03, 0x6a, 0xde, 0x40, 0x35, 0xcc, 0xa8, 0x17, 0xc8, 0xa4, 0x08, + 0x76, 0x48, 0xc7, 0xe8, 0x09, 0x5c, 0x90, 0x70, 0xf7, 0x57, 0x2a, 0xc4, 0xba, 0x28, 0xed, 0x7c, + 0xaf, 0x44, 0xa8, 0xd2, 0xc2, 0x2e, 0x08, 0xb4, 0x6a, 0x3d, 0xf4, 0x88, 0xa1, 0xd3, 0xaa, 0xd5, + 0x6b, 0xd3, 0xff, 0x36, 0xf7, 0x3a, 0xa1, 0x2a, 0x46, 0xef, 0x4d, 0x8f, 0xf9, 0x4f, 0x0b, 0xdf, + 0xcf, 0x56, 0xa7, 0x9d, 0x57, 0x68, 0x5f, 0x96, 0x61, 0xa8, 0x56, 0x60, 0xc8, 0x5e, 0x39, 0xbf, + 0x5b, 0x22, 0x97, 0xf8, 0x55, 0xe1, 0xe2, 0x23, 0x29, 0x64, 0x78, 0xd6, 0x25, 0x51, 0x4d, 0x0e, + 0x43, 0x02, 0x57, 0x5f, 0x17, 0x93, 0x7c, 0xa9, 0x3e, 0x5c, 0xab, 0x30, 0x6c, 0x37, 0xdd, 0x7f, + 0x55, 0xa1, 0xeb, 0x97, 0xce, 0xa7, 0xbe, 0x3a, 0xf9, 0x9a, 0xc5, 0x26, 0x4f, 0xa7, 0xd8, 0xe4, + 0x8c, 0x85, 0xfc, 0x60, 0x6e, 0x4d, 0x26, 0xe4, 0x0c, 0x9e, 0x28, 0x5e, 0xf3, 0xbd, 0x28, 0xd9, + 0xf1, 0x3d, 0x76, 0xb4, 0x28, 0x16, 0xc1, 0x50, 0xc7, 0x95, 0x2a, 0x82, 0x66, 0x2b, 0x4d, 0x0d, + 0xfa, 0x1b, 0x70, 0xee, 0x11, 0x87, 0x9d, 0x63, 0x46, 0x1e, 0x55, 0xba, 0xd8, 0x60, 0x02, 0xe1, + 0x72, 0x1d, 0xb2, 0xd9, 0x25, 0xd1, 0xac, 0xb3, 0xd5, 0x47, 0x0e, 0x32, 0x9a, 0x30, 0x0e, 0xab, + 0xc7, 0x8b, 0x1e, 0x56, 0x4f, 0xe4, 0x84, 0xc7, 0xfe, 0x4c, 0x89, 0x9c, 0xc5, 0x0f, 0x63, 0x87, + 0x52, 0xc6, 0x4e, 0x48, 0xe6, 0x71, 0x04, 0x6d, 0x3f, 0x91, 0x65, 0x62, 0x85, 0xe5, 0xe8, 0xd2, + 0x36, 0x1d, 0xad, 0xb1, 0x5d, 0xb7, 0x89, 0x41, 0x9a, 0xba, 0xfb, 0x2b, 0x25, 0x32, 0x85, 0x1d, + 0x39, 0x8d, 0x7d, 0xec, 0xaa, 0xbd, 0x8f, 0xb9, 0xf9, 0x42, 0x63, 0xc0, 0x16, 0xf6, 0x2a, 0x59, + 0x40, 0x68, 0x3d, 0x0a, 0xef, 0x1f, 0x49, 0xe5, 0x3a, 0xdf, 0xfb, 0xfa, 0x17, 0x4b, 0x5c, 0xdc, + 0x29, 0xad, 0xf8, 0x1e, 0x86, 0x82, 0xe9, 0xdf, 0xb8, 0x90, 0xa5, 0x12, 0xb8, 0x5c, 0x5c, 0xa0, + 0xb1, 0xf5, 0x6f, 0xc4, 0x82, 0xa5, 0x08, 0x42, 0x7f, 0x1b, 0xee, 0xdf, 0x2d, 0x91, 0x47, 0x4d, + 0x44, 0xe3, 0x52, 0x56, 0x9e, 0xcb, 0xb3, 0x46, 0xa6, 0xc2, 0x2e, 0x26, 0x06, 0x51, 0x16, 0xc0, + 0xf3, 0x72, 0xc6, 0x6f, 0x89, 0x72, 0xba, 0x72, 0xcf, 0x99, 0xd4, 0x65, 0x39, 0xa8, 0x9a, 0x8e, + 0x4b, 0x26, 0x98, 0x25, 0x1a, 0x8b, 0xeb, 0x74, 0x04, 0xb9, 0x99, 0x39, 0xfa, 0xe9, 0x22, 0xe7, + 0x10, 0xf7, 0xaf, 0x94, 0xf8, 0x2c, 0x9b, 0x5d, 0x77, 0xbe, 0x49, 0x16, 0x0e, 0xd0, 0x58, 0x58, + 0xbf, 0xdf, 0xc5, 0x2d, 0x84, 0x1d, 0x54, 0x96, 0x8a, 0x08, 0xce, 0x01, 0xc3, 0x5d, 0x5d, 0x14, + 0xbd, 0x5f, 0xb8, 0x91, 0x22, 0x0b, 0x7d, 0x0d, 0xb9, 0xbf, 0x27, 0x78, 0x95, 0x69, 0x2d, 0x74, + 0xb1, 0x75, 0xc3, 0xd6, 0xda, 0x66, 0x0d, 0xc4, 0x5c, 0xa9, 0xc5, 0x56, 0xe7, 0xc5, 0x20, 0xe1, + 0x78, 0xf2, 0xe6, 0x53, 0x53, 0x2d, 0xa2, 0x0a, 0xcb, 0x66, 0x2d, 0x9d, 0xdd, 0x62, 0x5d, 0x41, + 0xc0, 0xc0, 0xc2, 0x3a, 0xdd, 0x28, 0x3c, 0x0c, 0x5a, 0x2c, 0x38, 0xba, 0x62, 0xd7, 0xa9, 0x2b, + 0x08, 0x18, 0x58, 0x68, 0xa2, 0xf5, 0x3a, 0x31, 0x17, 0xe0, 0xde, 0x8e, 0xc8, 0x1d, 0x30, 0xa5, + 0x4d, 0xb4, 0x77, 0x4c, 0x20, 0xd8, 0xb8, 0xee, 0x6f, 0x57, 0x09, 0xd1, 0x2a, 0x02, 0x7a, 0x08, + 0xa7, 0x9a, 0x1e, 0x55, 0x90, 0x78, 0x12, 0x94, 0x4a, 0xfe, 0x2d, 0x12, 0x5d, 0x79, 0x79, 0x4d, + 0x54, 0xe4, 0xbe, 0xad, 0x97, 0x25, 0x83, 0xc8, 0xe2, 0x5c, 0x7f, 0x96, 0x6a, 0xd9, 0xf9, 0x56, + 0x89, 0x4c, 0x7b, 0x6d, 0xbc, 0x36, 0x9a, 0xb0, 0x11, 0x95, 0x8b, 0x38, 0x2b, 0x8d, 0x9e, 0xac, + 0xe8, 0xba, 0xbc, 0x33, 0xaf, 0xc8, 0x73, 0x2b, 0x03, 0x92, 0xdb, 0x1f, 0xb3, 0x0b, 0xce, 0xcb, + 0x52, 0xb5, 0xe4, 0x1f, 0x65, 0x29, 0xad, 0x5a, 0x56, 0x99, 0x68, 0x30, 0xb4, 0x4a, 0xbc, 0x8f, + 0x61, 0x44, 0x8a, 0x8f, 0x15, 0xb9, 0xc9, 0x69, 0x6d, 0x9a, 0x79, 0x37, 0xe4, 0xf1, 0xb4, 0x49, + 0xc7, 0xac, 0x8e, 0x17, 0xb9, 0x26, 0x69, 0xe8, 0x6e, 0x39, 0xf1, 0xaa, 0x09, 0x99, 0x6f, 0xd9, + 0x9b, 0x84, 0x08, 0x42, 0xba, 0x9c, 0xdf, 0x42, 0x6a, 0x77, 0xd1, 0xdb, 0x42, 0x0a, 0x00, 0xe9, + 0x26, 0xe8, 0x88, 0xa6, 0x50, 0x6c, 0x6d, 0x76, 0x76, 0x43, 0x11, 0x87, 0xf4, 0x52, 0x81, 0x6f, + 0x7e, 0x14, 0x53, 0xf1, 0x8c, 0x75, 0xf4, 0x36, 0x70, 0x53, 0x50, 0x01, 0x45, 0x0f, 0xdd, 0x44, + 0xec, 0x0e, 0x02, 0xde, 0x5c, 0xad, 0x0c, 0x71, 0x1d, 0x83, 0xdd, 0x60, 0xd0, 0x9b, 0x2f, 0xfb, + 0x49, 0xc5, 0x15, 0xa7, 0x45, 0xf5, 0x7a, 0x71, 0xb1, 0x34, 0xde, 0xec, 0xbc, 0x13, 0xfb, 0xec, + 0xb6, 0x6a, 0x75, 0xf5, 0x19, 0x7d, 0xfd, 0x94, 0x97, 0x67, 0x26, 0xc1, 0xb1, 0x6a, 0xe2, 0x1e, + 0x2c, 0x7e, 0xcb, 0xdc, 0x3a, 0x8b, 0xa4, 0x48, 0x47, 0xed, 0x4c, 0x3c, 0x7a, 0xb2, 0x6f, 0xdb, + 0xc4, 0x20, 0x4d, 0x7d, 0x29, 0x20, 0xb3, 0xd6, 0x8a, 0x1d, 0xa1, 0xb3, 0xb3, 0x4d, 0x16, 0xd2, + 0x4b, 0x72, 0x84, 0x3e, 0xce, 0x3f, 0x1a, 0x23, 0x73, 0x36, 0x63, 0x60, 0x8c, 0xc2, 0x01, 0x1d, + 0x35, 0xfd, 0x9e, 0x2a, 0x07, 0x89, 0xe2, 0xff, 0x1b, 0x12, 0x00, 0x1a, 0x87, 0x65, 0x63, 0x61, + 0xd5, 0xdf, 0x79, 0xa7, 0x5f, 0x78, 0x37, 0x14, 0x04, 0x0c, 0x2c, 0x54, 0xd8, 0x76, 0xc2, 0x30, + 0x51, 0x82, 0x5b, 0xf1, 0xcc, 0x2a, 0x2b, 0x05, 0x01, 0x45, 0x81, 0x7d, 0x17, 0x07, 0xd4, 0xb6, + 0xfd, 0x5d, 0x4a, 0x60, 0x5f, 0x37, 0x81, 0x60, 0xe3, 0xe2, 0x06, 0x14, 0xc6, 0x8c, 0x09, 0x85, + 0x5a, 0xa8, 0xa3, 0x6d, 0x1a, 0xfc, 0x4e, 0x8e, 0x84, 0x3b, 0x5f, 0x25, 0x8f, 0xaa, 0x2b, 0x34, + 0xc0, 0xfd, 0x87, 0xb2, 0xc5, 0x09, 0xcb, 0xb6, 0x7b, 0x74, 0x2d, 0x1b, 0x0d, 0x06, 0xd5, 0xc7, + 0x43, 0x5c, 0xa1, 0xd2, 0x49, 0x8a, 0x93, 0xf6, 0x21, 0xee, 0x75, 0x0b, 0x0a, 0x29, 0x6c, 0xaa, + 0x4f, 0x2c, 0x60, 0x09, 0x53, 0xa5, 0x24, 0x05, 0x7e, 0x15, 0x48, 0xed, 0xcc, 0xd7, 0x53, 0x70, + 0xe8, 0xab, 0x81, 0xae, 0x43, 0xae, 0x5b, 0xa0, 0x05, 0xc3, 0xbe, 0x83, 0x88, 0x1b, 0x54, 0x8b, + 0xe0, 0x96, 0x0d, 0x86, 0x34, 0x3e, 0x9e, 0x82, 0x7b, 0x11, 0xfd, 0xe8, 0x09, 0x55, 0x11, 0x7a, + 0x11, 0xbf, 0x07, 0x6e, 0x9c, 0x82, 0xaf, 0x18, 0x30, 0xb0, 0x30, 0xdd, 0x0f, 0xc8, 0xd9, 0x8c, + 0xf0, 0x64, 0x64, 0x1c, 0xca, 0xa0, 0x72, 0x4c, 0xa9, 0x78, 0x1b, 0xbc, 0x36, 0x22, 0x46, 0x63, + 0x60, 0x21, 0x77, 0x32, 0xc7, 0xa9, 0x91, 0x06, 0x4b, 0x71, 0xe7, 0x86, 0x04, 0x80, 0xc6, 0x71, 0xbf, 0x43, 0x77, 0x6d, 0xed, 0x66, 0x28, 0x10, 0x65, 0x41, 0x87, 0x29, 0x33, 0xbb, 0x19, 0x59, - 0xa6, 0xd4, 0x30, 0xaf, 0x1a, 0x65, 0x60, 0x61, 0x62, 0xdf, 0x3a, 0xd2, 0x69, 0x92, 0x8e, 0xee, - 0x51, 0xde, 0x14, 0xd0, 0x38, 0xe8, 0xe3, 0x8b, 0xfd, 0xf6, 0xee, 0x56, 0xd0, 0xb9, 0x2b, 0x18, - 0x5b, 0x49, 0xe5, 0x86, 0x80, 0x83, 0xc2, 0x70, 0xde, 0x22, 0x95, 0x5e, 0xd0, 0x12, 0xac, 0xbc, + 0xa6, 0xd4, 0x30, 0xaf, 0x1a, 0x30, 0xb0, 0x30, 0xb1, 0x6f, 0x1d, 0xe9, 0x34, 0x49, 0x47, 0xf7, + 0x28, 0x6f, 0x0a, 0x68, 0x1c, 0xf4, 0xf1, 0xc5, 0x7e, 0x7b, 0x77, 0x2b, 0xe8, 0xdc, 0x15, 0x8c, + 0xad, 0xa4, 0x72, 0x43, 0x94, 0x83, 0xc2, 0x70, 0xde, 0x22, 0x95, 0x5e, 0xd0, 0x12, 0xac, 0xbc, 0x2c, 0xf5, 0x4e, 0xba, 0x9a, 0xa8, 0xc4, 0x7c, 0x32, 0x3b, 0x5d, 0x1d, 0x9a, 0x91, 0xf1, 0x32, 0x2e, 0x3e, 0xac, 0x9a, 0xe5, 0x3f, 0x9e, 0x18, 0xd2, 0x7f, 0x4c, 0xbf, 0x99, 0x18, 0xb3, 0xe4, - 0xe4, 0x8a, 0xfe, 0x66, 0x57, 0x55, 0x09, 0x18, 0x58, 0x68, 0x8c, 0x36, 0xa9, 0x01, 0x26, 0xad, - 0x35, 0x1e, 0x3b, 0x3b, 0xf5, 0x09, 0x8c, 0xd1, 0xb5, 0x34, 0x35, 0xe8, 0x6f, 0xc0, 0xe9, 0x92, - 0x33, 0x2d, 0x5c, 0x47, 0x56, 0xab, 0xd5, 0x13, 0x44, 0xec, 0x62, 0x8b, 0xb5, 0x34, 0x25, 0xe8, - 0x27, 0xee, 0x7c, 0x9d, 0x2c, 0x49, 0x60, 0xff, 0x25, 0x39, 0xb6, 0x5c, 0x2a, 0xab, 0x4f, 0x50, + 0xe4, 0x8a, 0xfe, 0x66, 0x57, 0x15, 0x04, 0x0c, 0x2c, 0x34, 0x46, 0x9b, 0xd4, 0x00, 0x93, 0xd6, + 0x1a, 0x8f, 0x9d, 0x9d, 0xfa, 0x04, 0xc6, 0xe8, 0x5a, 0x9a, 0x1a, 0xf4, 0x37, 0xe0, 0x74, 0xc9, + 0x99, 0x16, 0xae, 0x23, 0xab, 0xd5, 0xea, 0x09, 0x22, 0x76, 0xb1, 0xc5, 0x5a, 0x9a, 0x12, 0xf4, + 0x13, 0x77, 0xbe, 0x4e, 0x96, 0x64, 0x61, 0xff, 0x25, 0x39, 0xb6, 0x5c, 0x2a, 0xab, 0x4f, 0x50, 0x6a, 0x4b, 0xb5, 0x81, 0x58, 0x70, 0x0c, 0x05, 0xe7, 0x5d, 0x32, 0xc1, 0x4e, 0x1c, 0xe2, 0xc5, 0x69, 0xb6, 0xdb, 0xbd, 0x5a, 0xd4, 0xe1, 0xb6, 0xcc, 0xce, 0x2d, 0x44, 0xc8, 0xa1, 0x3e, 0xc5, - 0x61, 0x40, 0x10, 0x34, 0xe9, 0x7c, 0x4d, 0x7b, 0x9d, 0x4e, 0x98, 0x78, 0x5c, 0x09, 0x9b, 0x29, - 0xa2, 0x47, 0x1a, 0x4d, 0xac, 0xe8, 0xba, 0xbc, 0x1d, 0x15, 0xff, 0x64, 0x94, 0x80, 0xd9, 0x04, + 0x61, 0x85, 0x20, 0x68, 0xd2, 0xf9, 0x9a, 0xf6, 0x3a, 0x9d, 0x30, 0xf1, 0xb8, 0x12, 0x36, 0x53, + 0x44, 0x8f, 0x34, 0x9a, 0x58, 0xd1, 0x75, 0x79, 0x3b, 0x2a, 0xfe, 0xc9, 0x80, 0x80, 0xd9, 0x04, 0x6e, 0xe3, 0xe1, 0x3d, 0x14, 0x98, 0xd2, 0xe9, 0x1e, 0x2f, 0xce, 0x16, 0xd9, 0xc6, 0x6f, 0x59, 0x95, 0x0c, 0x09, 0x66, 0x13, 0x83, 0x34, 0x75, 0x0c, 0xa8, 0x35, 0xfc, 0xa8, 0x73, 0x3a, 0xa0, 0x56, 0xfb, 0x51, 0x4d, 0xb7, 0xe9, 0xd2, 0x9b, 0x64, 0xda, 0x98, 0xb9, 0x61, 0x42, 0x30, 0x97, - 0xbe, 0x44, 0xb7, 0xf1, 0xd4, 0x8c, 0x0c, 0x15, 0xc2, 0xf9, 0x3f, 0xca, 0x64, 0x3e, 0xe3, 0x48, - 0xe2, 0x6e, 0xc0, 0x82, 0x94, 0x2d, 0xd9, 0x75, 0x9d, 0xc2, 0x80, 0x95, 0xd8, 0x12, 0xa8, 0x5c, + 0xbe, 0x44, 0xb7, 0xf1, 0xd4, 0x8c, 0x0c, 0x15, 0xc2, 0xf9, 0x3f, 0xcb, 0x64, 0x3e, 0xe3, 0x48, + 0xe2, 0x6e, 0xc0, 0x82, 0x94, 0x2d, 0xd9, 0x75, 0x9d, 0x96, 0x01, 0x83, 0xd8, 0x12, 0xa8, 0x5c, 0x40, 0x02, 0x49, 0x71, 0x58, 0x19, 0x28, 0x0e, 0x85, 0xd4, 0x19, 0x3b, 0xb9, 0xd4, 0xb1, 0xc5, 0xfc, 0x78, 0x21, 0x31, 0xff, 0x00, 0x24, 0x95, 0xb5, 0x53, 0x4c, 0x16, 0xd8, 0x29, 0x3e, 0x2e, 0x91, 0x39, 0x9b, 0x85, 0x0a, 0xcc, 0xf8, 0xc3, 0x3a, 0x81, 0xcb, 0xcc, 0xa2, 0x4a, 0xa2, 0xb0, - 0xdd, 0xf6, 0x23, 0x11, 0xd4, 0x35, 0x27, 0x0c, 0x24, 0x01, 0x05, 0x03, 0xc3, 0xfd, 0xa5, 0x32, - 0x59, 0xd0, 0x11, 0xbe, 0x22, 0x55, 0xe5, 0xe8, 0x7c, 0xfc, 0xdb, 0x96, 0x8f, 0x3f, 0x2f, 0x03, - 0x65, 0xaa, 0x5f, 0x03, 0xfd, 0xfd, 0xef, 0xa6, 0xfc, 0xfd, 0xaf, 0x0e, 0x49, 0xf7, 0x78, 0xdf, - 0xff, 0x3f, 0x2e, 0x93, 0xf3, 0xe9, 0x2a, 0x6b, 0x6d, 0x2f, 0x38, 0x18, 0xe1, 0x3c, 0x7d, 0xd5, - 0x9a, 0xa7, 0xd7, 0x87, 0x1b, 0x0f, 0xeb, 0xdc, 0xc0, 0xc9, 0xf2, 0x52, 0x93, 0xf5, 0xe6, 0x49, - 0x88, 0x1f, 0x3f, 0x63, 0xff, 0xbe, 0x44, 0x1e, 0xcb, 0xac, 0x77, 0x1a, 0xbe, 0xcc, 0xaf, 0xd8, - 0xbe, 0xcc, 0x57, 0x4e, 0x30, 0xbc, 0x01, 0xce, 0xcd, 0xff, 0x52, 0x1e, 0x30, 0x2c, 0xe6, 0xf6, - 0xba, 0x45, 0xf7, 0xd1, 0x26, 0xdd, 0x6d, 0xe2, 0x1b, 0xd4, 0xae, 0x92, 0xa7, 0x75, 0x17, 0xd9, - 0x46, 0xa8, 0xc1, 0x74, 0xed, 0x2f, 0xa5, 0x49, 0xe8, 0x62, 0x30, 0x29, 0xd8, 0xa9, 0xa4, 0xca, - 0x23, 0x4a, 0x25, 0x45, 0x65, 0xcc, 0xa1, 0x32, 0xb7, 0xd3, 0xde, 0x34, 0xc3, 0x10, 0x37, 0xb0, - 0xa8, 0xbe, 0x83, 0xca, 0x29, 0x8f, 0x75, 0x18, 0xcb, 0x5d, 0x70, 0xd6, 0x07, 0x34, 0x03, 0x27, - 0xf8, 0x35, 0x45, 0xe5, 0x7a, 0x54, 0x34, 0xdd, 0xef, 0x54, 0xc8, 0xa7, 0x8f, 0x61, 0x3b, 0xba, - 0x49, 0x58, 0x47, 0x98, 0x2f, 0xa6, 0xfd, 0x4c, 0x4b, 0x99, 0x95, 0x2d, 0xc7, 0x53, 0xea, 0x63, - 0x95, 0x3f, 0xf1, 0xc7, 0xfa, 0x45, 0xd3, 0x2b, 0xc8, 0x63, 0x16, 0xaf, 0x9e, 0x78, 0x61, 0x3d, - 0x38, 0x37, 0xe1, 0x29, 0x7a, 0x30, 0x30, 0xed, 0xf0, 0xd3, 0x99, 0x83, 0xb2, 0x22, 0x25, 0xf0, - 0x56, 0x17, 0x02, 0x8d, 0x6b, 0x23, 0xfa, 0x56, 0x97, 0x2c, 0x00, 0x8d, 0x63, 0x05, 0x44, 0x94, - 0x73, 0x03, 0x22, 0xfe, 0x75, 0x89, 0x9c, 0x4b, 0x77, 0xe2, 0x34, 0xa4, 0x4e, 0xc3, 0x96, 0x3a, - 0xcb, 0xc3, 0x7d, 0xfb, 0x01, 0x02, 0xe7, 0x3f, 0x10, 0xf2, 0x48, 0xdf, 0x66, 0xc5, 0xa7, 0xf1, - 0xa7, 0x4b, 0xe4, 0xcc, 0x1e, 0x33, 0x14, 0x8c, 0xcb, 0x39, 0x62, 0x60, 0x39, 0x37, 0x93, 0x8e, - 0xbd, 0xd3, 0xc3, 0xcd, 0x9e, 0x3e, 0x14, 0xe8, 0x6f, 0xcc, 0xf9, 0x79, 0x3a, 0xd5, 0xde, 0xbd, - 0xb8, 0x2f, 0xef, 0xb9, 0xe0, 0xa3, 0x2f, 0xe5, 0xf8, 0xe4, 0x72, 0x32, 0xa6, 0xaf, 0x2e, 0x62, - 0xd0, 0x67, 0x16, 0x16, 0x64, 0xb6, 0x4a, 0x95, 0x00, 0x9e, 0x54, 0x0b, 0xd5, 0xbe, 0x42, 0xd7, - 0xc5, 0xb2, 0xae, 0x0a, 0x70, 0x99, 0x24, 0x4b, 0x40, 0x51, 0x74, 0xde, 0x23, 0xd5, 0x3d, 0x79, - 0x1f, 0x47, 0x08, 0xbd, 0x9c, 0x9d, 0x25, 0xf3, 0xfa, 0x0e, 0x0f, 0x57, 0x57, 0x45, 0xa0, 0x89, - 0x3a, 0xd7, 0x48, 0xa5, 0xb3, 0x1b, 0x8b, 0x2b, 0xb2, 0x79, 0x01, 0x31, 0x76, 0xf8, 0x11, 0xbf, - 0xf4, 0x47, 0x81, 0x80, 0x24, 0x90, 0x52, 0xb4, 0xd3, 0x12, 0xce, 0xe8, 0x1c, 0x4a, 0xb0, 0x5a, - 0xeb, 0xa7, 0x44, 0x81, 0x80, 0x24, 0x58, 0xe4, 0x1d, 0x5e, 0x2d, 0x10, 0x9e, 0xe6, 0x9c, 0xfb, - 0xd3, 0x7d, 0x17, 0x28, 0x78, 0x06, 0x36, 0x06, 0x06, 0x4e, 0x08, 0x5d, 0xcc, 0x4d, 0x96, 0xfe, - 0x58, 0x38, 0x02, 0xf2, 0x92, 0xe2, 0xf6, 0xa5, 0x4a, 0xe6, 0x27, 0x62, 0x1c, 0x0e, 0x82, 0x16, - 0xa3, 0xea, 0x77, 0xf7, 0x77, 0x63, 0x61, 0xe8, 0xe7, 0x51, 0xed, 0x4b, 0x64, 0x2d, 0xa8, 0x32, - 0x38, 0x08, 0x5a, 0x4e, 0x8d, 0x94, 0x77, 0x9b, 0x22, 0xed, 0x61, 0x8e, 0x69, 0x6a, 0xdf, 0xe0, - 0x5c, 0x9d, 0xc0, 0x50, 0xb8, 0x8d, 0x35, 0xa0, 0xf5, 0xa9, 0x3e, 0x32, 0xb9, 0xcb, 0x2f, 0xe5, - 0x89, 0x14, 0x87, 0x97, 0xf3, 0x2e, 0x0e, 0xf6, 0xdd, 0xe0, 0xe3, 0x57, 0x12, 0x44, 0x01, 0x48, - 0x72, 0x74, 0x1f, 0x26, 0xbb, 0xea, 0x96, 0xa1, 0xc8, 0x71, 0xb8, 0x3c, 0xdc, 0xad, 0x44, 0x61, - 0x06, 0x2b, 0x28, 0x18, 0x14, 0x91, 0xe7, 0x3d, 0x99, 0xc1, 0x9d, 0xe5, 0x37, 0xcc, 0xe5, 0xf9, - 0xcc, 0x84, 0xef, 0x9c, 0xe7, 0x55, 0x11, 0x68, 0xa2, 0x4e, 0x8f, 0xcc, 0x1e, 0xc6, 0xdd, 0x7d, - 0x5f, 0x2e, 0x7d, 0x96, 0xf4, 0x70, 0xfa, 0xca, 0x17, 0x73, 0x32, 0x59, 0x8a, 0x2a, 0x41, 0x94, - 0xf4, 0xbc, 0x76, 0x9f, 0x04, 0x63, 0xd9, 0x83, 0x6e, 0x9b, 0x64, 0xc1, 0x6e, 0xc5, 0xfd, 0xbd, - 0xf1, 0xfe, 0x4d, 0x82, 0xe9, 0x70, 0xbf, 0xd0, 0x7f, 0xb6, 0xf7, 0xd6, 0xf0, 0x36, 0xca, 0x03, - 0x3c, 0xe5, 0xa3, 0x32, 0xf6, 0x91, 0x6e, 0xe6, 0x0e, 0x20, 0xa4, 0xec, 0xb0, 0xa6, 0x0e, 0x9f, - 0x22, 0x95, 0xa6, 0x32, 0xbb, 0x1c, 0x06, 0xb4, 0x99, 0x56, 0x9b, 0x2a, 0x9f, 0x58, 0x6d, 0xba, - 0x43, 0xe7, 0x1b, 0x77, 0x7a, 0x9d, 0xa3, 0x61, 0xc8, 0xb4, 0x06, 0x4c, 0x5e, 0xaf, 0x09, 0x12, - 0xa0, 0x88, 0xe1, 0xc4, 0x3d, 0x9e, 0x1e, 0x04, 0xf8, 0xac, 0x58, 0xe4, 0xd7, 0xe4, 0xf6, 0xf4, - 0x86, 0x98, 0x89, 0xc7, 0xeb, 0xc7, 0x21, 0x7f, 0x9c, 0x87, 0x00, 0xc7, 0x37, 0x76, 0x9a, 0x6a, - 0xd8, 0xdf, 0x2f, 0x65, 0x28, 0x0d, 0x5c, 0x71, 0xfe, 0xa2, 0xad, 0x38, 0x3f, 0x97, 0x56, 0x9c, - 0xfb, 0xcc, 0x5c, 0x4b, 0x67, 0x2e, 0x9e, 0x63, 0xae, 0x68, 0x12, 0x09, 0xf7, 0x7f, 0x95, 0x48, - 0xa5, 0x1e, 0xb6, 0x46, 0x68, 0x48, 0x5f, 0xb5, 0x0c, 0xe9, 0x67, 0x73, 0x9f, 0xfa, 0x18, 0x68, - 0x36, 0xdf, 0x4a, 0x99, 0xcd, 0x9f, 0xcb, 0x27, 0x75, 0xbc, 0x91, 0xfc, 0x61, 0x85, 0x98, 0x8f, - 0x95, 0x38, 0xbf, 0x7d, 0x92, 0x10, 0xbf, 0x4a, 0xb1, 0xf7, 0x4b, 0x44, 0x1b, 0x2c, 0x20, 0x46, - 0xde, 0xff, 0xf9, 0x13, 0x1b, 0xe9, 0x77, 0xc7, 0x0f, 0xf6, 0xf6, 0x13, 0xbf, 0x95, 0x1e, 0xd8, - 0xe9, 0x45, 0xfa, 0xfd, 0xd7, 0x12, 0x99, 0x4f, 0xb5, 0xee, 0x1c, 0x64, 0x5d, 0x21, 0x38, 0xa9, - 0x65, 0x7c, 0x26, 0xf7, 0xd2, 0xc1, 0x32, 0x21, 0xca, 0x9b, 0x2b, 0xed, 0x57, 0xb6, 0x97, 0x2b, - 0x77, 0x6f, 0x0c, 0x06, 0x06, 0xe6, 0x00, 0x48, 0xc2, 0x6e, 0xd8, 0x0e, 0xf7, 0x8e, 0xae, 0xfb, - 0xf2, 0x0e, 0xba, 0x72, 0xd5, 0x6f, 0xeb, 0x22, 0x30, 0xf1, 0x30, 0x3f, 0x51, 0xfa, 0xad, 0x9b, - 0xff, 0xcf, 0xa8, 0x7f, 0x72, 0x18, 0xf5, 0x77, 0x4a, 0x64, 0x01, 0x5b, 0x67, 0xf1, 0x0c, 0x32, - 0x1e, 0x4f, 0x25, 0x6b, 0x2e, 0x1d, 0x93, 0xac, 0x19, 0x2f, 0x34, 0x24, 0xad, 0xb0, 0x27, 0x93, - 0x97, 0x18, 0x52, 0x0c, 0xa1, 0x20, 0x4a, 0x05, 0x1e, 0xed, 0x93, 0xb8, 0xac, 0x60, 0xe2, 0x51, - 0x28, 0x88, 0x52, 0x99, 0xcb, 0x79, 0x2c, 0x3b, 0x97, 0x33, 0xcf, 0xf5, 0x22, 0xce, 0xd1, 0xc5, - 0xce, 0x6c, 0xe4, 0x7a, 0x91, 0x07, 0xec, 0x1a, 0xc7, 0xfd, 0xa7, 0x15, 0x32, 0x83, 0xe1, 0x64, - 0x2a, 0xd6, 0xf6, 0x55, 0x2b, 0xd6, 0xf6, 0xa9, 0x54, 0xac, 0xed, 0x82, 0x89, 0xfb, 0x60, 0x42, - 0x6d, 0x45, 0x56, 0x20, 0x96, 0x6d, 0xfc, 0xa4, 0x61, 0xb6, 0x56, 0x56, 0x20, 0x45, 0x09, 0x6c, - 0xc2, 0x3f, 0x52, 0xe1, 0xb5, 0x7f, 0x5c, 0x22, 0x73, 0xf4, 0x5b, 0x20, 0x8b, 0xfe, 0x28, 0xf1, - 0xa3, 0x99, 0x4b, 0x68, 0xe2, 0x98, 0x5c, 0x42, 0xbf, 0x52, 0x22, 0x18, 0x05, 0x79, 0x1a, 0x1e, - 0xa9, 0x0d, 0xdb, 0x23, 0xf5, 0x74, 0xae, 0xf0, 0x1d, 0xe0, 0x84, 0xfa, 0xf5, 0x0a, 0x99, 0xc5, - 0x2e, 0x87, 0x7b, 0xf2, 0x83, 0x59, 0x93, 0x53, 0x2a, 0x30, 0x39, 0x98, 0x8f, 0x20, 0x6c, 0xb7, - 0xc3, 0x7b, 0xe9, 0x8f, 0xb7, 0xc1, 0xa0, 0x20, 0x4a, 0xd1, 0xd5, 0xd7, 0xc5, 0x9c, 0x29, 0x61, - 0x2f, 0x4e, 0xdf, 0x7d, 0xaa, 0x0b, 0x38, 0x28, 0x0c, 0xba, 0xe2, 0x67, 0xe2, 0x80, 0xda, 0x00, - 0xf2, 0xa0, 0x7d, 0x8c, 0x1d, 0xb4, 0xf3, 0x94, 0x6d, 0x06, 0x1c, 0x2c, 0x2c, 0xaa, 0x6a, 0x56, - 0xd9, 0x6f, 0xb6, 0x86, 0x4e, 0x90, 0x60, 0x9a, 0xe7, 0x13, 0x92, 0x14, 0x40, 0x13, 0x43, 0x57, - 0x7a, 0x22, 0x63, 0x02, 0x62, 0x71, 0xf4, 0xa6, 0x94, 0x53, 0x15, 0x2d, 0x80, 0xa9, 0x9b, 0xd4, - 0xff, 0xce, 0x8b, 0x98, 0x7f, 0x34, 0x68, 0x6f, 0xe1, 0xc3, 0x05, 0x22, 0xaa, 0x42, 0x24, 0x14, - 0x15, 0x40, 0xd0, 0xe5, 0xb8, 0xe7, 0xb3, 0x9b, 0x97, 0x3c, 0x7d, 0xfd, 0x14, 0xc3, 0x66, 0x7b, - 0xfe, 0x96, 0x82, 0x82, 0x81, 0xe1, 0xbe, 0xc2, 0xf6, 0xee, 0x21, 0x63, 0xb1, 0x3f, 0x2a, 0x13, - 0xa7, 0xce, 0x62, 0x0f, 0xac, 0x0c, 0xff, 0xfb, 0x64, 0x2e, 0xa6, 0xc6, 0x6a, 0xa7, 0x77, 0x5f, - 0x90, 0x2a, 0x16, 0xfd, 0xde, 0x58, 0x37, 0xeb, 0xf0, 0xdb, 0x86, 0x36, 0x0c, 0x52, 0x74, 0x71, - 0x4a, 0xa2, 0x5e, 0x67, 0x25, 0xc6, 0x77, 0xbf, 0x44, 0x8e, 0x7e, 0x36, 0x25, 0x20, 0x81, 0xa0, - 0xcb, 0x91, 0x07, 0xd8, 0x8f, 0x9b, 0x54, 0x1a, 0x85, 0x61, 0x22, 0xb9, 0x86, 0x25, 0x6c, 0x36, - 0xe0, 0x60, 0x61, 0x61, 0xae, 0xe3, 0xb8, 0xd7, 0xed, 0xb6, 0xd9, 0x09, 0x89, 0xd7, 0xbe, 0x1a, - 0x85, 0xbd, 0x2e, 0x0f, 0x3f, 0x15, 0xb9, 0x8e, 0x1b, 0x7d, 0xa5, 0x90, 0x51, 0x03, 0x17, 0xfd, - 0x6e, 0xcc, 0xfe, 0x17, 0xb7, 0x29, 0xb9, 0x9f, 0xa6, 0xc1, 0x40, 0x20, 0xcb, 0xdc, 0x1e, 0xdb, - 0xaa, 0x58, 0xee, 0x74, 0x0c, 0x8b, 0x72, 0x7c, 0x32, 0xdb, 0x65, 0xdb, 0x91, 0x3c, 0xa6, 0x2d, - 0x34, 0x95, 0xa9, 0xe8, 0x07, 0x9e, 0x23, 0xd9, 0x24, 0x03, 0x36, 0x55, 0xf7, 0xdf, 0x12, 0x26, - 0x6b, 0xc4, 0xe1, 0xd4, 0xa4, 0x88, 0x6d, 0x14, 0xba, 0xd8, 0x33, 0x45, 0x1e, 0x0b, 0xd1, 0x72, - 0x5c, 0x44, 0x4a, 0x82, 0xa4, 0xe2, 0x7c, 0x8d, 0x9f, 0x33, 0xb3, 0xf5, 0x5d, 0xfc, 0x39, 0x1e, - 0x8e, 0x6f, 0x45, 0xed, 0x0a, 0x12, 0x60, 0x90, 0x73, 0xb6, 0xc8, 0xac, 0x48, 0xb0, 0x2d, 0x6c, - 0xf5, 0x8a, 0x65, 0xaf, 0xce, 0x82, 0x59, 0xf8, 0x71, 0x1a, 0x00, 0x76, 0x65, 0x67, 0x8f, 0x3c, - 0x6e, 0xbc, 0xba, 0x91, 0x11, 0xa1, 0xc3, 0x05, 0xc7, 0xd3, 0xe8, 0x05, 0xd8, 0x3e, 0x0e, 0x11, - 0x8e, 0xa7, 0x43, 0x27, 0xf9, 0xbc, 0xd7, 0x4c, 0x82, 0x43, 0xbf, 0xe6, 0x7b, 0x2d, 0xaa, 0x95, - 0xf9, 0xf6, 0x55, 0xdb, 0xc7, 0x68, 0x03, 0xe7, 0x57, 0xb2, 0x10, 0x20, 0xbb, 0x1e, 0xb5, 0xd7, - 0xab, 0xad, 0x4e, 0x2c, 0xe6, 0x60, 0xc2, 0x7a, 0x60, 0xa4, 0x5a, 0xbb, 0xd9, 0x50, 0xe3, 0xd7, - 0x3f, 0x40, 0x57, 0x70, 0xde, 0xe7, 0x0f, 0x76, 0x2a, 0x83, 0x84, 0x3f, 0x6c, 0xf3, 0x7a, 0x21, - 0x13, 0xd8, 0xba, 0x15, 0xc0, 0xdd, 0x58, 0x2a, 0x12, 0xce, 0xba, 0x30, 0x60, 0x35, 0xe1, 0xfc, - 0x38, 0x5d, 0x58, 0x7e, 0x84, 0x0f, 0x51, 0xae, 0x34, 0x59, 0xb2, 0x42, 0x76, 0xca, 0x33, 0x65, - 0x85, 0x83, 0x3b, 0x8d, 0x3e, 0x0c, 0xc8, 0xa8, 0xe5, 0x5c, 0x43, 0x89, 0x63, 0x42, 0x45, 0xe0, - 0xa2, 0x54, 0xed, 0x16, 0x6b, 0x3e, 0xe6, 0x04, 0xc7, 0xe7, 0x0d, 0x6c, 0x8a, 0x90, 0xaa, 0x87, - 0xdb, 0x0a, 0xf6, 0x92, 0xf5, 0x85, 0xd8, 0xe1, 0x76, 0x37, 0x05, 0x1c, 0x14, 0x06, 0x5a, 0x4a, - 0xe8, 0xf5, 0xbf, 0xe9, 0x27, 0xf8, 0xda, 0x10, 0xf3, 0xd9, 0x4e, 0x19, 0x49, 0x9d, 0x74, 0x11, - 0x98, 0x78, 0xa8, 0x03, 0xb1, 0xc3, 0x82, 0xcd, 0x1a, 0xf3, 0xc4, 0x4e, 0xe9, 0xb5, 0x73, 0x8d, - 0x83, 0x41, 0x96, 0x4b, 0xd4, 0xcd, 0xfa, 0x1a, 0xf3, 0xaa, 0xa6, 0x50, 0x29, 0x18, 0x64, 0x39, - 0x86, 0x4a, 0xa5, 0x9f, 0x71, 0x99, 0x2b, 0xe2, 0xe1, 0xee, 0x97, 0xe0, 0x05, 0x5f, 0x72, 0xb9, - 0x4f, 0x16, 0xd4, 0x53, 0x32, 0x3c, 0x6b, 0x5e, 0xbc, 0x38, 0x5f, 0xe4, 0xb9, 0xd0, 0xcc, 0xe4, - 0x7b, 0x2a, 0x52, 0x75, 0x33, 0x45, 0x13, 0xfa, 0x5a, 0xb1, 0xae, 0x8c, 0x2f, 0xe4, 0x5d, 0x19, - 0x67, 0x2f, 0xb9, 0xf4, 0x76, 0x5a, 0xe1, 0x01, 0x15, 0x19, 0xec, 0x31, 0x19, 0xf3, 0x41, 0x50, - 0x59, 0x00, 0x1a, 0x67, 0xe9, 0xcb, 0xe4, 0x4c, 0x1f, 0x4f, 0x0f, 0x15, 0x99, 0xf5, 0x0b, 0x63, - 0xa4, 0xaa, 0xbc, 0x3a, 0xb4, 0x7d, 0xcb, 0x95, 0xf6, 0x58, 0xda, 0x95, 0x36, 0x85, 0x3b, 0xaf, - 0xe9, 0x3d, 0xfb, 0x7a, 0xc6, 0x8b, 0x80, 0x17, 0x72, 0x3f, 0x62, 0xf1, 0x9b, 0x0e, 0x43, 0xbc, - 0x97, 0xa8, 0xd5, 0xfa, 0xb1, 0x63, 0xd5, 0xfa, 0x82, 0x6f, 0xc4, 0xa0, 0x02, 0x4f, 0x77, 0x1e, - 0x8a, 0x96, 0x7a, 0xff, 0xa0, 0x8e, 0x40, 0xe0, 0x65, 0x4c, 0xef, 0x42, 0xa1, 0xcc, 0xf4, 0xae, - 0xc9, 0x93, 0xea, 0x5d, 0x92, 0x02, 0x68, 0x62, 0x98, 0x37, 0xbc, 0x69, 0xbf, 0x67, 0xa1, 0x2e, - 0x30, 0x5c, 0x1c, 0xe2, 0x3d, 0x89, 0x9e, 0x91, 0x37, 0x7c, 0x2d, 0x4d, 0x0f, 0xfa, 0x9b, 0xc0, - 0xdb, 0xe6, 0xf3, 0x8a, 0x21, 0xe8, 0x0e, 0x84, 0x79, 0x7b, 0x46, 0xe7, 0xc8, 0xbc, 0x65, 0x59, - 0xaa, 0x0f, 0xc0, 0xff, 0xf8, 0x5b, 0x25, 0xe6, 0x7f, 0xdc, 0xf6, 0x0f, 0xba, 0x6d, 0x7c, 0x24, - 0x63, 0x74, 0x5d, 0xff, 0x1a, 0x99, 0x4a, 0x44, 0x2b, 0xc5, 0x72, 0x17, 0x1b, 0xdd, 0x62, 0xfe, - 0x58, 0x25, 0x08, 0x24, 0x14, 0x14, 0x41, 0xf7, 0x5f, 0xf0, 0xaf, 0x20, 0x4b, 0x4e, 0xc3, 0xb2, - 0xba, 0x69, 0x5b, 0x56, 0x2f, 0x14, 0x1e, 0xcc, 0x00, 0x0b, 0xeb, 0x3b, 0xf6, 0x10, 0x98, 0xc2, - 0xf6, 0xf0, 0x7b, 0xc4, 0xdd, 0x1b, 0xc4, 0x7e, 0xa3, 0x83, 0xaa, 0x2b, 0x2c, 0xe2, 0x91, 0x4b, - 0xc4, 0x0b, 0x43, 0x46, 0x3b, 0xba, 0xbf, 0x56, 0x26, 0xe7, 0xb2, 0xde, 0x9c, 0x76, 0x5a, 0x64, - 0xa6, 0x6b, 0xa8, 0xcf, 0xc5, 0x2e, 0xb6, 0x9b, 0x0a, 0xb7, 0x56, 0x5d, 0x4c, 0x28, 0x58, 0x54, - 0x31, 0x63, 0x38, 0xbe, 0xa0, 0xad, 0xdc, 0x2b, 0xe5, 0xe1, 0x45, 0x94, 0x6a, 0x66, 0xdd, 0x20, - 0x04, 0x16, 0xd9, 0x11, 0xa4, 0xd7, 0x76, 0xff, 0x6e, 0x89, 0x3c, 0x3a, 0xe0, 0xf6, 0x3b, 0x36, - 0x77, 0x8f, 0x79, 0x21, 0xc5, 0x1b, 0x30, 0xaa, 0x39, 0xee, 0x9b, 0x04, 0x51, 0xea, 0xec, 0xe0, - 0xa5, 0x4a, 0xf5, 0xca, 0x65, 0xb9, 0xc8, 0x51, 0x72, 0xdf, 0x4d, 0x5b, 0xe3, 0x12, 0xa6, 0x7a, - 0xd7, 0xd2, 0xa0, 0xea, 0x7e, 0xbb, 0x42, 0xc6, 0xf9, 0xdb, 0x7c, 0x75, 0xaa, 0x00, 0xf1, 0x64, - 0x7b, 0xc3, 0xe5, 0xfa, 0xd3, 0x7a, 0x12, 0x07, 0x80, 0x24, 0xe3, 0xdc, 0x20, 0x67, 0xd1, 0xbf, - 0x1a, 0x78, 0xed, 0x9a, 0xdf, 0xf6, 0x8e, 0xa4, 0xe2, 0xcd, 0x53, 0x22, 0xcb, 0xac, 0x9f, 0x67, - 0x37, 0xfb, 0x51, 0x20, 0xab, 0x1e, 0xde, 0xdd, 0x49, 0x65, 0xcb, 0xe1, 0xa9, 0x1a, 0xd5, 0xdd, - 0x9d, 0xe3, 0x33, 0xe6, 0xe0, 0xf5, 0xa5, 0x6e, 0x9f, 0x89, 0x61, 0x3c, 0xea, 0x66, 0x9b, 0x15, - 0x36, 0x2e, 0x5e, 0xfc, 0x89, 0x7b, 0xec, 0x8c, 0x74, 0x7b, 0x9f, 0x5a, 0x32, 0xfb, 0x61, 0xbb, - 0x25, 0x1e, 0x23, 0x52, 0xea, 0x54, 0x23, 0x55, 0x0e, 0x7d, 0x35, 0x90, 0xca, 0xae, 0x17, 0xb4, - 0x29, 0x6b, 0x6b, 0x2a, 0x13, 0x36, 0x95, 0x8d, 0x54, 0x39, 0xf4, 0xd5, 0xc0, 0x4c, 0xcf, 0xf3, - 0xa9, 0x10, 0x11, 0x54, 0xd4, 0x52, 0x6f, 0x7e, 0x33, 0x7b, 0x1b, 0x83, 0x27, 0x32, 0xde, 0xfd, - 0x7e, 0xce, 0x7e, 0x45, 0x54, 0xc7, 0x6e, 0xad, 0xd6, 0xac, 0xf7, 0x91, 0x8a, 0x66, 0xaa, 0xfe, - 0x2c, 0xa6, 0x91, 0x55, 0xcf, 0xdd, 0x29, 0x8e, 0xa0, 0xe4, 0xea, 0x14, 0x0c, 0xac, 0x90, 0x1a, - 0xe6, 0xfc, 0x29, 0xf1, 0x94, 0xe7, 0x0e, 0xbc, 0x56, 0x18, 0x1b, 0xef, 0x89, 0xd3, 0x45, 0x46, - 0x75, 0x3e, 0x74, 0x99, 0xa7, 0xfd, 0x96, 0xd7, 0x39, 0x18, 0x64, 0xb9, 0x9d, 0x8d, 0x7a, 0x72, - 0xc4, 0xd9, 0xa8, 0xa7, 0x72, 0xc3, 0xdc, 0x7e, 0x99, 0x6e, 0x19, 0x2c, 0x41, 0x97, 0xb8, 0x33, - 0x88, 0x1e, 0xf0, 0xd1, 0x6d, 0x19, 0xf8, 0x7e, 0x16, 0x36, 0x96, 0x4e, 0x40, 0xcb, 0x7a, 0x00, - 0xbc, 0x0c, 0x9f, 0x78, 0x65, 0x4d, 0xe3, 0xe7, 0x9b, 0xe1, 0xa9, 0x64, 0xf5, 0x13, 0xc9, 0x2c, - 0x88, 0x1a, 0xfc, 0x2e, 0x35, 0x4c, 0x59, 0x67, 0xb5, 0x9b, 0xe2, 0x61, 0x09, 0xa2, 0xce, 0xec, - 0xdc, 0x83, 0x0a, 0xa2, 0xce, 0x26, 0x9e, 0x1f, 0x44, 0x9d, 0x59, 0xef, 0xe1, 0x0b, 0xa2, 0xce, - 0xec, 0xe6, 0x00, 0x65, 0xe7, 0xa3, 0xf2, 0x80, 0x61, 0x31, 0xb5, 0xe7, 0x79, 0x5c, 0x05, 0xac, - 0x30, 0x16, 0x3b, 0xd6, 0x0c, 0x5f, 0x01, 0x1c, 0x06, 0xaa, 0xd4, 0x89, 0x8d, 0x20, 0x64, 0xde, + 0xdd, 0xf6, 0x23, 0x11, 0xd4, 0x35, 0x27, 0x0c, 0x24, 0x51, 0x0a, 0x06, 0x86, 0xfb, 0x8b, 0x65, + 0xb2, 0xa0, 0x23, 0x7c, 0x45, 0xaa, 0xca, 0xd1, 0xf9, 0xf8, 0xb7, 0x2d, 0x1f, 0x7f, 0x5e, 0x06, + 0xca, 0x54, 0xbf, 0x06, 0xfa, 0xfb, 0xdf, 0x4d, 0xf9, 0xfb, 0x5f, 0x1d, 0x92, 0xee, 0xf1, 0xbe, + 0xff, 0x7f, 0x52, 0x26, 0xe7, 0xd3, 0x55, 0xd6, 0xda, 0x5e, 0x70, 0x30, 0xc2, 0x79, 0xfa, 0xaa, + 0x35, 0x4f, 0xaf, 0x0f, 0x37, 0x1e, 0xd6, 0xb9, 0x81, 0x93, 0xe5, 0xa5, 0x26, 0xeb, 0xcd, 0x93, + 0x10, 0x3f, 0x7e, 0xc6, 0xfe, 0x43, 0x89, 0x3c, 0x96, 0x59, 0xef, 0x34, 0x7c, 0x99, 0x5f, 0xb1, + 0x7d, 0x99, 0xaf, 0x9c, 0x60, 0x78, 0x03, 0x9c, 0x9b, 0xff, 0xb5, 0x3c, 0x60, 0x58, 0xcc, 0xed, + 0x75, 0x8b, 0xee, 0xa3, 0x4d, 0xba, 0xdb, 0xc4, 0x37, 0xa8, 0x5d, 0x25, 0x4f, 0xeb, 0x2e, 0xb2, + 0x8d, 0x50, 0x17, 0xd3, 0xb5, 0xbf, 0x94, 0x26, 0xa1, 0xc1, 0x60, 0x52, 0xb0, 0x53, 0x49, 0x95, + 0x47, 0x94, 0x4a, 0x8a, 0xca, 0x98, 0x43, 0x65, 0x6e, 0xa7, 0xbd, 0x69, 0x86, 0x21, 0x6e, 0x60, + 0x51, 0x7d, 0x07, 0x95, 0x53, 0x1e, 0xeb, 0x30, 0x96, 0xbb, 0xe0, 0xac, 0x0f, 0x68, 0x06, 0x4e, + 0xf0, 0x6b, 0x8a, 0xca, 0xf5, 0xa8, 0x68, 0xba, 0xdf, 0xa9, 0x90, 0x4f, 0x1f, 0xc3, 0x76, 0x74, + 0x93, 0xb0, 0x8e, 0x30, 0x5f, 0x4c, 0xfb, 0x99, 0x96, 0x32, 0x2b, 0x5b, 0x8e, 0xa7, 0xd4, 0xc7, + 0x2a, 0x7f, 0xe2, 0x8f, 0xf5, 0x0b, 0xa6, 0x57, 0x90, 0xc7, 0x2c, 0x5e, 0x3d, 0xf1, 0xc2, 0x7a, + 0x70, 0x6e, 0xc2, 0x53, 0xf4, 0x60, 0x60, 0xda, 0xe1, 0xa7, 0x33, 0x07, 0x65, 0x45, 0x4a, 0xe0, + 0xad, 0x2e, 0x2c, 0x34, 0xae, 0x8d, 0xe8, 0x5b, 0x5d, 0x12, 0x00, 0x1a, 0xc7, 0x0a, 0x88, 0x28, + 0xe7, 0x06, 0x44, 0xfc, 0x9b, 0x12, 0x39, 0x97, 0xee, 0xc4, 0x69, 0x48, 0x9d, 0x86, 0x2d, 0x75, + 0x96, 0x87, 0xfb, 0xf6, 0x03, 0x04, 0xce, 0x7f, 0x24, 0xe4, 0x91, 0xbe, 0xcd, 0x8a, 0x4f, 0xe3, + 0x4f, 0x96, 0xc8, 0x99, 0x3d, 0x66, 0x28, 0x18, 0x97, 0x73, 0xc4, 0xc0, 0x72, 0x6e, 0x26, 0x1d, + 0x7b, 0xa7, 0x87, 0x9b, 0x3d, 0x7d, 0x28, 0xd0, 0xdf, 0x98, 0xf3, 0x73, 0x74, 0xaa, 0xbd, 0x7b, + 0x71, 0x5f, 0xde, 0x73, 0xc1, 0x47, 0x5f, 0xca, 0xf1, 0xc9, 0xe5, 0x64, 0x4c, 0x5f, 0x5d, 0xc4, + 0xa0, 0xcf, 0x2c, 0x2c, 0xc8, 0x6c, 0x95, 0x2a, 0x01, 0x3c, 0xa9, 0x16, 0xaa, 0x7d, 0x85, 0xae, + 0x8b, 0x65, 0x5d, 0x15, 0xe0, 0x32, 0x49, 0x42, 0x40, 0x51, 0x74, 0xde, 0x23, 0xd5, 0x3d, 0x79, + 0x1f, 0x47, 0x08, 0xbd, 0x9c, 0x9d, 0x25, 0xf3, 0xfa, 0x0e, 0x0f, 0x57, 0x57, 0x20, 0xd0, 0x44, + 0x9d, 0x6b, 0xa4, 0xd2, 0xd9, 0x8d, 0xc5, 0x15, 0xd9, 0xbc, 0x80, 0x18, 0x3b, 0xfc, 0x88, 0x5f, + 0xfa, 0xa3, 0x85, 0x80, 0x24, 0x90, 0x52, 0xb4, 0xd3, 0x12, 0xce, 0xe8, 0x1c, 0x4a, 0xb0, 0x5a, + 0xeb, 0xa7, 0x44, 0x0b, 0x01, 0x49, 0xb0, 0xc8, 0x3b, 0xbc, 0x5a, 0x20, 0x3c, 0xcd, 0x39, 0xf7, + 0xa7, 0xfb, 0x2e, 0x50, 0xf0, 0x0c, 0x6c, 0xac, 0x18, 0x38, 0x21, 0x74, 0x31, 0x37, 0x59, 0xfa, + 0x63, 0xe1, 0x08, 0xc8, 0x4b, 0x8a, 0xdb, 0x97, 0x2a, 0x99, 0x9f, 0x88, 0xf1, 0x72, 0x10, 0xb4, + 0x18, 0x55, 0xbf, 0xbb, 0xbf, 0x1b, 0x0b, 0x43, 0x3f, 0x8f, 0x6a, 0x5f, 0x22, 0x6b, 0x41, 0x95, + 0x95, 0x83, 0xa0, 0xe5, 0xd4, 0x48, 0x79, 0xb7, 0x29, 0xd2, 0x1e, 0xe6, 0x98, 0xa6, 0xf6, 0x0d, + 0xce, 0xd5, 0x09, 0x0c, 0x85, 0xdb, 0x58, 0x03, 0x5a, 0x9f, 0xea, 0x23, 0x93, 0xbb, 0xfc, 0x52, + 0x9e, 0x48, 0x71, 0x78, 0x39, 0xef, 0xe2, 0x60, 0xdf, 0x0d, 0x3e, 0x7e, 0x25, 0x41, 0x00, 0x40, + 0x92, 0xa3, 0xfb, 0x30, 0xd9, 0x55, 0xb7, 0x0c, 0x45, 0x8e, 0xc3, 0xe5, 0xe1, 0x6e, 0x25, 0x0a, + 0x33, 0x58, 0x95, 0x82, 0x41, 0x11, 0x79, 0xde, 0x93, 0x19, 0xdc, 0x59, 0x7e, 0xc3, 0x5c, 0x9e, + 0xcf, 0x4c, 0xf8, 0xce, 0x79, 0x5e, 0x81, 0x40, 0x13, 0x75, 0x7a, 0x64, 0xf6, 0x30, 0xee, 0xee, + 0xfb, 0x72, 0xe9, 0xb3, 0xa4, 0x87, 0xd3, 0x57, 0xbe, 0x98, 0x93, 0xc9, 0x52, 0x54, 0x09, 0xa2, + 0xa4, 0xe7, 0xb5, 0xfb, 0x24, 0x18, 0xcb, 0x1e, 0x74, 0xdb, 0x24, 0x0b, 0x76, 0x2b, 0xee, 0xef, + 0x8d, 0xf7, 0x6f, 0x12, 0x4c, 0x87, 0xfb, 0xf9, 0xfe, 0xb3, 0xbd, 0xb7, 0x86, 0xb7, 0x51, 0x1e, + 0xe0, 0x29, 0x1f, 0x95, 0xb1, 0x8f, 0x74, 0x33, 0x77, 0x00, 0x21, 0x65, 0x87, 0x35, 0x75, 0xf8, + 0x14, 0xa9, 0x34, 0x95, 0xd9, 0x70, 0x18, 0xd0, 0x66, 0x5a, 0x6d, 0xaa, 0x7c, 0x62, 0xb5, 0xe9, + 0x0e, 0x9d, 0x6f, 0xdc, 0xe9, 0x75, 0x8e, 0x86, 0x21, 0xd3, 0x1a, 0x30, 0x79, 0xbd, 0x26, 0x48, + 0x80, 0x22, 0x86, 0x13, 0xf7, 0x78, 0x7a, 0x10, 0xe0, 0x33, 0xb0, 0xc8, 0xaf, 0xc9, 0xed, 0xe9, + 0x0d, 0x31, 0x13, 0x8f, 0xd7, 0x8f, 0x43, 0xfe, 0x38, 0x0f, 0x01, 0x8e, 0x6f, 0xec, 0x34, 0xd5, + 0xb0, 0x7f, 0x50, 0xca, 0x50, 0x1a, 0xb8, 0xe2, 0xfc, 0x45, 0x5b, 0x71, 0x7e, 0x2e, 0xad, 0x38, + 0xf7, 0x99, 0xb9, 0x96, 0xce, 0x5c, 0x3c, 0xc7, 0x5c, 0xd1, 0x24, 0x12, 0xee, 0xff, 0x2e, 0x91, + 0x4a, 0x3d, 0x6c, 0x8d, 0xd0, 0x90, 0xbe, 0x6a, 0x19, 0xd2, 0xcf, 0xe6, 0x3e, 0xf5, 0x31, 0xd0, + 0x6c, 0xbe, 0x95, 0x32, 0x9b, 0x3f, 0x97, 0x4f, 0xea, 0x78, 0x23, 0xf9, 0xc3, 0x0a, 0x31, 0x1f, + 0x2b, 0x71, 0x7e, 0xeb, 0x24, 0x21, 0x7e, 0x95, 0x62, 0xef, 0x97, 0x88, 0x36, 0x58, 0x40, 0x8c, + 0xbc, 0xff, 0xf3, 0x27, 0x36, 0xd2, 0xef, 0x8e, 0x1f, 0xec, 0xed, 0x27, 0x7e, 0x2b, 0x3d, 0xb0, + 0xd3, 0x8b, 0xf4, 0xfb, 0x6f, 0x25, 0x32, 0x9f, 0x6a, 0xdd, 0x39, 0xc8, 0xba, 0x42, 0x70, 0x52, + 0xcb, 0xf8, 0x4c, 0xee, 0xa5, 0x83, 0x65, 0x42, 0x94, 0x37, 0x57, 0xda, 0xaf, 0x6c, 0x2f, 0x57, + 0xee, 0xde, 0x18, 0x0c, 0x0c, 0xcc, 0x01, 0x90, 0x84, 0xdd, 0xb0, 0x1d, 0xee, 0x1d, 0x5d, 0xf7, + 0xe5, 0x1d, 0x74, 0xe5, 0xaa, 0xdf, 0xd6, 0x20, 0x30, 0xf1, 0x30, 0x3f, 0x51, 0xfa, 0xad, 0x9b, + 0x3f, 0x65, 0xd4, 0x3f, 0x39, 0x8c, 0xfa, 0x3b, 0x25, 0xb2, 0x80, 0xad, 0xb3, 0x78, 0x06, 0x19, + 0x8f, 0xa7, 0x92, 0x35, 0x97, 0x8e, 0x49, 0xd6, 0x8c, 0x17, 0x1a, 0x92, 0x56, 0xd8, 0x93, 0xc9, + 0x4b, 0x0c, 0x29, 0x86, 0xa5, 0x20, 0xa0, 0x02, 0x8f, 0xf6, 0x49, 0x5c, 0x56, 0x30, 0xf1, 0x68, + 0x29, 0x08, 0xa8, 0xcc, 0xe5, 0x3c, 0x96, 0x9d, 0xcb, 0x99, 0xe7, 0x7a, 0x11, 0xe7, 0xe8, 0x62, + 0x67, 0x36, 0x72, 0xbd, 0xc8, 0x03, 0x76, 0x8d, 0xe3, 0xfe, 0xb3, 0x0a, 0x99, 0xc1, 0x70, 0x32, + 0x15, 0x6b, 0xfb, 0xaa, 0x15, 0x6b, 0xfb, 0x54, 0x2a, 0xd6, 0x76, 0xc1, 0xc4, 0x7d, 0x30, 0xa1, + 0xb6, 0x22, 0x2b, 0x10, 0xcb, 0x36, 0x7e, 0xd2, 0x30, 0x5b, 0x2b, 0x2b, 0x90, 0xa2, 0x04, 0x36, + 0xe1, 0x1f, 0xaa, 0xf0, 0xda, 0x3f, 0x2e, 0x91, 0x39, 0xfa, 0x2d, 0x90, 0x45, 0x7f, 0x98, 0xf8, + 0xd1, 0xcc, 0x25, 0x34, 0x71, 0x4c, 0x2e, 0xa1, 0x5f, 0x2e, 0x11, 0x8c, 0x82, 0x3c, 0x0d, 0x8f, + 0xd4, 0x86, 0xed, 0x91, 0x7a, 0x3a, 0x57, 0xf8, 0x0e, 0x70, 0x42, 0xfd, 0x5a, 0x85, 0xcc, 0x62, + 0x97, 0xc3, 0x3d, 0xf9, 0xc1, 0xac, 0xc9, 0x29, 0x15, 0x98, 0x1c, 0xcc, 0x47, 0x10, 0xb6, 0xdb, + 0xe1, 0xbd, 0xf4, 0xc7, 0xdb, 0x60, 0xa5, 0x20, 0xa0, 0xe8, 0xea, 0xeb, 0x62, 0xce, 0x94, 0xb0, + 0x17, 0xa7, 0xef, 0x3e, 0xd5, 0x45, 0x39, 0x28, 0x0c, 0xba, 0xe2, 0x67, 0xe2, 0x80, 0xda, 0x00, + 0xf2, 0xa0, 0x7d, 0x8c, 0x1d, 0xb4, 0xf3, 0x94, 0x6d, 0x46, 0x39, 0x58, 0x58, 0x54, 0xd5, 0xac, + 0xb2, 0xdf, 0x6c, 0x0d, 0x9d, 0x20, 0xc1, 0x34, 0xcf, 0x27, 0x24, 0x29, 0x80, 0x26, 0x86, 0xae, + 0xf4, 0x44, 0xc6, 0x04, 0xc4, 0xe2, 0xe8, 0x4d, 0x29, 0xa7, 0x2a, 0x5a, 0x00, 0x53, 0x37, 0xa9, + 0xff, 0x9d, 0x17, 0x31, 0xff, 0x68, 0xd0, 0xde, 0xc2, 0x87, 0x0b, 0x44, 0x54, 0x85, 0x48, 0x28, + 0x2a, 0x0a, 0x41, 0xc3, 0x71, 0xcf, 0x67, 0x37, 0x2f, 0x79, 0xfa, 0xfa, 0x29, 0x86, 0xcd, 0xf6, + 0xfc, 0x2d, 0x55, 0x0a, 0x06, 0x86, 0xfb, 0x0a, 0xdb, 0xbb, 0x87, 0x8c, 0xc5, 0xfe, 0xa8, 0x4c, + 0x9c, 0x3a, 0x8b, 0x3d, 0xb0, 0x32, 0xfc, 0xef, 0x93, 0xb9, 0x98, 0x1a, 0xab, 0x9d, 0xde, 0x7d, + 0x41, 0xaa, 0x58, 0xf4, 0x7b, 0x63, 0xdd, 0xac, 0xc3, 0x6f, 0x1b, 0xda, 0x65, 0x90, 0xa2, 0x8b, + 0x53, 0x12, 0xf5, 0x3a, 0x2b, 0x31, 0xbe, 0xfb, 0x25, 0x72, 0xf4, 0xb3, 0x29, 0x01, 0x59, 0x08, + 0x1a, 0x8e, 0x3c, 0xc0, 0x7e, 0xdc, 0xa4, 0xd2, 0x28, 0x0c, 0x13, 0xc9, 0x35, 0x2c, 0x61, 0xb3, + 0x51, 0x0e, 0x16, 0x16, 0xe6, 0x3a, 0x8e, 0x7b, 0xdd, 0x6e, 0x9b, 0x9d, 0x90, 0x78, 0xed, 0xab, + 0x51, 0xd8, 0xeb, 0xf2, 0xf0, 0x53, 0x91, 0xeb, 0xb8, 0xd1, 0x07, 0x85, 0x8c, 0x1a, 0xb8, 0xe8, + 0x77, 0x63, 0xf6, 0xbf, 0xb8, 0x4d, 0xc9, 0xfd, 0x34, 0x0d, 0x56, 0x04, 0x12, 0xe6, 0xf6, 0xd8, + 0x56, 0xc5, 0x72, 0xa7, 0x63, 0x58, 0x94, 0xe3, 0x93, 0xd9, 0x2e, 0xdb, 0x8e, 0xe4, 0x31, 0x6d, + 0xa1, 0xa9, 0x4c, 0x45, 0x3f, 0xf0, 0x1c, 0xc9, 0x26, 0x19, 0xb0, 0xa9, 0xba, 0xff, 0x8e, 0x30, + 0x59, 0x23, 0x0e, 0xa7, 0x26, 0x45, 0x6c, 0xa3, 0xd0, 0xc5, 0x9e, 0x29, 0xf2, 0x58, 0x88, 0x96, + 0xe3, 0x22, 0x52, 0x12, 0x24, 0x15, 0xe7, 0x6b, 0xfc, 0x9c, 0x99, 0xad, 0xef, 0xe2, 0xcf, 0xf1, + 0x70, 0x7c, 0x2b, 0x6a, 0x57, 0x90, 0x00, 0x83, 0x9c, 0xb3, 0x45, 0x66, 0x45, 0x82, 0x6d, 0x61, + 0xab, 0x57, 0x2c, 0x7b, 0x75, 0x16, 0x4c, 0xe0, 0xc7, 0xe9, 0x02, 0xb0, 0x2b, 0x3b, 0x7b, 0xe4, + 0x71, 0xe3, 0xd5, 0x8d, 0x8c, 0x08, 0x1d, 0x2e, 0x38, 0x9e, 0x46, 0x2f, 0xc0, 0xf6, 0x71, 0x88, + 0x70, 0x3c, 0x1d, 0x3a, 0xc9, 0xe7, 0xbd, 0x66, 0x12, 0x1c, 0xfa, 0x35, 0xdf, 0x6b, 0x51, 0xad, + 0xcc, 0xb7, 0xaf, 0xda, 0x3e, 0x46, 0x1b, 0x38, 0xbf, 0x92, 0x85, 0x00, 0xd9, 0xf5, 0xa8, 0xbd, + 0x5e, 0x6d, 0x75, 0x62, 0x31, 0x07, 0x13, 0xd6, 0x03, 0x23, 0xd5, 0xda, 0xcd, 0x86, 0x1a, 0xbf, + 0xfe, 0x01, 0xba, 0x82, 0xf3, 0x3e, 0x7f, 0xb0, 0x53, 0x19, 0x24, 0xfc, 0x61, 0x9b, 0xd7, 0x0b, + 0x99, 0xc0, 0xd6, 0xad, 0x00, 0xee, 0xc6, 0x52, 0x91, 0x70, 0xd6, 0x85, 0x01, 0xab, 0x09, 0xe7, + 0x47, 0xe9, 0xc2, 0xf2, 0x23, 0x7c, 0x88, 0x72, 0xa5, 0xc9, 0x92, 0x15, 0xb2, 0x53, 0x9e, 0x29, + 0x2b, 0x1c, 0xdc, 0x69, 0xf4, 0x61, 0x40, 0x46, 0x2d, 0xe7, 0x1a, 0x4a, 0x1c, 0xb3, 0x54, 0x04, + 0x2e, 0x4a, 0xd5, 0x6e, 0xb1, 0xe6, 0x63, 0x4e, 0x70, 0x7c, 0xde, 0xc0, 0xa6, 0x08, 0xa9, 0x7a, + 0xb8, 0xad, 0x60, 0x2f, 0x59, 0x5f, 0x88, 0x1d, 0x6e, 0x77, 0x53, 0x94, 0x83, 0xc2, 0x40, 0x4b, + 0x09, 0xbd, 0xfe, 0x37, 0xfd, 0x04, 0x5f, 0x1b, 0x62, 0x3e, 0xdb, 0x29, 0x23, 0xa9, 0x93, 0x06, + 0x81, 0x89, 0x87, 0x3a, 0x10, 0x3b, 0x2c, 0xd8, 0xac, 0x31, 0x4f, 0xec, 0x94, 0x5e, 0x3b, 0xd7, + 0x78, 0x31, 0x48, 0xb8, 0x44, 0xdd, 0xac, 0xaf, 0x31, 0xaf, 0x6a, 0x0a, 0x95, 0x16, 0x83, 0x84, + 0x63, 0xa8, 0x54, 0xfa, 0x19, 0x97, 0xb9, 0x22, 0x1e, 0xee, 0x7e, 0x09, 0x5e, 0xf0, 0x25, 0x97, + 0xfb, 0x64, 0x41, 0x3d, 0x25, 0xc3, 0xb3, 0xe6, 0xc5, 0x8b, 0xf3, 0x45, 0x9e, 0x0b, 0xcd, 0x4c, + 0xbe, 0xa7, 0x22, 0x55, 0x37, 0x53, 0x34, 0xa1, 0xaf, 0x15, 0xeb, 0xca, 0xf8, 0x42, 0xde, 0x95, + 0x71, 0xf6, 0x92, 0x4b, 0x6f, 0xa7, 0x15, 0x1e, 0x50, 0x91, 0xc1, 0x1e, 0x93, 0x31, 0x1f, 0x04, + 0x95, 0x00, 0xd0, 0x38, 0x4b, 0x5f, 0x26, 0x67, 0xfa, 0x78, 0x7a, 0xa8, 0xc8, 0xac, 0x9f, 0x1f, + 0x23, 0x55, 0xe5, 0xd5, 0xa1, 0xed, 0x5b, 0xae, 0xb4, 0xc7, 0xd2, 0xae, 0xb4, 0x29, 0xdc, 0x79, + 0x4d, 0xef, 0xd9, 0xd7, 0x33, 0x5e, 0x04, 0xbc, 0x90, 0xfb, 0x11, 0x8b, 0xdf, 0x74, 0x18, 0xe2, + 0xbd, 0x44, 0xad, 0xd6, 0x8f, 0x1d, 0xab, 0xd6, 0x17, 0x7c, 0x23, 0x06, 0x15, 0x78, 0xba, 0xf3, + 0x50, 0xb4, 0xd4, 0xfb, 0x07, 0x75, 0x2c, 0x04, 0x0e, 0x63, 0x7a, 0x17, 0x0a, 0x65, 0xa6, 0x77, + 0x4d, 0x9e, 0x54, 0xef, 0x92, 0x14, 0x40, 0x13, 0xc3, 0xbc, 0xe1, 0x4d, 0xfb, 0x3d, 0x0b, 0x75, + 0x81, 0xe1, 0xe2, 0x10, 0xef, 0x49, 0xf4, 0x8c, 0xbc, 0xe1, 0x6b, 0x69, 0x7a, 0xd0, 0xdf, 0x04, + 0xde, 0x36, 0x9f, 0x57, 0x0c, 0x41, 0x77, 0x20, 0xcc, 0xdb, 0x33, 0x3a, 0x47, 0xe6, 0x2d, 0xcb, + 0x52, 0x7d, 0x00, 0xfe, 0xc7, 0xdf, 0x2c, 0x31, 0xff, 0xe3, 0xb6, 0x7f, 0xd0, 0x6d, 0xe3, 0x23, + 0x19, 0xa3, 0xeb, 0xfa, 0xd7, 0xc8, 0x54, 0x22, 0x5a, 0x29, 0x96, 0xbb, 0xd8, 0xe8, 0x16, 0xf3, + 0xc7, 0x2a, 0x41, 0x20, 0x4b, 0x41, 0x11, 0x74, 0xff, 0x25, 0xff, 0x0a, 0x12, 0x72, 0x1a, 0x96, + 0xd5, 0x4d, 0xdb, 0xb2, 0x7a, 0xa1, 0xf0, 0x60, 0x06, 0x58, 0x58, 0xdf, 0xb1, 0x87, 0xc0, 0x14, + 0xb6, 0x87, 0xdf, 0x23, 0xee, 0xde, 0x20, 0xf6, 0x1b, 0x1d, 0x54, 0x5d, 0x61, 0x11, 0x8f, 0x5c, + 0x22, 0x5e, 0x18, 0x32, 0xda, 0xd1, 0xfd, 0xd5, 0x32, 0x39, 0x97, 0xf5, 0xe6, 0xb4, 0xd3, 0x22, + 0x33, 0x5d, 0x43, 0x7d, 0x2e, 0x76, 0xb1, 0xdd, 0x54, 0xb8, 0xb5, 0xea, 0x62, 0x96, 0x82, 0x45, + 0x15, 0x33, 0x86, 0xe3, 0x0b, 0xda, 0xca, 0xbd, 0x52, 0x1e, 0x5e, 0x44, 0xa9, 0x66, 0xd6, 0x0d, + 0x42, 0x60, 0x91, 0x1d, 0x41, 0x7a, 0x6d, 0xf7, 0xef, 0x95, 0xc8, 0xa3, 0x03, 0x6e, 0xbf, 0x63, + 0x73, 0xf7, 0x98, 0x17, 0x52, 0xbc, 0x01, 0xa3, 0x9a, 0xe3, 0xbe, 0x49, 0x10, 0x50, 0x67, 0x07, + 0x2f, 0x55, 0xaa, 0x57, 0x2e, 0xcb, 0x45, 0x8e, 0x92, 0xfb, 0x6e, 0xda, 0x1a, 0x97, 0x30, 0xd5, + 0xbb, 0x96, 0x06, 0x55, 0xf7, 0xdb, 0x15, 0x32, 0xce, 0xdf, 0xe6, 0xab, 0x53, 0x05, 0x88, 0x27, + 0xdb, 0x1b, 0x2e, 0xd7, 0x9f, 0xd6, 0x93, 0x78, 0x01, 0x48, 0x32, 0xce, 0x0d, 0x72, 0x16, 0xfd, + 0xab, 0x81, 0xd7, 0xae, 0xf9, 0x6d, 0xef, 0x48, 0x2a, 0xde, 0x3c, 0x25, 0xb2, 0xcc, 0xfa, 0x79, + 0x76, 0xb3, 0x1f, 0x05, 0xb2, 0xea, 0xe1, 0xdd, 0x9d, 0x54, 0xb6, 0x1c, 0x9e, 0xaa, 0x51, 0xdd, + 0xdd, 0x39, 0x3e, 0x63, 0x0e, 0x5e, 0x5f, 0xea, 0xf6, 0x99, 0x18, 0xc6, 0xa3, 0x6e, 0xb6, 0x59, + 0x61, 0xe3, 0xe2, 0xc5, 0x9f, 0xb8, 0xc7, 0xce, 0x48, 0xb7, 0xf7, 0xa9, 0x25, 0xb3, 0x1f, 0xb6, + 0x5b, 0xe2, 0x31, 0x22, 0xa5, 0x4e, 0x35, 0x52, 0x70, 0xe8, 0xab, 0x81, 0x54, 0x76, 0xbd, 0xa0, + 0x4d, 0x59, 0x5b, 0x53, 0x99, 0xb0, 0xa9, 0x6c, 0xa4, 0xe0, 0xd0, 0x57, 0x03, 0x33, 0x3d, 0xcf, + 0xa7, 0x42, 0x44, 0x50, 0x51, 0x4b, 0xbd, 0xf9, 0xcd, 0xec, 0x6d, 0x0c, 0x9e, 0xc8, 0x78, 0xf7, + 0xfb, 0x39, 0xfb, 0x15, 0x51, 0x1d, 0xbb, 0xb5, 0x5a, 0xb3, 0xde, 0x47, 0x2a, 0x9a, 0xa9, 0xfa, + 0xb3, 0x98, 0x46, 0x56, 0x3d, 0x77, 0xa7, 0x38, 0x82, 0x92, 0xab, 0xd3, 0x62, 0x60, 0x40, 0x6a, + 0x98, 0xf3, 0xa7, 0xc4, 0x53, 0x9e, 0x3b, 0xf0, 0x5a, 0x61, 0x6c, 0xbc, 0x27, 0x4e, 0x17, 0x19, + 0xd5, 0xf9, 0xd0, 0x65, 0x9e, 0xf6, 0x5b, 0x5e, 0xe7, 0xc5, 0x20, 0xe1, 0x76, 0x36, 0xea, 0xc9, + 0x11, 0x67, 0xa3, 0x9e, 0xca, 0x0d, 0x73, 0xfb, 0x25, 0xba, 0x65, 0xb0, 0x04, 0x5d, 0xe2, 0xce, + 0x20, 0x7a, 0xc0, 0x47, 0xb7, 0x65, 0xe0, 0xfb, 0x59, 0xd8, 0x58, 0x3a, 0x01, 0x2d, 0xeb, 0x01, + 0x70, 0x18, 0x3e, 0xf1, 0xca, 0x9a, 0xc6, 0xcf, 0x37, 0xc3, 0x53, 0xc9, 0xea, 0x27, 0x92, 0x59, + 0x10, 0x35, 0xf8, 0x5d, 0x6a, 0x98, 0xb2, 0xce, 0x6a, 0x37, 0xc5, 0xc3, 0x12, 0x44, 0x9d, 0xd9, + 0xb9, 0x07, 0x15, 0x44, 0x9d, 0x4d, 0x3c, 0x3f, 0x88, 0x3a, 0xb3, 0xde, 0xc3, 0x17, 0x44, 0x9d, + 0xd9, 0xcd, 0x01, 0xca, 0xce, 0x47, 0xe5, 0x01, 0xc3, 0x62, 0x6a, 0xcf, 0xf3, 0xb8, 0x0a, 0x18, + 0x30, 0x16, 0x3b, 0xd6, 0x0c, 0x5f, 0x01, 0xbc, 0x0c, 0x14, 0xd4, 0x89, 0x8d, 0x20, 0x64, 0xde, 0xc9, 0xf5, 0x13, 0x7e, 0xe0, 0x65, 0xdb, 0xcf, 0x61, 0x5e, 0xc5, 0x4b, 0x45, 0x26, 0x63, 0xb8, 0x8a, 0xd2, 0x64, 0x2b, 0x27, 0xd1, 0x64, 0x67, 0xb2, 0xb5, 0xd8, 0x25, 0xba, 0x61, 0x9c, 0xdc, - 0x32, 0xfd, 0x6f, 0x25, 0xf2, 0xe9, 0x63, 0x38, 0x8c, 0x8b, 0x16, 0x6b, 0x52, 0x0d, 0xd1, 0xd2, + 0x32, 0xfd, 0xef, 0x25, 0xf2, 0xe9, 0x63, 0x38, 0x8c, 0x8b, 0x16, 0x6b, 0x52, 0x0d, 0xd1, 0xd2, 0x37, 0xb1, 0x75, 0x72, 0x6e, 0x97, 0x9a, 0xe5, 0x47, 0xec, 0xf8, 0xd9, 0x6f, 0x49, 0x0c, 0xb1, 0x97, 0xaa, 0x37, 0xf7, 0x36, 0x32, 0x70, 0x20, 0xb3, 0x26, 0x7a, 0x85, 0xc2, 0x1d, 0x96, 0x00, 0xad, 0xa5, 0x6f, 0x0a, 0xb2, 0xf9, 0xab, 0x68, 0xaf, 0xd0, 0xad, 0x3e, 0x0c, 0xc8, 0xa8, 0xe5, 0xfe, 0x7e, 0x09, 0xe5, 0x48, 0xc6, 0x6b, 0x34, 0xd6, 0x43, 0xaa, 0x46, 0x70, 0x71, 0xff, 0x43, 0xaa, 0xcc, 0xdf, 0x63, 0xe3, 0xf2, 0x29, 0x8a, 0x75, 0x60, 0x95, 0x95, 0xce, 0x5d, 0x04, 0xd5, 0x2b, 0x0c, 0x7c, 0x78, 0xa9, 0x15, 0x1c, 0x06, 0x71, 0x18, 0x15, 0x78, 0xb7, 0xb0, 0x2f, 0x58, - 0x47, 0xef, 0x32, 0x35, 0x4e, 0x04, 0x24, 0x35, 0xf7, 0xaf, 0x95, 0xc9, 0xac, 0x6c, 0xef, 0xed, + 0x47, 0xef, 0x32, 0x35, 0x4e, 0x04, 0x24, 0x35, 0xf7, 0xaf, 0x97, 0xc9, 0xac, 0x6c, 0xef, 0xed, 0x5e, 0xc8, 0x16, 0xe2, 0xa8, 0xa4, 0xe3, 0xdb, 0x96, 0x74, 0xbc, 0x54, 0xec, 0x66, 0x01, 0xeb, 0xd4, 0x40, 0xa9, 0xf8, 0xd5, 0x94, 0x54, 0xbc, 0x3c, 0x0c, 0xd1, 0x5c, 0x6b, 0xf5, 0x8c, 0x85, 0xff, 0x10, 0x25, 0x9e, 0xcc, 0x1a, 0xce, 0x00, 0xe9, 0xf7, 0xed, 0x72, 0x6a, 0x18, 0x4c, 0xea, 0x7d, 0x93, 0x8c, 0xed, 0x7b, 0x51, 0x4b, 0xb8, 0xe6, 0xdf, 0x1c, 0xf2, 0x53, 0x50, 0xf5, 0x38, - 0x6a, 0x71, 0xd9, 0xf5, 0x92, 0xca, 0x81, 0x4f, 0x41, 0xb9, 0x61, 0x86, 0xac, 0x51, 0xe7, 0x0d, - 0xcc, 0x91, 0x1f, 0x76, 0x55, 0x14, 0xc9, 0x53, 0x3c, 0x3f, 0x3e, 0x42, 0x28, 0x05, 0xc7, 0x6e, - 0x0e, 0xc1, 0x20, 0xf0, 0x97, 0x7c, 0x52, 0x55, 0x4d, 0x8f, 0x30, 0xa0, 0xed, 0x0f, 0x2a, 0xe4, - 0x6c, 0x06, 0xab, 0x38, 0x3f, 0x65, 0xcd, 0xda, 0x17, 0x86, 0xe6, 0xb5, 0x4f, 0x38, 0x6f, 0x3f, - 0xc5, 0x74, 0xcc, 0x96, 0xe0, 0x8d, 0x13, 0x34, 0x4f, 0x15, 0xd1, 0x74, 0xf3, 0x08, 0xca, 0x6f, - 0x1e, 0x9b, 0x3d, 0xa5, 0xc9, 0xc7, 0x66, 0x54, 0x3f, 0x47, 0xf8, 0x8d, 0x7f, 0x76, 0x8c, 0x9c, - 0xcb, 0xba, 0xbd, 0xe4, 0xfc, 0x5c, 0x29, 0x95, 0xba, 0xf6, 0x4b, 0xc3, 0x5f, 0x81, 0xe2, 0xf9, - 0x6c, 0xc5, 0xf5, 0xe4, 0x65, 0x3b, 0x99, 0x6d, 0xee, 0x6c, 0x8b, 0xd6, 0x59, 0x68, 0x70, 0xc4, - 0xb3, 0x10, 0x4b, 0x79, 0xf0, 0xd6, 0x09, 0xba, 0x22, 0x12, 0x19, 0xc7, 0xa9, 0xd0, 0x60, 0x09, - 0xce, 0x0f, 0x0d, 0x96, 0x7d, 0x58, 0xda, 0xc3, 0x14, 0xb6, 0x6a, 0x5c, 0x23, 0x64, 0x81, 0x00, - 0xf7, 0x24, 0xa3, 0xd7, 0x23, 0x64, 0x83, 0xbf, 0x51, 0x22, 0xa9, 0xe3, 0x61, 0x3c, 0xb1, 0x66, - 0xa6, 0x5c, 0xea, 0xc4, 0xda, 0xb0, 0xe2, 0x28, 0x06, 0x55, 0x77, 0xfc, 0x74, 0x4e, 0x55, 0xa0, - 0x30, 0x60, 0x25, 0xea, 0xc5, 0xac, 0xca, 0xa0, 0x17, 0xb3, 0xd0, 0xc2, 0x69, 0xfb, 0x87, 0xbe, - 0x34, 0x2b, 0x95, 0xf0, 0xde, 0x42, 0x20, 0xf0, 0x32, 0xf7, 0x7b, 0x15, 0x32, 0xc1, 0x6d, 0xb7, - 0x11, 0x6e, 0xcb, 0x75, 0x61, 0x46, 0x15, 0xba, 0x47, 0xc4, 0x7b, 0xb3, 0x8c, 0x76, 0x16, 0x67, - 0x28, 0x35, 0x36, 0x6d, 0x7a, 0x39, 0xcb, 0xd6, 0xe8, 0x97, 0x52, 0x91, 0x51, 0x84, 0xd3, 0x30, - 0xe6, 0x62, 0x9f, 0x90, 0x98, 0x3d, 0xba, 0x82, 0x34, 0x44, 0x52, 0xa6, 0x57, 0x0b, 0xf5, 0xa3, - 0xa1, 0xaa, 0xf1, 0xde, 0xe8, 0x6c, 0x30, 0xaa, 0x00, 0x0c, 0xda, 0x4b, 0xaf, 0x93, 0xaa, 0x42, - 0xce, 0xd3, 0x78, 0x67, 0x4c, 0x96, 0xfc, 0x53, 0x64, 0x3e, 0xd5, 0xd6, 0x50, 0x0a, 0xf3, 0x77, - 0xa9, 0x32, 0xd1, 0xf7, 0xd8, 0x1f, 0x26, 0xf6, 0x3a, 0xd7, 0xce, 0x30, 0xda, 0xc5, 0x07, 0x3e, - 0x89, 0xb9, 0xaf, 0x5f, 0xa8, 0xce, 0x28, 0x85, 0xcc, 0xd6, 0x64, 0x9a, 0xb9, 0x72, 0x76, 0x9a, - 0x39, 0xf6, 0x0e, 0x05, 0xef, 0xfb, 0x69, 0x68, 0x40, 0x9b, 0xb6, 0x06, 0xf4, 0x4c, 0x11, 0x36, - 0x18, 0xa0, 0xfa, 0xfc, 0xd5, 0x12, 0x71, 0x38, 0x42, 0xfa, 0xf1, 0x25, 0xee, 0x04, 0x31, 0x74, - 0x76, 0xcd, 0x37, 0xaa, 0x04, 0x0c, 0xac, 0x21, 0xd3, 0xee, 0xaa, 0x47, 0x4b, 0x06, 0x74, 0xec, - 0xb7, 0x2a, 0x24, 0x7d, 0x2e, 0xea, 0xbc, 0x47, 0x66, 0xf0, 0x0e, 0xc6, 0x4e, 0xd0, 0x0e, 0x92, - 0xc0, 0x8f, 0x8b, 0xf9, 0x9c, 0xd7, 0x8c, 0x1a, 0xc2, 0x27, 0x66, 0x40, 0xc0, 0xa2, 0x88, 0xc1, - 0x3c, 0xdd, 0x88, 0xaa, 0xfd, 0x6d, 0x7f, 0x8f, 0x29, 0x11, 0xea, 0xa2, 0x7e, 0x5d, 0x41, 0xc1, - 0xc0, 0xc8, 0x08, 0xc0, 0xa9, 0x9c, 0x46, 0x00, 0xce, 0xd8, 0x90, 0x01, 0x38, 0xe3, 0x85, 0x02, - 0x70, 0x80, 0x3c, 0x22, 0x5d, 0x59, 0xf8, 0x1b, 0xef, 0x02, 0xf1, 0x24, 0x51, 0x22, 0x6c, 0x6a, - 0x09, 0xef, 0xa6, 0x40, 0x26, 0x06, 0x0c, 0xa8, 0xe9, 0xf6, 0xc8, 0xd9, 0x86, 0x1f, 0x05, 0x2c, - 0x87, 0x47, 0x4b, 0x2f, 0xa7, 0xaf, 0xe3, 0x2d, 0x6a, 0x7b, 0x25, 0x0f, 0x79, 0xc5, 0xc4, 0xb8, - 0x40, 0x2d, 0x57, 0xae, 0x26, 0xe9, 0xfe, 0xb9, 0x32, 0x99, 0x14, 0xf1, 0x07, 0x23, 0xdc, 0x15, - 0xae, 0x5b, 0xc6, 0xda, 0x0b, 0x79, 0xcb, 0x90, 0x75, 0x67, 0xa0, 0x99, 0xd6, 0x48, 0x99, 0x69, - 0x2f, 0x16, 0x23, 0x77, 0xbc, 0x81, 0xf6, 0x9b, 0x65, 0xba, 0x75, 0xdb, 0x71, 0x17, 0xa3, 0x9b, - 0x8e, 0xaf, 0x90, 0xc9, 0x58, 0x04, 0x27, 0x14, 0x7a, 0x20, 0x3a, 0xfd, 0x49, 0xf5, 0xd3, 0xc7, - 0x22, 0x1c, 0x41, 0x92, 0xcb, 0x8c, 0x7f, 0xa8, 0x9c, 0x46, 0xfc, 0x83, 0xfb, 0x3d, 0x26, 0x1f, - 0xcd, 0x09, 0x3c, 0x0d, 0x01, 0xff, 0xb6, 0x2d, 0x4a, 0x5f, 0x2a, 0xc4, 0x0a, 0xa2, 0x7f, 0x03, - 0xe4, 0xe9, 0x87, 0x25, 0x32, 0x2d, 0x10, 0x4f, 0x63, 0x04, 0x3f, 0x6e, 0x8f, 0xe0, 0xd9, 0x42, - 0x23, 0x18, 0xd0, 0xf5, 0xbf, 0x55, 0x56, 0x5d, 0x2f, 0xf8, 0x06, 0xbb, 0xf9, 0xc2, 0x7a, 0x79, - 0x98, 0x17, 0xd6, 0xd5, 0xeb, 0xed, 0x95, 0x81, 0xaf, 0xb7, 0xef, 0xc8, 0x77, 0x40, 0x11, 0x26, - 0xe2, 0xbd, 0x87, 0x7d, 0x37, 0x4f, 0x07, 0xa0, 0x2a, 0x4a, 0x60, 0x50, 0x95, 0xb1, 0x51, 0xac, - 0x85, 0x71, 0xdb, 0x37, 0x78, 0x53, 0xc0, 0x41, 0x61, 0xb8, 0xaf, 0x33, 0x19, 0xcb, 0xa6, 0x67, - 0xb8, 0xa8, 0xd2, 0x1f, 0x8c, 0xab, 0x89, 0x65, 0x1e, 0x8f, 0x9b, 0xf2, 0xcd, 0xf5, 0x52, 0x91, - 0x23, 0x74, 0xe3, 0x93, 0x64, 0x3f, 0xb9, 0xee, 0xf8, 0x7d, 0xde, 0xe0, 0xd7, 0x0b, 0xcb, 0xc8, - 0x21, 0xfc, 0xbf, 0x2c, 0x79, 0x01, 0xbb, 0xb0, 0xbd, 0x59, 0x4f, 0x67, 0x7a, 0x5b, 0x93, 0x05, - 0xa0, 0x71, 0x68, 0x05, 0xae, 0x7b, 0xdb, 0xcf, 0x0f, 0x4a, 0xdd, 0x5b, 0x4e, 0x89, 0xa1, 0x7c, - 0x5f, 0x26, 0xd3, 0x2a, 0xd7, 0x6d, 0x9d, 0xa7, 0x2c, 0xad, 0xae, 0xce, 0x63, 0xe4, 0xd9, 0xba, - 0x06, 0x83, 0x89, 0x43, 0x75, 0xb4, 0xb3, 0x2d, 0x15, 0x0a, 0x57, 0xef, 0xed, 0xb4, 0x83, 0x26, - 0x56, 0xe5, 0x61, 0xe8, 0x8f, 0xe2, 0xb9, 0x67, 0xad, 0xbf, 0x18, 0xb2, 0xea, 0x38, 0xdb, 0x18, - 0x6e, 0xc6, 0x72, 0xfa, 0xca, 0x0b, 0x2b, 0x22, 0x83, 0xd2, 0x05, 0x99, 0x7e, 0xa9, 0x61, 0x17, - 0x7f, 0xcc, 0x40, 0x5c, 0x28, 0x08, 0x10, 0xa4, 0x49, 0xe0, 0x69, 0x6a, 0xdb, 0x7c, 0x9b, 0xa3, - 0x2e, 0x22, 0x02, 0xd5, 0x69, 0xaa, 0xf5, 0x72, 0x47, 0x1d, 0x52, 0xd8, 0x54, 0xda, 0x2f, 0x9a, - 0x10, 0x71, 0x47, 0x15, 0x0f, 0x9d, 0x62, 0x91, 0x4c, 0xf4, 0x33, 0x18, 0x0f, 0xb8, 0x35, 0x00, - 0x07, 0x06, 0xd6, 0xfe, 0x64, 0x6e, 0xf7, 0x6f, 0x62, 0x65, 0x63, 0x6b, 0x74, 0xbe, 0x41, 0x66, - 0xcc, 0x96, 0x84, 0xb0, 0x7b, 0xb9, 0xf8, 0xab, 0x25, 0x62, 0x8b, 0x55, 0x71, 0x04, 0x66, 0x19, - 0x58, 0xb4, 0xdd, 0x26, 0x99, 0x4f, 0xbd, 0x8b, 0xa8, 0x1e, 0xd8, 0x2c, 0x3d, 0xa8, 0x07, 0x36, - 0x31, 0xa3, 0xc7, 0xf8, 0xb6, 0x17, 0xe4, 0xe7, 0xbe, 0x2e, 0xf4, 0x88, 0xfe, 0x6b, 0x64, 0xc2, - 0xdf, 0xdd, 0xc5, 0x07, 0xcc, 0xf9, 0xca, 0x79, 0x5c, 0x3d, 0x9b, 0xcc, 0xa0, 0xb8, 0x1e, 0x58, - 0x63, 0xfc, 0x27, 0x08, 0x64, 0xf7, 0xdf, 0x50, 0x83, 0x67, 0x9b, 0x5a, 0xf1, 0x22, 0xa9, 0x60, - 0x4e, 0x4f, 0x56, 0xfb, 0xb2, 0x70, 0x3f, 0x97, 0x91, 0x85, 0xdb, 0xd1, 0x04, 0x33, 0x72, 0x70, - 0xab, 0xd1, 0x54, 0x0a, 0x8d, 0x66, 0x6c, 0x98, 0xd1, 0x7c, 0xab, 0x44, 0x26, 0xc4, 0xf5, 0xfa, - 0xfc, 0xcd, 0xa5, 0x25, 0x33, 0xe7, 0x5a, 0x57, 0xbe, 0x2f, 0x14, 0x09, 0xdd, 0x16, 0x17, 0xbd, - 0x15, 0x2b, 0x59, 0xd7, 0xbb, 0x2d, 0xaa, 0x68, 0x0d, 0x4f, 0xf3, 0xe2, 0x1b, 0xf2, 0x7d, 0xf1, - 0x9c, 0x7e, 0x0d, 0x95, 0x92, 0x85, 0x25, 0x96, 0x45, 0xc2, 0x2a, 0x33, 0x87, 0x99, 0x58, 0x56, - 0x16, 0x80, 0xc6, 0xc1, 0x63, 0xf9, 0xb8, 0xb7, 0xc3, 0xd0, 0x53, 0xa7, 0xfc, 0x0d, 0x0e, 0x06, - 0x59, 0xee, 0x7e, 0x38, 0x4f, 0xac, 0xa1, 0x59, 0x59, 0x40, 0x4a, 0x0f, 0x3c, 0x0b, 0x08, 0xa5, - 0xee, 0x1f, 0x74, 0x93, 0xa3, 0x5a, 0x10, 0x15, 0xcb, 0xc8, 0xb4, 0x2e, 0xb0, 0xfb, 0xa9, 0xcb, - 0x12, 0x50, 0x14, 0x07, 0xe4, 0x74, 0xa9, 0x3c, 0x14, 0x39, 0x5d, 0xc6, 0xfe, 0x9f, 0xe4, 0x74, - 0xa1, 0x7a, 0xfe, 0x1e, 0x7f, 0xb0, 0x59, 0x5c, 0xd5, 0xc9, 0x39, 0x51, 0xca, 0x78, 0xdd, 0x99, - 0xdf, 0xc9, 0x10, 0x05, 0x20, 0xc9, 0x61, 0xc6, 0x10, 0xae, 0xf2, 0x8b, 0x34, 0x29, 0x2f, 0x17, - 0xf1, 0x6c, 0xf4, 0x67, 0x0c, 0x11, 0xa1, 0x1c, 0x82, 0x96, 0xcc, 0xe1, 0x32, 0xf9, 0xc9, 0x73, - 0xb8, 0xa8, 0xcc, 0x2b, 0x53, 0x0f, 0x2a, 0xf3, 0x8a, 0x95, 0xc1, 0xa6, 0x3a, 0x8a, 0x0c, 0x36, - 0x54, 0xb6, 0x9d, 0xef, 0x66, 0x25, 0x80, 0x12, 0x39, 0x54, 0xbe, 0x7c, 0x82, 0x84, 0x58, 0x56, - 0xd3, 0xec, 0x06, 0x45, 0x26, 0x1a, 0x64, 0x37, 0x2c, 0x53, 0xe1, 0x4c, 0x7f, 0xf2, 0x54, 0x38, - 0xa3, 0x4e, 0xb6, 0xa2, 0x13, 0xe3, 0xcc, 0x8e, 0x24, 0x31, 0xce, 0xdc, 0x03, 0x4c, 0x8c, 0x63, - 0xa4, 0xb4, 0x99, 0x7f, 0xb0, 0x29, 0x6d, 0xf6, 0xc9, 0x74, 0x2b, 0xbc, 0xd7, 0xb9, 0xe7, 0x45, - 0xad, 0x95, 0xfa, 0x26, 0xbb, 0x07, 0x90, 0x7b, 0xcd, 0xba, 0xa6, 0x2b, 0x58, 0x2d, 0x30, 0xad, - 0xd9, 0x28, 0x04, 0x93, 0xb4, 0x48, 0xee, 0x73, 0xe6, 0x13, 0x26, 0xf7, 0xb1, 0x52, 0xe4, 0x38, - 0xa3, 0x48, 0x91, 0xf3, 0x1e, 0xbb, 0x6c, 0xb9, 0x1b, 0xec, 0xdd, 0xf0, 0xba, 0x8b, 0x67, 0x8b, - 0xb4, 0xb0, 0x26, 0xd1, 0xfb, 0x5b, 0x50, 0x45, 0xa0, 0x89, 0xf6, 0x27, 0xe1, 0x39, 0x77, 0x2a, - 0x49, 0x78, 0xfe, 0x0c, 0x79, 0xe2, 0x78, 0x1a, 0x3a, 0x37, 0x61, 0x5d, 0x1b, 0x97, 0xa9, 0xdc, - 0x84, 0x6c, 0x7f, 0x36, 0xb0, 0x8c, 0x30, 0xc2, 0xf2, 0x71, 0x61, 0x84, 0xee, 0x3f, 0x29, 0x91, - 0x47, 0x07, 0xdc, 0xcf, 0x2f, 0x1c, 0x34, 0xdb, 0x25, 0xf3, 0x5d, 0xbb, 0x6a, 0xe1, 0xf0, 0x76, - 0x2b, 0x1f, 0x80, 0xca, 0x6d, 0x9b, 0x2a, 0x80, 0x34, 0xf9, 0xd5, 0x67, 0xbe, 0xff, 0x07, 0x4f, - 0x7c, 0xea, 0x23, 0xfa, 0xf7, 0xbb, 0xf4, 0xef, 0xa7, 0xff, 0xf0, 0x89, 0xd2, 0xf7, 0xe9, 0xdf, - 0x47, 0xf4, 0xef, 0x3f, 0xd3, 0xbf, 0x6f, 0xfd, 0xd1, 0x13, 0x9f, 0xfa, 0x89, 0xf2, 0xe1, 0xe5, - 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x44, 0x9a, 0xbd, 0xf4, 0xd9, 0xab, 0x00, 0x00, + 0x6a, 0x71, 0xd9, 0xf5, 0x92, 0xca, 0x81, 0x4f, 0x8b, 0x72, 0xc3, 0x0c, 0x59, 0xa3, 0xce, 0x1b, + 0x98, 0x23, 0x3f, 0xec, 0xaa, 0x28, 0x92, 0xa7, 0x78, 0x7e, 0x7c, 0x2c, 0xa1, 0x14, 0x1c, 0xbb, + 0x39, 0x2c, 0x06, 0x81, 0xbf, 0xe4, 0x93, 0xaa, 0x6a, 0x7a, 0x84, 0x01, 0x6d, 0x7f, 0x50, 0x21, + 0x67, 0x33, 0x58, 0xc5, 0xf9, 0x09, 0x6b, 0xd6, 0xbe, 0x30, 0x34, 0xaf, 0x7d, 0xc2, 0x79, 0xfb, + 0x09, 0xa6, 0x63, 0xb6, 0x04, 0x6f, 0x9c, 0xa0, 0x79, 0xaa, 0x88, 0xa6, 0x9b, 0xc7, 0xa2, 0xfc, + 0xe6, 0xb1, 0xd9, 0x53, 0x9a, 0x7c, 0x6c, 0x46, 0xf5, 0x73, 0x84, 0xdf, 0xf8, 0xa7, 0xc7, 0xc8, + 0xb9, 0xac, 0xdb, 0x4b, 0xce, 0xcf, 0x94, 0x52, 0xa9, 0x6b, 0xbf, 0x34, 0xfc, 0x15, 0x28, 0x9e, + 0xcf, 0x56, 0x5c, 0x4f, 0x5e, 0xb6, 0x93, 0xd9, 0xe6, 0xce, 0xb6, 0x68, 0x9d, 0x85, 0x06, 0x47, + 0x3c, 0x0b, 0xb1, 0x94, 0x07, 0x6f, 0x9d, 0xa0, 0x2b, 0x22, 0x91, 0x71, 0x9c, 0x0a, 0x0d, 0x96, + 0xc5, 0xf9, 0xa1, 0xc1, 0xb2, 0x0f, 0x4b, 0x7b, 0x98, 0xc2, 0x56, 0x8d, 0x6b, 0x84, 0x2c, 0x10, + 0xe0, 0x9e, 0x64, 0xf4, 0x7a, 0x84, 0x6c, 0xf0, 0x37, 0x4b, 0x24, 0x75, 0x3c, 0x8c, 0x27, 0xd6, + 0xcc, 0x94, 0x4b, 0x9d, 0x58, 0x1b, 0x56, 0x1c, 0xc5, 0xa0, 0xea, 0x8e, 0x9f, 0xce, 0xa9, 0x0a, + 0xb4, 0x0c, 0x18, 0x44, 0xbd, 0x98, 0x55, 0x19, 0xf4, 0x62, 0x16, 0x5a, 0x38, 0x6d, 0xff, 0xd0, + 0x97, 0x66, 0xa5, 0x12, 0xde, 0x5b, 0x58, 0x08, 0x1c, 0xe6, 0x7e, 0xaf, 0x42, 0x26, 0xb8, 0xed, + 0x36, 0xc2, 0x6d, 0xb9, 0x2e, 0xcc, 0xa8, 0x42, 0xf7, 0x88, 0x78, 0x6f, 0x96, 0xd1, 0xce, 0xe2, + 0x0c, 0xa5, 0xc6, 0xa6, 0x4d, 0x2f, 0x67, 0xd9, 0x1a, 0xfd, 0x52, 0x2a, 0x32, 0x8a, 0x70, 0x1a, + 0xc6, 0x5c, 0xec, 0x13, 0x12, 0xb3, 0x47, 0x57, 0x90, 0x86, 0x48, 0xca, 0xf4, 0x6a, 0xa1, 0x7e, + 0x34, 0x54, 0x35, 0xde, 0x1b, 0x9d, 0x0d, 0x46, 0x01, 0xc0, 0xa0, 0xbd, 0xf4, 0x3a, 0xa9, 0x2a, + 0xe4, 0x3c, 0x8d, 0x77, 0xc6, 0x64, 0xc9, 0x3f, 0x43, 0xe6, 0x53, 0x6d, 0x0d, 0xa5, 0x30, 0x7f, + 0x97, 0x2a, 0x13, 0x7d, 0x8f, 0xfd, 0x61, 0x62, 0xaf, 0x73, 0xed, 0x0c, 0xa3, 0x5d, 0x7c, 0xe0, + 0x93, 0x98, 0xfb, 0xfa, 0x85, 0xea, 0x0c, 0x28, 0x64, 0xb6, 0x26, 0xd3, 0xcc, 0x95, 0xb3, 0xd3, + 0xcc, 0xb1, 0x77, 0x28, 0x78, 0xdf, 0x4f, 0x43, 0x03, 0xda, 0xb4, 0x35, 0xa0, 0x67, 0x8a, 0xb0, + 0xc1, 0x00, 0xd5, 0xe7, 0xaf, 0x95, 0x88, 0xc3, 0x11, 0xd2, 0x8f, 0x2f, 0x71, 0x27, 0x88, 0xa1, + 0xb3, 0x6b, 0xbe, 0x51, 0x10, 0x30, 0xb0, 0x86, 0x4c, 0xbb, 0xab, 0x1e, 0x2d, 0x19, 0xd0, 0xb1, + 0xdf, 0xac, 0x90, 0xf4, 0xb9, 0xa8, 0xf3, 0x1e, 0x99, 0xc1, 0x3b, 0x18, 0x3b, 0x41, 0x3b, 0x48, + 0x02, 0x3f, 0x2e, 0xe6, 0x73, 0x5e, 0x33, 0x6a, 0x08, 0x9f, 0x98, 0x51, 0x02, 0x16, 0x45, 0x0c, + 0xe6, 0xe9, 0x46, 0x54, 0xed, 0x6f, 0xfb, 0x7b, 0x4c, 0x89, 0x50, 0x17, 0xf5, 0xeb, 0xaa, 0x14, + 0x0c, 0x8c, 0x8c, 0x00, 0x9c, 0xca, 0x69, 0x04, 0xe0, 0x8c, 0x0d, 0x19, 0x80, 0x33, 0x5e, 0x28, + 0x00, 0x07, 0xc8, 0x23, 0xd2, 0x95, 0x85, 0xbf, 0xf1, 0x2e, 0x10, 0x4f, 0x12, 0x25, 0xc2, 0xa6, + 0x96, 0xf0, 0x6e, 0x0a, 0x64, 0x62, 0xc0, 0x80, 0x9a, 0x6e, 0x8f, 0x9c, 0x6d, 0xf8, 0x51, 0xc0, + 0x72, 0x78, 0xb4, 0xf4, 0x72, 0xfa, 0x3a, 0xde, 0xa2, 0xb6, 0x57, 0xf2, 0x90, 0x57, 0x4c, 0x8c, + 0x0b, 0xd4, 0x72, 0xe5, 0x6a, 0x92, 0xee, 0x5f, 0x28, 0x93, 0x49, 0x11, 0x7f, 0x30, 0xc2, 0x5d, + 0xe1, 0xba, 0x65, 0xac, 0xbd, 0x90, 0xb7, 0x0c, 0x59, 0x77, 0x06, 0x9a, 0x69, 0x8d, 0x94, 0x99, + 0xf6, 0x62, 0x31, 0x72, 0xc7, 0x1b, 0x68, 0xbf, 0x51, 0xa6, 0x5b, 0xb7, 0x1d, 0x77, 0x31, 0xba, + 0xe9, 0xf8, 0x0a, 0x99, 0x8c, 0x45, 0x70, 0x42, 0xa1, 0x07, 0xa2, 0xd3, 0x9f, 0x54, 0x3f, 0x7d, + 0x2c, 0xc2, 0x11, 0x24, 0xb9, 0xcc, 0xf8, 0x87, 0xca, 0x69, 0xc4, 0x3f, 0xb8, 0xdf, 0x63, 0xf2, + 0xd1, 0x9c, 0xc0, 0xd3, 0x10, 0xf0, 0x6f, 0xdb, 0xa2, 0xf4, 0xa5, 0x42, 0xac, 0x20, 0xfa, 0x37, + 0x40, 0x9e, 0x7e, 0x58, 0x22, 0xd3, 0x02, 0xf1, 0x34, 0x46, 0xf0, 0xa3, 0xf6, 0x08, 0x9e, 0x2d, + 0x34, 0x82, 0x01, 0x5d, 0xff, 0xdb, 0x65, 0xd5, 0xf5, 0x82, 0x6f, 0xb0, 0x9b, 0x2f, 0xac, 0x97, + 0x87, 0x79, 0x61, 0x5d, 0xbd, 0xde, 0x5e, 0x19, 0xf8, 0x7a, 0xfb, 0x8e, 0x7c, 0x07, 0x14, 0xcb, + 0x44, 0xbc, 0xf7, 0xb0, 0xef, 0xe6, 0xe9, 0x00, 0x54, 0x45, 0x09, 0x0c, 0xaa, 0x32, 0x36, 0x8a, + 0xb5, 0x30, 0x6e, 0xfb, 0x06, 0x6f, 0x8a, 0x72, 0x50, 0x18, 0xee, 0xeb, 0x4c, 0xc6, 0xb2, 0xe9, + 0x19, 0x2e, 0xaa, 0xf4, 0x67, 0x27, 0xd4, 0xc4, 0x32, 0x8f, 0xc7, 0x4d, 0xf9, 0xe6, 0x7a, 0xa9, + 0xc8, 0x11, 0xba, 0xf1, 0x49, 0xb2, 0x9f, 0x5c, 0x77, 0xfc, 0x3e, 0x6f, 0xf0, 0xeb, 0x85, 0x65, + 0xe4, 0x10, 0xfe, 0x5f, 0x96, 0xbc, 0x80, 0x5d, 0xd8, 0xde, 0xac, 0xa7, 0x33, 0xbd, 0xad, 0x49, + 0x00, 0x68, 0x1c, 0x5a, 0x81, 0xeb, 0xde, 0xf6, 0xf3, 0x83, 0x52, 0xf7, 0x96, 0x53, 0x62, 0x28, + 0xdf, 0x97, 0xc9, 0xb4, 0xca, 0x75, 0x5b, 0xe7, 0x29, 0x4b, 0xab, 0xab, 0xf3, 0x18, 0x79, 0xb6, + 0xae, 0x8b, 0xc1, 0xc4, 0xa1, 0x3a, 0xda, 0xd9, 0x96, 0x0a, 0x85, 0xab, 0xf7, 0x76, 0xda, 0x41, + 0x13, 0xab, 0xf2, 0x30, 0xf4, 0x47, 0xf1, 0xdc, 0xb3, 0xd6, 0x0f, 0x86, 0xac, 0x3a, 0xce, 0x36, + 0x86, 0x9b, 0xb1, 0x9c, 0xbe, 0xf2, 0xc2, 0x8a, 0xc8, 0xa0, 0x74, 0x41, 0xa6, 0x5f, 0x6a, 0xd8, + 0xe0, 0x8f, 0x59, 0x11, 0x17, 0x0a, 0xa2, 0x08, 0xd2, 0x24, 0xf0, 0x34, 0xb5, 0x6d, 0xbe, 0xcd, + 0x51, 0x17, 0x11, 0x81, 0xea, 0x34, 0xd5, 0x7a, 0xb9, 0xa3, 0x0e, 0x29, 0x6c, 0x2a, 0xed, 0x17, + 0xcd, 0x12, 0x71, 0x47, 0x15, 0x0f, 0x9d, 0x62, 0x91, 0x4c, 0xf4, 0x33, 0x18, 0x0f, 0xb8, 0x35, + 0x00, 0x07, 0x06, 0xd6, 0xc6, 0x9c, 0x7f, 0x72, 0x26, 0x8d, 0xe8, 0x40, 0x7d, 0x8e, 0x6f, 0xc0, + 0xc0, 0xc2, 0xfc, 0x64, 0x0e, 0xfb, 0x6f, 0x62, 0x65, 0x63, 0x53, 0x75, 0xbe, 0x41, 0x66, 0xcc, + 0x3e, 0x0a, 0x31, 0xf9, 0x72, 0xf1, 0xf7, 0x4e, 0xc4, 0xe6, 0xac, 0x7a, 0x6e, 0xc2, 0xc0, 0xa2, + 0xed, 0x36, 0xc9, 0x7c, 0xea, 0x45, 0x45, 0xf5, 0x34, 0x67, 0xe9, 0x41, 0x3d, 0xcd, 0x89, 0xb9, + 0x40, 0xc6, 0xb7, 0xbd, 0x20, 0x3f, 0x6b, 0x76, 0xa1, 0xe7, 0xf7, 0x5f, 0x23, 0x13, 0xfe, 0xee, + 0x2e, 0x3e, 0x7d, 0xce, 0xd7, 0xdc, 0xe3, 0xea, 0xc1, 0x65, 0x56, 0x8a, 0x2b, 0x89, 0x35, 0xc6, + 0x7f, 0x82, 0x40, 0x76, 0xff, 0x2d, 0x35, 0x95, 0xb6, 0xa9, 0xfd, 0x2f, 0xd2, 0x11, 0xe6, 0xf4, + 0x64, 0xb5, 0x2f, 0x7f, 0xf7, 0x73, 0x19, 0xf9, 0xbb, 0x1d, 0x4d, 0x30, 0x23, 0x7b, 0xb7, 0x1a, + 0x4d, 0xa5, 0xd0, 0x68, 0xc6, 0x86, 0x19, 0xcd, 0xb7, 0x4a, 0x64, 0x42, 0x5c, 0xcc, 0xcf, 0xdf, + 0x96, 0x5a, 0x32, 0xe7, 0xae, 0x75, 0x59, 0xfc, 0x42, 0x91, 0xa0, 0x6f, 0x71, 0x45, 0x5c, 0xb1, + 0x92, 0x75, 0x31, 0xdc, 0xa2, 0x8a, 0x76, 0xf4, 0x34, 0x07, 0xdf, 0x90, 0x2f, 0x93, 0xe7, 0xf4, + 0x6b, 0xa8, 0x64, 0x2e, 0x2c, 0x25, 0x2d, 0x12, 0x56, 0x39, 0x3d, 0xcc, 0x94, 0xb4, 0x12, 0x00, + 0x1a, 0x07, 0x0f, 0xf4, 0xe3, 0xde, 0x0e, 0x43, 0x4f, 0xc5, 0x07, 0x34, 0x78, 0x31, 0x48, 0xb8, + 0xfb, 0xe1, 0x3c, 0xb1, 0x86, 0x66, 0xe5, 0x0f, 0x29, 0x3d, 0xf0, 0xfc, 0x21, 0x94, 0xba, 0x7f, + 0xd0, 0x4d, 0x8e, 0x6a, 0x41, 0x54, 0x2c, 0x97, 0xd3, 0xba, 0xc0, 0xee, 0xa7, 0x2e, 0x21, 0xa0, + 0x28, 0x0e, 0xc8, 0x06, 0x53, 0x79, 0x28, 0xb2, 0xc1, 0x8c, 0xfd, 0x7f, 0xc9, 0x06, 0x43, 0x2d, + 0x84, 0x3d, 0xfe, 0xd4, 0xb3, 0xb8, 0xe4, 0x93, 0x73, 0x16, 0x95, 0xf1, 0x2e, 0x34, 0xbf, 0xcd, + 0x21, 0x00, 0x20, 0xc9, 0x61, 0xae, 0x11, 0x6e, 0x2c, 0x88, 0x04, 0x2b, 0x2f, 0x17, 0xf1, 0x89, + 0xf4, 0xe7, 0x1a, 0x11, 0x41, 0x20, 0x82, 0x96, 0xcc, 0xfe, 0x32, 0xf9, 0xc9, 0xb3, 0xbf, 0xa8, + 0x9c, 0x2d, 0x53, 0x0f, 0x2a, 0x67, 0x8b, 0x95, 0xfb, 0xa6, 0x3a, 0x8a, 0xdc, 0x37, 0x54, 0xb6, + 0x9d, 0xef, 0x66, 0xa5, 0x8e, 0x12, 0xd9, 0x57, 0xbe, 0x7c, 0x82, 0x54, 0x5a, 0x56, 0xd3, 0xec, + 0xee, 0x45, 0x26, 0x1a, 0x64, 0x37, 0x2c, 0x93, 0xe8, 0x4c, 0x7f, 0xf2, 0x24, 0x3a, 0xa3, 0x4e, + 0xd3, 0xa2, 0x53, 0xea, 0xcc, 0x8e, 0x24, 0xa5, 0xce, 0xdc, 0x03, 0x4c, 0xa9, 0x63, 0x24, 0xc3, + 0x99, 0x7f, 0xb0, 0xc9, 0x70, 0xf6, 0xc9, 0x74, 0x2b, 0xbc, 0xd7, 0xb9, 0xe7, 0x45, 0xad, 0x95, + 0xfa, 0x26, 0xbb, 0x41, 0x90, 0x7b, 0x41, 0xbb, 0xa6, 0x2b, 0x58, 0x2d, 0x30, 0x7d, 0xdb, 0x00, + 0x82, 0x49, 0x5a, 0xa4, 0x05, 0x3a, 0xf3, 0x09, 0xd3, 0x02, 0x59, 0xc9, 0x75, 0x9c, 0x51, 0x24, + 0xd7, 0x79, 0x8f, 0x5d, 0xd3, 0xdc, 0x0d, 0xf6, 0x6e, 0x78, 0xdd, 0xc5, 0xb3, 0x45, 0x5a, 0x58, + 0x93, 0xe8, 0xfd, 0x2d, 0x28, 0x10, 0x68, 0xa2, 0xfd, 0xe9, 0x7b, 0xce, 0x9d, 0x4a, 0xfa, 0x9e, + 0x3f, 0x47, 0x9e, 0x38, 0x9e, 0x86, 0xce, 0x6a, 0x58, 0xd7, 0x66, 0x69, 0x2a, 0xab, 0x21, 0xdb, + 0x9f, 0x0d, 0x2c, 0x23, 0x00, 0xb1, 0x7c, 0x5c, 0x00, 0xa2, 0xfb, 0x4f, 0x4b, 0xe4, 0xd1, 0x01, + 0x37, 0xfb, 0x0b, 0x87, 0xdb, 0x76, 0xc9, 0x7c, 0xd7, 0xae, 0x5a, 0x38, 0x30, 0xde, 0xca, 0x24, + 0xa0, 0xb2, 0xe2, 0xa6, 0x00, 0x90, 0x26, 0xbf, 0xfa, 0xcc, 0xf7, 0xff, 0xe0, 0x89, 0x4f, 0x7d, + 0x44, 0xff, 0x7e, 0x97, 0xfe, 0xfd, 0xe4, 0x1f, 0x3e, 0x51, 0xfa, 0x3e, 0xfd, 0xfb, 0x88, 0xfe, + 0xfd, 0x17, 0xfa, 0xf7, 0xad, 0x3f, 0x7a, 0xe2, 0x53, 0x3f, 0x56, 0x3e, 0xbc, 0xfc, 0xff, 0x02, + 0x00, 0x00, 0xff, 0xff, 0x58, 0xf5, 0x7e, 0x74, 0x13, 0xac, 0x00, 0x00, } diff --git a/pkg/api/v1/generated.proto b/pkg/api/v1/generated.proto index d374c8881d223..93b8aff0d890f 100644 --- a/pkg/api/v1/generated.proto +++ b/pkg/api/v1/generated.proto @@ -2717,24 +2717,29 @@ message ServiceSpec { // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies repeated ServicePort ports = 1; - // This service will route traffic to pods having labels matching this selector. - // Label keys and values that must match in order to receive traffic for this service. - // If not specified, endpoints must be manually specified and the system will not automatically manage them. + // Route service traffic to pods with label keys and values matching this + // selector. If empty or not present, the service is assumed to have an + // external process managing its endpoints, which Kubernetes will not + // modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. + // Ignored if type is ExternalName. // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview map selector = 2; - // ClusterIP is usually assigned by the master and is the IP address of the service. - // If specified, it will be allocated to the service if it is unused - // or else creation of the service will fail. - // Valid values are None, empty string (""), or a valid IP address. - // 'None' can be specified for a headless service when proxying is not required. - // Cannot be updated. + // clusterIP is the IP address of the service and is usually assigned + // randomly by the master. If an address is specified manually and is not in + // use by others, it will be allocated to the service; otherwise, creation + // of the service will fail. This field can not be changed through updates. + // Valid values are "None", empty string (""), or a valid IP address. "None" + // can be specified for headless services when proxying is not required. + // Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if + // type is ExternalName. // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies optional string clusterIP = 3; - // Type of exposed service. Must be ClusterIP, NodePort, or LoadBalancer. - // Defaults to ClusterIP. - // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#external-services + // type determines how to expose the service. Defaults to ClusterIP and only + // applies if clusterIP != "None". Valid options are ClusterIP, NodePort, + // LoadBalancer, ExternalName. + // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview optional string type = 4; // externalIPs is a list of IP addresses for which nodes in the cluster @@ -2773,6 +2778,11 @@ message ServiceSpec { // cloud-provider does not support the feature." // More info: http://releases.k8s.io/HEAD/docs/user-guide/services-firewalls.md repeated string loadBalancerSourceRanges = 9; + + // externalName is the external reference that kubedns or equivalent will + // return as a CNAME record for this service. No proxying will be involved. + // Must be a valid DNS name and requires Type to be ExternalName. + optional string externalName = 10; } // ServiceStatus represents the current status of a service. diff --git a/pkg/api/v1/types.generated.go b/pkg/api/v1/types.generated.go index 54a064c13ad99..e4adee82ffa3a 100644 --- a/pkg/api/v1/types.generated.go +++ b/pkg/api/v1/types.generated.go @@ -31236,7 +31236,7 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep2372 := !z.EncBinary() yy2arr2372 := z.EncBasicHandle().StructToArray - var yyq2372 [9]bool + var yyq2372 [10]bool _, _, _ = yysep2372, yyq2372, yy2arr2372 const yyr2372 bool = false yyq2372[1] = len(x.Selector) != 0 @@ -31247,9 +31247,10 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { yyq2372[6] = x.SessionAffinity != "" yyq2372[7] = x.LoadBalancerIP != "" yyq2372[8] = len(x.LoadBalancerSourceRanges) != 0 + yyq2372[9] = x.ExternalName != "" var yynn2372 int if yyr2372 || yy2arr2372 { - r.EncodeArrayStart(9) + r.EncodeArrayStart(10) } else { yynn2372 = 1 for _, b := range yyq2372 { @@ -31499,6 +31500,31 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } + if yyr2372 || yy2arr2372 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2372[9] { + yym2397 := z.EncBinary() + _ = yym2397 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2372[9] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("externalName")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2398 := z.EncBinary() + _ = yym2398 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) + } + } + } if yyr2372 || yy2arr2372 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { @@ -31512,25 +31538,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2396 := z.DecBinary() - _ = yym2396 + yym2399 := z.DecBinary() + _ = yym2399 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2397 := r.ContainerType() - if yyct2397 == codecSelferValueTypeMap1234 { - yyl2397 := r.ReadMapStart() - if yyl2397 == 0 { + yyct2400 := r.ContainerType() + if yyct2400 == codecSelferValueTypeMap1234 { + yyl2400 := r.ReadMapStart() + if yyl2400 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2397, d) + x.codecDecodeSelfFromMap(yyl2400, d) } - } else if yyct2397 == codecSelferValueTypeArray1234 { - yyl2397 := r.ReadArrayStart() - if yyl2397 == 0 { + } else if yyct2400 == codecSelferValueTypeArray1234 { + yyl2400 := r.ReadArrayStart() + if yyl2400 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2397, d) + x.codecDecodeSelfFromArray(yyl2400, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31542,12 +31568,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2398Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2398Slc - var yyhl2398 bool = l >= 0 - for yyj2398 := 0; ; yyj2398++ { - if yyhl2398 { - if yyj2398 >= l { + var yys2401Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2401Slc + var yyhl2401 bool = l >= 0 + for yyj2401 := 0; ; yyj2401++ { + if yyhl2401 { + if yyj2401 >= l { break } } else { @@ -31556,32 +31582,32 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2398Slc = r.DecodeBytes(yys2398Slc, true, true) - yys2398 := string(yys2398Slc) + yys2401Slc = r.DecodeBytes(yys2401Slc, true, true) + yys2401 := string(yys2401Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2398 { + switch yys2401 { case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2399 := &x.Ports - yym2400 := z.DecBinary() - _ = yym2400 + yyv2402 := &x.Ports + yym2403 := z.DecBinary() + _ = yym2403 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2399), d) + h.decSliceServicePort((*[]ServicePort)(yyv2402), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2401 := &x.Selector - yym2402 := z.DecBinary() - _ = yym2402 + yyv2404 := &x.Selector + yym2405 := z.DecBinary() + _ = yym2405 if false { } else { - z.F.DecMapStringStringX(yyv2401, false, d) + z.F.DecMapStringStringX(yyv2404, false, d) } } case "clusterIP": @@ -31600,24 +31626,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2405 := &x.ExternalIPs - yym2406 := z.DecBinary() - _ = yym2406 + yyv2408 := &x.ExternalIPs + yym2409 := z.DecBinary() + _ = yym2409 if false { } else { - z.F.DecSliceStringX(yyv2405, false, d) + z.F.DecSliceStringX(yyv2408, false, d) } } case "deprecatedPublicIPs": if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2407 := &x.DeprecatedPublicIPs - yym2408 := z.DecBinary() - _ = yym2408 + yyv2410 := &x.DeprecatedPublicIPs + yym2411 := z.DecBinary() + _ = yym2411 if false { } else { - z.F.DecSliceStringX(yyv2407, false, d) + z.F.DecSliceStringX(yyv2410, false, d) } } case "sessionAffinity": @@ -31636,18 +31662,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2411 := &x.LoadBalancerSourceRanges - yym2412 := z.DecBinary() - _ = yym2412 + yyv2414 := &x.LoadBalancerSourceRanges + yym2415 := z.DecBinary() + _ = yym2415 if false { } else { - z.F.DecSliceStringX(yyv2411, false, d) + z.F.DecSliceStringX(yyv2414, false, d) } } + case "externalName": + if r.TryDecodeAsNil() { + x.ExternalName = "" + } else { + x.ExternalName = string(r.DecodeString()) + } default: - z.DecStructFieldNotFound(-1, yys2398) - } // end switch yys2398 - } // end for yyj2398 + z.DecStructFieldNotFound(-1, yys2401) + } // end switch yys2401 + } // end for yyj2401 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31655,16 +31687,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2413 int - var yyb2413 bool - var yyhl2413 bool = l >= 0 - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + var yyj2417 int + var yyb2417 bool + var yyhl2417 bool = l >= 0 + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31672,21 +31704,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2414 := &x.Ports - yym2415 := z.DecBinary() - _ = yym2415 + yyv2418 := &x.Ports + yym2419 := z.DecBinary() + _ = yym2419 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2414), d) + h.decSliceServicePort((*[]ServicePort)(yyv2418), d) } } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31694,21 +31726,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2416 := &x.Selector - yym2417 := z.DecBinary() - _ = yym2417 + yyv2420 := &x.Selector + yym2421 := z.DecBinary() + _ = yym2421 if false { } else { - z.F.DecMapStringStringX(yyv2416, false, d) + z.F.DecMapStringStringX(yyv2420, false, d) } } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31718,13 +31750,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31734,13 +31766,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31748,21 +31780,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2420 := &x.ExternalIPs - yym2421 := z.DecBinary() - _ = yym2421 + yyv2424 := &x.ExternalIPs + yym2425 := z.DecBinary() + _ = yym2425 if false { } else { - z.F.DecSliceStringX(yyv2420, false, d) + z.F.DecSliceStringX(yyv2424, false, d) } } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31770,21 +31802,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2422 := &x.DeprecatedPublicIPs - yym2423 := z.DecBinary() - _ = yym2423 + yyv2426 := &x.DeprecatedPublicIPs + yym2427 := z.DecBinary() + _ = yym2427 if false { } else { - z.F.DecSliceStringX(yyv2422, false, d) + z.F.DecSliceStringX(yyv2426, false, d) } } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31794,13 +31826,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31810,13 +31842,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31824,26 +31856,42 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2426 := &x.LoadBalancerSourceRanges - yym2427 := z.DecBinary() - _ = yym2427 + yyv2430 := &x.LoadBalancerSourceRanges + yym2431 := z.DecBinary() + _ = yym2431 if false { } else { - z.F.DecSliceStringX(yyv2426, false, d) + z.F.DecSliceStringX(yyv2430, false, d) } } + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l + } else { + yyb2417 = r.CheckBreak() + } + if yyb2417 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ExternalName = "" + } else { + x.ExternalName = string(r.DecodeString()) + } for { - yyj2413++ - if yyhl2413 { - yyb2413 = yyj2413 > l + yyj2417++ + if yyhl2417 { + yyb2417 = yyj2417 > l } else { - yyb2413 = r.CheckBreak() + yyb2417 = r.CheckBreak() } - if yyb2413 { + if yyb2417 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2413-1, "") + z.DecStructFieldNotFound(yyj2417-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31855,38 +31903,38 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2428 := z.EncBinary() - _ = yym2428 + yym2433 := z.EncBinary() + _ = yym2433 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2429 := !z.EncBinary() - yy2arr2429 := z.EncBasicHandle().StructToArray - var yyq2429 [5]bool - _, _, _ = yysep2429, yyq2429, yy2arr2429 - const yyr2429 bool = false - yyq2429[0] = x.Name != "" - yyq2429[1] = x.Protocol != "" - yyq2429[3] = true - yyq2429[4] = x.NodePort != 0 - var yynn2429 int - if yyr2429 || yy2arr2429 { + yysep2434 := !z.EncBinary() + yy2arr2434 := z.EncBasicHandle().StructToArray + var yyq2434 [5]bool + _, _, _ = yysep2434, yyq2434, yy2arr2434 + const yyr2434 bool = false + yyq2434[0] = x.Name != "" + yyq2434[1] = x.Protocol != "" + yyq2434[3] = true + yyq2434[4] = x.NodePort != 0 + var yynn2434 int + if yyr2434 || yy2arr2434 { r.EncodeArrayStart(5) } else { - yynn2429 = 1 - for _, b := range yyq2429 { + yynn2434 = 1 + for _, b := range yyq2434 { if b { - yynn2429++ + yynn2434++ } } - r.EncodeMapStart(yynn2429) - yynn2429 = 0 + r.EncodeMapStart(yynn2434) + yynn2434 = 0 } - if yyr2429 || yy2arr2429 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2429[0] { - yym2431 := z.EncBinary() - _ = yym2431 + if yyq2434[0] { + yym2436 := z.EncBinary() + _ = yym2436 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -31895,37 +31943,37 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2429[0] { + if yyq2434[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2432 := z.EncBinary() - _ = yym2432 + yym2437 := z.EncBinary() + _ = yym2437 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2429 || yy2arr2429 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2429[1] { + if yyq2434[1] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2429[1] { + if yyq2434[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2429 || yy2arr2429 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2435 := z.EncBinary() - _ = yym2435 + yym2440 := z.EncBinary() + _ = yym2440 if false { } else { r.EncodeInt(int64(x.Port)) @@ -31934,51 +31982,51 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2436 := z.EncBinary() - _ = yym2436 + yym2441 := z.EncBinary() + _ = yym2441 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2429 || yy2arr2429 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2429[3] { - yy2438 := &x.TargetPort - yym2439 := z.EncBinary() - _ = yym2439 + if yyq2434[3] { + yy2443 := &x.TargetPort + yym2444 := z.EncBinary() + _ = yym2444 if false { - } else if z.HasExtensions() && z.EncExt(yy2438) { - } else if !yym2439 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2438) + } else if z.HasExtensions() && z.EncExt(yy2443) { + } else if !yym2444 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2443) } else { - z.EncFallback(yy2438) + z.EncFallback(yy2443) } } else { r.EncodeNil() } } else { - if yyq2429[3] { + if yyq2434[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2440 := &x.TargetPort - yym2441 := z.EncBinary() - _ = yym2441 + yy2445 := &x.TargetPort + yym2446 := z.EncBinary() + _ = yym2446 if false { - } else if z.HasExtensions() && z.EncExt(yy2440) { - } else if !yym2441 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2440) + } else if z.HasExtensions() && z.EncExt(yy2445) { + } else if !yym2446 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2445) } else { - z.EncFallback(yy2440) + z.EncFallback(yy2445) } } } - if yyr2429 || yy2arr2429 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2429[4] { - yym2443 := z.EncBinary() - _ = yym2443 + if yyq2434[4] { + yym2448 := z.EncBinary() + _ = yym2448 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -31987,19 +32035,19 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2429[4] { + if yyq2434[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2444 := z.EncBinary() - _ = yym2444 + yym2449 := z.EncBinary() + _ = yym2449 if false { } else { r.EncodeInt(int64(x.NodePort)) } } } - if yyr2429 || yy2arr2429 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32012,25 +32060,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2445 := z.DecBinary() - _ = yym2445 + yym2450 := z.DecBinary() + _ = yym2450 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2446 := r.ContainerType() - if yyct2446 == codecSelferValueTypeMap1234 { - yyl2446 := r.ReadMapStart() - if yyl2446 == 0 { + yyct2451 := r.ContainerType() + if yyct2451 == codecSelferValueTypeMap1234 { + yyl2451 := r.ReadMapStart() + if yyl2451 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2446, d) + x.codecDecodeSelfFromMap(yyl2451, d) } - } else if yyct2446 == codecSelferValueTypeArray1234 { - yyl2446 := r.ReadArrayStart() - if yyl2446 == 0 { + } else if yyct2451 == codecSelferValueTypeArray1234 { + yyl2451 := r.ReadArrayStart() + if yyl2451 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2446, d) + x.codecDecodeSelfFromArray(yyl2451, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32042,12 +32090,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2447Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2447Slc - var yyhl2447 bool = l >= 0 - for yyj2447 := 0; ; yyj2447++ { - if yyhl2447 { - if yyj2447 >= l { + var yys2452Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2452Slc + var yyhl2452 bool = l >= 0 + for yyj2452 := 0; ; yyj2452++ { + if yyhl2452 { + if yyj2452 >= l { break } } else { @@ -32056,10 +32104,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2447Slc = r.DecodeBytes(yys2447Slc, true, true) - yys2447 := string(yys2447Slc) + yys2452Slc = r.DecodeBytes(yys2452Slc, true, true) + yys2452 := string(yys2452Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2447 { + switch yys2452 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -32082,15 +32130,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2451 := &x.TargetPort - yym2452 := z.DecBinary() - _ = yym2452 + yyv2456 := &x.TargetPort + yym2457 := z.DecBinary() + _ = yym2457 if false { - } else if z.HasExtensions() && z.DecExt(yyv2451) { - } else if !yym2452 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2451) + } else if z.HasExtensions() && z.DecExt(yyv2456) { + } else if !yym2457 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2456) } else { - z.DecFallback(yyv2451, false) + z.DecFallback(yyv2456, false) } } case "nodePort": @@ -32100,9 +32148,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2447) - } // end switch yys2447 - } // end for yyj2447 + z.DecStructFieldNotFound(-1, yys2452) + } // end switch yys2452 + } // end for yyj2452 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32110,16 +32158,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2454 int - var yyb2454 bool - var yyhl2454 bool = l >= 0 - yyj2454++ - if yyhl2454 { - yyb2454 = yyj2454 > l + var yyj2459 int + var yyb2459 bool + var yyhl2459 bool = l >= 0 + yyj2459++ + if yyhl2459 { + yyb2459 = yyj2459 > l } else { - yyb2454 = r.CheckBreak() + yyb2459 = r.CheckBreak() } - if yyb2454 { + if yyb2459 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32129,13 +32177,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2454++ - if yyhl2454 { - yyb2454 = yyj2454 > l + yyj2459++ + if yyhl2459 { + yyb2459 = yyj2459 > l } else { - yyb2454 = r.CheckBreak() + yyb2459 = r.CheckBreak() } - if yyb2454 { + if yyb2459 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32145,13 +32193,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2454++ - if yyhl2454 { - yyb2454 = yyj2454 > l + yyj2459++ + if yyhl2459 { + yyb2459 = yyj2459 > l } else { - yyb2454 = r.CheckBreak() + yyb2459 = r.CheckBreak() } - if yyb2454 { + if yyb2459 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32161,13 +32209,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2454++ - if yyhl2454 { - yyb2454 = yyj2454 > l + yyj2459++ + if yyhl2459 { + yyb2459 = yyj2459 > l } else { - yyb2454 = r.CheckBreak() + yyb2459 = r.CheckBreak() } - if yyb2454 { + if yyb2459 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32175,24 +32223,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2458 := &x.TargetPort - yym2459 := z.DecBinary() - _ = yym2459 + yyv2463 := &x.TargetPort + yym2464 := z.DecBinary() + _ = yym2464 if false { - } else if z.HasExtensions() && z.DecExt(yyv2458) { - } else if !yym2459 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2458) + } else if z.HasExtensions() && z.DecExt(yyv2463) { + } else if !yym2464 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2463) } else { - z.DecFallback(yyv2458, false) + z.DecFallback(yyv2463, false) } } - yyj2454++ - if yyhl2454 { - yyb2454 = yyj2454 > l + yyj2459++ + if yyhl2459 { + yyb2459 = yyj2459 > l } else { - yyb2454 = r.CheckBreak() + yyb2459 = r.CheckBreak() } - if yyb2454 { + if yyb2459 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32203,17 +32251,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj2454++ - if yyhl2454 { - yyb2454 = yyj2454 > l + yyj2459++ + if yyhl2459 { + yyb2459 = yyj2459 > l } else { - yyb2454 = r.CheckBreak() + yyb2459 = r.CheckBreak() } - if yyb2454 { + if yyb2459 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2454-1, "") + z.DecStructFieldNotFound(yyj2459-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32225,39 +32273,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2461 := z.EncBinary() - _ = yym2461 + yym2466 := z.EncBinary() + _ = yym2466 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2462 := !z.EncBinary() - yy2arr2462 := z.EncBasicHandle().StructToArray - var yyq2462 [5]bool - _, _, _ = yysep2462, yyq2462, yy2arr2462 - const yyr2462 bool = false - yyq2462[0] = x.Kind != "" - yyq2462[1] = x.APIVersion != "" - yyq2462[2] = true - yyq2462[3] = true - yyq2462[4] = true - var yynn2462 int - if yyr2462 || yy2arr2462 { + yysep2467 := !z.EncBinary() + yy2arr2467 := z.EncBasicHandle().StructToArray + var yyq2467 [5]bool + _, _, _ = yysep2467, yyq2467, yy2arr2467 + const yyr2467 bool = false + yyq2467[0] = x.Kind != "" + yyq2467[1] = x.APIVersion != "" + yyq2467[2] = true + yyq2467[3] = true + yyq2467[4] = true + var yynn2467 int + if yyr2467 || yy2arr2467 { r.EncodeArrayStart(5) } else { - yynn2462 = 0 - for _, b := range yyq2462 { + yynn2467 = 0 + for _, b := range yyq2467 { if b { - yynn2462++ + yynn2467++ } } - r.EncodeMapStart(yynn2462) - yynn2462 = 0 + r.EncodeMapStart(yynn2467) + yynn2467 = 0 } - if yyr2462 || yy2arr2462 { + if yyr2467 || yy2arr2467 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2462[0] { - yym2464 := z.EncBinary() - _ = yym2464 + if yyq2467[0] { + yym2469 := z.EncBinary() + _ = yym2469 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32266,23 +32314,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2462[0] { + if yyq2467[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2465 := z.EncBinary() - _ = yym2465 + yym2470 := z.EncBinary() + _ = yym2470 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2462 || yy2arr2462 { + if yyr2467 || yy2arr2467 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2462[1] { - yym2467 := z.EncBinary() - _ = yym2467 + if yyq2467[1] { + yym2472 := z.EncBinary() + _ = yym2472 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32291,70 +32339,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2462[1] { + if yyq2467[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2468 := z.EncBinary() - _ = yym2468 + yym2473 := z.EncBinary() + _ = yym2473 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2462 || yy2arr2462 { + if yyr2467 || yy2arr2467 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2462[2] { - yy2470 := &x.ObjectMeta - yy2470.CodecEncodeSelf(e) + if yyq2467[2] { + yy2475 := &x.ObjectMeta + yy2475.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2462[2] { + if yyq2467[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2471 := &x.ObjectMeta - yy2471.CodecEncodeSelf(e) + yy2476 := &x.ObjectMeta + yy2476.CodecEncodeSelf(e) } } - if yyr2462 || yy2arr2462 { + if yyr2467 || yy2arr2467 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2462[3] { - yy2473 := &x.Spec - yy2473.CodecEncodeSelf(e) + if yyq2467[3] { + yy2478 := &x.Spec + yy2478.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2462[3] { + if yyq2467[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2474 := &x.Spec - yy2474.CodecEncodeSelf(e) + yy2479 := &x.Spec + yy2479.CodecEncodeSelf(e) } } - if yyr2462 || yy2arr2462 { + if yyr2467 || yy2arr2467 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2462[4] { - yy2476 := &x.Status - yy2476.CodecEncodeSelf(e) + if yyq2467[4] { + yy2481 := &x.Status + yy2481.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2462[4] { + if yyq2467[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2477 := &x.Status - yy2477.CodecEncodeSelf(e) + yy2482 := &x.Status + yy2482.CodecEncodeSelf(e) } } - if yyr2462 || yy2arr2462 { + if yyr2467 || yy2arr2467 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32367,25 +32415,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2478 := z.DecBinary() - _ = yym2478 + yym2483 := z.DecBinary() + _ = yym2483 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2479 := r.ContainerType() - if yyct2479 == codecSelferValueTypeMap1234 { - yyl2479 := r.ReadMapStart() - if yyl2479 == 0 { + yyct2484 := r.ContainerType() + if yyct2484 == codecSelferValueTypeMap1234 { + yyl2484 := r.ReadMapStart() + if yyl2484 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2479, d) + x.codecDecodeSelfFromMap(yyl2484, d) } - } else if yyct2479 == codecSelferValueTypeArray1234 { - yyl2479 := r.ReadArrayStart() - if yyl2479 == 0 { + } else if yyct2484 == codecSelferValueTypeArray1234 { + yyl2484 := r.ReadArrayStart() + if yyl2484 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2479, d) + x.codecDecodeSelfFromArray(yyl2484, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32397,12 +32445,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2480Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2480Slc - var yyhl2480 bool = l >= 0 - for yyj2480 := 0; ; yyj2480++ { - if yyhl2480 { - if yyj2480 >= l { + var yys2485Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2485Slc + var yyhl2485 bool = l >= 0 + for yyj2485 := 0; ; yyj2485++ { + if yyhl2485 { + if yyj2485 >= l { break } } else { @@ -32411,10 +32459,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2480Slc = r.DecodeBytes(yys2480Slc, true, true) - yys2480 := string(yys2480Slc) + yys2485Slc = r.DecodeBytes(yys2485Slc, true, true) + yys2485 := string(yys2485Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2480 { + switch yys2485 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32431,27 +32479,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2483 := &x.ObjectMeta - yyv2483.CodecDecodeSelf(d) + yyv2488 := &x.ObjectMeta + yyv2488.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2484 := &x.Spec - yyv2484.CodecDecodeSelf(d) + yyv2489 := &x.Spec + yyv2489.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2485 := &x.Status - yyv2485.CodecDecodeSelf(d) + yyv2490 := &x.Status + yyv2490.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2480) - } // end switch yys2480 - } // end for yyj2480 + z.DecStructFieldNotFound(-1, yys2485) + } // end switch yys2485 + } // end for yyj2485 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32459,16 +32507,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2486 int - var yyb2486 bool - var yyhl2486 bool = l >= 0 - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + var yyj2491 int + var yyb2491 bool + var yyhl2491 bool = l >= 0 + yyj2491++ + if yyhl2491 { + yyb2491 = yyj2491 > l } else { - yyb2486 = r.CheckBreak() + yyb2491 = r.CheckBreak() } - if yyb2486 { + if yyb2491 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32478,13 +32526,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + yyj2491++ + if yyhl2491 { + yyb2491 = yyj2491 > l } else { - yyb2486 = r.CheckBreak() + yyb2491 = r.CheckBreak() } - if yyb2486 { + if yyb2491 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32494,13 +32542,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + yyj2491++ + if yyhl2491 { + yyb2491 = yyj2491 > l } else { - yyb2486 = r.CheckBreak() + yyb2491 = r.CheckBreak() } - if yyb2486 { + if yyb2491 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32508,16 +32556,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2489 := &x.ObjectMeta - yyv2489.CodecDecodeSelf(d) + yyv2494 := &x.ObjectMeta + yyv2494.CodecDecodeSelf(d) } - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + yyj2491++ + if yyhl2491 { + yyb2491 = yyj2491 > l } else { - yyb2486 = r.CheckBreak() + yyb2491 = r.CheckBreak() } - if yyb2486 { + if yyb2491 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32525,16 +32573,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2490 := &x.Spec - yyv2490.CodecDecodeSelf(d) + yyv2495 := &x.Spec + yyv2495.CodecDecodeSelf(d) } - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + yyj2491++ + if yyhl2491 { + yyb2491 = yyj2491 > l } else { - yyb2486 = r.CheckBreak() + yyb2491 = r.CheckBreak() } - if yyb2486 { + if yyb2491 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32542,21 +32590,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2491 := &x.Status - yyv2491.CodecDecodeSelf(d) + yyv2496 := &x.Status + yyv2496.CodecDecodeSelf(d) } for { - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + yyj2491++ + if yyhl2491 { + yyb2491 = yyj2491 > l } else { - yyb2486 = r.CheckBreak() + yyb2491 = r.CheckBreak() } - if yyb2486 { + if yyb2491 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2486-1, "") + z.DecStructFieldNotFound(yyj2491-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32568,37 +32616,37 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2492 := z.EncBinary() - _ = yym2492 + yym2497 := z.EncBinary() + _ = yym2497 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2493 := !z.EncBinary() - yy2arr2493 := z.EncBasicHandle().StructToArray - var yyq2493 [4]bool - _, _, _ = yysep2493, yyq2493, yy2arr2493 - const yyr2493 bool = false - yyq2493[0] = x.Kind != "" - yyq2493[1] = x.APIVersion != "" - yyq2493[2] = true - var yynn2493 int - if yyr2493 || yy2arr2493 { + yysep2498 := !z.EncBinary() + yy2arr2498 := z.EncBasicHandle().StructToArray + var yyq2498 [4]bool + _, _, _ = yysep2498, yyq2498, yy2arr2498 + const yyr2498 bool = false + yyq2498[0] = x.Kind != "" + yyq2498[1] = x.APIVersion != "" + yyq2498[2] = true + var yynn2498 int + if yyr2498 || yy2arr2498 { r.EncodeArrayStart(4) } else { - yynn2493 = 1 - for _, b := range yyq2493 { + yynn2498 = 1 + for _, b := range yyq2498 { if b { - yynn2493++ + yynn2498++ } } - r.EncodeMapStart(yynn2493) - yynn2493 = 0 + r.EncodeMapStart(yynn2498) + yynn2498 = 0 } - if yyr2493 || yy2arr2493 { + if yyr2498 || yy2arr2498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2493[0] { - yym2495 := z.EncBinary() - _ = yym2495 + if yyq2498[0] { + yym2500 := z.EncBinary() + _ = yym2500 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32607,23 +32655,23 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2493[0] { + if yyq2498[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2496 := z.EncBinary() - _ = yym2496 + yym2501 := z.EncBinary() + _ = yym2501 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2493 || yy2arr2493 { + if yyr2498 || yy2arr2498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2493[1] { - yym2498 := z.EncBinary() - _ = yym2498 + if yyq2498[1] { + yym2503 := z.EncBinary() + _ = yym2503 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32632,54 +32680,54 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2493[1] { + if yyq2498[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2499 := z.EncBinary() - _ = yym2499 + yym2504 := z.EncBinary() + _ = yym2504 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2493 || yy2arr2493 { + if yyr2498 || yy2arr2498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2493[2] { - yy2501 := &x.ListMeta - yym2502 := z.EncBinary() - _ = yym2502 + if yyq2498[2] { + yy2506 := &x.ListMeta + yym2507 := z.EncBinary() + _ = yym2507 if false { - } else if z.HasExtensions() && z.EncExt(yy2501) { + } else if z.HasExtensions() && z.EncExt(yy2506) { } else { - z.EncFallback(yy2501) + z.EncFallback(yy2506) } } else { r.EncodeNil() } } else { - if yyq2493[2] { + if yyq2498[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2503 := &x.ListMeta - yym2504 := z.EncBinary() - _ = yym2504 + yy2508 := &x.ListMeta + yym2509 := z.EncBinary() + _ = yym2509 if false { - } else if z.HasExtensions() && z.EncExt(yy2503) { + } else if z.HasExtensions() && z.EncExt(yy2508) { } else { - z.EncFallback(yy2503) + z.EncFallback(yy2508) } } } - if yyr2493 || yy2arr2493 { + if yyr2498 || yy2arr2498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2506 := z.EncBinary() - _ = yym2506 + yym2511 := z.EncBinary() + _ = yym2511 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -32692,15 +32740,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2507 := z.EncBinary() - _ = yym2507 + yym2512 := z.EncBinary() + _ = yym2512 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr2493 || yy2arr2493 { + if yyr2498 || yy2arr2498 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32713,25 +32761,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2508 := z.DecBinary() - _ = yym2508 + yym2513 := z.DecBinary() + _ = yym2513 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2509 := r.ContainerType() - if yyct2509 == codecSelferValueTypeMap1234 { - yyl2509 := r.ReadMapStart() - if yyl2509 == 0 { + yyct2514 := r.ContainerType() + if yyct2514 == codecSelferValueTypeMap1234 { + yyl2514 := r.ReadMapStart() + if yyl2514 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2509, d) + x.codecDecodeSelfFromMap(yyl2514, d) } - } else if yyct2509 == codecSelferValueTypeArray1234 { - yyl2509 := r.ReadArrayStart() - if yyl2509 == 0 { + } else if yyct2514 == codecSelferValueTypeArray1234 { + yyl2514 := r.ReadArrayStart() + if yyl2514 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2509, d) + x.codecDecodeSelfFromArray(yyl2514, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32743,12 +32791,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2510Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2510Slc - var yyhl2510 bool = l >= 0 - for yyj2510 := 0; ; yyj2510++ { - if yyhl2510 { - if yyj2510 >= l { + var yys2515Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2515Slc + var yyhl2515 bool = l >= 0 + for yyj2515 := 0; ; yyj2515++ { + if yyhl2515 { + if yyj2515 >= l { break } } else { @@ -32757,10 +32805,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2510Slc = r.DecodeBytes(yys2510Slc, true, true) - yys2510 := string(yys2510Slc) + yys2515Slc = r.DecodeBytes(yys2515Slc, true, true) + yys2515 := string(yys2515Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2510 { + switch yys2515 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32777,31 +32825,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2513 := &x.ListMeta - yym2514 := z.DecBinary() - _ = yym2514 + yyv2518 := &x.ListMeta + yym2519 := z.DecBinary() + _ = yym2519 if false { - } else if z.HasExtensions() && z.DecExt(yyv2513) { + } else if z.HasExtensions() && z.DecExt(yyv2518) { } else { - z.DecFallback(yyv2513, false) + z.DecFallback(yyv2518, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2515 := &x.Items - yym2516 := z.DecBinary() - _ = yym2516 + yyv2520 := &x.Items + yym2521 := z.DecBinary() + _ = yym2521 if false { } else { - h.decSliceService((*[]Service)(yyv2515), d) + h.decSliceService((*[]Service)(yyv2520), d) } } default: - z.DecStructFieldNotFound(-1, yys2510) - } // end switch yys2510 - } // end for yyj2510 + z.DecStructFieldNotFound(-1, yys2515) + } // end switch yys2515 + } // end for yyj2515 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32809,16 +32857,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2517 int - var yyb2517 bool - var yyhl2517 bool = l >= 0 - yyj2517++ - if yyhl2517 { - yyb2517 = yyj2517 > l + var yyj2522 int + var yyb2522 bool + var yyhl2522 bool = l >= 0 + yyj2522++ + if yyhl2522 { + yyb2522 = yyj2522 > l } else { - yyb2517 = r.CheckBreak() + yyb2522 = r.CheckBreak() } - if yyb2517 { + if yyb2522 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32828,13 +32876,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2517++ - if yyhl2517 { - yyb2517 = yyj2517 > l + yyj2522++ + if yyhl2522 { + yyb2522 = yyj2522 > l } else { - yyb2517 = r.CheckBreak() + yyb2522 = r.CheckBreak() } - if yyb2517 { + if yyb2522 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32844,13 +32892,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2517++ - if yyhl2517 { - yyb2517 = yyj2517 > l + yyj2522++ + if yyhl2522 { + yyb2522 = yyj2522 > l } else { - yyb2517 = r.CheckBreak() + yyb2522 = r.CheckBreak() } - if yyb2517 { + if yyb2522 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32858,22 +32906,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2520 := &x.ListMeta - yym2521 := z.DecBinary() - _ = yym2521 + yyv2525 := &x.ListMeta + yym2526 := z.DecBinary() + _ = yym2526 if false { - } else if z.HasExtensions() && z.DecExt(yyv2520) { + } else if z.HasExtensions() && z.DecExt(yyv2525) { } else { - z.DecFallback(yyv2520, false) + z.DecFallback(yyv2525, false) } } - yyj2517++ - if yyhl2517 { - yyb2517 = yyj2517 > l + yyj2522++ + if yyhl2522 { + yyb2522 = yyj2522 > l } else { - yyb2517 = r.CheckBreak() + yyb2522 = r.CheckBreak() } - if yyb2517 { + if yyb2522 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32881,26 +32929,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2522 := &x.Items - yym2523 := z.DecBinary() - _ = yym2523 + yyv2527 := &x.Items + yym2528 := z.DecBinary() + _ = yym2528 if false { } else { - h.decSliceService((*[]Service)(yyv2522), d) + h.decSliceService((*[]Service)(yyv2527), d) } } for { - yyj2517++ - if yyhl2517 { - yyb2517 = yyj2517 > l + yyj2522++ + if yyhl2522 { + yyb2522 = yyj2522 > l } else { - yyb2517 = r.CheckBreak() + yyb2522 = r.CheckBreak() } - if yyb2517 { + if yyb2522 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2517-1, "") + z.DecStructFieldNotFound(yyj2522-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32912,39 +32960,39 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2524 := z.EncBinary() - _ = yym2524 + yym2529 := z.EncBinary() + _ = yym2529 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2525 := !z.EncBinary() - yy2arr2525 := z.EncBasicHandle().StructToArray - var yyq2525 [5]bool - _, _, _ = yysep2525, yyq2525, yy2arr2525 - const yyr2525 bool = false - yyq2525[0] = x.Kind != "" - yyq2525[1] = x.APIVersion != "" - yyq2525[2] = true - yyq2525[3] = len(x.Secrets) != 0 - yyq2525[4] = len(x.ImagePullSecrets) != 0 - var yynn2525 int - if yyr2525 || yy2arr2525 { + yysep2530 := !z.EncBinary() + yy2arr2530 := z.EncBasicHandle().StructToArray + var yyq2530 [5]bool + _, _, _ = yysep2530, yyq2530, yy2arr2530 + const yyr2530 bool = false + yyq2530[0] = x.Kind != "" + yyq2530[1] = x.APIVersion != "" + yyq2530[2] = true + yyq2530[3] = len(x.Secrets) != 0 + yyq2530[4] = len(x.ImagePullSecrets) != 0 + var yynn2530 int + if yyr2530 || yy2arr2530 { r.EncodeArrayStart(5) } else { - yynn2525 = 0 - for _, b := range yyq2525 { + yynn2530 = 0 + for _, b := range yyq2530 { if b { - yynn2525++ + yynn2530++ } } - r.EncodeMapStart(yynn2525) - yynn2525 = 0 + r.EncodeMapStart(yynn2530) + yynn2530 = 0 } - if yyr2525 || yy2arr2525 { + if yyr2530 || yy2arr2530 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2525[0] { - yym2527 := z.EncBinary() - _ = yym2527 + if yyq2530[0] { + yym2532 := z.EncBinary() + _ = yym2532 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32953,23 +33001,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2525[0] { + if yyq2530[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2528 := z.EncBinary() - _ = yym2528 + yym2533 := z.EncBinary() + _ = yym2533 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2525 || yy2arr2525 { + if yyr2530 || yy2arr2530 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2525[1] { - yym2530 := z.EncBinary() - _ = yym2530 + if yyq2530[1] { + yym2535 := z.EncBinary() + _ = yym2535 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32978,43 +33026,43 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2525[1] { + if yyq2530[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2531 := z.EncBinary() - _ = yym2531 + yym2536 := z.EncBinary() + _ = yym2536 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2525 || yy2arr2525 { + if yyr2530 || yy2arr2530 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2525[2] { - yy2533 := &x.ObjectMeta - yy2533.CodecEncodeSelf(e) + if yyq2530[2] { + yy2538 := &x.ObjectMeta + yy2538.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2525[2] { + if yyq2530[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2534 := &x.ObjectMeta - yy2534.CodecEncodeSelf(e) + yy2539 := &x.ObjectMeta + yy2539.CodecEncodeSelf(e) } } - if yyr2525 || yy2arr2525 { + if yyr2530 || yy2arr2530 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2525[3] { + if yyq2530[3] { if x.Secrets == nil { r.EncodeNil() } else { - yym2536 := z.EncBinary() - _ = yym2536 + yym2541 := z.EncBinary() + _ = yym2541 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -33024,15 +33072,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2525[3] { + if yyq2530[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2537 := z.EncBinary() - _ = yym2537 + yym2542 := z.EncBinary() + _ = yym2542 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -33040,14 +33088,14 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2525 || yy2arr2525 { + if yyr2530 || yy2arr2530 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2525[4] { + if yyq2530[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2539 := z.EncBinary() - _ = yym2539 + yym2544 := z.EncBinary() + _ = yym2544 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -33057,15 +33105,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2525[4] { + if yyq2530[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2540 := z.EncBinary() - _ = yym2540 + yym2545 := z.EncBinary() + _ = yym2545 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -33073,7 +33121,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2525 || yy2arr2525 { + if yyr2530 || yy2arr2530 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33086,25 +33134,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2541 := z.DecBinary() - _ = yym2541 + yym2546 := z.DecBinary() + _ = yym2546 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2542 := r.ContainerType() - if yyct2542 == codecSelferValueTypeMap1234 { - yyl2542 := r.ReadMapStart() - if yyl2542 == 0 { + yyct2547 := r.ContainerType() + if yyct2547 == codecSelferValueTypeMap1234 { + yyl2547 := r.ReadMapStart() + if yyl2547 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2542, d) + x.codecDecodeSelfFromMap(yyl2547, d) } - } else if yyct2542 == codecSelferValueTypeArray1234 { - yyl2542 := r.ReadArrayStart() - if yyl2542 == 0 { + } else if yyct2547 == codecSelferValueTypeArray1234 { + yyl2547 := r.ReadArrayStart() + if yyl2547 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2542, d) + x.codecDecodeSelfFromArray(yyl2547, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33116,12 +33164,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2543Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2543Slc - var yyhl2543 bool = l >= 0 - for yyj2543 := 0; ; yyj2543++ { - if yyhl2543 { - if yyj2543 >= l { + var yys2548Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2548Slc + var yyhl2548 bool = l >= 0 + for yyj2548 := 0; ; yyj2548++ { + if yyhl2548 { + if yyj2548 >= l { break } } else { @@ -33130,10 +33178,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2543Slc = r.DecodeBytes(yys2543Slc, true, true) - yys2543 := string(yys2543Slc) + yys2548Slc = r.DecodeBytes(yys2548Slc, true, true) + yys2548 := string(yys2548Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2543 { + switch yys2548 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33150,37 +33198,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2546 := &x.ObjectMeta - yyv2546.CodecDecodeSelf(d) + yyv2551 := &x.ObjectMeta + yyv2551.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2547 := &x.Secrets - yym2548 := z.DecBinary() - _ = yym2548 + yyv2552 := &x.Secrets + yym2553 := z.DecBinary() + _ = yym2553 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2547), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2552), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2549 := &x.ImagePullSecrets - yym2550 := z.DecBinary() - _ = yym2550 + yyv2554 := &x.ImagePullSecrets + yym2555 := z.DecBinary() + _ = yym2555 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2549), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2554), d) } } default: - z.DecStructFieldNotFound(-1, yys2543) - } // end switch yys2543 - } // end for yyj2543 + z.DecStructFieldNotFound(-1, yys2548) + } // end switch yys2548 + } // end for yyj2548 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33188,16 +33236,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2551 int - var yyb2551 bool - var yyhl2551 bool = l >= 0 - yyj2551++ - if yyhl2551 { - yyb2551 = yyj2551 > l + var yyj2556 int + var yyb2556 bool + var yyhl2556 bool = l >= 0 + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2551 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2551 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33207,13 +33255,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2551++ - if yyhl2551 { - yyb2551 = yyj2551 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2551 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2551 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33223,13 +33271,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2551++ - if yyhl2551 { - yyb2551 = yyj2551 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2551 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2551 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33237,16 +33285,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2554 := &x.ObjectMeta - yyv2554.CodecDecodeSelf(d) + yyv2559 := &x.ObjectMeta + yyv2559.CodecDecodeSelf(d) } - yyj2551++ - if yyhl2551 { - yyb2551 = yyj2551 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2551 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2551 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33254,21 +33302,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2555 := &x.Secrets - yym2556 := z.DecBinary() - _ = yym2556 + yyv2560 := &x.Secrets + yym2561 := z.DecBinary() + _ = yym2561 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2555), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2560), d) } } - yyj2551++ - if yyhl2551 { - yyb2551 = yyj2551 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2551 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2551 { + if yyb2556 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33276,26 +33324,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2557 := &x.ImagePullSecrets - yym2558 := z.DecBinary() - _ = yym2558 + yyv2562 := &x.ImagePullSecrets + yym2563 := z.DecBinary() + _ = yym2563 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2557), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2562), d) } } for { - yyj2551++ - if yyhl2551 { - yyb2551 = yyj2551 > l + yyj2556++ + if yyhl2556 { + yyb2556 = yyj2556 > l } else { - yyb2551 = r.CheckBreak() + yyb2556 = r.CheckBreak() } - if yyb2551 { + if yyb2556 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2551-1, "") + z.DecStructFieldNotFound(yyj2556-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33307,37 +33355,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2559 := z.EncBinary() - _ = yym2559 + yym2564 := z.EncBinary() + _ = yym2564 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2560 := !z.EncBinary() - yy2arr2560 := z.EncBasicHandle().StructToArray - var yyq2560 [4]bool - _, _, _ = yysep2560, yyq2560, yy2arr2560 - const yyr2560 bool = false - yyq2560[0] = x.Kind != "" - yyq2560[1] = x.APIVersion != "" - yyq2560[2] = true - var yynn2560 int - if yyr2560 || yy2arr2560 { + yysep2565 := !z.EncBinary() + yy2arr2565 := z.EncBasicHandle().StructToArray + var yyq2565 [4]bool + _, _, _ = yysep2565, yyq2565, yy2arr2565 + const yyr2565 bool = false + yyq2565[0] = x.Kind != "" + yyq2565[1] = x.APIVersion != "" + yyq2565[2] = true + var yynn2565 int + if yyr2565 || yy2arr2565 { r.EncodeArrayStart(4) } else { - yynn2560 = 1 - for _, b := range yyq2560 { + yynn2565 = 1 + for _, b := range yyq2565 { if b { - yynn2560++ + yynn2565++ } } - r.EncodeMapStart(yynn2560) - yynn2560 = 0 + r.EncodeMapStart(yynn2565) + yynn2565 = 0 } - if yyr2560 || yy2arr2560 { + if yyr2565 || yy2arr2565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2560[0] { - yym2562 := z.EncBinary() - _ = yym2562 + if yyq2565[0] { + yym2567 := z.EncBinary() + _ = yym2567 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33346,23 +33394,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2560[0] { + if yyq2565[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2563 := z.EncBinary() - _ = yym2563 + yym2568 := z.EncBinary() + _ = yym2568 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2560 || yy2arr2560 { + if yyr2565 || yy2arr2565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2560[1] { - yym2565 := z.EncBinary() - _ = yym2565 + if yyq2565[1] { + yym2570 := z.EncBinary() + _ = yym2570 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33371,54 +33419,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2560[1] { + if yyq2565[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2566 := z.EncBinary() - _ = yym2566 + yym2571 := z.EncBinary() + _ = yym2571 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2560 || yy2arr2560 { + if yyr2565 || yy2arr2565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2560[2] { - yy2568 := &x.ListMeta - yym2569 := z.EncBinary() - _ = yym2569 + if yyq2565[2] { + yy2573 := &x.ListMeta + yym2574 := z.EncBinary() + _ = yym2574 if false { - } else if z.HasExtensions() && z.EncExt(yy2568) { + } else if z.HasExtensions() && z.EncExt(yy2573) { } else { - z.EncFallback(yy2568) + z.EncFallback(yy2573) } } else { r.EncodeNil() } } else { - if yyq2560[2] { + if yyq2565[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2570 := &x.ListMeta - yym2571 := z.EncBinary() - _ = yym2571 + yy2575 := &x.ListMeta + yym2576 := z.EncBinary() + _ = yym2576 if false { - } else if z.HasExtensions() && z.EncExt(yy2570) { + } else if z.HasExtensions() && z.EncExt(yy2575) { } else { - z.EncFallback(yy2570) + z.EncFallback(yy2575) } } } - if yyr2560 || yy2arr2560 { + if yyr2565 || yy2arr2565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2573 := z.EncBinary() - _ = yym2573 + yym2578 := z.EncBinary() + _ = yym2578 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -33431,15 +33479,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2574 := z.EncBinary() - _ = yym2574 + yym2579 := z.EncBinary() + _ = yym2579 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2560 || yy2arr2560 { + if yyr2565 || yy2arr2565 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33452,25 +33500,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2575 := z.DecBinary() - _ = yym2575 + yym2580 := z.DecBinary() + _ = yym2580 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2576 := r.ContainerType() - if yyct2576 == codecSelferValueTypeMap1234 { - yyl2576 := r.ReadMapStart() - if yyl2576 == 0 { + yyct2581 := r.ContainerType() + if yyct2581 == codecSelferValueTypeMap1234 { + yyl2581 := r.ReadMapStart() + if yyl2581 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2576, d) + x.codecDecodeSelfFromMap(yyl2581, d) } - } else if yyct2576 == codecSelferValueTypeArray1234 { - yyl2576 := r.ReadArrayStart() - if yyl2576 == 0 { + } else if yyct2581 == codecSelferValueTypeArray1234 { + yyl2581 := r.ReadArrayStart() + if yyl2581 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2576, d) + x.codecDecodeSelfFromArray(yyl2581, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33482,12 +33530,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2577Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2577Slc - var yyhl2577 bool = l >= 0 - for yyj2577 := 0; ; yyj2577++ { - if yyhl2577 { - if yyj2577 >= l { + var yys2582Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2582Slc + var yyhl2582 bool = l >= 0 + for yyj2582 := 0; ; yyj2582++ { + if yyhl2582 { + if yyj2582 >= l { break } } else { @@ -33496,10 +33544,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2577Slc = r.DecodeBytes(yys2577Slc, true, true) - yys2577 := string(yys2577Slc) + yys2582Slc = r.DecodeBytes(yys2582Slc, true, true) + yys2582 := string(yys2582Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2577 { + switch yys2582 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33516,31 +33564,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2580 := &x.ListMeta - yym2581 := z.DecBinary() - _ = yym2581 + yyv2585 := &x.ListMeta + yym2586 := z.DecBinary() + _ = yym2586 if false { - } else if z.HasExtensions() && z.DecExt(yyv2580) { + } else if z.HasExtensions() && z.DecExt(yyv2585) { } else { - z.DecFallback(yyv2580, false) + z.DecFallback(yyv2585, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2582 := &x.Items - yym2583 := z.DecBinary() - _ = yym2583 + yyv2587 := &x.Items + yym2588 := z.DecBinary() + _ = yym2588 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2582), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2587), d) } } default: - z.DecStructFieldNotFound(-1, yys2577) - } // end switch yys2577 - } // end for yyj2577 + z.DecStructFieldNotFound(-1, yys2582) + } // end switch yys2582 + } // end for yyj2582 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33548,16 +33596,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2584 int - var yyb2584 bool - var yyhl2584 bool = l >= 0 - yyj2584++ - if yyhl2584 { - yyb2584 = yyj2584 > l + var yyj2589 int + var yyb2589 bool + var yyhl2589 bool = l >= 0 + yyj2589++ + if yyhl2589 { + yyb2589 = yyj2589 > l } else { - yyb2584 = r.CheckBreak() + yyb2589 = r.CheckBreak() } - if yyb2584 { + if yyb2589 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33567,13 +33615,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2584++ - if yyhl2584 { - yyb2584 = yyj2584 > l + yyj2589++ + if yyhl2589 { + yyb2589 = yyj2589 > l } else { - yyb2584 = r.CheckBreak() + yyb2589 = r.CheckBreak() } - if yyb2584 { + if yyb2589 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33583,13 +33631,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2584++ - if yyhl2584 { - yyb2584 = yyj2584 > l + yyj2589++ + if yyhl2589 { + yyb2589 = yyj2589 > l } else { - yyb2584 = r.CheckBreak() + yyb2589 = r.CheckBreak() } - if yyb2584 { + if yyb2589 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33597,22 +33645,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2587 := &x.ListMeta - yym2588 := z.DecBinary() - _ = yym2588 + yyv2592 := &x.ListMeta + yym2593 := z.DecBinary() + _ = yym2593 if false { - } else if z.HasExtensions() && z.DecExt(yyv2587) { + } else if z.HasExtensions() && z.DecExt(yyv2592) { } else { - z.DecFallback(yyv2587, false) + z.DecFallback(yyv2592, false) } } - yyj2584++ - if yyhl2584 { - yyb2584 = yyj2584 > l + yyj2589++ + if yyhl2589 { + yyb2589 = yyj2589 > l } else { - yyb2584 = r.CheckBreak() + yyb2589 = r.CheckBreak() } - if yyb2584 { + if yyb2589 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33620,26 +33668,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2589 := &x.Items - yym2590 := z.DecBinary() - _ = yym2590 + yyv2594 := &x.Items + yym2595 := z.DecBinary() + _ = yym2595 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2589), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2594), d) } } for { - yyj2584++ - if yyhl2584 { - yyb2584 = yyj2584 > l + yyj2589++ + if yyhl2589 { + yyb2589 = yyj2589 > l } else { - yyb2584 = r.CheckBreak() + yyb2589 = r.CheckBreak() } - if yyb2584 { + if yyb2589 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2584-1, "") + z.DecStructFieldNotFound(yyj2589-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33651,37 +33699,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2591 := z.EncBinary() - _ = yym2591 + yym2596 := z.EncBinary() + _ = yym2596 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2592 := !z.EncBinary() - yy2arr2592 := z.EncBasicHandle().StructToArray - var yyq2592 [4]bool - _, _, _ = yysep2592, yyq2592, yy2arr2592 - const yyr2592 bool = false - yyq2592[0] = x.Kind != "" - yyq2592[1] = x.APIVersion != "" - yyq2592[2] = true - var yynn2592 int - if yyr2592 || yy2arr2592 { + yysep2597 := !z.EncBinary() + yy2arr2597 := z.EncBasicHandle().StructToArray + var yyq2597 [4]bool + _, _, _ = yysep2597, yyq2597, yy2arr2597 + const yyr2597 bool = false + yyq2597[0] = x.Kind != "" + yyq2597[1] = x.APIVersion != "" + yyq2597[2] = true + var yynn2597 int + if yyr2597 || yy2arr2597 { r.EncodeArrayStart(4) } else { - yynn2592 = 1 - for _, b := range yyq2592 { + yynn2597 = 1 + for _, b := range yyq2597 { if b { - yynn2592++ + yynn2597++ } } - r.EncodeMapStart(yynn2592) - yynn2592 = 0 + r.EncodeMapStart(yynn2597) + yynn2597 = 0 } - if yyr2592 || yy2arr2592 { + if yyr2597 || yy2arr2597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2592[0] { - yym2594 := z.EncBinary() - _ = yym2594 + if yyq2597[0] { + yym2599 := z.EncBinary() + _ = yym2599 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33690,23 +33738,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2592[0] { + if yyq2597[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2595 := z.EncBinary() - _ = yym2595 + yym2600 := z.EncBinary() + _ = yym2600 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2592 || yy2arr2592 { + if yyr2597 || yy2arr2597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2592[1] { - yym2597 := z.EncBinary() - _ = yym2597 + if yyq2597[1] { + yym2602 := z.EncBinary() + _ = yym2602 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33715,42 +33763,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2592[1] { + if yyq2597[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2598 := z.EncBinary() - _ = yym2598 + yym2603 := z.EncBinary() + _ = yym2603 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2592 || yy2arr2592 { + if yyr2597 || yy2arr2597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2592[2] { - yy2600 := &x.ObjectMeta - yy2600.CodecEncodeSelf(e) + if yyq2597[2] { + yy2605 := &x.ObjectMeta + yy2605.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2592[2] { + if yyq2597[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2601 := &x.ObjectMeta - yy2601.CodecEncodeSelf(e) + yy2606 := &x.ObjectMeta + yy2606.CodecEncodeSelf(e) } } - if yyr2592 || yy2arr2592 { + if yyr2597 || yy2arr2597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2603 := z.EncBinary() - _ = yym2603 + yym2608 := z.EncBinary() + _ = yym2608 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -33763,15 +33811,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2604 := z.EncBinary() - _ = yym2604 + yym2609 := z.EncBinary() + _ = yym2609 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2592 || yy2arr2592 { + if yyr2597 || yy2arr2597 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33784,25 +33832,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2605 := z.DecBinary() - _ = yym2605 + yym2610 := z.DecBinary() + _ = yym2610 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2606 := r.ContainerType() - if yyct2606 == codecSelferValueTypeMap1234 { - yyl2606 := r.ReadMapStart() - if yyl2606 == 0 { + yyct2611 := r.ContainerType() + if yyct2611 == codecSelferValueTypeMap1234 { + yyl2611 := r.ReadMapStart() + if yyl2611 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2606, d) + x.codecDecodeSelfFromMap(yyl2611, d) } - } else if yyct2606 == codecSelferValueTypeArray1234 { - yyl2606 := r.ReadArrayStart() - if yyl2606 == 0 { + } else if yyct2611 == codecSelferValueTypeArray1234 { + yyl2611 := r.ReadArrayStart() + if yyl2611 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2606, d) + x.codecDecodeSelfFromArray(yyl2611, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33814,12 +33862,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2607Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2607Slc - var yyhl2607 bool = l >= 0 - for yyj2607 := 0; ; yyj2607++ { - if yyhl2607 { - if yyj2607 >= l { + var yys2612Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2612Slc + var yyhl2612 bool = l >= 0 + for yyj2612 := 0; ; yyj2612++ { + if yyhl2612 { + if yyj2612 >= l { break } } else { @@ -33828,10 +33876,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2607Slc = r.DecodeBytes(yys2607Slc, true, true) - yys2607 := string(yys2607Slc) + yys2612Slc = r.DecodeBytes(yys2612Slc, true, true) + yys2612 := string(yys2612Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2607 { + switch yys2612 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33848,25 +33896,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2610 := &x.ObjectMeta - yyv2610.CodecDecodeSelf(d) + yyv2615 := &x.ObjectMeta + yyv2615.CodecDecodeSelf(d) } case "subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2611 := &x.Subsets - yym2612 := z.DecBinary() - _ = yym2612 + yyv2616 := &x.Subsets + yym2617 := z.DecBinary() + _ = yym2617 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2611), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2616), d) } } default: - z.DecStructFieldNotFound(-1, yys2607) - } // end switch yys2607 - } // end for yyj2607 + z.DecStructFieldNotFound(-1, yys2612) + } // end switch yys2612 + } // end for yyj2612 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33874,16 +33922,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2613 int - var yyb2613 bool - var yyhl2613 bool = l >= 0 - yyj2613++ - if yyhl2613 { - yyb2613 = yyj2613 > l + var yyj2618 int + var yyb2618 bool + var yyhl2618 bool = l >= 0 + yyj2618++ + if yyhl2618 { + yyb2618 = yyj2618 > l } else { - yyb2613 = r.CheckBreak() + yyb2618 = r.CheckBreak() } - if yyb2613 { + if yyb2618 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33893,13 +33941,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2613++ - if yyhl2613 { - yyb2613 = yyj2613 > l + yyj2618++ + if yyhl2618 { + yyb2618 = yyj2618 > l } else { - yyb2613 = r.CheckBreak() + yyb2618 = r.CheckBreak() } - if yyb2613 { + if yyb2618 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33909,13 +33957,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2613++ - if yyhl2613 { - yyb2613 = yyj2613 > l + yyj2618++ + if yyhl2618 { + yyb2618 = yyj2618 > l } else { - yyb2613 = r.CheckBreak() + yyb2618 = r.CheckBreak() } - if yyb2613 { + if yyb2618 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33923,16 +33971,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2616 := &x.ObjectMeta - yyv2616.CodecDecodeSelf(d) + yyv2621 := &x.ObjectMeta + yyv2621.CodecDecodeSelf(d) } - yyj2613++ - if yyhl2613 { - yyb2613 = yyj2613 > l + yyj2618++ + if yyhl2618 { + yyb2618 = yyj2618 > l } else { - yyb2613 = r.CheckBreak() + yyb2618 = r.CheckBreak() } - if yyb2613 { + if yyb2618 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33940,26 +33988,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2617 := &x.Subsets - yym2618 := z.DecBinary() - _ = yym2618 + yyv2622 := &x.Subsets + yym2623 := z.DecBinary() + _ = yym2623 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2617), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2622), d) } } for { - yyj2613++ - if yyhl2613 { - yyb2613 = yyj2613 > l + yyj2618++ + if yyhl2618 { + yyb2618 = yyj2618 > l } else { - yyb2613 = r.CheckBreak() + yyb2618 = r.CheckBreak() } - if yyb2613 { + if yyb2618 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2613-1, "") + z.DecStructFieldNotFound(yyj2618-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33971,40 +34019,40 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2619 := z.EncBinary() - _ = yym2619 + yym2624 := z.EncBinary() + _ = yym2624 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2620 := !z.EncBinary() - yy2arr2620 := z.EncBasicHandle().StructToArray - var yyq2620 [3]bool - _, _, _ = yysep2620, yyq2620, yy2arr2620 - const yyr2620 bool = false - yyq2620[0] = len(x.Addresses) != 0 - yyq2620[1] = len(x.NotReadyAddresses) != 0 - yyq2620[2] = len(x.Ports) != 0 - var yynn2620 int - if yyr2620 || yy2arr2620 { + yysep2625 := !z.EncBinary() + yy2arr2625 := z.EncBasicHandle().StructToArray + var yyq2625 [3]bool + _, _, _ = yysep2625, yyq2625, yy2arr2625 + const yyr2625 bool = false + yyq2625[0] = len(x.Addresses) != 0 + yyq2625[1] = len(x.NotReadyAddresses) != 0 + yyq2625[2] = len(x.Ports) != 0 + var yynn2625 int + if yyr2625 || yy2arr2625 { r.EncodeArrayStart(3) } else { - yynn2620 = 0 - for _, b := range yyq2620 { + yynn2625 = 0 + for _, b := range yyq2625 { if b { - yynn2620++ + yynn2625++ } } - r.EncodeMapStart(yynn2620) - yynn2620 = 0 + r.EncodeMapStart(yynn2625) + yynn2625 = 0 } - if yyr2620 || yy2arr2620 { + if yyr2625 || yy2arr2625 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2620[0] { + if yyq2625[0] { if x.Addresses == nil { r.EncodeNil() } else { - yym2622 := z.EncBinary() - _ = yym2622 + yym2627 := z.EncBinary() + _ = yym2627 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -34014,15 +34062,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2620[0] { + if yyq2625[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2623 := z.EncBinary() - _ = yym2623 + yym2628 := z.EncBinary() + _ = yym2628 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -34030,14 +34078,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2620 || yy2arr2620 { + if yyr2625 || yy2arr2625 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2620[1] { + if yyq2625[1] { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2625 := z.EncBinary() - _ = yym2625 + yym2630 := z.EncBinary() + _ = yym2630 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -34047,15 +34095,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2620[1] { + if yyq2625[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("notReadyAddresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2626 := z.EncBinary() - _ = yym2626 + yym2631 := z.EncBinary() + _ = yym2631 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -34063,14 +34111,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2620 || yy2arr2620 { + if yyr2625 || yy2arr2625 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2620[2] { + if yyq2625[2] { if x.Ports == nil { r.EncodeNil() } else { - yym2628 := z.EncBinary() - _ = yym2628 + yym2633 := z.EncBinary() + _ = yym2633 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -34080,15 +34128,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2620[2] { + if yyq2625[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym2629 := z.EncBinary() - _ = yym2629 + yym2634 := z.EncBinary() + _ = yym2634 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -34096,7 +34144,7 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2620 || yy2arr2620 { + if yyr2625 || yy2arr2625 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34109,25 +34157,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2630 := z.DecBinary() - _ = yym2630 + yym2635 := z.DecBinary() + _ = yym2635 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2631 := r.ContainerType() - if yyct2631 == codecSelferValueTypeMap1234 { - yyl2631 := r.ReadMapStart() - if yyl2631 == 0 { + yyct2636 := r.ContainerType() + if yyct2636 == codecSelferValueTypeMap1234 { + yyl2636 := r.ReadMapStart() + if yyl2636 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2631, d) + x.codecDecodeSelfFromMap(yyl2636, d) } - } else if yyct2631 == codecSelferValueTypeArray1234 { - yyl2631 := r.ReadArrayStart() - if yyl2631 == 0 { + } else if yyct2636 == codecSelferValueTypeArray1234 { + yyl2636 := r.ReadArrayStart() + if yyl2636 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2631, d) + x.codecDecodeSelfFromArray(yyl2636, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34139,12 +34187,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2632Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2632Slc - var yyhl2632 bool = l >= 0 - for yyj2632 := 0; ; yyj2632++ { - if yyhl2632 { - if yyj2632 >= l { + var yys2637Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2637Slc + var yyhl2637 bool = l >= 0 + for yyj2637 := 0; ; yyj2637++ { + if yyhl2637 { + if yyj2637 >= l { break } } else { @@ -34153,50 +34201,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2632Slc = r.DecodeBytes(yys2632Slc, true, true) - yys2632 := string(yys2632Slc) + yys2637Slc = r.DecodeBytes(yys2637Slc, true, true) + yys2637 := string(yys2637Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2632 { + switch yys2637 { case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2633 := &x.Addresses - yym2634 := z.DecBinary() - _ = yym2634 + yyv2638 := &x.Addresses + yym2639 := z.DecBinary() + _ = yym2639 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2633), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2638), d) } } case "notReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2635 := &x.NotReadyAddresses - yym2636 := z.DecBinary() - _ = yym2636 + yyv2640 := &x.NotReadyAddresses + yym2641 := z.DecBinary() + _ = yym2641 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2635), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2640), d) } } case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2637 := &x.Ports - yym2638 := z.DecBinary() - _ = yym2638 + yyv2642 := &x.Ports + yym2643 := z.DecBinary() + _ = yym2643 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2637), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2642), d) } } default: - z.DecStructFieldNotFound(-1, yys2632) - } // end switch yys2632 - } // end for yyj2632 + z.DecStructFieldNotFound(-1, yys2637) + } // end switch yys2637 + } // end for yyj2637 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34204,16 +34252,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2639 int - var yyb2639 bool - var yyhl2639 bool = l >= 0 - yyj2639++ - if yyhl2639 { - yyb2639 = yyj2639 > l + var yyj2644 int + var yyb2644 bool + var yyhl2644 bool = l >= 0 + yyj2644++ + if yyhl2644 { + yyb2644 = yyj2644 > l } else { - yyb2639 = r.CheckBreak() + yyb2644 = r.CheckBreak() } - if yyb2639 { + if yyb2644 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34221,21 +34269,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2640 := &x.Addresses - yym2641 := z.DecBinary() - _ = yym2641 + yyv2645 := &x.Addresses + yym2646 := z.DecBinary() + _ = yym2646 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2640), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2645), d) } } - yyj2639++ - if yyhl2639 { - yyb2639 = yyj2639 > l + yyj2644++ + if yyhl2644 { + yyb2644 = yyj2644 > l } else { - yyb2639 = r.CheckBreak() + yyb2644 = r.CheckBreak() } - if yyb2639 { + if yyb2644 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34243,21 +34291,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2642 := &x.NotReadyAddresses - yym2643 := z.DecBinary() - _ = yym2643 + yyv2647 := &x.NotReadyAddresses + yym2648 := z.DecBinary() + _ = yym2648 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2642), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2647), d) } } - yyj2639++ - if yyhl2639 { - yyb2639 = yyj2639 > l + yyj2644++ + if yyhl2644 { + yyb2644 = yyj2644 > l } else { - yyb2639 = r.CheckBreak() + yyb2644 = r.CheckBreak() } - if yyb2639 { + if yyb2644 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34265,26 +34313,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2644 := &x.Ports - yym2645 := z.DecBinary() - _ = yym2645 + yyv2649 := &x.Ports + yym2650 := z.DecBinary() + _ = yym2650 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2644), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2649), d) } } for { - yyj2639++ - if yyhl2639 { - yyb2639 = yyj2639 > l + yyj2644++ + if yyhl2644 { + yyb2644 = yyj2644 > l } else { - yyb2639 = r.CheckBreak() + yyb2644 = r.CheckBreak() } - if yyb2639 { + if yyb2644 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2639-1, "") + z.DecStructFieldNotFound(yyj2644-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34296,35 +34344,35 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2646 := z.EncBinary() - _ = yym2646 + yym2651 := z.EncBinary() + _ = yym2651 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2647 := !z.EncBinary() - yy2arr2647 := z.EncBasicHandle().StructToArray - var yyq2647 [3]bool - _, _, _ = yysep2647, yyq2647, yy2arr2647 - const yyr2647 bool = false - yyq2647[1] = x.Hostname != "" - yyq2647[2] = x.TargetRef != nil - var yynn2647 int - if yyr2647 || yy2arr2647 { + yysep2652 := !z.EncBinary() + yy2arr2652 := z.EncBasicHandle().StructToArray + var yyq2652 [3]bool + _, _, _ = yysep2652, yyq2652, yy2arr2652 + const yyr2652 bool = false + yyq2652[1] = x.Hostname != "" + yyq2652[2] = x.TargetRef != nil + var yynn2652 int + if yyr2652 || yy2arr2652 { r.EncodeArrayStart(3) } else { - yynn2647 = 1 - for _, b := range yyq2647 { + yynn2652 = 1 + for _, b := range yyq2652 { if b { - yynn2647++ + yynn2652++ } } - r.EncodeMapStart(yynn2647) - yynn2647 = 0 + r.EncodeMapStart(yynn2652) + yynn2652 = 0 } - if yyr2647 || yy2arr2647 { + if yyr2652 || yy2arr2652 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2649 := z.EncBinary() - _ = yym2649 + yym2654 := z.EncBinary() + _ = yym2654 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -34333,18 +34381,18 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2650 := z.EncBinary() - _ = yym2650 + yym2655 := z.EncBinary() + _ = yym2655 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2647 || yy2arr2647 { + if yyr2652 || yy2arr2652 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2647[1] { - yym2652 := z.EncBinary() - _ = yym2652 + if yyq2652[1] { + yym2657 := z.EncBinary() + _ = yym2657 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -34353,21 +34401,21 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2647[1] { + if yyq2652[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2653 := z.EncBinary() - _ = yym2653 + yym2658 := z.EncBinary() + _ = yym2658 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2647 || yy2arr2647 { + if yyr2652 || yy2arr2652 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2647[2] { + if yyq2652[2] { if x.TargetRef == nil { r.EncodeNil() } else { @@ -34377,7 +34425,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2647[2] { + if yyq2652[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -34388,7 +34436,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2647 || yy2arr2647 { + if yyr2652 || yy2arr2652 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34401,25 +34449,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2655 := z.DecBinary() - _ = yym2655 + yym2660 := z.DecBinary() + _ = yym2660 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2656 := r.ContainerType() - if yyct2656 == codecSelferValueTypeMap1234 { - yyl2656 := r.ReadMapStart() - if yyl2656 == 0 { + yyct2661 := r.ContainerType() + if yyct2661 == codecSelferValueTypeMap1234 { + yyl2661 := r.ReadMapStart() + if yyl2661 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2656, d) + x.codecDecodeSelfFromMap(yyl2661, d) } - } else if yyct2656 == codecSelferValueTypeArray1234 { - yyl2656 := r.ReadArrayStart() - if yyl2656 == 0 { + } else if yyct2661 == codecSelferValueTypeArray1234 { + yyl2661 := r.ReadArrayStart() + if yyl2661 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2656, d) + x.codecDecodeSelfFromArray(yyl2661, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34431,12 +34479,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2657Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2657Slc - var yyhl2657 bool = l >= 0 - for yyj2657 := 0; ; yyj2657++ { - if yyhl2657 { - if yyj2657 >= l { + var yys2662Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2662Slc + var yyhl2662 bool = l >= 0 + for yyj2662 := 0; ; yyj2662++ { + if yyhl2662 { + if yyj2662 >= l { break } } else { @@ -34445,10 +34493,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2657Slc = r.DecodeBytes(yys2657Slc, true, true) - yys2657 := string(yys2657Slc) + yys2662Slc = r.DecodeBytes(yys2662Slc, true, true) + yys2662 := string(yys2662Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2657 { + switch yys2662 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -34473,9 +34521,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2657) - } // end switch yys2657 - } // end for yyj2657 + z.DecStructFieldNotFound(-1, yys2662) + } // end switch yys2662 + } // end for yyj2662 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34483,16 +34531,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2661 int - var yyb2661 bool - var yyhl2661 bool = l >= 0 - yyj2661++ - if yyhl2661 { - yyb2661 = yyj2661 > l + var yyj2666 int + var yyb2666 bool + var yyhl2666 bool = l >= 0 + yyj2666++ + if yyhl2666 { + yyb2666 = yyj2666 > l } else { - yyb2661 = r.CheckBreak() + yyb2666 = r.CheckBreak() } - if yyb2661 { + if yyb2666 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34502,13 +34550,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2661++ - if yyhl2661 { - yyb2661 = yyj2661 > l + yyj2666++ + if yyhl2666 { + yyb2666 = yyj2666 > l } else { - yyb2661 = r.CheckBreak() + yyb2666 = r.CheckBreak() } - if yyb2661 { + if yyb2666 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34518,13 +34566,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Hostname = string(r.DecodeString()) } - yyj2661++ - if yyhl2661 { - yyb2661 = yyj2661 > l + yyj2666++ + if yyhl2666 { + yyb2666 = yyj2666 > l } else { - yyb2661 = r.CheckBreak() + yyb2666 = r.CheckBreak() } - if yyb2661 { + if yyb2666 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34540,17 +34588,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2661++ - if yyhl2661 { - yyb2661 = yyj2661 > l + yyj2666++ + if yyhl2666 { + yyb2666 = yyj2666 > l } else { - yyb2661 = r.CheckBreak() + yyb2666 = r.CheckBreak() } - if yyb2661 { + if yyb2666 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2661-1, "") + z.DecStructFieldNotFound(yyj2666-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34562,36 +34610,36 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2665 := z.EncBinary() - _ = yym2665 + yym2670 := z.EncBinary() + _ = yym2670 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2666 := !z.EncBinary() - yy2arr2666 := z.EncBasicHandle().StructToArray - var yyq2666 [3]bool - _, _, _ = yysep2666, yyq2666, yy2arr2666 - const yyr2666 bool = false - yyq2666[0] = x.Name != "" - yyq2666[2] = x.Protocol != "" - var yynn2666 int - if yyr2666 || yy2arr2666 { + yysep2671 := !z.EncBinary() + yy2arr2671 := z.EncBasicHandle().StructToArray + var yyq2671 [3]bool + _, _, _ = yysep2671, yyq2671, yy2arr2671 + const yyr2671 bool = false + yyq2671[0] = x.Name != "" + yyq2671[2] = x.Protocol != "" + var yynn2671 int + if yyr2671 || yy2arr2671 { r.EncodeArrayStart(3) } else { - yynn2666 = 1 - for _, b := range yyq2666 { + yynn2671 = 1 + for _, b := range yyq2671 { if b { - yynn2666++ + yynn2671++ } } - r.EncodeMapStart(yynn2666) - yynn2666 = 0 + r.EncodeMapStart(yynn2671) + yynn2671 = 0 } - if yyr2666 || yy2arr2666 { + if yyr2671 || yy2arr2671 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2666[0] { - yym2668 := z.EncBinary() - _ = yym2668 + if yyq2671[0] { + yym2673 := z.EncBinary() + _ = yym2673 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -34600,22 +34648,22 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2666[0] { + if yyq2671[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2669 := z.EncBinary() - _ = yym2669 + yym2674 := z.EncBinary() + _ = yym2674 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2666 || yy2arr2666 { + if yyr2671 || yy2arr2671 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2671 := z.EncBinary() - _ = yym2671 + yym2676 := z.EncBinary() + _ = yym2676 if false { } else { r.EncodeInt(int64(x.Port)) @@ -34624,29 +34672,29 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2672 := z.EncBinary() - _ = yym2672 + yym2677 := z.EncBinary() + _ = yym2677 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2666 || yy2arr2666 { + if yyr2671 || yy2arr2671 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2666[2] { + if yyq2671[2] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2666[2] { + if yyq2671[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2666 || yy2arr2666 { + if yyr2671 || yy2arr2671 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34659,25 +34707,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2674 := z.DecBinary() - _ = yym2674 + yym2679 := z.DecBinary() + _ = yym2679 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2675 := r.ContainerType() - if yyct2675 == codecSelferValueTypeMap1234 { - yyl2675 := r.ReadMapStart() - if yyl2675 == 0 { + yyct2680 := r.ContainerType() + if yyct2680 == codecSelferValueTypeMap1234 { + yyl2680 := r.ReadMapStart() + if yyl2680 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2675, d) + x.codecDecodeSelfFromMap(yyl2680, d) } - } else if yyct2675 == codecSelferValueTypeArray1234 { - yyl2675 := r.ReadArrayStart() - if yyl2675 == 0 { + } else if yyct2680 == codecSelferValueTypeArray1234 { + yyl2680 := r.ReadArrayStart() + if yyl2680 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2675, d) + x.codecDecodeSelfFromArray(yyl2680, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34689,12 +34737,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2676Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2676Slc - var yyhl2676 bool = l >= 0 - for yyj2676 := 0; ; yyj2676++ { - if yyhl2676 { - if yyj2676 >= l { + var yys2681Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2681Slc + var yyhl2681 bool = l >= 0 + for yyj2681 := 0; ; yyj2681++ { + if yyhl2681 { + if yyj2681 >= l { break } } else { @@ -34703,10 +34751,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2676Slc = r.DecodeBytes(yys2676Slc, true, true) - yys2676 := string(yys2676Slc) + yys2681Slc = r.DecodeBytes(yys2681Slc, true, true) + yys2681 := string(yys2681Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2676 { + switch yys2681 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -34726,9 +34774,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2676) - } // end switch yys2676 - } // end for yyj2676 + z.DecStructFieldNotFound(-1, yys2681) + } // end switch yys2681 + } // end for yyj2681 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34736,16 +34784,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2680 int - var yyb2680 bool - var yyhl2680 bool = l >= 0 - yyj2680++ - if yyhl2680 { - yyb2680 = yyj2680 > l + var yyj2685 int + var yyb2685 bool + var yyhl2685 bool = l >= 0 + yyj2685++ + if yyhl2685 { + yyb2685 = yyj2685 > l } else { - yyb2680 = r.CheckBreak() + yyb2685 = r.CheckBreak() } - if yyb2680 { + if yyb2685 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34755,13 +34803,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2680++ - if yyhl2680 { - yyb2680 = yyj2680 > l + yyj2685++ + if yyhl2685 { + yyb2685 = yyj2685 > l } else { - yyb2680 = r.CheckBreak() + yyb2685 = r.CheckBreak() } - if yyb2680 { + if yyb2685 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34771,13 +34819,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2680++ - if yyhl2680 { - yyb2680 = yyj2680 > l + yyj2685++ + if yyhl2685 { + yyb2685 = yyj2685 > l } else { - yyb2680 = r.CheckBreak() + yyb2685 = r.CheckBreak() } - if yyb2680 { + if yyb2685 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34788,17 +34836,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2680++ - if yyhl2680 { - yyb2680 = yyj2680 > l + yyj2685++ + if yyhl2685 { + yyb2685 = yyj2685 > l } else { - yyb2680 = r.CheckBreak() + yyb2685 = r.CheckBreak() } - if yyb2680 { + if yyb2685 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2680-1, "") + z.DecStructFieldNotFound(yyj2685-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34810,37 +34858,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2684 := z.EncBinary() - _ = yym2684 + yym2689 := z.EncBinary() + _ = yym2689 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2685 := !z.EncBinary() - yy2arr2685 := z.EncBasicHandle().StructToArray - var yyq2685 [4]bool - _, _, _ = yysep2685, yyq2685, yy2arr2685 - const yyr2685 bool = false - yyq2685[0] = x.Kind != "" - yyq2685[1] = x.APIVersion != "" - yyq2685[2] = true - var yynn2685 int - if yyr2685 || yy2arr2685 { + yysep2690 := !z.EncBinary() + yy2arr2690 := z.EncBasicHandle().StructToArray + var yyq2690 [4]bool + _, _, _ = yysep2690, yyq2690, yy2arr2690 + const yyr2690 bool = false + yyq2690[0] = x.Kind != "" + yyq2690[1] = x.APIVersion != "" + yyq2690[2] = true + var yynn2690 int + if yyr2690 || yy2arr2690 { r.EncodeArrayStart(4) } else { - yynn2685 = 1 - for _, b := range yyq2685 { + yynn2690 = 1 + for _, b := range yyq2690 { if b { - yynn2685++ + yynn2690++ } } - r.EncodeMapStart(yynn2685) - yynn2685 = 0 + r.EncodeMapStart(yynn2690) + yynn2690 = 0 } - if yyr2685 || yy2arr2685 { + if yyr2690 || yy2arr2690 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2685[0] { - yym2687 := z.EncBinary() - _ = yym2687 + if yyq2690[0] { + yym2692 := z.EncBinary() + _ = yym2692 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34849,23 +34897,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2685[0] { + if yyq2690[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2688 := z.EncBinary() - _ = yym2688 + yym2693 := z.EncBinary() + _ = yym2693 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2685 || yy2arr2685 { + if yyr2690 || yy2arr2690 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2685[1] { - yym2690 := z.EncBinary() - _ = yym2690 + if yyq2690[1] { + yym2695 := z.EncBinary() + _ = yym2695 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34874,54 +34922,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2685[1] { + if yyq2690[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2691 := z.EncBinary() - _ = yym2691 + yym2696 := z.EncBinary() + _ = yym2696 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2685 || yy2arr2685 { + if yyr2690 || yy2arr2690 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2685[2] { - yy2693 := &x.ListMeta - yym2694 := z.EncBinary() - _ = yym2694 + if yyq2690[2] { + yy2698 := &x.ListMeta + yym2699 := z.EncBinary() + _ = yym2699 if false { - } else if z.HasExtensions() && z.EncExt(yy2693) { + } else if z.HasExtensions() && z.EncExt(yy2698) { } else { - z.EncFallback(yy2693) + z.EncFallback(yy2698) } } else { r.EncodeNil() } } else { - if yyq2685[2] { + if yyq2690[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2695 := &x.ListMeta - yym2696 := z.EncBinary() - _ = yym2696 + yy2700 := &x.ListMeta + yym2701 := z.EncBinary() + _ = yym2701 if false { - } else if z.HasExtensions() && z.EncExt(yy2695) { + } else if z.HasExtensions() && z.EncExt(yy2700) { } else { - z.EncFallback(yy2695) + z.EncFallback(yy2700) } } } - if yyr2685 || yy2arr2685 { + if yyr2690 || yy2arr2690 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2698 := z.EncBinary() - _ = yym2698 + yym2703 := z.EncBinary() + _ = yym2703 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -34934,15 +34982,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2699 := z.EncBinary() - _ = yym2699 + yym2704 := z.EncBinary() + _ = yym2704 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2685 || yy2arr2685 { + if yyr2690 || yy2arr2690 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34955,25 +35003,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2700 := z.DecBinary() - _ = yym2700 + yym2705 := z.DecBinary() + _ = yym2705 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2701 := r.ContainerType() - if yyct2701 == codecSelferValueTypeMap1234 { - yyl2701 := r.ReadMapStart() - if yyl2701 == 0 { + yyct2706 := r.ContainerType() + if yyct2706 == codecSelferValueTypeMap1234 { + yyl2706 := r.ReadMapStart() + if yyl2706 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2701, d) + x.codecDecodeSelfFromMap(yyl2706, d) } - } else if yyct2701 == codecSelferValueTypeArray1234 { - yyl2701 := r.ReadArrayStart() - if yyl2701 == 0 { + } else if yyct2706 == codecSelferValueTypeArray1234 { + yyl2706 := r.ReadArrayStart() + if yyl2706 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2701, d) + x.codecDecodeSelfFromArray(yyl2706, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34985,12 +35033,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2702Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2702Slc - var yyhl2702 bool = l >= 0 - for yyj2702 := 0; ; yyj2702++ { - if yyhl2702 { - if yyj2702 >= l { + var yys2707Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2707Slc + var yyhl2707 bool = l >= 0 + for yyj2707 := 0; ; yyj2707++ { + if yyhl2707 { + if yyj2707 >= l { break } } else { @@ -34999,10 +35047,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2702Slc = r.DecodeBytes(yys2702Slc, true, true) - yys2702 := string(yys2702Slc) + yys2707Slc = r.DecodeBytes(yys2707Slc, true, true) + yys2707 := string(yys2707Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2702 { + switch yys2707 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35019,31 +35067,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2705 := &x.ListMeta - yym2706 := z.DecBinary() - _ = yym2706 + yyv2710 := &x.ListMeta + yym2711 := z.DecBinary() + _ = yym2711 if false { - } else if z.HasExtensions() && z.DecExt(yyv2705) { + } else if z.HasExtensions() && z.DecExt(yyv2710) { } else { - z.DecFallback(yyv2705, false) + z.DecFallback(yyv2710, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2707 := &x.Items - yym2708 := z.DecBinary() - _ = yym2708 + yyv2712 := &x.Items + yym2713 := z.DecBinary() + _ = yym2713 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2707), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2712), d) } } default: - z.DecStructFieldNotFound(-1, yys2702) - } // end switch yys2702 - } // end for yyj2702 + z.DecStructFieldNotFound(-1, yys2707) + } // end switch yys2707 + } // end for yyj2707 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35051,16 +35099,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2709 int - var yyb2709 bool - var yyhl2709 bool = l >= 0 - yyj2709++ - if yyhl2709 { - yyb2709 = yyj2709 > l + var yyj2714 int + var yyb2714 bool + var yyhl2714 bool = l >= 0 + yyj2714++ + if yyhl2714 { + yyb2714 = yyj2714 > l } else { - yyb2709 = r.CheckBreak() + yyb2714 = r.CheckBreak() } - if yyb2709 { + if yyb2714 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35070,13 +35118,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2709++ - if yyhl2709 { - yyb2709 = yyj2709 > l + yyj2714++ + if yyhl2714 { + yyb2714 = yyj2714 > l } else { - yyb2709 = r.CheckBreak() + yyb2714 = r.CheckBreak() } - if yyb2709 { + if yyb2714 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35086,13 +35134,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2709++ - if yyhl2709 { - yyb2709 = yyj2709 > l + yyj2714++ + if yyhl2714 { + yyb2714 = yyj2714 > l } else { - yyb2709 = r.CheckBreak() + yyb2714 = r.CheckBreak() } - if yyb2709 { + if yyb2714 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35100,22 +35148,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2712 := &x.ListMeta - yym2713 := z.DecBinary() - _ = yym2713 + yyv2717 := &x.ListMeta + yym2718 := z.DecBinary() + _ = yym2718 if false { - } else if z.HasExtensions() && z.DecExt(yyv2712) { + } else if z.HasExtensions() && z.DecExt(yyv2717) { } else { - z.DecFallback(yyv2712, false) + z.DecFallback(yyv2717, false) } } - yyj2709++ - if yyhl2709 { - yyb2709 = yyj2709 > l + yyj2714++ + if yyhl2714 { + yyb2714 = yyj2714 > l } else { - yyb2709 = r.CheckBreak() + yyb2714 = r.CheckBreak() } - if yyb2709 { + if yyb2714 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35123,26 +35171,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2714 := &x.Items - yym2715 := z.DecBinary() - _ = yym2715 + yyv2719 := &x.Items + yym2720 := z.DecBinary() + _ = yym2720 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2714), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2719), d) } } for { - yyj2709++ - if yyhl2709 { - yyb2709 = yyj2709 > l + yyj2714++ + if yyhl2714 { + yyb2714 = yyj2714 > l } else { - yyb2709 = r.CheckBreak() + yyb2714 = r.CheckBreak() } - if yyb2709 { + if yyb2714 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2709-1, "") + z.DecStructFieldNotFound(yyj2714-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35154,38 +35202,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2716 := z.EncBinary() - _ = yym2716 + yym2721 := z.EncBinary() + _ = yym2721 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2717 := !z.EncBinary() - yy2arr2717 := z.EncBasicHandle().StructToArray - var yyq2717 [4]bool - _, _, _ = yysep2717, yyq2717, yy2arr2717 - const yyr2717 bool = false - yyq2717[0] = x.PodCIDR != "" - yyq2717[1] = x.ExternalID != "" - yyq2717[2] = x.ProviderID != "" - yyq2717[3] = x.Unschedulable != false - var yynn2717 int - if yyr2717 || yy2arr2717 { + yysep2722 := !z.EncBinary() + yy2arr2722 := z.EncBasicHandle().StructToArray + var yyq2722 [4]bool + _, _, _ = yysep2722, yyq2722, yy2arr2722 + const yyr2722 bool = false + yyq2722[0] = x.PodCIDR != "" + yyq2722[1] = x.ExternalID != "" + yyq2722[2] = x.ProviderID != "" + yyq2722[3] = x.Unschedulable != false + var yynn2722 int + if yyr2722 || yy2arr2722 { r.EncodeArrayStart(4) } else { - yynn2717 = 0 - for _, b := range yyq2717 { + yynn2722 = 0 + for _, b := range yyq2722 { if b { - yynn2717++ + yynn2722++ } } - r.EncodeMapStart(yynn2717) - yynn2717 = 0 + r.EncodeMapStart(yynn2722) + yynn2722 = 0 } - if yyr2717 || yy2arr2717 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2717[0] { - yym2719 := z.EncBinary() - _ = yym2719 + if yyq2722[0] { + yym2724 := z.EncBinary() + _ = yym2724 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -35194,23 +35242,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2717[0] { + if yyq2722[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2720 := z.EncBinary() - _ = yym2720 + yym2725 := z.EncBinary() + _ = yym2725 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2717 || yy2arr2717 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2717[1] { - yym2722 := z.EncBinary() - _ = yym2722 + if yyq2722[1] { + yym2727 := z.EncBinary() + _ = yym2727 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -35219,23 +35267,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2717[1] { + if yyq2722[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2723 := z.EncBinary() - _ = yym2723 + yym2728 := z.EncBinary() + _ = yym2728 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2717 || yy2arr2717 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2717[2] { - yym2725 := z.EncBinary() - _ = yym2725 + if yyq2722[2] { + yym2730 := z.EncBinary() + _ = yym2730 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -35244,23 +35292,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2717[2] { + if yyq2722[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2726 := z.EncBinary() - _ = yym2726 + yym2731 := z.EncBinary() + _ = yym2731 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2717 || yy2arr2717 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2717[3] { - yym2728 := z.EncBinary() - _ = yym2728 + if yyq2722[3] { + yym2733 := z.EncBinary() + _ = yym2733 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -35269,19 +35317,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2717[3] { + if yyq2722[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2729 := z.EncBinary() - _ = yym2729 + yym2734 := z.EncBinary() + _ = yym2734 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2717 || yy2arr2717 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35294,25 +35342,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2730 := z.DecBinary() - _ = yym2730 + yym2735 := z.DecBinary() + _ = yym2735 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2731 := r.ContainerType() - if yyct2731 == codecSelferValueTypeMap1234 { - yyl2731 := r.ReadMapStart() - if yyl2731 == 0 { + yyct2736 := r.ContainerType() + if yyct2736 == codecSelferValueTypeMap1234 { + yyl2736 := r.ReadMapStart() + if yyl2736 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2731, d) + x.codecDecodeSelfFromMap(yyl2736, d) } - } else if yyct2731 == codecSelferValueTypeArray1234 { - yyl2731 := r.ReadArrayStart() - if yyl2731 == 0 { + } else if yyct2736 == codecSelferValueTypeArray1234 { + yyl2736 := r.ReadArrayStart() + if yyl2736 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2731, d) + x.codecDecodeSelfFromArray(yyl2736, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35324,12 +35372,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2732Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2732Slc - var yyhl2732 bool = l >= 0 - for yyj2732 := 0; ; yyj2732++ { - if yyhl2732 { - if yyj2732 >= l { + var yys2737Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2737Slc + var yyhl2737 bool = l >= 0 + for yyj2737 := 0; ; yyj2737++ { + if yyhl2737 { + if yyj2737 >= l { break } } else { @@ -35338,10 +35386,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2732Slc = r.DecodeBytes(yys2732Slc, true, true) - yys2732 := string(yys2732Slc) + yys2737Slc = r.DecodeBytes(yys2737Slc, true, true) + yys2737 := string(yys2737Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2732 { + switch yys2737 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -35367,9 +35415,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2732) - } // end switch yys2732 - } // end for yyj2732 + z.DecStructFieldNotFound(-1, yys2737) + } // end switch yys2737 + } // end for yyj2737 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35377,16 +35425,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2737 int - var yyb2737 bool - var yyhl2737 bool = l >= 0 - yyj2737++ - if yyhl2737 { - yyb2737 = yyj2737 > l + var yyj2742 int + var yyb2742 bool + var yyhl2742 bool = l >= 0 + yyj2742++ + if yyhl2742 { + yyb2742 = yyj2742 > l } else { - yyb2737 = r.CheckBreak() + yyb2742 = r.CheckBreak() } - if yyb2737 { + if yyb2742 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35396,13 +35444,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2737++ - if yyhl2737 { - yyb2737 = yyj2737 > l + yyj2742++ + if yyhl2742 { + yyb2742 = yyj2742 > l } else { - yyb2737 = r.CheckBreak() + yyb2742 = r.CheckBreak() } - if yyb2737 { + if yyb2742 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35412,13 +35460,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2737++ - if yyhl2737 { - yyb2737 = yyj2737 > l + yyj2742++ + if yyhl2742 { + yyb2742 = yyj2742 > l } else { - yyb2737 = r.CheckBreak() + yyb2742 = r.CheckBreak() } - if yyb2737 { + if yyb2742 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35428,13 +35476,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2737++ - if yyhl2737 { - yyb2737 = yyj2737 > l + yyj2742++ + if yyhl2742 { + yyb2742 = yyj2742 > l } else { - yyb2737 = r.CheckBreak() + yyb2742 = r.CheckBreak() } - if yyb2737 { + if yyb2742 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35445,17 +35493,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2737++ - if yyhl2737 { - yyb2737 = yyj2737 > l + yyj2742++ + if yyhl2742 { + yyb2742 = yyj2742 > l } else { - yyb2737 = r.CheckBreak() + yyb2742 = r.CheckBreak() } - if yyb2737 { + if yyb2742 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2737-1, "") + z.DecStructFieldNotFound(yyj2742-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35467,33 +35515,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2742 := z.EncBinary() - _ = yym2742 + yym2747 := z.EncBinary() + _ = yym2747 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2743 := !z.EncBinary() - yy2arr2743 := z.EncBasicHandle().StructToArray - var yyq2743 [1]bool - _, _, _ = yysep2743, yyq2743, yy2arr2743 - const yyr2743 bool = false - var yynn2743 int - if yyr2743 || yy2arr2743 { + yysep2748 := !z.EncBinary() + yy2arr2748 := z.EncBasicHandle().StructToArray + var yyq2748 [1]bool + _, _, _ = yysep2748, yyq2748, yy2arr2748 + const yyr2748 bool = false + var yynn2748 int + if yyr2748 || yy2arr2748 { r.EncodeArrayStart(1) } else { - yynn2743 = 1 - for _, b := range yyq2743 { + yynn2748 = 1 + for _, b := range yyq2748 { if b { - yynn2743++ + yynn2748++ } } - r.EncodeMapStart(yynn2743) - yynn2743 = 0 + r.EncodeMapStart(yynn2748) + yynn2748 = 0 } - if yyr2743 || yy2arr2743 { + if yyr2748 || yy2arr2748 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2745 := z.EncBinary() - _ = yym2745 + yym2750 := z.EncBinary() + _ = yym2750 if false { } else { r.EncodeInt(int64(x.Port)) @@ -35502,14 +35550,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2746 := z.EncBinary() - _ = yym2746 + yym2751 := z.EncBinary() + _ = yym2751 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2743 || yy2arr2743 { + if yyr2748 || yy2arr2748 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35522,25 +35570,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2747 := z.DecBinary() - _ = yym2747 + yym2752 := z.DecBinary() + _ = yym2752 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2748 := r.ContainerType() - if yyct2748 == codecSelferValueTypeMap1234 { - yyl2748 := r.ReadMapStart() - if yyl2748 == 0 { + yyct2753 := r.ContainerType() + if yyct2753 == codecSelferValueTypeMap1234 { + yyl2753 := r.ReadMapStart() + if yyl2753 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2748, d) + x.codecDecodeSelfFromMap(yyl2753, d) } - } else if yyct2748 == codecSelferValueTypeArray1234 { - yyl2748 := r.ReadArrayStart() - if yyl2748 == 0 { + } else if yyct2753 == codecSelferValueTypeArray1234 { + yyl2753 := r.ReadArrayStart() + if yyl2753 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2748, d) + x.codecDecodeSelfFromArray(yyl2753, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35552,12 +35600,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2749Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2749Slc - var yyhl2749 bool = l >= 0 - for yyj2749 := 0; ; yyj2749++ { - if yyhl2749 { - if yyj2749 >= l { + var yys2754Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2754Slc + var yyhl2754 bool = l >= 0 + for yyj2754 := 0; ; yyj2754++ { + if yyhl2754 { + if yyj2754 >= l { break } } else { @@ -35566,10 +35614,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2749Slc = r.DecodeBytes(yys2749Slc, true, true) - yys2749 := string(yys2749Slc) + yys2754Slc = r.DecodeBytes(yys2754Slc, true, true) + yys2754 := string(yys2754Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2749 { + switch yys2754 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -35577,9 +35625,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2749) - } // end switch yys2749 - } // end for yyj2749 + z.DecStructFieldNotFound(-1, yys2754) + } // end switch yys2754 + } // end for yyj2754 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35587,16 +35635,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2751 int - var yyb2751 bool - var yyhl2751 bool = l >= 0 - yyj2751++ - if yyhl2751 { - yyb2751 = yyj2751 > l + var yyj2756 int + var yyb2756 bool + var yyhl2756 bool = l >= 0 + yyj2756++ + if yyhl2756 { + yyb2756 = yyj2756 > l } else { - yyb2751 = r.CheckBreak() + yyb2756 = r.CheckBreak() } - if yyb2751 { + if yyb2756 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35607,17 +35655,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2751++ - if yyhl2751 { - yyb2751 = yyj2751 > l + yyj2756++ + if yyhl2756 { + yyb2756 = yyj2756 > l } else { - yyb2751 = r.CheckBreak() + yyb2756 = r.CheckBreak() } - if yyb2751 { + if yyb2756 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2751-1, "") + z.DecStructFieldNotFound(yyj2756-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35629,48 +35677,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2753 := z.EncBinary() - _ = yym2753 + yym2758 := z.EncBinary() + _ = yym2758 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2754 := !z.EncBinary() - yy2arr2754 := z.EncBasicHandle().StructToArray - var yyq2754 [1]bool - _, _, _ = yysep2754, yyq2754, yy2arr2754 - const yyr2754 bool = false - yyq2754[0] = true - var yynn2754 int - if yyr2754 || yy2arr2754 { + yysep2759 := !z.EncBinary() + yy2arr2759 := z.EncBasicHandle().StructToArray + var yyq2759 [1]bool + _, _, _ = yysep2759, yyq2759, yy2arr2759 + const yyr2759 bool = false + yyq2759[0] = true + var yynn2759 int + if yyr2759 || yy2arr2759 { r.EncodeArrayStart(1) } else { - yynn2754 = 0 - for _, b := range yyq2754 { + yynn2759 = 0 + for _, b := range yyq2759 { if b { - yynn2754++ + yynn2759++ } } - r.EncodeMapStart(yynn2754) - yynn2754 = 0 + r.EncodeMapStart(yynn2759) + yynn2759 = 0 } - if yyr2754 || yy2arr2754 { + if yyr2759 || yy2arr2759 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2754[0] { - yy2756 := &x.KubeletEndpoint - yy2756.CodecEncodeSelf(e) + if yyq2759[0] { + yy2761 := &x.KubeletEndpoint + yy2761.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2754[0] { + if yyq2759[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2757 := &x.KubeletEndpoint - yy2757.CodecEncodeSelf(e) + yy2762 := &x.KubeletEndpoint + yy2762.CodecEncodeSelf(e) } } - if yyr2754 || yy2arr2754 { + if yyr2759 || yy2arr2759 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35683,25 +35731,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2758 := z.DecBinary() - _ = yym2758 + yym2763 := z.DecBinary() + _ = yym2763 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2759 := r.ContainerType() - if yyct2759 == codecSelferValueTypeMap1234 { - yyl2759 := r.ReadMapStart() - if yyl2759 == 0 { + yyct2764 := r.ContainerType() + if yyct2764 == codecSelferValueTypeMap1234 { + yyl2764 := r.ReadMapStart() + if yyl2764 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2759, d) + x.codecDecodeSelfFromMap(yyl2764, d) } - } else if yyct2759 == codecSelferValueTypeArray1234 { - yyl2759 := r.ReadArrayStart() - if yyl2759 == 0 { + } else if yyct2764 == codecSelferValueTypeArray1234 { + yyl2764 := r.ReadArrayStart() + if yyl2764 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2759, d) + x.codecDecodeSelfFromArray(yyl2764, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35713,12 +35761,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2760Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2760Slc - var yyhl2760 bool = l >= 0 - for yyj2760 := 0; ; yyj2760++ { - if yyhl2760 { - if yyj2760 >= l { + var yys2765Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2765Slc + var yyhl2765 bool = l >= 0 + for yyj2765 := 0; ; yyj2765++ { + if yyhl2765 { + if yyj2765 >= l { break } } else { @@ -35727,21 +35775,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2760Slc = r.DecodeBytes(yys2760Slc, true, true) - yys2760 := string(yys2760Slc) + yys2765Slc = r.DecodeBytes(yys2765Slc, true, true) + yys2765 := string(yys2765Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2760 { + switch yys2765 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2761 := &x.KubeletEndpoint - yyv2761.CodecDecodeSelf(d) + yyv2766 := &x.KubeletEndpoint + yyv2766.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2760) - } // end switch yys2760 - } // end for yyj2760 + z.DecStructFieldNotFound(-1, yys2765) + } // end switch yys2765 + } // end for yyj2765 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35749,16 +35797,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2762 int - var yyb2762 bool - var yyhl2762 bool = l >= 0 - yyj2762++ - if yyhl2762 { - yyb2762 = yyj2762 > l + var yyj2767 int + var yyb2767 bool + var yyhl2767 bool = l >= 0 + yyj2767++ + if yyhl2767 { + yyb2767 = yyj2767 > l } else { - yyb2762 = r.CheckBreak() + yyb2767 = r.CheckBreak() } - if yyb2762 { + if yyb2767 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35766,21 +35814,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2763 := &x.KubeletEndpoint - yyv2763.CodecDecodeSelf(d) + yyv2768 := &x.KubeletEndpoint + yyv2768.CodecDecodeSelf(d) } for { - yyj2762++ - if yyhl2762 { - yyb2762 = yyj2762 > l + yyj2767++ + if yyhl2767 { + yyb2767 = yyj2767 > l } else { - yyb2762 = r.CheckBreak() + yyb2767 = r.CheckBreak() } - if yyb2762 { + if yyb2767 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2762-1, "") + z.DecStructFieldNotFound(yyj2767-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35792,33 +35840,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2764 := z.EncBinary() - _ = yym2764 + yym2769 := z.EncBinary() + _ = yym2769 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2765 := !z.EncBinary() - yy2arr2765 := z.EncBasicHandle().StructToArray - var yyq2765 [10]bool - _, _, _ = yysep2765, yyq2765, yy2arr2765 - const yyr2765 bool = false - var yynn2765 int - if yyr2765 || yy2arr2765 { + yysep2770 := !z.EncBinary() + yy2arr2770 := z.EncBasicHandle().StructToArray + var yyq2770 [10]bool + _, _, _ = yysep2770, yyq2770, yy2arr2770 + const yyr2770 bool = false + var yynn2770 int + if yyr2770 || yy2arr2770 { r.EncodeArrayStart(10) } else { - yynn2765 = 10 - for _, b := range yyq2765 { + yynn2770 = 10 + for _, b := range yyq2770 { if b { - yynn2765++ + yynn2770++ } } - r.EncodeMapStart(yynn2765) - yynn2765 = 0 + r.EncodeMapStart(yynn2770) + yynn2770 = 0 } - if yyr2765 || yy2arr2765 { + if yyr2770 || yy2arr2770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2767 := z.EncBinary() - _ = yym2767 + yym2772 := z.EncBinary() + _ = yym2772 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -35827,17 +35875,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2768 := z.EncBinary() - _ = yym2768 + yym2773 := z.EncBinary() + _ = yym2773 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2765 || yy2arr2765 { + if yyr2770 || yy2arr2770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2770 := z.EncBinary() - _ = yym2770 + yym2775 := z.EncBinary() + _ = yym2775 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -35846,17 +35894,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2771 := z.EncBinary() - _ = yym2771 + yym2776 := z.EncBinary() + _ = yym2776 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2765 || yy2arr2765 { + if yyr2770 || yy2arr2770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2773 := z.EncBinary() - _ = yym2773 + yym2778 := z.EncBinary() + _ = yym2778 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -35865,17 +35913,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2774 := z.EncBinary() - _ = yym2774 + yym2779 := z.EncBinary() + _ = yym2779 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2765 || yy2arr2765 { + if yyr2770 || yy2arr2770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2776 := z.EncBinary() - _ = yym2776 + yym2781 := z.EncBinary() + _ = yym2781 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -35884,17 +35932,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2777 := z.EncBinary() - _ = yym2777 + yym2782 := z.EncBinary() + _ = yym2782 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2765 || yy2arr2765 { + if yyr2770 || yy2arr2770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2779 := z.EncBinary() - _ = yym2779 + yym2784 := z.EncBinary() + _ = yym2784 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -35903,17 +35951,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2780 := z.EncBinary() - _ = yym2780 + yym2785 := z.EncBinary() + _ = yym2785 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2765 || yy2arr2765 { + if yyr2770 || yy2arr2770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2782 := z.EncBinary() - _ = yym2782 + yym2787 := z.EncBinary() + _ = yym2787 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -35922,17 +35970,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2783 := z.EncBinary() - _ = yym2783 + yym2788 := z.EncBinary() + _ = yym2788 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2765 || yy2arr2765 { + if yyr2770 || yy2arr2770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2785 := z.EncBinary() - _ = yym2785 + yym2790 := z.EncBinary() + _ = yym2790 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -35941,17 +35989,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2786 := z.EncBinary() - _ = yym2786 + yym2791 := z.EncBinary() + _ = yym2791 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2765 || yy2arr2765 { + if yyr2770 || yy2arr2770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2788 := z.EncBinary() - _ = yym2788 + yym2793 := z.EncBinary() + _ = yym2793 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -35960,17 +36008,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2789 := z.EncBinary() - _ = yym2789 + yym2794 := z.EncBinary() + _ = yym2794 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2765 || yy2arr2765 { + if yyr2770 || yy2arr2770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2791 := z.EncBinary() - _ = yym2791 + yym2796 := z.EncBinary() + _ = yym2796 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) @@ -35979,17 +36027,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operatingSystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2792 := z.EncBinary() - _ = yym2792 + yym2797 := z.EncBinary() + _ = yym2797 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) } } - if yyr2765 || yy2arr2765 { + if yyr2770 || yy2arr2770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2794 := z.EncBinary() - _ = yym2794 + yym2799 := z.EncBinary() + _ = yym2799 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) @@ -35998,14 +36046,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("architecture")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2795 := z.EncBinary() - _ = yym2795 + yym2800 := z.EncBinary() + _ = yym2800 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) } } - if yyr2765 || yy2arr2765 { + if yyr2770 || yy2arr2770 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36018,25 +36066,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2796 := z.DecBinary() - _ = yym2796 + yym2801 := z.DecBinary() + _ = yym2801 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2797 := r.ContainerType() - if yyct2797 == codecSelferValueTypeMap1234 { - yyl2797 := r.ReadMapStart() - if yyl2797 == 0 { + yyct2802 := r.ContainerType() + if yyct2802 == codecSelferValueTypeMap1234 { + yyl2802 := r.ReadMapStart() + if yyl2802 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2797, d) + x.codecDecodeSelfFromMap(yyl2802, d) } - } else if yyct2797 == codecSelferValueTypeArray1234 { - yyl2797 := r.ReadArrayStart() - if yyl2797 == 0 { + } else if yyct2802 == codecSelferValueTypeArray1234 { + yyl2802 := r.ReadArrayStart() + if yyl2802 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2797, d) + x.codecDecodeSelfFromArray(yyl2802, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36048,12 +36096,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2798Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2798Slc - var yyhl2798 bool = l >= 0 - for yyj2798 := 0; ; yyj2798++ { - if yyhl2798 { - if yyj2798 >= l { + var yys2803Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2803Slc + var yyhl2803 bool = l >= 0 + for yyj2803 := 0; ; yyj2803++ { + if yyhl2803 { + if yyj2803 >= l { break } } else { @@ -36062,10 +36110,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2798Slc = r.DecodeBytes(yys2798Slc, true, true) - yys2798 := string(yys2798Slc) + yys2803Slc = r.DecodeBytes(yys2803Slc, true, true) + yys2803 := string(yys2803Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2798 { + switch yys2803 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -36127,9 +36175,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2798) - } // end switch yys2798 - } // end for yyj2798 + z.DecStructFieldNotFound(-1, yys2803) + } // end switch yys2803 + } // end for yyj2803 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36137,16 +36185,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2809 int - var yyb2809 bool - var yyhl2809 bool = l >= 0 - yyj2809++ - if yyhl2809 { - yyb2809 = yyj2809 > l + var yyj2814 int + var yyb2814 bool + var yyhl2814 bool = l >= 0 + yyj2814++ + if yyhl2814 { + yyb2814 = yyj2814 > l } else { - yyb2809 = r.CheckBreak() + yyb2814 = r.CheckBreak() } - if yyb2809 { + if yyb2814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36156,13 +36204,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2809++ - if yyhl2809 { - yyb2809 = yyj2809 > l + yyj2814++ + if yyhl2814 { + yyb2814 = yyj2814 > l } else { - yyb2809 = r.CheckBreak() + yyb2814 = r.CheckBreak() } - if yyb2809 { + if yyb2814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36172,13 +36220,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2809++ - if yyhl2809 { - yyb2809 = yyj2809 > l + yyj2814++ + if yyhl2814 { + yyb2814 = yyj2814 > l } else { - yyb2809 = r.CheckBreak() + yyb2814 = r.CheckBreak() } - if yyb2809 { + if yyb2814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36188,13 +36236,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2809++ - if yyhl2809 { - yyb2809 = yyj2809 > l + yyj2814++ + if yyhl2814 { + yyb2814 = yyj2814 > l } else { - yyb2809 = r.CheckBreak() + yyb2814 = r.CheckBreak() } - if yyb2809 { + if yyb2814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36204,13 +36252,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2809++ - if yyhl2809 { - yyb2809 = yyj2809 > l + yyj2814++ + if yyhl2814 { + yyb2814 = yyj2814 > l } else { - yyb2809 = r.CheckBreak() + yyb2814 = r.CheckBreak() } - if yyb2809 { + if yyb2814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36220,13 +36268,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj2809++ - if yyhl2809 { - yyb2809 = yyj2809 > l + yyj2814++ + if yyhl2814 { + yyb2814 = yyj2814 > l } else { - yyb2809 = r.CheckBreak() + yyb2814 = r.CheckBreak() } - if yyb2809 { + if yyb2814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36236,13 +36284,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2809++ - if yyhl2809 { - yyb2809 = yyj2809 > l + yyj2814++ + if yyhl2814 { + yyb2814 = yyj2814 > l } else { - yyb2809 = r.CheckBreak() + yyb2814 = r.CheckBreak() } - if yyb2809 { + if yyb2814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36252,13 +36300,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2809++ - if yyhl2809 { - yyb2809 = yyj2809 > l + yyj2814++ + if yyhl2814 { + yyb2814 = yyj2814 > l } else { - yyb2809 = r.CheckBreak() + yyb2814 = r.CheckBreak() } - if yyb2809 { + if yyb2814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36268,13 +36316,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeProxyVersion = string(r.DecodeString()) } - yyj2809++ - if yyhl2809 { - yyb2809 = yyj2809 > l + yyj2814++ + if yyhl2814 { + yyb2814 = yyj2814 > l } else { - yyb2809 = r.CheckBreak() + yyb2814 = r.CheckBreak() } - if yyb2809 { + if yyb2814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36284,13 +36332,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OperatingSystem = string(r.DecodeString()) } - yyj2809++ - if yyhl2809 { - yyb2809 = yyj2809 > l + yyj2814++ + if yyhl2814 { + yyb2814 = yyj2814 > l } else { - yyb2809 = r.CheckBreak() + yyb2814 = r.CheckBreak() } - if yyb2809 { + if yyb2814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36301,17 +36349,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } for { - yyj2809++ - if yyhl2809 { - yyb2809 = yyj2809 > l + yyj2814++ + if yyhl2814 { + yyb2814 = yyj2814 > l } else { - yyb2809 = r.CheckBreak() + yyb2814 = r.CheckBreak() } - if yyb2809 { + if yyb2814 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2809-1, "") + z.DecStructFieldNotFound(yyj2814-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36323,42 +36371,42 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2820 := z.EncBinary() - _ = yym2820 + yym2825 := z.EncBinary() + _ = yym2825 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2821 := !z.EncBinary() - yy2arr2821 := z.EncBasicHandle().StructToArray - var yyq2821 [10]bool - _, _, _ = yysep2821, yyq2821, yy2arr2821 - const yyr2821 bool = false - yyq2821[0] = len(x.Capacity) != 0 - yyq2821[1] = len(x.Allocatable) != 0 - yyq2821[2] = x.Phase != "" - yyq2821[3] = len(x.Conditions) != 0 - yyq2821[4] = len(x.Addresses) != 0 - yyq2821[5] = true - yyq2821[6] = true - yyq2821[7] = len(x.Images) != 0 - yyq2821[8] = len(x.VolumesInUse) != 0 - yyq2821[9] = len(x.VolumesAttached) != 0 - var yynn2821 int - if yyr2821 || yy2arr2821 { + yysep2826 := !z.EncBinary() + yy2arr2826 := z.EncBasicHandle().StructToArray + var yyq2826 [10]bool + _, _, _ = yysep2826, yyq2826, yy2arr2826 + const yyr2826 bool = false + yyq2826[0] = len(x.Capacity) != 0 + yyq2826[1] = len(x.Allocatable) != 0 + yyq2826[2] = x.Phase != "" + yyq2826[3] = len(x.Conditions) != 0 + yyq2826[4] = len(x.Addresses) != 0 + yyq2826[5] = true + yyq2826[6] = true + yyq2826[7] = len(x.Images) != 0 + yyq2826[8] = len(x.VolumesInUse) != 0 + yyq2826[9] = len(x.VolumesAttached) != 0 + var yynn2826 int + if yyr2826 || yy2arr2826 { r.EncodeArrayStart(10) } else { - yynn2821 = 0 - for _, b := range yyq2821 { + yynn2826 = 0 + for _, b := range yyq2826 { if b { - yynn2821++ + yynn2826++ } } - r.EncodeMapStart(yynn2821) - yynn2821 = 0 + r.EncodeMapStart(yynn2826) + yynn2826 = 0 } - if yyr2821 || yy2arr2821 { + if yyr2826 || yy2arr2826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2821[0] { + if yyq2826[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -36368,7 +36416,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2821[0] { + if yyq2826[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -36379,9 +36427,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2821 || yy2arr2821 { + if yyr2826 || yy2arr2826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2821[1] { + if yyq2826[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -36391,7 +36439,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2821[1] { + if yyq2826[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -36402,29 +36450,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2821 || yy2arr2821 { + if yyr2826 || yy2arr2826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2821[2] { + if yyq2826[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2821[2] { + if yyq2826[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2821 || yy2arr2821 { + if yyr2826 || yy2arr2826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2821[3] { + if yyq2826[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym2826 := z.EncBinary() - _ = yym2826 + yym2831 := z.EncBinary() + _ = yym2831 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -36434,15 +36482,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2821[3] { + if yyq2826[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2827 := z.EncBinary() - _ = yym2827 + yym2832 := z.EncBinary() + _ = yym2832 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -36450,14 +36498,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2821 || yy2arr2821 { + if yyr2826 || yy2arr2826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2821[4] { + if yyq2826[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym2829 := z.EncBinary() - _ = yym2829 + yym2834 := z.EncBinary() + _ = yym2834 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -36467,15 +36515,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2821[4] { + if yyq2826[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2830 := z.EncBinary() - _ = yym2830 + yym2835 := z.EncBinary() + _ = yym2835 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -36483,48 +36531,48 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2821 || yy2arr2821 { + if yyr2826 || yy2arr2826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2821[5] { - yy2832 := &x.DaemonEndpoints - yy2832.CodecEncodeSelf(e) + if yyq2826[5] { + yy2837 := &x.DaemonEndpoints + yy2837.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2821[5] { + if yyq2826[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2833 := &x.DaemonEndpoints - yy2833.CodecEncodeSelf(e) + yy2838 := &x.DaemonEndpoints + yy2838.CodecEncodeSelf(e) } } - if yyr2821 || yy2arr2821 { + if yyr2826 || yy2arr2826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2821[6] { - yy2835 := &x.NodeInfo - yy2835.CodecEncodeSelf(e) + if yyq2826[6] { + yy2840 := &x.NodeInfo + yy2840.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2821[6] { + if yyq2826[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2836 := &x.NodeInfo - yy2836.CodecEncodeSelf(e) + yy2841 := &x.NodeInfo + yy2841.CodecEncodeSelf(e) } } - if yyr2821 || yy2arr2821 { + if yyr2826 || yy2arr2826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2821[7] { + if yyq2826[7] { if x.Images == nil { r.EncodeNil() } else { - yym2838 := z.EncBinary() - _ = yym2838 + yym2843 := z.EncBinary() + _ = yym2843 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -36534,15 +36582,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2821[7] { + if yyq2826[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("images")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Images == nil { r.EncodeNil() } else { - yym2839 := z.EncBinary() - _ = yym2839 + yym2844 := z.EncBinary() + _ = yym2844 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -36550,14 +36598,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2821 || yy2arr2821 { + if yyr2826 || yy2arr2826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2821[8] { + if yyq2826[8] { if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2841 := z.EncBinary() - _ = yym2841 + yym2846 := z.EncBinary() + _ = yym2846 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -36567,15 +36615,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2821[8] { + if yyq2826[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesInUse")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesInUse == nil { r.EncodeNil() } else { - yym2842 := z.EncBinary() - _ = yym2842 + yym2847 := z.EncBinary() + _ = yym2847 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -36583,14 +36631,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2821 || yy2arr2821 { + if yyr2826 || yy2arr2826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2821[9] { + if yyq2826[9] { if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2844 := z.EncBinary() - _ = yym2844 + yym2849 := z.EncBinary() + _ = yym2849 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -36600,15 +36648,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2821[9] { + if yyq2826[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesAttached")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesAttached == nil { r.EncodeNil() } else { - yym2845 := z.EncBinary() - _ = yym2845 + yym2850 := z.EncBinary() + _ = yym2850 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -36616,7 +36664,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2821 || yy2arr2821 { + if yyr2826 || yy2arr2826 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36629,25 +36677,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2846 := z.DecBinary() - _ = yym2846 + yym2851 := z.DecBinary() + _ = yym2851 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2847 := r.ContainerType() - if yyct2847 == codecSelferValueTypeMap1234 { - yyl2847 := r.ReadMapStart() - if yyl2847 == 0 { + yyct2852 := r.ContainerType() + if yyct2852 == codecSelferValueTypeMap1234 { + yyl2852 := r.ReadMapStart() + if yyl2852 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2847, d) + x.codecDecodeSelfFromMap(yyl2852, d) } - } else if yyct2847 == codecSelferValueTypeArray1234 { - yyl2847 := r.ReadArrayStart() - if yyl2847 == 0 { + } else if yyct2852 == codecSelferValueTypeArray1234 { + yyl2852 := r.ReadArrayStart() + if yyl2852 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2847, d) + x.codecDecodeSelfFromArray(yyl2852, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36659,12 +36707,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2848Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2848Slc - var yyhl2848 bool = l >= 0 - for yyj2848 := 0; ; yyj2848++ { - if yyhl2848 { - if yyj2848 >= l { + var yys2853Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2853Slc + var yyhl2853 bool = l >= 0 + for yyj2853 := 0; ; yyj2853++ { + if yyhl2853 { + if yyj2853 >= l { break } } else { @@ -36673,23 +36721,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2848Slc = r.DecodeBytes(yys2848Slc, true, true) - yys2848 := string(yys2848Slc) + yys2853Slc = r.DecodeBytes(yys2853Slc, true, true) + yys2853 := string(yys2853Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2848 { + switch yys2853 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2849 := &x.Capacity - yyv2849.CodecDecodeSelf(d) + yyv2854 := &x.Capacity + yyv2854.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2850 := &x.Allocatable - yyv2850.CodecDecodeSelf(d) + yyv2855 := &x.Allocatable + yyv2855.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -36701,80 +36749,80 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2852 := &x.Conditions - yym2853 := z.DecBinary() - _ = yym2853 + yyv2857 := &x.Conditions + yym2858 := z.DecBinary() + _ = yym2858 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2852), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2857), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2854 := &x.Addresses - yym2855 := z.DecBinary() - _ = yym2855 + yyv2859 := &x.Addresses + yym2860 := z.DecBinary() + _ = yym2860 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2854), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2859), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2856 := &x.DaemonEndpoints - yyv2856.CodecDecodeSelf(d) + yyv2861 := &x.DaemonEndpoints + yyv2861.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2857 := &x.NodeInfo - yyv2857.CodecDecodeSelf(d) + yyv2862 := &x.NodeInfo + yyv2862.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2858 := &x.Images - yym2859 := z.DecBinary() - _ = yym2859 + yyv2863 := &x.Images + yym2864 := z.DecBinary() + _ = yym2864 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2858), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2863), d) } } case "volumesInUse": if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2860 := &x.VolumesInUse - yym2861 := z.DecBinary() - _ = yym2861 + yyv2865 := &x.VolumesInUse + yym2866 := z.DecBinary() + _ = yym2866 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2860), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2865), d) } } case "volumesAttached": if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2862 := &x.VolumesAttached - yym2863 := z.DecBinary() - _ = yym2863 + yyv2867 := &x.VolumesAttached + yym2868 := z.DecBinary() + _ = yym2868 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2862), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2867), d) } } default: - z.DecStructFieldNotFound(-1, yys2848) - } // end switch yys2848 - } // end for yyj2848 + z.DecStructFieldNotFound(-1, yys2853) + } // end switch yys2853 + } // end for yyj2853 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36782,16 +36830,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2864 int - var yyb2864 bool - var yyhl2864 bool = l >= 0 - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + var yyj2869 int + var yyb2869 bool + var yyhl2869 bool = l >= 0 + yyj2869++ + if yyhl2869 { + yyb2869 = yyj2869 > l } else { - yyb2864 = r.CheckBreak() + yyb2869 = r.CheckBreak() } - if yyb2864 { + if yyb2869 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36799,16 +36847,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2865 := &x.Capacity - yyv2865.CodecDecodeSelf(d) + yyv2870 := &x.Capacity + yyv2870.CodecDecodeSelf(d) } - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2869++ + if yyhl2869 { + yyb2869 = yyj2869 > l } else { - yyb2864 = r.CheckBreak() + yyb2869 = r.CheckBreak() } - if yyb2864 { + if yyb2869 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36816,16 +36864,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2866 := &x.Allocatable - yyv2866.CodecDecodeSelf(d) + yyv2871 := &x.Allocatable + yyv2871.CodecDecodeSelf(d) } - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2869++ + if yyhl2869 { + yyb2869 = yyj2869 > l } else { - yyb2864 = r.CheckBreak() + yyb2869 = r.CheckBreak() } - if yyb2864 { + if yyb2869 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36835,13 +36883,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2869++ + if yyhl2869 { + yyb2869 = yyj2869 > l } else { - yyb2864 = r.CheckBreak() + yyb2869 = r.CheckBreak() } - if yyb2864 { + if yyb2869 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36849,21 +36897,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2868 := &x.Conditions - yym2869 := z.DecBinary() - _ = yym2869 + yyv2873 := &x.Conditions + yym2874 := z.DecBinary() + _ = yym2874 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2868), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2873), d) } } - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2869++ + if yyhl2869 { + yyb2869 = yyj2869 > l } else { - yyb2864 = r.CheckBreak() + yyb2869 = r.CheckBreak() } - if yyb2864 { + if yyb2869 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36871,21 +36919,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2870 := &x.Addresses - yym2871 := z.DecBinary() - _ = yym2871 + yyv2875 := &x.Addresses + yym2876 := z.DecBinary() + _ = yym2876 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2870), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2875), d) } } - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2869++ + if yyhl2869 { + yyb2869 = yyj2869 > l } else { - yyb2864 = r.CheckBreak() + yyb2869 = r.CheckBreak() } - if yyb2864 { + if yyb2869 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36893,16 +36941,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2872 := &x.DaemonEndpoints - yyv2872.CodecDecodeSelf(d) + yyv2877 := &x.DaemonEndpoints + yyv2877.CodecDecodeSelf(d) } - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2869++ + if yyhl2869 { + yyb2869 = yyj2869 > l } else { - yyb2864 = r.CheckBreak() + yyb2869 = r.CheckBreak() } - if yyb2864 { + if yyb2869 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36910,16 +36958,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2873 := &x.NodeInfo - yyv2873.CodecDecodeSelf(d) + yyv2878 := &x.NodeInfo + yyv2878.CodecDecodeSelf(d) } - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2869++ + if yyhl2869 { + yyb2869 = yyj2869 > l } else { - yyb2864 = r.CheckBreak() + yyb2869 = r.CheckBreak() } - if yyb2864 { + if yyb2869 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36927,21 +36975,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2874 := &x.Images - yym2875 := z.DecBinary() - _ = yym2875 + yyv2879 := &x.Images + yym2880 := z.DecBinary() + _ = yym2880 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2874), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2879), d) } } - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2869++ + if yyhl2869 { + yyb2869 = yyj2869 > l } else { - yyb2864 = r.CheckBreak() + yyb2869 = r.CheckBreak() } - if yyb2864 { + if yyb2869 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36949,21 +36997,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv2876 := &x.VolumesInUse - yym2877 := z.DecBinary() - _ = yym2877 + yyv2881 := &x.VolumesInUse + yym2882 := z.DecBinary() + _ = yym2882 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2876), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv2881), d) } } - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2869++ + if yyhl2869 { + yyb2869 = yyj2869 > l } else { - yyb2864 = r.CheckBreak() + yyb2869 = r.CheckBreak() } - if yyb2864 { + if yyb2869 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36971,26 +37019,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv2878 := &x.VolumesAttached - yym2879 := z.DecBinary() - _ = yym2879 + yyv2883 := &x.VolumesAttached + yym2884 := z.DecBinary() + _ = yym2884 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2878), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv2883), d) } } for { - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2869++ + if yyhl2869 { + yyb2869 = yyj2869 > l } else { - yyb2864 = r.CheckBreak() + yyb2869 = r.CheckBreak() } - if yyb2864 { + if yyb2869 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2864-1, "") + z.DecStructFieldNotFound(yyj2869-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36999,8 +37047,8 @@ func (x UniqueVolumeName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2880 := z.EncBinary() - _ = yym2880 + yym2885 := z.EncBinary() + _ = yym2885 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -37012,8 +37060,8 @@ func (x *UniqueVolumeName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2881 := z.DecBinary() - _ = yym2881 + yym2886 := z.DecBinary() + _ = yym2886 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -37028,30 +37076,30 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2882 := z.EncBinary() - _ = yym2882 + yym2887 := z.EncBinary() + _ = yym2887 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2883 := !z.EncBinary() - yy2arr2883 := z.EncBasicHandle().StructToArray - var yyq2883 [2]bool - _, _, _ = yysep2883, yyq2883, yy2arr2883 - const yyr2883 bool = false - var yynn2883 int - if yyr2883 || yy2arr2883 { + yysep2888 := !z.EncBinary() + yy2arr2888 := z.EncBasicHandle().StructToArray + var yyq2888 [2]bool + _, _, _ = yysep2888, yyq2888, yy2arr2888 + const yyr2888 bool = false + var yynn2888 int + if yyr2888 || yy2arr2888 { r.EncodeArrayStart(2) } else { - yynn2883 = 2 - for _, b := range yyq2883 { + yynn2888 = 2 + for _, b := range yyq2888 { if b { - yynn2883++ + yynn2888++ } } - r.EncodeMapStart(yynn2883) - yynn2883 = 0 + r.EncodeMapStart(yynn2888) + yynn2888 = 0 } - if yyr2883 || yy2arr2883 { + if yyr2888 || yy2arr2888 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Name.CodecEncodeSelf(e) } else { @@ -37060,10 +37108,10 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Name.CodecEncodeSelf(e) } - if yyr2883 || yy2arr2883 { + if yyr2888 || yy2arr2888 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2886 := z.EncBinary() - _ = yym2886 + yym2891 := z.EncBinary() + _ = yym2891 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) @@ -37072,14 +37120,14 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("devicePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2887 := z.EncBinary() - _ = yym2887 + yym2892 := z.EncBinary() + _ = yym2892 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) } } - if yyr2883 || yy2arr2883 { + if yyr2888 || yy2arr2888 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37092,25 +37140,25 @@ func (x *AttachedVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2888 := z.DecBinary() - _ = yym2888 + yym2893 := z.DecBinary() + _ = yym2893 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2889 := r.ContainerType() - if yyct2889 == codecSelferValueTypeMap1234 { - yyl2889 := r.ReadMapStart() - if yyl2889 == 0 { + yyct2894 := r.ContainerType() + if yyct2894 == codecSelferValueTypeMap1234 { + yyl2894 := r.ReadMapStart() + if yyl2894 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2889, d) + x.codecDecodeSelfFromMap(yyl2894, d) } - } else if yyct2889 == codecSelferValueTypeArray1234 { - yyl2889 := r.ReadArrayStart() - if yyl2889 == 0 { + } else if yyct2894 == codecSelferValueTypeArray1234 { + yyl2894 := r.ReadArrayStart() + if yyl2894 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2889, d) + x.codecDecodeSelfFromArray(yyl2894, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37122,12 +37170,12 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2890Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2890Slc - var yyhl2890 bool = l >= 0 - for yyj2890 := 0; ; yyj2890++ { - if yyhl2890 { - if yyj2890 >= l { + var yys2895Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2895Slc + var yyhl2895 bool = l >= 0 + for yyj2895 := 0; ; yyj2895++ { + if yyhl2895 { + if yyj2895 >= l { break } } else { @@ -37136,10 +37184,10 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2890Slc = r.DecodeBytes(yys2890Slc, true, true) - yys2890 := string(yys2890Slc) + yys2895Slc = r.DecodeBytes(yys2895Slc, true, true) + yys2895 := string(yys2895Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2890 { + switch yys2895 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -37153,9 +37201,9 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2890) - } // end switch yys2890 - } // end for yyj2890 + z.DecStructFieldNotFound(-1, yys2895) + } // end switch yys2895 + } // end for yyj2895 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37163,16 +37211,16 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2893 int - var yyb2893 bool - var yyhl2893 bool = l >= 0 - yyj2893++ - if yyhl2893 { - yyb2893 = yyj2893 > l + var yyj2898 int + var yyb2898 bool + var yyhl2898 bool = l >= 0 + yyj2898++ + if yyhl2898 { + yyb2898 = yyj2898 > l } else { - yyb2893 = r.CheckBreak() + yyb2898 = r.CheckBreak() } - if yyb2893 { + if yyb2898 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37182,13 +37230,13 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = UniqueVolumeName(r.DecodeString()) } - yyj2893++ - if yyhl2893 { - yyb2893 = yyj2893 > l + yyj2898++ + if yyhl2898 { + yyb2898 = yyj2898 > l } else { - yyb2893 = r.CheckBreak() + yyb2898 = r.CheckBreak() } - if yyb2893 { + if yyb2898 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37199,17 +37247,17 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } for { - yyj2893++ - if yyhl2893 { - yyb2893 = yyj2893 > l + yyj2898++ + if yyhl2898 { + yyb2898 = yyj2898 > l } else { - yyb2893 = r.CheckBreak() + yyb2898 = r.CheckBreak() } - if yyb2893 { + if yyb2898 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2893-1, "") + z.DecStructFieldNotFound(yyj2898-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37221,38 +37269,38 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2896 := z.EncBinary() - _ = yym2896 + yym2901 := z.EncBinary() + _ = yym2901 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2897 := !z.EncBinary() - yy2arr2897 := z.EncBasicHandle().StructToArray - var yyq2897 [1]bool - _, _, _ = yysep2897, yyq2897, yy2arr2897 - const yyr2897 bool = false - yyq2897[0] = len(x.PreferAvoidPods) != 0 - var yynn2897 int - if yyr2897 || yy2arr2897 { + yysep2902 := !z.EncBinary() + yy2arr2902 := z.EncBasicHandle().StructToArray + var yyq2902 [1]bool + _, _, _ = yysep2902, yyq2902, yy2arr2902 + const yyr2902 bool = false + yyq2902[0] = len(x.PreferAvoidPods) != 0 + var yynn2902 int + if yyr2902 || yy2arr2902 { r.EncodeArrayStart(1) } else { - yynn2897 = 0 - for _, b := range yyq2897 { + yynn2902 = 0 + for _, b := range yyq2902 { if b { - yynn2897++ + yynn2902++ } } - r.EncodeMapStart(yynn2897) - yynn2897 = 0 + r.EncodeMapStart(yynn2902) + yynn2902 = 0 } - if yyr2897 || yy2arr2897 { + if yyr2902 || yy2arr2902 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2897[0] { + if yyq2902[0] { if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym2899 := z.EncBinary() - _ = yym2899 + yym2904 := z.EncBinary() + _ = yym2904 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -37262,15 +37310,15 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2897[0] { + if yyq2902[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym2900 := z.EncBinary() - _ = yym2900 + yym2905 := z.EncBinary() + _ = yym2905 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -37278,7 +37326,7 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2897 || yy2arr2897 { + if yyr2902 || yy2arr2902 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37291,25 +37339,25 @@ func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2901 := z.DecBinary() - _ = yym2901 + yym2906 := z.DecBinary() + _ = yym2906 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2902 := r.ContainerType() - if yyct2902 == codecSelferValueTypeMap1234 { - yyl2902 := r.ReadMapStart() - if yyl2902 == 0 { + yyct2907 := r.ContainerType() + if yyct2907 == codecSelferValueTypeMap1234 { + yyl2907 := r.ReadMapStart() + if yyl2907 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2902, d) + x.codecDecodeSelfFromMap(yyl2907, d) } - } else if yyct2902 == codecSelferValueTypeArray1234 { - yyl2902 := r.ReadArrayStart() - if yyl2902 == 0 { + } else if yyct2907 == codecSelferValueTypeArray1234 { + yyl2907 := r.ReadArrayStart() + if yyl2907 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2902, d) + x.codecDecodeSelfFromArray(yyl2907, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37321,12 +37369,12 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2903Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2903Slc - var yyhl2903 bool = l >= 0 - for yyj2903 := 0; ; yyj2903++ { - if yyhl2903 { - if yyj2903 >= l { + var yys2908Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2908Slc + var yyhl2908 bool = l >= 0 + for yyj2908 := 0; ; yyj2908++ { + if yyhl2908 { + if yyj2908 >= l { break } } else { @@ -37335,26 +37383,26 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2903Slc = r.DecodeBytes(yys2903Slc, true, true) - yys2903 := string(yys2903Slc) + yys2908Slc = r.DecodeBytes(yys2908Slc, true, true) + yys2908 := string(yys2908Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2903 { + switch yys2908 { case "preferAvoidPods": if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv2904 := &x.PreferAvoidPods - yym2905 := z.DecBinary() - _ = yym2905 + yyv2909 := &x.PreferAvoidPods + yym2910 := z.DecBinary() + _ = yym2910 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2904), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2909), d) } } default: - z.DecStructFieldNotFound(-1, yys2903) - } // end switch yys2903 - } // end for yyj2903 + z.DecStructFieldNotFound(-1, yys2908) + } // end switch yys2908 + } // end for yyj2908 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37362,16 +37410,16 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2906 int - var yyb2906 bool - var yyhl2906 bool = l >= 0 - yyj2906++ - if yyhl2906 { - yyb2906 = yyj2906 > l + var yyj2911 int + var yyb2911 bool + var yyhl2911 bool = l >= 0 + yyj2911++ + if yyhl2911 { + yyb2911 = yyj2911 > l } else { - yyb2906 = r.CheckBreak() + yyb2911 = r.CheckBreak() } - if yyb2906 { + if yyb2911 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37379,26 +37427,26 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv2907 := &x.PreferAvoidPods - yym2908 := z.DecBinary() - _ = yym2908 + yyv2912 := &x.PreferAvoidPods + yym2913 := z.DecBinary() + _ = yym2913 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2907), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv2912), d) } } for { - yyj2906++ - if yyhl2906 { - yyb2906 = yyj2906 > l + yyj2911++ + if yyhl2911 { + yyb2911 = yyj2911 > l } else { - yyb2906 = r.CheckBreak() + yyb2911 = r.CheckBreak() } - if yyb2906 { + if yyb2911 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2906-1, "") + z.DecStructFieldNotFound(yyj2911-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37410,85 +37458,85 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2909 := z.EncBinary() - _ = yym2909 + yym2914 := z.EncBinary() + _ = yym2914 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2910 := !z.EncBinary() - yy2arr2910 := z.EncBasicHandle().StructToArray - var yyq2910 [4]bool - _, _, _ = yysep2910, yyq2910, yy2arr2910 - const yyr2910 bool = false - yyq2910[1] = true - yyq2910[2] = x.Reason != "" - yyq2910[3] = x.Message != "" - var yynn2910 int - if yyr2910 || yy2arr2910 { + yysep2915 := !z.EncBinary() + yy2arr2915 := z.EncBasicHandle().StructToArray + var yyq2915 [4]bool + _, _, _ = yysep2915, yyq2915, yy2arr2915 + const yyr2915 bool = false + yyq2915[1] = true + yyq2915[2] = x.Reason != "" + yyq2915[3] = x.Message != "" + var yynn2915 int + if yyr2915 || yy2arr2915 { r.EncodeArrayStart(4) } else { - yynn2910 = 1 - for _, b := range yyq2910 { + yynn2915 = 1 + for _, b := range yyq2915 { if b { - yynn2910++ + yynn2915++ } } - r.EncodeMapStart(yynn2910) - yynn2910 = 0 + r.EncodeMapStart(yynn2915) + yynn2915 = 0 } - if yyr2910 || yy2arr2910 { + if yyr2915 || yy2arr2915 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2912 := &x.PodSignature - yy2912.CodecEncodeSelf(e) + yy2917 := &x.PodSignature + yy2917.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSignature")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2913 := &x.PodSignature - yy2913.CodecEncodeSelf(e) + yy2918 := &x.PodSignature + yy2918.CodecEncodeSelf(e) } - if yyr2910 || yy2arr2910 { + if yyr2915 || yy2arr2915 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2910[1] { - yy2915 := &x.EvictionTime - yym2916 := z.EncBinary() - _ = yym2916 + if yyq2915[1] { + yy2920 := &x.EvictionTime + yym2921 := z.EncBinary() + _ = yym2921 if false { - } else if z.HasExtensions() && z.EncExt(yy2915) { - } else if yym2916 { - z.EncBinaryMarshal(yy2915) - } else if !yym2916 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2915) + } else if z.HasExtensions() && z.EncExt(yy2920) { + } else if yym2921 { + z.EncBinaryMarshal(yy2920) + } else if !yym2921 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2920) } else { - z.EncFallback(yy2915) + z.EncFallback(yy2920) } } else { r.EncodeNil() } } else { - if yyq2910[1] { + if yyq2915[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2917 := &x.EvictionTime - yym2918 := z.EncBinary() - _ = yym2918 + yy2922 := &x.EvictionTime + yym2923 := z.EncBinary() + _ = yym2923 if false { - } else if z.HasExtensions() && z.EncExt(yy2917) { - } else if yym2918 { - z.EncBinaryMarshal(yy2917) - } else if !yym2918 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2917) + } else if z.HasExtensions() && z.EncExt(yy2922) { + } else if yym2923 { + z.EncBinaryMarshal(yy2922) + } else if !yym2923 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2922) } else { - z.EncFallback(yy2917) + z.EncFallback(yy2922) } } } - if yyr2910 || yy2arr2910 { + if yyr2915 || yy2arr2915 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2910[2] { - yym2920 := z.EncBinary() - _ = yym2920 + if yyq2915[2] { + yym2925 := z.EncBinary() + _ = yym2925 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -37497,23 +37545,23 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2910[2] { + if yyq2915[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2921 := z.EncBinary() - _ = yym2921 + yym2926 := z.EncBinary() + _ = yym2926 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2910 || yy2arr2910 { + if yyr2915 || yy2arr2915 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2910[3] { - yym2923 := z.EncBinary() - _ = yym2923 + if yyq2915[3] { + yym2928 := z.EncBinary() + _ = yym2928 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -37522,19 +37570,19 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2910[3] { + if yyq2915[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2924 := z.EncBinary() - _ = yym2924 + yym2929 := z.EncBinary() + _ = yym2929 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2910 || yy2arr2910 { + if yyr2915 || yy2arr2915 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37547,25 +37595,25 @@ func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2925 := z.DecBinary() - _ = yym2925 + yym2930 := z.DecBinary() + _ = yym2930 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2926 := r.ContainerType() - if yyct2926 == codecSelferValueTypeMap1234 { - yyl2926 := r.ReadMapStart() - if yyl2926 == 0 { + yyct2931 := r.ContainerType() + if yyct2931 == codecSelferValueTypeMap1234 { + yyl2931 := r.ReadMapStart() + if yyl2931 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2926, d) + x.codecDecodeSelfFromMap(yyl2931, d) } - } else if yyct2926 == codecSelferValueTypeArray1234 { - yyl2926 := r.ReadArrayStart() - if yyl2926 == 0 { + } else if yyct2931 == codecSelferValueTypeArray1234 { + yyl2931 := r.ReadArrayStart() + if yyl2931 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2926, d) + x.codecDecodeSelfFromArray(yyl2931, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37577,12 +37625,12 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2927Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2927Slc - var yyhl2927 bool = l >= 0 - for yyj2927 := 0; ; yyj2927++ { - if yyhl2927 { - if yyj2927 >= l { + var yys2932Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2932Slc + var yyhl2932 bool = l >= 0 + for yyj2932 := 0; ; yyj2932++ { + if yyhl2932 { + if yyj2932 >= l { break } } else { @@ -37591,32 +37639,32 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2927Slc = r.DecodeBytes(yys2927Slc, true, true) - yys2927 := string(yys2927Slc) + yys2932Slc = r.DecodeBytes(yys2932Slc, true, true) + yys2932 := string(yys2932Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2927 { + switch yys2932 { case "podSignature": if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv2928 := &x.PodSignature - yyv2928.CodecDecodeSelf(d) + yyv2933 := &x.PodSignature + yyv2933.CodecDecodeSelf(d) } case "evictionTime": if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv2929 := &x.EvictionTime - yym2930 := z.DecBinary() - _ = yym2930 + yyv2934 := &x.EvictionTime + yym2935 := z.DecBinary() + _ = yym2935 if false { - } else if z.HasExtensions() && z.DecExt(yyv2929) { - } else if yym2930 { - z.DecBinaryUnmarshal(yyv2929) - } else if !yym2930 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2929) + } else if z.HasExtensions() && z.DecExt(yyv2934) { + } else if yym2935 { + z.DecBinaryUnmarshal(yyv2934) + } else if !yym2935 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2934) } else { - z.DecFallback(yyv2929, false) + z.DecFallback(yyv2934, false) } } case "reason": @@ -37632,9 +37680,9 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2927) - } // end switch yys2927 - } // end for yyj2927 + z.DecStructFieldNotFound(-1, yys2932) + } // end switch yys2932 + } // end for yyj2932 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37642,16 +37690,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2933 int - var yyb2933 bool - var yyhl2933 bool = l >= 0 - yyj2933++ - if yyhl2933 { - yyb2933 = yyj2933 > l + var yyj2938 int + var yyb2938 bool + var yyhl2938 bool = l >= 0 + yyj2938++ + if yyhl2938 { + yyb2938 = yyj2938 > l } else { - yyb2933 = r.CheckBreak() + yyb2938 = r.CheckBreak() } - if yyb2933 { + if yyb2938 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37659,16 +37707,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv2934 := &x.PodSignature - yyv2934.CodecDecodeSelf(d) + yyv2939 := &x.PodSignature + yyv2939.CodecDecodeSelf(d) } - yyj2933++ - if yyhl2933 { - yyb2933 = yyj2933 > l + yyj2938++ + if yyhl2938 { + yyb2938 = yyj2938 > l } else { - yyb2933 = r.CheckBreak() + yyb2938 = r.CheckBreak() } - if yyb2933 { + if yyb2938 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37676,26 +37724,26 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv2935 := &x.EvictionTime - yym2936 := z.DecBinary() - _ = yym2936 + yyv2940 := &x.EvictionTime + yym2941 := z.DecBinary() + _ = yym2941 if false { - } else if z.HasExtensions() && z.DecExt(yyv2935) { - } else if yym2936 { - z.DecBinaryUnmarshal(yyv2935) - } else if !yym2936 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2935) + } else if z.HasExtensions() && z.DecExt(yyv2940) { + } else if yym2941 { + z.DecBinaryUnmarshal(yyv2940) + } else if !yym2941 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2940) } else { - z.DecFallback(yyv2935, false) + z.DecFallback(yyv2940, false) } } - yyj2933++ - if yyhl2933 { - yyb2933 = yyj2933 > l + yyj2938++ + if yyhl2938 { + yyb2938 = yyj2938 > l } else { - yyb2933 = r.CheckBreak() + yyb2938 = r.CheckBreak() } - if yyb2933 { + if yyb2938 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37705,13 +37753,13 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Reason = string(r.DecodeString()) } - yyj2933++ - if yyhl2933 { - yyb2933 = yyj2933 > l + yyj2938++ + if yyhl2938 { + yyb2938 = yyj2938 > l } else { - yyb2933 = r.CheckBreak() + yyb2938 = r.CheckBreak() } - if yyb2933 { + if yyb2938 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37722,17 +37770,17 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Message = string(r.DecodeString()) } for { - yyj2933++ - if yyhl2933 { - yyb2933 = yyj2933 > l + yyj2938++ + if yyhl2938 { + yyb2938 = yyj2938 > l } else { - yyb2933 = r.CheckBreak() + yyb2938 = r.CheckBreak() } - if yyb2933 { + if yyb2938 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2933-1, "") + z.DecStructFieldNotFound(yyj2938-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37744,33 +37792,33 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2939 := z.EncBinary() - _ = yym2939 + yym2944 := z.EncBinary() + _ = yym2944 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2940 := !z.EncBinary() - yy2arr2940 := z.EncBasicHandle().StructToArray - var yyq2940 [1]bool - _, _, _ = yysep2940, yyq2940, yy2arr2940 - const yyr2940 bool = false - yyq2940[0] = x.PodController != nil - var yynn2940 int - if yyr2940 || yy2arr2940 { + yysep2945 := !z.EncBinary() + yy2arr2945 := z.EncBasicHandle().StructToArray + var yyq2945 [1]bool + _, _, _ = yysep2945, yyq2945, yy2arr2945 + const yyr2945 bool = false + yyq2945[0] = x.PodController != nil + var yynn2945 int + if yyr2945 || yy2arr2945 { r.EncodeArrayStart(1) } else { - yynn2940 = 0 - for _, b := range yyq2940 { + yynn2945 = 0 + for _, b := range yyq2945 { if b { - yynn2940++ + yynn2945++ } } - r.EncodeMapStart(yynn2940) - yynn2940 = 0 + r.EncodeMapStart(yynn2945) + yynn2945 = 0 } - if yyr2940 || yy2arr2940 { + if yyr2945 || yy2arr2945 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2940[0] { + if yyq2945[0] { if x.PodController == nil { r.EncodeNil() } else { @@ -37780,7 +37828,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2940[0] { + if yyq2945[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podController")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37791,7 +37839,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2940 || yy2arr2940 { + if yyr2945 || yy2arr2945 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37804,25 +37852,25 @@ func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2942 := z.DecBinary() - _ = yym2942 + yym2947 := z.DecBinary() + _ = yym2947 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2943 := r.ContainerType() - if yyct2943 == codecSelferValueTypeMap1234 { - yyl2943 := r.ReadMapStart() - if yyl2943 == 0 { + yyct2948 := r.ContainerType() + if yyct2948 == codecSelferValueTypeMap1234 { + yyl2948 := r.ReadMapStart() + if yyl2948 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2943, d) + x.codecDecodeSelfFromMap(yyl2948, d) } - } else if yyct2943 == codecSelferValueTypeArray1234 { - yyl2943 := r.ReadArrayStart() - if yyl2943 == 0 { + } else if yyct2948 == codecSelferValueTypeArray1234 { + yyl2948 := r.ReadArrayStart() + if yyl2948 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2943, d) + x.codecDecodeSelfFromArray(yyl2948, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37834,12 +37882,12 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2944Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2944Slc - var yyhl2944 bool = l >= 0 - for yyj2944 := 0; ; yyj2944++ { - if yyhl2944 { - if yyj2944 >= l { + var yys2949Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2949Slc + var yyhl2949 bool = l >= 0 + for yyj2949 := 0; ; yyj2949++ { + if yyhl2949 { + if yyj2949 >= l { break } } else { @@ -37848,10 +37896,10 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2944Slc = r.DecodeBytes(yys2944Slc, true, true) - yys2944 := string(yys2944Slc) + yys2949Slc = r.DecodeBytes(yys2949Slc, true, true) + yys2949 := string(yys2949Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2944 { + switch yys2949 { case "podController": if r.TryDecodeAsNil() { if x.PodController != nil { @@ -37864,9 +37912,9 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2944) - } // end switch yys2944 - } // end for yyj2944 + z.DecStructFieldNotFound(-1, yys2949) + } // end switch yys2949 + } // end for yyj2949 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37874,16 +37922,16 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2946 int - var yyb2946 bool - var yyhl2946 bool = l >= 0 - yyj2946++ - if yyhl2946 { - yyb2946 = yyj2946 > l + var yyj2951 int + var yyb2951 bool + var yyhl2951 bool = l >= 0 + yyj2951++ + if yyhl2951 { + yyb2951 = yyj2951 > l } else { - yyb2946 = r.CheckBreak() + yyb2951 = r.CheckBreak() } - if yyb2946 { + if yyb2951 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37899,17 +37947,17 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } for { - yyj2946++ - if yyhl2946 { - yyb2946 = yyj2946 > l + yyj2951++ + if yyhl2951 { + yyb2951 = yyj2951 > l } else { - yyb2946 = r.CheckBreak() + yyb2951 = r.CheckBreak() } - if yyb2946 { + if yyb2951 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2946-1, "") + z.DecStructFieldNotFound(yyj2951-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37921,37 +37969,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2948 := z.EncBinary() - _ = yym2948 + yym2953 := z.EncBinary() + _ = yym2953 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2949 := !z.EncBinary() - yy2arr2949 := z.EncBasicHandle().StructToArray - var yyq2949 [2]bool - _, _, _ = yysep2949, yyq2949, yy2arr2949 - const yyr2949 bool = false - yyq2949[1] = x.SizeBytes != 0 - var yynn2949 int - if yyr2949 || yy2arr2949 { + yysep2954 := !z.EncBinary() + yy2arr2954 := z.EncBasicHandle().StructToArray + var yyq2954 [2]bool + _, _, _ = yysep2954, yyq2954, yy2arr2954 + const yyr2954 bool = false + yyq2954[1] = x.SizeBytes != 0 + var yynn2954 int + if yyr2954 || yy2arr2954 { r.EncodeArrayStart(2) } else { - yynn2949 = 1 - for _, b := range yyq2949 { + yynn2954 = 1 + for _, b := range yyq2954 { if b { - yynn2949++ + yynn2954++ } } - r.EncodeMapStart(yynn2949) - yynn2949 = 0 + r.EncodeMapStart(yynn2954) + yynn2954 = 0 } - if yyr2949 || yy2arr2949 { + if yyr2954 || yy2arr2954 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Names == nil { r.EncodeNil() } else { - yym2951 := z.EncBinary() - _ = yym2951 + yym2956 := z.EncBinary() + _ = yym2956 if false { } else { z.F.EncSliceStringV(x.Names, false, e) @@ -37964,19 +38012,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.Names == nil { r.EncodeNil() } else { - yym2952 := z.EncBinary() - _ = yym2952 + yym2957 := z.EncBinary() + _ = yym2957 if false { } else { z.F.EncSliceStringV(x.Names, false, e) } } } - if yyr2949 || yy2arr2949 { + if yyr2954 || yy2arr2954 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2949[1] { - yym2954 := z.EncBinary() - _ = yym2954 + if yyq2954[1] { + yym2959 := z.EncBinary() + _ = yym2959 if false { } else { r.EncodeInt(int64(x.SizeBytes)) @@ -37985,19 +38033,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2949[1] { + if yyq2954[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sizeBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2955 := z.EncBinary() - _ = yym2955 + yym2960 := z.EncBinary() + _ = yym2960 if false { } else { r.EncodeInt(int64(x.SizeBytes)) } } } - if yyr2949 || yy2arr2949 { + if yyr2954 || yy2arr2954 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38010,25 +38058,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2956 := z.DecBinary() - _ = yym2956 + yym2961 := z.DecBinary() + _ = yym2961 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2957 := r.ContainerType() - if yyct2957 == codecSelferValueTypeMap1234 { - yyl2957 := r.ReadMapStart() - if yyl2957 == 0 { + yyct2962 := r.ContainerType() + if yyct2962 == codecSelferValueTypeMap1234 { + yyl2962 := r.ReadMapStart() + if yyl2962 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2957, d) + x.codecDecodeSelfFromMap(yyl2962, d) } - } else if yyct2957 == codecSelferValueTypeArray1234 { - yyl2957 := r.ReadArrayStart() - if yyl2957 == 0 { + } else if yyct2962 == codecSelferValueTypeArray1234 { + yyl2962 := r.ReadArrayStart() + if yyl2962 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2957, d) + x.codecDecodeSelfFromArray(yyl2962, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38040,12 +38088,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2958Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2958Slc - var yyhl2958 bool = l >= 0 - for yyj2958 := 0; ; yyj2958++ { - if yyhl2958 { - if yyj2958 >= l { + var yys2963Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2963Slc + var yyhl2963 bool = l >= 0 + for yyj2963 := 0; ; yyj2963++ { + if yyhl2963 { + if yyj2963 >= l { break } } else { @@ -38054,20 +38102,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2958Slc = r.DecodeBytes(yys2958Slc, true, true) - yys2958 := string(yys2958Slc) + yys2963Slc = r.DecodeBytes(yys2963Slc, true, true) + yys2963 := string(yys2963Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2958 { + switch yys2963 { case "names": if r.TryDecodeAsNil() { x.Names = nil } else { - yyv2959 := &x.Names - yym2960 := z.DecBinary() - _ = yym2960 + yyv2964 := &x.Names + yym2965 := z.DecBinary() + _ = yym2965 if false { } else { - z.F.DecSliceStringX(yyv2959, false, d) + z.F.DecSliceStringX(yyv2964, false, d) } } case "sizeBytes": @@ -38077,9 +38125,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys2958) - } // end switch yys2958 - } // end for yyj2958 + z.DecStructFieldNotFound(-1, yys2963) + } // end switch yys2963 + } // end for yyj2963 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38087,16 +38135,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2962 int - var yyb2962 bool - var yyhl2962 bool = l >= 0 - yyj2962++ - if yyhl2962 { - yyb2962 = yyj2962 > l + var yyj2967 int + var yyb2967 bool + var yyhl2967 bool = l >= 0 + yyj2967++ + if yyhl2967 { + yyb2967 = yyj2967 > l } else { - yyb2962 = r.CheckBreak() + yyb2967 = r.CheckBreak() } - if yyb2962 { + if yyb2967 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38104,21 +38152,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Names = nil } else { - yyv2963 := &x.Names - yym2964 := z.DecBinary() - _ = yym2964 + yyv2968 := &x.Names + yym2969 := z.DecBinary() + _ = yym2969 if false { } else { - z.F.DecSliceStringX(yyv2963, false, d) + z.F.DecSliceStringX(yyv2968, false, d) } } - yyj2962++ - if yyhl2962 { - yyb2962 = yyj2962 > l + yyj2967++ + if yyhl2967 { + yyb2967 = yyj2967 > l } else { - yyb2962 = r.CheckBreak() + yyb2967 = r.CheckBreak() } - if yyb2962 { + if yyb2967 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38129,17 +38177,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } for { - yyj2962++ - if yyhl2962 { - yyb2962 = yyj2962 > l + yyj2967++ + if yyhl2967 { + yyb2967 = yyj2967 > l } else { - yyb2962 = r.CheckBreak() + yyb2967 = r.CheckBreak() } - if yyb2962 { + if yyb2967 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2962-1, "") + z.DecStructFieldNotFound(yyj2967-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38148,8 +38196,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2966 := z.EncBinary() - _ = yym2966 + yym2971 := z.EncBinary() + _ = yym2971 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38161,8 +38209,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2967 := z.DecBinary() - _ = yym2967 + yym2972 := z.DecBinary() + _ = yym2972 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38174,8 +38222,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2968 := z.EncBinary() - _ = yym2968 + yym2973 := z.EncBinary() + _ = yym2973 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38187,8 +38235,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2969 := z.DecBinary() - _ = yym2969 + yym2974 := z.DecBinary() + _ = yym2974 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38203,34 +38251,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2970 := z.EncBinary() - _ = yym2970 + yym2975 := z.EncBinary() + _ = yym2975 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2971 := !z.EncBinary() - yy2arr2971 := z.EncBasicHandle().StructToArray - var yyq2971 [6]bool - _, _, _ = yysep2971, yyq2971, yy2arr2971 - const yyr2971 bool = false - yyq2971[2] = true - yyq2971[3] = true - yyq2971[4] = x.Reason != "" - yyq2971[5] = x.Message != "" - var yynn2971 int - if yyr2971 || yy2arr2971 { + yysep2976 := !z.EncBinary() + yy2arr2976 := z.EncBasicHandle().StructToArray + var yyq2976 [6]bool + _, _, _ = yysep2976, yyq2976, yy2arr2976 + const yyr2976 bool = false + yyq2976[2] = true + yyq2976[3] = true + yyq2976[4] = x.Reason != "" + yyq2976[5] = x.Message != "" + var yynn2976 int + if yyr2976 || yy2arr2976 { r.EncodeArrayStart(6) } else { - yynn2971 = 2 - for _, b := range yyq2971 { + yynn2976 = 2 + for _, b := range yyq2976 { if b { - yynn2971++ + yynn2976++ } } - r.EncodeMapStart(yynn2971) - yynn2971 = 0 + r.EncodeMapStart(yynn2976) + yynn2976 = 0 } - if yyr2971 || yy2arr2971 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -38239,7 +38287,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2971 || yy2arr2971 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -38248,85 +38296,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr2971 || yy2arr2971 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2971[2] { - yy2975 := &x.LastHeartbeatTime - yym2976 := z.EncBinary() - _ = yym2976 + if yyq2976[2] { + yy2980 := &x.LastHeartbeatTime + yym2981 := z.EncBinary() + _ = yym2981 if false { - } else if z.HasExtensions() && z.EncExt(yy2975) { - } else if yym2976 { - z.EncBinaryMarshal(yy2975) - } else if !yym2976 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2975) + } else if z.HasExtensions() && z.EncExt(yy2980) { + } else if yym2981 { + z.EncBinaryMarshal(yy2980) + } else if !yym2981 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2980) } else { - z.EncFallback(yy2975) + z.EncFallback(yy2980) } } else { r.EncodeNil() } } else { - if yyq2971[2] { + if yyq2976[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2977 := &x.LastHeartbeatTime - yym2978 := z.EncBinary() - _ = yym2978 + yy2982 := &x.LastHeartbeatTime + yym2983 := z.EncBinary() + _ = yym2983 if false { - } else if z.HasExtensions() && z.EncExt(yy2977) { - } else if yym2978 { - z.EncBinaryMarshal(yy2977) - } else if !yym2978 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2977) + } else if z.HasExtensions() && z.EncExt(yy2982) { + } else if yym2983 { + z.EncBinaryMarshal(yy2982) + } else if !yym2983 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2982) } else { - z.EncFallback(yy2977) + z.EncFallback(yy2982) } } } - if yyr2971 || yy2arr2971 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2971[3] { - yy2980 := &x.LastTransitionTime - yym2981 := z.EncBinary() - _ = yym2981 + if yyq2976[3] { + yy2985 := &x.LastTransitionTime + yym2986 := z.EncBinary() + _ = yym2986 if false { - } else if z.HasExtensions() && z.EncExt(yy2980) { - } else if yym2981 { - z.EncBinaryMarshal(yy2980) - } else if !yym2981 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2980) + } else if z.HasExtensions() && z.EncExt(yy2985) { + } else if yym2986 { + z.EncBinaryMarshal(yy2985) + } else if !yym2986 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2985) } else { - z.EncFallback(yy2980) + z.EncFallback(yy2985) } } else { r.EncodeNil() } } else { - if yyq2971[3] { + if yyq2976[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2982 := &x.LastTransitionTime - yym2983 := z.EncBinary() - _ = yym2983 + yy2987 := &x.LastTransitionTime + yym2988 := z.EncBinary() + _ = yym2988 if false { - } else if z.HasExtensions() && z.EncExt(yy2982) { - } else if yym2983 { - z.EncBinaryMarshal(yy2982) - } else if !yym2983 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2982) + } else if z.HasExtensions() && z.EncExt(yy2987) { + } else if yym2988 { + z.EncBinaryMarshal(yy2987) + } else if !yym2988 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2987) } else { - z.EncFallback(yy2982) + z.EncFallback(yy2987) } } } - if yyr2971 || yy2arr2971 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2971[4] { - yym2985 := z.EncBinary() - _ = yym2985 + if yyq2976[4] { + yym2990 := z.EncBinary() + _ = yym2990 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -38335,23 +38383,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2971[4] { + if yyq2976[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2986 := z.EncBinary() - _ = yym2986 + yym2991 := z.EncBinary() + _ = yym2991 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2971 || yy2arr2971 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2971[5] { - yym2988 := z.EncBinary() - _ = yym2988 + if yyq2976[5] { + yym2993 := z.EncBinary() + _ = yym2993 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -38360,19 +38408,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2971[5] { + if yyq2976[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2989 := z.EncBinary() - _ = yym2989 + yym2994 := z.EncBinary() + _ = yym2994 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2971 || yy2arr2971 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38385,25 +38433,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2990 := z.DecBinary() - _ = yym2990 + yym2995 := z.DecBinary() + _ = yym2995 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2991 := r.ContainerType() - if yyct2991 == codecSelferValueTypeMap1234 { - yyl2991 := r.ReadMapStart() - if yyl2991 == 0 { + yyct2996 := r.ContainerType() + if yyct2996 == codecSelferValueTypeMap1234 { + yyl2996 := r.ReadMapStart() + if yyl2996 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2991, d) + x.codecDecodeSelfFromMap(yyl2996, d) } - } else if yyct2991 == codecSelferValueTypeArray1234 { - yyl2991 := r.ReadArrayStart() - if yyl2991 == 0 { + } else if yyct2996 == codecSelferValueTypeArray1234 { + yyl2996 := r.ReadArrayStart() + if yyl2996 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2991, d) + x.codecDecodeSelfFromArray(yyl2996, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38415,12 +38463,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2992Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2992Slc - var yyhl2992 bool = l >= 0 - for yyj2992 := 0; ; yyj2992++ { - if yyhl2992 { - if yyj2992 >= l { + var yys2997Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2997Slc + var yyhl2997 bool = l >= 0 + for yyj2997 := 0; ; yyj2997++ { + if yyhl2997 { + if yyj2997 >= l { break } } else { @@ -38429,10 +38477,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2992Slc = r.DecodeBytes(yys2992Slc, true, true) - yys2992 := string(yys2992Slc) + yys2997Slc = r.DecodeBytes(yys2997Slc, true, true) + yys2997 := string(yys2997Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2992 { + switch yys2997 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -38449,34 +38497,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv2995 := &x.LastHeartbeatTime - yym2996 := z.DecBinary() - _ = yym2996 + yyv3000 := &x.LastHeartbeatTime + yym3001 := z.DecBinary() + _ = yym3001 if false { - } else if z.HasExtensions() && z.DecExt(yyv2995) { - } else if yym2996 { - z.DecBinaryUnmarshal(yyv2995) - } else if !yym2996 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2995) + } else if z.HasExtensions() && z.DecExt(yyv3000) { + } else if yym3001 { + z.DecBinaryUnmarshal(yyv3000) + } else if !yym3001 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3000) } else { - z.DecFallback(yyv2995, false) + z.DecFallback(yyv3000, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv2997 := &x.LastTransitionTime - yym2998 := z.DecBinary() - _ = yym2998 + yyv3002 := &x.LastTransitionTime + yym3003 := z.DecBinary() + _ = yym3003 if false { - } else if z.HasExtensions() && z.DecExt(yyv2997) { - } else if yym2998 { - z.DecBinaryUnmarshal(yyv2997) - } else if !yym2998 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2997) + } else if z.HasExtensions() && z.DecExt(yyv3002) { + } else if yym3003 { + z.DecBinaryUnmarshal(yyv3002) + } else if !yym3003 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3002) } else { - z.DecFallback(yyv2997, false) + z.DecFallback(yyv3002, false) } } case "reason": @@ -38492,9 +38540,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2992) - } // end switch yys2992 - } // end for yyj2992 + z.DecStructFieldNotFound(-1, yys2997) + } // end switch yys2997 + } // end for yyj2997 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38502,16 +38550,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3001 int - var yyb3001 bool - var yyhl3001 bool = l >= 0 - yyj3001++ - if yyhl3001 { - yyb3001 = yyj3001 > l + var yyj3006 int + var yyb3006 bool + var yyhl3006 bool = l >= 0 + yyj3006++ + if yyhl3006 { + yyb3006 = yyj3006 > l } else { - yyb3001 = r.CheckBreak() + yyb3006 = r.CheckBreak() } - if yyb3001 { + if yyb3006 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38521,13 +38569,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj3001++ - if yyhl3001 { - yyb3001 = yyj3001 > l + yyj3006++ + if yyhl3006 { + yyb3006 = yyj3006 > l } else { - yyb3001 = r.CheckBreak() + yyb3006 = r.CheckBreak() } - if yyb3001 { + if yyb3006 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38537,13 +38585,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3001++ - if yyhl3001 { - yyb3001 = yyj3001 > l + yyj3006++ + if yyhl3006 { + yyb3006 = yyj3006 > l } else { - yyb3001 = r.CheckBreak() + yyb3006 = r.CheckBreak() } - if yyb3001 { + if yyb3006 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38551,26 +38599,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3004 := &x.LastHeartbeatTime - yym3005 := z.DecBinary() - _ = yym3005 + yyv3009 := &x.LastHeartbeatTime + yym3010 := z.DecBinary() + _ = yym3010 if false { - } else if z.HasExtensions() && z.DecExt(yyv3004) { - } else if yym3005 { - z.DecBinaryUnmarshal(yyv3004) - } else if !yym3005 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3004) + } else if z.HasExtensions() && z.DecExt(yyv3009) { + } else if yym3010 { + z.DecBinaryUnmarshal(yyv3009) + } else if !yym3010 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3009) } else { - z.DecFallback(yyv3004, false) + z.DecFallback(yyv3009, false) } } - yyj3001++ - if yyhl3001 { - yyb3001 = yyj3001 > l + yyj3006++ + if yyhl3006 { + yyb3006 = yyj3006 > l } else { - yyb3001 = r.CheckBreak() + yyb3006 = r.CheckBreak() } - if yyb3001 { + if yyb3006 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38578,26 +38626,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3006 := &x.LastTransitionTime - yym3007 := z.DecBinary() - _ = yym3007 + yyv3011 := &x.LastTransitionTime + yym3012 := z.DecBinary() + _ = yym3012 if false { - } else if z.HasExtensions() && z.DecExt(yyv3006) { - } else if yym3007 { - z.DecBinaryUnmarshal(yyv3006) - } else if !yym3007 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3006) + } else if z.HasExtensions() && z.DecExt(yyv3011) { + } else if yym3012 { + z.DecBinaryUnmarshal(yyv3011) + } else if !yym3012 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3011) } else { - z.DecFallback(yyv3006, false) + z.DecFallback(yyv3011, false) } } - yyj3001++ - if yyhl3001 { - yyb3001 = yyj3001 > l + yyj3006++ + if yyhl3006 { + yyb3006 = yyj3006 > l } else { - yyb3001 = r.CheckBreak() + yyb3006 = r.CheckBreak() } - if yyb3001 { + if yyb3006 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38607,13 +38655,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3001++ - if yyhl3001 { - yyb3001 = yyj3001 > l + yyj3006++ + if yyhl3006 { + yyb3006 = yyj3006 > l } else { - yyb3001 = r.CheckBreak() + yyb3006 = r.CheckBreak() } - if yyb3001 { + if yyb3006 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38624,17 +38672,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj3001++ - if yyhl3001 { - yyb3001 = yyj3001 > l + yyj3006++ + if yyhl3006 { + yyb3006 = yyj3006 > l } else { - yyb3001 = r.CheckBreak() + yyb3006 = r.CheckBreak() } - if yyb3001 { + if yyb3006 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3001-1, "") + z.DecStructFieldNotFound(yyj3006-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38643,8 +38691,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3010 := z.EncBinary() - _ = yym3010 + yym3015 := z.EncBinary() + _ = yym3015 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38656,8 +38704,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3011 := z.DecBinary() - _ = yym3011 + yym3016 := z.DecBinary() + _ = yym3016 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38672,30 +38720,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3012 := z.EncBinary() - _ = yym3012 + yym3017 := z.EncBinary() + _ = yym3017 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3013 := !z.EncBinary() - yy2arr3013 := z.EncBasicHandle().StructToArray - var yyq3013 [2]bool - _, _, _ = yysep3013, yyq3013, yy2arr3013 - const yyr3013 bool = false - var yynn3013 int - if yyr3013 || yy2arr3013 { + yysep3018 := !z.EncBinary() + yy2arr3018 := z.EncBasicHandle().StructToArray + var yyq3018 [2]bool + _, _, _ = yysep3018, yyq3018, yy2arr3018 + const yyr3018 bool = false + var yynn3018 int + if yyr3018 || yy2arr3018 { r.EncodeArrayStart(2) } else { - yynn3013 = 2 - for _, b := range yyq3013 { + yynn3018 = 2 + for _, b := range yyq3018 { if b { - yynn3013++ + yynn3018++ } } - r.EncodeMapStart(yynn3013) - yynn3013 = 0 + r.EncodeMapStart(yynn3018) + yynn3018 = 0 } - if yyr3013 || yy2arr3013 { + if yyr3018 || yy2arr3018 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -38704,10 +38752,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3013 || yy2arr3013 { + if yyr3018 || yy2arr3018 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3016 := z.EncBinary() - _ = yym3016 + yym3021 := z.EncBinary() + _ = yym3021 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -38716,14 +38764,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3017 := z.EncBinary() - _ = yym3017 + yym3022 := z.EncBinary() + _ = yym3022 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr3013 || yy2arr3013 { + if yyr3018 || yy2arr3018 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38736,25 +38784,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3018 := z.DecBinary() - _ = yym3018 + yym3023 := z.DecBinary() + _ = yym3023 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3019 := r.ContainerType() - if yyct3019 == codecSelferValueTypeMap1234 { - yyl3019 := r.ReadMapStart() - if yyl3019 == 0 { + yyct3024 := r.ContainerType() + if yyct3024 == codecSelferValueTypeMap1234 { + yyl3024 := r.ReadMapStart() + if yyl3024 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3019, d) + x.codecDecodeSelfFromMap(yyl3024, d) } - } else if yyct3019 == codecSelferValueTypeArray1234 { - yyl3019 := r.ReadArrayStart() - if yyl3019 == 0 { + } else if yyct3024 == codecSelferValueTypeArray1234 { + yyl3024 := r.ReadArrayStart() + if yyl3024 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3019, d) + x.codecDecodeSelfFromArray(yyl3024, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38766,12 +38814,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3020Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3020Slc - var yyhl3020 bool = l >= 0 - for yyj3020 := 0; ; yyj3020++ { - if yyhl3020 { - if yyj3020 >= l { + var yys3025Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3025Slc + var yyhl3025 bool = l >= 0 + for yyj3025 := 0; ; yyj3025++ { + if yyhl3025 { + if yyj3025 >= l { break } } else { @@ -38780,10 +38828,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3020Slc = r.DecodeBytes(yys3020Slc, true, true) - yys3020 := string(yys3020Slc) + yys3025Slc = r.DecodeBytes(yys3025Slc, true, true) + yys3025 := string(yys3025Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3020 { + switch yys3025 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -38797,9 +38845,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3020) - } // end switch yys3020 - } // end for yyj3020 + z.DecStructFieldNotFound(-1, yys3025) + } // end switch yys3025 + } // end for yyj3025 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38807,16 +38855,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3023 int - var yyb3023 bool - var yyhl3023 bool = l >= 0 - yyj3023++ - if yyhl3023 { - yyb3023 = yyj3023 > l + var yyj3028 int + var yyb3028 bool + var yyhl3028 bool = l >= 0 + yyj3028++ + if yyhl3028 { + yyb3028 = yyj3028 > l } else { - yyb3023 = r.CheckBreak() + yyb3028 = r.CheckBreak() } - if yyb3023 { + if yyb3028 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38826,13 +38874,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj3023++ - if yyhl3023 { - yyb3023 = yyj3023 > l + yyj3028++ + if yyhl3028 { + yyb3028 = yyj3028 > l } else { - yyb3023 = r.CheckBreak() + yyb3028 = r.CheckBreak() } - if yyb3023 { + if yyb3028 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38843,17 +38891,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj3023++ - if yyhl3023 { - yyb3023 = yyj3023 > l + yyj3028++ + if yyhl3028 { + yyb3028 = yyj3028 > l } else { - yyb3023 = r.CheckBreak() + yyb3028 = r.CheckBreak() } - if yyb3023 { + if yyb3028 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3023-1, "") + z.DecStructFieldNotFound(yyj3028-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38862,8 +38910,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3026 := z.EncBinary() - _ = yym3026 + yym3031 := z.EncBinary() + _ = yym3031 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38875,8 +38923,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3027 := z.DecBinary() - _ = yym3027 + yym3032 := z.DecBinary() + _ = yym3032 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38891,8 +38939,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3028 := z.EncBinary() - _ = yym3028 + yym3033 := z.EncBinary() + _ = yym3033 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38905,8 +38953,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3029 := z.DecBinary() - _ = yym3029 + yym3034 := z.DecBinary() + _ = yym3034 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38921,39 +38969,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3030 := z.EncBinary() - _ = yym3030 + yym3035 := z.EncBinary() + _ = yym3035 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3031 := !z.EncBinary() - yy2arr3031 := z.EncBasicHandle().StructToArray - var yyq3031 [5]bool - _, _, _ = yysep3031, yyq3031, yy2arr3031 - const yyr3031 bool = false - yyq3031[0] = x.Kind != "" - yyq3031[1] = x.APIVersion != "" - yyq3031[2] = true - yyq3031[3] = true - yyq3031[4] = true - var yynn3031 int - if yyr3031 || yy2arr3031 { + yysep3036 := !z.EncBinary() + yy2arr3036 := z.EncBasicHandle().StructToArray + var yyq3036 [5]bool + _, _, _ = yysep3036, yyq3036, yy2arr3036 + const yyr3036 bool = false + yyq3036[0] = x.Kind != "" + yyq3036[1] = x.APIVersion != "" + yyq3036[2] = true + yyq3036[3] = true + yyq3036[4] = true + var yynn3036 int + if yyr3036 || yy2arr3036 { r.EncodeArrayStart(5) } else { - yynn3031 = 0 - for _, b := range yyq3031 { + yynn3036 = 0 + for _, b := range yyq3036 { if b { - yynn3031++ + yynn3036++ } } - r.EncodeMapStart(yynn3031) - yynn3031 = 0 + r.EncodeMapStart(yynn3036) + yynn3036 = 0 } - if yyr3031 || yy2arr3031 { + if yyr3036 || yy2arr3036 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[0] { - yym3033 := z.EncBinary() - _ = yym3033 + if yyq3036[0] { + yym3038 := z.EncBinary() + _ = yym3038 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -38962,23 +39010,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3031[0] { + if yyq3036[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3034 := z.EncBinary() - _ = yym3034 + yym3039 := z.EncBinary() + _ = yym3039 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3031 || yy2arr3031 { + if yyr3036 || yy2arr3036 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[1] { - yym3036 := z.EncBinary() - _ = yym3036 + if yyq3036[1] { + yym3041 := z.EncBinary() + _ = yym3041 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -38987,70 +39035,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3031[1] { + if yyq3036[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3037 := z.EncBinary() - _ = yym3037 + yym3042 := z.EncBinary() + _ = yym3042 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3031 || yy2arr3031 { + if yyr3036 || yy2arr3036 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[2] { - yy3039 := &x.ObjectMeta - yy3039.CodecEncodeSelf(e) + if yyq3036[2] { + yy3044 := &x.ObjectMeta + yy3044.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3031[2] { + if yyq3036[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3040 := &x.ObjectMeta - yy3040.CodecEncodeSelf(e) + yy3045 := &x.ObjectMeta + yy3045.CodecEncodeSelf(e) } } - if yyr3031 || yy2arr3031 { + if yyr3036 || yy2arr3036 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[3] { - yy3042 := &x.Spec - yy3042.CodecEncodeSelf(e) + if yyq3036[3] { + yy3047 := &x.Spec + yy3047.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3031[3] { + if yyq3036[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3043 := &x.Spec - yy3043.CodecEncodeSelf(e) + yy3048 := &x.Spec + yy3048.CodecEncodeSelf(e) } } - if yyr3031 || yy2arr3031 { + if yyr3036 || yy2arr3036 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[4] { - yy3045 := &x.Status - yy3045.CodecEncodeSelf(e) + if yyq3036[4] { + yy3050 := &x.Status + yy3050.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3031[4] { + if yyq3036[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3046 := &x.Status - yy3046.CodecEncodeSelf(e) + yy3051 := &x.Status + yy3051.CodecEncodeSelf(e) } } - if yyr3031 || yy2arr3031 { + if yyr3036 || yy2arr3036 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39063,25 +39111,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3047 := z.DecBinary() - _ = yym3047 + yym3052 := z.DecBinary() + _ = yym3052 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3048 := r.ContainerType() - if yyct3048 == codecSelferValueTypeMap1234 { - yyl3048 := r.ReadMapStart() - if yyl3048 == 0 { + yyct3053 := r.ContainerType() + if yyct3053 == codecSelferValueTypeMap1234 { + yyl3053 := r.ReadMapStart() + if yyl3053 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3048, d) + x.codecDecodeSelfFromMap(yyl3053, d) } - } else if yyct3048 == codecSelferValueTypeArray1234 { - yyl3048 := r.ReadArrayStart() - if yyl3048 == 0 { + } else if yyct3053 == codecSelferValueTypeArray1234 { + yyl3053 := r.ReadArrayStart() + if yyl3053 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3048, d) + x.codecDecodeSelfFromArray(yyl3053, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39093,12 +39141,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3049Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3049Slc - var yyhl3049 bool = l >= 0 - for yyj3049 := 0; ; yyj3049++ { - if yyhl3049 { - if yyj3049 >= l { + var yys3054Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3054Slc + var yyhl3054 bool = l >= 0 + for yyj3054 := 0; ; yyj3054++ { + if yyhl3054 { + if yyj3054 >= l { break } } else { @@ -39107,10 +39155,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3049Slc = r.DecodeBytes(yys3049Slc, true, true) - yys3049 := string(yys3049Slc) + yys3054Slc = r.DecodeBytes(yys3054Slc, true, true) + yys3054 := string(yys3054Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3049 { + switch yys3054 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39127,27 +39175,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3052 := &x.ObjectMeta - yyv3052.CodecDecodeSelf(d) + yyv3057 := &x.ObjectMeta + yyv3057.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3053 := &x.Spec - yyv3053.CodecDecodeSelf(d) + yyv3058 := &x.Spec + yyv3058.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3054 := &x.Status - yyv3054.CodecDecodeSelf(d) + yyv3059 := &x.Status + yyv3059.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3049) - } // end switch yys3049 - } // end for yyj3049 + z.DecStructFieldNotFound(-1, yys3054) + } // end switch yys3054 + } // end for yyj3054 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39155,16 +39203,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3055 int - var yyb3055 bool - var yyhl3055 bool = l >= 0 - yyj3055++ - if yyhl3055 { - yyb3055 = yyj3055 > l + var yyj3060 int + var yyb3060 bool + var yyhl3060 bool = l >= 0 + yyj3060++ + if yyhl3060 { + yyb3060 = yyj3060 > l } else { - yyb3055 = r.CheckBreak() + yyb3060 = r.CheckBreak() } - if yyb3055 { + if yyb3060 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39174,13 +39222,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3055++ - if yyhl3055 { - yyb3055 = yyj3055 > l + yyj3060++ + if yyhl3060 { + yyb3060 = yyj3060 > l } else { - yyb3055 = r.CheckBreak() + yyb3060 = r.CheckBreak() } - if yyb3055 { + if yyb3060 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39190,13 +39238,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3055++ - if yyhl3055 { - yyb3055 = yyj3055 > l + yyj3060++ + if yyhl3060 { + yyb3060 = yyj3060 > l } else { - yyb3055 = r.CheckBreak() + yyb3060 = r.CheckBreak() } - if yyb3055 { + if yyb3060 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39204,16 +39252,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3058 := &x.ObjectMeta - yyv3058.CodecDecodeSelf(d) + yyv3063 := &x.ObjectMeta + yyv3063.CodecDecodeSelf(d) } - yyj3055++ - if yyhl3055 { - yyb3055 = yyj3055 > l + yyj3060++ + if yyhl3060 { + yyb3060 = yyj3060 > l } else { - yyb3055 = r.CheckBreak() + yyb3060 = r.CheckBreak() } - if yyb3055 { + if yyb3060 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39221,16 +39269,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3059 := &x.Spec - yyv3059.CodecDecodeSelf(d) + yyv3064 := &x.Spec + yyv3064.CodecDecodeSelf(d) } - yyj3055++ - if yyhl3055 { - yyb3055 = yyj3055 > l + yyj3060++ + if yyhl3060 { + yyb3060 = yyj3060 > l } else { - yyb3055 = r.CheckBreak() + yyb3060 = r.CheckBreak() } - if yyb3055 { + if yyb3060 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39238,21 +39286,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3060 := &x.Status - yyv3060.CodecDecodeSelf(d) + yyv3065 := &x.Status + yyv3065.CodecDecodeSelf(d) } for { - yyj3055++ - if yyhl3055 { - yyb3055 = yyj3055 > l + yyj3060++ + if yyhl3060 { + yyb3060 = yyj3060 > l } else { - yyb3055 = r.CheckBreak() + yyb3060 = r.CheckBreak() } - if yyb3055 { + if yyb3060 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3055-1, "") + z.DecStructFieldNotFound(yyj3060-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39264,37 +39312,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3061 := z.EncBinary() - _ = yym3061 + yym3066 := z.EncBinary() + _ = yym3066 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3062 := !z.EncBinary() - yy2arr3062 := z.EncBasicHandle().StructToArray - var yyq3062 [4]bool - _, _, _ = yysep3062, yyq3062, yy2arr3062 - const yyr3062 bool = false - yyq3062[0] = x.Kind != "" - yyq3062[1] = x.APIVersion != "" - yyq3062[2] = true - var yynn3062 int - if yyr3062 || yy2arr3062 { + yysep3067 := !z.EncBinary() + yy2arr3067 := z.EncBasicHandle().StructToArray + var yyq3067 [4]bool + _, _, _ = yysep3067, yyq3067, yy2arr3067 + const yyr3067 bool = false + yyq3067[0] = x.Kind != "" + yyq3067[1] = x.APIVersion != "" + yyq3067[2] = true + var yynn3067 int + if yyr3067 || yy2arr3067 { r.EncodeArrayStart(4) } else { - yynn3062 = 1 - for _, b := range yyq3062 { + yynn3067 = 1 + for _, b := range yyq3067 { if b { - yynn3062++ + yynn3067++ } } - r.EncodeMapStart(yynn3062) - yynn3062 = 0 + r.EncodeMapStart(yynn3067) + yynn3067 = 0 } - if yyr3062 || yy2arr3062 { + if yyr3067 || yy2arr3067 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3062[0] { - yym3064 := z.EncBinary() - _ = yym3064 + if yyq3067[0] { + yym3069 := z.EncBinary() + _ = yym3069 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39303,23 +39351,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3062[0] { + if yyq3067[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3065 := z.EncBinary() - _ = yym3065 + yym3070 := z.EncBinary() + _ = yym3070 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3062 || yy2arr3062 { + if yyr3067 || yy2arr3067 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3062[1] { - yym3067 := z.EncBinary() - _ = yym3067 + if yyq3067[1] { + yym3072 := z.EncBinary() + _ = yym3072 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39328,54 +39376,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3062[1] { + if yyq3067[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3068 := z.EncBinary() - _ = yym3068 + yym3073 := z.EncBinary() + _ = yym3073 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3062 || yy2arr3062 { + if yyr3067 || yy2arr3067 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3062[2] { - yy3070 := &x.ListMeta - yym3071 := z.EncBinary() - _ = yym3071 + if yyq3067[2] { + yy3075 := &x.ListMeta + yym3076 := z.EncBinary() + _ = yym3076 if false { - } else if z.HasExtensions() && z.EncExt(yy3070) { + } else if z.HasExtensions() && z.EncExt(yy3075) { } else { - z.EncFallback(yy3070) + z.EncFallback(yy3075) } } else { r.EncodeNil() } } else { - if yyq3062[2] { + if yyq3067[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3072 := &x.ListMeta - yym3073 := z.EncBinary() - _ = yym3073 + yy3077 := &x.ListMeta + yym3078 := z.EncBinary() + _ = yym3078 if false { - } else if z.HasExtensions() && z.EncExt(yy3072) { + } else if z.HasExtensions() && z.EncExt(yy3077) { } else { - z.EncFallback(yy3072) + z.EncFallback(yy3077) } } } - if yyr3062 || yy2arr3062 { + if yyr3067 || yy2arr3067 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3075 := z.EncBinary() - _ = yym3075 + yym3080 := z.EncBinary() + _ = yym3080 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -39388,15 +39436,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3076 := z.EncBinary() - _ = yym3076 + yym3081 := z.EncBinary() + _ = yym3081 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr3062 || yy2arr3062 { + if yyr3067 || yy2arr3067 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39409,25 +39457,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3077 := z.DecBinary() - _ = yym3077 + yym3082 := z.DecBinary() + _ = yym3082 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3078 := r.ContainerType() - if yyct3078 == codecSelferValueTypeMap1234 { - yyl3078 := r.ReadMapStart() - if yyl3078 == 0 { + yyct3083 := r.ContainerType() + if yyct3083 == codecSelferValueTypeMap1234 { + yyl3083 := r.ReadMapStart() + if yyl3083 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3078, d) + x.codecDecodeSelfFromMap(yyl3083, d) } - } else if yyct3078 == codecSelferValueTypeArray1234 { - yyl3078 := r.ReadArrayStart() - if yyl3078 == 0 { + } else if yyct3083 == codecSelferValueTypeArray1234 { + yyl3083 := r.ReadArrayStart() + if yyl3083 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3078, d) + x.codecDecodeSelfFromArray(yyl3083, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39439,12 +39487,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3079Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3079Slc - var yyhl3079 bool = l >= 0 - for yyj3079 := 0; ; yyj3079++ { - if yyhl3079 { - if yyj3079 >= l { + var yys3084Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3084Slc + var yyhl3084 bool = l >= 0 + for yyj3084 := 0; ; yyj3084++ { + if yyhl3084 { + if yyj3084 >= l { break } } else { @@ -39453,10 +39501,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3079Slc = r.DecodeBytes(yys3079Slc, true, true) - yys3079 := string(yys3079Slc) + yys3084Slc = r.DecodeBytes(yys3084Slc, true, true) + yys3084 := string(yys3084Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3079 { + switch yys3084 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39473,31 +39521,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3082 := &x.ListMeta - yym3083 := z.DecBinary() - _ = yym3083 + yyv3087 := &x.ListMeta + yym3088 := z.DecBinary() + _ = yym3088 if false { - } else if z.HasExtensions() && z.DecExt(yyv3082) { + } else if z.HasExtensions() && z.DecExt(yyv3087) { } else { - z.DecFallback(yyv3082, false) + z.DecFallback(yyv3087, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3084 := &x.Items - yym3085 := z.DecBinary() - _ = yym3085 + yyv3089 := &x.Items + yym3090 := z.DecBinary() + _ = yym3090 if false { } else { - h.decSliceNode((*[]Node)(yyv3084), d) + h.decSliceNode((*[]Node)(yyv3089), d) } } default: - z.DecStructFieldNotFound(-1, yys3079) - } // end switch yys3079 - } // end for yyj3079 + z.DecStructFieldNotFound(-1, yys3084) + } // end switch yys3084 + } // end for yyj3084 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39505,16 +39553,16 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3086 int - var yyb3086 bool - var yyhl3086 bool = l >= 0 - yyj3086++ - if yyhl3086 { - yyb3086 = yyj3086 > l + var yyj3091 int + var yyb3091 bool + var yyhl3091 bool = l >= 0 + yyj3091++ + if yyhl3091 { + yyb3091 = yyj3091 > l } else { - yyb3086 = r.CheckBreak() + yyb3091 = r.CheckBreak() } - if yyb3086 { + if yyb3091 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39524,13 +39572,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3086++ - if yyhl3086 { - yyb3086 = yyj3086 > l + yyj3091++ + if yyhl3091 { + yyb3091 = yyj3091 > l } else { - yyb3086 = r.CheckBreak() + yyb3091 = r.CheckBreak() } - if yyb3086 { + if yyb3091 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39540,13 +39588,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3086++ - if yyhl3086 { - yyb3086 = yyj3086 > l + yyj3091++ + if yyhl3091 { + yyb3091 = yyj3091 > l } else { - yyb3086 = r.CheckBreak() + yyb3091 = r.CheckBreak() } - if yyb3086 { + if yyb3091 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39554,22 +39602,22 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3089 := &x.ListMeta - yym3090 := z.DecBinary() - _ = yym3090 + yyv3094 := &x.ListMeta + yym3095 := z.DecBinary() + _ = yym3095 if false { - } else if z.HasExtensions() && z.DecExt(yyv3089) { + } else if z.HasExtensions() && z.DecExt(yyv3094) { } else { - z.DecFallback(yyv3089, false) + z.DecFallback(yyv3094, false) } } - yyj3086++ - if yyhl3086 { - yyb3086 = yyj3086 > l + yyj3091++ + if yyhl3091 { + yyb3091 = yyj3091 > l } else { - yyb3086 = r.CheckBreak() + yyb3091 = r.CheckBreak() } - if yyb3086 { + if yyb3091 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39577,26 +39625,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3091 := &x.Items - yym3092 := z.DecBinary() - _ = yym3092 + yyv3096 := &x.Items + yym3097 := z.DecBinary() + _ = yym3097 if false { } else { - h.decSliceNode((*[]Node)(yyv3091), d) + h.decSliceNode((*[]Node)(yyv3096), d) } } for { - yyj3086++ - if yyhl3086 { - yyb3086 = yyj3086 > l + yyj3091++ + if yyhl3091 { + yyb3091 = yyj3091 > l } else { - yyb3086 = r.CheckBreak() + yyb3091 = r.CheckBreak() } - if yyb3086 { + if yyb3091 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3086-1, "") + z.DecStructFieldNotFound(yyj3091-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39605,8 +39653,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3093 := z.EncBinary() - _ = yym3093 + yym3098 := z.EncBinary() + _ = yym3098 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39618,8 +39666,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3094 := z.DecBinary() - _ = yym3094 + yym3099 := z.DecBinary() + _ = yym3099 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39634,38 +39682,38 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3095 := z.EncBinary() - _ = yym3095 + yym3100 := z.EncBinary() + _ = yym3100 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3096 := !z.EncBinary() - yy2arr3096 := z.EncBasicHandle().StructToArray - var yyq3096 [1]bool - _, _, _ = yysep3096, yyq3096, yy2arr3096 - const yyr3096 bool = false - yyq3096[0] = len(x.Finalizers) != 0 - var yynn3096 int - if yyr3096 || yy2arr3096 { + yysep3101 := !z.EncBinary() + yy2arr3101 := z.EncBasicHandle().StructToArray + var yyq3101 [1]bool + _, _, _ = yysep3101, yyq3101, yy2arr3101 + const yyr3101 bool = false + yyq3101[0] = len(x.Finalizers) != 0 + var yynn3101 int + if yyr3101 || yy2arr3101 { r.EncodeArrayStart(1) } else { - yynn3096 = 0 - for _, b := range yyq3096 { + yynn3101 = 0 + for _, b := range yyq3101 { if b { - yynn3096++ + yynn3101++ } } - r.EncodeMapStart(yynn3096) - yynn3096 = 0 + r.EncodeMapStart(yynn3101) + yynn3101 = 0 } - if yyr3096 || yy2arr3096 { + if yyr3101 || yy2arr3101 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3096[0] { + if yyq3101[0] { if x.Finalizers == nil { r.EncodeNil() } else { - yym3098 := z.EncBinary() - _ = yym3098 + yym3103 := z.EncBinary() + _ = yym3103 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -39675,15 +39723,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3096[0] { + if yyq3101[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("finalizers")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym3099 := z.EncBinary() - _ = yym3099 + yym3104 := z.EncBinary() + _ = yym3104 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -39691,7 +39739,7 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3096 || yy2arr3096 { + if yyr3101 || yy2arr3101 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39704,25 +39752,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3100 := z.DecBinary() - _ = yym3100 + yym3105 := z.DecBinary() + _ = yym3105 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3101 := r.ContainerType() - if yyct3101 == codecSelferValueTypeMap1234 { - yyl3101 := r.ReadMapStart() - if yyl3101 == 0 { + yyct3106 := r.ContainerType() + if yyct3106 == codecSelferValueTypeMap1234 { + yyl3106 := r.ReadMapStart() + if yyl3106 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3101, d) + x.codecDecodeSelfFromMap(yyl3106, d) } - } else if yyct3101 == codecSelferValueTypeArray1234 { - yyl3101 := r.ReadArrayStart() - if yyl3101 == 0 { + } else if yyct3106 == codecSelferValueTypeArray1234 { + yyl3106 := r.ReadArrayStart() + if yyl3106 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3101, d) + x.codecDecodeSelfFromArray(yyl3106, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39734,12 +39782,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3102Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3102Slc - var yyhl3102 bool = l >= 0 - for yyj3102 := 0; ; yyj3102++ { - if yyhl3102 { - if yyj3102 >= l { + var yys3107Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3107Slc + var yyhl3107 bool = l >= 0 + for yyj3107 := 0; ; yyj3107++ { + if yyhl3107 { + if yyj3107 >= l { break } } else { @@ -39748,26 +39796,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3102Slc = r.DecodeBytes(yys3102Slc, true, true) - yys3102 := string(yys3102Slc) + yys3107Slc = r.DecodeBytes(yys3107Slc, true, true) + yys3107 := string(yys3107Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3102 { + switch yys3107 { case "finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3103 := &x.Finalizers - yym3104 := z.DecBinary() - _ = yym3104 + yyv3108 := &x.Finalizers + yym3109 := z.DecBinary() + _ = yym3109 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3103), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3108), d) } } default: - z.DecStructFieldNotFound(-1, yys3102) - } // end switch yys3102 - } // end for yyj3102 + z.DecStructFieldNotFound(-1, yys3107) + } // end switch yys3107 + } // end for yyj3107 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39775,16 +39823,16 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3105 int - var yyb3105 bool - var yyhl3105 bool = l >= 0 - yyj3105++ - if yyhl3105 { - yyb3105 = yyj3105 > l + var yyj3110 int + var yyb3110 bool + var yyhl3110 bool = l >= 0 + yyj3110++ + if yyhl3110 { + yyb3110 = yyj3110 > l } else { - yyb3105 = r.CheckBreak() + yyb3110 = r.CheckBreak() } - if yyb3105 { + if yyb3110 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39792,26 +39840,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3106 := &x.Finalizers - yym3107 := z.DecBinary() - _ = yym3107 + yyv3111 := &x.Finalizers + yym3112 := z.DecBinary() + _ = yym3112 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3106), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3111), d) } } for { - yyj3105++ - if yyhl3105 { - yyb3105 = yyj3105 > l + yyj3110++ + if yyhl3110 { + yyb3110 = yyj3110 > l } else { - yyb3105 = r.CheckBreak() + yyb3110 = r.CheckBreak() } - if yyb3105 { + if yyb3110 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3105-1, "") + z.DecStructFieldNotFound(yyj3110-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39823,46 +39871,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3108 := z.EncBinary() - _ = yym3108 + yym3113 := z.EncBinary() + _ = yym3113 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3109 := !z.EncBinary() - yy2arr3109 := z.EncBasicHandle().StructToArray - var yyq3109 [1]bool - _, _, _ = yysep3109, yyq3109, yy2arr3109 - const yyr3109 bool = false - yyq3109[0] = x.Phase != "" - var yynn3109 int - if yyr3109 || yy2arr3109 { + yysep3114 := !z.EncBinary() + yy2arr3114 := z.EncBasicHandle().StructToArray + var yyq3114 [1]bool + _, _, _ = yysep3114, yyq3114, yy2arr3114 + const yyr3114 bool = false + yyq3114[0] = x.Phase != "" + var yynn3114 int + if yyr3114 || yy2arr3114 { r.EncodeArrayStart(1) } else { - yynn3109 = 0 - for _, b := range yyq3109 { + yynn3114 = 0 + for _, b := range yyq3114 { if b { - yynn3109++ + yynn3114++ } } - r.EncodeMapStart(yynn3109) - yynn3109 = 0 + r.EncodeMapStart(yynn3114) + yynn3114 = 0 } - if yyr3109 || yy2arr3109 { + if yyr3114 || yy2arr3114 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3109[0] { + if yyq3114[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3109[0] { + if yyq3114[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr3109 || yy2arr3109 { + if yyr3114 || yy2arr3114 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39875,25 +39923,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3111 := z.DecBinary() - _ = yym3111 + yym3116 := z.DecBinary() + _ = yym3116 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3112 := r.ContainerType() - if yyct3112 == codecSelferValueTypeMap1234 { - yyl3112 := r.ReadMapStart() - if yyl3112 == 0 { + yyct3117 := r.ContainerType() + if yyct3117 == codecSelferValueTypeMap1234 { + yyl3117 := r.ReadMapStart() + if yyl3117 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3112, d) + x.codecDecodeSelfFromMap(yyl3117, d) } - } else if yyct3112 == codecSelferValueTypeArray1234 { - yyl3112 := r.ReadArrayStart() - if yyl3112 == 0 { + } else if yyct3117 == codecSelferValueTypeArray1234 { + yyl3117 := r.ReadArrayStart() + if yyl3117 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3112, d) + x.codecDecodeSelfFromArray(yyl3117, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39905,12 +39953,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3113Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3113Slc - var yyhl3113 bool = l >= 0 - for yyj3113 := 0; ; yyj3113++ { - if yyhl3113 { - if yyj3113 >= l { + var yys3118Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3118Slc + var yyhl3118 bool = l >= 0 + for yyj3118 := 0; ; yyj3118++ { + if yyhl3118 { + if yyj3118 >= l { break } } else { @@ -39919,10 +39967,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3113Slc = r.DecodeBytes(yys3113Slc, true, true) - yys3113 := string(yys3113Slc) + yys3118Slc = r.DecodeBytes(yys3118Slc, true, true) + yys3118 := string(yys3118Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3113 { + switch yys3118 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -39930,9 +39978,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3113) - } // end switch yys3113 - } // end for yyj3113 + z.DecStructFieldNotFound(-1, yys3118) + } // end switch yys3118 + } // end for yyj3118 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39940,16 +39988,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3115 int - var yyb3115 bool - var yyhl3115 bool = l >= 0 - yyj3115++ - if yyhl3115 { - yyb3115 = yyj3115 > l + var yyj3120 int + var yyb3120 bool + var yyhl3120 bool = l >= 0 + yyj3120++ + if yyhl3120 { + yyb3120 = yyj3120 > l } else { - yyb3115 = r.CheckBreak() + yyb3120 = r.CheckBreak() } - if yyb3115 { + if yyb3120 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39960,17 +40008,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj3115++ - if yyhl3115 { - yyb3115 = yyj3115 > l + yyj3120++ + if yyhl3120 { + yyb3120 = yyj3120 > l } else { - yyb3115 = r.CheckBreak() + yyb3120 = r.CheckBreak() } - if yyb3115 { + if yyb3120 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3115-1, "") + z.DecStructFieldNotFound(yyj3120-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39979,8 +40027,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3117 := z.EncBinary() - _ = yym3117 + yym3122 := z.EncBinary() + _ = yym3122 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39992,8 +40040,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3118 := z.DecBinary() - _ = yym3118 + yym3123 := z.DecBinary() + _ = yym3123 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40008,39 +40056,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3119 := z.EncBinary() - _ = yym3119 + yym3124 := z.EncBinary() + _ = yym3124 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3120 := !z.EncBinary() - yy2arr3120 := z.EncBasicHandle().StructToArray - var yyq3120 [5]bool - _, _, _ = yysep3120, yyq3120, yy2arr3120 - const yyr3120 bool = false - yyq3120[0] = x.Kind != "" - yyq3120[1] = x.APIVersion != "" - yyq3120[2] = true - yyq3120[3] = true - yyq3120[4] = true - var yynn3120 int - if yyr3120 || yy2arr3120 { + yysep3125 := !z.EncBinary() + yy2arr3125 := z.EncBasicHandle().StructToArray + var yyq3125 [5]bool + _, _, _ = yysep3125, yyq3125, yy2arr3125 + const yyr3125 bool = false + yyq3125[0] = x.Kind != "" + yyq3125[1] = x.APIVersion != "" + yyq3125[2] = true + yyq3125[3] = true + yyq3125[4] = true + var yynn3125 int + if yyr3125 || yy2arr3125 { r.EncodeArrayStart(5) } else { - yynn3120 = 0 - for _, b := range yyq3120 { + yynn3125 = 0 + for _, b := range yyq3125 { if b { - yynn3120++ + yynn3125++ } } - r.EncodeMapStart(yynn3120) - yynn3120 = 0 + r.EncodeMapStart(yynn3125) + yynn3125 = 0 } - if yyr3120 || yy2arr3120 { + if yyr3125 || yy2arr3125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3120[0] { - yym3122 := z.EncBinary() - _ = yym3122 + if yyq3125[0] { + yym3127 := z.EncBinary() + _ = yym3127 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40049,23 +40097,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3120[0] { + if yyq3125[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3123 := z.EncBinary() - _ = yym3123 + yym3128 := z.EncBinary() + _ = yym3128 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3120 || yy2arr3120 { + if yyr3125 || yy2arr3125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3120[1] { - yym3125 := z.EncBinary() - _ = yym3125 + if yyq3125[1] { + yym3130 := z.EncBinary() + _ = yym3130 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40074,70 +40122,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3120[1] { + if yyq3125[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3126 := z.EncBinary() - _ = yym3126 + yym3131 := z.EncBinary() + _ = yym3131 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3120 || yy2arr3120 { + if yyr3125 || yy2arr3125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3120[2] { - yy3128 := &x.ObjectMeta - yy3128.CodecEncodeSelf(e) + if yyq3125[2] { + yy3133 := &x.ObjectMeta + yy3133.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3120[2] { + if yyq3125[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3129 := &x.ObjectMeta - yy3129.CodecEncodeSelf(e) + yy3134 := &x.ObjectMeta + yy3134.CodecEncodeSelf(e) } } - if yyr3120 || yy2arr3120 { + if yyr3125 || yy2arr3125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3120[3] { - yy3131 := &x.Spec - yy3131.CodecEncodeSelf(e) + if yyq3125[3] { + yy3136 := &x.Spec + yy3136.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3120[3] { + if yyq3125[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3132 := &x.Spec - yy3132.CodecEncodeSelf(e) + yy3137 := &x.Spec + yy3137.CodecEncodeSelf(e) } } - if yyr3120 || yy2arr3120 { + if yyr3125 || yy2arr3125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3120[4] { - yy3134 := &x.Status - yy3134.CodecEncodeSelf(e) + if yyq3125[4] { + yy3139 := &x.Status + yy3139.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3120[4] { + if yyq3125[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3135 := &x.Status - yy3135.CodecEncodeSelf(e) + yy3140 := &x.Status + yy3140.CodecEncodeSelf(e) } } - if yyr3120 || yy2arr3120 { + if yyr3125 || yy2arr3125 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40150,25 +40198,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3136 := z.DecBinary() - _ = yym3136 + yym3141 := z.DecBinary() + _ = yym3141 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3137 := r.ContainerType() - if yyct3137 == codecSelferValueTypeMap1234 { - yyl3137 := r.ReadMapStart() - if yyl3137 == 0 { + yyct3142 := r.ContainerType() + if yyct3142 == codecSelferValueTypeMap1234 { + yyl3142 := r.ReadMapStart() + if yyl3142 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3137, d) + x.codecDecodeSelfFromMap(yyl3142, d) } - } else if yyct3137 == codecSelferValueTypeArray1234 { - yyl3137 := r.ReadArrayStart() - if yyl3137 == 0 { + } else if yyct3142 == codecSelferValueTypeArray1234 { + yyl3142 := r.ReadArrayStart() + if yyl3142 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3137, d) + x.codecDecodeSelfFromArray(yyl3142, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40180,12 +40228,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3138Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3138Slc - var yyhl3138 bool = l >= 0 - for yyj3138 := 0; ; yyj3138++ { - if yyhl3138 { - if yyj3138 >= l { + var yys3143Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3143Slc + var yyhl3143 bool = l >= 0 + for yyj3143 := 0; ; yyj3143++ { + if yyhl3143 { + if yyj3143 >= l { break } } else { @@ -40194,10 +40242,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3138Slc = r.DecodeBytes(yys3138Slc, true, true) - yys3138 := string(yys3138Slc) + yys3143Slc = r.DecodeBytes(yys3143Slc, true, true) + yys3143 := string(yys3143Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3138 { + switch yys3143 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40214,27 +40262,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3141 := &x.ObjectMeta - yyv3141.CodecDecodeSelf(d) + yyv3146 := &x.ObjectMeta + yyv3146.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3142 := &x.Spec - yyv3142.CodecDecodeSelf(d) + yyv3147 := &x.Spec + yyv3147.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3143 := &x.Status - yyv3143.CodecDecodeSelf(d) + yyv3148 := &x.Status + yyv3148.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3138) - } // end switch yys3138 - } // end for yyj3138 + z.DecStructFieldNotFound(-1, yys3143) + } // end switch yys3143 + } // end for yyj3143 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40242,16 +40290,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3144 int - var yyb3144 bool - var yyhl3144 bool = l >= 0 - yyj3144++ - if yyhl3144 { - yyb3144 = yyj3144 > l + var yyj3149 int + var yyb3149 bool + var yyhl3149 bool = l >= 0 + yyj3149++ + if yyhl3149 { + yyb3149 = yyj3149 > l } else { - yyb3144 = r.CheckBreak() + yyb3149 = r.CheckBreak() } - if yyb3144 { + if yyb3149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40261,13 +40309,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3144++ - if yyhl3144 { - yyb3144 = yyj3144 > l + yyj3149++ + if yyhl3149 { + yyb3149 = yyj3149 > l } else { - yyb3144 = r.CheckBreak() + yyb3149 = r.CheckBreak() } - if yyb3144 { + if yyb3149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40277,13 +40325,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3144++ - if yyhl3144 { - yyb3144 = yyj3144 > l + yyj3149++ + if yyhl3149 { + yyb3149 = yyj3149 > l } else { - yyb3144 = r.CheckBreak() + yyb3149 = r.CheckBreak() } - if yyb3144 { + if yyb3149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40291,16 +40339,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3147 := &x.ObjectMeta - yyv3147.CodecDecodeSelf(d) + yyv3152 := &x.ObjectMeta + yyv3152.CodecDecodeSelf(d) } - yyj3144++ - if yyhl3144 { - yyb3144 = yyj3144 > l + yyj3149++ + if yyhl3149 { + yyb3149 = yyj3149 > l } else { - yyb3144 = r.CheckBreak() + yyb3149 = r.CheckBreak() } - if yyb3144 { + if yyb3149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40308,16 +40356,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3148 := &x.Spec - yyv3148.CodecDecodeSelf(d) + yyv3153 := &x.Spec + yyv3153.CodecDecodeSelf(d) } - yyj3144++ - if yyhl3144 { - yyb3144 = yyj3144 > l + yyj3149++ + if yyhl3149 { + yyb3149 = yyj3149 > l } else { - yyb3144 = r.CheckBreak() + yyb3149 = r.CheckBreak() } - if yyb3144 { + if yyb3149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40325,21 +40373,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3149 := &x.Status - yyv3149.CodecDecodeSelf(d) + yyv3154 := &x.Status + yyv3154.CodecDecodeSelf(d) } for { - yyj3144++ - if yyhl3144 { - yyb3144 = yyj3144 > l + yyj3149++ + if yyhl3149 { + yyb3149 = yyj3149 > l } else { - yyb3144 = r.CheckBreak() + yyb3149 = r.CheckBreak() } - if yyb3144 { + if yyb3149 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3144-1, "") + z.DecStructFieldNotFound(yyj3149-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40351,37 +40399,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3150 := z.EncBinary() - _ = yym3150 + yym3155 := z.EncBinary() + _ = yym3155 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3151 := !z.EncBinary() - yy2arr3151 := z.EncBasicHandle().StructToArray - var yyq3151 [4]bool - _, _, _ = yysep3151, yyq3151, yy2arr3151 - const yyr3151 bool = false - yyq3151[0] = x.Kind != "" - yyq3151[1] = x.APIVersion != "" - yyq3151[2] = true - var yynn3151 int - if yyr3151 || yy2arr3151 { + yysep3156 := !z.EncBinary() + yy2arr3156 := z.EncBasicHandle().StructToArray + var yyq3156 [4]bool + _, _, _ = yysep3156, yyq3156, yy2arr3156 + const yyr3156 bool = false + yyq3156[0] = x.Kind != "" + yyq3156[1] = x.APIVersion != "" + yyq3156[2] = true + var yynn3156 int + if yyr3156 || yy2arr3156 { r.EncodeArrayStart(4) } else { - yynn3151 = 1 - for _, b := range yyq3151 { + yynn3156 = 1 + for _, b := range yyq3156 { if b { - yynn3151++ + yynn3156++ } } - r.EncodeMapStart(yynn3151) - yynn3151 = 0 + r.EncodeMapStart(yynn3156) + yynn3156 = 0 } - if yyr3151 || yy2arr3151 { + if yyr3156 || yy2arr3156 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3151[0] { - yym3153 := z.EncBinary() - _ = yym3153 + if yyq3156[0] { + yym3158 := z.EncBinary() + _ = yym3158 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40390,23 +40438,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3151[0] { + if yyq3156[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3154 := z.EncBinary() - _ = yym3154 + yym3159 := z.EncBinary() + _ = yym3159 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3151 || yy2arr3151 { + if yyr3156 || yy2arr3156 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3151[1] { - yym3156 := z.EncBinary() - _ = yym3156 + if yyq3156[1] { + yym3161 := z.EncBinary() + _ = yym3161 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40415,54 +40463,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3151[1] { + if yyq3156[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3157 := z.EncBinary() - _ = yym3157 + yym3162 := z.EncBinary() + _ = yym3162 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3151 || yy2arr3151 { + if yyr3156 || yy2arr3156 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3151[2] { - yy3159 := &x.ListMeta - yym3160 := z.EncBinary() - _ = yym3160 + if yyq3156[2] { + yy3164 := &x.ListMeta + yym3165 := z.EncBinary() + _ = yym3165 if false { - } else if z.HasExtensions() && z.EncExt(yy3159) { + } else if z.HasExtensions() && z.EncExt(yy3164) { } else { - z.EncFallback(yy3159) + z.EncFallback(yy3164) } } else { r.EncodeNil() } } else { - if yyq3151[2] { + if yyq3156[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3161 := &x.ListMeta - yym3162 := z.EncBinary() - _ = yym3162 + yy3166 := &x.ListMeta + yym3167 := z.EncBinary() + _ = yym3167 if false { - } else if z.HasExtensions() && z.EncExt(yy3161) { + } else if z.HasExtensions() && z.EncExt(yy3166) { } else { - z.EncFallback(yy3161) + z.EncFallback(yy3166) } } } - if yyr3151 || yy2arr3151 { + if yyr3156 || yy2arr3156 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3164 := z.EncBinary() - _ = yym3164 + yym3169 := z.EncBinary() + _ = yym3169 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -40475,15 +40523,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3165 := z.EncBinary() - _ = yym3165 + yym3170 := z.EncBinary() + _ = yym3170 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr3151 || yy2arr3151 { + if yyr3156 || yy2arr3156 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40496,25 +40544,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3166 := z.DecBinary() - _ = yym3166 + yym3171 := z.DecBinary() + _ = yym3171 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3167 := r.ContainerType() - if yyct3167 == codecSelferValueTypeMap1234 { - yyl3167 := r.ReadMapStart() - if yyl3167 == 0 { + yyct3172 := r.ContainerType() + if yyct3172 == codecSelferValueTypeMap1234 { + yyl3172 := r.ReadMapStart() + if yyl3172 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3167, d) + x.codecDecodeSelfFromMap(yyl3172, d) } - } else if yyct3167 == codecSelferValueTypeArray1234 { - yyl3167 := r.ReadArrayStart() - if yyl3167 == 0 { + } else if yyct3172 == codecSelferValueTypeArray1234 { + yyl3172 := r.ReadArrayStart() + if yyl3172 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3167, d) + x.codecDecodeSelfFromArray(yyl3172, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40526,12 +40574,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3168Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3168Slc - var yyhl3168 bool = l >= 0 - for yyj3168 := 0; ; yyj3168++ { - if yyhl3168 { - if yyj3168 >= l { + var yys3173Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3173Slc + var yyhl3173 bool = l >= 0 + for yyj3173 := 0; ; yyj3173++ { + if yyhl3173 { + if yyj3173 >= l { break } } else { @@ -40540,10 +40588,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3168Slc = r.DecodeBytes(yys3168Slc, true, true) - yys3168 := string(yys3168Slc) + yys3173Slc = r.DecodeBytes(yys3173Slc, true, true) + yys3173 := string(yys3173Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3168 { + switch yys3173 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40560,31 +40608,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3171 := &x.ListMeta - yym3172 := z.DecBinary() - _ = yym3172 + yyv3176 := &x.ListMeta + yym3177 := z.DecBinary() + _ = yym3177 if false { - } else if z.HasExtensions() && z.DecExt(yyv3171) { + } else if z.HasExtensions() && z.DecExt(yyv3176) { } else { - z.DecFallback(yyv3171, false) + z.DecFallback(yyv3176, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3173 := &x.Items - yym3174 := z.DecBinary() - _ = yym3174 + yyv3178 := &x.Items + yym3179 := z.DecBinary() + _ = yym3179 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3173), d) + h.decSliceNamespace((*[]Namespace)(yyv3178), d) } } default: - z.DecStructFieldNotFound(-1, yys3168) - } // end switch yys3168 - } // end for yyj3168 + z.DecStructFieldNotFound(-1, yys3173) + } // end switch yys3173 + } // end for yyj3173 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40592,16 +40640,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3175 int - var yyb3175 bool - var yyhl3175 bool = l >= 0 - yyj3175++ - if yyhl3175 { - yyb3175 = yyj3175 > l + var yyj3180 int + var yyb3180 bool + var yyhl3180 bool = l >= 0 + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3175 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3175 { + if yyb3180 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40611,13 +40659,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3175++ - if yyhl3175 { - yyb3175 = yyj3175 > l + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3175 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3175 { + if yyb3180 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40627,13 +40675,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3175++ - if yyhl3175 { - yyb3175 = yyj3175 > l + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3175 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3175 { + if yyb3180 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40641,22 +40689,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3178 := &x.ListMeta - yym3179 := z.DecBinary() - _ = yym3179 + yyv3183 := &x.ListMeta + yym3184 := z.DecBinary() + _ = yym3184 if false { - } else if z.HasExtensions() && z.DecExt(yyv3178) { + } else if z.HasExtensions() && z.DecExt(yyv3183) { } else { - z.DecFallback(yyv3178, false) + z.DecFallback(yyv3183, false) } } - yyj3175++ - if yyhl3175 { - yyb3175 = yyj3175 > l + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3175 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3175 { + if yyb3180 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40664,26 +40712,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3180 := &x.Items - yym3181 := z.DecBinary() - _ = yym3181 + yyv3185 := &x.Items + yym3186 := z.DecBinary() + _ = yym3186 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3180), d) + h.decSliceNamespace((*[]Namespace)(yyv3185), d) } } for { - yyj3175++ - if yyhl3175 { - yyb3175 = yyj3175 > l + yyj3180++ + if yyhl3180 { + yyb3180 = yyj3180 > l } else { - yyb3175 = r.CheckBreak() + yyb3180 = r.CheckBreak() } - if yyb3175 { + if yyb3180 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3175-1, "") + z.DecStructFieldNotFound(yyj3180-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40695,37 +40743,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3182 := z.EncBinary() - _ = yym3182 + yym3187 := z.EncBinary() + _ = yym3187 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3183 := !z.EncBinary() - yy2arr3183 := z.EncBasicHandle().StructToArray - var yyq3183 [4]bool - _, _, _ = yysep3183, yyq3183, yy2arr3183 - const yyr3183 bool = false - yyq3183[0] = x.Kind != "" - yyq3183[1] = x.APIVersion != "" - yyq3183[2] = true - var yynn3183 int - if yyr3183 || yy2arr3183 { + yysep3188 := !z.EncBinary() + yy2arr3188 := z.EncBasicHandle().StructToArray + var yyq3188 [4]bool + _, _, _ = yysep3188, yyq3188, yy2arr3188 + const yyr3188 bool = false + yyq3188[0] = x.Kind != "" + yyq3188[1] = x.APIVersion != "" + yyq3188[2] = true + var yynn3188 int + if yyr3188 || yy2arr3188 { r.EncodeArrayStart(4) } else { - yynn3183 = 1 - for _, b := range yyq3183 { + yynn3188 = 1 + for _, b := range yyq3188 { if b { - yynn3183++ + yynn3188++ } } - r.EncodeMapStart(yynn3183) - yynn3183 = 0 + r.EncodeMapStart(yynn3188) + yynn3188 = 0 } - if yyr3183 || yy2arr3183 { + if yyr3188 || yy2arr3188 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3183[0] { - yym3185 := z.EncBinary() - _ = yym3185 + if yyq3188[0] { + yym3190 := z.EncBinary() + _ = yym3190 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40734,23 +40782,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3183[0] { + if yyq3188[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3186 := z.EncBinary() - _ = yym3186 + yym3191 := z.EncBinary() + _ = yym3191 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3183 || yy2arr3183 { + if yyr3188 || yy2arr3188 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3183[1] { - yym3188 := z.EncBinary() - _ = yym3188 + if yyq3188[1] { + yym3193 := z.EncBinary() + _ = yym3193 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40759,47 +40807,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3183[1] { + if yyq3188[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3189 := z.EncBinary() - _ = yym3189 + yym3194 := z.EncBinary() + _ = yym3194 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3183 || yy2arr3183 { + if yyr3188 || yy2arr3188 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3183[2] { - yy3191 := &x.ObjectMeta - yy3191.CodecEncodeSelf(e) + if yyq3188[2] { + yy3196 := &x.ObjectMeta + yy3196.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3183[2] { + if yyq3188[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3192 := &x.ObjectMeta - yy3192.CodecEncodeSelf(e) + yy3197 := &x.ObjectMeta + yy3197.CodecEncodeSelf(e) } } - if yyr3183 || yy2arr3183 { + if yyr3188 || yy2arr3188 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3194 := &x.Target - yy3194.CodecEncodeSelf(e) + yy3199 := &x.Target + yy3199.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3195 := &x.Target - yy3195.CodecEncodeSelf(e) + yy3200 := &x.Target + yy3200.CodecEncodeSelf(e) } - if yyr3183 || yy2arr3183 { + if yyr3188 || yy2arr3188 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40812,25 +40860,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3196 := z.DecBinary() - _ = yym3196 + yym3201 := z.DecBinary() + _ = yym3201 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3197 := r.ContainerType() - if yyct3197 == codecSelferValueTypeMap1234 { - yyl3197 := r.ReadMapStart() - if yyl3197 == 0 { + yyct3202 := r.ContainerType() + if yyct3202 == codecSelferValueTypeMap1234 { + yyl3202 := r.ReadMapStart() + if yyl3202 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3197, d) + x.codecDecodeSelfFromMap(yyl3202, d) } - } else if yyct3197 == codecSelferValueTypeArray1234 { - yyl3197 := r.ReadArrayStart() - if yyl3197 == 0 { + } else if yyct3202 == codecSelferValueTypeArray1234 { + yyl3202 := r.ReadArrayStart() + if yyl3202 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3197, d) + x.codecDecodeSelfFromArray(yyl3202, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40842,12 +40890,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3198Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3198Slc - var yyhl3198 bool = l >= 0 - for yyj3198 := 0; ; yyj3198++ { - if yyhl3198 { - if yyj3198 >= l { + var yys3203Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3203Slc + var yyhl3203 bool = l >= 0 + for yyj3203 := 0; ; yyj3203++ { + if yyhl3203 { + if yyj3203 >= l { break } } else { @@ -40856,10 +40904,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3198Slc = r.DecodeBytes(yys3198Slc, true, true) - yys3198 := string(yys3198Slc) + yys3203Slc = r.DecodeBytes(yys3203Slc, true, true) + yys3203 := string(yys3203Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3198 { + switch yys3203 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40876,20 +40924,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3201 := &x.ObjectMeta - yyv3201.CodecDecodeSelf(d) + yyv3206 := &x.ObjectMeta + yyv3206.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3202 := &x.Target - yyv3202.CodecDecodeSelf(d) + yyv3207 := &x.Target + yyv3207.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3198) - } // end switch yys3198 - } // end for yyj3198 + z.DecStructFieldNotFound(-1, yys3203) + } // end switch yys3203 + } // end for yyj3203 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40897,16 +40945,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3203 int - var yyb3203 bool - var yyhl3203 bool = l >= 0 - yyj3203++ - if yyhl3203 { - yyb3203 = yyj3203 > l + var yyj3208 int + var yyb3208 bool + var yyhl3208 bool = l >= 0 + yyj3208++ + if yyhl3208 { + yyb3208 = yyj3208 > l } else { - yyb3203 = r.CheckBreak() + yyb3208 = r.CheckBreak() } - if yyb3203 { + if yyb3208 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40916,13 +40964,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3203++ - if yyhl3203 { - yyb3203 = yyj3203 > l + yyj3208++ + if yyhl3208 { + yyb3208 = yyj3208 > l } else { - yyb3203 = r.CheckBreak() + yyb3208 = r.CheckBreak() } - if yyb3203 { + if yyb3208 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40932,13 +40980,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3203++ - if yyhl3203 { - yyb3203 = yyj3203 > l + yyj3208++ + if yyhl3208 { + yyb3208 = yyj3208 > l } else { - yyb3203 = r.CheckBreak() + yyb3208 = r.CheckBreak() } - if yyb3203 { + if yyb3208 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40946,16 +40994,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3206 := &x.ObjectMeta - yyv3206.CodecDecodeSelf(d) + yyv3211 := &x.ObjectMeta + yyv3211.CodecDecodeSelf(d) } - yyj3203++ - if yyhl3203 { - yyb3203 = yyj3203 > l + yyj3208++ + if yyhl3208 { + yyb3208 = yyj3208 > l } else { - yyb3203 = r.CheckBreak() + yyb3208 = r.CheckBreak() } - if yyb3203 { + if yyb3208 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40963,21 +41011,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3207 := &x.Target - yyv3207.CodecDecodeSelf(d) + yyv3212 := &x.Target + yyv3212.CodecDecodeSelf(d) } for { - yyj3203++ - if yyhl3203 { - yyb3203 = yyj3203 > l + yyj3208++ + if yyhl3208 { + yyb3208 = yyj3208 > l } else { - yyb3203 = r.CheckBreak() + yyb3208 = r.CheckBreak() } - if yyb3203 { + if yyb3208 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3203-1, "") + z.DecStructFieldNotFound(yyj3208-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40989,68 +41037,68 @@ func (x *Preconditions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3208 := z.EncBinary() - _ = yym3208 + yym3213 := z.EncBinary() + _ = yym3213 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3209 := !z.EncBinary() - yy2arr3209 := z.EncBasicHandle().StructToArray - var yyq3209 [1]bool - _, _, _ = yysep3209, yyq3209, yy2arr3209 - const yyr3209 bool = false - yyq3209[0] = x.UID != nil - var yynn3209 int - if yyr3209 || yy2arr3209 { + yysep3214 := !z.EncBinary() + yy2arr3214 := z.EncBasicHandle().StructToArray + var yyq3214 [1]bool + _, _, _ = yysep3214, yyq3214, yy2arr3214 + const yyr3214 bool = false + yyq3214[0] = x.UID != nil + var yynn3214 int + if yyr3214 || yy2arr3214 { r.EncodeArrayStart(1) } else { - yynn3209 = 0 - for _, b := range yyq3209 { + yynn3214 = 0 + for _, b := range yyq3214 { if b { - yynn3209++ + yynn3214++ } } - r.EncodeMapStart(yynn3209) - yynn3209 = 0 + r.EncodeMapStart(yynn3214) + yynn3214 = 0 } - if yyr3209 || yy2arr3209 { + if yyr3214 || yy2arr3214 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3209[0] { + if yyq3214[0] { if x.UID == nil { r.EncodeNil() } else { - yy3211 := *x.UID - yym3212 := z.EncBinary() - _ = yym3212 + yy3216 := *x.UID + yym3217 := z.EncBinary() + _ = yym3217 if false { - } else if z.HasExtensions() && z.EncExt(yy3211) { + } else if z.HasExtensions() && z.EncExt(yy3216) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3211)) + r.EncodeString(codecSelferC_UTF81234, string(yy3216)) } } } else { r.EncodeNil() } } else { - if yyq3209[0] { + if yyq3214[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.UID == nil { r.EncodeNil() } else { - yy3213 := *x.UID - yym3214 := z.EncBinary() - _ = yym3214 + yy3218 := *x.UID + yym3219 := z.EncBinary() + _ = yym3219 if false { - } else if z.HasExtensions() && z.EncExt(yy3213) { + } else if z.HasExtensions() && z.EncExt(yy3218) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3213)) + r.EncodeString(codecSelferC_UTF81234, string(yy3218)) } } } } - if yyr3209 || yy2arr3209 { + if yyr3214 || yy2arr3214 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41063,25 +41111,25 @@ func (x *Preconditions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3215 := z.DecBinary() - _ = yym3215 + yym3220 := z.DecBinary() + _ = yym3220 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3216 := r.ContainerType() - if yyct3216 == codecSelferValueTypeMap1234 { - yyl3216 := r.ReadMapStart() - if yyl3216 == 0 { + yyct3221 := r.ContainerType() + if yyct3221 == codecSelferValueTypeMap1234 { + yyl3221 := r.ReadMapStart() + if yyl3221 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3216, d) + x.codecDecodeSelfFromMap(yyl3221, d) } - } else if yyct3216 == codecSelferValueTypeArray1234 { - yyl3216 := r.ReadArrayStart() - if yyl3216 == 0 { + } else if yyct3221 == codecSelferValueTypeArray1234 { + yyl3221 := r.ReadArrayStart() + if yyl3221 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3216, d) + x.codecDecodeSelfFromArray(yyl3221, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41093,12 +41141,12 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3217Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3217Slc - var yyhl3217 bool = l >= 0 - for yyj3217 := 0; ; yyj3217++ { - if yyhl3217 { - if yyj3217 >= l { + var yys3222Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3222Slc + var yyhl3222 bool = l >= 0 + for yyj3222 := 0; ; yyj3222++ { + if yyhl3222 { + if yyj3222 >= l { break } } else { @@ -41107,10 +41155,10 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3217Slc = r.DecodeBytes(yys3217Slc, true, true) - yys3217 := string(yys3217Slc) + yys3222Slc = r.DecodeBytes(yys3222Slc, true, true) + yys3222 := string(yys3222Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3217 { + switch yys3222 { case "uid": if r.TryDecodeAsNil() { if x.UID != nil { @@ -41120,8 +41168,8 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3219 := z.DecBinary() - _ = yym3219 + yym3224 := z.DecBinary() + _ = yym3224 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -41129,9 +41177,9 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3217) - } // end switch yys3217 - } // end for yyj3217 + z.DecStructFieldNotFound(-1, yys3222) + } // end switch yys3222 + } // end for yyj3222 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41139,16 +41187,16 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3220 int - var yyb3220 bool - var yyhl3220 bool = l >= 0 - yyj3220++ - if yyhl3220 { - yyb3220 = yyj3220 > l + var yyj3225 int + var yyb3225 bool + var yyhl3225 bool = l >= 0 + yyj3225++ + if yyhl3225 { + yyb3225 = yyj3225 > l } else { - yyb3220 = r.CheckBreak() + yyb3225 = r.CheckBreak() } - if yyb3220 { + if yyb3225 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41161,8 +41209,8 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3222 := z.DecBinary() - _ = yym3222 + yym3227 := z.DecBinary() + _ = yym3227 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -41170,17 +41218,17 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3220++ - if yyhl3220 { - yyb3220 = yyj3220 > l + yyj3225++ + if yyhl3225 { + yyb3225 = yyj3225 > l } else { - yyb3220 = r.CheckBreak() + yyb3225 = r.CheckBreak() } - if yyb3220 { + if yyb3225 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3220-1, "") + z.DecStructFieldNotFound(yyj3225-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41192,39 +41240,39 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3223 := z.EncBinary() - _ = yym3223 + yym3228 := z.EncBinary() + _ = yym3228 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3224 := !z.EncBinary() - yy2arr3224 := z.EncBasicHandle().StructToArray - var yyq3224 [5]bool - _, _, _ = yysep3224, yyq3224, yy2arr3224 - const yyr3224 bool = false - yyq3224[0] = x.Kind != "" - yyq3224[1] = x.APIVersion != "" - yyq3224[2] = x.GracePeriodSeconds != nil - yyq3224[3] = x.Preconditions != nil - yyq3224[4] = x.OrphanDependents != nil - var yynn3224 int - if yyr3224 || yy2arr3224 { + yysep3229 := !z.EncBinary() + yy2arr3229 := z.EncBasicHandle().StructToArray + var yyq3229 [5]bool + _, _, _ = yysep3229, yyq3229, yy2arr3229 + const yyr3229 bool = false + yyq3229[0] = x.Kind != "" + yyq3229[1] = x.APIVersion != "" + yyq3229[2] = x.GracePeriodSeconds != nil + yyq3229[3] = x.Preconditions != nil + yyq3229[4] = x.OrphanDependents != nil + var yynn3229 int + if yyr3229 || yy2arr3229 { r.EncodeArrayStart(5) } else { - yynn3224 = 0 - for _, b := range yyq3224 { + yynn3229 = 0 + for _, b := range yyq3229 { if b { - yynn3224++ + yynn3229++ } } - r.EncodeMapStart(yynn3224) - yynn3224 = 0 + r.EncodeMapStart(yynn3229) + yynn3229 = 0 } - if yyr3224 || yy2arr3224 { + if yyr3229 || yy2arr3229 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3224[0] { - yym3226 := z.EncBinary() - _ = yym3226 + if yyq3229[0] { + yym3231 := z.EncBinary() + _ = yym3231 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41233,23 +41281,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3224[0] { + if yyq3229[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3227 := z.EncBinary() - _ = yym3227 + yym3232 := z.EncBinary() + _ = yym3232 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3224 || yy2arr3224 { + if yyr3229 || yy2arr3229 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3224[1] { - yym3229 := z.EncBinary() - _ = yym3229 + if yyq3229[1] { + yym3234 := z.EncBinary() + _ = yym3234 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41258,56 +41306,56 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3224[1] { + if yyq3229[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3230 := z.EncBinary() - _ = yym3230 + yym3235 := z.EncBinary() + _ = yym3235 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3224 || yy2arr3224 { + if yyr3229 || yy2arr3229 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3224[2] { + if yyq3229[2] { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3232 := *x.GracePeriodSeconds - yym3233 := z.EncBinary() - _ = yym3233 + yy3237 := *x.GracePeriodSeconds + yym3238 := z.EncBinary() + _ = yym3238 if false { } else { - r.EncodeInt(int64(yy3232)) + r.EncodeInt(int64(yy3237)) } } } else { r.EncodeNil() } } else { - if yyq3224[2] { + if yyq3229[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3234 := *x.GracePeriodSeconds - yym3235 := z.EncBinary() - _ = yym3235 + yy3239 := *x.GracePeriodSeconds + yym3240 := z.EncBinary() + _ = yym3240 if false { } else { - r.EncodeInt(int64(yy3234)) + r.EncodeInt(int64(yy3239)) } } } } - if yyr3224 || yy2arr3224 { + if yyr3229 || yy2arr3229 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3224[3] { + if yyq3229[3] { if x.Preconditions == nil { r.EncodeNil() } else { @@ -41317,7 +41365,7 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3224[3] { + if yyq3229[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preconditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41328,42 +41376,42 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3224 || yy2arr3224 { + if yyr3229 || yy2arr3229 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3224[4] { + if yyq3229[4] { if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3238 := *x.OrphanDependents - yym3239 := z.EncBinary() - _ = yym3239 + yy3243 := *x.OrphanDependents + yym3244 := z.EncBinary() + _ = yym3244 if false { } else { - r.EncodeBool(bool(yy3238)) + r.EncodeBool(bool(yy3243)) } } } else { r.EncodeNil() } } else { - if yyq3224[4] { + if yyq3229[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("orphanDependents")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3240 := *x.OrphanDependents - yym3241 := z.EncBinary() - _ = yym3241 + yy3245 := *x.OrphanDependents + yym3246 := z.EncBinary() + _ = yym3246 if false { } else { - r.EncodeBool(bool(yy3240)) + r.EncodeBool(bool(yy3245)) } } } } - if yyr3224 || yy2arr3224 { + if yyr3229 || yy2arr3229 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41376,25 +41424,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3242 := z.DecBinary() - _ = yym3242 + yym3247 := z.DecBinary() + _ = yym3247 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3243 := r.ContainerType() - if yyct3243 == codecSelferValueTypeMap1234 { - yyl3243 := r.ReadMapStart() - if yyl3243 == 0 { + yyct3248 := r.ContainerType() + if yyct3248 == codecSelferValueTypeMap1234 { + yyl3248 := r.ReadMapStart() + if yyl3248 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3243, d) + x.codecDecodeSelfFromMap(yyl3248, d) } - } else if yyct3243 == codecSelferValueTypeArray1234 { - yyl3243 := r.ReadArrayStart() - if yyl3243 == 0 { + } else if yyct3248 == codecSelferValueTypeArray1234 { + yyl3248 := r.ReadArrayStart() + if yyl3248 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3243, d) + x.codecDecodeSelfFromArray(yyl3248, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41406,12 +41454,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3244Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3244Slc - var yyhl3244 bool = l >= 0 - for yyj3244 := 0; ; yyj3244++ { - if yyhl3244 { - if yyj3244 >= l { + var yys3249Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3249Slc + var yyhl3249 bool = l >= 0 + for yyj3249 := 0; ; yyj3249++ { + if yyhl3249 { + if yyj3249 >= l { break } } else { @@ -41420,10 +41468,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3244Slc = r.DecodeBytes(yys3244Slc, true, true) - yys3244 := string(yys3244Slc) + yys3249Slc = r.DecodeBytes(yys3249Slc, true, true) + yys3249 := string(yys3249Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3244 { + switch yys3249 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41445,8 +41493,8 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3248 := z.DecBinary() - _ = yym3248 + yym3253 := z.DecBinary() + _ = yym3253 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -41472,17 +41520,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3251 := z.DecBinary() - _ = yym3251 + yym3256 := z.DecBinary() + _ = yym3256 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3244) - } // end switch yys3244 - } // end for yyj3244 + z.DecStructFieldNotFound(-1, yys3249) + } // end switch yys3249 + } // end for yyj3249 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41490,16 +41538,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3252 int - var yyb3252 bool - var yyhl3252 bool = l >= 0 - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l + var yyj3257 int + var yyb3257 bool + var yyhl3257 bool = l >= 0 + yyj3257++ + if yyhl3257 { + yyb3257 = yyj3257 > l } else { - yyb3252 = r.CheckBreak() + yyb3257 = r.CheckBreak() } - if yyb3252 { + if yyb3257 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41509,13 +41557,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l + yyj3257++ + if yyhl3257 { + yyb3257 = yyj3257 > l } else { - yyb3252 = r.CheckBreak() + yyb3257 = r.CheckBreak() } - if yyb3252 { + if yyb3257 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41525,13 +41573,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l + yyj3257++ + if yyhl3257 { + yyb3257 = yyj3257 > l } else { - yyb3252 = r.CheckBreak() + yyb3257 = r.CheckBreak() } - if yyb3252 { + if yyb3257 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41544,20 +41592,20 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3256 := z.DecBinary() - _ = yym3256 + yym3261 := z.DecBinary() + _ = yym3261 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l + yyj3257++ + if yyhl3257 { + yyb3257 = yyj3257 > l } else { - yyb3252 = r.CheckBreak() + yyb3257 = r.CheckBreak() } - if yyb3252 { + if yyb3257 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41572,13 +41620,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Preconditions.CodecDecodeSelf(d) } - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l + yyj3257++ + if yyhl3257 { + yyb3257 = yyj3257 > l } else { - yyb3252 = r.CheckBreak() + yyb3257 = r.CheckBreak() } - if yyb3252 { + if yyb3257 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41591,25 +41639,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3259 := z.DecBinary() - _ = yym3259 + yym3264 := z.DecBinary() + _ = yym3264 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } for { - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l + yyj3257++ + if yyhl3257 { + yyb3257 = yyj3257 > l } else { - yyb3252 = r.CheckBreak() + yyb3257 = r.CheckBreak() } - if yyb3252 { + if yyb3257 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3252-1, "") + z.DecStructFieldNotFound(yyj3257-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41621,36 +41669,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3260 := z.EncBinary() - _ = yym3260 + yym3265 := z.EncBinary() + _ = yym3265 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3261 := !z.EncBinary() - yy2arr3261 := z.EncBasicHandle().StructToArray - var yyq3261 [4]bool - _, _, _ = yysep3261, yyq3261, yy2arr3261 - const yyr3261 bool = false - yyq3261[0] = x.Kind != "" - yyq3261[1] = x.APIVersion != "" - var yynn3261 int - if yyr3261 || yy2arr3261 { + yysep3266 := !z.EncBinary() + yy2arr3266 := z.EncBasicHandle().StructToArray + var yyq3266 [4]bool + _, _, _ = yysep3266, yyq3266, yy2arr3266 + const yyr3266 bool = false + yyq3266[0] = x.Kind != "" + yyq3266[1] = x.APIVersion != "" + var yynn3266 int + if yyr3266 || yy2arr3266 { r.EncodeArrayStart(4) } else { - yynn3261 = 2 - for _, b := range yyq3261 { + yynn3266 = 2 + for _, b := range yyq3266 { if b { - yynn3261++ + yynn3266++ } } - r.EncodeMapStart(yynn3261) - yynn3261 = 0 + r.EncodeMapStart(yynn3266) + yynn3266 = 0 } - if yyr3261 || yy2arr3261 { + if yyr3266 || yy2arr3266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3261[0] { - yym3263 := z.EncBinary() - _ = yym3263 + if yyq3266[0] { + yym3268 := z.EncBinary() + _ = yym3268 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41659,23 +41707,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3261[0] { + if yyq3266[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3264 := z.EncBinary() - _ = yym3264 + yym3269 := z.EncBinary() + _ = yym3269 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3261 || yy2arr3261 { + if yyr3266 || yy2arr3266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3261[1] { - yym3266 := z.EncBinary() - _ = yym3266 + if yyq3266[1] { + yym3271 := z.EncBinary() + _ = yym3271 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41684,22 +41732,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3261[1] { + if yyq3266[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3267 := z.EncBinary() - _ = yym3267 + yym3272 := z.EncBinary() + _ = yym3272 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3261 || yy2arr3261 { + if yyr3266 || yy2arr3266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3269 := z.EncBinary() - _ = yym3269 + yym3274 := z.EncBinary() + _ = yym3274 if false { } else { r.EncodeBool(bool(x.Export)) @@ -41708,17 +41756,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3270 := z.EncBinary() - _ = yym3270 + yym3275 := z.EncBinary() + _ = yym3275 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr3261 || yy2arr3261 { + if yyr3266 || yy2arr3266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3272 := z.EncBinary() - _ = yym3272 + yym3277 := z.EncBinary() + _ = yym3277 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -41727,14 +41775,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3273 := z.EncBinary() - _ = yym3273 + yym3278 := z.EncBinary() + _ = yym3278 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr3261 || yy2arr3261 { + if yyr3266 || yy2arr3266 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41747,25 +41795,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3274 := z.DecBinary() - _ = yym3274 + yym3279 := z.DecBinary() + _ = yym3279 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3275 := r.ContainerType() - if yyct3275 == codecSelferValueTypeMap1234 { - yyl3275 := r.ReadMapStart() - if yyl3275 == 0 { + yyct3280 := r.ContainerType() + if yyct3280 == codecSelferValueTypeMap1234 { + yyl3280 := r.ReadMapStart() + if yyl3280 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3275, d) + x.codecDecodeSelfFromMap(yyl3280, d) } - } else if yyct3275 == codecSelferValueTypeArray1234 { - yyl3275 := r.ReadArrayStart() - if yyl3275 == 0 { + } else if yyct3280 == codecSelferValueTypeArray1234 { + yyl3280 := r.ReadArrayStart() + if yyl3280 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3275, d) + x.codecDecodeSelfFromArray(yyl3280, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41777,12 +41825,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3276Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3276Slc - var yyhl3276 bool = l >= 0 - for yyj3276 := 0; ; yyj3276++ { - if yyhl3276 { - if yyj3276 >= l { + var yys3281Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3281Slc + var yyhl3281 bool = l >= 0 + for yyj3281 := 0; ; yyj3281++ { + if yyhl3281 { + if yyj3281 >= l { break } } else { @@ -41791,10 +41839,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3276Slc = r.DecodeBytes(yys3276Slc, true, true) - yys3276 := string(yys3276Slc) + yys3281Slc = r.DecodeBytes(yys3281Slc, true, true) + yys3281 := string(yys3281Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3276 { + switch yys3281 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41820,9 +41868,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys3276) - } // end switch yys3276 - } // end for yyj3276 + z.DecStructFieldNotFound(-1, yys3281) + } // end switch yys3281 + } // end for yyj3281 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41830,16 +41878,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3281 int - var yyb3281 bool - var yyhl3281 bool = l >= 0 - yyj3281++ - if yyhl3281 { - yyb3281 = yyj3281 > l + var yyj3286 int + var yyb3286 bool + var yyhl3286 bool = l >= 0 + yyj3286++ + if yyhl3286 { + yyb3286 = yyj3286 > l } else { - yyb3281 = r.CheckBreak() + yyb3286 = r.CheckBreak() } - if yyb3281 { + if yyb3286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41849,13 +41897,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3281++ - if yyhl3281 { - yyb3281 = yyj3281 > l + yyj3286++ + if yyhl3286 { + yyb3286 = yyj3286 > l } else { - yyb3281 = r.CheckBreak() + yyb3286 = r.CheckBreak() } - if yyb3281 { + if yyb3286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41865,13 +41913,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3281++ - if yyhl3281 { - yyb3281 = yyj3281 > l + yyj3286++ + if yyhl3286 { + yyb3286 = yyj3286 > l } else { - yyb3281 = r.CheckBreak() + yyb3286 = r.CheckBreak() } - if yyb3281 { + if yyb3286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41881,13 +41929,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj3281++ - if yyhl3281 { - yyb3281 = yyj3281 > l + yyj3286++ + if yyhl3286 { + yyb3286 = yyj3286 > l } else { - yyb3281 = r.CheckBreak() + yyb3286 = r.CheckBreak() } - if yyb3281 { + if yyb3286 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41898,17 +41946,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj3281++ - if yyhl3281 { - yyb3281 = yyj3281 > l + yyj3286++ + if yyhl3286 { + yyb3286 = yyj3286 > l } else { - yyb3281 = r.CheckBreak() + yyb3286 = r.CheckBreak() } - if yyb3281 { + if yyb3286 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3281-1, "") + z.DecStructFieldNotFound(yyj3286-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41920,41 +41968,41 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3286 := z.EncBinary() - _ = yym3286 + yym3291 := z.EncBinary() + _ = yym3291 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3287 := !z.EncBinary() - yy2arr3287 := z.EncBasicHandle().StructToArray - var yyq3287 [7]bool - _, _, _ = yysep3287, yyq3287, yy2arr3287 - const yyr3287 bool = false - yyq3287[0] = x.Kind != "" - yyq3287[1] = x.APIVersion != "" - yyq3287[2] = x.LabelSelector != "" - yyq3287[3] = x.FieldSelector != "" - yyq3287[4] = x.Watch != false - yyq3287[5] = x.ResourceVersion != "" - yyq3287[6] = x.TimeoutSeconds != nil - var yynn3287 int - if yyr3287 || yy2arr3287 { + yysep3292 := !z.EncBinary() + yy2arr3292 := z.EncBasicHandle().StructToArray + var yyq3292 [7]bool + _, _, _ = yysep3292, yyq3292, yy2arr3292 + const yyr3292 bool = false + yyq3292[0] = x.Kind != "" + yyq3292[1] = x.APIVersion != "" + yyq3292[2] = x.LabelSelector != "" + yyq3292[3] = x.FieldSelector != "" + yyq3292[4] = x.Watch != false + yyq3292[5] = x.ResourceVersion != "" + yyq3292[6] = x.TimeoutSeconds != nil + var yynn3292 int + if yyr3292 || yy2arr3292 { r.EncodeArrayStart(7) } else { - yynn3287 = 0 - for _, b := range yyq3287 { + yynn3292 = 0 + for _, b := range yyq3292 { if b { - yynn3287++ + yynn3292++ } } - r.EncodeMapStart(yynn3287) - yynn3287 = 0 + r.EncodeMapStart(yynn3292) + yynn3292 = 0 } - if yyr3287 || yy2arr3287 { + if yyr3292 || yy2arr3292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3287[0] { - yym3289 := z.EncBinary() - _ = yym3289 + if yyq3292[0] { + yym3294 := z.EncBinary() + _ = yym3294 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41963,23 +42011,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3287[0] { + if yyq3292[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3290 := z.EncBinary() - _ = yym3290 + yym3295 := z.EncBinary() + _ = yym3295 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3287 || yy2arr3287 { + if yyr3292 || yy2arr3292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3287[1] { - yym3292 := z.EncBinary() - _ = yym3292 + if yyq3292[1] { + yym3297 := z.EncBinary() + _ = yym3297 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41988,23 +42036,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3287[1] { + if yyq3292[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3293 := z.EncBinary() - _ = yym3293 + yym3298 := z.EncBinary() + _ = yym3298 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3287 || yy2arr3287 { + if yyr3292 || yy2arr3292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3287[2] { - yym3295 := z.EncBinary() - _ = yym3295 + if yyq3292[2] { + yym3300 := z.EncBinary() + _ = yym3300 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) @@ -42013,23 +42061,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3287[2] { + if yyq3292[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3296 := z.EncBinary() - _ = yym3296 + yym3301 := z.EncBinary() + _ = yym3301 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) } } } - if yyr3287 || yy2arr3287 { + if yyr3292 || yy2arr3292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3287[3] { - yym3298 := z.EncBinary() - _ = yym3298 + if yyq3292[3] { + yym3303 := z.EncBinary() + _ = yym3303 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) @@ -42038,23 +42086,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3287[3] { + if yyq3292[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3299 := z.EncBinary() - _ = yym3299 + yym3304 := z.EncBinary() + _ = yym3304 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) } } } - if yyr3287 || yy2arr3287 { + if yyr3292 || yy2arr3292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3287[4] { - yym3301 := z.EncBinary() - _ = yym3301 + if yyq3292[4] { + yym3306 := z.EncBinary() + _ = yym3306 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -42063,23 +42111,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3287[4] { + if yyq3292[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3302 := z.EncBinary() - _ = yym3302 + yym3307 := z.EncBinary() + _ = yym3307 if false { } else { r.EncodeBool(bool(x.Watch)) } } } - if yyr3287 || yy2arr3287 { + if yyr3292 || yy2arr3292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3287[5] { - yym3304 := z.EncBinary() - _ = yym3304 + if yyq3292[5] { + yym3309 := z.EncBinary() + _ = yym3309 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -42088,54 +42136,54 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3287[5] { + if yyq3292[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3305 := z.EncBinary() - _ = yym3305 + yym3310 := z.EncBinary() + _ = yym3310 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3287 || yy2arr3287 { + if yyr3292 || yy2arr3292 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3287[6] { + if yyq3292[6] { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3307 := *x.TimeoutSeconds - yym3308 := z.EncBinary() - _ = yym3308 + yy3312 := *x.TimeoutSeconds + yym3313 := z.EncBinary() + _ = yym3313 if false { } else { - r.EncodeInt(int64(yy3307)) + r.EncodeInt(int64(yy3312)) } } } else { r.EncodeNil() } } else { - if yyq3287[6] { + if yyq3292[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3309 := *x.TimeoutSeconds - yym3310 := z.EncBinary() - _ = yym3310 + yy3314 := *x.TimeoutSeconds + yym3315 := z.EncBinary() + _ = yym3315 if false { } else { - r.EncodeInt(int64(yy3309)) + r.EncodeInt(int64(yy3314)) } } } } - if yyr3287 || yy2arr3287 { + if yyr3292 || yy2arr3292 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42148,25 +42196,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3311 := z.DecBinary() - _ = yym3311 + yym3316 := z.DecBinary() + _ = yym3316 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3312 := r.ContainerType() - if yyct3312 == codecSelferValueTypeMap1234 { - yyl3312 := r.ReadMapStart() - if yyl3312 == 0 { + yyct3317 := r.ContainerType() + if yyct3317 == codecSelferValueTypeMap1234 { + yyl3317 := r.ReadMapStart() + if yyl3317 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3312, d) + x.codecDecodeSelfFromMap(yyl3317, d) } - } else if yyct3312 == codecSelferValueTypeArray1234 { - yyl3312 := r.ReadArrayStart() - if yyl3312 == 0 { + } else if yyct3317 == codecSelferValueTypeArray1234 { + yyl3317 := r.ReadArrayStart() + if yyl3317 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3312, d) + x.codecDecodeSelfFromArray(yyl3317, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42178,12 +42226,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3313Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3313Slc - var yyhl3313 bool = l >= 0 - for yyj3313 := 0; ; yyj3313++ { - if yyhl3313 { - if yyj3313 >= l { + var yys3318Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3318Slc + var yyhl3318 bool = l >= 0 + for yyj3318 := 0; ; yyj3318++ { + if yyhl3318 { + if yyj3318 >= l { break } } else { @@ -42192,10 +42240,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3313Slc = r.DecodeBytes(yys3313Slc, true, true) - yys3313 := string(yys3313Slc) + yys3318Slc = r.DecodeBytes(yys3318Slc, true, true) + yys3318 := string(yys3318Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3313 { + switch yys3318 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42241,17 +42289,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3321 := z.DecBinary() - _ = yym3321 + yym3326 := z.DecBinary() + _ = yym3326 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3313) - } // end switch yys3313 - } // end for yyj3313 + z.DecStructFieldNotFound(-1, yys3318) + } // end switch yys3318 + } // end for yyj3318 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42259,16 +42307,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3322 int - var yyb3322 bool - var yyhl3322 bool = l >= 0 - yyj3322++ - if yyhl3322 { - yyb3322 = yyj3322 > l + var yyj3327 int + var yyb3327 bool + var yyhl3327 bool = l >= 0 + yyj3327++ + if yyhl3327 { + yyb3327 = yyj3327 > l } else { - yyb3322 = r.CheckBreak() + yyb3327 = r.CheckBreak() } - if yyb3322 { + if yyb3327 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42278,13 +42326,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3322++ - if yyhl3322 { - yyb3322 = yyj3322 > l + yyj3327++ + if yyhl3327 { + yyb3327 = yyj3327 > l } else { - yyb3322 = r.CheckBreak() + yyb3327 = r.CheckBreak() } - if yyb3322 { + if yyb3327 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42294,13 +42342,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3322++ - if yyhl3322 { - yyb3322 = yyj3322 > l + yyj3327++ + if yyhl3327 { + yyb3327 = yyj3327 > l } else { - yyb3322 = r.CheckBreak() + yyb3327 = r.CheckBreak() } - if yyb3322 { + if yyb3327 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42310,13 +42358,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LabelSelector = string(r.DecodeString()) } - yyj3322++ - if yyhl3322 { - yyb3322 = yyj3322 > l + yyj3327++ + if yyhl3327 { + yyb3327 = yyj3327 > l } else { - yyb3322 = r.CheckBreak() + yyb3327 = r.CheckBreak() } - if yyb3322 { + if yyb3327 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42326,13 +42374,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FieldSelector = string(r.DecodeString()) } - yyj3322++ - if yyhl3322 { - yyb3322 = yyj3322 > l + yyj3327++ + if yyhl3327 { + yyb3327 = yyj3327 > l } else { - yyb3322 = r.CheckBreak() + yyb3327 = r.CheckBreak() } - if yyb3322 { + if yyb3327 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42342,13 +42390,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3322++ - if yyhl3322 { - yyb3322 = yyj3322 > l + yyj3327++ + if yyhl3327 { + yyb3327 = yyj3327 > l } else { - yyb3322 = r.CheckBreak() + yyb3327 = r.CheckBreak() } - if yyb3322 { + if yyb3327 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42358,13 +42406,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3322++ - if yyhl3322 { - yyb3322 = yyj3322 > l + yyj3327++ + if yyhl3327 { + yyb3327 = yyj3327 > l } else { - yyb3322 = r.CheckBreak() + yyb3327 = r.CheckBreak() } - if yyb3322 { + if yyb3327 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42377,25 +42425,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3330 := z.DecBinary() - _ = yym3330 + yym3335 := z.DecBinary() + _ = yym3335 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3322++ - if yyhl3322 { - yyb3322 = yyj3322 > l + yyj3327++ + if yyhl3327 { + yyb3327 = yyj3327 > l } else { - yyb3322 = r.CheckBreak() + yyb3327 = r.CheckBreak() } - if yyb3322 { + if yyb3327 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3322-1, "") + z.DecStructFieldNotFound(yyj3327-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42407,44 +42455,44 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3331 := z.EncBinary() - _ = yym3331 + yym3336 := z.EncBinary() + _ = yym3336 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3332 := !z.EncBinary() - yy2arr3332 := z.EncBasicHandle().StructToArray - var yyq3332 [10]bool - _, _, _ = yysep3332, yyq3332, yy2arr3332 - const yyr3332 bool = false - yyq3332[0] = x.Kind != "" - yyq3332[1] = x.APIVersion != "" - yyq3332[2] = x.Container != "" - yyq3332[3] = x.Follow != false - yyq3332[4] = x.Previous != false - yyq3332[5] = x.SinceSeconds != nil - yyq3332[6] = x.SinceTime != nil - yyq3332[7] = x.Timestamps != false - yyq3332[8] = x.TailLines != nil - yyq3332[9] = x.LimitBytes != nil - var yynn3332 int - if yyr3332 || yy2arr3332 { + yysep3337 := !z.EncBinary() + yy2arr3337 := z.EncBasicHandle().StructToArray + var yyq3337 [10]bool + _, _, _ = yysep3337, yyq3337, yy2arr3337 + const yyr3337 bool = false + yyq3337[0] = x.Kind != "" + yyq3337[1] = x.APIVersion != "" + yyq3337[2] = x.Container != "" + yyq3337[3] = x.Follow != false + yyq3337[4] = x.Previous != false + yyq3337[5] = x.SinceSeconds != nil + yyq3337[6] = x.SinceTime != nil + yyq3337[7] = x.Timestamps != false + yyq3337[8] = x.TailLines != nil + yyq3337[9] = x.LimitBytes != nil + var yynn3337 int + if yyr3337 || yy2arr3337 { r.EncodeArrayStart(10) } else { - yynn3332 = 0 - for _, b := range yyq3332 { + yynn3337 = 0 + for _, b := range yyq3337 { if b { - yynn3332++ + yynn3337++ } } - r.EncodeMapStart(yynn3332) - yynn3332 = 0 + r.EncodeMapStart(yynn3337) + yynn3337 = 0 } - if yyr3332 || yy2arr3332 { + if yyr3337 || yy2arr3337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3332[0] { - yym3334 := z.EncBinary() - _ = yym3334 + if yyq3337[0] { + yym3339 := z.EncBinary() + _ = yym3339 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42453,23 +42501,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3332[0] { + if yyq3337[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3335 := z.EncBinary() - _ = yym3335 + yym3340 := z.EncBinary() + _ = yym3340 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3332 || yy2arr3332 { + if yyr3337 || yy2arr3337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3332[1] { - yym3337 := z.EncBinary() - _ = yym3337 + if yyq3337[1] { + yym3342 := z.EncBinary() + _ = yym3342 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42478,23 +42526,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3332[1] { + if yyq3337[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3338 := z.EncBinary() - _ = yym3338 + yym3343 := z.EncBinary() + _ = yym3343 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3332 || yy2arr3332 { + if yyr3337 || yy2arr3337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3332[2] { - yym3340 := z.EncBinary() - _ = yym3340 + if yyq3337[2] { + yym3345 := z.EncBinary() + _ = yym3345 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -42503,23 +42551,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3332[2] { + if yyq3337[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3341 := z.EncBinary() - _ = yym3341 + yym3346 := z.EncBinary() + _ = yym3346 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3332 || yy2arr3332 { + if yyr3337 || yy2arr3337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3332[3] { - yym3343 := z.EncBinary() - _ = yym3343 + if yyq3337[3] { + yym3348 := z.EncBinary() + _ = yym3348 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -42528,23 +42576,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3332[3] { + if yyq3337[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3344 := z.EncBinary() - _ = yym3344 + yym3349 := z.EncBinary() + _ = yym3349 if false { } else { r.EncodeBool(bool(x.Follow)) } } } - if yyr3332 || yy2arr3332 { + if yyr3337 || yy2arr3337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3332[4] { - yym3346 := z.EncBinary() - _ = yym3346 + if yyq3337[4] { + yym3351 := z.EncBinary() + _ = yym3351 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -42553,66 +42601,66 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3332[4] { + if yyq3337[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3347 := z.EncBinary() - _ = yym3347 + yym3352 := z.EncBinary() + _ = yym3352 if false { } else { r.EncodeBool(bool(x.Previous)) } } } - if yyr3332 || yy2arr3332 { + if yyr3337 || yy2arr3337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3332[5] { + if yyq3337[5] { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3349 := *x.SinceSeconds - yym3350 := z.EncBinary() - _ = yym3350 + yy3354 := *x.SinceSeconds + yym3355 := z.EncBinary() + _ = yym3355 if false { } else { - r.EncodeInt(int64(yy3349)) + r.EncodeInt(int64(yy3354)) } } } else { r.EncodeNil() } } else { - if yyq3332[5] { + if yyq3337[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3351 := *x.SinceSeconds - yym3352 := z.EncBinary() - _ = yym3352 + yy3356 := *x.SinceSeconds + yym3357 := z.EncBinary() + _ = yym3357 if false { } else { - r.EncodeInt(int64(yy3351)) + r.EncodeInt(int64(yy3356)) } } } } - if yyr3332 || yy2arr3332 { + if yyr3337 || yy2arr3337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3332[6] { + if yyq3337[6] { if x.SinceTime == nil { r.EncodeNil() } else { - yym3354 := z.EncBinary() - _ = yym3354 + yym3359 := z.EncBinary() + _ = yym3359 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3354 { + } else if yym3359 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3354 && z.IsJSONHandle() { + } else if !yym3359 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -42622,20 +42670,20 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3332[6] { + if yyq3337[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3355 := z.EncBinary() - _ = yym3355 + yym3360 := z.EncBinary() + _ = yym3360 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3355 { + } else if yym3360 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3355 && z.IsJSONHandle() { + } else if !yym3360 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -42643,11 +42691,11 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3332 || yy2arr3332 { + if yyr3337 || yy2arr3337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3332[7] { - yym3357 := z.EncBinary() - _ = yym3357 + if yyq3337[7] { + yym3362 := z.EncBinary() + _ = yym3362 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -42656,89 +42704,89 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3332[7] { + if yyq3337[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3358 := z.EncBinary() - _ = yym3358 + yym3363 := z.EncBinary() + _ = yym3363 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } } - if yyr3332 || yy2arr3332 { + if yyr3337 || yy2arr3337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3332[8] { + if yyq3337[8] { if x.TailLines == nil { r.EncodeNil() } else { - yy3360 := *x.TailLines - yym3361 := z.EncBinary() - _ = yym3361 + yy3365 := *x.TailLines + yym3366 := z.EncBinary() + _ = yym3366 if false { } else { - r.EncodeInt(int64(yy3360)) + r.EncodeInt(int64(yy3365)) } } } else { r.EncodeNil() } } else { - if yyq3332[8] { + if yyq3337[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tailLines")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3362 := *x.TailLines - yym3363 := z.EncBinary() - _ = yym3363 + yy3367 := *x.TailLines + yym3368 := z.EncBinary() + _ = yym3368 if false { } else { - r.EncodeInt(int64(yy3362)) + r.EncodeInt(int64(yy3367)) } } } } - if yyr3332 || yy2arr3332 { + if yyr3337 || yy2arr3337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3332[9] { + if yyq3337[9] { if x.LimitBytes == nil { r.EncodeNil() } else { - yy3365 := *x.LimitBytes - yym3366 := z.EncBinary() - _ = yym3366 + yy3370 := *x.LimitBytes + yym3371 := z.EncBinary() + _ = yym3371 if false { } else { - r.EncodeInt(int64(yy3365)) + r.EncodeInt(int64(yy3370)) } } } else { r.EncodeNil() } } else { - if yyq3332[9] { + if yyq3337[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limitBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3367 := *x.LimitBytes - yym3368 := z.EncBinary() - _ = yym3368 + yy3372 := *x.LimitBytes + yym3373 := z.EncBinary() + _ = yym3373 if false { } else { - r.EncodeInt(int64(yy3367)) + r.EncodeInt(int64(yy3372)) } } } } - if yyr3332 || yy2arr3332 { + if yyr3337 || yy2arr3337 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42751,25 +42799,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3369 := z.DecBinary() - _ = yym3369 + yym3374 := z.DecBinary() + _ = yym3374 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3370 := r.ContainerType() - if yyct3370 == codecSelferValueTypeMap1234 { - yyl3370 := r.ReadMapStart() - if yyl3370 == 0 { + yyct3375 := r.ContainerType() + if yyct3375 == codecSelferValueTypeMap1234 { + yyl3375 := r.ReadMapStart() + if yyl3375 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3370, d) + x.codecDecodeSelfFromMap(yyl3375, d) } - } else if yyct3370 == codecSelferValueTypeArray1234 { - yyl3370 := r.ReadArrayStart() - if yyl3370 == 0 { + } else if yyct3375 == codecSelferValueTypeArray1234 { + yyl3375 := r.ReadArrayStart() + if yyl3375 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3370, d) + x.codecDecodeSelfFromArray(yyl3375, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42781,12 +42829,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3371Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3371Slc - var yyhl3371 bool = l >= 0 - for yyj3371 := 0; ; yyj3371++ { - if yyhl3371 { - if yyj3371 >= l { + var yys3376Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3376Slc + var yyhl3376 bool = l >= 0 + for yyj3376 := 0; ; yyj3376++ { + if yyhl3376 { + if yyj3376 >= l { break } } else { @@ -42795,10 +42843,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3371Slc = r.DecodeBytes(yys3371Slc, true, true) - yys3371 := string(yys3371Slc) + yys3376Slc = r.DecodeBytes(yys3376Slc, true, true) + yys3376 := string(yys3376Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3371 { + switch yys3376 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42838,8 +42886,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3378 := z.DecBinary() - _ = yym3378 + yym3383 := z.DecBinary() + _ = yym3383 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -42854,13 +42902,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3380 := z.DecBinary() - _ = yym3380 - if false { + yym3385 := z.DecBinary() + _ = yym3385 + if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3380 { + } else if yym3385 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3380 && z.IsJSONHandle() { + } else if !yym3385 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -42881,8 +42929,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3383 := z.DecBinary() - _ = yym3383 + yym3388 := z.DecBinary() + _ = yym3388 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -42897,17 +42945,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3385 := z.DecBinary() - _ = yym3385 + yym3390 := z.DecBinary() + _ = yym3390 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3371) - } // end switch yys3371 - } // end for yyj3371 + z.DecStructFieldNotFound(-1, yys3376) + } // end switch yys3376 + } // end for yyj3376 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42915,16 +42963,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3386 int - var yyb3386 bool - var yyhl3386 bool = l >= 0 - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + var yyj3391 int + var yyb3391 bool + var yyhl3391 bool = l >= 0 + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3386 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3386 { + if yyb3391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42934,13 +42982,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3386 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3386 { + if yyb3391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42950,13 +42998,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3386 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3386 { + if yyb3391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42966,13 +43014,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3386 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3386 { + if yyb3391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42982,13 +43030,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3386 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3386 { + if yyb3391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42998,13 +43046,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3386 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3386 { + if yyb3391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43017,20 +43065,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3393 := z.DecBinary() - _ = yym3393 + yym3398 := z.DecBinary() + _ = yym3398 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3386 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3386 { + if yyb3391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43043,25 +43091,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3395 := z.DecBinary() - _ = yym3395 + yym3400 := z.DecBinary() + _ = yym3400 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3395 { + } else if yym3400 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3395 && z.IsJSONHandle() { + } else if !yym3400 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3386 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3386 { + if yyb3391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43071,13 +43119,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3386 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3386 { + if yyb3391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43090,20 +43138,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3398 := z.DecBinary() - _ = yym3398 + yym3403 := z.DecBinary() + _ = yym3403 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3386 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3386 { + if yyb3391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43116,25 +43164,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3400 := z.DecBinary() - _ = yym3400 + yym3405 := z.DecBinary() + _ = yym3405 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + yyj3391++ + if yyhl3391 { + yyb3391 = yyj3391 > l } else { - yyb3386 = r.CheckBreak() + yyb3391 = r.CheckBreak() } - if yyb3386 { + if yyb3391 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3386-1, "") + z.DecStructFieldNotFound(yyj3391-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43146,41 +43194,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3401 := z.EncBinary() - _ = yym3401 + yym3406 := z.EncBinary() + _ = yym3406 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3402 := !z.EncBinary() - yy2arr3402 := z.EncBasicHandle().StructToArray - var yyq3402 [7]bool - _, _, _ = yysep3402, yyq3402, yy2arr3402 - const yyr3402 bool = false - yyq3402[0] = x.Kind != "" - yyq3402[1] = x.APIVersion != "" - yyq3402[2] = x.Stdin != false - yyq3402[3] = x.Stdout != false - yyq3402[4] = x.Stderr != false - yyq3402[5] = x.TTY != false - yyq3402[6] = x.Container != "" - var yynn3402 int - if yyr3402 || yy2arr3402 { + yysep3407 := !z.EncBinary() + yy2arr3407 := z.EncBasicHandle().StructToArray + var yyq3407 [7]bool + _, _, _ = yysep3407, yyq3407, yy2arr3407 + const yyr3407 bool = false + yyq3407[0] = x.Kind != "" + yyq3407[1] = x.APIVersion != "" + yyq3407[2] = x.Stdin != false + yyq3407[3] = x.Stdout != false + yyq3407[4] = x.Stderr != false + yyq3407[5] = x.TTY != false + yyq3407[6] = x.Container != "" + var yynn3407 int + if yyr3407 || yy2arr3407 { r.EncodeArrayStart(7) } else { - yynn3402 = 0 - for _, b := range yyq3402 { + yynn3407 = 0 + for _, b := range yyq3407 { if b { - yynn3402++ + yynn3407++ } } - r.EncodeMapStart(yynn3402) - yynn3402 = 0 + r.EncodeMapStart(yynn3407) + yynn3407 = 0 } - if yyr3402 || yy2arr3402 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3402[0] { - yym3404 := z.EncBinary() - _ = yym3404 + if yyq3407[0] { + yym3409 := z.EncBinary() + _ = yym3409 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43189,23 +43237,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3402[0] { + if yyq3407[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3405 := z.EncBinary() - _ = yym3405 + yym3410 := z.EncBinary() + _ = yym3410 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3402 || yy2arr3402 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3402[1] { - yym3407 := z.EncBinary() - _ = yym3407 + if yyq3407[1] { + yym3412 := z.EncBinary() + _ = yym3412 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43214,23 +43262,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3402[1] { + if yyq3407[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3408 := z.EncBinary() - _ = yym3408 + yym3413 := z.EncBinary() + _ = yym3413 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3402 || yy2arr3402 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3402[2] { - yym3410 := z.EncBinary() - _ = yym3410 + if yyq3407[2] { + yym3415 := z.EncBinary() + _ = yym3415 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -43239,23 +43287,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3402[2] { + if yyq3407[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3411 := z.EncBinary() - _ = yym3411 + yym3416 := z.EncBinary() + _ = yym3416 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3402 || yy2arr3402 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3402[3] { - yym3413 := z.EncBinary() - _ = yym3413 + if yyq3407[3] { + yym3418 := z.EncBinary() + _ = yym3418 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -43264,23 +43312,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3402[3] { + if yyq3407[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3414 := z.EncBinary() - _ = yym3414 + yym3419 := z.EncBinary() + _ = yym3419 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3402 || yy2arr3402 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3402[4] { - yym3416 := z.EncBinary() - _ = yym3416 + if yyq3407[4] { + yym3421 := z.EncBinary() + _ = yym3421 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -43289,23 +43337,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3402[4] { + if yyq3407[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3417 := z.EncBinary() - _ = yym3417 + yym3422 := z.EncBinary() + _ = yym3422 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3402 || yy2arr3402 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3402[5] { - yym3419 := z.EncBinary() - _ = yym3419 + if yyq3407[5] { + yym3424 := z.EncBinary() + _ = yym3424 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -43314,23 +43362,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3402[5] { + if yyq3407[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3420 := z.EncBinary() - _ = yym3420 + yym3425 := z.EncBinary() + _ = yym3425 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3402 || yy2arr3402 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3402[6] { - yym3422 := z.EncBinary() - _ = yym3422 + if yyq3407[6] { + yym3427 := z.EncBinary() + _ = yym3427 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -43339,19 +43387,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3402[6] { + if yyq3407[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3423 := z.EncBinary() - _ = yym3423 + yym3428 := z.EncBinary() + _ = yym3428 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3402 || yy2arr3402 { + if yyr3407 || yy2arr3407 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43364,25 +43412,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3424 := z.DecBinary() - _ = yym3424 + yym3429 := z.DecBinary() + _ = yym3429 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3425 := r.ContainerType() - if yyct3425 == codecSelferValueTypeMap1234 { - yyl3425 := r.ReadMapStart() - if yyl3425 == 0 { + yyct3430 := r.ContainerType() + if yyct3430 == codecSelferValueTypeMap1234 { + yyl3430 := r.ReadMapStart() + if yyl3430 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3425, d) + x.codecDecodeSelfFromMap(yyl3430, d) } - } else if yyct3425 == codecSelferValueTypeArray1234 { - yyl3425 := r.ReadArrayStart() - if yyl3425 == 0 { + } else if yyct3430 == codecSelferValueTypeArray1234 { + yyl3430 := r.ReadArrayStart() + if yyl3430 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3425, d) + x.codecDecodeSelfFromArray(yyl3430, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43394,12 +43442,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3426Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3426Slc - var yyhl3426 bool = l >= 0 - for yyj3426 := 0; ; yyj3426++ { - if yyhl3426 { - if yyj3426 >= l { + var yys3431Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3431Slc + var yyhl3431 bool = l >= 0 + for yyj3431 := 0; ; yyj3431++ { + if yyhl3431 { + if yyj3431 >= l { break } } else { @@ -43408,10 +43456,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3426Slc = r.DecodeBytes(yys3426Slc, true, true) - yys3426 := string(yys3426Slc) + yys3431Slc = r.DecodeBytes(yys3431Slc, true, true) + yys3431 := string(yys3431Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3426 { + switch yys3431 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43455,9 +43503,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3426) - } // end switch yys3426 - } // end for yyj3426 + z.DecStructFieldNotFound(-1, yys3431) + } // end switch yys3431 + } // end for yyj3431 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43465,16 +43513,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3434 int - var yyb3434 bool - var yyhl3434 bool = l >= 0 - yyj3434++ - if yyhl3434 { - yyb3434 = yyj3434 > l + var yyj3439 int + var yyb3439 bool + var yyhl3439 bool = l >= 0 + yyj3439++ + if yyhl3439 { + yyb3439 = yyj3439 > l } else { - yyb3434 = r.CheckBreak() + yyb3439 = r.CheckBreak() } - if yyb3434 { + if yyb3439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43484,13 +43532,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3434++ - if yyhl3434 { - yyb3434 = yyj3434 > l + yyj3439++ + if yyhl3439 { + yyb3439 = yyj3439 > l } else { - yyb3434 = r.CheckBreak() + yyb3439 = r.CheckBreak() } - if yyb3434 { + if yyb3439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43500,13 +43548,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3434++ - if yyhl3434 { - yyb3434 = yyj3434 > l + yyj3439++ + if yyhl3439 { + yyb3439 = yyj3439 > l } else { - yyb3434 = r.CheckBreak() + yyb3439 = r.CheckBreak() } - if yyb3434 { + if yyb3439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43516,13 +43564,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3434++ - if yyhl3434 { - yyb3434 = yyj3434 > l + yyj3439++ + if yyhl3439 { + yyb3439 = yyj3439 > l } else { - yyb3434 = r.CheckBreak() + yyb3439 = r.CheckBreak() } - if yyb3434 { + if yyb3439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43532,13 +43580,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3434++ - if yyhl3434 { - yyb3434 = yyj3434 > l + yyj3439++ + if yyhl3439 { + yyb3439 = yyj3439 > l } else { - yyb3434 = r.CheckBreak() + yyb3439 = r.CheckBreak() } - if yyb3434 { + if yyb3439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43548,13 +43596,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3434++ - if yyhl3434 { - yyb3434 = yyj3434 > l + yyj3439++ + if yyhl3439 { + yyb3439 = yyj3439 > l } else { - yyb3434 = r.CheckBreak() + yyb3439 = r.CheckBreak() } - if yyb3434 { + if yyb3439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43564,13 +43612,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3434++ - if yyhl3434 { - yyb3434 = yyj3434 > l + yyj3439++ + if yyhl3439 { + yyb3439 = yyj3439 > l } else { - yyb3434 = r.CheckBreak() + yyb3439 = r.CheckBreak() } - if yyb3434 { + if yyb3439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43581,17 +43629,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3434++ - if yyhl3434 { - yyb3434 = yyj3434 > l + yyj3439++ + if yyhl3439 { + yyb3439 = yyj3439 > l } else { - yyb3434 = r.CheckBreak() + yyb3439 = r.CheckBreak() } - if yyb3434 { + if yyb3439 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3434-1, "") + z.DecStructFieldNotFound(yyj3439-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43603,41 +43651,41 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3442 := z.EncBinary() - _ = yym3442 + yym3447 := z.EncBinary() + _ = yym3447 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3443 := !z.EncBinary() - yy2arr3443 := z.EncBasicHandle().StructToArray - var yyq3443 [8]bool - _, _, _ = yysep3443, yyq3443, yy2arr3443 - const yyr3443 bool = false - yyq3443[0] = x.Kind != "" - yyq3443[1] = x.APIVersion != "" - yyq3443[2] = x.Stdin != false - yyq3443[3] = x.Stdout != false - yyq3443[4] = x.Stderr != false - yyq3443[5] = x.TTY != false - yyq3443[6] = x.Container != "" - var yynn3443 int - if yyr3443 || yy2arr3443 { + yysep3448 := !z.EncBinary() + yy2arr3448 := z.EncBasicHandle().StructToArray + var yyq3448 [8]bool + _, _, _ = yysep3448, yyq3448, yy2arr3448 + const yyr3448 bool = false + yyq3448[0] = x.Kind != "" + yyq3448[1] = x.APIVersion != "" + yyq3448[2] = x.Stdin != false + yyq3448[3] = x.Stdout != false + yyq3448[4] = x.Stderr != false + yyq3448[5] = x.TTY != false + yyq3448[6] = x.Container != "" + var yynn3448 int + if yyr3448 || yy2arr3448 { r.EncodeArrayStart(8) } else { - yynn3443 = 1 - for _, b := range yyq3443 { + yynn3448 = 1 + for _, b := range yyq3448 { if b { - yynn3443++ + yynn3448++ } } - r.EncodeMapStart(yynn3443) - yynn3443 = 0 + r.EncodeMapStart(yynn3448) + yynn3448 = 0 } - if yyr3443 || yy2arr3443 { + if yyr3448 || yy2arr3448 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3443[0] { - yym3445 := z.EncBinary() - _ = yym3445 + if yyq3448[0] { + yym3450 := z.EncBinary() + _ = yym3450 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43646,23 +43694,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3443[0] { + if yyq3448[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3446 := z.EncBinary() - _ = yym3446 + yym3451 := z.EncBinary() + _ = yym3451 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3443 || yy2arr3443 { + if yyr3448 || yy2arr3448 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3443[1] { - yym3448 := z.EncBinary() - _ = yym3448 + if yyq3448[1] { + yym3453 := z.EncBinary() + _ = yym3453 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43671,23 +43719,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3443[1] { + if yyq3448[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3449 := z.EncBinary() - _ = yym3449 + yym3454 := z.EncBinary() + _ = yym3454 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3443 || yy2arr3443 { + if yyr3448 || yy2arr3448 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3443[2] { - yym3451 := z.EncBinary() - _ = yym3451 + if yyq3448[2] { + yym3456 := z.EncBinary() + _ = yym3456 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -43696,23 +43744,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3443[2] { + if yyq3448[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3452 := z.EncBinary() - _ = yym3452 + yym3457 := z.EncBinary() + _ = yym3457 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3443 || yy2arr3443 { + if yyr3448 || yy2arr3448 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3443[3] { - yym3454 := z.EncBinary() - _ = yym3454 + if yyq3448[3] { + yym3459 := z.EncBinary() + _ = yym3459 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -43721,23 +43769,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3443[3] { + if yyq3448[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3455 := z.EncBinary() - _ = yym3455 + yym3460 := z.EncBinary() + _ = yym3460 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3443 || yy2arr3443 { + if yyr3448 || yy2arr3448 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3443[4] { - yym3457 := z.EncBinary() - _ = yym3457 + if yyq3448[4] { + yym3462 := z.EncBinary() + _ = yym3462 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -43746,23 +43794,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3443[4] { + if yyq3448[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3458 := z.EncBinary() - _ = yym3458 + yym3463 := z.EncBinary() + _ = yym3463 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3443 || yy2arr3443 { + if yyr3448 || yy2arr3448 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3443[5] { - yym3460 := z.EncBinary() - _ = yym3460 + if yyq3448[5] { + yym3465 := z.EncBinary() + _ = yym3465 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -43771,23 +43819,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3443[5] { + if yyq3448[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3461 := z.EncBinary() - _ = yym3461 + yym3466 := z.EncBinary() + _ = yym3466 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3443 || yy2arr3443 { + if yyr3448 || yy2arr3448 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3443[6] { - yym3463 := z.EncBinary() - _ = yym3463 + if yyq3448[6] { + yym3468 := z.EncBinary() + _ = yym3468 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -43796,25 +43844,25 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3443[6] { + if yyq3448[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3464 := z.EncBinary() - _ = yym3464 + yym3469 := z.EncBinary() + _ = yym3469 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3443 || yy2arr3443 { + if yyr3448 || yy2arr3448 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3466 := z.EncBinary() - _ = yym3466 + yym3471 := z.EncBinary() + _ = yym3471 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -43827,15 +43875,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3467 := z.EncBinary() - _ = yym3467 + yym3472 := z.EncBinary() + _ = yym3472 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3443 || yy2arr3443 { + if yyr3448 || yy2arr3448 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43848,25 +43896,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3468 := z.DecBinary() - _ = yym3468 + yym3473 := z.DecBinary() + _ = yym3473 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3469 := r.ContainerType() - if yyct3469 == codecSelferValueTypeMap1234 { - yyl3469 := r.ReadMapStart() - if yyl3469 == 0 { + yyct3474 := r.ContainerType() + if yyct3474 == codecSelferValueTypeMap1234 { + yyl3474 := r.ReadMapStart() + if yyl3474 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3469, d) + x.codecDecodeSelfFromMap(yyl3474, d) } - } else if yyct3469 == codecSelferValueTypeArray1234 { - yyl3469 := r.ReadArrayStart() - if yyl3469 == 0 { + } else if yyct3474 == codecSelferValueTypeArray1234 { + yyl3474 := r.ReadArrayStart() + if yyl3474 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3469, d) + x.codecDecodeSelfFromArray(yyl3474, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43878,12 +43926,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3470Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3470Slc - var yyhl3470 bool = l >= 0 - for yyj3470 := 0; ; yyj3470++ { - if yyhl3470 { - if yyj3470 >= l { + var yys3475Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3475Slc + var yyhl3475 bool = l >= 0 + for yyj3475 := 0; ; yyj3475++ { + if yyhl3475 { + if yyj3475 >= l { break } } else { @@ -43892,10 +43940,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3470Slc = r.DecodeBytes(yys3470Slc, true, true) - yys3470 := string(yys3470Slc) + yys3475Slc = r.DecodeBytes(yys3475Slc, true, true) + yys3475 := string(yys3475Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3470 { + switch yys3475 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43942,18 +43990,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3478 := &x.Command - yym3479 := z.DecBinary() - _ = yym3479 + yyv3483 := &x.Command + yym3484 := z.DecBinary() + _ = yym3484 if false { } else { - z.F.DecSliceStringX(yyv3478, false, d) + z.F.DecSliceStringX(yyv3483, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3470) - } // end switch yys3470 - } // end for yyj3470 + z.DecStructFieldNotFound(-1, yys3475) + } // end switch yys3475 + } // end for yyj3475 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43961,16 +44009,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3480 int - var yyb3480 bool - var yyhl3480 bool = l >= 0 - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + var yyj3485 int + var yyb3485 bool + var yyhl3485 bool = l >= 0 + yyj3485++ + if yyhl3485 { + yyb3485 = yyj3485 > l } else { - yyb3480 = r.CheckBreak() + yyb3485 = r.CheckBreak() } - if yyb3480 { + if yyb3485 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43980,13 +44028,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3485++ + if yyhl3485 { + yyb3485 = yyj3485 > l } else { - yyb3480 = r.CheckBreak() + yyb3485 = r.CheckBreak() } - if yyb3480 { + if yyb3485 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43996,13 +44044,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3485++ + if yyhl3485 { + yyb3485 = yyj3485 > l } else { - yyb3480 = r.CheckBreak() + yyb3485 = r.CheckBreak() } - if yyb3480 { + if yyb3485 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44012,13 +44060,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3485++ + if yyhl3485 { + yyb3485 = yyj3485 > l } else { - yyb3480 = r.CheckBreak() + yyb3485 = r.CheckBreak() } - if yyb3480 { + if yyb3485 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44028,13 +44076,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3485++ + if yyhl3485 { + yyb3485 = yyj3485 > l } else { - yyb3480 = r.CheckBreak() + yyb3485 = r.CheckBreak() } - if yyb3480 { + if yyb3485 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44044,13 +44092,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3485++ + if yyhl3485 { + yyb3485 = yyj3485 > l } else { - yyb3480 = r.CheckBreak() + yyb3485 = r.CheckBreak() } - if yyb3480 { + if yyb3485 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44060,13 +44108,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3485++ + if yyhl3485 { + yyb3485 = yyj3485 > l } else { - yyb3480 = r.CheckBreak() + yyb3485 = r.CheckBreak() } - if yyb3480 { + if yyb3485 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44076,13 +44124,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3485++ + if yyhl3485 { + yyb3485 = yyj3485 > l } else { - yyb3480 = r.CheckBreak() + yyb3485 = r.CheckBreak() } - if yyb3480 { + if yyb3485 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44090,26 +44138,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3488 := &x.Command - yym3489 := z.DecBinary() - _ = yym3489 + yyv3493 := &x.Command + yym3494 := z.DecBinary() + _ = yym3494 if false { } else { - z.F.DecSliceStringX(yyv3488, false, d) + z.F.DecSliceStringX(yyv3493, false, d) } } for { - yyj3480++ - if yyhl3480 { - yyb3480 = yyj3480 > l + yyj3485++ + if yyhl3485 { + yyb3485 = yyj3485 > l } else { - yyb3480 = r.CheckBreak() + yyb3485 = r.CheckBreak() } - if yyb3480 { + if yyb3485 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3480-1, "") + z.DecStructFieldNotFound(yyj3485-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44121,37 +44169,37 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3490 := z.EncBinary() - _ = yym3490 + yym3495 := z.EncBinary() + _ = yym3495 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3491 := !z.EncBinary() - yy2arr3491 := z.EncBasicHandle().StructToArray - var yyq3491 [3]bool - _, _, _ = yysep3491, yyq3491, yy2arr3491 - const yyr3491 bool = false - yyq3491[0] = x.Kind != "" - yyq3491[1] = x.APIVersion != "" - yyq3491[2] = x.Path != "" - var yynn3491 int - if yyr3491 || yy2arr3491 { + yysep3496 := !z.EncBinary() + yy2arr3496 := z.EncBasicHandle().StructToArray + var yyq3496 [3]bool + _, _, _ = yysep3496, yyq3496, yy2arr3496 + const yyr3496 bool = false + yyq3496[0] = x.Kind != "" + yyq3496[1] = x.APIVersion != "" + yyq3496[2] = x.Path != "" + var yynn3496 int + if yyr3496 || yy2arr3496 { r.EncodeArrayStart(3) } else { - yynn3491 = 0 - for _, b := range yyq3491 { + yynn3496 = 0 + for _, b := range yyq3496 { if b { - yynn3491++ + yynn3496++ } } - r.EncodeMapStart(yynn3491) - yynn3491 = 0 + r.EncodeMapStart(yynn3496) + yynn3496 = 0 } - if yyr3491 || yy2arr3491 { + if yyr3496 || yy2arr3496 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3491[0] { - yym3493 := z.EncBinary() - _ = yym3493 + if yyq3496[0] { + yym3498 := z.EncBinary() + _ = yym3498 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44160,23 +44208,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3491[0] { + if yyq3496[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3494 := z.EncBinary() - _ = yym3494 + yym3499 := z.EncBinary() + _ = yym3499 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3491 || yy2arr3491 { + if yyr3496 || yy2arr3496 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3491[1] { - yym3496 := z.EncBinary() - _ = yym3496 + if yyq3496[1] { + yym3501 := z.EncBinary() + _ = yym3501 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44185,23 +44233,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3491[1] { + if yyq3496[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3497 := z.EncBinary() - _ = yym3497 + yym3502 := z.EncBinary() + _ = yym3502 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3491 || yy2arr3491 { + if yyr3496 || yy2arr3496 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3491[2] { - yym3499 := z.EncBinary() - _ = yym3499 + if yyq3496[2] { + yym3504 := z.EncBinary() + _ = yym3504 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -44210,19 +44258,19 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3491[2] { + if yyq3496[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3500 := z.EncBinary() - _ = yym3500 + yym3505 := z.EncBinary() + _ = yym3505 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3491 || yy2arr3491 { + if yyr3496 || yy2arr3496 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44235,25 +44283,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3501 := z.DecBinary() - _ = yym3501 + yym3506 := z.DecBinary() + _ = yym3506 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3502 := r.ContainerType() - if yyct3502 == codecSelferValueTypeMap1234 { - yyl3502 := r.ReadMapStart() - if yyl3502 == 0 { + yyct3507 := r.ContainerType() + if yyct3507 == codecSelferValueTypeMap1234 { + yyl3507 := r.ReadMapStart() + if yyl3507 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3502, d) + x.codecDecodeSelfFromMap(yyl3507, d) } - } else if yyct3502 == codecSelferValueTypeArray1234 { - yyl3502 := r.ReadArrayStart() - if yyl3502 == 0 { + } else if yyct3507 == codecSelferValueTypeArray1234 { + yyl3507 := r.ReadArrayStart() + if yyl3507 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3502, d) + x.codecDecodeSelfFromArray(yyl3507, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44265,12 +44313,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3503Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3503Slc - var yyhl3503 bool = l >= 0 - for yyj3503 := 0; ; yyj3503++ { - if yyhl3503 { - if yyj3503 >= l { + var yys3508Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3508Slc + var yyhl3508 bool = l >= 0 + for yyj3508 := 0; ; yyj3508++ { + if yyhl3508 { + if yyj3508 >= l { break } } else { @@ -44279,10 +44327,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3503Slc = r.DecodeBytes(yys3503Slc, true, true) - yys3503 := string(yys3503Slc) + yys3508Slc = r.DecodeBytes(yys3508Slc, true, true) + yys3508 := string(yys3508Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3503 { + switch yys3508 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44302,9 +44350,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3503) - } // end switch yys3503 - } // end for yyj3503 + z.DecStructFieldNotFound(-1, yys3508) + } // end switch yys3508 + } // end for yyj3508 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44312,16 +44360,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3507 int - var yyb3507 bool - var yyhl3507 bool = l >= 0 - yyj3507++ - if yyhl3507 { - yyb3507 = yyj3507 > l + var yyj3512 int + var yyb3512 bool + var yyhl3512 bool = l >= 0 + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3507 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3507 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44331,13 +44379,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3507++ - if yyhl3507 { - yyb3507 = yyj3507 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3507 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3507 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44347,13 +44395,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3507++ - if yyhl3507 { - yyb3507 = yyj3507 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3507 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3507 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44364,17 +44412,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3507++ - if yyhl3507 { - yyb3507 = yyj3507 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3507 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3507 { + if yyb3512 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3507-1, "") + z.DecStructFieldNotFound(yyj3512-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44386,37 +44434,37 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3511 := z.EncBinary() - _ = yym3511 + yym3516 := z.EncBinary() + _ = yym3516 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3512 := !z.EncBinary() - yy2arr3512 := z.EncBasicHandle().StructToArray - var yyq3512 [3]bool - _, _, _ = yysep3512, yyq3512, yy2arr3512 - const yyr3512 bool = false - yyq3512[0] = x.Kind != "" - yyq3512[1] = x.APIVersion != "" - yyq3512[2] = x.Path != "" - var yynn3512 int - if yyr3512 || yy2arr3512 { + yysep3517 := !z.EncBinary() + yy2arr3517 := z.EncBasicHandle().StructToArray + var yyq3517 [3]bool + _, _, _ = yysep3517, yyq3517, yy2arr3517 + const yyr3517 bool = false + yyq3517[0] = x.Kind != "" + yyq3517[1] = x.APIVersion != "" + yyq3517[2] = x.Path != "" + var yynn3517 int + if yyr3517 || yy2arr3517 { r.EncodeArrayStart(3) } else { - yynn3512 = 0 - for _, b := range yyq3512 { + yynn3517 = 0 + for _, b := range yyq3517 { if b { - yynn3512++ + yynn3517++ } } - r.EncodeMapStart(yynn3512) - yynn3512 = 0 + r.EncodeMapStart(yynn3517) + yynn3517 = 0 } - if yyr3512 || yy2arr3512 { + if yyr3517 || yy2arr3517 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3512[0] { - yym3514 := z.EncBinary() - _ = yym3514 + if yyq3517[0] { + yym3519 := z.EncBinary() + _ = yym3519 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44425,23 +44473,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3512[0] { + if yyq3517[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3515 := z.EncBinary() - _ = yym3515 + yym3520 := z.EncBinary() + _ = yym3520 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3512 || yy2arr3512 { + if yyr3517 || yy2arr3517 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3512[1] { - yym3517 := z.EncBinary() - _ = yym3517 + if yyq3517[1] { + yym3522 := z.EncBinary() + _ = yym3522 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44450,23 +44498,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3512[1] { + if yyq3517[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3518 := z.EncBinary() - _ = yym3518 + yym3523 := z.EncBinary() + _ = yym3523 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3512 || yy2arr3512 { + if yyr3517 || yy2arr3517 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3512[2] { - yym3520 := z.EncBinary() - _ = yym3520 + if yyq3517[2] { + yym3525 := z.EncBinary() + _ = yym3525 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -44475,19 +44523,19 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3512[2] { + if yyq3517[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3521 := z.EncBinary() - _ = yym3521 + yym3526 := z.EncBinary() + _ = yym3526 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3512 || yy2arr3512 { + if yyr3517 || yy2arr3517 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44500,25 +44548,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3522 := z.DecBinary() - _ = yym3522 + yym3527 := z.DecBinary() + _ = yym3527 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3523 := r.ContainerType() - if yyct3523 == codecSelferValueTypeMap1234 { - yyl3523 := r.ReadMapStart() - if yyl3523 == 0 { + yyct3528 := r.ContainerType() + if yyct3528 == codecSelferValueTypeMap1234 { + yyl3528 := r.ReadMapStart() + if yyl3528 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3523, d) + x.codecDecodeSelfFromMap(yyl3528, d) } - } else if yyct3523 == codecSelferValueTypeArray1234 { - yyl3523 := r.ReadArrayStart() - if yyl3523 == 0 { + } else if yyct3528 == codecSelferValueTypeArray1234 { + yyl3528 := r.ReadArrayStart() + if yyl3528 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3523, d) + x.codecDecodeSelfFromArray(yyl3528, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44530,12 +44578,12 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3524Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3524Slc - var yyhl3524 bool = l >= 0 - for yyj3524 := 0; ; yyj3524++ { - if yyhl3524 { - if yyj3524 >= l { + var yys3529Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3529Slc + var yyhl3529 bool = l >= 0 + for yyj3529 := 0; ; yyj3529++ { + if yyhl3529 { + if yyj3529 >= l { break } } else { @@ -44544,10 +44592,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3524Slc = r.DecodeBytes(yys3524Slc, true, true) - yys3524 := string(yys3524Slc) + yys3529Slc = r.DecodeBytes(yys3529Slc, true, true) + yys3529 := string(yys3529Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3524 { + switch yys3529 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44567,9 +44615,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3524) - } // end switch yys3524 - } // end for yyj3524 + z.DecStructFieldNotFound(-1, yys3529) + } // end switch yys3529 + } // end for yyj3529 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44577,16 +44625,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3528 int - var yyb3528 bool - var yyhl3528 bool = l >= 0 - yyj3528++ - if yyhl3528 { - yyb3528 = yyj3528 > l + var yyj3533 int + var yyb3533 bool + var yyhl3533 bool = l >= 0 + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3528 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3528 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44596,13 +44644,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3528++ - if yyhl3528 { - yyb3528 = yyj3528 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3528 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3528 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44612,13 +44660,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3528++ - if yyhl3528 { - yyb3528 = yyj3528 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3528 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3528 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44629,17 +44677,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3528++ - if yyhl3528 { - yyb3528 = yyj3528 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3528 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3528 { + if yyb3533 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3528-1, "") + z.DecStructFieldNotFound(yyj3533-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44651,37 +44699,37 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3532 := z.EncBinary() - _ = yym3532 + yym3537 := z.EncBinary() + _ = yym3537 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3533 := !z.EncBinary() - yy2arr3533 := z.EncBasicHandle().StructToArray - var yyq3533 [3]bool - _, _, _ = yysep3533, yyq3533, yy2arr3533 - const yyr3533 bool = false - yyq3533[0] = x.Kind != "" - yyq3533[1] = x.APIVersion != "" - yyq3533[2] = x.Path != "" - var yynn3533 int - if yyr3533 || yy2arr3533 { + yysep3538 := !z.EncBinary() + yy2arr3538 := z.EncBasicHandle().StructToArray + var yyq3538 [3]bool + _, _, _ = yysep3538, yyq3538, yy2arr3538 + const yyr3538 bool = false + yyq3538[0] = x.Kind != "" + yyq3538[1] = x.APIVersion != "" + yyq3538[2] = x.Path != "" + var yynn3538 int + if yyr3538 || yy2arr3538 { r.EncodeArrayStart(3) } else { - yynn3533 = 0 - for _, b := range yyq3533 { + yynn3538 = 0 + for _, b := range yyq3538 { if b { - yynn3533++ + yynn3538++ } } - r.EncodeMapStart(yynn3533) - yynn3533 = 0 + r.EncodeMapStart(yynn3538) + yynn3538 = 0 } - if yyr3533 || yy2arr3533 { + if yyr3538 || yy2arr3538 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3533[0] { - yym3535 := z.EncBinary() - _ = yym3535 + if yyq3538[0] { + yym3540 := z.EncBinary() + _ = yym3540 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44690,23 +44738,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3533[0] { + if yyq3538[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3536 := z.EncBinary() - _ = yym3536 + yym3541 := z.EncBinary() + _ = yym3541 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3533 || yy2arr3533 { + if yyr3538 || yy2arr3538 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3533[1] { - yym3538 := z.EncBinary() - _ = yym3538 + if yyq3538[1] { + yym3543 := z.EncBinary() + _ = yym3543 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44715,23 +44763,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3533[1] { + if yyq3538[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3539 := z.EncBinary() - _ = yym3539 + yym3544 := z.EncBinary() + _ = yym3544 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3533 || yy2arr3533 { + if yyr3538 || yy2arr3538 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3533[2] { - yym3541 := z.EncBinary() - _ = yym3541 + if yyq3538[2] { + yym3546 := z.EncBinary() + _ = yym3546 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -44740,19 +44788,19 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3533[2] { + if yyq3538[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3542 := z.EncBinary() - _ = yym3542 + yym3547 := z.EncBinary() + _ = yym3547 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3533 || yy2arr3533 { + if yyr3538 || yy2arr3538 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44765,25 +44813,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3543 := z.DecBinary() - _ = yym3543 + yym3548 := z.DecBinary() + _ = yym3548 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3544 := r.ContainerType() - if yyct3544 == codecSelferValueTypeMap1234 { - yyl3544 := r.ReadMapStart() - if yyl3544 == 0 { + yyct3549 := r.ContainerType() + if yyct3549 == codecSelferValueTypeMap1234 { + yyl3549 := r.ReadMapStart() + if yyl3549 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3544, d) + x.codecDecodeSelfFromMap(yyl3549, d) } - } else if yyct3544 == codecSelferValueTypeArray1234 { - yyl3544 := r.ReadArrayStart() - if yyl3544 == 0 { + } else if yyct3549 == codecSelferValueTypeArray1234 { + yyl3549 := r.ReadArrayStart() + if yyl3549 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3544, d) + x.codecDecodeSelfFromArray(yyl3549, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44795,12 +44843,12 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3545Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3545Slc - var yyhl3545 bool = l >= 0 - for yyj3545 := 0; ; yyj3545++ { - if yyhl3545 { - if yyj3545 >= l { + var yys3550Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3550Slc + var yyhl3550 bool = l >= 0 + for yyj3550 := 0; ; yyj3550++ { + if yyhl3550 { + if yyj3550 >= l { break } } else { @@ -44809,10 +44857,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3545Slc = r.DecodeBytes(yys3545Slc, true, true) - yys3545 := string(yys3545Slc) + yys3550Slc = r.DecodeBytes(yys3550Slc, true, true) + yys3550 := string(yys3550Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3545 { + switch yys3550 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44832,9 +44880,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3545) - } // end switch yys3545 - } // end for yyj3545 + z.DecStructFieldNotFound(-1, yys3550) + } // end switch yys3550 + } // end for yyj3550 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44842,16 +44890,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3549 int - var yyb3549 bool - var yyhl3549 bool = l >= 0 - yyj3549++ - if yyhl3549 { - yyb3549 = yyj3549 > l + var yyj3554 int + var yyb3554 bool + var yyhl3554 bool = l >= 0 + yyj3554++ + if yyhl3554 { + yyb3554 = yyj3554 > l } else { - yyb3549 = r.CheckBreak() + yyb3554 = r.CheckBreak() } - if yyb3549 { + if yyb3554 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44861,13 +44909,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3549++ - if yyhl3549 { - yyb3549 = yyj3549 > l + yyj3554++ + if yyhl3554 { + yyb3554 = yyj3554 > l } else { - yyb3549 = r.CheckBreak() + yyb3554 = r.CheckBreak() } - if yyb3549 { + if yyb3554 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44877,13 +44925,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3549++ - if yyhl3549 { - yyb3549 = yyj3549 > l + yyj3554++ + if yyhl3554 { + yyb3554 = yyj3554 > l } else { - yyb3549 = r.CheckBreak() + yyb3554 = r.CheckBreak() } - if yyb3549 { + if yyb3554 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44894,17 +44942,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3549++ - if yyhl3549 { - yyb3549 = yyj3549 > l + yyj3554++ + if yyhl3554 { + yyb3554 = yyj3554 > l } else { - yyb3549 = r.CheckBreak() + yyb3554 = r.CheckBreak() } - if yyb3549 { + if yyb3554 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3549-1, "") + z.DecStructFieldNotFound(yyj3554-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44916,34 +44964,34 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3553 := z.EncBinary() - _ = yym3553 + yym3558 := z.EncBinary() + _ = yym3558 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3554 := !z.EncBinary() - yy2arr3554 := z.EncBasicHandle().StructToArray - var yyq3554 [5]bool - _, _, _ = yysep3554, yyq3554, yy2arr3554 - const yyr3554 bool = false - yyq3554[4] = x.Controller != nil - var yynn3554 int - if yyr3554 || yy2arr3554 { + yysep3559 := !z.EncBinary() + yy2arr3559 := z.EncBasicHandle().StructToArray + var yyq3559 [5]bool + _, _, _ = yysep3559, yyq3559, yy2arr3559 + const yyr3559 bool = false + yyq3559[4] = x.Controller != nil + var yynn3559 int + if yyr3559 || yy2arr3559 { r.EncodeArrayStart(5) } else { - yynn3554 = 4 - for _, b := range yyq3554 { + yynn3559 = 4 + for _, b := range yyq3559 { if b { - yynn3554++ + yynn3559++ } } - r.EncodeMapStart(yynn3554) - yynn3554 = 0 + r.EncodeMapStart(yynn3559) + yynn3559 = 0 } - if yyr3554 || yy2arr3554 { + if yyr3559 || yy2arr3559 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3556 := z.EncBinary() - _ = yym3556 + yym3561 := z.EncBinary() + _ = yym3561 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44952,17 +45000,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3557 := z.EncBinary() - _ = yym3557 + yym3562 := z.EncBinary() + _ = yym3562 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr3554 || yy2arr3554 { + if yyr3559 || yy2arr3559 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3559 := z.EncBinary() - _ = yym3559 + yym3564 := z.EncBinary() + _ = yym3564 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44971,17 +45019,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3560 := z.EncBinary() - _ = yym3560 + yym3565 := z.EncBinary() + _ = yym3565 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } - if yyr3554 || yy2arr3554 { + if yyr3559 || yy2arr3559 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3562 := z.EncBinary() - _ = yym3562 + yym3567 := z.EncBinary() + _ = yym3567 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -44990,17 +45038,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3563 := z.EncBinary() - _ = yym3563 + yym3568 := z.EncBinary() + _ = yym3568 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3554 || yy2arr3554 { + if yyr3559 || yy2arr3559 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3565 := z.EncBinary() - _ = yym3565 + yym3570 := z.EncBinary() + _ = yym3570 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45010,50 +45058,50 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3566 := z.EncBinary() - _ = yym3566 + yym3571 := z.EncBinary() + _ = yym3571 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.UID)) } } - if yyr3554 || yy2arr3554 { + if yyr3559 || yy2arr3559 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3554[4] { + if yyq3559[4] { if x.Controller == nil { r.EncodeNil() } else { - yy3568 := *x.Controller - yym3569 := z.EncBinary() - _ = yym3569 + yy3573 := *x.Controller + yym3574 := z.EncBinary() + _ = yym3574 if false { } else { - r.EncodeBool(bool(yy3568)) + r.EncodeBool(bool(yy3573)) } } } else { r.EncodeNil() } } else { - if yyq3554[4] { + if yyq3559[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controller")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Controller == nil { r.EncodeNil() } else { - yy3570 := *x.Controller - yym3571 := z.EncBinary() - _ = yym3571 + yy3575 := *x.Controller + yym3576 := z.EncBinary() + _ = yym3576 if false { } else { - r.EncodeBool(bool(yy3570)) + r.EncodeBool(bool(yy3575)) } } } } - if yyr3554 || yy2arr3554 { + if yyr3559 || yy2arr3559 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45066,25 +45114,25 @@ func (x *OwnerReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3572 := z.DecBinary() - _ = yym3572 + yym3577 := z.DecBinary() + _ = yym3577 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3573 := r.ContainerType() - if yyct3573 == codecSelferValueTypeMap1234 { - yyl3573 := r.ReadMapStart() - if yyl3573 == 0 { + yyct3578 := r.ContainerType() + if yyct3578 == codecSelferValueTypeMap1234 { + yyl3578 := r.ReadMapStart() + if yyl3578 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3573, d) + x.codecDecodeSelfFromMap(yyl3578, d) } - } else if yyct3573 == codecSelferValueTypeArray1234 { - yyl3573 := r.ReadArrayStart() - if yyl3573 == 0 { + } else if yyct3578 == codecSelferValueTypeArray1234 { + yyl3578 := r.ReadArrayStart() + if yyl3578 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3573, d) + x.codecDecodeSelfFromArray(yyl3578, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45096,12 +45144,12 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3574Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3574Slc - var yyhl3574 bool = l >= 0 - for yyj3574 := 0; ; yyj3574++ { - if yyhl3574 { - if yyj3574 >= l { + var yys3579Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3579Slc + var yyhl3579 bool = l >= 0 + for yyj3579 := 0; ; yyj3579++ { + if yyhl3579 { + if yyj3579 >= l { break } } else { @@ -45110,10 +45158,10 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3574Slc = r.DecodeBytes(yys3574Slc, true, true) - yys3574 := string(yys3574Slc) + yys3579Slc = r.DecodeBytes(yys3579Slc, true, true) + yys3579 := string(yys3579Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3574 { + switch yys3579 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -45147,17 +45195,17 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3580 := z.DecBinary() - _ = yym3580 + yym3585 := z.DecBinary() + _ = yym3585 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3574) - } // end switch yys3574 - } // end for yyj3574 + z.DecStructFieldNotFound(-1, yys3579) + } // end switch yys3579 + } // end for yyj3579 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45165,16 +45213,16 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3581 int - var yyb3581 bool - var yyhl3581 bool = l >= 0 - yyj3581++ - if yyhl3581 { - yyb3581 = yyj3581 > l + var yyj3586 int + var yyb3586 bool + var yyhl3586 bool = l >= 0 + yyj3586++ + if yyhl3586 { + yyb3586 = yyj3586 > l } else { - yyb3581 = r.CheckBreak() + yyb3586 = r.CheckBreak() } - if yyb3581 { + if yyb3586 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45184,13 +45232,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3581++ - if yyhl3581 { - yyb3581 = yyj3581 > l + yyj3586++ + if yyhl3586 { + yyb3586 = yyj3586 > l } else { - yyb3581 = r.CheckBreak() + yyb3586 = r.CheckBreak() } - if yyb3581 { + if yyb3586 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45200,13 +45248,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3581++ - if yyhl3581 { - yyb3581 = yyj3581 > l + yyj3586++ + if yyhl3586 { + yyb3586 = yyj3586 > l } else { - yyb3581 = r.CheckBreak() + yyb3586 = r.CheckBreak() } - if yyb3581 { + if yyb3586 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45216,13 +45264,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj3581++ - if yyhl3581 { - yyb3581 = yyj3581 > l + yyj3586++ + if yyhl3586 { + yyb3586 = yyj3586 > l } else { - yyb3581 = r.CheckBreak() + yyb3586 = r.CheckBreak() } - if yyb3581 { + if yyb3586 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45232,13 +45280,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3581++ - if yyhl3581 { - yyb3581 = yyj3581 > l + yyj3586++ + if yyhl3586 { + yyb3586 = yyj3586 > l } else { - yyb3581 = r.CheckBreak() + yyb3586 = r.CheckBreak() } - if yyb3581 { + if yyb3586 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45251,25 +45299,25 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3587 := z.DecBinary() - _ = yym3587 + yym3592 := z.DecBinary() + _ = yym3592 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } for { - yyj3581++ - if yyhl3581 { - yyb3581 = yyj3581 > l + yyj3586++ + if yyhl3586 { + yyb3586 = yyj3586 > l } else { - yyb3581 = r.CheckBreak() + yyb3586 = r.CheckBreak() } - if yyb3581 { + if yyb3586 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3581-1, "") + z.DecStructFieldNotFound(yyj3586-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45281,41 +45329,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3588 := z.EncBinary() - _ = yym3588 + yym3593 := z.EncBinary() + _ = yym3593 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3589 := !z.EncBinary() - yy2arr3589 := z.EncBasicHandle().StructToArray - var yyq3589 [7]bool - _, _, _ = yysep3589, yyq3589, yy2arr3589 - const yyr3589 bool = false - yyq3589[0] = x.Kind != "" - yyq3589[1] = x.Namespace != "" - yyq3589[2] = x.Name != "" - yyq3589[3] = x.UID != "" - yyq3589[4] = x.APIVersion != "" - yyq3589[5] = x.ResourceVersion != "" - yyq3589[6] = x.FieldPath != "" - var yynn3589 int - if yyr3589 || yy2arr3589 { + yysep3594 := !z.EncBinary() + yy2arr3594 := z.EncBasicHandle().StructToArray + var yyq3594 [7]bool + _, _, _ = yysep3594, yyq3594, yy2arr3594 + const yyr3594 bool = false + yyq3594[0] = x.Kind != "" + yyq3594[1] = x.Namespace != "" + yyq3594[2] = x.Name != "" + yyq3594[3] = x.UID != "" + yyq3594[4] = x.APIVersion != "" + yyq3594[5] = x.ResourceVersion != "" + yyq3594[6] = x.FieldPath != "" + var yynn3594 int + if yyr3594 || yy2arr3594 { r.EncodeArrayStart(7) } else { - yynn3589 = 0 - for _, b := range yyq3589 { + yynn3594 = 0 + for _, b := range yyq3594 { if b { - yynn3589++ + yynn3594++ } } - r.EncodeMapStart(yynn3589) - yynn3589 = 0 + r.EncodeMapStart(yynn3594) + yynn3594 = 0 } - if yyr3589 || yy2arr3589 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3589[0] { - yym3591 := z.EncBinary() - _ = yym3591 + if yyq3594[0] { + yym3596 := z.EncBinary() + _ = yym3596 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45324,23 +45372,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3589[0] { + if yyq3594[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3592 := z.EncBinary() - _ = yym3592 + yym3597 := z.EncBinary() + _ = yym3597 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3589 || yy2arr3589 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3589[1] { - yym3594 := z.EncBinary() - _ = yym3594 + if yyq3594[1] { + yym3599 := z.EncBinary() + _ = yym3599 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -45349,23 +45397,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3589[1] { + if yyq3594[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3595 := z.EncBinary() - _ = yym3595 + yym3600 := z.EncBinary() + _ = yym3600 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3589 || yy2arr3589 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3589[2] { - yym3597 := z.EncBinary() - _ = yym3597 + if yyq3594[2] { + yym3602 := z.EncBinary() + _ = yym3602 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -45374,23 +45422,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3589[2] { + if yyq3594[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3598 := z.EncBinary() - _ = yym3598 + yym3603 := z.EncBinary() + _ = yym3603 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3589 || yy2arr3589 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3589[3] { - yym3600 := z.EncBinary() - _ = yym3600 + if yyq3594[3] { + yym3605 := z.EncBinary() + _ = yym3605 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45400,12 +45448,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3589[3] { + if yyq3594[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3601 := z.EncBinary() - _ = yym3601 + yym3606 := z.EncBinary() + _ = yym3606 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -45413,11 +45461,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3589 || yy2arr3589 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3589[4] { - yym3603 := z.EncBinary() - _ = yym3603 + if yyq3594[4] { + yym3608 := z.EncBinary() + _ = yym3608 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45426,23 +45474,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3589[4] { + if yyq3594[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3604 := z.EncBinary() - _ = yym3604 + yym3609 := z.EncBinary() + _ = yym3609 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3589 || yy2arr3589 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3589[5] { - yym3606 := z.EncBinary() - _ = yym3606 + if yyq3594[5] { + yym3611 := z.EncBinary() + _ = yym3611 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -45451,23 +45499,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3589[5] { + if yyq3594[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3607 := z.EncBinary() - _ = yym3607 + yym3612 := z.EncBinary() + _ = yym3612 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3589 || yy2arr3589 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3589[6] { - yym3609 := z.EncBinary() - _ = yym3609 + if yyq3594[6] { + yym3614 := z.EncBinary() + _ = yym3614 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -45476,19 +45524,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3589[6] { + if yyq3594[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3610 := z.EncBinary() - _ = yym3610 + yym3615 := z.EncBinary() + _ = yym3615 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3589 || yy2arr3589 { + if yyr3594 || yy2arr3594 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45501,25 +45549,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3611 := z.DecBinary() - _ = yym3611 + yym3616 := z.DecBinary() + _ = yym3616 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3612 := r.ContainerType() - if yyct3612 == codecSelferValueTypeMap1234 { - yyl3612 := r.ReadMapStart() - if yyl3612 == 0 { + yyct3617 := r.ContainerType() + if yyct3617 == codecSelferValueTypeMap1234 { + yyl3617 := r.ReadMapStart() + if yyl3617 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3612, d) + x.codecDecodeSelfFromMap(yyl3617, d) } - } else if yyct3612 == codecSelferValueTypeArray1234 { - yyl3612 := r.ReadArrayStart() - if yyl3612 == 0 { + } else if yyct3617 == codecSelferValueTypeArray1234 { + yyl3617 := r.ReadArrayStart() + if yyl3617 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3612, d) + x.codecDecodeSelfFromArray(yyl3617, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45531,12 +45579,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3613Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3613Slc - var yyhl3613 bool = l >= 0 - for yyj3613 := 0; ; yyj3613++ { - if yyhl3613 { - if yyj3613 >= l { + var yys3618Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3618Slc + var yyhl3618 bool = l >= 0 + for yyj3618 := 0; ; yyj3618++ { + if yyhl3618 { + if yyj3618 >= l { break } } else { @@ -45545,10 +45593,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3613Slc = r.DecodeBytes(yys3613Slc, true, true) - yys3613 := string(yys3613Slc) + yys3618Slc = r.DecodeBytes(yys3618Slc, true, true) + yys3618 := string(yys3618Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3613 { + switch yys3618 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45592,9 +45640,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3613) - } // end switch yys3613 - } // end for yyj3613 + z.DecStructFieldNotFound(-1, yys3618) + } // end switch yys3618 + } // end for yyj3618 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45602,16 +45650,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3621 int - var yyb3621 bool - var yyhl3621 bool = l >= 0 - yyj3621++ - if yyhl3621 { - yyb3621 = yyj3621 > l + var yyj3626 int + var yyb3626 bool + var yyhl3626 bool = l >= 0 + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3621 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3621 { + if yyb3626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45621,13 +45669,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3621++ - if yyhl3621 { - yyb3621 = yyj3621 > l + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3621 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3621 { + if yyb3626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45637,13 +45685,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3621++ - if yyhl3621 { - yyb3621 = yyj3621 > l + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3621 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3621 { + if yyb3626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45653,13 +45701,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3621++ - if yyhl3621 { - yyb3621 = yyj3621 > l + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3621 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3621 { + if yyb3626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45669,13 +45717,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3621++ - if yyhl3621 { - yyb3621 = yyj3621 > l + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3621 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3621 { + if yyb3626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45685,13 +45733,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3621++ - if yyhl3621 { - yyb3621 = yyj3621 > l + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3621 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3621 { + if yyb3626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45701,13 +45749,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3621++ - if yyhl3621 { - yyb3621 = yyj3621 > l + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3621 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3621 { + if yyb3626 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45718,17 +45766,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3621++ - if yyhl3621 { - yyb3621 = yyj3621 > l + yyj3626++ + if yyhl3626 { + yyb3626 = yyj3626 > l } else { - yyb3621 = r.CheckBreak() + yyb3626 = r.CheckBreak() } - if yyb3621 { + if yyb3626 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3621-1, "") + z.DecStructFieldNotFound(yyj3626-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45740,35 +45788,35 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3629 := z.EncBinary() - _ = yym3629 + yym3634 := z.EncBinary() + _ = yym3634 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3630 := !z.EncBinary() - yy2arr3630 := z.EncBasicHandle().StructToArray - var yyq3630 [1]bool - _, _, _ = yysep3630, yyq3630, yy2arr3630 - const yyr3630 bool = false - yyq3630[0] = x.Name != "" - var yynn3630 int - if yyr3630 || yy2arr3630 { + yysep3635 := !z.EncBinary() + yy2arr3635 := z.EncBasicHandle().StructToArray + var yyq3635 [1]bool + _, _, _ = yysep3635, yyq3635, yy2arr3635 + const yyr3635 bool = false + yyq3635[0] = x.Name != "" + var yynn3635 int + if yyr3635 || yy2arr3635 { r.EncodeArrayStart(1) } else { - yynn3630 = 0 - for _, b := range yyq3630 { + yynn3635 = 0 + for _, b := range yyq3635 { if b { - yynn3630++ + yynn3635++ } } - r.EncodeMapStart(yynn3630) - yynn3630 = 0 + r.EncodeMapStart(yynn3635) + yynn3635 = 0 } - if yyr3630 || yy2arr3630 { + if yyr3635 || yy2arr3635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3630[0] { - yym3632 := z.EncBinary() - _ = yym3632 + if yyq3635[0] { + yym3637 := z.EncBinary() + _ = yym3637 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -45777,19 +45825,19 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3630[0] { + if yyq3635[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3633 := z.EncBinary() - _ = yym3633 + yym3638 := z.EncBinary() + _ = yym3638 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3630 || yy2arr3630 { + if yyr3635 || yy2arr3635 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45802,25 +45850,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3634 := z.DecBinary() - _ = yym3634 + yym3639 := z.DecBinary() + _ = yym3639 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3635 := r.ContainerType() - if yyct3635 == codecSelferValueTypeMap1234 { - yyl3635 := r.ReadMapStart() - if yyl3635 == 0 { + yyct3640 := r.ContainerType() + if yyct3640 == codecSelferValueTypeMap1234 { + yyl3640 := r.ReadMapStart() + if yyl3640 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3635, d) + x.codecDecodeSelfFromMap(yyl3640, d) } - } else if yyct3635 == codecSelferValueTypeArray1234 { - yyl3635 := r.ReadArrayStart() - if yyl3635 == 0 { + } else if yyct3640 == codecSelferValueTypeArray1234 { + yyl3640 := r.ReadArrayStart() + if yyl3640 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3635, d) + x.codecDecodeSelfFromArray(yyl3640, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45832,12 +45880,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3636Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3636Slc - var yyhl3636 bool = l >= 0 - for yyj3636 := 0; ; yyj3636++ { - if yyhl3636 { - if yyj3636 >= l { + var yys3641Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3641Slc + var yyhl3641 bool = l >= 0 + for yyj3641 := 0; ; yyj3641++ { + if yyhl3641 { + if yyj3641 >= l { break } } else { @@ -45846,10 +45894,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3636Slc = r.DecodeBytes(yys3636Slc, true, true) - yys3636 := string(yys3636Slc) + yys3641Slc = r.DecodeBytes(yys3641Slc, true, true) + yys3641 := string(yys3641Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3636 { + switch yys3641 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -45857,9 +45905,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3636) - } // end switch yys3636 - } // end for yyj3636 + z.DecStructFieldNotFound(-1, yys3641) + } // end switch yys3641 + } // end for yyj3641 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45867,16 +45915,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3638 int - var yyb3638 bool - var yyhl3638 bool = l >= 0 - yyj3638++ - if yyhl3638 { - yyb3638 = yyj3638 > l + var yyj3643 int + var yyb3643 bool + var yyhl3643 bool = l >= 0 + yyj3643++ + if yyhl3643 { + yyb3643 = yyj3643 > l } else { - yyb3638 = r.CheckBreak() + yyb3643 = r.CheckBreak() } - if yyb3638 { + if yyb3643 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45887,17 +45935,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj3638++ - if yyhl3638 { - yyb3638 = yyj3638 > l + yyj3643++ + if yyhl3643 { + yyb3643 = yyj3643 > l } else { - yyb3638 = r.CheckBreak() + yyb3643 = r.CheckBreak() } - if yyb3638 { + if yyb3643 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3638-1, "") + z.DecStructFieldNotFound(yyj3643-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45909,37 +45957,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3640 := z.EncBinary() - _ = yym3640 + yym3645 := z.EncBinary() + _ = yym3645 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3641 := !z.EncBinary() - yy2arr3641 := z.EncBasicHandle().StructToArray - var yyq3641 [3]bool - _, _, _ = yysep3641, yyq3641, yy2arr3641 - const yyr3641 bool = false - yyq3641[0] = x.Kind != "" - yyq3641[1] = x.APIVersion != "" - yyq3641[2] = true - var yynn3641 int - if yyr3641 || yy2arr3641 { + yysep3646 := !z.EncBinary() + yy2arr3646 := z.EncBasicHandle().StructToArray + var yyq3646 [3]bool + _, _, _ = yysep3646, yyq3646, yy2arr3646 + const yyr3646 bool = false + yyq3646[0] = x.Kind != "" + yyq3646[1] = x.APIVersion != "" + yyq3646[2] = true + var yynn3646 int + if yyr3646 || yy2arr3646 { r.EncodeArrayStart(3) } else { - yynn3641 = 0 - for _, b := range yyq3641 { + yynn3646 = 0 + for _, b := range yyq3646 { if b { - yynn3641++ + yynn3646++ } } - r.EncodeMapStart(yynn3641) - yynn3641 = 0 + r.EncodeMapStart(yynn3646) + yynn3646 = 0 } - if yyr3641 || yy2arr3641 { + if yyr3646 || yy2arr3646 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3641[0] { - yym3643 := z.EncBinary() - _ = yym3643 + if yyq3646[0] { + yym3648 := z.EncBinary() + _ = yym3648 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45948,23 +45996,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3641[0] { + if yyq3646[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3644 := z.EncBinary() - _ = yym3644 + yym3649 := z.EncBinary() + _ = yym3649 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3641 || yy2arr3641 { + if yyr3646 || yy2arr3646 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3641[1] { - yym3646 := z.EncBinary() - _ = yym3646 + if yyq3646[1] { + yym3651 := z.EncBinary() + _ = yym3651 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45973,36 +46021,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3641[1] { + if yyq3646[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3647 := z.EncBinary() - _ = yym3647 + yym3652 := z.EncBinary() + _ = yym3652 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3641 || yy2arr3641 { + if yyr3646 || yy2arr3646 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3641[2] { - yy3649 := &x.Reference - yy3649.CodecEncodeSelf(e) + if yyq3646[2] { + yy3654 := &x.Reference + yy3654.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3641[2] { + if yyq3646[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3650 := &x.Reference - yy3650.CodecEncodeSelf(e) + yy3655 := &x.Reference + yy3655.CodecEncodeSelf(e) } } - if yyr3641 || yy2arr3641 { + if yyr3646 || yy2arr3646 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46015,25 +46063,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3651 := z.DecBinary() - _ = yym3651 + yym3656 := z.DecBinary() + _ = yym3656 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3652 := r.ContainerType() - if yyct3652 == codecSelferValueTypeMap1234 { - yyl3652 := r.ReadMapStart() - if yyl3652 == 0 { + yyct3657 := r.ContainerType() + if yyct3657 == codecSelferValueTypeMap1234 { + yyl3657 := r.ReadMapStart() + if yyl3657 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3652, d) + x.codecDecodeSelfFromMap(yyl3657, d) } - } else if yyct3652 == codecSelferValueTypeArray1234 { - yyl3652 := r.ReadArrayStart() - if yyl3652 == 0 { + } else if yyct3657 == codecSelferValueTypeArray1234 { + yyl3657 := r.ReadArrayStart() + if yyl3657 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3652, d) + x.codecDecodeSelfFromArray(yyl3657, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46045,12 +46093,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3653Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3653Slc - var yyhl3653 bool = l >= 0 - for yyj3653 := 0; ; yyj3653++ { - if yyhl3653 { - if yyj3653 >= l { + var yys3658Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3658Slc + var yyhl3658 bool = l >= 0 + for yyj3658 := 0; ; yyj3658++ { + if yyhl3658 { + if yyj3658 >= l { break } } else { @@ -46059,10 +46107,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3653Slc = r.DecodeBytes(yys3653Slc, true, true) - yys3653 := string(yys3653Slc) + yys3658Slc = r.DecodeBytes(yys3658Slc, true, true) + yys3658 := string(yys3658Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3653 { + switch yys3658 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46079,13 +46127,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3656 := &x.Reference - yyv3656.CodecDecodeSelf(d) + yyv3661 := &x.Reference + yyv3661.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3653) - } // end switch yys3653 - } // end for yyj3653 + z.DecStructFieldNotFound(-1, yys3658) + } // end switch yys3658 + } // end for yyj3658 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46093,16 +46141,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3657 int - var yyb3657 bool - var yyhl3657 bool = l >= 0 - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + var yyj3662 int + var yyb3662 bool + var yyhl3662 bool = l >= 0 + yyj3662++ + if yyhl3662 { + yyb3662 = yyj3662 > l } else { - yyb3657 = r.CheckBreak() + yyb3662 = r.CheckBreak() } - if yyb3657 { + if yyb3662 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46112,13 +46160,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3662++ + if yyhl3662 { + yyb3662 = yyj3662 > l } else { - yyb3657 = r.CheckBreak() + yyb3662 = r.CheckBreak() } - if yyb3657 { + if yyb3662 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46128,13 +46176,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3662++ + if yyhl3662 { + yyb3662 = yyj3662 > l } else { - yyb3657 = r.CheckBreak() + yyb3662 = r.CheckBreak() } - if yyb3657 { + if yyb3662 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46142,21 +46190,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3660 := &x.Reference - yyv3660.CodecDecodeSelf(d) + yyv3665 := &x.Reference + yyv3665.CodecDecodeSelf(d) } for { - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3662++ + if yyhl3662 { + yyb3662 = yyj3662 > l } else { - yyb3657 = r.CheckBreak() + yyb3662 = r.CheckBreak() } - if yyb3657 { + if yyb3662 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3657-1, "") + z.DecStructFieldNotFound(yyj3662-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46168,36 +46216,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3661 := z.EncBinary() - _ = yym3661 + yym3666 := z.EncBinary() + _ = yym3666 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3662 := !z.EncBinary() - yy2arr3662 := z.EncBasicHandle().StructToArray - var yyq3662 [2]bool - _, _, _ = yysep3662, yyq3662, yy2arr3662 - const yyr3662 bool = false - yyq3662[0] = x.Component != "" - yyq3662[1] = x.Host != "" - var yynn3662 int - if yyr3662 || yy2arr3662 { + yysep3667 := !z.EncBinary() + yy2arr3667 := z.EncBasicHandle().StructToArray + var yyq3667 [2]bool + _, _, _ = yysep3667, yyq3667, yy2arr3667 + const yyr3667 bool = false + yyq3667[0] = x.Component != "" + yyq3667[1] = x.Host != "" + var yynn3667 int + if yyr3667 || yy2arr3667 { r.EncodeArrayStart(2) } else { - yynn3662 = 0 - for _, b := range yyq3662 { + yynn3667 = 0 + for _, b := range yyq3667 { if b { - yynn3662++ + yynn3667++ } } - r.EncodeMapStart(yynn3662) - yynn3662 = 0 + r.EncodeMapStart(yynn3667) + yynn3667 = 0 } - if yyr3662 || yy2arr3662 { + if yyr3667 || yy2arr3667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3662[0] { - yym3664 := z.EncBinary() - _ = yym3664 + if yyq3667[0] { + yym3669 := z.EncBinary() + _ = yym3669 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -46206,23 +46254,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3662[0] { + if yyq3667[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3665 := z.EncBinary() - _ = yym3665 + yym3670 := z.EncBinary() + _ = yym3670 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr3662 || yy2arr3662 { + if yyr3667 || yy2arr3667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3662[1] { - yym3667 := z.EncBinary() - _ = yym3667 + if yyq3667[1] { + yym3672 := z.EncBinary() + _ = yym3672 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -46231,19 +46279,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3662[1] { + if yyq3667[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3668 := z.EncBinary() - _ = yym3668 + yym3673 := z.EncBinary() + _ = yym3673 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3662 || yy2arr3662 { + if yyr3667 || yy2arr3667 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46256,25 +46304,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3669 := z.DecBinary() - _ = yym3669 + yym3674 := z.DecBinary() + _ = yym3674 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3670 := r.ContainerType() - if yyct3670 == codecSelferValueTypeMap1234 { - yyl3670 := r.ReadMapStart() - if yyl3670 == 0 { + yyct3675 := r.ContainerType() + if yyct3675 == codecSelferValueTypeMap1234 { + yyl3675 := r.ReadMapStart() + if yyl3675 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3670, d) + x.codecDecodeSelfFromMap(yyl3675, d) } - } else if yyct3670 == codecSelferValueTypeArray1234 { - yyl3670 := r.ReadArrayStart() - if yyl3670 == 0 { + } else if yyct3675 == codecSelferValueTypeArray1234 { + yyl3675 := r.ReadArrayStart() + if yyl3675 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3670, d) + x.codecDecodeSelfFromArray(yyl3675, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46286,12 +46334,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3671Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3671Slc - var yyhl3671 bool = l >= 0 - for yyj3671 := 0; ; yyj3671++ { - if yyhl3671 { - if yyj3671 >= l { + var yys3676Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3676Slc + var yyhl3676 bool = l >= 0 + for yyj3676 := 0; ; yyj3676++ { + if yyhl3676 { + if yyj3676 >= l { break } } else { @@ -46300,10 +46348,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3671Slc = r.DecodeBytes(yys3671Slc, true, true) - yys3671 := string(yys3671Slc) + yys3676Slc = r.DecodeBytes(yys3676Slc, true, true) + yys3676 := string(yys3676Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3671 { + switch yys3676 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -46317,9 +46365,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3671) - } // end switch yys3671 - } // end for yyj3671 + z.DecStructFieldNotFound(-1, yys3676) + } // end switch yys3676 + } // end for yyj3676 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46327,16 +46375,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3674 int - var yyb3674 bool - var yyhl3674 bool = l >= 0 - yyj3674++ - if yyhl3674 { - yyb3674 = yyj3674 > l + var yyj3679 int + var yyb3679 bool + var yyhl3679 bool = l >= 0 + yyj3679++ + if yyhl3679 { + yyb3679 = yyj3679 > l } else { - yyb3674 = r.CheckBreak() + yyb3679 = r.CheckBreak() } - if yyb3674 { + if yyb3679 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46346,13 +46394,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3674++ - if yyhl3674 { - yyb3674 = yyj3674 > l + yyj3679++ + if yyhl3679 { + yyb3679 = yyj3679 > l } else { - yyb3674 = r.CheckBreak() + yyb3679 = r.CheckBreak() } - if yyb3674 { + if yyb3679 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46363,17 +46411,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3674++ - if yyhl3674 { - yyb3674 = yyj3674 > l + yyj3679++ + if yyhl3679 { + yyb3679 = yyj3679 > l } else { - yyb3674 = r.CheckBreak() + yyb3679 = r.CheckBreak() } - if yyb3674 { + if yyb3679 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3674-1, "") + z.DecStructFieldNotFound(yyj3679-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46385,43 +46433,43 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3677 := z.EncBinary() - _ = yym3677 + yym3682 := z.EncBinary() + _ = yym3682 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3678 := !z.EncBinary() - yy2arr3678 := z.EncBasicHandle().StructToArray - var yyq3678 [11]bool - _, _, _ = yysep3678, yyq3678, yy2arr3678 - const yyr3678 bool = false - yyq3678[0] = x.Kind != "" - yyq3678[1] = x.APIVersion != "" - yyq3678[4] = x.Reason != "" - yyq3678[5] = x.Message != "" - yyq3678[6] = true - yyq3678[7] = true - yyq3678[8] = true - yyq3678[9] = x.Count != 0 - yyq3678[10] = x.Type != "" - var yynn3678 int - if yyr3678 || yy2arr3678 { + yysep3683 := !z.EncBinary() + yy2arr3683 := z.EncBasicHandle().StructToArray + var yyq3683 [11]bool + _, _, _ = yysep3683, yyq3683, yy2arr3683 + const yyr3683 bool = false + yyq3683[0] = x.Kind != "" + yyq3683[1] = x.APIVersion != "" + yyq3683[4] = x.Reason != "" + yyq3683[5] = x.Message != "" + yyq3683[6] = true + yyq3683[7] = true + yyq3683[8] = true + yyq3683[9] = x.Count != 0 + yyq3683[10] = x.Type != "" + var yynn3683 int + if yyr3683 || yy2arr3683 { r.EncodeArrayStart(11) } else { - yynn3678 = 2 - for _, b := range yyq3678 { + yynn3683 = 2 + for _, b := range yyq3683 { if b { - yynn3678++ + yynn3683++ } } - r.EncodeMapStart(yynn3678) - yynn3678 = 0 + r.EncodeMapStart(yynn3683) + yynn3683 = 0 } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3678[0] { - yym3680 := z.EncBinary() - _ = yym3680 + if yyq3683[0] { + yym3685 := z.EncBinary() + _ = yym3685 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46430,23 +46478,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3678[0] { + if yyq3683[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3681 := z.EncBinary() - _ = yym3681 + yym3686 := z.EncBinary() + _ = yym3686 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3678[1] { - yym3683 := z.EncBinary() - _ = yym3683 + if yyq3683[1] { + yym3688 := z.EncBinary() + _ = yym3688 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46455,45 +46503,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3678[1] { + if yyq3683[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3684 := z.EncBinary() - _ = yym3684 + yym3689 := z.EncBinary() + _ = yym3689 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3686 := &x.ObjectMeta - yy3686.CodecEncodeSelf(e) + yy3691 := &x.ObjectMeta + yy3691.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3687 := &x.ObjectMeta - yy3687.CodecEncodeSelf(e) + yy3692 := &x.ObjectMeta + yy3692.CodecEncodeSelf(e) } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3689 := &x.InvolvedObject - yy3689.CodecEncodeSelf(e) + yy3694 := &x.InvolvedObject + yy3694.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3690 := &x.InvolvedObject - yy3690.CodecEncodeSelf(e) + yy3695 := &x.InvolvedObject + yy3695.CodecEncodeSelf(e) } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3678[4] { - yym3692 := z.EncBinary() - _ = yym3692 + if yyq3683[4] { + yym3697 := z.EncBinary() + _ = yym3697 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -46502,23 +46550,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3678[4] { + if yyq3683[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3693 := z.EncBinary() - _ = yym3693 + yym3698 := z.EncBinary() + _ = yym3698 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3678[5] { - yym3695 := z.EncBinary() - _ = yym3695 + if yyq3683[5] { + yym3700 := z.EncBinary() + _ = yym3700 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -46527,114 +46575,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3678[5] { + if yyq3683[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3696 := z.EncBinary() - _ = yym3696 + yym3701 := z.EncBinary() + _ = yym3701 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3678[6] { - yy3698 := &x.Source - yy3698.CodecEncodeSelf(e) + if yyq3683[6] { + yy3703 := &x.Source + yy3703.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3678[6] { + if yyq3683[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3699 := &x.Source - yy3699.CodecEncodeSelf(e) + yy3704 := &x.Source + yy3704.CodecEncodeSelf(e) } } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3678[7] { - yy3701 := &x.FirstTimestamp - yym3702 := z.EncBinary() - _ = yym3702 + if yyq3683[7] { + yy3706 := &x.FirstTimestamp + yym3707 := z.EncBinary() + _ = yym3707 if false { - } else if z.HasExtensions() && z.EncExt(yy3701) { - } else if yym3702 { - z.EncBinaryMarshal(yy3701) - } else if !yym3702 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3701) + } else if z.HasExtensions() && z.EncExt(yy3706) { + } else if yym3707 { + z.EncBinaryMarshal(yy3706) + } else if !yym3707 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3706) } else { - z.EncFallback(yy3701) + z.EncFallback(yy3706) } } else { r.EncodeNil() } } else { - if yyq3678[7] { + if yyq3683[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3703 := &x.FirstTimestamp - yym3704 := z.EncBinary() - _ = yym3704 + yy3708 := &x.FirstTimestamp + yym3709 := z.EncBinary() + _ = yym3709 if false { - } else if z.HasExtensions() && z.EncExt(yy3703) { - } else if yym3704 { - z.EncBinaryMarshal(yy3703) - } else if !yym3704 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3703) + } else if z.HasExtensions() && z.EncExt(yy3708) { + } else if yym3709 { + z.EncBinaryMarshal(yy3708) + } else if !yym3709 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3708) } else { - z.EncFallback(yy3703) + z.EncFallback(yy3708) } } } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3678[8] { - yy3706 := &x.LastTimestamp - yym3707 := z.EncBinary() - _ = yym3707 + if yyq3683[8] { + yy3711 := &x.LastTimestamp + yym3712 := z.EncBinary() + _ = yym3712 if false { - } else if z.HasExtensions() && z.EncExt(yy3706) { - } else if yym3707 { - z.EncBinaryMarshal(yy3706) - } else if !yym3707 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3706) + } else if z.HasExtensions() && z.EncExt(yy3711) { + } else if yym3712 { + z.EncBinaryMarshal(yy3711) + } else if !yym3712 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3711) } else { - z.EncFallback(yy3706) + z.EncFallback(yy3711) } } else { r.EncodeNil() } } else { - if yyq3678[8] { + if yyq3683[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3708 := &x.LastTimestamp - yym3709 := z.EncBinary() - _ = yym3709 + yy3713 := &x.LastTimestamp + yym3714 := z.EncBinary() + _ = yym3714 if false { - } else if z.HasExtensions() && z.EncExt(yy3708) { - } else if yym3709 { - z.EncBinaryMarshal(yy3708) - } else if !yym3709 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3708) + } else if z.HasExtensions() && z.EncExt(yy3713) { + } else if yym3714 { + z.EncBinaryMarshal(yy3713) + } else if !yym3714 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3713) } else { - z.EncFallback(yy3708) + z.EncFallback(yy3713) } } } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3678[9] { - yym3711 := z.EncBinary() - _ = yym3711 + if yyq3683[9] { + yym3716 := z.EncBinary() + _ = yym3716 if false { } else { r.EncodeInt(int64(x.Count)) @@ -46643,23 +46691,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3678[9] { + if yyq3683[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3712 := z.EncBinary() - _ = yym3712 + yym3717 := z.EncBinary() + _ = yym3717 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3678[10] { - yym3714 := z.EncBinary() - _ = yym3714 + if yyq3683[10] { + yym3719 := z.EncBinary() + _ = yym3719 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -46668,19 +46716,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3678[10] { + if yyq3683[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3715 := z.EncBinary() - _ = yym3715 + yym3720 := z.EncBinary() + _ = yym3720 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3678 || yy2arr3678 { + if yyr3683 || yy2arr3683 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46693,25 +46741,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3716 := z.DecBinary() - _ = yym3716 + yym3721 := z.DecBinary() + _ = yym3721 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3717 := r.ContainerType() - if yyct3717 == codecSelferValueTypeMap1234 { - yyl3717 := r.ReadMapStart() - if yyl3717 == 0 { + yyct3722 := r.ContainerType() + if yyct3722 == codecSelferValueTypeMap1234 { + yyl3722 := r.ReadMapStart() + if yyl3722 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3717, d) + x.codecDecodeSelfFromMap(yyl3722, d) } - } else if yyct3717 == codecSelferValueTypeArray1234 { - yyl3717 := r.ReadArrayStart() - if yyl3717 == 0 { + } else if yyct3722 == codecSelferValueTypeArray1234 { + yyl3722 := r.ReadArrayStart() + if yyl3722 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3717, d) + x.codecDecodeSelfFromArray(yyl3722, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46723,12 +46771,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3718Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3718Slc - var yyhl3718 bool = l >= 0 - for yyj3718 := 0; ; yyj3718++ { - if yyhl3718 { - if yyj3718 >= l { + var yys3723Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3723Slc + var yyhl3723 bool = l >= 0 + for yyj3723 := 0; ; yyj3723++ { + if yyhl3723 { + if yyj3723 >= l { break } } else { @@ -46737,10 +46785,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3718Slc = r.DecodeBytes(yys3718Slc, true, true) - yys3718 := string(yys3718Slc) + yys3723Slc = r.DecodeBytes(yys3723Slc, true, true) + yys3723 := string(yys3723Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3718 { + switch yys3723 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46757,15 +46805,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3721 := &x.ObjectMeta - yyv3721.CodecDecodeSelf(d) + yyv3726 := &x.ObjectMeta + yyv3726.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3722 := &x.InvolvedObject - yyv3722.CodecDecodeSelf(d) + yyv3727 := &x.InvolvedObject + yyv3727.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -46783,41 +46831,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3725 := &x.Source - yyv3725.CodecDecodeSelf(d) + yyv3730 := &x.Source + yyv3730.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3726 := &x.FirstTimestamp - yym3727 := z.DecBinary() - _ = yym3727 + yyv3731 := &x.FirstTimestamp + yym3732 := z.DecBinary() + _ = yym3732 if false { - } else if z.HasExtensions() && z.DecExt(yyv3726) { - } else if yym3727 { - z.DecBinaryUnmarshal(yyv3726) - } else if !yym3727 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3726) + } else if z.HasExtensions() && z.DecExt(yyv3731) { + } else if yym3732 { + z.DecBinaryUnmarshal(yyv3731) + } else if !yym3732 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3731) } else { - z.DecFallback(yyv3726, false) + z.DecFallback(yyv3731, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3728 := &x.LastTimestamp - yym3729 := z.DecBinary() - _ = yym3729 + yyv3733 := &x.LastTimestamp + yym3734 := z.DecBinary() + _ = yym3734 if false { - } else if z.HasExtensions() && z.DecExt(yyv3728) { - } else if yym3729 { - z.DecBinaryUnmarshal(yyv3728) - } else if !yym3729 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3728) + } else if z.HasExtensions() && z.DecExt(yyv3733) { + } else if yym3734 { + z.DecBinaryUnmarshal(yyv3733) + } else if !yym3734 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3733) } else { - z.DecFallback(yyv3728, false) + z.DecFallback(yyv3733, false) } } case "count": @@ -46833,9 +46881,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3718) - } // end switch yys3718 - } // end for yyj3718 + z.DecStructFieldNotFound(-1, yys3723) + } // end switch yys3723 + } // end for yyj3723 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46843,16 +46891,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3732 int - var yyb3732 bool - var yyhl3732 bool = l >= 0 - yyj3732++ - if yyhl3732 { - yyb3732 = yyj3732 > l + var yyj3737 int + var yyb3737 bool + var yyhl3737 bool = l >= 0 + yyj3737++ + if yyhl3737 { + yyb3737 = yyj3737 > l } else { - yyb3732 = r.CheckBreak() + yyb3737 = r.CheckBreak() } - if yyb3732 { + if yyb3737 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46862,13 +46910,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3732++ - if yyhl3732 { - yyb3732 = yyj3732 > l + yyj3737++ + if yyhl3737 { + yyb3737 = yyj3737 > l } else { - yyb3732 = r.CheckBreak() + yyb3737 = r.CheckBreak() } - if yyb3732 { + if yyb3737 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46878,13 +46926,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3732++ - if yyhl3732 { - yyb3732 = yyj3732 > l + yyj3737++ + if yyhl3737 { + yyb3737 = yyj3737 > l } else { - yyb3732 = r.CheckBreak() + yyb3737 = r.CheckBreak() } - if yyb3732 { + if yyb3737 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46892,16 +46940,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3735 := &x.ObjectMeta - yyv3735.CodecDecodeSelf(d) + yyv3740 := &x.ObjectMeta + yyv3740.CodecDecodeSelf(d) } - yyj3732++ - if yyhl3732 { - yyb3732 = yyj3732 > l + yyj3737++ + if yyhl3737 { + yyb3737 = yyj3737 > l } else { - yyb3732 = r.CheckBreak() + yyb3737 = r.CheckBreak() } - if yyb3732 { + if yyb3737 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46909,16 +46957,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3736 := &x.InvolvedObject - yyv3736.CodecDecodeSelf(d) + yyv3741 := &x.InvolvedObject + yyv3741.CodecDecodeSelf(d) } - yyj3732++ - if yyhl3732 { - yyb3732 = yyj3732 > l + yyj3737++ + if yyhl3737 { + yyb3737 = yyj3737 > l } else { - yyb3732 = r.CheckBreak() + yyb3737 = r.CheckBreak() } - if yyb3732 { + if yyb3737 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46928,13 +46976,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3732++ - if yyhl3732 { - yyb3732 = yyj3732 > l + yyj3737++ + if yyhl3737 { + yyb3737 = yyj3737 > l } else { - yyb3732 = r.CheckBreak() + yyb3737 = r.CheckBreak() } - if yyb3732 { + if yyb3737 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46944,13 +46992,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3732++ - if yyhl3732 { - yyb3732 = yyj3732 > l + yyj3737++ + if yyhl3737 { + yyb3737 = yyj3737 > l } else { - yyb3732 = r.CheckBreak() + yyb3737 = r.CheckBreak() } - if yyb3732 { + if yyb3737 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46958,16 +47006,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3739 := &x.Source - yyv3739.CodecDecodeSelf(d) + yyv3744 := &x.Source + yyv3744.CodecDecodeSelf(d) } - yyj3732++ - if yyhl3732 { - yyb3732 = yyj3732 > l + yyj3737++ + if yyhl3737 { + yyb3737 = yyj3737 > l } else { - yyb3732 = r.CheckBreak() + yyb3737 = r.CheckBreak() } - if yyb3732 { + if yyb3737 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46975,26 +47023,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3740 := &x.FirstTimestamp - yym3741 := z.DecBinary() - _ = yym3741 + yyv3745 := &x.FirstTimestamp + yym3746 := z.DecBinary() + _ = yym3746 if false { - } else if z.HasExtensions() && z.DecExt(yyv3740) { - } else if yym3741 { - z.DecBinaryUnmarshal(yyv3740) - } else if !yym3741 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3740) + } else if z.HasExtensions() && z.DecExt(yyv3745) { + } else if yym3746 { + z.DecBinaryUnmarshal(yyv3745) + } else if !yym3746 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3745) } else { - z.DecFallback(yyv3740, false) + z.DecFallback(yyv3745, false) } } - yyj3732++ - if yyhl3732 { - yyb3732 = yyj3732 > l + yyj3737++ + if yyhl3737 { + yyb3737 = yyj3737 > l } else { - yyb3732 = r.CheckBreak() + yyb3737 = r.CheckBreak() } - if yyb3732 { + if yyb3737 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47002,26 +47050,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3742 := &x.LastTimestamp - yym3743 := z.DecBinary() - _ = yym3743 + yyv3747 := &x.LastTimestamp + yym3748 := z.DecBinary() + _ = yym3748 if false { - } else if z.HasExtensions() && z.DecExt(yyv3742) { - } else if yym3743 { - z.DecBinaryUnmarshal(yyv3742) - } else if !yym3743 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3742) + } else if z.HasExtensions() && z.DecExt(yyv3747) { + } else if yym3748 { + z.DecBinaryUnmarshal(yyv3747) + } else if !yym3748 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3747) } else { - z.DecFallback(yyv3742, false) + z.DecFallback(yyv3747, false) } } - yyj3732++ - if yyhl3732 { - yyb3732 = yyj3732 > l + yyj3737++ + if yyhl3737 { + yyb3737 = yyj3737 > l } else { - yyb3732 = r.CheckBreak() + yyb3737 = r.CheckBreak() } - if yyb3732 { + if yyb3737 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47031,13 +47079,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3732++ - if yyhl3732 { - yyb3732 = yyj3732 > l + yyj3737++ + if yyhl3737 { + yyb3737 = yyj3737 > l } else { - yyb3732 = r.CheckBreak() + yyb3737 = r.CheckBreak() } - if yyb3732 { + if yyb3737 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47048,17 +47096,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3732++ - if yyhl3732 { - yyb3732 = yyj3732 > l + yyj3737++ + if yyhl3737 { + yyb3737 = yyj3737 > l } else { - yyb3732 = r.CheckBreak() + yyb3737 = r.CheckBreak() } - if yyb3732 { + if yyb3737 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3732-1, "") + z.DecStructFieldNotFound(yyj3737-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47070,37 +47118,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3746 := z.EncBinary() - _ = yym3746 + yym3751 := z.EncBinary() + _ = yym3751 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3747 := !z.EncBinary() - yy2arr3747 := z.EncBasicHandle().StructToArray - var yyq3747 [4]bool - _, _, _ = yysep3747, yyq3747, yy2arr3747 - const yyr3747 bool = false - yyq3747[0] = x.Kind != "" - yyq3747[1] = x.APIVersion != "" - yyq3747[2] = true - var yynn3747 int - if yyr3747 || yy2arr3747 { + yysep3752 := !z.EncBinary() + yy2arr3752 := z.EncBasicHandle().StructToArray + var yyq3752 [4]bool + _, _, _ = yysep3752, yyq3752, yy2arr3752 + const yyr3752 bool = false + yyq3752[0] = x.Kind != "" + yyq3752[1] = x.APIVersion != "" + yyq3752[2] = true + var yynn3752 int + if yyr3752 || yy2arr3752 { r.EncodeArrayStart(4) } else { - yynn3747 = 1 - for _, b := range yyq3747 { + yynn3752 = 1 + for _, b := range yyq3752 { if b { - yynn3747++ + yynn3752++ } } - r.EncodeMapStart(yynn3747) - yynn3747 = 0 + r.EncodeMapStart(yynn3752) + yynn3752 = 0 } - if yyr3747 || yy2arr3747 { + if yyr3752 || yy2arr3752 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3747[0] { - yym3749 := z.EncBinary() - _ = yym3749 + if yyq3752[0] { + yym3754 := z.EncBinary() + _ = yym3754 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47109,23 +47157,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3747[0] { + if yyq3752[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3750 := z.EncBinary() - _ = yym3750 + yym3755 := z.EncBinary() + _ = yym3755 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3747 || yy2arr3747 { + if yyr3752 || yy2arr3752 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3747[1] { - yym3752 := z.EncBinary() - _ = yym3752 + if yyq3752[1] { + yym3757 := z.EncBinary() + _ = yym3757 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47134,54 +47182,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3747[1] { + if yyq3752[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3753 := z.EncBinary() - _ = yym3753 + yym3758 := z.EncBinary() + _ = yym3758 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3747 || yy2arr3747 { + if yyr3752 || yy2arr3752 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3747[2] { - yy3755 := &x.ListMeta - yym3756 := z.EncBinary() - _ = yym3756 + if yyq3752[2] { + yy3760 := &x.ListMeta + yym3761 := z.EncBinary() + _ = yym3761 if false { - } else if z.HasExtensions() && z.EncExt(yy3755) { + } else if z.HasExtensions() && z.EncExt(yy3760) { } else { - z.EncFallback(yy3755) + z.EncFallback(yy3760) } } else { r.EncodeNil() } } else { - if yyq3747[2] { + if yyq3752[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3757 := &x.ListMeta - yym3758 := z.EncBinary() - _ = yym3758 + yy3762 := &x.ListMeta + yym3763 := z.EncBinary() + _ = yym3763 if false { - } else if z.HasExtensions() && z.EncExt(yy3757) { + } else if z.HasExtensions() && z.EncExt(yy3762) { } else { - z.EncFallback(yy3757) + z.EncFallback(yy3762) } } } - if yyr3747 || yy2arr3747 { + if yyr3752 || yy2arr3752 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3760 := z.EncBinary() - _ = yym3760 + yym3765 := z.EncBinary() + _ = yym3765 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -47194,15 +47242,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3761 := z.EncBinary() - _ = yym3761 + yym3766 := z.EncBinary() + _ = yym3766 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3747 || yy2arr3747 { + if yyr3752 || yy2arr3752 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47215,25 +47263,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3762 := z.DecBinary() - _ = yym3762 + yym3767 := z.DecBinary() + _ = yym3767 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3763 := r.ContainerType() - if yyct3763 == codecSelferValueTypeMap1234 { - yyl3763 := r.ReadMapStart() - if yyl3763 == 0 { + yyct3768 := r.ContainerType() + if yyct3768 == codecSelferValueTypeMap1234 { + yyl3768 := r.ReadMapStart() + if yyl3768 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3763, d) + x.codecDecodeSelfFromMap(yyl3768, d) } - } else if yyct3763 == codecSelferValueTypeArray1234 { - yyl3763 := r.ReadArrayStart() - if yyl3763 == 0 { + } else if yyct3768 == codecSelferValueTypeArray1234 { + yyl3768 := r.ReadArrayStart() + if yyl3768 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3763, d) + x.codecDecodeSelfFromArray(yyl3768, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47245,12 +47293,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3764Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3764Slc - var yyhl3764 bool = l >= 0 - for yyj3764 := 0; ; yyj3764++ { - if yyhl3764 { - if yyj3764 >= l { + var yys3769Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3769Slc + var yyhl3769 bool = l >= 0 + for yyj3769 := 0; ; yyj3769++ { + if yyhl3769 { + if yyj3769 >= l { break } } else { @@ -47259,10 +47307,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3764Slc = r.DecodeBytes(yys3764Slc, true, true) - yys3764 := string(yys3764Slc) + yys3769Slc = r.DecodeBytes(yys3769Slc, true, true) + yys3769 := string(yys3769Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3764 { + switch yys3769 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47279,31 +47327,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3767 := &x.ListMeta - yym3768 := z.DecBinary() - _ = yym3768 + yyv3772 := &x.ListMeta + yym3773 := z.DecBinary() + _ = yym3773 if false { - } else if z.HasExtensions() && z.DecExt(yyv3767) { + } else if z.HasExtensions() && z.DecExt(yyv3772) { } else { - z.DecFallback(yyv3767, false) + z.DecFallback(yyv3772, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3769 := &x.Items - yym3770 := z.DecBinary() - _ = yym3770 + yyv3774 := &x.Items + yym3775 := z.DecBinary() + _ = yym3775 if false { } else { - h.decSliceEvent((*[]Event)(yyv3769), d) + h.decSliceEvent((*[]Event)(yyv3774), d) } } default: - z.DecStructFieldNotFound(-1, yys3764) - } // end switch yys3764 - } // end for yyj3764 + z.DecStructFieldNotFound(-1, yys3769) + } // end switch yys3769 + } // end for yyj3769 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47311,16 +47359,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3771 int - var yyb3771 bool - var yyhl3771 bool = l >= 0 - yyj3771++ - if yyhl3771 { - yyb3771 = yyj3771 > l + var yyj3776 int + var yyb3776 bool + var yyhl3776 bool = l >= 0 + yyj3776++ + if yyhl3776 { + yyb3776 = yyj3776 > l } else { - yyb3771 = r.CheckBreak() + yyb3776 = r.CheckBreak() } - if yyb3771 { + if yyb3776 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47330,13 +47378,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3771++ - if yyhl3771 { - yyb3771 = yyj3771 > l + yyj3776++ + if yyhl3776 { + yyb3776 = yyj3776 > l } else { - yyb3771 = r.CheckBreak() + yyb3776 = r.CheckBreak() } - if yyb3771 { + if yyb3776 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47346,13 +47394,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3771++ - if yyhl3771 { - yyb3771 = yyj3771 > l + yyj3776++ + if yyhl3776 { + yyb3776 = yyj3776 > l } else { - yyb3771 = r.CheckBreak() + yyb3776 = r.CheckBreak() } - if yyb3771 { + if yyb3776 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47360,22 +47408,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3774 := &x.ListMeta - yym3775 := z.DecBinary() - _ = yym3775 + yyv3779 := &x.ListMeta + yym3780 := z.DecBinary() + _ = yym3780 if false { - } else if z.HasExtensions() && z.DecExt(yyv3774) { + } else if z.HasExtensions() && z.DecExt(yyv3779) { } else { - z.DecFallback(yyv3774, false) + z.DecFallback(yyv3779, false) } } - yyj3771++ - if yyhl3771 { - yyb3771 = yyj3771 > l + yyj3776++ + if yyhl3776 { + yyb3776 = yyj3776 > l } else { - yyb3771 = r.CheckBreak() + yyb3776 = r.CheckBreak() } - if yyb3771 { + if yyb3776 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47383,26 +47431,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3776 := &x.Items - yym3777 := z.DecBinary() - _ = yym3777 + yyv3781 := &x.Items + yym3782 := z.DecBinary() + _ = yym3782 if false { } else { - h.decSliceEvent((*[]Event)(yyv3776), d) + h.decSliceEvent((*[]Event)(yyv3781), d) } } for { - yyj3771++ - if yyhl3771 { - yyb3771 = yyj3771 > l + yyj3776++ + if yyhl3776 { + yyb3776 = yyj3776 > l } else { - yyb3771 = r.CheckBreak() + yyb3776 = r.CheckBreak() } - if yyb3771 { + if yyb3776 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3771-1, "") + z.DecStructFieldNotFound(yyj3776-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47414,37 +47462,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3778 := z.EncBinary() - _ = yym3778 + yym3783 := z.EncBinary() + _ = yym3783 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3779 := !z.EncBinary() - yy2arr3779 := z.EncBasicHandle().StructToArray - var yyq3779 [4]bool - _, _, _ = yysep3779, yyq3779, yy2arr3779 - const yyr3779 bool = false - yyq3779[0] = x.Kind != "" - yyq3779[1] = x.APIVersion != "" - yyq3779[2] = true - var yynn3779 int - if yyr3779 || yy2arr3779 { + yysep3784 := !z.EncBinary() + yy2arr3784 := z.EncBasicHandle().StructToArray + var yyq3784 [4]bool + _, _, _ = yysep3784, yyq3784, yy2arr3784 + const yyr3784 bool = false + yyq3784[0] = x.Kind != "" + yyq3784[1] = x.APIVersion != "" + yyq3784[2] = true + var yynn3784 int + if yyr3784 || yy2arr3784 { r.EncodeArrayStart(4) } else { - yynn3779 = 1 - for _, b := range yyq3779 { + yynn3784 = 1 + for _, b := range yyq3784 { if b { - yynn3779++ + yynn3784++ } } - r.EncodeMapStart(yynn3779) - yynn3779 = 0 + r.EncodeMapStart(yynn3784) + yynn3784 = 0 } - if yyr3779 || yy2arr3779 { + if yyr3784 || yy2arr3784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3779[0] { - yym3781 := z.EncBinary() - _ = yym3781 + if yyq3784[0] { + yym3786 := z.EncBinary() + _ = yym3786 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47453,23 +47501,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3779[0] { + if yyq3784[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3782 := z.EncBinary() - _ = yym3782 + yym3787 := z.EncBinary() + _ = yym3787 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3779 || yy2arr3779 { + if yyr3784 || yy2arr3784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3779[1] { - yym3784 := z.EncBinary() - _ = yym3784 + if yyq3784[1] { + yym3789 := z.EncBinary() + _ = yym3789 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47478,54 +47526,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3779[1] { + if yyq3784[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3785 := z.EncBinary() - _ = yym3785 + yym3790 := z.EncBinary() + _ = yym3790 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3779 || yy2arr3779 { + if yyr3784 || yy2arr3784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3779[2] { - yy3787 := &x.ListMeta - yym3788 := z.EncBinary() - _ = yym3788 + if yyq3784[2] { + yy3792 := &x.ListMeta + yym3793 := z.EncBinary() + _ = yym3793 if false { - } else if z.HasExtensions() && z.EncExt(yy3787) { + } else if z.HasExtensions() && z.EncExt(yy3792) { } else { - z.EncFallback(yy3787) + z.EncFallback(yy3792) } } else { r.EncodeNil() } } else { - if yyq3779[2] { + if yyq3784[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3789 := &x.ListMeta - yym3790 := z.EncBinary() - _ = yym3790 + yy3794 := &x.ListMeta + yym3795 := z.EncBinary() + _ = yym3795 if false { - } else if z.HasExtensions() && z.EncExt(yy3789) { + } else if z.HasExtensions() && z.EncExt(yy3794) { } else { - z.EncFallback(yy3789) + z.EncFallback(yy3794) } } } - if yyr3779 || yy2arr3779 { + if yyr3784 || yy2arr3784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3792 := z.EncBinary() - _ = yym3792 + yym3797 := z.EncBinary() + _ = yym3797 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) @@ -47538,15 +47586,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3793 := z.EncBinary() - _ = yym3793 + yym3798 := z.EncBinary() + _ = yym3798 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) } } } - if yyr3779 || yy2arr3779 { + if yyr3784 || yy2arr3784 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47559,25 +47607,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3794 := z.DecBinary() - _ = yym3794 + yym3799 := z.DecBinary() + _ = yym3799 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3795 := r.ContainerType() - if yyct3795 == codecSelferValueTypeMap1234 { - yyl3795 := r.ReadMapStart() - if yyl3795 == 0 { + yyct3800 := r.ContainerType() + if yyct3800 == codecSelferValueTypeMap1234 { + yyl3800 := r.ReadMapStart() + if yyl3800 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3795, d) + x.codecDecodeSelfFromMap(yyl3800, d) } - } else if yyct3795 == codecSelferValueTypeArray1234 { - yyl3795 := r.ReadArrayStart() - if yyl3795 == 0 { + } else if yyct3800 == codecSelferValueTypeArray1234 { + yyl3800 := r.ReadArrayStart() + if yyl3800 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3795, d) + x.codecDecodeSelfFromArray(yyl3800, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47589,12 +47637,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3796Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3796Slc - var yyhl3796 bool = l >= 0 - for yyj3796 := 0; ; yyj3796++ { - if yyhl3796 { - if yyj3796 >= l { + var yys3801Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3801Slc + var yyhl3801 bool = l >= 0 + for yyj3801 := 0; ; yyj3801++ { + if yyhl3801 { + if yyj3801 >= l { break } } else { @@ -47603,10 +47651,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3796Slc = r.DecodeBytes(yys3796Slc, true, true) - yys3796 := string(yys3796Slc) + yys3801Slc = r.DecodeBytes(yys3801Slc, true, true) + yys3801 := string(yys3801Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3796 { + switch yys3801 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47623,31 +47671,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3799 := &x.ListMeta - yym3800 := z.DecBinary() - _ = yym3800 + yyv3804 := &x.ListMeta + yym3805 := z.DecBinary() + _ = yym3805 if false { - } else if z.HasExtensions() && z.DecExt(yyv3799) { + } else if z.HasExtensions() && z.DecExt(yyv3804) { } else { - z.DecFallback(yyv3799, false) + z.DecFallback(yyv3804, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3801 := &x.Items - yym3802 := z.DecBinary() - _ = yym3802 + yyv3806 := &x.Items + yym3807 := z.DecBinary() + _ = yym3807 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3801), d) + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3806), d) } } default: - z.DecStructFieldNotFound(-1, yys3796) - } // end switch yys3796 - } // end for yyj3796 + z.DecStructFieldNotFound(-1, yys3801) + } // end switch yys3801 + } // end for yyj3801 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47655,16 +47703,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3803 int - var yyb3803 bool - var yyhl3803 bool = l >= 0 - yyj3803++ - if yyhl3803 { - yyb3803 = yyj3803 > l + var yyj3808 int + var yyb3808 bool + var yyhl3808 bool = l >= 0 + yyj3808++ + if yyhl3808 { + yyb3808 = yyj3808 > l } else { - yyb3803 = r.CheckBreak() + yyb3808 = r.CheckBreak() } - if yyb3803 { + if yyb3808 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47674,13 +47722,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3803++ - if yyhl3803 { - yyb3803 = yyj3803 > l + yyj3808++ + if yyhl3808 { + yyb3808 = yyj3808 > l } else { - yyb3803 = r.CheckBreak() + yyb3808 = r.CheckBreak() } - if yyb3803 { + if yyb3808 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47690,13 +47738,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3803++ - if yyhl3803 { - yyb3803 = yyj3803 > l + yyj3808++ + if yyhl3808 { + yyb3808 = yyj3808 > l } else { - yyb3803 = r.CheckBreak() + yyb3808 = r.CheckBreak() } - if yyb3803 { + if yyb3808 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47704,22 +47752,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3806 := &x.ListMeta - yym3807 := z.DecBinary() - _ = yym3807 + yyv3811 := &x.ListMeta + yym3812 := z.DecBinary() + _ = yym3812 if false { - } else if z.HasExtensions() && z.DecExt(yyv3806) { + } else if z.HasExtensions() && z.DecExt(yyv3811) { } else { - z.DecFallback(yyv3806, false) + z.DecFallback(yyv3811, false) } } - yyj3803++ - if yyhl3803 { - yyb3803 = yyj3803 > l + yyj3808++ + if yyhl3808 { + yyb3808 = yyj3808 > l } else { - yyb3803 = r.CheckBreak() + yyb3808 = r.CheckBreak() } - if yyb3803 { + if yyb3808 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47727,26 +47775,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3808 := &x.Items - yym3809 := z.DecBinary() - _ = yym3809 + yyv3813 := &x.Items + yym3814 := z.DecBinary() + _ = yym3814 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3808), d) + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3813), d) } } for { - yyj3803++ - if yyhl3803 { - yyb3803 = yyj3803 > l + yyj3808++ + if yyhl3808 { + yyb3808 = yyj3808 > l } else { - yyb3803 = r.CheckBreak() + yyb3808 = r.CheckBreak() } - if yyb3803 { + if yyb3808 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3803-1, "") + z.DecStructFieldNotFound(yyj3808-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47755,8 +47803,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3810 := z.EncBinary() - _ = yym3810 + yym3815 := z.EncBinary() + _ = yym3815 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -47768,8 +47816,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3811 := z.DecBinary() - _ = yym3811 + yym3816 := z.DecBinary() + _ = yym3816 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -47784,53 +47832,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3812 := z.EncBinary() - _ = yym3812 + yym3817 := z.EncBinary() + _ = yym3817 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3813 := !z.EncBinary() - yy2arr3813 := z.EncBasicHandle().StructToArray - var yyq3813 [6]bool - _, _, _ = yysep3813, yyq3813, yy2arr3813 - const yyr3813 bool = false - yyq3813[0] = x.Type != "" - yyq3813[1] = len(x.Max) != 0 - yyq3813[2] = len(x.Min) != 0 - yyq3813[3] = len(x.Default) != 0 - yyq3813[4] = len(x.DefaultRequest) != 0 - yyq3813[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3813 int - if yyr3813 || yy2arr3813 { + yysep3818 := !z.EncBinary() + yy2arr3818 := z.EncBasicHandle().StructToArray + var yyq3818 [6]bool + _, _, _ = yysep3818, yyq3818, yy2arr3818 + const yyr3818 bool = false + yyq3818[0] = x.Type != "" + yyq3818[1] = len(x.Max) != 0 + yyq3818[2] = len(x.Min) != 0 + yyq3818[3] = len(x.Default) != 0 + yyq3818[4] = len(x.DefaultRequest) != 0 + yyq3818[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3818 int + if yyr3818 || yy2arr3818 { r.EncodeArrayStart(6) } else { - yynn3813 = 0 - for _, b := range yyq3813 { + yynn3818 = 0 + for _, b := range yyq3818 { if b { - yynn3813++ + yynn3818++ } } - r.EncodeMapStart(yynn3813) - yynn3813 = 0 + r.EncodeMapStart(yynn3818) + yynn3818 = 0 } - if yyr3813 || yy2arr3813 { + if yyr3818 || yy2arr3818 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3813[0] { + if yyq3818[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3813[0] { + if yyq3818[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3813 || yy2arr3813 { + if yyr3818 || yy2arr3818 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3813[1] { + if yyq3818[1] { if x.Max == nil { r.EncodeNil() } else { @@ -47840,7 +47888,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3813[1] { + if yyq3818[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -47851,9 +47899,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3813 || yy2arr3813 { + if yyr3818 || yy2arr3818 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3813[2] { + if yyq3818[2] { if x.Min == nil { r.EncodeNil() } else { @@ -47863,7 +47911,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3813[2] { + if yyq3818[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -47874,9 +47922,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3813 || yy2arr3813 { + if yyr3818 || yy2arr3818 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3813[3] { + if yyq3818[3] { if x.Default == nil { r.EncodeNil() } else { @@ -47886,7 +47934,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3813[3] { + if yyq3818[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -47897,9 +47945,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3813 || yy2arr3813 { + if yyr3818 || yy2arr3818 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3813[4] { + if yyq3818[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -47909,7 +47957,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3813[4] { + if yyq3818[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -47920,9 +47968,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3813 || yy2arr3813 { + if yyr3818 || yy2arr3818 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3813[5] { + if yyq3818[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -47932,7 +47980,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3813[5] { + if yyq3818[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -47943,7 +47991,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3813 || yy2arr3813 { + if yyr3818 || yy2arr3818 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47956,25 +48004,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3820 := z.DecBinary() - _ = yym3820 + yym3825 := z.DecBinary() + _ = yym3825 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3821 := r.ContainerType() - if yyct3821 == codecSelferValueTypeMap1234 { - yyl3821 := r.ReadMapStart() - if yyl3821 == 0 { + yyct3826 := r.ContainerType() + if yyct3826 == codecSelferValueTypeMap1234 { + yyl3826 := r.ReadMapStart() + if yyl3826 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3821, d) + x.codecDecodeSelfFromMap(yyl3826, d) } - } else if yyct3821 == codecSelferValueTypeArray1234 { - yyl3821 := r.ReadArrayStart() - if yyl3821 == 0 { + } else if yyct3826 == codecSelferValueTypeArray1234 { + yyl3826 := r.ReadArrayStart() + if yyl3826 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3821, d) + x.codecDecodeSelfFromArray(yyl3826, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47986,12 +48034,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3822Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3822Slc - var yyhl3822 bool = l >= 0 - for yyj3822 := 0; ; yyj3822++ { - if yyhl3822 { - if yyj3822 >= l { + var yys3827Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3827Slc + var yyhl3827 bool = l >= 0 + for yyj3827 := 0; ; yyj3827++ { + if yyhl3827 { + if yyj3827 >= l { break } } else { @@ -48000,10 +48048,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3822Slc = r.DecodeBytes(yys3822Slc, true, true) - yys3822 := string(yys3822Slc) + yys3827Slc = r.DecodeBytes(yys3827Slc, true, true) + yys3827 := string(yys3827Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3822 { + switch yys3827 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -48014,41 +48062,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3824 := &x.Max - yyv3824.CodecDecodeSelf(d) + yyv3829 := &x.Max + yyv3829.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3825 := &x.Min - yyv3825.CodecDecodeSelf(d) + yyv3830 := &x.Min + yyv3830.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3826 := &x.Default - yyv3826.CodecDecodeSelf(d) + yyv3831 := &x.Default + yyv3831.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3827 := &x.DefaultRequest - yyv3827.CodecDecodeSelf(d) + yyv3832 := &x.DefaultRequest + yyv3832.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3828 := &x.MaxLimitRequestRatio - yyv3828.CodecDecodeSelf(d) + yyv3833 := &x.MaxLimitRequestRatio + yyv3833.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3822) - } // end switch yys3822 - } // end for yyj3822 + z.DecStructFieldNotFound(-1, yys3827) + } // end switch yys3827 + } // end for yyj3827 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48056,16 +48104,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3829 int - var yyb3829 bool - var yyhl3829 bool = l >= 0 - yyj3829++ - if yyhl3829 { - yyb3829 = yyj3829 > l + var yyj3834 int + var yyb3834 bool + var yyhl3834 bool = l >= 0 + yyj3834++ + if yyhl3834 { + yyb3834 = yyj3834 > l } else { - yyb3829 = r.CheckBreak() + yyb3834 = r.CheckBreak() } - if yyb3829 { + if yyb3834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48075,13 +48123,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3829++ - if yyhl3829 { - yyb3829 = yyj3829 > l + yyj3834++ + if yyhl3834 { + yyb3834 = yyj3834 > l } else { - yyb3829 = r.CheckBreak() + yyb3834 = r.CheckBreak() } - if yyb3829 { + if yyb3834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48089,16 +48137,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3831 := &x.Max - yyv3831.CodecDecodeSelf(d) + yyv3836 := &x.Max + yyv3836.CodecDecodeSelf(d) } - yyj3829++ - if yyhl3829 { - yyb3829 = yyj3829 > l + yyj3834++ + if yyhl3834 { + yyb3834 = yyj3834 > l } else { - yyb3829 = r.CheckBreak() + yyb3834 = r.CheckBreak() } - if yyb3829 { + if yyb3834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48106,16 +48154,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3832 := &x.Min - yyv3832.CodecDecodeSelf(d) + yyv3837 := &x.Min + yyv3837.CodecDecodeSelf(d) } - yyj3829++ - if yyhl3829 { - yyb3829 = yyj3829 > l + yyj3834++ + if yyhl3834 { + yyb3834 = yyj3834 > l } else { - yyb3829 = r.CheckBreak() + yyb3834 = r.CheckBreak() } - if yyb3829 { + if yyb3834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48123,16 +48171,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3833 := &x.Default - yyv3833.CodecDecodeSelf(d) + yyv3838 := &x.Default + yyv3838.CodecDecodeSelf(d) } - yyj3829++ - if yyhl3829 { - yyb3829 = yyj3829 > l + yyj3834++ + if yyhl3834 { + yyb3834 = yyj3834 > l } else { - yyb3829 = r.CheckBreak() + yyb3834 = r.CheckBreak() } - if yyb3829 { + if yyb3834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48140,16 +48188,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3834 := &x.DefaultRequest - yyv3834.CodecDecodeSelf(d) + yyv3839 := &x.DefaultRequest + yyv3839.CodecDecodeSelf(d) } - yyj3829++ - if yyhl3829 { - yyb3829 = yyj3829 > l + yyj3834++ + if yyhl3834 { + yyb3834 = yyj3834 > l } else { - yyb3829 = r.CheckBreak() + yyb3834 = r.CheckBreak() } - if yyb3829 { + if yyb3834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48157,21 +48205,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3835 := &x.MaxLimitRequestRatio - yyv3835.CodecDecodeSelf(d) + yyv3840 := &x.MaxLimitRequestRatio + yyv3840.CodecDecodeSelf(d) } for { - yyj3829++ - if yyhl3829 { - yyb3829 = yyj3829 > l + yyj3834++ + if yyhl3834 { + yyb3834 = yyj3834 > l } else { - yyb3829 = r.CheckBreak() + yyb3834 = r.CheckBreak() } - if yyb3829 { + if yyb3834 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3829-1, "") + z.DecStructFieldNotFound(yyj3834-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48183,36 +48231,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3836 := z.EncBinary() - _ = yym3836 + yym3841 := z.EncBinary() + _ = yym3841 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3837 := !z.EncBinary() - yy2arr3837 := z.EncBasicHandle().StructToArray - var yyq3837 [1]bool - _, _, _ = yysep3837, yyq3837, yy2arr3837 - const yyr3837 bool = false - var yynn3837 int - if yyr3837 || yy2arr3837 { + yysep3842 := !z.EncBinary() + yy2arr3842 := z.EncBasicHandle().StructToArray + var yyq3842 [1]bool + _, _, _ = yysep3842, yyq3842, yy2arr3842 + const yyr3842 bool = false + var yynn3842 int + if yyr3842 || yy2arr3842 { r.EncodeArrayStart(1) } else { - yynn3837 = 1 - for _, b := range yyq3837 { + yynn3842 = 1 + for _, b := range yyq3842 { if b { - yynn3837++ + yynn3842++ } } - r.EncodeMapStart(yynn3837) - yynn3837 = 0 + r.EncodeMapStart(yynn3842) + yynn3842 = 0 } - if yyr3837 || yy2arr3837 { + if yyr3842 || yy2arr3842 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3839 := z.EncBinary() - _ = yym3839 + yym3844 := z.EncBinary() + _ = yym3844 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -48225,15 +48273,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3840 := z.EncBinary() - _ = yym3840 + yym3845 := z.EncBinary() + _ = yym3845 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3837 || yy2arr3837 { + if yyr3842 || yy2arr3842 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48246,25 +48294,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3841 := z.DecBinary() - _ = yym3841 + yym3846 := z.DecBinary() + _ = yym3846 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3842 := r.ContainerType() - if yyct3842 == codecSelferValueTypeMap1234 { - yyl3842 := r.ReadMapStart() - if yyl3842 == 0 { + yyct3847 := r.ContainerType() + if yyct3847 == codecSelferValueTypeMap1234 { + yyl3847 := r.ReadMapStart() + if yyl3847 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3842, d) + x.codecDecodeSelfFromMap(yyl3847, d) } - } else if yyct3842 == codecSelferValueTypeArray1234 { - yyl3842 := r.ReadArrayStart() - if yyl3842 == 0 { + } else if yyct3847 == codecSelferValueTypeArray1234 { + yyl3847 := r.ReadArrayStart() + if yyl3847 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3842, d) + x.codecDecodeSelfFromArray(yyl3847, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48276,12 +48324,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3843Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3843Slc - var yyhl3843 bool = l >= 0 - for yyj3843 := 0; ; yyj3843++ { - if yyhl3843 { - if yyj3843 >= l { + var yys3848Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3848Slc + var yyhl3848 bool = l >= 0 + for yyj3848 := 0; ; yyj3848++ { + if yyhl3848 { + if yyj3848 >= l { break } } else { @@ -48290,26 +48338,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3843Slc = r.DecodeBytes(yys3843Slc, true, true) - yys3843 := string(yys3843Slc) + yys3848Slc = r.DecodeBytes(yys3848Slc, true, true) + yys3848 := string(yys3848Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3843 { + switch yys3848 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3844 := &x.Limits - yym3845 := z.DecBinary() - _ = yym3845 + yyv3849 := &x.Limits + yym3850 := z.DecBinary() + _ = yym3850 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3844), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3849), d) } } default: - z.DecStructFieldNotFound(-1, yys3843) - } // end switch yys3843 - } // end for yyj3843 + z.DecStructFieldNotFound(-1, yys3848) + } // end switch yys3848 + } // end for yyj3848 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48317,16 +48365,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3846 int - var yyb3846 bool - var yyhl3846 bool = l >= 0 - yyj3846++ - if yyhl3846 { - yyb3846 = yyj3846 > l + var yyj3851 int + var yyb3851 bool + var yyhl3851 bool = l >= 0 + yyj3851++ + if yyhl3851 { + yyb3851 = yyj3851 > l } else { - yyb3846 = r.CheckBreak() + yyb3851 = r.CheckBreak() } - if yyb3846 { + if yyb3851 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48334,26 +48382,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3847 := &x.Limits - yym3848 := z.DecBinary() - _ = yym3848 + yyv3852 := &x.Limits + yym3853 := z.DecBinary() + _ = yym3853 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3847), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3852), d) } } for { - yyj3846++ - if yyhl3846 { - yyb3846 = yyj3846 > l + yyj3851++ + if yyhl3851 { + yyb3851 = yyj3851 > l } else { - yyb3846 = r.CheckBreak() + yyb3851 = r.CheckBreak() } - if yyb3846 { + if yyb3851 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3846-1, "") + z.DecStructFieldNotFound(yyj3851-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48365,38 +48413,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3849 := z.EncBinary() - _ = yym3849 + yym3854 := z.EncBinary() + _ = yym3854 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3850 := !z.EncBinary() - yy2arr3850 := z.EncBasicHandle().StructToArray - var yyq3850 [4]bool - _, _, _ = yysep3850, yyq3850, yy2arr3850 - const yyr3850 bool = false - yyq3850[0] = x.Kind != "" - yyq3850[1] = x.APIVersion != "" - yyq3850[2] = true - yyq3850[3] = true - var yynn3850 int - if yyr3850 || yy2arr3850 { + yysep3855 := !z.EncBinary() + yy2arr3855 := z.EncBasicHandle().StructToArray + var yyq3855 [4]bool + _, _, _ = yysep3855, yyq3855, yy2arr3855 + const yyr3855 bool = false + yyq3855[0] = x.Kind != "" + yyq3855[1] = x.APIVersion != "" + yyq3855[2] = true + yyq3855[3] = true + var yynn3855 int + if yyr3855 || yy2arr3855 { r.EncodeArrayStart(4) } else { - yynn3850 = 0 - for _, b := range yyq3850 { + yynn3855 = 0 + for _, b := range yyq3855 { if b { - yynn3850++ + yynn3855++ } } - r.EncodeMapStart(yynn3850) - yynn3850 = 0 + r.EncodeMapStart(yynn3855) + yynn3855 = 0 } - if yyr3850 || yy2arr3850 { + if yyr3855 || yy2arr3855 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3850[0] { - yym3852 := z.EncBinary() - _ = yym3852 + if yyq3855[0] { + yym3857 := z.EncBinary() + _ = yym3857 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48405,23 +48453,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3850[0] { + if yyq3855[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3853 := z.EncBinary() - _ = yym3853 + yym3858 := z.EncBinary() + _ = yym3858 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3850 || yy2arr3850 { + if yyr3855 || yy2arr3855 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3850[1] { - yym3855 := z.EncBinary() - _ = yym3855 + if yyq3855[1] { + yym3860 := z.EncBinary() + _ = yym3860 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48430,53 +48478,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3850[1] { + if yyq3855[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3856 := z.EncBinary() - _ = yym3856 + yym3861 := z.EncBinary() + _ = yym3861 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3850 || yy2arr3850 { + if yyr3855 || yy2arr3855 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3850[2] { - yy3858 := &x.ObjectMeta - yy3858.CodecEncodeSelf(e) + if yyq3855[2] { + yy3863 := &x.ObjectMeta + yy3863.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3850[2] { + if yyq3855[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3859 := &x.ObjectMeta - yy3859.CodecEncodeSelf(e) + yy3864 := &x.ObjectMeta + yy3864.CodecEncodeSelf(e) } } - if yyr3850 || yy2arr3850 { + if yyr3855 || yy2arr3855 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3850[3] { - yy3861 := &x.Spec - yy3861.CodecEncodeSelf(e) + if yyq3855[3] { + yy3866 := &x.Spec + yy3866.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3850[3] { + if yyq3855[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3862 := &x.Spec - yy3862.CodecEncodeSelf(e) + yy3867 := &x.Spec + yy3867.CodecEncodeSelf(e) } } - if yyr3850 || yy2arr3850 { + if yyr3855 || yy2arr3855 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48489,25 +48537,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3863 := z.DecBinary() - _ = yym3863 + yym3868 := z.DecBinary() + _ = yym3868 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3864 := r.ContainerType() - if yyct3864 == codecSelferValueTypeMap1234 { - yyl3864 := r.ReadMapStart() - if yyl3864 == 0 { + yyct3869 := r.ContainerType() + if yyct3869 == codecSelferValueTypeMap1234 { + yyl3869 := r.ReadMapStart() + if yyl3869 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3864, d) + x.codecDecodeSelfFromMap(yyl3869, d) } - } else if yyct3864 == codecSelferValueTypeArray1234 { - yyl3864 := r.ReadArrayStart() - if yyl3864 == 0 { + } else if yyct3869 == codecSelferValueTypeArray1234 { + yyl3869 := r.ReadArrayStart() + if yyl3869 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3864, d) + x.codecDecodeSelfFromArray(yyl3869, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48519,12 +48567,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3865Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3865Slc - var yyhl3865 bool = l >= 0 - for yyj3865 := 0; ; yyj3865++ { - if yyhl3865 { - if yyj3865 >= l { + var yys3870Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3870Slc + var yyhl3870 bool = l >= 0 + for yyj3870 := 0; ; yyj3870++ { + if yyhl3870 { + if yyj3870 >= l { break } } else { @@ -48533,10 +48581,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3865Slc = r.DecodeBytes(yys3865Slc, true, true) - yys3865 := string(yys3865Slc) + yys3870Slc = r.DecodeBytes(yys3870Slc, true, true) + yys3870 := string(yys3870Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3865 { + switch yys3870 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48553,20 +48601,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3868 := &x.ObjectMeta - yyv3868.CodecDecodeSelf(d) + yyv3873 := &x.ObjectMeta + yyv3873.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3869 := &x.Spec - yyv3869.CodecDecodeSelf(d) + yyv3874 := &x.Spec + yyv3874.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3865) - } // end switch yys3865 - } // end for yyj3865 + z.DecStructFieldNotFound(-1, yys3870) + } // end switch yys3870 + } // end for yyj3870 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48574,16 +48622,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3870 int - var yyb3870 bool - var yyhl3870 bool = l >= 0 - yyj3870++ - if yyhl3870 { - yyb3870 = yyj3870 > l + var yyj3875 int + var yyb3875 bool + var yyhl3875 bool = l >= 0 + yyj3875++ + if yyhl3875 { + yyb3875 = yyj3875 > l } else { - yyb3870 = r.CheckBreak() + yyb3875 = r.CheckBreak() } - if yyb3870 { + if yyb3875 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48593,13 +48641,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3870++ - if yyhl3870 { - yyb3870 = yyj3870 > l + yyj3875++ + if yyhl3875 { + yyb3875 = yyj3875 > l } else { - yyb3870 = r.CheckBreak() + yyb3875 = r.CheckBreak() } - if yyb3870 { + if yyb3875 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48609,13 +48657,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3870++ - if yyhl3870 { - yyb3870 = yyj3870 > l + yyj3875++ + if yyhl3875 { + yyb3875 = yyj3875 > l } else { - yyb3870 = r.CheckBreak() + yyb3875 = r.CheckBreak() } - if yyb3870 { + if yyb3875 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48623,16 +48671,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3873 := &x.ObjectMeta - yyv3873.CodecDecodeSelf(d) + yyv3878 := &x.ObjectMeta + yyv3878.CodecDecodeSelf(d) } - yyj3870++ - if yyhl3870 { - yyb3870 = yyj3870 > l + yyj3875++ + if yyhl3875 { + yyb3875 = yyj3875 > l } else { - yyb3870 = r.CheckBreak() + yyb3875 = r.CheckBreak() } - if yyb3870 { + if yyb3875 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48640,21 +48688,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3874 := &x.Spec - yyv3874.CodecDecodeSelf(d) + yyv3879 := &x.Spec + yyv3879.CodecDecodeSelf(d) } for { - yyj3870++ - if yyhl3870 { - yyb3870 = yyj3870 > l + yyj3875++ + if yyhl3875 { + yyb3875 = yyj3875 > l } else { - yyb3870 = r.CheckBreak() + yyb3875 = r.CheckBreak() } - if yyb3870 { + if yyb3875 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3870-1, "") + z.DecStructFieldNotFound(yyj3875-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48666,37 +48714,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3875 := z.EncBinary() - _ = yym3875 + yym3880 := z.EncBinary() + _ = yym3880 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3876 := !z.EncBinary() - yy2arr3876 := z.EncBasicHandle().StructToArray - var yyq3876 [4]bool - _, _, _ = yysep3876, yyq3876, yy2arr3876 - const yyr3876 bool = false - yyq3876[0] = x.Kind != "" - yyq3876[1] = x.APIVersion != "" - yyq3876[2] = true - var yynn3876 int - if yyr3876 || yy2arr3876 { + yysep3881 := !z.EncBinary() + yy2arr3881 := z.EncBasicHandle().StructToArray + var yyq3881 [4]bool + _, _, _ = yysep3881, yyq3881, yy2arr3881 + const yyr3881 bool = false + yyq3881[0] = x.Kind != "" + yyq3881[1] = x.APIVersion != "" + yyq3881[2] = true + var yynn3881 int + if yyr3881 || yy2arr3881 { r.EncodeArrayStart(4) } else { - yynn3876 = 1 - for _, b := range yyq3876 { + yynn3881 = 1 + for _, b := range yyq3881 { if b { - yynn3876++ + yynn3881++ } } - r.EncodeMapStart(yynn3876) - yynn3876 = 0 + r.EncodeMapStart(yynn3881) + yynn3881 = 0 } - if yyr3876 || yy2arr3876 { + if yyr3881 || yy2arr3881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3876[0] { - yym3878 := z.EncBinary() - _ = yym3878 + if yyq3881[0] { + yym3883 := z.EncBinary() + _ = yym3883 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48705,23 +48753,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3876[0] { + if yyq3881[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3879 := z.EncBinary() - _ = yym3879 + yym3884 := z.EncBinary() + _ = yym3884 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3876 || yy2arr3876 { + if yyr3881 || yy2arr3881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3876[1] { - yym3881 := z.EncBinary() - _ = yym3881 + if yyq3881[1] { + yym3886 := z.EncBinary() + _ = yym3886 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48730,54 +48778,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3876[1] { + if yyq3881[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3882 := z.EncBinary() - _ = yym3882 + yym3887 := z.EncBinary() + _ = yym3887 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3876 || yy2arr3876 { + if yyr3881 || yy2arr3881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3876[2] { - yy3884 := &x.ListMeta - yym3885 := z.EncBinary() - _ = yym3885 + if yyq3881[2] { + yy3889 := &x.ListMeta + yym3890 := z.EncBinary() + _ = yym3890 if false { - } else if z.HasExtensions() && z.EncExt(yy3884) { + } else if z.HasExtensions() && z.EncExt(yy3889) { } else { - z.EncFallback(yy3884) + z.EncFallback(yy3889) } } else { r.EncodeNil() } } else { - if yyq3876[2] { + if yyq3881[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3886 := &x.ListMeta - yym3887 := z.EncBinary() - _ = yym3887 + yy3891 := &x.ListMeta + yym3892 := z.EncBinary() + _ = yym3892 if false { - } else if z.HasExtensions() && z.EncExt(yy3886) { + } else if z.HasExtensions() && z.EncExt(yy3891) { } else { - z.EncFallback(yy3886) + z.EncFallback(yy3891) } } } - if yyr3876 || yy2arr3876 { + if yyr3881 || yy2arr3881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3889 := z.EncBinary() - _ = yym3889 + yym3894 := z.EncBinary() + _ = yym3894 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -48790,15 +48838,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3890 := z.EncBinary() - _ = yym3890 + yym3895 := z.EncBinary() + _ = yym3895 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr3876 || yy2arr3876 { + if yyr3881 || yy2arr3881 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48811,25 +48859,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3891 := z.DecBinary() - _ = yym3891 + yym3896 := z.DecBinary() + _ = yym3896 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3892 := r.ContainerType() - if yyct3892 == codecSelferValueTypeMap1234 { - yyl3892 := r.ReadMapStart() - if yyl3892 == 0 { + yyct3897 := r.ContainerType() + if yyct3897 == codecSelferValueTypeMap1234 { + yyl3897 := r.ReadMapStart() + if yyl3897 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3892, d) + x.codecDecodeSelfFromMap(yyl3897, d) } - } else if yyct3892 == codecSelferValueTypeArray1234 { - yyl3892 := r.ReadArrayStart() - if yyl3892 == 0 { + } else if yyct3897 == codecSelferValueTypeArray1234 { + yyl3897 := r.ReadArrayStart() + if yyl3897 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3892, d) + x.codecDecodeSelfFromArray(yyl3897, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48841,12 +48889,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3893Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3893Slc - var yyhl3893 bool = l >= 0 - for yyj3893 := 0; ; yyj3893++ { - if yyhl3893 { - if yyj3893 >= l { + var yys3898Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3898Slc + var yyhl3898 bool = l >= 0 + for yyj3898 := 0; ; yyj3898++ { + if yyhl3898 { + if yyj3898 >= l { break } } else { @@ -48855,10 +48903,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3893Slc = r.DecodeBytes(yys3893Slc, true, true) - yys3893 := string(yys3893Slc) + yys3898Slc = r.DecodeBytes(yys3898Slc, true, true) + yys3898 := string(yys3898Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3893 { + switch yys3898 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48875,31 +48923,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3896 := &x.ListMeta - yym3897 := z.DecBinary() - _ = yym3897 + yyv3901 := &x.ListMeta + yym3902 := z.DecBinary() + _ = yym3902 if false { - } else if z.HasExtensions() && z.DecExt(yyv3896) { + } else if z.HasExtensions() && z.DecExt(yyv3901) { } else { - z.DecFallback(yyv3896, false) + z.DecFallback(yyv3901, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3898 := &x.Items - yym3899 := z.DecBinary() - _ = yym3899 + yyv3903 := &x.Items + yym3904 := z.DecBinary() + _ = yym3904 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3898), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3903), d) } } default: - z.DecStructFieldNotFound(-1, yys3893) - } // end switch yys3893 - } // end for yyj3893 + z.DecStructFieldNotFound(-1, yys3898) + } // end switch yys3898 + } // end for yyj3898 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48907,16 +48955,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3900 int - var yyb3900 bool - var yyhl3900 bool = l >= 0 - yyj3900++ - if yyhl3900 { - yyb3900 = yyj3900 > l + var yyj3905 int + var yyb3905 bool + var yyhl3905 bool = l >= 0 + yyj3905++ + if yyhl3905 { + yyb3905 = yyj3905 > l } else { - yyb3900 = r.CheckBreak() + yyb3905 = r.CheckBreak() } - if yyb3900 { + if yyb3905 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48926,13 +48974,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3900++ - if yyhl3900 { - yyb3900 = yyj3900 > l + yyj3905++ + if yyhl3905 { + yyb3905 = yyj3905 > l } else { - yyb3900 = r.CheckBreak() + yyb3905 = r.CheckBreak() } - if yyb3900 { + if yyb3905 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48942,13 +48990,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3900++ - if yyhl3900 { - yyb3900 = yyj3900 > l + yyj3905++ + if yyhl3905 { + yyb3905 = yyj3905 > l } else { - yyb3900 = r.CheckBreak() + yyb3905 = r.CheckBreak() } - if yyb3900 { + if yyb3905 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48956,22 +49004,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3903 := &x.ListMeta - yym3904 := z.DecBinary() - _ = yym3904 + yyv3908 := &x.ListMeta + yym3909 := z.DecBinary() + _ = yym3909 if false { - } else if z.HasExtensions() && z.DecExt(yyv3903) { + } else if z.HasExtensions() && z.DecExt(yyv3908) { } else { - z.DecFallback(yyv3903, false) + z.DecFallback(yyv3908, false) } } - yyj3900++ - if yyhl3900 { - yyb3900 = yyj3900 > l + yyj3905++ + if yyhl3905 { + yyb3905 = yyj3905 > l } else { - yyb3900 = r.CheckBreak() + yyb3905 = r.CheckBreak() } - if yyb3900 { + if yyb3905 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48979,26 +49027,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3905 := &x.Items - yym3906 := z.DecBinary() - _ = yym3906 + yyv3910 := &x.Items + yym3911 := z.DecBinary() + _ = yym3911 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3905), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3910), d) } } for { - yyj3900++ - if yyhl3900 { - yyb3900 = yyj3900 > l + yyj3905++ + if yyhl3905 { + yyb3905 = yyj3905 > l } else { - yyb3900 = r.CheckBreak() + yyb3905 = r.CheckBreak() } - if yyb3900 { + if yyb3905 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3900-1, "") + z.DecStructFieldNotFound(yyj3905-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49007,8 +49055,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3907 := z.EncBinary() - _ = yym3907 + yym3912 := z.EncBinary() + _ = yym3912 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -49020,8 +49068,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3908 := z.DecBinary() - _ = yym3908 + yym3913 := z.DecBinary() + _ = yym3913 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -49036,34 +49084,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3909 := z.EncBinary() - _ = yym3909 + yym3914 := z.EncBinary() + _ = yym3914 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3910 := !z.EncBinary() - yy2arr3910 := z.EncBasicHandle().StructToArray - var yyq3910 [2]bool - _, _, _ = yysep3910, yyq3910, yy2arr3910 - const yyr3910 bool = false - yyq3910[0] = len(x.Hard) != 0 - yyq3910[1] = len(x.Scopes) != 0 - var yynn3910 int - if yyr3910 || yy2arr3910 { + yysep3915 := !z.EncBinary() + yy2arr3915 := z.EncBasicHandle().StructToArray + var yyq3915 [2]bool + _, _, _ = yysep3915, yyq3915, yy2arr3915 + const yyr3915 bool = false + yyq3915[0] = len(x.Hard) != 0 + yyq3915[1] = len(x.Scopes) != 0 + var yynn3915 int + if yyr3915 || yy2arr3915 { r.EncodeArrayStart(2) } else { - yynn3910 = 0 - for _, b := range yyq3910 { + yynn3915 = 0 + for _, b := range yyq3915 { if b { - yynn3910++ + yynn3915++ } } - r.EncodeMapStart(yynn3910) - yynn3910 = 0 + r.EncodeMapStart(yynn3915) + yynn3915 = 0 } - if yyr3910 || yy2arr3910 { + if yyr3915 || yy2arr3915 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3910[0] { + if yyq3915[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -49073,7 +49121,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3910[0] { + if yyq3915[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49084,14 +49132,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3910 || yy2arr3910 { + if yyr3915 || yy2arr3915 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3910[1] { + if yyq3915[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym3913 := z.EncBinary() - _ = yym3913 + yym3918 := z.EncBinary() + _ = yym3918 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -49101,15 +49149,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3910[1] { + if yyq3915[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym3914 := z.EncBinary() - _ = yym3914 + yym3919 := z.EncBinary() + _ = yym3919 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -49117,7 +49165,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3910 || yy2arr3910 { + if yyr3915 || yy2arr3915 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49130,25 +49178,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3915 := z.DecBinary() - _ = yym3915 + yym3920 := z.DecBinary() + _ = yym3920 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3916 := r.ContainerType() - if yyct3916 == codecSelferValueTypeMap1234 { - yyl3916 := r.ReadMapStart() - if yyl3916 == 0 { + yyct3921 := r.ContainerType() + if yyct3921 == codecSelferValueTypeMap1234 { + yyl3921 := r.ReadMapStart() + if yyl3921 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3916, d) + x.codecDecodeSelfFromMap(yyl3921, d) } - } else if yyct3916 == codecSelferValueTypeArray1234 { - yyl3916 := r.ReadArrayStart() - if yyl3916 == 0 { + } else if yyct3921 == codecSelferValueTypeArray1234 { + yyl3921 := r.ReadArrayStart() + if yyl3921 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3916, d) + x.codecDecodeSelfFromArray(yyl3921, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49160,12 +49208,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3917Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3917Slc - var yyhl3917 bool = l >= 0 - for yyj3917 := 0; ; yyj3917++ { - if yyhl3917 { - if yyj3917 >= l { + var yys3922Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3922Slc + var yyhl3922 bool = l >= 0 + for yyj3922 := 0; ; yyj3922++ { + if yyhl3922 { + if yyj3922 >= l { break } } else { @@ -49174,33 +49222,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3917Slc = r.DecodeBytes(yys3917Slc, true, true) - yys3917 := string(yys3917Slc) + yys3922Slc = r.DecodeBytes(yys3922Slc, true, true) + yys3922 := string(yys3922Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3917 { + switch yys3922 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3918 := &x.Hard - yyv3918.CodecDecodeSelf(d) + yyv3923 := &x.Hard + yyv3923.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv3919 := &x.Scopes - yym3920 := z.DecBinary() - _ = yym3920 + yyv3924 := &x.Scopes + yym3925 := z.DecBinary() + _ = yym3925 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3919), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3924), d) } } default: - z.DecStructFieldNotFound(-1, yys3917) - } // end switch yys3917 - } // end for yyj3917 + z.DecStructFieldNotFound(-1, yys3922) + } // end switch yys3922 + } // end for yyj3922 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49208,16 +49256,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3921 int - var yyb3921 bool - var yyhl3921 bool = l >= 0 - yyj3921++ - if yyhl3921 { - yyb3921 = yyj3921 > l + var yyj3926 int + var yyb3926 bool + var yyhl3926 bool = l >= 0 + yyj3926++ + if yyhl3926 { + yyb3926 = yyj3926 > l } else { - yyb3921 = r.CheckBreak() + yyb3926 = r.CheckBreak() } - if yyb3921 { + if yyb3926 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49225,16 +49273,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3922 := &x.Hard - yyv3922.CodecDecodeSelf(d) + yyv3927 := &x.Hard + yyv3927.CodecDecodeSelf(d) } - yyj3921++ - if yyhl3921 { - yyb3921 = yyj3921 > l + yyj3926++ + if yyhl3926 { + yyb3926 = yyj3926 > l } else { - yyb3921 = r.CheckBreak() + yyb3926 = r.CheckBreak() } - if yyb3921 { + if yyb3926 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49242,26 +49290,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv3923 := &x.Scopes - yym3924 := z.DecBinary() - _ = yym3924 + yyv3928 := &x.Scopes + yym3929 := z.DecBinary() + _ = yym3929 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3923), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv3928), d) } } for { - yyj3921++ - if yyhl3921 { - yyb3921 = yyj3921 > l + yyj3926++ + if yyhl3926 { + yyb3926 = yyj3926 > l } else { - yyb3921 = r.CheckBreak() + yyb3926 = r.CheckBreak() } - if yyb3921 { + if yyb3926 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3921-1, "") + z.DecStructFieldNotFound(yyj3926-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49273,34 +49321,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3925 := z.EncBinary() - _ = yym3925 + yym3930 := z.EncBinary() + _ = yym3930 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3926 := !z.EncBinary() - yy2arr3926 := z.EncBasicHandle().StructToArray - var yyq3926 [2]bool - _, _, _ = yysep3926, yyq3926, yy2arr3926 - const yyr3926 bool = false - yyq3926[0] = len(x.Hard) != 0 - yyq3926[1] = len(x.Used) != 0 - var yynn3926 int - if yyr3926 || yy2arr3926 { + yysep3931 := !z.EncBinary() + yy2arr3931 := z.EncBasicHandle().StructToArray + var yyq3931 [2]bool + _, _, _ = yysep3931, yyq3931, yy2arr3931 + const yyr3931 bool = false + yyq3931[0] = len(x.Hard) != 0 + yyq3931[1] = len(x.Used) != 0 + var yynn3931 int + if yyr3931 || yy2arr3931 { r.EncodeArrayStart(2) } else { - yynn3926 = 0 - for _, b := range yyq3926 { + yynn3931 = 0 + for _, b := range yyq3931 { if b { - yynn3926++ + yynn3931++ } } - r.EncodeMapStart(yynn3926) - yynn3926 = 0 + r.EncodeMapStart(yynn3931) + yynn3931 = 0 } - if yyr3926 || yy2arr3926 { + if yyr3931 || yy2arr3931 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3926[0] { + if yyq3931[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -49310,7 +49358,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3926[0] { + if yyq3931[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49321,9 +49369,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3926 || yy2arr3926 { + if yyr3931 || yy2arr3931 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3926[1] { + if yyq3931[1] { if x.Used == nil { r.EncodeNil() } else { @@ -49333,7 +49381,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3926[1] { + if yyq3931[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49344,7 +49392,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3926 || yy2arr3926 { + if yyr3931 || yy2arr3931 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49357,25 +49405,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3929 := z.DecBinary() - _ = yym3929 + yym3934 := z.DecBinary() + _ = yym3934 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3930 := r.ContainerType() - if yyct3930 == codecSelferValueTypeMap1234 { - yyl3930 := r.ReadMapStart() - if yyl3930 == 0 { + yyct3935 := r.ContainerType() + if yyct3935 == codecSelferValueTypeMap1234 { + yyl3935 := r.ReadMapStart() + if yyl3935 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3930, d) + x.codecDecodeSelfFromMap(yyl3935, d) } - } else if yyct3930 == codecSelferValueTypeArray1234 { - yyl3930 := r.ReadArrayStart() - if yyl3930 == 0 { + } else if yyct3935 == codecSelferValueTypeArray1234 { + yyl3935 := r.ReadArrayStart() + if yyl3935 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3930, d) + x.codecDecodeSelfFromArray(yyl3935, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49387,12 +49435,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3931Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3931Slc - var yyhl3931 bool = l >= 0 - for yyj3931 := 0; ; yyj3931++ { - if yyhl3931 { - if yyj3931 >= l { + var yys3936Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3936Slc + var yyhl3936 bool = l >= 0 + for yyj3936 := 0; ; yyj3936++ { + if yyhl3936 { + if yyj3936 >= l { break } } else { @@ -49401,28 +49449,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3931Slc = r.DecodeBytes(yys3931Slc, true, true) - yys3931 := string(yys3931Slc) + yys3936Slc = r.DecodeBytes(yys3936Slc, true, true) + yys3936 := string(yys3936Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3931 { + switch yys3936 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3932 := &x.Hard - yyv3932.CodecDecodeSelf(d) + yyv3937 := &x.Hard + yyv3937.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3933 := &x.Used - yyv3933.CodecDecodeSelf(d) + yyv3938 := &x.Used + yyv3938.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3931) - } // end switch yys3931 - } // end for yyj3931 + z.DecStructFieldNotFound(-1, yys3936) + } // end switch yys3936 + } // end for yyj3936 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49430,16 +49478,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3934 int - var yyb3934 bool - var yyhl3934 bool = l >= 0 - yyj3934++ - if yyhl3934 { - yyb3934 = yyj3934 > l + var yyj3939 int + var yyb3939 bool + var yyhl3939 bool = l >= 0 + yyj3939++ + if yyhl3939 { + yyb3939 = yyj3939 > l } else { - yyb3934 = r.CheckBreak() + yyb3939 = r.CheckBreak() } - if yyb3934 { + if yyb3939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49447,16 +49495,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3935 := &x.Hard - yyv3935.CodecDecodeSelf(d) + yyv3940 := &x.Hard + yyv3940.CodecDecodeSelf(d) } - yyj3934++ - if yyhl3934 { - yyb3934 = yyj3934 > l + yyj3939++ + if yyhl3939 { + yyb3939 = yyj3939 > l } else { - yyb3934 = r.CheckBreak() + yyb3939 = r.CheckBreak() } - if yyb3934 { + if yyb3939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49464,21 +49512,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3936 := &x.Used - yyv3936.CodecDecodeSelf(d) + yyv3941 := &x.Used + yyv3941.CodecDecodeSelf(d) } for { - yyj3934++ - if yyhl3934 { - yyb3934 = yyj3934 > l + yyj3939++ + if yyhl3939 { + yyb3939 = yyj3939 > l } else { - yyb3934 = r.CheckBreak() + yyb3939 = r.CheckBreak() } - if yyb3934 { + if yyb3939 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3934-1, "") + z.DecStructFieldNotFound(yyj3939-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49490,39 +49538,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3937 := z.EncBinary() - _ = yym3937 + yym3942 := z.EncBinary() + _ = yym3942 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3938 := !z.EncBinary() - yy2arr3938 := z.EncBasicHandle().StructToArray - var yyq3938 [5]bool - _, _, _ = yysep3938, yyq3938, yy2arr3938 - const yyr3938 bool = false - yyq3938[0] = x.Kind != "" - yyq3938[1] = x.APIVersion != "" - yyq3938[2] = true - yyq3938[3] = true - yyq3938[4] = true - var yynn3938 int - if yyr3938 || yy2arr3938 { + yysep3943 := !z.EncBinary() + yy2arr3943 := z.EncBasicHandle().StructToArray + var yyq3943 [5]bool + _, _, _ = yysep3943, yyq3943, yy2arr3943 + const yyr3943 bool = false + yyq3943[0] = x.Kind != "" + yyq3943[1] = x.APIVersion != "" + yyq3943[2] = true + yyq3943[3] = true + yyq3943[4] = true + var yynn3943 int + if yyr3943 || yy2arr3943 { r.EncodeArrayStart(5) } else { - yynn3938 = 0 - for _, b := range yyq3938 { + yynn3943 = 0 + for _, b := range yyq3943 { if b { - yynn3938++ + yynn3943++ } } - r.EncodeMapStart(yynn3938) - yynn3938 = 0 + r.EncodeMapStart(yynn3943) + yynn3943 = 0 } - if yyr3938 || yy2arr3938 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3938[0] { - yym3940 := z.EncBinary() - _ = yym3940 + if yyq3943[0] { + yym3945 := z.EncBinary() + _ = yym3945 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49531,23 +49579,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3938[0] { + if yyq3943[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3941 := z.EncBinary() - _ = yym3941 + yym3946 := z.EncBinary() + _ = yym3946 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3938 || yy2arr3938 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3938[1] { - yym3943 := z.EncBinary() - _ = yym3943 + if yyq3943[1] { + yym3948 := z.EncBinary() + _ = yym3948 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49556,70 +49604,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3938[1] { + if yyq3943[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3944 := z.EncBinary() - _ = yym3944 + yym3949 := z.EncBinary() + _ = yym3949 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3938 || yy2arr3938 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3938[2] { - yy3946 := &x.ObjectMeta - yy3946.CodecEncodeSelf(e) + if yyq3943[2] { + yy3951 := &x.ObjectMeta + yy3951.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3938[2] { + if yyq3943[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3947 := &x.ObjectMeta - yy3947.CodecEncodeSelf(e) + yy3952 := &x.ObjectMeta + yy3952.CodecEncodeSelf(e) } } - if yyr3938 || yy2arr3938 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3938[3] { - yy3949 := &x.Spec - yy3949.CodecEncodeSelf(e) + if yyq3943[3] { + yy3954 := &x.Spec + yy3954.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3938[3] { + if yyq3943[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3950 := &x.Spec - yy3950.CodecEncodeSelf(e) + yy3955 := &x.Spec + yy3955.CodecEncodeSelf(e) } } - if yyr3938 || yy2arr3938 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3938[4] { - yy3952 := &x.Status - yy3952.CodecEncodeSelf(e) + if yyq3943[4] { + yy3957 := &x.Status + yy3957.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3938[4] { + if yyq3943[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3953 := &x.Status - yy3953.CodecEncodeSelf(e) + yy3958 := &x.Status + yy3958.CodecEncodeSelf(e) } } - if yyr3938 || yy2arr3938 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49632,25 +49680,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3954 := z.DecBinary() - _ = yym3954 + yym3959 := z.DecBinary() + _ = yym3959 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3955 := r.ContainerType() - if yyct3955 == codecSelferValueTypeMap1234 { - yyl3955 := r.ReadMapStart() - if yyl3955 == 0 { + yyct3960 := r.ContainerType() + if yyct3960 == codecSelferValueTypeMap1234 { + yyl3960 := r.ReadMapStart() + if yyl3960 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3955, d) + x.codecDecodeSelfFromMap(yyl3960, d) } - } else if yyct3955 == codecSelferValueTypeArray1234 { - yyl3955 := r.ReadArrayStart() - if yyl3955 == 0 { + } else if yyct3960 == codecSelferValueTypeArray1234 { + yyl3960 := r.ReadArrayStart() + if yyl3960 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3955, d) + x.codecDecodeSelfFromArray(yyl3960, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49662,12 +49710,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3956Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3956Slc - var yyhl3956 bool = l >= 0 - for yyj3956 := 0; ; yyj3956++ { - if yyhl3956 { - if yyj3956 >= l { + var yys3961Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3961Slc + var yyhl3961 bool = l >= 0 + for yyj3961 := 0; ; yyj3961++ { + if yyhl3961 { + if yyj3961 >= l { break } } else { @@ -49676,10 +49724,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3956Slc = r.DecodeBytes(yys3956Slc, true, true) - yys3956 := string(yys3956Slc) + yys3961Slc = r.DecodeBytes(yys3961Slc, true, true) + yys3961 := string(yys3961Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3956 { + switch yys3961 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49696,27 +49744,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3959 := &x.ObjectMeta - yyv3959.CodecDecodeSelf(d) + yyv3964 := &x.ObjectMeta + yyv3964.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3960 := &x.Spec - yyv3960.CodecDecodeSelf(d) + yyv3965 := &x.Spec + yyv3965.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3961 := &x.Status - yyv3961.CodecDecodeSelf(d) + yyv3966 := &x.Status + yyv3966.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3956) - } // end switch yys3956 - } // end for yyj3956 + z.DecStructFieldNotFound(-1, yys3961) + } // end switch yys3961 + } // end for yyj3961 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49724,16 +49772,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3962 int - var yyb3962 bool - var yyhl3962 bool = l >= 0 - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + var yyj3967 int + var yyb3967 bool + var yyhl3967 bool = l >= 0 + yyj3967++ + if yyhl3967 { + yyb3967 = yyj3967 > l } else { - yyb3962 = r.CheckBreak() + yyb3967 = r.CheckBreak() } - if yyb3962 { + if yyb3967 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49743,13 +49791,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3967++ + if yyhl3967 { + yyb3967 = yyj3967 > l } else { - yyb3962 = r.CheckBreak() + yyb3967 = r.CheckBreak() } - if yyb3962 { + if yyb3967 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49759,13 +49807,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3967++ + if yyhl3967 { + yyb3967 = yyj3967 > l } else { - yyb3962 = r.CheckBreak() + yyb3967 = r.CheckBreak() } - if yyb3962 { + if yyb3967 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49773,16 +49821,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3965 := &x.ObjectMeta - yyv3965.CodecDecodeSelf(d) + yyv3970 := &x.ObjectMeta + yyv3970.CodecDecodeSelf(d) } - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3967++ + if yyhl3967 { + yyb3967 = yyj3967 > l } else { - yyb3962 = r.CheckBreak() + yyb3967 = r.CheckBreak() } - if yyb3962 { + if yyb3967 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49790,16 +49838,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3966 := &x.Spec - yyv3966.CodecDecodeSelf(d) + yyv3971 := &x.Spec + yyv3971.CodecDecodeSelf(d) } - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3967++ + if yyhl3967 { + yyb3967 = yyj3967 > l } else { - yyb3962 = r.CheckBreak() + yyb3967 = r.CheckBreak() } - if yyb3962 { + if yyb3967 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49807,21 +49855,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3967 := &x.Status - yyv3967.CodecDecodeSelf(d) + yyv3972 := &x.Status + yyv3972.CodecDecodeSelf(d) } for { - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3967++ + if yyhl3967 { + yyb3967 = yyj3967 > l } else { - yyb3962 = r.CheckBreak() + yyb3967 = r.CheckBreak() } - if yyb3962 { + if yyb3967 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3962-1, "") + z.DecStructFieldNotFound(yyj3967-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49833,37 +49881,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3968 := z.EncBinary() - _ = yym3968 + yym3973 := z.EncBinary() + _ = yym3973 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3969 := !z.EncBinary() - yy2arr3969 := z.EncBasicHandle().StructToArray - var yyq3969 [4]bool - _, _, _ = yysep3969, yyq3969, yy2arr3969 - const yyr3969 bool = false - yyq3969[0] = x.Kind != "" - yyq3969[1] = x.APIVersion != "" - yyq3969[2] = true - var yynn3969 int - if yyr3969 || yy2arr3969 { + yysep3974 := !z.EncBinary() + yy2arr3974 := z.EncBasicHandle().StructToArray + var yyq3974 [4]bool + _, _, _ = yysep3974, yyq3974, yy2arr3974 + const yyr3974 bool = false + yyq3974[0] = x.Kind != "" + yyq3974[1] = x.APIVersion != "" + yyq3974[2] = true + var yynn3974 int + if yyr3974 || yy2arr3974 { r.EncodeArrayStart(4) } else { - yynn3969 = 1 - for _, b := range yyq3969 { + yynn3974 = 1 + for _, b := range yyq3974 { if b { - yynn3969++ + yynn3974++ } } - r.EncodeMapStart(yynn3969) - yynn3969 = 0 + r.EncodeMapStart(yynn3974) + yynn3974 = 0 } - if yyr3969 || yy2arr3969 { + if yyr3974 || yy2arr3974 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3969[0] { - yym3971 := z.EncBinary() - _ = yym3971 + if yyq3974[0] { + yym3976 := z.EncBinary() + _ = yym3976 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49872,23 +49920,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3969[0] { + if yyq3974[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3972 := z.EncBinary() - _ = yym3972 + yym3977 := z.EncBinary() + _ = yym3977 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3969 || yy2arr3969 { + if yyr3974 || yy2arr3974 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3969[1] { - yym3974 := z.EncBinary() - _ = yym3974 + if yyq3974[1] { + yym3979 := z.EncBinary() + _ = yym3979 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49897,54 +49945,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3969[1] { + if yyq3974[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3975 := z.EncBinary() - _ = yym3975 + yym3980 := z.EncBinary() + _ = yym3980 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3969 || yy2arr3969 { + if yyr3974 || yy2arr3974 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3969[2] { - yy3977 := &x.ListMeta - yym3978 := z.EncBinary() - _ = yym3978 + if yyq3974[2] { + yy3982 := &x.ListMeta + yym3983 := z.EncBinary() + _ = yym3983 if false { - } else if z.HasExtensions() && z.EncExt(yy3977) { + } else if z.HasExtensions() && z.EncExt(yy3982) { } else { - z.EncFallback(yy3977) + z.EncFallback(yy3982) } } else { r.EncodeNil() } } else { - if yyq3969[2] { + if yyq3974[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3979 := &x.ListMeta - yym3980 := z.EncBinary() - _ = yym3980 + yy3984 := &x.ListMeta + yym3985 := z.EncBinary() + _ = yym3985 if false { - } else if z.HasExtensions() && z.EncExt(yy3979) { + } else if z.HasExtensions() && z.EncExt(yy3984) { } else { - z.EncFallback(yy3979) + z.EncFallback(yy3984) } } } - if yyr3969 || yy2arr3969 { + if yyr3974 || yy2arr3974 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3982 := z.EncBinary() - _ = yym3982 + yym3987 := z.EncBinary() + _ = yym3987 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -49957,15 +50005,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3983 := z.EncBinary() - _ = yym3983 + yym3988 := z.EncBinary() + _ = yym3988 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr3969 || yy2arr3969 { + if yyr3974 || yy2arr3974 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49978,25 +50026,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3984 := z.DecBinary() - _ = yym3984 + yym3989 := z.DecBinary() + _ = yym3989 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3985 := r.ContainerType() - if yyct3985 == codecSelferValueTypeMap1234 { - yyl3985 := r.ReadMapStart() - if yyl3985 == 0 { + yyct3990 := r.ContainerType() + if yyct3990 == codecSelferValueTypeMap1234 { + yyl3990 := r.ReadMapStart() + if yyl3990 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3985, d) + x.codecDecodeSelfFromMap(yyl3990, d) } - } else if yyct3985 == codecSelferValueTypeArray1234 { - yyl3985 := r.ReadArrayStart() - if yyl3985 == 0 { + } else if yyct3990 == codecSelferValueTypeArray1234 { + yyl3990 := r.ReadArrayStart() + if yyl3990 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3985, d) + x.codecDecodeSelfFromArray(yyl3990, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50008,12 +50056,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3986Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3986Slc - var yyhl3986 bool = l >= 0 - for yyj3986 := 0; ; yyj3986++ { - if yyhl3986 { - if yyj3986 >= l { + var yys3991Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3991Slc + var yyhl3991 bool = l >= 0 + for yyj3991 := 0; ; yyj3991++ { + if yyhl3991 { + if yyj3991 >= l { break } } else { @@ -50022,10 +50070,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3986Slc = r.DecodeBytes(yys3986Slc, true, true) - yys3986 := string(yys3986Slc) + yys3991Slc = r.DecodeBytes(yys3991Slc, true, true) + yys3991 := string(yys3991Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3986 { + switch yys3991 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50042,31 +50090,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3989 := &x.ListMeta - yym3990 := z.DecBinary() - _ = yym3990 + yyv3994 := &x.ListMeta + yym3995 := z.DecBinary() + _ = yym3995 if false { - } else if z.HasExtensions() && z.DecExt(yyv3989) { + } else if z.HasExtensions() && z.DecExt(yyv3994) { } else { - z.DecFallback(yyv3989, false) + z.DecFallback(yyv3994, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3991 := &x.Items - yym3992 := z.DecBinary() - _ = yym3992 + yyv3996 := &x.Items + yym3997 := z.DecBinary() + _ = yym3997 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv3991), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv3996), d) } } default: - z.DecStructFieldNotFound(-1, yys3986) - } // end switch yys3986 - } // end for yyj3986 + z.DecStructFieldNotFound(-1, yys3991) + } // end switch yys3991 + } // end for yyj3991 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50074,16 +50122,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3993 int - var yyb3993 bool - var yyhl3993 bool = l >= 0 - yyj3993++ - if yyhl3993 { - yyb3993 = yyj3993 > l + var yyj3998 int + var yyb3998 bool + var yyhl3998 bool = l >= 0 + yyj3998++ + if yyhl3998 { + yyb3998 = yyj3998 > l } else { - yyb3993 = r.CheckBreak() + yyb3998 = r.CheckBreak() } - if yyb3993 { + if yyb3998 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50093,13 +50141,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj3993++ - if yyhl3993 { - yyb3993 = yyj3993 > l + yyj3998++ + if yyhl3998 { + yyb3998 = yyj3998 > l } else { - yyb3993 = r.CheckBreak() + yyb3998 = r.CheckBreak() } - if yyb3993 { + if yyb3998 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50109,13 +50157,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj3993++ - if yyhl3993 { - yyb3993 = yyj3993 > l + yyj3998++ + if yyhl3998 { + yyb3998 = yyj3998 > l } else { - yyb3993 = r.CheckBreak() + yyb3998 = r.CheckBreak() } - if yyb3993 { + if yyb3998 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50123,22 +50171,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3996 := &x.ListMeta - yym3997 := z.DecBinary() - _ = yym3997 + yyv4001 := &x.ListMeta + yym4002 := z.DecBinary() + _ = yym4002 if false { - } else if z.HasExtensions() && z.DecExt(yyv3996) { + } else if z.HasExtensions() && z.DecExt(yyv4001) { } else { - z.DecFallback(yyv3996, false) + z.DecFallback(yyv4001, false) } } - yyj3993++ - if yyhl3993 { - yyb3993 = yyj3993 > l + yyj3998++ + if yyhl3998 { + yyb3998 = yyj3998 > l } else { - yyb3993 = r.CheckBreak() + yyb3998 = r.CheckBreak() } - if yyb3993 { + if yyb3998 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50146,26 +50194,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3998 := &x.Items - yym3999 := z.DecBinary() - _ = yym3999 + yyv4003 := &x.Items + yym4004 := z.DecBinary() + _ = yym4004 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv3998), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4003), d) } } for { - yyj3993++ - if yyhl3993 { - yyb3993 = yyj3993 > l + yyj3998++ + if yyhl3998 { + yyb3998 = yyj3998 > l } else { - yyb3993 = r.CheckBreak() + yyb3998 = r.CheckBreak() } - if yyb3993 { + if yyb3998 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3993-1, "") + z.DecStructFieldNotFound(yyj3998-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50177,40 +50225,40 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4000 := z.EncBinary() - _ = yym4000 + yym4005 := z.EncBinary() + _ = yym4005 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4001 := !z.EncBinary() - yy2arr4001 := z.EncBasicHandle().StructToArray - var yyq4001 [6]bool - _, _, _ = yysep4001, yyq4001, yy2arr4001 - const yyr4001 bool = false - yyq4001[0] = x.Kind != "" - yyq4001[1] = x.APIVersion != "" - yyq4001[2] = true - yyq4001[3] = len(x.Data) != 0 - yyq4001[4] = len(x.StringData) != 0 - yyq4001[5] = x.Type != "" - var yynn4001 int - if yyr4001 || yy2arr4001 { + yysep4006 := !z.EncBinary() + yy2arr4006 := z.EncBasicHandle().StructToArray + var yyq4006 [6]bool + _, _, _ = yysep4006, yyq4006, yy2arr4006 + const yyr4006 bool = false + yyq4006[0] = x.Kind != "" + yyq4006[1] = x.APIVersion != "" + yyq4006[2] = true + yyq4006[3] = len(x.Data) != 0 + yyq4006[4] = len(x.StringData) != 0 + yyq4006[5] = x.Type != "" + var yynn4006 int + if yyr4006 || yy2arr4006 { r.EncodeArrayStart(6) } else { - yynn4001 = 0 - for _, b := range yyq4001 { + yynn4006 = 0 + for _, b := range yyq4006 { if b { - yynn4001++ + yynn4006++ } } - r.EncodeMapStart(yynn4001) - yynn4001 = 0 + r.EncodeMapStart(yynn4006) + yynn4006 = 0 } - if yyr4001 || yy2arr4001 { + if yyr4006 || yy2arr4006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4001[0] { - yym4003 := z.EncBinary() - _ = yym4003 + if yyq4006[0] { + yym4008 := z.EncBinary() + _ = yym4008 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50219,23 +50267,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4001[0] { + if yyq4006[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4004 := z.EncBinary() - _ = yym4004 + yym4009 := z.EncBinary() + _ = yym4009 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4001 || yy2arr4001 { + if yyr4006 || yy2arr4006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4001[1] { - yym4006 := z.EncBinary() - _ = yym4006 + if yyq4006[1] { + yym4011 := z.EncBinary() + _ = yym4011 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50244,43 +50292,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4001[1] { + if yyq4006[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4007 := z.EncBinary() - _ = yym4007 + yym4012 := z.EncBinary() + _ = yym4012 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4001 || yy2arr4001 { + if yyr4006 || yy2arr4006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4001[2] { - yy4009 := &x.ObjectMeta - yy4009.CodecEncodeSelf(e) + if yyq4006[2] { + yy4014 := &x.ObjectMeta + yy4014.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4001[2] { + if yyq4006[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4010 := &x.ObjectMeta - yy4010.CodecEncodeSelf(e) + yy4015 := &x.ObjectMeta + yy4015.CodecEncodeSelf(e) } } - if yyr4001 || yy2arr4001 { + if yyr4006 || yy2arr4006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4001[3] { + if yyq4006[3] { if x.Data == nil { r.EncodeNil() } else { - yym4012 := z.EncBinary() - _ = yym4012 + yym4017 := z.EncBinary() + _ = yym4017 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -50290,15 +50338,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4001[3] { + if yyq4006[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4013 := z.EncBinary() - _ = yym4013 + yym4018 := z.EncBinary() + _ = yym4018 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -50306,14 +50354,14 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4001 || yy2arr4001 { + if yyr4006 || yy2arr4006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4001[4] { + if yyq4006[4] { if x.StringData == nil { r.EncodeNil() } else { - yym4015 := z.EncBinary() - _ = yym4015 + yym4020 := z.EncBinary() + _ = yym4020 if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) @@ -50323,15 +50371,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4001[4] { + if yyq4006[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stringData")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StringData == nil { r.EncodeNil() } else { - yym4016 := z.EncBinary() - _ = yym4016 + yym4021 := z.EncBinary() + _ = yym4021 if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) @@ -50339,22 +50387,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4001 || yy2arr4001 { + if yyr4006 || yy2arr4006 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4001[5] { + if yyq4006[5] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4001[5] { + if yyq4006[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4001 || yy2arr4001 { + if yyr4006 || yy2arr4006 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50367,25 +50415,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4018 := z.DecBinary() - _ = yym4018 + yym4023 := z.DecBinary() + _ = yym4023 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4019 := r.ContainerType() - if yyct4019 == codecSelferValueTypeMap1234 { - yyl4019 := r.ReadMapStart() - if yyl4019 == 0 { + yyct4024 := r.ContainerType() + if yyct4024 == codecSelferValueTypeMap1234 { + yyl4024 := r.ReadMapStart() + if yyl4024 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4019, d) + x.codecDecodeSelfFromMap(yyl4024, d) } - } else if yyct4019 == codecSelferValueTypeArray1234 { - yyl4019 := r.ReadArrayStart() - if yyl4019 == 0 { + } else if yyct4024 == codecSelferValueTypeArray1234 { + yyl4024 := r.ReadArrayStart() + if yyl4024 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4019, d) + x.codecDecodeSelfFromArray(yyl4024, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50397,12 +50445,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4020Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4020Slc - var yyhl4020 bool = l >= 0 - for yyj4020 := 0; ; yyj4020++ { - if yyhl4020 { - if yyj4020 >= l { + var yys4025Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4025Slc + var yyhl4025 bool = l >= 0 + for yyj4025 := 0; ; yyj4025++ { + if yyhl4025 { + if yyj4025 >= l { break } } else { @@ -50411,10 +50459,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4020Slc = r.DecodeBytes(yys4020Slc, true, true) - yys4020 := string(yys4020Slc) + yys4025Slc = r.DecodeBytes(yys4025Slc, true, true) + yys4025 := string(yys4025Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4020 { + switch yys4025 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50431,31 +50479,31 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4023 := &x.ObjectMeta - yyv4023.CodecDecodeSelf(d) + yyv4028 := &x.ObjectMeta + yyv4028.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4024 := &x.Data - yym4025 := z.DecBinary() - _ = yym4025 + yyv4029 := &x.Data + yym4030 := z.DecBinary() + _ = yym4030 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4024), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4029), d) } } case "stringData": if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4026 := &x.StringData - yym4027 := z.DecBinary() - _ = yym4027 + yyv4031 := &x.StringData + yym4032 := z.DecBinary() + _ = yym4032 if false { } else { - z.F.DecMapStringStringX(yyv4026, false, d) + z.F.DecMapStringStringX(yyv4031, false, d) } } case "type": @@ -50465,9 +50513,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4020) - } // end switch yys4020 - } // end for yyj4020 + z.DecStructFieldNotFound(-1, yys4025) + } // end switch yys4025 + } // end for yyj4025 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50475,16 +50523,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4029 int - var yyb4029 bool - var yyhl4029 bool = l >= 0 - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + var yyj4034 int + var yyb4034 bool + var yyhl4034 bool = l >= 0 + yyj4034++ + if yyhl4034 { + yyb4034 = yyj4034 > l } else { - yyb4029 = r.CheckBreak() + yyb4034 = r.CheckBreak() } - if yyb4029 { + if yyb4034 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50494,13 +50542,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + yyj4034++ + if yyhl4034 { + yyb4034 = yyj4034 > l } else { - yyb4029 = r.CheckBreak() + yyb4034 = r.CheckBreak() } - if yyb4029 { + if yyb4034 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50510,13 +50558,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + yyj4034++ + if yyhl4034 { + yyb4034 = yyj4034 > l } else { - yyb4029 = r.CheckBreak() + yyb4034 = r.CheckBreak() } - if yyb4029 { + if yyb4034 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50524,16 +50572,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4032 := &x.ObjectMeta - yyv4032.CodecDecodeSelf(d) + yyv4037 := &x.ObjectMeta + yyv4037.CodecDecodeSelf(d) } - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + yyj4034++ + if yyhl4034 { + yyb4034 = yyj4034 > l } else { - yyb4029 = r.CheckBreak() + yyb4034 = r.CheckBreak() } - if yyb4029 { + if yyb4034 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50541,21 +50589,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4033 := &x.Data - yym4034 := z.DecBinary() - _ = yym4034 + yyv4038 := &x.Data + yym4039 := z.DecBinary() + _ = yym4039 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4033), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4038), d) } } - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + yyj4034++ + if yyhl4034 { + yyb4034 = yyj4034 > l } else { - yyb4029 = r.CheckBreak() + yyb4034 = r.CheckBreak() } - if yyb4029 { + if yyb4034 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50563,21 +50611,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4035 := &x.StringData - yym4036 := z.DecBinary() - _ = yym4036 + yyv4040 := &x.StringData + yym4041 := z.DecBinary() + _ = yym4041 if false { } else { - z.F.DecMapStringStringX(yyv4035, false, d) + z.F.DecMapStringStringX(yyv4040, false, d) } } - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + yyj4034++ + if yyhl4034 { + yyb4034 = yyj4034 > l } else { - yyb4029 = r.CheckBreak() + yyb4034 = r.CheckBreak() } - if yyb4029 { + if yyb4034 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50588,17 +50636,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj4029++ - if yyhl4029 { - yyb4029 = yyj4029 > l + yyj4034++ + if yyhl4034 { + yyb4034 = yyj4034 > l } else { - yyb4029 = r.CheckBreak() + yyb4034 = r.CheckBreak() } - if yyb4029 { + if yyb4034 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4029-1, "") + z.DecStructFieldNotFound(yyj4034-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50607,8 +50655,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4038 := z.EncBinary() - _ = yym4038 + yym4043 := z.EncBinary() + _ = yym4043 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -50620,8 +50668,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4039 := z.DecBinary() - _ = yym4039 + yym4044 := z.DecBinary() + _ = yym4044 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -50636,37 +50684,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4040 := z.EncBinary() - _ = yym4040 + yym4045 := z.EncBinary() + _ = yym4045 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4041 := !z.EncBinary() - yy2arr4041 := z.EncBasicHandle().StructToArray - var yyq4041 [4]bool - _, _, _ = yysep4041, yyq4041, yy2arr4041 - const yyr4041 bool = false - yyq4041[0] = x.Kind != "" - yyq4041[1] = x.APIVersion != "" - yyq4041[2] = true - var yynn4041 int - if yyr4041 || yy2arr4041 { + yysep4046 := !z.EncBinary() + yy2arr4046 := z.EncBasicHandle().StructToArray + var yyq4046 [4]bool + _, _, _ = yysep4046, yyq4046, yy2arr4046 + const yyr4046 bool = false + yyq4046[0] = x.Kind != "" + yyq4046[1] = x.APIVersion != "" + yyq4046[2] = true + var yynn4046 int + if yyr4046 || yy2arr4046 { r.EncodeArrayStart(4) } else { - yynn4041 = 1 - for _, b := range yyq4041 { + yynn4046 = 1 + for _, b := range yyq4046 { if b { - yynn4041++ + yynn4046++ } } - r.EncodeMapStart(yynn4041) - yynn4041 = 0 + r.EncodeMapStart(yynn4046) + yynn4046 = 0 } - if yyr4041 || yy2arr4041 { + if yyr4046 || yy2arr4046 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4041[0] { - yym4043 := z.EncBinary() - _ = yym4043 + if yyq4046[0] { + yym4048 := z.EncBinary() + _ = yym4048 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50675,23 +50723,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4041[0] { + if yyq4046[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4044 := z.EncBinary() - _ = yym4044 + yym4049 := z.EncBinary() + _ = yym4049 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4041 || yy2arr4041 { + if yyr4046 || yy2arr4046 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4041[1] { - yym4046 := z.EncBinary() - _ = yym4046 + if yyq4046[1] { + yym4051 := z.EncBinary() + _ = yym4051 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50700,54 +50748,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4041[1] { + if yyq4046[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4047 := z.EncBinary() - _ = yym4047 + yym4052 := z.EncBinary() + _ = yym4052 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4041 || yy2arr4041 { + if yyr4046 || yy2arr4046 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4041[2] { - yy4049 := &x.ListMeta - yym4050 := z.EncBinary() - _ = yym4050 + if yyq4046[2] { + yy4054 := &x.ListMeta + yym4055 := z.EncBinary() + _ = yym4055 if false { - } else if z.HasExtensions() && z.EncExt(yy4049) { + } else if z.HasExtensions() && z.EncExt(yy4054) { } else { - z.EncFallback(yy4049) + z.EncFallback(yy4054) } } else { r.EncodeNil() } } else { - if yyq4041[2] { + if yyq4046[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4051 := &x.ListMeta - yym4052 := z.EncBinary() - _ = yym4052 + yy4056 := &x.ListMeta + yym4057 := z.EncBinary() + _ = yym4057 if false { - } else if z.HasExtensions() && z.EncExt(yy4051) { + } else if z.HasExtensions() && z.EncExt(yy4056) { } else { - z.EncFallback(yy4051) + z.EncFallback(yy4056) } } } - if yyr4041 || yy2arr4041 { + if yyr4046 || yy2arr4046 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4054 := z.EncBinary() - _ = yym4054 + yym4059 := z.EncBinary() + _ = yym4059 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -50760,15 +50808,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4055 := z.EncBinary() - _ = yym4055 + yym4060 := z.EncBinary() + _ = yym4060 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4041 || yy2arr4041 { + if yyr4046 || yy2arr4046 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50781,25 +50829,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4056 := z.DecBinary() - _ = yym4056 + yym4061 := z.DecBinary() + _ = yym4061 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4057 := r.ContainerType() - if yyct4057 == codecSelferValueTypeMap1234 { - yyl4057 := r.ReadMapStart() - if yyl4057 == 0 { + yyct4062 := r.ContainerType() + if yyct4062 == codecSelferValueTypeMap1234 { + yyl4062 := r.ReadMapStart() + if yyl4062 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4057, d) + x.codecDecodeSelfFromMap(yyl4062, d) } - } else if yyct4057 == codecSelferValueTypeArray1234 { - yyl4057 := r.ReadArrayStart() - if yyl4057 == 0 { + } else if yyct4062 == codecSelferValueTypeArray1234 { + yyl4062 := r.ReadArrayStart() + if yyl4062 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4057, d) + x.codecDecodeSelfFromArray(yyl4062, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50811,12 +50859,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4058Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4058Slc - var yyhl4058 bool = l >= 0 - for yyj4058 := 0; ; yyj4058++ { - if yyhl4058 { - if yyj4058 >= l { + var yys4063Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4063Slc + var yyhl4063 bool = l >= 0 + for yyj4063 := 0; ; yyj4063++ { + if yyhl4063 { + if yyj4063 >= l { break } } else { @@ -50825,10 +50873,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4058Slc = r.DecodeBytes(yys4058Slc, true, true) - yys4058 := string(yys4058Slc) + yys4063Slc = r.DecodeBytes(yys4063Slc, true, true) + yys4063 := string(yys4063Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4058 { + switch yys4063 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50845,31 +50893,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4061 := &x.ListMeta - yym4062 := z.DecBinary() - _ = yym4062 + yyv4066 := &x.ListMeta + yym4067 := z.DecBinary() + _ = yym4067 if false { - } else if z.HasExtensions() && z.DecExt(yyv4061) { + } else if z.HasExtensions() && z.DecExt(yyv4066) { } else { - z.DecFallback(yyv4061, false) + z.DecFallback(yyv4066, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4063 := &x.Items - yym4064 := z.DecBinary() - _ = yym4064 + yyv4068 := &x.Items + yym4069 := z.DecBinary() + _ = yym4069 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4063), d) + h.decSliceSecret((*[]Secret)(yyv4068), d) } } default: - z.DecStructFieldNotFound(-1, yys4058) - } // end switch yys4058 - } // end for yyj4058 + z.DecStructFieldNotFound(-1, yys4063) + } // end switch yys4063 + } // end for yyj4063 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50877,16 +50925,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4065 int - var yyb4065 bool - var yyhl4065 bool = l >= 0 - yyj4065++ - if yyhl4065 { - yyb4065 = yyj4065 > l + var yyj4070 int + var yyb4070 bool + var yyhl4070 bool = l >= 0 + yyj4070++ + if yyhl4070 { + yyb4070 = yyj4070 > l } else { - yyb4065 = r.CheckBreak() + yyb4070 = r.CheckBreak() } - if yyb4065 { + if yyb4070 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50896,13 +50944,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4065++ - if yyhl4065 { - yyb4065 = yyj4065 > l + yyj4070++ + if yyhl4070 { + yyb4070 = yyj4070 > l } else { - yyb4065 = r.CheckBreak() + yyb4070 = r.CheckBreak() } - if yyb4065 { + if yyb4070 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50912,13 +50960,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4065++ - if yyhl4065 { - yyb4065 = yyj4065 > l + yyj4070++ + if yyhl4070 { + yyb4070 = yyj4070 > l } else { - yyb4065 = r.CheckBreak() + yyb4070 = r.CheckBreak() } - if yyb4065 { + if yyb4070 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50926,22 +50974,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4068 := &x.ListMeta - yym4069 := z.DecBinary() - _ = yym4069 + yyv4073 := &x.ListMeta + yym4074 := z.DecBinary() + _ = yym4074 if false { - } else if z.HasExtensions() && z.DecExt(yyv4068) { + } else if z.HasExtensions() && z.DecExt(yyv4073) { } else { - z.DecFallback(yyv4068, false) + z.DecFallback(yyv4073, false) } } - yyj4065++ - if yyhl4065 { - yyb4065 = yyj4065 > l + yyj4070++ + if yyhl4070 { + yyb4070 = yyj4070 > l } else { - yyb4065 = r.CheckBreak() + yyb4070 = r.CheckBreak() } - if yyb4065 { + if yyb4070 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50949,26 +50997,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4070 := &x.Items - yym4071 := z.DecBinary() - _ = yym4071 + yyv4075 := &x.Items + yym4076 := z.DecBinary() + _ = yym4076 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4070), d) + h.decSliceSecret((*[]Secret)(yyv4075), d) } } for { - yyj4065++ - if yyhl4065 { - yyb4065 = yyj4065 > l + yyj4070++ + if yyhl4070 { + yyb4070 = yyj4070 > l } else { - yyb4065 = r.CheckBreak() + yyb4070 = r.CheckBreak() } - if yyb4065 { + if yyb4070 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4065-1, "") + z.DecStructFieldNotFound(yyj4070-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50980,38 +51028,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4072 := z.EncBinary() - _ = yym4072 + yym4077 := z.EncBinary() + _ = yym4077 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4073 := !z.EncBinary() - yy2arr4073 := z.EncBasicHandle().StructToArray - var yyq4073 [4]bool - _, _, _ = yysep4073, yyq4073, yy2arr4073 - const yyr4073 bool = false - yyq4073[0] = x.Kind != "" - yyq4073[1] = x.APIVersion != "" - yyq4073[2] = true - yyq4073[3] = len(x.Data) != 0 - var yynn4073 int - if yyr4073 || yy2arr4073 { + yysep4078 := !z.EncBinary() + yy2arr4078 := z.EncBasicHandle().StructToArray + var yyq4078 [4]bool + _, _, _ = yysep4078, yyq4078, yy2arr4078 + const yyr4078 bool = false + yyq4078[0] = x.Kind != "" + yyq4078[1] = x.APIVersion != "" + yyq4078[2] = true + yyq4078[3] = len(x.Data) != 0 + var yynn4078 int + if yyr4078 || yy2arr4078 { r.EncodeArrayStart(4) } else { - yynn4073 = 0 - for _, b := range yyq4073 { + yynn4078 = 0 + for _, b := range yyq4078 { if b { - yynn4073++ + yynn4078++ } } - r.EncodeMapStart(yynn4073) - yynn4073 = 0 + r.EncodeMapStart(yynn4078) + yynn4078 = 0 } - if yyr4073 || yy2arr4073 { + if yyr4078 || yy2arr4078 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4073[0] { - yym4075 := z.EncBinary() - _ = yym4075 + if yyq4078[0] { + yym4080 := z.EncBinary() + _ = yym4080 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51020,23 +51068,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4073[0] { + if yyq4078[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4076 := z.EncBinary() - _ = yym4076 + yym4081 := z.EncBinary() + _ = yym4081 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4073 || yy2arr4073 { + if yyr4078 || yy2arr4078 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4073[1] { - yym4078 := z.EncBinary() - _ = yym4078 + if yyq4078[1] { + yym4083 := z.EncBinary() + _ = yym4083 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51045,43 +51093,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4073[1] { + if yyq4078[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4079 := z.EncBinary() - _ = yym4079 + yym4084 := z.EncBinary() + _ = yym4084 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4073 || yy2arr4073 { + if yyr4078 || yy2arr4078 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4073[2] { - yy4081 := &x.ObjectMeta - yy4081.CodecEncodeSelf(e) + if yyq4078[2] { + yy4086 := &x.ObjectMeta + yy4086.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4073[2] { + if yyq4078[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4082 := &x.ObjectMeta - yy4082.CodecEncodeSelf(e) + yy4087 := &x.ObjectMeta + yy4087.CodecEncodeSelf(e) } } - if yyr4073 || yy2arr4073 { + if yyr4078 || yy2arr4078 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4073[3] { + if yyq4078[3] { if x.Data == nil { r.EncodeNil() } else { - yym4084 := z.EncBinary() - _ = yym4084 + yym4089 := z.EncBinary() + _ = yym4089 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -51091,15 +51139,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4073[3] { + if yyq4078[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4085 := z.EncBinary() - _ = yym4085 + yym4090 := z.EncBinary() + _ = yym4090 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -51107,7 +51155,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4073 || yy2arr4073 { + if yyr4078 || yy2arr4078 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51120,25 +51168,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4086 := z.DecBinary() - _ = yym4086 + yym4091 := z.DecBinary() + _ = yym4091 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4087 := r.ContainerType() - if yyct4087 == codecSelferValueTypeMap1234 { - yyl4087 := r.ReadMapStart() - if yyl4087 == 0 { + yyct4092 := r.ContainerType() + if yyct4092 == codecSelferValueTypeMap1234 { + yyl4092 := r.ReadMapStart() + if yyl4092 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4087, d) + x.codecDecodeSelfFromMap(yyl4092, d) } - } else if yyct4087 == codecSelferValueTypeArray1234 { - yyl4087 := r.ReadArrayStart() - if yyl4087 == 0 { + } else if yyct4092 == codecSelferValueTypeArray1234 { + yyl4092 := r.ReadArrayStart() + if yyl4092 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4087, d) + x.codecDecodeSelfFromArray(yyl4092, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51150,12 +51198,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4088Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4088Slc - var yyhl4088 bool = l >= 0 - for yyj4088 := 0; ; yyj4088++ { - if yyhl4088 { - if yyj4088 >= l { + var yys4093Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4093Slc + var yyhl4093 bool = l >= 0 + for yyj4093 := 0; ; yyj4093++ { + if yyhl4093 { + if yyj4093 >= l { break } } else { @@ -51164,10 +51212,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4088Slc = r.DecodeBytes(yys4088Slc, true, true) - yys4088 := string(yys4088Slc) + yys4093Slc = r.DecodeBytes(yys4093Slc, true, true) + yys4093 := string(yys4093Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4088 { + switch yys4093 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51184,25 +51232,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4091 := &x.ObjectMeta - yyv4091.CodecDecodeSelf(d) + yyv4096 := &x.ObjectMeta + yyv4096.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4092 := &x.Data - yym4093 := z.DecBinary() - _ = yym4093 + yyv4097 := &x.Data + yym4098 := z.DecBinary() + _ = yym4098 if false { } else { - z.F.DecMapStringStringX(yyv4092, false, d) + z.F.DecMapStringStringX(yyv4097, false, d) } } default: - z.DecStructFieldNotFound(-1, yys4088) - } // end switch yys4088 - } // end for yyj4088 + z.DecStructFieldNotFound(-1, yys4093) + } // end switch yys4093 + } // end for yyj4093 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51210,16 +51258,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4094 int - var yyb4094 bool - var yyhl4094 bool = l >= 0 - yyj4094++ - if yyhl4094 { - yyb4094 = yyj4094 > l + var yyj4099 int + var yyb4099 bool + var yyhl4099 bool = l >= 0 + yyj4099++ + if yyhl4099 { + yyb4099 = yyj4099 > l } else { - yyb4094 = r.CheckBreak() + yyb4099 = r.CheckBreak() } - if yyb4094 { + if yyb4099 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51229,13 +51277,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4094++ - if yyhl4094 { - yyb4094 = yyj4094 > l + yyj4099++ + if yyhl4099 { + yyb4099 = yyj4099 > l } else { - yyb4094 = r.CheckBreak() + yyb4099 = r.CheckBreak() } - if yyb4094 { + if yyb4099 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51245,13 +51293,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4094++ - if yyhl4094 { - yyb4094 = yyj4094 > l + yyj4099++ + if yyhl4099 { + yyb4099 = yyj4099 > l } else { - yyb4094 = r.CheckBreak() + yyb4099 = r.CheckBreak() } - if yyb4094 { + if yyb4099 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51259,16 +51307,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4097 := &x.ObjectMeta - yyv4097.CodecDecodeSelf(d) + yyv4102 := &x.ObjectMeta + yyv4102.CodecDecodeSelf(d) } - yyj4094++ - if yyhl4094 { - yyb4094 = yyj4094 > l + yyj4099++ + if yyhl4099 { + yyb4099 = yyj4099 > l } else { - yyb4094 = r.CheckBreak() + yyb4099 = r.CheckBreak() } - if yyb4094 { + if yyb4099 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51276,26 +51324,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4098 := &x.Data - yym4099 := z.DecBinary() - _ = yym4099 + yyv4103 := &x.Data + yym4104 := z.DecBinary() + _ = yym4104 if false { } else { - z.F.DecMapStringStringX(yyv4098, false, d) + z.F.DecMapStringStringX(yyv4103, false, d) } } for { - yyj4094++ - if yyhl4094 { - yyb4094 = yyj4094 > l + yyj4099++ + if yyhl4099 { + yyb4099 = yyj4099 > l } else { - yyb4094 = r.CheckBreak() + yyb4099 = r.CheckBreak() } - if yyb4094 { + if yyb4099 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4094-1, "") + z.DecStructFieldNotFound(yyj4099-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51307,37 +51355,37 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4100 := z.EncBinary() - _ = yym4100 + yym4105 := z.EncBinary() + _ = yym4105 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4101 := !z.EncBinary() - yy2arr4101 := z.EncBasicHandle().StructToArray - var yyq4101 [4]bool - _, _, _ = yysep4101, yyq4101, yy2arr4101 - const yyr4101 bool = false - yyq4101[0] = x.Kind != "" - yyq4101[1] = x.APIVersion != "" - yyq4101[2] = true - var yynn4101 int - if yyr4101 || yy2arr4101 { + yysep4106 := !z.EncBinary() + yy2arr4106 := z.EncBasicHandle().StructToArray + var yyq4106 [4]bool + _, _, _ = yysep4106, yyq4106, yy2arr4106 + const yyr4106 bool = false + yyq4106[0] = x.Kind != "" + yyq4106[1] = x.APIVersion != "" + yyq4106[2] = true + var yynn4106 int + if yyr4106 || yy2arr4106 { r.EncodeArrayStart(4) } else { - yynn4101 = 1 - for _, b := range yyq4101 { + yynn4106 = 1 + for _, b := range yyq4106 { if b { - yynn4101++ + yynn4106++ } } - r.EncodeMapStart(yynn4101) - yynn4101 = 0 + r.EncodeMapStart(yynn4106) + yynn4106 = 0 } - if yyr4101 || yy2arr4101 { + if yyr4106 || yy2arr4106 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4101[0] { - yym4103 := z.EncBinary() - _ = yym4103 + if yyq4106[0] { + yym4108 := z.EncBinary() + _ = yym4108 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51346,23 +51394,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4101[0] { + if yyq4106[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4104 := z.EncBinary() - _ = yym4104 + yym4109 := z.EncBinary() + _ = yym4109 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4101 || yy2arr4101 { + if yyr4106 || yy2arr4106 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4101[1] { - yym4106 := z.EncBinary() - _ = yym4106 + if yyq4106[1] { + yym4111 := z.EncBinary() + _ = yym4111 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51371,54 +51419,54 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4101[1] { + if yyq4106[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4107 := z.EncBinary() - _ = yym4107 + yym4112 := z.EncBinary() + _ = yym4112 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4101 || yy2arr4101 { + if yyr4106 || yy2arr4106 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4101[2] { - yy4109 := &x.ListMeta - yym4110 := z.EncBinary() - _ = yym4110 + if yyq4106[2] { + yy4114 := &x.ListMeta + yym4115 := z.EncBinary() + _ = yym4115 if false { - } else if z.HasExtensions() && z.EncExt(yy4109) { + } else if z.HasExtensions() && z.EncExt(yy4114) { } else { - z.EncFallback(yy4109) + z.EncFallback(yy4114) } } else { r.EncodeNil() } } else { - if yyq4101[2] { + if yyq4106[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4111 := &x.ListMeta - yym4112 := z.EncBinary() - _ = yym4112 + yy4116 := &x.ListMeta + yym4117 := z.EncBinary() + _ = yym4117 if false { - } else if z.HasExtensions() && z.EncExt(yy4111) { + } else if z.HasExtensions() && z.EncExt(yy4116) { } else { - z.EncFallback(yy4111) + z.EncFallback(yy4116) } } } - if yyr4101 || yy2arr4101 { + if yyr4106 || yy2arr4106 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4114 := z.EncBinary() - _ = yym4114 + yym4119 := z.EncBinary() + _ = yym4119 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -51431,15 +51479,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4115 := z.EncBinary() - _ = yym4115 + yym4120 := z.EncBinary() + _ = yym4120 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) } } } - if yyr4101 || yy2arr4101 { + if yyr4106 || yy2arr4106 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51452,25 +51500,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4116 := z.DecBinary() - _ = yym4116 + yym4121 := z.DecBinary() + _ = yym4121 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4117 := r.ContainerType() - if yyct4117 == codecSelferValueTypeMap1234 { - yyl4117 := r.ReadMapStart() - if yyl4117 == 0 { + yyct4122 := r.ContainerType() + if yyct4122 == codecSelferValueTypeMap1234 { + yyl4122 := r.ReadMapStart() + if yyl4122 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4117, d) + x.codecDecodeSelfFromMap(yyl4122, d) } - } else if yyct4117 == codecSelferValueTypeArray1234 { - yyl4117 := r.ReadArrayStart() - if yyl4117 == 0 { + } else if yyct4122 == codecSelferValueTypeArray1234 { + yyl4122 := r.ReadArrayStart() + if yyl4122 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4117, d) + x.codecDecodeSelfFromArray(yyl4122, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51482,12 +51530,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4118Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4118Slc - var yyhl4118 bool = l >= 0 - for yyj4118 := 0; ; yyj4118++ { - if yyhl4118 { - if yyj4118 >= l { + var yys4123Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4123Slc + var yyhl4123 bool = l >= 0 + for yyj4123 := 0; ; yyj4123++ { + if yyhl4123 { + if yyj4123 >= l { break } } else { @@ -51496,10 +51544,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4118Slc = r.DecodeBytes(yys4118Slc, true, true) - yys4118 := string(yys4118Slc) + yys4123Slc = r.DecodeBytes(yys4123Slc, true, true) + yys4123 := string(yys4123Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4118 { + switch yys4123 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51516,31 +51564,31 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4121 := &x.ListMeta - yym4122 := z.DecBinary() - _ = yym4122 + yyv4126 := &x.ListMeta + yym4127 := z.DecBinary() + _ = yym4127 if false { - } else if z.HasExtensions() && z.DecExt(yyv4121) { + } else if z.HasExtensions() && z.DecExt(yyv4126) { } else { - z.DecFallback(yyv4121, false) + z.DecFallback(yyv4126, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4123 := &x.Items - yym4124 := z.DecBinary() - _ = yym4124 + yyv4128 := &x.Items + yym4129 := z.DecBinary() + _ = yym4129 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4123), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4128), d) } } default: - z.DecStructFieldNotFound(-1, yys4118) - } // end switch yys4118 - } // end for yyj4118 + z.DecStructFieldNotFound(-1, yys4123) + } // end switch yys4123 + } // end for yyj4123 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51548,16 +51596,16 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4125 int - var yyb4125 bool - var yyhl4125 bool = l >= 0 - yyj4125++ - if yyhl4125 { - yyb4125 = yyj4125 > l + var yyj4130 int + var yyb4130 bool + var yyhl4130 bool = l >= 0 + yyj4130++ + if yyhl4130 { + yyb4130 = yyj4130 > l } else { - yyb4125 = r.CheckBreak() + yyb4130 = r.CheckBreak() } - if yyb4125 { + if yyb4130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51567,13 +51615,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4125++ - if yyhl4125 { - yyb4125 = yyj4125 > l + yyj4130++ + if yyhl4130 { + yyb4130 = yyj4130 > l } else { - yyb4125 = r.CheckBreak() + yyb4130 = r.CheckBreak() } - if yyb4125 { + if yyb4130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51583,13 +51631,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4125++ - if yyhl4125 { - yyb4125 = yyj4125 > l + yyj4130++ + if yyhl4130 { + yyb4130 = yyj4130 > l } else { - yyb4125 = r.CheckBreak() + yyb4130 = r.CheckBreak() } - if yyb4125 { + if yyb4130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51597,22 +51645,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4128 := &x.ListMeta - yym4129 := z.DecBinary() - _ = yym4129 + yyv4133 := &x.ListMeta + yym4134 := z.DecBinary() + _ = yym4134 if false { - } else if z.HasExtensions() && z.DecExt(yyv4128) { + } else if z.HasExtensions() && z.DecExt(yyv4133) { } else { - z.DecFallback(yyv4128, false) + z.DecFallback(yyv4133, false) } } - yyj4125++ - if yyhl4125 { - yyb4125 = yyj4125 > l + yyj4130++ + if yyhl4130 { + yyb4130 = yyj4130 > l } else { - yyb4125 = r.CheckBreak() + yyb4130 = r.CheckBreak() } - if yyb4125 { + if yyb4130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51620,26 +51668,26 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4130 := &x.Items - yym4131 := z.DecBinary() - _ = yym4131 + yyv4135 := &x.Items + yym4136 := z.DecBinary() + _ = yym4136 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4130), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4135), d) } } for { - yyj4125++ - if yyhl4125 { - yyb4125 = yyj4125 > l + yyj4130++ + if yyhl4130 { + yyb4130 = yyj4130 > l } else { - yyb4125 = r.CheckBreak() + yyb4130 = r.CheckBreak() } - if yyb4125 { + if yyb4130 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4125-1, "") + z.DecStructFieldNotFound(yyj4130-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51648,8 +51696,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4132 := z.EncBinary() - _ = yym4132 + yym4137 := z.EncBinary() + _ = yym4137 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -51661,8 +51709,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4133 := z.DecBinary() - _ = yym4133 + yym4138 := z.DecBinary() + _ = yym4138 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -51677,32 +51725,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4134 := z.EncBinary() - _ = yym4134 + yym4139 := z.EncBinary() + _ = yym4139 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4135 := !z.EncBinary() - yy2arr4135 := z.EncBasicHandle().StructToArray - var yyq4135 [4]bool - _, _, _ = yysep4135, yyq4135, yy2arr4135 - const yyr4135 bool = false - yyq4135[2] = x.Message != "" - yyq4135[3] = x.Error != "" - var yynn4135 int - if yyr4135 || yy2arr4135 { + yysep4140 := !z.EncBinary() + yy2arr4140 := z.EncBasicHandle().StructToArray + var yyq4140 [4]bool + _, _, _ = yysep4140, yyq4140, yy2arr4140 + const yyr4140 bool = false + yyq4140[2] = x.Message != "" + yyq4140[3] = x.Error != "" + var yynn4140 int + if yyr4140 || yy2arr4140 { r.EncodeArrayStart(4) } else { - yynn4135 = 2 - for _, b := range yyq4135 { + yynn4140 = 2 + for _, b := range yyq4140 { if b { - yynn4135++ + yynn4140++ } } - r.EncodeMapStart(yynn4135) - yynn4135 = 0 + r.EncodeMapStart(yynn4140) + yynn4140 = 0 } - if yyr4135 || yy2arr4135 { + if yyr4140 || yy2arr4140 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -51711,7 +51759,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr4135 || yy2arr4135 { + if yyr4140 || yy2arr4140 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -51720,11 +51768,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr4135 || yy2arr4135 { + if yyr4140 || yy2arr4140 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4135[2] { - yym4139 := z.EncBinary() - _ = yym4139 + if yyq4140[2] { + yym4144 := z.EncBinary() + _ = yym4144 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -51733,23 +51781,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4135[2] { + if yyq4140[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4140 := z.EncBinary() - _ = yym4140 + yym4145 := z.EncBinary() + _ = yym4145 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr4135 || yy2arr4135 { + if yyr4140 || yy2arr4140 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4135[3] { - yym4142 := z.EncBinary() - _ = yym4142 + if yyq4140[3] { + yym4147 := z.EncBinary() + _ = yym4147 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -51758,19 +51806,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4135[3] { + if yyq4140[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4143 := z.EncBinary() - _ = yym4143 + yym4148 := z.EncBinary() + _ = yym4148 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr4135 || yy2arr4135 { + if yyr4140 || yy2arr4140 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51783,25 +51831,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4144 := z.DecBinary() - _ = yym4144 + yym4149 := z.DecBinary() + _ = yym4149 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4145 := r.ContainerType() - if yyct4145 == codecSelferValueTypeMap1234 { - yyl4145 := r.ReadMapStart() - if yyl4145 == 0 { + yyct4150 := r.ContainerType() + if yyct4150 == codecSelferValueTypeMap1234 { + yyl4150 := r.ReadMapStart() + if yyl4150 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4145, d) + x.codecDecodeSelfFromMap(yyl4150, d) } - } else if yyct4145 == codecSelferValueTypeArray1234 { - yyl4145 := r.ReadArrayStart() - if yyl4145 == 0 { + } else if yyct4150 == codecSelferValueTypeArray1234 { + yyl4150 := r.ReadArrayStart() + if yyl4150 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4145, d) + x.codecDecodeSelfFromArray(yyl4150, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51813,12 +51861,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4146Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4146Slc - var yyhl4146 bool = l >= 0 - for yyj4146 := 0; ; yyj4146++ { - if yyhl4146 { - if yyj4146 >= l { + var yys4151Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4151Slc + var yyhl4151 bool = l >= 0 + for yyj4151 := 0; ; yyj4151++ { + if yyhl4151 { + if yyj4151 >= l { break } } else { @@ -51827,10 +51875,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4146Slc = r.DecodeBytes(yys4146Slc, true, true) - yys4146 := string(yys4146Slc) + yys4151Slc = r.DecodeBytes(yys4151Slc, true, true) + yys4151 := string(yys4151Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4146 { + switch yys4151 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -51856,9 +51904,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4146) - } // end switch yys4146 - } // end for yyj4146 + z.DecStructFieldNotFound(-1, yys4151) + } // end switch yys4151 + } // end for yyj4151 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51866,16 +51914,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4151 int - var yyb4151 bool - var yyhl4151 bool = l >= 0 - yyj4151++ - if yyhl4151 { - yyb4151 = yyj4151 > l + var yyj4156 int + var yyb4156 bool + var yyhl4156 bool = l >= 0 + yyj4156++ + if yyhl4156 { + yyb4156 = yyj4156 > l } else { - yyb4151 = r.CheckBreak() + yyb4156 = r.CheckBreak() } - if yyb4151 { + if yyb4156 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51885,13 +51933,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj4151++ - if yyhl4151 { - yyb4151 = yyj4151 > l + yyj4156++ + if yyhl4156 { + yyb4156 = yyj4156 > l } else { - yyb4151 = r.CheckBreak() + yyb4156 = r.CheckBreak() } - if yyb4151 { + if yyb4156 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51901,13 +51949,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj4151++ - if yyhl4151 { - yyb4151 = yyj4151 > l + yyj4156++ + if yyhl4156 { + yyb4156 = yyj4156 > l } else { - yyb4151 = r.CheckBreak() + yyb4156 = r.CheckBreak() } - if yyb4151 { + if yyb4156 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51917,13 +51965,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj4151++ - if yyhl4151 { - yyb4151 = yyj4151 > l + yyj4156++ + if yyhl4156 { + yyb4156 = yyj4156 > l } else { - yyb4151 = r.CheckBreak() + yyb4156 = r.CheckBreak() } - if yyb4151 { + if yyb4156 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51934,17 +51982,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj4151++ - if yyhl4151 { - yyb4151 = yyj4151 > l + yyj4156++ + if yyhl4156 { + yyb4156 = yyj4156 > l } else { - yyb4151 = r.CheckBreak() + yyb4156 = r.CheckBreak() } - if yyb4151 { + if yyb4156 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4151-1, "") + z.DecStructFieldNotFound(yyj4156-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51956,38 +52004,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4156 := z.EncBinary() - _ = yym4156 + yym4161 := z.EncBinary() + _ = yym4161 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4157 := !z.EncBinary() - yy2arr4157 := z.EncBasicHandle().StructToArray - var yyq4157 [4]bool - _, _, _ = yysep4157, yyq4157, yy2arr4157 - const yyr4157 bool = false - yyq4157[0] = x.Kind != "" - yyq4157[1] = x.APIVersion != "" - yyq4157[2] = true - yyq4157[3] = len(x.Conditions) != 0 - var yynn4157 int - if yyr4157 || yy2arr4157 { + yysep4162 := !z.EncBinary() + yy2arr4162 := z.EncBasicHandle().StructToArray + var yyq4162 [4]bool + _, _, _ = yysep4162, yyq4162, yy2arr4162 + const yyr4162 bool = false + yyq4162[0] = x.Kind != "" + yyq4162[1] = x.APIVersion != "" + yyq4162[2] = true + yyq4162[3] = len(x.Conditions) != 0 + var yynn4162 int + if yyr4162 || yy2arr4162 { r.EncodeArrayStart(4) } else { - yynn4157 = 0 - for _, b := range yyq4157 { + yynn4162 = 0 + for _, b := range yyq4162 { if b { - yynn4157++ + yynn4162++ } } - r.EncodeMapStart(yynn4157) - yynn4157 = 0 + r.EncodeMapStart(yynn4162) + yynn4162 = 0 } - if yyr4157 || yy2arr4157 { + if yyr4162 || yy2arr4162 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4157[0] { - yym4159 := z.EncBinary() - _ = yym4159 + if yyq4162[0] { + yym4164 := z.EncBinary() + _ = yym4164 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51996,23 +52044,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4157[0] { + if yyq4162[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4160 := z.EncBinary() - _ = yym4160 + yym4165 := z.EncBinary() + _ = yym4165 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4157 || yy2arr4157 { + if yyr4162 || yy2arr4162 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4157[1] { - yym4162 := z.EncBinary() - _ = yym4162 + if yyq4162[1] { + yym4167 := z.EncBinary() + _ = yym4167 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52021,43 +52069,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4157[1] { + if yyq4162[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4163 := z.EncBinary() - _ = yym4163 + yym4168 := z.EncBinary() + _ = yym4168 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4157 || yy2arr4157 { + if yyr4162 || yy2arr4162 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4157[2] { - yy4165 := &x.ObjectMeta - yy4165.CodecEncodeSelf(e) + if yyq4162[2] { + yy4170 := &x.ObjectMeta + yy4170.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4157[2] { + if yyq4162[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4166 := &x.ObjectMeta - yy4166.CodecEncodeSelf(e) + yy4171 := &x.ObjectMeta + yy4171.CodecEncodeSelf(e) } } - if yyr4157 || yy2arr4157 { + if yyr4162 || yy2arr4162 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4157[3] { + if yyq4162[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym4168 := z.EncBinary() - _ = yym4168 + yym4173 := z.EncBinary() + _ = yym4173 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -52067,15 +52115,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4157[3] { + if yyq4162[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym4169 := z.EncBinary() - _ = yym4169 + yym4174 := z.EncBinary() + _ = yym4174 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -52083,7 +52131,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4157 || yy2arr4157 { + if yyr4162 || yy2arr4162 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52096,25 +52144,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4170 := z.DecBinary() - _ = yym4170 + yym4175 := z.DecBinary() + _ = yym4175 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4171 := r.ContainerType() - if yyct4171 == codecSelferValueTypeMap1234 { - yyl4171 := r.ReadMapStart() - if yyl4171 == 0 { + yyct4176 := r.ContainerType() + if yyct4176 == codecSelferValueTypeMap1234 { + yyl4176 := r.ReadMapStart() + if yyl4176 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4171, d) + x.codecDecodeSelfFromMap(yyl4176, d) } - } else if yyct4171 == codecSelferValueTypeArray1234 { - yyl4171 := r.ReadArrayStart() - if yyl4171 == 0 { + } else if yyct4176 == codecSelferValueTypeArray1234 { + yyl4176 := r.ReadArrayStart() + if yyl4176 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4171, d) + x.codecDecodeSelfFromArray(yyl4176, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52126,12 +52174,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4172Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4172Slc - var yyhl4172 bool = l >= 0 - for yyj4172 := 0; ; yyj4172++ { - if yyhl4172 { - if yyj4172 >= l { + var yys4177Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4177Slc + var yyhl4177 bool = l >= 0 + for yyj4177 := 0; ; yyj4177++ { + if yyhl4177 { + if yyj4177 >= l { break } } else { @@ -52140,10 +52188,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4172Slc = r.DecodeBytes(yys4172Slc, true, true) - yys4172 := string(yys4172Slc) + yys4177Slc = r.DecodeBytes(yys4177Slc, true, true) + yys4177 := string(yys4177Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4172 { + switch yys4177 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52160,25 +52208,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4175 := &x.ObjectMeta - yyv4175.CodecDecodeSelf(d) + yyv4180 := &x.ObjectMeta + yyv4180.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4176 := &x.Conditions - yym4177 := z.DecBinary() - _ = yym4177 + yyv4181 := &x.Conditions + yym4182 := z.DecBinary() + _ = yym4182 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4176), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4181), d) } } default: - z.DecStructFieldNotFound(-1, yys4172) - } // end switch yys4172 - } // end for yyj4172 + z.DecStructFieldNotFound(-1, yys4177) + } // end switch yys4177 + } // end for yyj4177 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52186,16 +52234,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4178 int - var yyb4178 bool - var yyhl4178 bool = l >= 0 - yyj4178++ - if yyhl4178 { - yyb4178 = yyj4178 > l + var yyj4183 int + var yyb4183 bool + var yyhl4183 bool = l >= 0 + yyj4183++ + if yyhl4183 { + yyb4183 = yyj4183 > l } else { - yyb4178 = r.CheckBreak() + yyb4183 = r.CheckBreak() } - if yyb4178 { + if yyb4183 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52205,13 +52253,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4178++ - if yyhl4178 { - yyb4178 = yyj4178 > l + yyj4183++ + if yyhl4183 { + yyb4183 = yyj4183 > l } else { - yyb4178 = r.CheckBreak() + yyb4183 = r.CheckBreak() } - if yyb4178 { + if yyb4183 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52221,13 +52269,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4178++ - if yyhl4178 { - yyb4178 = yyj4178 > l + yyj4183++ + if yyhl4183 { + yyb4183 = yyj4183 > l } else { - yyb4178 = r.CheckBreak() + yyb4183 = r.CheckBreak() } - if yyb4178 { + if yyb4183 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52235,16 +52283,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4181 := &x.ObjectMeta - yyv4181.CodecDecodeSelf(d) + yyv4186 := &x.ObjectMeta + yyv4186.CodecDecodeSelf(d) } - yyj4178++ - if yyhl4178 { - yyb4178 = yyj4178 > l + yyj4183++ + if yyhl4183 { + yyb4183 = yyj4183 > l } else { - yyb4178 = r.CheckBreak() + yyb4183 = r.CheckBreak() } - if yyb4178 { + if yyb4183 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52252,26 +52300,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4182 := &x.Conditions - yym4183 := z.DecBinary() - _ = yym4183 + yyv4187 := &x.Conditions + yym4188 := z.DecBinary() + _ = yym4188 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4182), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4187), d) } } for { - yyj4178++ - if yyhl4178 { - yyb4178 = yyj4178 > l + yyj4183++ + if yyhl4183 { + yyb4183 = yyj4183 > l } else { - yyb4178 = r.CheckBreak() + yyb4183 = r.CheckBreak() } - if yyb4178 { + if yyb4183 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4178-1, "") + z.DecStructFieldNotFound(yyj4183-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52283,37 +52331,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4184 := z.EncBinary() - _ = yym4184 + yym4189 := z.EncBinary() + _ = yym4189 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4185 := !z.EncBinary() - yy2arr4185 := z.EncBasicHandle().StructToArray - var yyq4185 [4]bool - _, _, _ = yysep4185, yyq4185, yy2arr4185 - const yyr4185 bool = false - yyq4185[0] = x.Kind != "" - yyq4185[1] = x.APIVersion != "" - yyq4185[2] = true - var yynn4185 int - if yyr4185 || yy2arr4185 { + yysep4190 := !z.EncBinary() + yy2arr4190 := z.EncBasicHandle().StructToArray + var yyq4190 [4]bool + _, _, _ = yysep4190, yyq4190, yy2arr4190 + const yyr4190 bool = false + yyq4190[0] = x.Kind != "" + yyq4190[1] = x.APIVersion != "" + yyq4190[2] = true + var yynn4190 int + if yyr4190 || yy2arr4190 { r.EncodeArrayStart(4) } else { - yynn4185 = 1 - for _, b := range yyq4185 { + yynn4190 = 1 + for _, b := range yyq4190 { if b { - yynn4185++ + yynn4190++ } } - r.EncodeMapStart(yynn4185) - yynn4185 = 0 + r.EncodeMapStart(yynn4190) + yynn4190 = 0 } - if yyr4185 || yy2arr4185 { + if yyr4190 || yy2arr4190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4185[0] { - yym4187 := z.EncBinary() - _ = yym4187 + if yyq4190[0] { + yym4192 := z.EncBinary() + _ = yym4192 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52322,23 +52370,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4185[0] { + if yyq4190[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4188 := z.EncBinary() - _ = yym4188 + yym4193 := z.EncBinary() + _ = yym4193 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4185 || yy2arr4185 { + if yyr4190 || yy2arr4190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4185[1] { - yym4190 := z.EncBinary() - _ = yym4190 + if yyq4190[1] { + yym4195 := z.EncBinary() + _ = yym4195 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52347,54 +52395,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4185[1] { + if yyq4190[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4191 := z.EncBinary() - _ = yym4191 + yym4196 := z.EncBinary() + _ = yym4196 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4185 || yy2arr4185 { + if yyr4190 || yy2arr4190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4185[2] { - yy4193 := &x.ListMeta - yym4194 := z.EncBinary() - _ = yym4194 + if yyq4190[2] { + yy4198 := &x.ListMeta + yym4199 := z.EncBinary() + _ = yym4199 if false { - } else if z.HasExtensions() && z.EncExt(yy4193) { + } else if z.HasExtensions() && z.EncExt(yy4198) { } else { - z.EncFallback(yy4193) + z.EncFallback(yy4198) } } else { r.EncodeNil() } } else { - if yyq4185[2] { + if yyq4190[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4195 := &x.ListMeta - yym4196 := z.EncBinary() - _ = yym4196 + yy4200 := &x.ListMeta + yym4201 := z.EncBinary() + _ = yym4201 if false { - } else if z.HasExtensions() && z.EncExt(yy4195) { + } else if z.HasExtensions() && z.EncExt(yy4200) { } else { - z.EncFallback(yy4195) + z.EncFallback(yy4200) } } } - if yyr4185 || yy2arr4185 { + if yyr4190 || yy2arr4190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4198 := z.EncBinary() - _ = yym4198 + yym4203 := z.EncBinary() + _ = yym4203 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -52407,15 +52455,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4199 := z.EncBinary() - _ = yym4199 + yym4204 := z.EncBinary() + _ = yym4204 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4185 || yy2arr4185 { + if yyr4190 || yy2arr4190 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52428,25 +52476,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4200 := z.DecBinary() - _ = yym4200 + yym4205 := z.DecBinary() + _ = yym4205 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4201 := r.ContainerType() - if yyct4201 == codecSelferValueTypeMap1234 { - yyl4201 := r.ReadMapStart() - if yyl4201 == 0 { + yyct4206 := r.ContainerType() + if yyct4206 == codecSelferValueTypeMap1234 { + yyl4206 := r.ReadMapStart() + if yyl4206 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4201, d) + x.codecDecodeSelfFromMap(yyl4206, d) } - } else if yyct4201 == codecSelferValueTypeArray1234 { - yyl4201 := r.ReadArrayStart() - if yyl4201 == 0 { + } else if yyct4206 == codecSelferValueTypeArray1234 { + yyl4206 := r.ReadArrayStart() + if yyl4206 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4201, d) + x.codecDecodeSelfFromArray(yyl4206, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52458,12 +52506,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4202Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4202Slc - var yyhl4202 bool = l >= 0 - for yyj4202 := 0; ; yyj4202++ { - if yyhl4202 { - if yyj4202 >= l { + var yys4207Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4207Slc + var yyhl4207 bool = l >= 0 + for yyj4207 := 0; ; yyj4207++ { + if yyhl4207 { + if yyj4207 >= l { break } } else { @@ -52472,10 +52520,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4202Slc = r.DecodeBytes(yys4202Slc, true, true) - yys4202 := string(yys4202Slc) + yys4207Slc = r.DecodeBytes(yys4207Slc, true, true) + yys4207 := string(yys4207Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4202 { + switch yys4207 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52492,31 +52540,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4205 := &x.ListMeta - yym4206 := z.DecBinary() - _ = yym4206 + yyv4210 := &x.ListMeta + yym4211 := z.DecBinary() + _ = yym4211 if false { - } else if z.HasExtensions() && z.DecExt(yyv4205) { + } else if z.HasExtensions() && z.DecExt(yyv4210) { } else { - z.DecFallback(yyv4205, false) + z.DecFallback(yyv4210, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4207 := &x.Items - yym4208 := z.DecBinary() - _ = yym4208 + yyv4212 := &x.Items + yym4213 := z.DecBinary() + _ = yym4213 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4207), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4212), d) } } default: - z.DecStructFieldNotFound(-1, yys4202) - } // end switch yys4202 - } // end for yyj4202 + z.DecStructFieldNotFound(-1, yys4207) + } // end switch yys4207 + } // end for yyj4207 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52524,16 +52572,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4209 int - var yyb4209 bool - var yyhl4209 bool = l >= 0 - yyj4209++ - if yyhl4209 { - yyb4209 = yyj4209 > l + var yyj4214 int + var yyb4214 bool + var yyhl4214 bool = l >= 0 + yyj4214++ + if yyhl4214 { + yyb4214 = yyj4214 > l } else { - yyb4209 = r.CheckBreak() + yyb4214 = r.CheckBreak() } - if yyb4209 { + if yyb4214 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52543,13 +52591,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj4209++ - if yyhl4209 { - yyb4209 = yyj4209 > l + yyj4214++ + if yyhl4214 { + yyb4214 = yyj4214 > l } else { - yyb4209 = r.CheckBreak() + yyb4214 = r.CheckBreak() } - if yyb4209 { + if yyb4214 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52559,13 +52607,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj4209++ - if yyhl4209 { - yyb4209 = yyj4209 > l + yyj4214++ + if yyhl4214 { + yyb4214 = yyj4214 > l } else { - yyb4209 = r.CheckBreak() + yyb4214 = r.CheckBreak() } - if yyb4209 { + if yyb4214 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52573,22 +52621,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4212 := &x.ListMeta - yym4213 := z.DecBinary() - _ = yym4213 + yyv4217 := &x.ListMeta + yym4218 := z.DecBinary() + _ = yym4218 if false { - } else if z.HasExtensions() && z.DecExt(yyv4212) { + } else if z.HasExtensions() && z.DecExt(yyv4217) { } else { - z.DecFallback(yyv4212, false) + z.DecFallback(yyv4217, false) } } - yyj4209++ - if yyhl4209 { - yyb4209 = yyj4209 > l + yyj4214++ + if yyhl4214 { + yyb4214 = yyj4214 > l } else { - yyb4209 = r.CheckBreak() + yyb4214 = r.CheckBreak() } - if yyb4209 { + if yyb4214 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52596,26 +52644,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4214 := &x.Items - yym4215 := z.DecBinary() - _ = yym4215 + yyv4219 := &x.Items + yym4220 := z.DecBinary() + _ = yym4220 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4214), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4219), d) } } for { - yyj4209++ - if yyhl4209 { - yyb4209 = yyj4209 > l + yyj4214++ + if yyhl4214 { + yyb4214 = yyj4214 > l } else { - yyb4209 = r.CheckBreak() + yyb4214 = r.CheckBreak() } - if yyb4209 { + if yyb4214 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4209-1, "") + z.DecStructFieldNotFound(yyj4214-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52627,38 +52675,38 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4216 := z.EncBinary() - _ = yym4216 + yym4221 := z.EncBinary() + _ = yym4221 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4217 := !z.EncBinary() - yy2arr4217 := z.EncBasicHandle().StructToArray - var yyq4217 [1]bool - _, _, _ = yysep4217, yyq4217, yy2arr4217 - const yyr4217 bool = false - yyq4217[0] = len(x.Items) != 0 - var yynn4217 int - if yyr4217 || yy2arr4217 { + yysep4222 := !z.EncBinary() + yy2arr4222 := z.EncBasicHandle().StructToArray + var yyq4222 [1]bool + _, _, _ = yysep4222, yyq4222, yy2arr4222 + const yyr4222 bool = false + yyq4222[0] = len(x.Items) != 0 + var yynn4222 int + if yyr4222 || yy2arr4222 { r.EncodeArrayStart(1) } else { - yynn4217 = 0 - for _, b := range yyq4217 { + yynn4222 = 0 + for _, b := range yyq4222 { if b { - yynn4217++ + yynn4222++ } } - r.EncodeMapStart(yynn4217) - yynn4217 = 0 + r.EncodeMapStart(yynn4222) + yynn4222 = 0 } - if yyr4217 || yy2arr4217 { + if yyr4222 || yy2arr4222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4217[0] { + if yyq4222[0] { if x.Items == nil { r.EncodeNil() } else { - yym4219 := z.EncBinary() - _ = yym4219 + yym4224 := z.EncBinary() + _ = yym4224 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -52668,15 +52716,15 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4217[0] { + if yyq4222[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym4220 := z.EncBinary() - _ = yym4220 + yym4225 := z.EncBinary() + _ = yym4225 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -52684,7 +52732,7 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4217 || yy2arr4217 { + if yyr4222 || yy2arr4222 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52697,25 +52745,25 @@ func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4221 := z.DecBinary() - _ = yym4221 + yym4226 := z.DecBinary() + _ = yym4226 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4222 := r.ContainerType() - if yyct4222 == codecSelferValueTypeMap1234 { - yyl4222 := r.ReadMapStart() - if yyl4222 == 0 { + yyct4227 := r.ContainerType() + if yyct4227 == codecSelferValueTypeMap1234 { + yyl4227 := r.ReadMapStart() + if yyl4227 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4222, d) + x.codecDecodeSelfFromMap(yyl4227, d) } - } else if yyct4222 == codecSelferValueTypeArray1234 { - yyl4222 := r.ReadArrayStart() - if yyl4222 == 0 { + } else if yyct4227 == codecSelferValueTypeArray1234 { + yyl4227 := r.ReadArrayStart() + if yyl4227 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4222, d) + x.codecDecodeSelfFromArray(yyl4227, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52727,12 +52775,12 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4223Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4223Slc - var yyhl4223 bool = l >= 0 - for yyj4223 := 0; ; yyj4223++ { - if yyhl4223 { - if yyj4223 >= l { + var yys4228Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4228Slc + var yyhl4228 bool = l >= 0 + for yyj4228 := 0; ; yyj4228++ { + if yyhl4228 { + if yyj4228 >= l { break } } else { @@ -52741,26 +52789,26 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4223Slc = r.DecodeBytes(yys4223Slc, true, true) - yys4223 := string(yys4223Slc) + yys4228Slc = r.DecodeBytes(yys4228Slc, true, true) + yys4228 := string(yys4228Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4223 { + switch yys4228 { case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4224 := &x.Items - yym4225 := z.DecBinary() - _ = yym4225 + yyv4229 := &x.Items + yym4230 := z.DecBinary() + _ = yym4230 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4224), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4229), d) } } default: - z.DecStructFieldNotFound(-1, yys4223) - } // end switch yys4223 - } // end for yyj4223 + z.DecStructFieldNotFound(-1, yys4228) + } // end switch yys4228 + } // end for yyj4228 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52768,16 +52816,16 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4226 int - var yyb4226 bool - var yyhl4226 bool = l >= 0 - yyj4226++ - if yyhl4226 { - yyb4226 = yyj4226 > l + var yyj4231 int + var yyb4231 bool + var yyhl4231 bool = l >= 0 + yyj4231++ + if yyhl4231 { + yyb4231 = yyj4231 > l } else { - yyb4226 = r.CheckBreak() + yyb4231 = r.CheckBreak() } - if yyb4226 { + if yyb4231 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52785,26 +52833,26 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4227 := &x.Items - yym4228 := z.DecBinary() - _ = yym4228 + yyv4232 := &x.Items + yym4233 := z.DecBinary() + _ = yym4233 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4227), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4232), d) } } for { - yyj4226++ - if yyhl4226 { - yyb4226 = yyj4226 > l + yyj4231++ + if yyhl4231 { + yyb4231 = yyj4231 > l } else { - yyb4226 = r.CheckBreak() + yyb4231 = r.CheckBreak() } - if yyb4226 { + if yyb4231 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4226-1, "") + z.DecStructFieldNotFound(yyj4231-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52816,35 +52864,35 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4229 := z.EncBinary() - _ = yym4229 + yym4234 := z.EncBinary() + _ = yym4234 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4230 := !z.EncBinary() - yy2arr4230 := z.EncBasicHandle().StructToArray - var yyq4230 [3]bool - _, _, _ = yysep4230, yyq4230, yy2arr4230 - const yyr4230 bool = false - yyq4230[1] = x.FieldRef != nil - yyq4230[2] = x.ResourceFieldRef != nil - var yynn4230 int - if yyr4230 || yy2arr4230 { + yysep4235 := !z.EncBinary() + yy2arr4235 := z.EncBasicHandle().StructToArray + var yyq4235 [3]bool + _, _, _ = yysep4235, yyq4235, yy2arr4235 + const yyr4235 bool = false + yyq4235[1] = x.FieldRef != nil + yyq4235[2] = x.ResourceFieldRef != nil + var yynn4235 int + if yyr4235 || yy2arr4235 { r.EncodeArrayStart(3) } else { - yynn4230 = 1 - for _, b := range yyq4230 { + yynn4235 = 1 + for _, b := range yyq4235 { if b { - yynn4230++ + yynn4235++ } } - r.EncodeMapStart(yynn4230) - yynn4230 = 0 + r.EncodeMapStart(yynn4235) + yynn4235 = 0 } - if yyr4230 || yy2arr4230 { + if yyr4235 || yy2arr4235 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4232 := z.EncBinary() - _ = yym4232 + yym4237 := z.EncBinary() + _ = yym4237 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -52853,16 +52901,16 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4233 := z.EncBinary() - _ = yym4233 + yym4238 := z.EncBinary() + _ = yym4238 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr4230 || yy2arr4230 { + if yyr4235 || yy2arr4235 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4230[1] { + if yyq4235[1] { if x.FieldRef == nil { r.EncodeNil() } else { @@ -52872,7 +52920,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4230[1] { + if yyq4235[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -52883,9 +52931,9 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4230 || yy2arr4230 { + if yyr4235 || yy2arr4235 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4230[2] { + if yyq4235[2] { if x.ResourceFieldRef == nil { r.EncodeNil() } else { @@ -52895,7 +52943,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4230[2] { + if yyq4235[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceFieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -52906,7 +52954,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4230 || yy2arr4230 { + if yyr4235 || yy2arr4235 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52919,25 +52967,25 @@ func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4236 := z.DecBinary() - _ = yym4236 + yym4241 := z.DecBinary() + _ = yym4241 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4237 := r.ContainerType() - if yyct4237 == codecSelferValueTypeMap1234 { - yyl4237 := r.ReadMapStart() - if yyl4237 == 0 { + yyct4242 := r.ContainerType() + if yyct4242 == codecSelferValueTypeMap1234 { + yyl4242 := r.ReadMapStart() + if yyl4242 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4237, d) + x.codecDecodeSelfFromMap(yyl4242, d) } - } else if yyct4237 == codecSelferValueTypeArray1234 { - yyl4237 := r.ReadArrayStart() - if yyl4237 == 0 { + } else if yyct4242 == codecSelferValueTypeArray1234 { + yyl4242 := r.ReadArrayStart() + if yyl4242 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4237, d) + x.codecDecodeSelfFromArray(yyl4242, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52949,12 +52997,12 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4238Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4238Slc - var yyhl4238 bool = l >= 0 - for yyj4238 := 0; ; yyj4238++ { - if yyhl4238 { - if yyj4238 >= l { + var yys4243Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4243Slc + var yyhl4243 bool = l >= 0 + for yyj4243 := 0; ; yyj4243++ { + if yyhl4243 { + if yyj4243 >= l { break } } else { @@ -52963,10 +53011,10 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4238Slc = r.DecodeBytes(yys4238Slc, true, true) - yys4238 := string(yys4238Slc) + yys4243Slc = r.DecodeBytes(yys4243Slc, true, true) + yys4243 := string(yys4243Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4238 { + switch yys4243 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -52996,9 +53044,9 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.ResourceFieldRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4238) - } // end switch yys4238 - } // end for yyj4238 + z.DecStructFieldNotFound(-1, yys4243) + } // end switch yys4243 + } // end for yyj4243 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53006,16 +53054,16 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4242 int - var yyb4242 bool - var yyhl4242 bool = l >= 0 - yyj4242++ - if yyhl4242 { - yyb4242 = yyj4242 > l + var yyj4247 int + var yyb4247 bool + var yyhl4247 bool = l >= 0 + yyj4247++ + if yyhl4247 { + yyb4247 = yyj4247 > l } else { - yyb4242 = r.CheckBreak() + yyb4247 = r.CheckBreak() } - if yyb4242 { + if yyb4247 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53025,13 +53073,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj4242++ - if yyhl4242 { - yyb4242 = yyj4242 > l + yyj4247++ + if yyhl4247 { + yyb4247 = yyj4247 > l } else { - yyb4242 = r.CheckBreak() + yyb4247 = r.CheckBreak() } - if yyb4242 { + if yyb4247 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53046,13 +53094,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.FieldRef.CodecDecodeSelf(d) } - yyj4242++ - if yyhl4242 { - yyb4242 = yyj4242 > l + yyj4247++ + if yyhl4247 { + yyb4247 = yyj4247 > l } else { - yyb4242 = r.CheckBreak() + yyb4247 = r.CheckBreak() } - if yyb4242 { + if yyb4247 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53068,17 +53116,17 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.ResourceFieldRef.CodecDecodeSelf(d) } for { - yyj4242++ - if yyhl4242 { - yyb4242 = yyj4242 > l + yyj4247++ + if yyhl4247 { + yyb4247 = yyj4247 > l } else { - yyb4242 = r.CheckBreak() + yyb4247 = r.CheckBreak() } - if yyb4242 { + if yyb4247 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4242-1, "") + z.DecStructFieldNotFound(yyj4247-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53090,38 +53138,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4246 := z.EncBinary() - _ = yym4246 + yym4251 := z.EncBinary() + _ = yym4251 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4247 := !z.EncBinary() - yy2arr4247 := z.EncBasicHandle().StructToArray - var yyq4247 [6]bool - _, _, _ = yysep4247, yyq4247, yy2arr4247 - const yyr4247 bool = false - yyq4247[0] = x.Capabilities != nil - yyq4247[1] = x.Privileged != nil - yyq4247[2] = x.SELinuxOptions != nil - yyq4247[3] = x.RunAsUser != nil - yyq4247[4] = x.RunAsNonRoot != nil - yyq4247[5] = x.ReadOnlyRootFilesystem != nil - var yynn4247 int - if yyr4247 || yy2arr4247 { + yysep4252 := !z.EncBinary() + yy2arr4252 := z.EncBasicHandle().StructToArray + var yyq4252 [6]bool + _, _, _ = yysep4252, yyq4252, yy2arr4252 + const yyr4252 bool = false + yyq4252[0] = x.Capabilities != nil + yyq4252[1] = x.Privileged != nil + yyq4252[2] = x.SELinuxOptions != nil + yyq4252[3] = x.RunAsUser != nil + yyq4252[4] = x.RunAsNonRoot != nil + yyq4252[5] = x.ReadOnlyRootFilesystem != nil + var yynn4252 int + if yyr4252 || yy2arr4252 { r.EncodeArrayStart(6) } else { - yynn4247 = 0 - for _, b := range yyq4247 { + yynn4252 = 0 + for _, b := range yyq4252 { if b { - yynn4247++ + yynn4252++ } } - r.EncodeMapStart(yynn4247) - yynn4247 = 0 + r.EncodeMapStart(yynn4252) + yynn4252 = 0 } - if yyr4247 || yy2arr4247 { + if yyr4252 || yy2arr4252 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4247[0] { + if yyq4252[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -53131,7 +53179,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4247[0] { + if yyq4252[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -53142,44 +53190,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4247 || yy2arr4247 { + if yyr4252 || yy2arr4252 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4247[1] { + if yyq4252[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4250 := *x.Privileged - yym4251 := z.EncBinary() - _ = yym4251 + yy4255 := *x.Privileged + yym4256 := z.EncBinary() + _ = yym4256 if false { } else { - r.EncodeBool(bool(yy4250)) + r.EncodeBool(bool(yy4255)) } } } else { r.EncodeNil() } } else { - if yyq4247[1] { + if yyq4252[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4252 := *x.Privileged - yym4253 := z.EncBinary() - _ = yym4253 + yy4257 := *x.Privileged + yym4258 := z.EncBinary() + _ = yym4258 if false { } else { - r.EncodeBool(bool(yy4252)) + r.EncodeBool(bool(yy4257)) } } } } - if yyr4247 || yy2arr4247 { + if yyr4252 || yy2arr4252 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4247[2] { + if yyq4252[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -53189,7 +53237,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4247[2] { + if yyq4252[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -53200,112 +53248,112 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4247 || yy2arr4247 { + if yyr4252 || yy2arr4252 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4247[3] { + if yyq4252[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4256 := *x.RunAsUser - yym4257 := z.EncBinary() - _ = yym4257 + yy4261 := *x.RunAsUser + yym4262 := z.EncBinary() + _ = yym4262 if false { } else { - r.EncodeInt(int64(yy4256)) + r.EncodeInt(int64(yy4261)) } } } else { r.EncodeNil() } } else { - if yyq4247[3] { + if yyq4252[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4258 := *x.RunAsUser - yym4259 := z.EncBinary() - _ = yym4259 + yy4263 := *x.RunAsUser + yym4264 := z.EncBinary() + _ = yym4264 if false { } else { - r.EncodeInt(int64(yy4258)) + r.EncodeInt(int64(yy4263)) } } } } - if yyr4247 || yy2arr4247 { + if yyr4252 || yy2arr4252 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4247[4] { + if yyq4252[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4261 := *x.RunAsNonRoot - yym4262 := z.EncBinary() - _ = yym4262 + yy4266 := *x.RunAsNonRoot + yym4267 := z.EncBinary() + _ = yym4267 if false { } else { - r.EncodeBool(bool(yy4261)) + r.EncodeBool(bool(yy4266)) } } } else { r.EncodeNil() } } else { - if yyq4247[4] { + if yyq4252[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4263 := *x.RunAsNonRoot - yym4264 := z.EncBinary() - _ = yym4264 + yy4268 := *x.RunAsNonRoot + yym4269 := z.EncBinary() + _ = yym4269 if false { } else { - r.EncodeBool(bool(yy4263)) + r.EncodeBool(bool(yy4268)) } } } } - if yyr4247 || yy2arr4247 { + if yyr4252 || yy2arr4252 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4247[5] { + if yyq4252[5] { if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4266 := *x.ReadOnlyRootFilesystem - yym4267 := z.EncBinary() - _ = yym4267 + yy4271 := *x.ReadOnlyRootFilesystem + yym4272 := z.EncBinary() + _ = yym4272 if false { } else { - r.EncodeBool(bool(yy4266)) + r.EncodeBool(bool(yy4271)) } } } else { r.EncodeNil() } } else { - if yyq4247[5] { + if yyq4252[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4268 := *x.ReadOnlyRootFilesystem - yym4269 := z.EncBinary() - _ = yym4269 + yy4273 := *x.ReadOnlyRootFilesystem + yym4274 := z.EncBinary() + _ = yym4274 if false { } else { - r.EncodeBool(bool(yy4268)) + r.EncodeBool(bool(yy4273)) } } } } - if yyr4247 || yy2arr4247 { + if yyr4252 || yy2arr4252 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53318,25 +53366,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4270 := z.DecBinary() - _ = yym4270 + yym4275 := z.DecBinary() + _ = yym4275 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4271 := r.ContainerType() - if yyct4271 == codecSelferValueTypeMap1234 { - yyl4271 := r.ReadMapStart() - if yyl4271 == 0 { + yyct4276 := r.ContainerType() + if yyct4276 == codecSelferValueTypeMap1234 { + yyl4276 := r.ReadMapStart() + if yyl4276 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4271, d) + x.codecDecodeSelfFromMap(yyl4276, d) } - } else if yyct4271 == codecSelferValueTypeArray1234 { - yyl4271 := r.ReadArrayStart() - if yyl4271 == 0 { + } else if yyct4276 == codecSelferValueTypeArray1234 { + yyl4276 := r.ReadArrayStart() + if yyl4276 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4271, d) + x.codecDecodeSelfFromArray(yyl4276, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53348,12 +53396,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4272Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4272Slc - var yyhl4272 bool = l >= 0 - for yyj4272 := 0; ; yyj4272++ { - if yyhl4272 { - if yyj4272 >= l { + var yys4277Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4277Slc + var yyhl4277 bool = l >= 0 + for yyj4277 := 0; ; yyj4277++ { + if yyhl4277 { + if yyj4277 >= l { break } } else { @@ -53362,10 +53410,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4272Slc = r.DecodeBytes(yys4272Slc, true, true) - yys4272 := string(yys4272Slc) + yys4277Slc = r.DecodeBytes(yys4277Slc, true, true) + yys4277 := string(yys4277Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4272 { + switch yys4277 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -53386,8 +53434,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4275 := z.DecBinary() - _ = yym4275 + yym4280 := z.DecBinary() + _ = yym4280 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -53413,8 +53461,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4278 := z.DecBinary() - _ = yym4278 + yym4283 := z.DecBinary() + _ = yym4283 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -53429,8 +53477,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4280 := z.DecBinary() - _ = yym4280 + yym4285 := z.DecBinary() + _ = yym4285 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -53445,17 +53493,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4282 := z.DecBinary() - _ = yym4282 + yym4287 := z.DecBinary() + _ = yym4287 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4272) - } // end switch yys4272 - } // end for yyj4272 + z.DecStructFieldNotFound(-1, yys4277) + } // end switch yys4277 + } // end for yyj4277 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53463,16 +53511,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4283 int - var yyb4283 bool - var yyhl4283 bool = l >= 0 - yyj4283++ - if yyhl4283 { - yyb4283 = yyj4283 > l + var yyj4288 int + var yyb4288 bool + var yyhl4288 bool = l >= 0 + yyj4288++ + if yyhl4288 { + yyb4288 = yyj4288 > l } else { - yyb4283 = r.CheckBreak() + yyb4288 = r.CheckBreak() } - if yyb4283 { + if yyb4288 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53487,13 +53535,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4283++ - if yyhl4283 { - yyb4283 = yyj4283 > l + yyj4288++ + if yyhl4288 { + yyb4288 = yyj4288 > l } else { - yyb4283 = r.CheckBreak() + yyb4288 = r.CheckBreak() } - if yyb4283 { + if yyb4288 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53506,20 +53554,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4286 := z.DecBinary() - _ = yym4286 + yym4291 := z.DecBinary() + _ = yym4291 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4283++ - if yyhl4283 { - yyb4283 = yyj4283 > l + yyj4288++ + if yyhl4288 { + yyb4288 = yyj4288 > l } else { - yyb4283 = r.CheckBreak() + yyb4288 = r.CheckBreak() } - if yyb4283 { + if yyb4288 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53534,13 +53582,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4283++ - if yyhl4283 { - yyb4283 = yyj4283 > l + yyj4288++ + if yyhl4288 { + yyb4288 = yyj4288 > l } else { - yyb4283 = r.CheckBreak() + yyb4288 = r.CheckBreak() } - if yyb4283 { + if yyb4288 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53553,20 +53601,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4289 := z.DecBinary() - _ = yym4289 + yym4294 := z.DecBinary() + _ = yym4294 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4283++ - if yyhl4283 { - yyb4283 = yyj4283 > l + yyj4288++ + if yyhl4288 { + yyb4288 = yyj4288 > l } else { - yyb4283 = r.CheckBreak() + yyb4288 = r.CheckBreak() } - if yyb4283 { + if yyb4288 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53579,20 +53627,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4291 := z.DecBinary() - _ = yym4291 + yym4296 := z.DecBinary() + _ = yym4296 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4283++ - if yyhl4283 { - yyb4283 = yyj4283 > l + yyj4288++ + if yyhl4288 { + yyb4288 = yyj4288 > l } else { - yyb4283 = r.CheckBreak() + yyb4288 = r.CheckBreak() } - if yyb4283 { + if yyb4288 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53605,25 +53653,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4293 := z.DecBinary() - _ = yym4293 + yym4298 := z.DecBinary() + _ = yym4298 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4283++ - if yyhl4283 { - yyb4283 = yyj4283 > l + yyj4288++ + if yyhl4288 { + yyb4288 = yyj4288 > l } else { - yyb4283 = r.CheckBreak() + yyb4288 = r.CheckBreak() } - if yyb4283 { + if yyb4288 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4283-1, "") + z.DecStructFieldNotFound(yyj4288-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53635,38 +53683,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4294 := z.EncBinary() - _ = yym4294 + yym4299 := z.EncBinary() + _ = yym4299 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4295 := !z.EncBinary() - yy2arr4295 := z.EncBasicHandle().StructToArray - var yyq4295 [4]bool - _, _, _ = yysep4295, yyq4295, yy2arr4295 - const yyr4295 bool = false - yyq4295[0] = x.User != "" - yyq4295[1] = x.Role != "" - yyq4295[2] = x.Type != "" - yyq4295[3] = x.Level != "" - var yynn4295 int - if yyr4295 || yy2arr4295 { + yysep4300 := !z.EncBinary() + yy2arr4300 := z.EncBasicHandle().StructToArray + var yyq4300 [4]bool + _, _, _ = yysep4300, yyq4300, yy2arr4300 + const yyr4300 bool = false + yyq4300[0] = x.User != "" + yyq4300[1] = x.Role != "" + yyq4300[2] = x.Type != "" + yyq4300[3] = x.Level != "" + var yynn4300 int + if yyr4300 || yy2arr4300 { r.EncodeArrayStart(4) } else { - yynn4295 = 0 - for _, b := range yyq4295 { + yynn4300 = 0 + for _, b := range yyq4300 { if b { - yynn4295++ + yynn4300++ } } - r.EncodeMapStart(yynn4295) - yynn4295 = 0 + r.EncodeMapStart(yynn4300) + yynn4300 = 0 } - if yyr4295 || yy2arr4295 { + if yyr4300 || yy2arr4300 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4295[0] { - yym4297 := z.EncBinary() - _ = yym4297 + if yyq4300[0] { + yym4302 := z.EncBinary() + _ = yym4302 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -53675,23 +53723,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4295[0] { + if yyq4300[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4298 := z.EncBinary() - _ = yym4298 + yym4303 := z.EncBinary() + _ = yym4303 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4295 || yy2arr4295 { + if yyr4300 || yy2arr4300 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4295[1] { - yym4300 := z.EncBinary() - _ = yym4300 + if yyq4300[1] { + yym4305 := z.EncBinary() + _ = yym4305 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -53700,23 +53748,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4295[1] { + if yyq4300[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4301 := z.EncBinary() - _ = yym4301 + yym4306 := z.EncBinary() + _ = yym4306 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr4295 || yy2arr4295 { + if yyr4300 || yy2arr4300 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4295[2] { - yym4303 := z.EncBinary() - _ = yym4303 + if yyq4300[2] { + yym4308 := z.EncBinary() + _ = yym4308 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -53725,23 +53773,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4295[2] { + if yyq4300[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4304 := z.EncBinary() - _ = yym4304 + yym4309 := z.EncBinary() + _ = yym4309 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4295 || yy2arr4295 { + if yyr4300 || yy2arr4300 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4295[3] { - yym4306 := z.EncBinary() - _ = yym4306 + if yyq4300[3] { + yym4311 := z.EncBinary() + _ = yym4311 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -53750,19 +53798,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4295[3] { + if yyq4300[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4307 := z.EncBinary() - _ = yym4307 + yym4312 := z.EncBinary() + _ = yym4312 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4295 || yy2arr4295 { + if yyr4300 || yy2arr4300 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53775,25 +53823,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4308 := z.DecBinary() - _ = yym4308 + yym4313 := z.DecBinary() + _ = yym4313 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4309 := r.ContainerType() - if yyct4309 == codecSelferValueTypeMap1234 { - yyl4309 := r.ReadMapStart() - if yyl4309 == 0 { + yyct4314 := r.ContainerType() + if yyct4314 == codecSelferValueTypeMap1234 { + yyl4314 := r.ReadMapStart() + if yyl4314 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4309, d) + x.codecDecodeSelfFromMap(yyl4314, d) } - } else if yyct4309 == codecSelferValueTypeArray1234 { - yyl4309 := r.ReadArrayStart() - if yyl4309 == 0 { + } else if yyct4314 == codecSelferValueTypeArray1234 { + yyl4314 := r.ReadArrayStart() + if yyl4314 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4309, d) + x.codecDecodeSelfFromArray(yyl4314, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53805,12 +53853,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4310Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4310Slc - var yyhl4310 bool = l >= 0 - for yyj4310 := 0; ; yyj4310++ { - if yyhl4310 { - if yyj4310 >= l { + var yys4315Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4315Slc + var yyhl4315 bool = l >= 0 + for yyj4315 := 0; ; yyj4315++ { + if yyhl4315 { + if yyj4315 >= l { break } } else { @@ -53819,10 +53867,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4310Slc = r.DecodeBytes(yys4310Slc, true, true) - yys4310 := string(yys4310Slc) + yys4315Slc = r.DecodeBytes(yys4315Slc, true, true) + yys4315 := string(yys4315Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4310 { + switch yys4315 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -53848,9 +53896,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4310) - } // end switch yys4310 - } // end for yyj4310 + z.DecStructFieldNotFound(-1, yys4315) + } // end switch yys4315 + } // end for yyj4315 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53858,16 +53906,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4315 int - var yyb4315 bool - var yyhl4315 bool = l >= 0 - yyj4315++ - if yyhl4315 { - yyb4315 = yyj4315 > l + var yyj4320 int + var yyb4320 bool + var yyhl4320 bool = l >= 0 + yyj4320++ + if yyhl4320 { + yyb4320 = yyj4320 > l } else { - yyb4315 = r.CheckBreak() + yyb4320 = r.CheckBreak() } - if yyb4315 { + if yyb4320 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53877,13 +53925,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4315++ - if yyhl4315 { - yyb4315 = yyj4315 > l + yyj4320++ + if yyhl4320 { + yyb4320 = yyj4320 > l } else { - yyb4315 = r.CheckBreak() + yyb4320 = r.CheckBreak() } - if yyb4315 { + if yyb4320 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53893,13 +53941,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4315++ - if yyhl4315 { - yyb4315 = yyj4315 > l + yyj4320++ + if yyhl4320 { + yyb4320 = yyj4320 > l } else { - yyb4315 = r.CheckBreak() + yyb4320 = r.CheckBreak() } - if yyb4315 { + if yyb4320 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53909,13 +53957,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4315++ - if yyhl4315 { - yyb4315 = yyj4315 > l + yyj4320++ + if yyhl4320 { + yyb4320 = yyj4320 > l } else { - yyb4315 = r.CheckBreak() + yyb4320 = r.CheckBreak() } - if yyb4315 { + if yyb4320 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53926,17 +53974,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4315++ - if yyhl4315 { - yyb4315 = yyj4315 > l + yyj4320++ + if yyhl4320 { + yyb4320 = yyj4320 > l } else { - yyb4315 = r.CheckBreak() + yyb4320 = r.CheckBreak() } - if yyb4315 { + if yyb4320 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4315-1, "") + z.DecStructFieldNotFound(yyj4320-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53948,37 +53996,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4320 := z.EncBinary() - _ = yym4320 + yym4325 := z.EncBinary() + _ = yym4325 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4321 := !z.EncBinary() - yy2arr4321 := z.EncBasicHandle().StructToArray - var yyq4321 [5]bool - _, _, _ = yysep4321, yyq4321, yy2arr4321 - const yyr4321 bool = false - yyq4321[0] = x.Kind != "" - yyq4321[1] = x.APIVersion != "" - yyq4321[2] = true - var yynn4321 int - if yyr4321 || yy2arr4321 { + yysep4326 := !z.EncBinary() + yy2arr4326 := z.EncBasicHandle().StructToArray + var yyq4326 [5]bool + _, _, _ = yysep4326, yyq4326, yy2arr4326 + const yyr4326 bool = false + yyq4326[0] = x.Kind != "" + yyq4326[1] = x.APIVersion != "" + yyq4326[2] = true + var yynn4326 int + if yyr4326 || yy2arr4326 { r.EncodeArrayStart(5) } else { - yynn4321 = 2 - for _, b := range yyq4321 { + yynn4326 = 2 + for _, b := range yyq4326 { if b { - yynn4321++ + yynn4326++ } } - r.EncodeMapStart(yynn4321) - yynn4321 = 0 + r.EncodeMapStart(yynn4326) + yynn4326 = 0 } - if yyr4321 || yy2arr4321 { + if yyr4326 || yy2arr4326 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4321[0] { - yym4323 := z.EncBinary() - _ = yym4323 + if yyq4326[0] { + yym4328 := z.EncBinary() + _ = yym4328 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53987,23 +54035,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4321[0] { + if yyq4326[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4324 := z.EncBinary() - _ = yym4324 + yym4329 := z.EncBinary() + _ = yym4329 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4321 || yy2arr4321 { + if yyr4326 || yy2arr4326 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4321[1] { - yym4326 := z.EncBinary() - _ = yym4326 + if yyq4326[1] { + yym4331 := z.EncBinary() + _ = yym4331 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -54012,39 +54060,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4321[1] { + if yyq4326[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4327 := z.EncBinary() - _ = yym4327 + yym4332 := z.EncBinary() + _ = yym4332 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4321 || yy2arr4321 { + if yyr4326 || yy2arr4326 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4321[2] { - yy4329 := &x.ObjectMeta - yy4329.CodecEncodeSelf(e) + if yyq4326[2] { + yy4334 := &x.ObjectMeta + yy4334.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4321[2] { + if yyq4326[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4330 := &x.ObjectMeta - yy4330.CodecEncodeSelf(e) + yy4335 := &x.ObjectMeta + yy4335.CodecEncodeSelf(e) } } - if yyr4321 || yy2arr4321 { + if yyr4326 || yy2arr4326 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4332 := z.EncBinary() - _ = yym4332 + yym4337 := z.EncBinary() + _ = yym4337 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -54053,20 +54101,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4333 := z.EncBinary() - _ = yym4333 + yym4338 := z.EncBinary() + _ = yym4338 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4321 || yy2arr4321 { + if yyr4326 || yy2arr4326 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4335 := z.EncBinary() - _ = yym4335 + yym4340 := z.EncBinary() + _ = yym4340 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -54079,15 +54127,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4336 := z.EncBinary() - _ = yym4336 + yym4341 := z.EncBinary() + _ = yym4341 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4321 || yy2arr4321 { + if yyr4326 || yy2arr4326 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54100,25 +54148,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4337 := z.DecBinary() - _ = yym4337 + yym4342 := z.DecBinary() + _ = yym4342 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4338 := r.ContainerType() - if yyct4338 == codecSelferValueTypeMap1234 { - yyl4338 := r.ReadMapStart() - if yyl4338 == 0 { + yyct4343 := r.ContainerType() + if yyct4343 == codecSelferValueTypeMap1234 { + yyl4343 := r.ReadMapStart() + if yyl4343 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4338, d) + x.codecDecodeSelfFromMap(yyl4343, d) } - } else if yyct4338 == codecSelferValueTypeArray1234 { - yyl4338 := r.ReadArrayStart() - if yyl4338 == 0 { + } else if yyct4343 == codecSelferValueTypeArray1234 { + yyl4343 := r.ReadArrayStart() + if yyl4343 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4338, d) + x.codecDecodeSelfFromArray(yyl4343, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54130,12 +54178,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4339Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4339Slc - var yyhl4339 bool = l >= 0 - for yyj4339 := 0; ; yyj4339++ { - if yyhl4339 { - if yyj4339 >= l { + var yys4344Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4344Slc + var yyhl4344 bool = l >= 0 + for yyj4344 := 0; ; yyj4344++ { + if yyhl4344 { + if yyj4344 >= l { break } } else { @@ -54144,10 +54192,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4339Slc = r.DecodeBytes(yys4339Slc, true, true) - yys4339 := string(yys4339Slc) + yys4344Slc = r.DecodeBytes(yys4344Slc, true, true) + yys4344 := string(yys4344Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4339 { + switch yys4344 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54164,8 +54212,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4342 := &x.ObjectMeta - yyv4342.CodecDecodeSelf(d) + yyv4347 := &x.ObjectMeta + yyv4347.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -54177,18 +54225,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4344 := &x.Data - yym4345 := z.DecBinary() - _ = yym4345 + yyv4349 := &x.Data + yym4350 := z.DecBinary() + _ = yym4350 if false { } else { - *yyv4344 = r.DecodeBytes(*(*[]byte)(yyv4344), false, false) + *yyv4349 = r.DecodeBytes(*(*[]byte)(yyv4349), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4339) - } // end switch yys4339 - } // end for yyj4339 + z.DecStructFieldNotFound(-1, yys4344) + } // end switch yys4344 + } // end for yyj4344 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54196,16 +54244,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4346 int - var yyb4346 bool - var yyhl4346 bool = l >= 0 - yyj4346++ - if yyhl4346 { - yyb4346 = yyj4346 > l + var yyj4351 int + var yyb4351 bool + var yyhl4351 bool = l >= 0 + yyj4351++ + if yyhl4351 { + yyb4351 = yyj4351 > l } else { - yyb4346 = r.CheckBreak() + yyb4351 = r.CheckBreak() } - if yyb4346 { + if yyb4351 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54215,13 +54263,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4346++ - if yyhl4346 { - yyb4346 = yyj4346 > l + yyj4351++ + if yyhl4351 { + yyb4351 = yyj4351 > l } else { - yyb4346 = r.CheckBreak() + yyb4351 = r.CheckBreak() } - if yyb4346 { + if yyb4351 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54231,13 +54279,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4346++ - if yyhl4346 { - yyb4346 = yyj4346 > l + yyj4351++ + if yyhl4351 { + yyb4351 = yyj4351 > l } else { - yyb4346 = r.CheckBreak() + yyb4351 = r.CheckBreak() } - if yyb4346 { + if yyb4351 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54245,16 +54293,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4349 := &x.ObjectMeta - yyv4349.CodecDecodeSelf(d) + yyv4354 := &x.ObjectMeta + yyv4354.CodecDecodeSelf(d) } - yyj4346++ - if yyhl4346 { - yyb4346 = yyj4346 > l + yyj4351++ + if yyhl4351 { + yyb4351 = yyj4351 > l } else { - yyb4346 = r.CheckBreak() + yyb4351 = r.CheckBreak() } - if yyb4346 { + if yyb4351 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54264,13 +54312,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4346++ - if yyhl4346 { - yyb4346 = yyj4346 > l + yyj4351++ + if yyhl4351 { + yyb4351 = yyj4351 > l } else { - yyb4346 = r.CheckBreak() + yyb4351 = r.CheckBreak() } - if yyb4346 { + if yyb4351 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54278,26 +54326,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4351 := &x.Data - yym4352 := z.DecBinary() - _ = yym4352 + yyv4356 := &x.Data + yym4357 := z.DecBinary() + _ = yym4357 if false { } else { - *yyv4351 = r.DecodeBytes(*(*[]byte)(yyv4351), false, false) + *yyv4356 = r.DecodeBytes(*(*[]byte)(yyv4356), false, false) } } for { - yyj4346++ - if yyhl4346 { - yyb4346 = yyj4346 > l + yyj4351++ + if yyhl4351 { + yyb4351 = yyj4351 > l } else { - yyb4346 = r.CheckBreak() + yyb4351 = r.CheckBreak() } - if yyb4346 { + if yyb4351 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4346-1, "") + z.DecStructFieldNotFound(yyj4351-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54307,10 +54355,10 @@ func (x codecSelfer1234) encSliceOwnerReference(v []OwnerReference, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4353 := range v { + for _, yyv4358 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4354 := &yyv4353 - yy4354.CodecEncodeSelf(e) + yy4359 := &yyv4358 + yy4359.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54320,127 +54368,12 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4355 := *v - yyh4355, yyl4355 := z.DecSliceHelperStart() - var yyc4355 bool - if yyl4355 == 0 { - if yyv4355 == nil { - yyv4355 = []OwnerReference{} - yyc4355 = true - } else if len(yyv4355) != 0 { - yyv4355 = yyv4355[:0] - yyc4355 = true - } - } else if yyl4355 > 0 { - var yyrr4355, yyrl4355 int - var yyrt4355 bool - if yyl4355 > cap(yyv4355) { - - yyrg4355 := len(yyv4355) > 0 - yyv24355 := yyv4355 - yyrl4355, yyrt4355 = z.DecInferLen(yyl4355, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4355 { - if yyrl4355 <= cap(yyv4355) { - yyv4355 = yyv4355[:yyrl4355] - } else { - yyv4355 = make([]OwnerReference, yyrl4355) - } - } else { - yyv4355 = make([]OwnerReference, yyrl4355) - } - yyc4355 = true - yyrr4355 = len(yyv4355) - if yyrg4355 { - copy(yyv4355, yyv24355) - } - } else if yyl4355 != len(yyv4355) { - yyv4355 = yyv4355[:yyl4355] - yyc4355 = true - } - yyj4355 := 0 - for ; yyj4355 < yyrr4355; yyj4355++ { - yyh4355.ElemContainerState(yyj4355) - if r.TryDecodeAsNil() { - yyv4355[yyj4355] = OwnerReference{} - } else { - yyv4356 := &yyv4355[yyj4355] - yyv4356.CodecDecodeSelf(d) - } - - } - if yyrt4355 { - for ; yyj4355 < yyl4355; yyj4355++ { - yyv4355 = append(yyv4355, OwnerReference{}) - yyh4355.ElemContainerState(yyj4355) - if r.TryDecodeAsNil() { - yyv4355[yyj4355] = OwnerReference{} - } else { - yyv4357 := &yyv4355[yyj4355] - yyv4357.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4355 := 0 - for ; !r.CheckBreak(); yyj4355++ { - - if yyj4355 >= len(yyv4355) { - yyv4355 = append(yyv4355, OwnerReference{}) // var yyz4355 OwnerReference - yyc4355 = true - } - yyh4355.ElemContainerState(yyj4355) - if yyj4355 < len(yyv4355) { - if r.TryDecodeAsNil() { - yyv4355[yyj4355] = OwnerReference{} - } else { - yyv4358 := &yyv4355[yyj4355] - yyv4358.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4355 < len(yyv4355) { - yyv4355 = yyv4355[:yyj4355] - yyc4355 = true - } else if yyj4355 == 0 && yyv4355 == nil { - yyv4355 = []OwnerReference{} - yyc4355 = true - } - } - yyh4355.End() - if yyc4355 { - *v = yyv4355 - } -} - -func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolumeAccessMode, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4359 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4359.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolumeAccessMode, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yyv4360 := *v yyh4360, yyl4360 := z.DecSliceHelperStart() var yyc4360 bool if yyl4360 == 0 { if yyv4360 == nil { - yyv4360 = []PersistentVolumeAccessMode{} + yyv4360 = []OwnerReference{} yyc4360 = true } else if len(yyv4360) != 0 { yyv4360 = yyv4360[:0] @@ -54451,18 +54384,23 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum var yyrt4360 bool if yyl4360 > cap(yyv4360) { - yyrl4360, yyrt4360 = z.DecInferLen(yyl4360, z.DecBasicHandle().MaxInitLen, 16) + yyrg4360 := len(yyv4360) > 0 + yyv24360 := yyv4360 + yyrl4360, yyrt4360 = z.DecInferLen(yyl4360, z.DecBasicHandle().MaxInitLen, 72) if yyrt4360 { if yyrl4360 <= cap(yyv4360) { yyv4360 = yyv4360[:yyrl4360] } else { - yyv4360 = make([]PersistentVolumeAccessMode, yyrl4360) + yyv4360 = make([]OwnerReference, yyrl4360) } } else { - yyv4360 = make([]PersistentVolumeAccessMode, yyrl4360) + yyv4360 = make([]OwnerReference, yyrl4360) } yyc4360 = true yyrr4360 = len(yyv4360) + if yyrg4360 { + copy(yyv4360, yyv24360) + } } else if yyl4360 != len(yyv4360) { yyv4360 = yyv4360[:yyl4360] yyc4360 = true @@ -54471,20 +54409,22 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum for ; yyj4360 < yyrr4360; yyj4360++ { yyh4360.ElemContainerState(yyj4360) if r.TryDecodeAsNil() { - yyv4360[yyj4360] = "" + yyv4360[yyj4360] = OwnerReference{} } else { - yyv4360[yyj4360] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4361 := &yyv4360[yyj4360] + yyv4361.CodecDecodeSelf(d) } } if yyrt4360 { for ; yyj4360 < yyl4360; yyj4360++ { - yyv4360 = append(yyv4360, "") + yyv4360 = append(yyv4360, OwnerReference{}) yyh4360.ElemContainerState(yyj4360) if r.TryDecodeAsNil() { - yyv4360[yyj4360] = "" + yyv4360[yyj4360] = OwnerReference{} } else { - yyv4360[yyj4360] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4362 := &yyv4360[yyj4360] + yyv4362.CodecDecodeSelf(d) } } @@ -54495,15 +54435,16 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum for ; !r.CheckBreak(); yyj4360++ { if yyj4360 >= len(yyv4360) { - yyv4360 = append(yyv4360, "") // var yyz4360 PersistentVolumeAccessMode + yyv4360 = append(yyv4360, OwnerReference{}) // var yyz4360 OwnerReference yyc4360 = true } yyh4360.ElemContainerState(yyj4360) if yyj4360 < len(yyv4360) { if r.TryDecodeAsNil() { - yyv4360[yyj4360] = "" + yyv4360[yyj4360] = OwnerReference{} } else { - yyv4360[yyj4360] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4363 := &yyv4360[yyj4360] + yyv4363.CodecDecodeSelf(d) } } else { @@ -54515,7 +54456,7 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum yyv4360 = yyv4360[:yyj4360] yyc4360 = true } else if yyj4360 == 0 && yyv4360 == nil { - yyv4360 = []PersistentVolumeAccessMode{} + yyv4360 = []OwnerReference{} yyc4360 = true } } @@ -54525,101 +54466,92 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } -func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolumeAccessMode, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) for _, yyv4364 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4365 := &yyv4364 - yy4365.CodecEncodeSelf(e) + yyv4364.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolumeAccessMode, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4366 := *v - yyh4366, yyl4366 := z.DecSliceHelperStart() - var yyc4366 bool - if yyl4366 == 0 { - if yyv4366 == nil { - yyv4366 = []PersistentVolume{} - yyc4366 = true - } else if len(yyv4366) != 0 { - yyv4366 = yyv4366[:0] - yyc4366 = true + yyv4365 := *v + yyh4365, yyl4365 := z.DecSliceHelperStart() + var yyc4365 bool + if yyl4365 == 0 { + if yyv4365 == nil { + yyv4365 = []PersistentVolumeAccessMode{} + yyc4365 = true + } else if len(yyv4365) != 0 { + yyv4365 = yyv4365[:0] + yyc4365 = true } - } else if yyl4366 > 0 { - var yyrr4366, yyrl4366 int - var yyrt4366 bool - if yyl4366 > cap(yyv4366) { + } else if yyl4365 > 0 { + var yyrr4365, yyrl4365 int + var yyrt4365 bool + if yyl4365 > cap(yyv4365) { - yyrg4366 := len(yyv4366) > 0 - yyv24366 := yyv4366 - yyrl4366, yyrt4366 = z.DecInferLen(yyl4366, z.DecBasicHandle().MaxInitLen, 456) - if yyrt4366 { - if yyrl4366 <= cap(yyv4366) { - yyv4366 = yyv4366[:yyrl4366] + yyrl4365, yyrt4365 = z.DecInferLen(yyl4365, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4365 { + if yyrl4365 <= cap(yyv4365) { + yyv4365 = yyv4365[:yyrl4365] } else { - yyv4366 = make([]PersistentVolume, yyrl4366) + yyv4365 = make([]PersistentVolumeAccessMode, yyrl4365) } } else { - yyv4366 = make([]PersistentVolume, yyrl4366) + yyv4365 = make([]PersistentVolumeAccessMode, yyrl4365) } - yyc4366 = true - yyrr4366 = len(yyv4366) - if yyrg4366 { - copy(yyv4366, yyv24366) - } - } else if yyl4366 != len(yyv4366) { - yyv4366 = yyv4366[:yyl4366] - yyc4366 = true + yyc4365 = true + yyrr4365 = len(yyv4365) + } else if yyl4365 != len(yyv4365) { + yyv4365 = yyv4365[:yyl4365] + yyc4365 = true } - yyj4366 := 0 - for ; yyj4366 < yyrr4366; yyj4366++ { - yyh4366.ElemContainerState(yyj4366) + yyj4365 := 0 + for ; yyj4365 < yyrr4365; yyj4365++ { + yyh4365.ElemContainerState(yyj4365) if r.TryDecodeAsNil() { - yyv4366[yyj4366] = PersistentVolume{} + yyv4365[yyj4365] = "" } else { - yyv4367 := &yyv4366[yyj4366] - yyv4367.CodecDecodeSelf(d) + yyv4365[yyj4365] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt4366 { - for ; yyj4366 < yyl4366; yyj4366++ { - yyv4366 = append(yyv4366, PersistentVolume{}) - yyh4366.ElemContainerState(yyj4366) + if yyrt4365 { + for ; yyj4365 < yyl4365; yyj4365++ { + yyv4365 = append(yyv4365, "") + yyh4365.ElemContainerState(yyj4365) if r.TryDecodeAsNil() { - yyv4366[yyj4366] = PersistentVolume{} + yyv4365[yyj4365] = "" } else { - yyv4368 := &yyv4366[yyj4366] - yyv4368.CodecDecodeSelf(d) + yyv4365[yyj4365] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj4366 := 0 - for ; !r.CheckBreak(); yyj4366++ { + yyj4365 := 0 + for ; !r.CheckBreak(); yyj4365++ { - if yyj4366 >= len(yyv4366) { - yyv4366 = append(yyv4366, PersistentVolume{}) // var yyz4366 PersistentVolume - yyc4366 = true + if yyj4365 >= len(yyv4365) { + yyv4365 = append(yyv4365, "") // var yyz4365 PersistentVolumeAccessMode + yyc4365 = true } - yyh4366.ElemContainerState(yyj4366) - if yyj4366 < len(yyv4366) { + yyh4365.ElemContainerState(yyj4365) + if yyj4365 < len(yyv4365) { if r.TryDecodeAsNil() { - yyv4366[yyj4366] = PersistentVolume{} + yyv4365[yyj4365] = "" } else { - yyv4369 := &yyv4366[yyj4366] - yyv4369.CodecDecodeSelf(d) + yyv4365[yyj4365] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -54627,115 +54559,115 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj4366 < len(yyv4366) { - yyv4366 = yyv4366[:yyj4366] - yyc4366 = true - } else if yyj4366 == 0 && yyv4366 == nil { - yyv4366 = []PersistentVolume{} - yyc4366 = true + if yyj4365 < len(yyv4365) { + yyv4365 = yyv4365[:yyj4365] + yyc4365 = true + } else if yyj4365 == 0 && yyv4365 == nil { + yyv4365 = []PersistentVolumeAccessMode{} + yyc4365 = true } } - yyh4366.End() - if yyc4366 { - *v = yyv4366 + yyh4365.End() + if yyc4365 { + *v = yyv4365 } } -func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4370 := range v { + for _, yyv4369 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4371 := &yyv4370 - yy4371.CodecEncodeSelf(e) + yy4370 := &yyv4369 + yy4370.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClaim, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4372 := *v - yyh4372, yyl4372 := z.DecSliceHelperStart() - var yyc4372 bool - if yyl4372 == 0 { - if yyv4372 == nil { - yyv4372 = []PersistentVolumeClaim{} - yyc4372 = true - } else if len(yyv4372) != 0 { - yyv4372 = yyv4372[:0] - yyc4372 = true + yyv4371 := *v + yyh4371, yyl4371 := z.DecSliceHelperStart() + var yyc4371 bool + if yyl4371 == 0 { + if yyv4371 == nil { + yyv4371 = []PersistentVolume{} + yyc4371 = true + } else if len(yyv4371) != 0 { + yyv4371 = yyv4371[:0] + yyc4371 = true } - } else if yyl4372 > 0 { - var yyrr4372, yyrl4372 int - var yyrt4372 bool - if yyl4372 > cap(yyv4372) { + } else if yyl4371 > 0 { + var yyrr4371, yyrl4371 int + var yyrt4371 bool + if yyl4371 > cap(yyv4371) { - yyrg4372 := len(yyv4372) > 0 - yyv24372 := yyv4372 - yyrl4372, yyrt4372 = z.DecInferLen(yyl4372, z.DecBasicHandle().MaxInitLen, 352) - if yyrt4372 { - if yyrl4372 <= cap(yyv4372) { - yyv4372 = yyv4372[:yyrl4372] + yyrg4371 := len(yyv4371) > 0 + yyv24371 := yyv4371 + yyrl4371, yyrt4371 = z.DecInferLen(yyl4371, z.DecBasicHandle().MaxInitLen, 456) + if yyrt4371 { + if yyrl4371 <= cap(yyv4371) { + yyv4371 = yyv4371[:yyrl4371] } else { - yyv4372 = make([]PersistentVolumeClaim, yyrl4372) + yyv4371 = make([]PersistentVolume, yyrl4371) } } else { - yyv4372 = make([]PersistentVolumeClaim, yyrl4372) + yyv4371 = make([]PersistentVolume, yyrl4371) } - yyc4372 = true - yyrr4372 = len(yyv4372) - if yyrg4372 { - copy(yyv4372, yyv24372) + yyc4371 = true + yyrr4371 = len(yyv4371) + if yyrg4371 { + copy(yyv4371, yyv24371) } - } else if yyl4372 != len(yyv4372) { - yyv4372 = yyv4372[:yyl4372] - yyc4372 = true + } else if yyl4371 != len(yyv4371) { + yyv4371 = yyv4371[:yyl4371] + yyc4371 = true } - yyj4372 := 0 - for ; yyj4372 < yyrr4372; yyj4372++ { - yyh4372.ElemContainerState(yyj4372) + yyj4371 := 0 + for ; yyj4371 < yyrr4371; yyj4371++ { + yyh4371.ElemContainerState(yyj4371) if r.TryDecodeAsNil() { - yyv4372[yyj4372] = PersistentVolumeClaim{} + yyv4371[yyj4371] = PersistentVolume{} } else { - yyv4373 := &yyv4372[yyj4372] - yyv4373.CodecDecodeSelf(d) + yyv4372 := &yyv4371[yyj4371] + yyv4372.CodecDecodeSelf(d) } } - if yyrt4372 { - for ; yyj4372 < yyl4372; yyj4372++ { - yyv4372 = append(yyv4372, PersistentVolumeClaim{}) - yyh4372.ElemContainerState(yyj4372) + if yyrt4371 { + for ; yyj4371 < yyl4371; yyj4371++ { + yyv4371 = append(yyv4371, PersistentVolume{}) + yyh4371.ElemContainerState(yyj4371) if r.TryDecodeAsNil() { - yyv4372[yyj4372] = PersistentVolumeClaim{} + yyv4371[yyj4371] = PersistentVolume{} } else { - yyv4374 := &yyv4372[yyj4372] - yyv4374.CodecDecodeSelf(d) + yyv4373 := &yyv4371[yyj4371] + yyv4373.CodecDecodeSelf(d) } } } } else { - yyj4372 := 0 - for ; !r.CheckBreak(); yyj4372++ { + yyj4371 := 0 + for ; !r.CheckBreak(); yyj4371++ { - if yyj4372 >= len(yyv4372) { - yyv4372 = append(yyv4372, PersistentVolumeClaim{}) // var yyz4372 PersistentVolumeClaim - yyc4372 = true + if yyj4371 >= len(yyv4371) { + yyv4371 = append(yyv4371, PersistentVolume{}) // var yyz4371 PersistentVolume + yyc4371 = true } - yyh4372.ElemContainerState(yyj4372) - if yyj4372 < len(yyv4372) { + yyh4371.ElemContainerState(yyj4371) + if yyj4371 < len(yyv4371) { if r.TryDecodeAsNil() { - yyv4372[yyj4372] = PersistentVolumeClaim{} + yyv4371[yyj4371] = PersistentVolume{} } else { - yyv4375 := &yyv4372[yyj4372] - yyv4375.CodecDecodeSelf(d) + yyv4374 := &yyv4371[yyj4371] + yyv4374.CodecDecodeSelf(d) } } else { @@ -54743,115 +54675,115 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj4372 < len(yyv4372) { - yyv4372 = yyv4372[:yyj4372] - yyc4372 = true - } else if yyj4372 == 0 && yyv4372 == nil { - yyv4372 = []PersistentVolumeClaim{} - yyc4372 = true + if yyj4371 < len(yyv4371) { + yyv4371 = yyv4371[:yyj4371] + yyc4371 = true + } else if yyj4371 == 0 && yyv4371 == nil { + yyv4371 = []PersistentVolume{} + yyc4371 = true } } - yyh4372.End() - if yyc4372 { - *v = yyv4372 + yyh4371.End() + if yyc4371 { + *v = yyv4371 } } -func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4376 := range v { + for _, yyv4375 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4377 := &yyv4376 - yy4377.CodecEncodeSelf(e) + yy4376 := &yyv4375 + yy4376.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClaim, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4378 := *v - yyh4378, yyl4378 := z.DecSliceHelperStart() - var yyc4378 bool - if yyl4378 == 0 { - if yyv4378 == nil { - yyv4378 = []KeyToPath{} - yyc4378 = true - } else if len(yyv4378) != 0 { - yyv4378 = yyv4378[:0] - yyc4378 = true + yyv4377 := *v + yyh4377, yyl4377 := z.DecSliceHelperStart() + var yyc4377 bool + if yyl4377 == 0 { + if yyv4377 == nil { + yyv4377 = []PersistentVolumeClaim{} + yyc4377 = true + } else if len(yyv4377) != 0 { + yyv4377 = yyv4377[:0] + yyc4377 = true } - } else if yyl4378 > 0 { - var yyrr4378, yyrl4378 int - var yyrt4378 bool - if yyl4378 > cap(yyv4378) { + } else if yyl4377 > 0 { + var yyrr4377, yyrl4377 int + var yyrt4377 bool + if yyl4377 > cap(yyv4377) { - yyrg4378 := len(yyv4378) > 0 - yyv24378 := yyv4378 - yyrl4378, yyrt4378 = z.DecInferLen(yyl4378, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4378 { - if yyrl4378 <= cap(yyv4378) { - yyv4378 = yyv4378[:yyrl4378] + yyrg4377 := len(yyv4377) > 0 + yyv24377 := yyv4377 + yyrl4377, yyrt4377 = z.DecInferLen(yyl4377, z.DecBasicHandle().MaxInitLen, 352) + if yyrt4377 { + if yyrl4377 <= cap(yyv4377) { + yyv4377 = yyv4377[:yyrl4377] } else { - yyv4378 = make([]KeyToPath, yyrl4378) + yyv4377 = make([]PersistentVolumeClaim, yyrl4377) } } else { - yyv4378 = make([]KeyToPath, yyrl4378) + yyv4377 = make([]PersistentVolumeClaim, yyrl4377) } - yyc4378 = true - yyrr4378 = len(yyv4378) - if yyrg4378 { - copy(yyv4378, yyv24378) + yyc4377 = true + yyrr4377 = len(yyv4377) + if yyrg4377 { + copy(yyv4377, yyv24377) } - } else if yyl4378 != len(yyv4378) { - yyv4378 = yyv4378[:yyl4378] - yyc4378 = true + } else if yyl4377 != len(yyv4377) { + yyv4377 = yyv4377[:yyl4377] + yyc4377 = true } - yyj4378 := 0 - for ; yyj4378 < yyrr4378; yyj4378++ { - yyh4378.ElemContainerState(yyj4378) + yyj4377 := 0 + for ; yyj4377 < yyrr4377; yyj4377++ { + yyh4377.ElemContainerState(yyj4377) if r.TryDecodeAsNil() { - yyv4378[yyj4378] = KeyToPath{} + yyv4377[yyj4377] = PersistentVolumeClaim{} } else { - yyv4379 := &yyv4378[yyj4378] - yyv4379.CodecDecodeSelf(d) + yyv4378 := &yyv4377[yyj4377] + yyv4378.CodecDecodeSelf(d) } } - if yyrt4378 { - for ; yyj4378 < yyl4378; yyj4378++ { - yyv4378 = append(yyv4378, KeyToPath{}) - yyh4378.ElemContainerState(yyj4378) + if yyrt4377 { + for ; yyj4377 < yyl4377; yyj4377++ { + yyv4377 = append(yyv4377, PersistentVolumeClaim{}) + yyh4377.ElemContainerState(yyj4377) if r.TryDecodeAsNil() { - yyv4378[yyj4378] = KeyToPath{} + yyv4377[yyj4377] = PersistentVolumeClaim{} } else { - yyv4380 := &yyv4378[yyj4378] - yyv4380.CodecDecodeSelf(d) + yyv4379 := &yyv4377[yyj4377] + yyv4379.CodecDecodeSelf(d) } } } } else { - yyj4378 := 0 - for ; !r.CheckBreak(); yyj4378++ { + yyj4377 := 0 + for ; !r.CheckBreak(); yyj4377++ { - if yyj4378 >= len(yyv4378) { - yyv4378 = append(yyv4378, KeyToPath{}) // var yyz4378 KeyToPath - yyc4378 = true + if yyj4377 >= len(yyv4377) { + yyv4377 = append(yyv4377, PersistentVolumeClaim{}) // var yyz4377 PersistentVolumeClaim + yyc4377 = true } - yyh4378.ElemContainerState(yyj4378) - if yyj4378 < len(yyv4378) { + yyh4377.ElemContainerState(yyj4377) + if yyj4377 < len(yyv4377) { if r.TryDecodeAsNil() { - yyv4378[yyj4378] = KeyToPath{} + yyv4377[yyj4377] = PersistentVolumeClaim{} } else { - yyv4381 := &yyv4378[yyj4378] - yyv4381.CodecDecodeSelf(d) + yyv4380 := &yyv4377[yyj4377] + yyv4380.CodecDecodeSelf(d) } } else { @@ -54859,115 +54791,115 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) } } - if yyj4378 < len(yyv4378) { - yyv4378 = yyv4378[:yyj4378] - yyc4378 = true - } else if yyj4378 == 0 && yyv4378 == nil { - yyv4378 = []KeyToPath{} - yyc4378 = true + if yyj4377 < len(yyv4377) { + yyv4377 = yyv4377[:yyj4377] + yyc4377 = true + } else if yyj4377 == 0 && yyv4377 == nil { + yyv4377 = []PersistentVolumeClaim{} + yyc4377 = true } } - yyh4378.End() - if yyc4378 { - *v = yyv4378 + yyh4377.End() + if yyc4377 { + *v = yyv4377 } } -func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4382 := range v { + for _, yyv4381 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4383 := &yyv4382 - yy4383.CodecEncodeSelf(e) + yy4382 := &yyv4381 + yy4382.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4384 := *v - yyh4384, yyl4384 := z.DecSliceHelperStart() - var yyc4384 bool - if yyl4384 == 0 { - if yyv4384 == nil { - yyv4384 = []HTTPHeader{} - yyc4384 = true - } else if len(yyv4384) != 0 { - yyv4384 = yyv4384[:0] - yyc4384 = true + yyv4383 := *v + yyh4383, yyl4383 := z.DecSliceHelperStart() + var yyc4383 bool + if yyl4383 == 0 { + if yyv4383 == nil { + yyv4383 = []KeyToPath{} + yyc4383 = true + } else if len(yyv4383) != 0 { + yyv4383 = yyv4383[:0] + yyc4383 = true } - } else if yyl4384 > 0 { - var yyrr4384, yyrl4384 int - var yyrt4384 bool - if yyl4384 > cap(yyv4384) { + } else if yyl4383 > 0 { + var yyrr4383, yyrl4383 int + var yyrt4383 bool + if yyl4383 > cap(yyv4383) { - yyrg4384 := len(yyv4384) > 0 - yyv24384 := yyv4384 - yyrl4384, yyrt4384 = z.DecInferLen(yyl4384, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4384 { - if yyrl4384 <= cap(yyv4384) { - yyv4384 = yyv4384[:yyrl4384] + yyrg4383 := len(yyv4383) > 0 + yyv24383 := yyv4383 + yyrl4383, yyrt4383 = z.DecInferLen(yyl4383, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4383 { + if yyrl4383 <= cap(yyv4383) { + yyv4383 = yyv4383[:yyrl4383] } else { - yyv4384 = make([]HTTPHeader, yyrl4384) + yyv4383 = make([]KeyToPath, yyrl4383) } } else { - yyv4384 = make([]HTTPHeader, yyrl4384) + yyv4383 = make([]KeyToPath, yyrl4383) } - yyc4384 = true - yyrr4384 = len(yyv4384) - if yyrg4384 { - copy(yyv4384, yyv24384) + yyc4383 = true + yyrr4383 = len(yyv4383) + if yyrg4383 { + copy(yyv4383, yyv24383) } - } else if yyl4384 != len(yyv4384) { - yyv4384 = yyv4384[:yyl4384] - yyc4384 = true + } else if yyl4383 != len(yyv4383) { + yyv4383 = yyv4383[:yyl4383] + yyc4383 = true } - yyj4384 := 0 - for ; yyj4384 < yyrr4384; yyj4384++ { - yyh4384.ElemContainerState(yyj4384) + yyj4383 := 0 + for ; yyj4383 < yyrr4383; yyj4383++ { + yyh4383.ElemContainerState(yyj4383) if r.TryDecodeAsNil() { - yyv4384[yyj4384] = HTTPHeader{} + yyv4383[yyj4383] = KeyToPath{} } else { - yyv4385 := &yyv4384[yyj4384] - yyv4385.CodecDecodeSelf(d) + yyv4384 := &yyv4383[yyj4383] + yyv4384.CodecDecodeSelf(d) } } - if yyrt4384 { - for ; yyj4384 < yyl4384; yyj4384++ { - yyv4384 = append(yyv4384, HTTPHeader{}) - yyh4384.ElemContainerState(yyj4384) + if yyrt4383 { + for ; yyj4383 < yyl4383; yyj4383++ { + yyv4383 = append(yyv4383, KeyToPath{}) + yyh4383.ElemContainerState(yyj4383) if r.TryDecodeAsNil() { - yyv4384[yyj4384] = HTTPHeader{} + yyv4383[yyj4383] = KeyToPath{} } else { - yyv4386 := &yyv4384[yyj4384] - yyv4386.CodecDecodeSelf(d) + yyv4385 := &yyv4383[yyj4383] + yyv4385.CodecDecodeSelf(d) } } } } else { - yyj4384 := 0 - for ; !r.CheckBreak(); yyj4384++ { + yyj4383 := 0 + for ; !r.CheckBreak(); yyj4383++ { - if yyj4384 >= len(yyv4384) { - yyv4384 = append(yyv4384, HTTPHeader{}) // var yyz4384 HTTPHeader - yyc4384 = true + if yyj4383 >= len(yyv4383) { + yyv4383 = append(yyv4383, KeyToPath{}) // var yyz4383 KeyToPath + yyc4383 = true } - yyh4384.ElemContainerState(yyj4384) - if yyj4384 < len(yyv4384) { + yyh4383.ElemContainerState(yyj4383) + if yyj4383 < len(yyv4383) { if r.TryDecodeAsNil() { - yyv4384[yyj4384] = HTTPHeader{} + yyv4383[yyj4383] = KeyToPath{} } else { - yyv4387 := &yyv4384[yyj4384] - yyv4387.CodecDecodeSelf(d) + yyv4386 := &yyv4383[yyj4383] + yyv4386.CodecDecodeSelf(d) } } else { @@ -54975,33 +54907,34 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode } } - if yyj4384 < len(yyv4384) { - yyv4384 = yyv4384[:yyj4384] - yyc4384 = true - } else if yyj4384 == 0 && yyv4384 == nil { - yyv4384 = []HTTPHeader{} - yyc4384 = true + if yyj4383 < len(yyv4383) { + yyv4383 = yyv4383[:yyj4383] + yyc4383 = true + } else if yyj4383 == 0 && yyv4383 == nil { + yyv4383 = []KeyToPath{} + yyc4383 = true } } - yyh4384.End() - if yyc4384 { - *v = yyv4384 + yyh4383.End() + if yyc4383 { + *v = yyv4383 } } -func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4388 := range v { + for _, yyv4387 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4388.CodecEncodeSelf(e) + yy4388 := &yyv4387 + yy4388.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -55011,7 +54944,7 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode var yyc4389 bool if yyl4389 == 0 { if yyv4389 == nil { - yyv4389 = []Capability{} + yyv4389 = []HTTPHeader{} yyc4389 = true } else if len(yyv4389) != 0 { yyv4389 = yyv4389[:0] @@ -55022,18 +54955,23 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode var yyrt4389 bool if yyl4389 > cap(yyv4389) { - yyrl4389, yyrt4389 = z.DecInferLen(yyl4389, z.DecBasicHandle().MaxInitLen, 16) + yyrg4389 := len(yyv4389) > 0 + yyv24389 := yyv4389 + yyrl4389, yyrt4389 = z.DecInferLen(yyl4389, z.DecBasicHandle().MaxInitLen, 32) if yyrt4389 { if yyrl4389 <= cap(yyv4389) { yyv4389 = yyv4389[:yyrl4389] } else { - yyv4389 = make([]Capability, yyrl4389) + yyv4389 = make([]HTTPHeader, yyrl4389) } } else { - yyv4389 = make([]Capability, yyrl4389) + yyv4389 = make([]HTTPHeader, yyrl4389) } yyc4389 = true yyrr4389 = len(yyv4389) + if yyrg4389 { + copy(yyv4389, yyv24389) + } } else if yyl4389 != len(yyv4389) { yyv4389 = yyv4389[:yyl4389] yyc4389 = true @@ -55042,20 +54980,22 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode for ; yyj4389 < yyrr4389; yyj4389++ { yyh4389.ElemContainerState(yyj4389) if r.TryDecodeAsNil() { - yyv4389[yyj4389] = "" + yyv4389[yyj4389] = HTTPHeader{} } else { - yyv4389[yyj4389] = Capability(r.DecodeString()) + yyv4390 := &yyv4389[yyj4389] + yyv4390.CodecDecodeSelf(d) } } if yyrt4389 { for ; yyj4389 < yyl4389; yyj4389++ { - yyv4389 = append(yyv4389, "") + yyv4389 = append(yyv4389, HTTPHeader{}) yyh4389.ElemContainerState(yyj4389) if r.TryDecodeAsNil() { - yyv4389[yyj4389] = "" + yyv4389[yyj4389] = HTTPHeader{} } else { - yyv4389[yyj4389] = Capability(r.DecodeString()) + yyv4391 := &yyv4389[yyj4389] + yyv4391.CodecDecodeSelf(d) } } @@ -55066,15 +55006,16 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode for ; !r.CheckBreak(); yyj4389++ { if yyj4389 >= len(yyv4389) { - yyv4389 = append(yyv4389, "") // var yyz4389 Capability + yyv4389 = append(yyv4389, HTTPHeader{}) // var yyz4389 HTTPHeader yyc4389 = true } yyh4389.ElemContainerState(yyj4389) if yyj4389 < len(yyv4389) { if r.TryDecodeAsNil() { - yyv4389[yyj4389] = "" + yyv4389[yyj4389] = HTTPHeader{} } else { - yyv4389[yyj4389] = Capability(r.DecodeString()) + yyv4392 := &yyv4389[yyj4389] + yyv4392.CodecDecodeSelf(d) } } else { @@ -55086,7 +55027,7 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode yyv4389 = yyv4389[:yyj4389] yyc4389 = true } else if yyj4389 == 0 && yyv4389 == nil { - yyv4389 = []Capability{} + yyv4389 = []HTTPHeader{} yyc4389 = true } } @@ -55096,15 +55037,122 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } -func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) for _, yyv4393 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4394 := &yyv4393 - yy4394.CodecEncodeSelf(e) + yyv4393.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4394 := *v + yyh4394, yyl4394 := z.DecSliceHelperStart() + var yyc4394 bool + if yyl4394 == 0 { + if yyv4394 == nil { + yyv4394 = []Capability{} + yyc4394 = true + } else if len(yyv4394) != 0 { + yyv4394 = yyv4394[:0] + yyc4394 = true + } + } else if yyl4394 > 0 { + var yyrr4394, yyrl4394 int + var yyrt4394 bool + if yyl4394 > cap(yyv4394) { + + yyrl4394, yyrt4394 = z.DecInferLen(yyl4394, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4394 { + if yyrl4394 <= cap(yyv4394) { + yyv4394 = yyv4394[:yyrl4394] + } else { + yyv4394 = make([]Capability, yyrl4394) + } + } else { + yyv4394 = make([]Capability, yyrl4394) + } + yyc4394 = true + yyrr4394 = len(yyv4394) + } else if yyl4394 != len(yyv4394) { + yyv4394 = yyv4394[:yyl4394] + yyc4394 = true + } + yyj4394 := 0 + for ; yyj4394 < yyrr4394; yyj4394++ { + yyh4394.ElemContainerState(yyj4394) + if r.TryDecodeAsNil() { + yyv4394[yyj4394] = "" + } else { + yyv4394[yyj4394] = Capability(r.DecodeString()) + } + + } + if yyrt4394 { + for ; yyj4394 < yyl4394; yyj4394++ { + yyv4394 = append(yyv4394, "") + yyh4394.ElemContainerState(yyj4394) + if r.TryDecodeAsNil() { + yyv4394[yyj4394] = "" + } else { + yyv4394[yyj4394] = Capability(r.DecodeString()) + } + + } + } + + } else { + yyj4394 := 0 + for ; !r.CheckBreak(); yyj4394++ { + + if yyj4394 >= len(yyv4394) { + yyv4394 = append(yyv4394, "") // var yyz4394 Capability + yyc4394 = true + } + yyh4394.ElemContainerState(yyj4394) + if yyj4394 < len(yyv4394) { + if r.TryDecodeAsNil() { + yyv4394[yyj4394] = "" + } else { + yyv4394[yyj4394] = Capability(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4394 < len(yyv4394) { + yyv4394 = yyv4394[:yyj4394] + yyc4394 = true + } else if yyj4394 == 0 && yyv4394 == nil { + yyv4394 = []Capability{} + yyc4394 = true + } + } + yyh4394.End() + if yyc4394 { + *v = yyv4394 + } +} + +func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4398 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4399 := &yyv4398 + yy4399.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55114,83 +55162,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4395 := *v - yyh4395, yyl4395 := z.DecSliceHelperStart() - var yyc4395 bool - if yyl4395 == 0 { - if yyv4395 == nil { - yyv4395 = []ContainerPort{} - yyc4395 = true - } else if len(yyv4395) != 0 { - yyv4395 = yyv4395[:0] - yyc4395 = true + yyv4400 := *v + yyh4400, yyl4400 := z.DecSliceHelperStart() + var yyc4400 bool + if yyl4400 == 0 { + if yyv4400 == nil { + yyv4400 = []ContainerPort{} + yyc4400 = true + } else if len(yyv4400) != 0 { + yyv4400 = yyv4400[:0] + yyc4400 = true } - } else if yyl4395 > 0 { - var yyrr4395, yyrl4395 int - var yyrt4395 bool - if yyl4395 > cap(yyv4395) { + } else if yyl4400 > 0 { + var yyrr4400, yyrl4400 int + var yyrt4400 bool + if yyl4400 > cap(yyv4400) { - yyrg4395 := len(yyv4395) > 0 - yyv24395 := yyv4395 - yyrl4395, yyrt4395 = z.DecInferLen(yyl4395, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4395 { - if yyrl4395 <= cap(yyv4395) { - yyv4395 = yyv4395[:yyrl4395] + yyrg4400 := len(yyv4400) > 0 + yyv24400 := yyv4400 + yyrl4400, yyrt4400 = z.DecInferLen(yyl4400, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4400 { + if yyrl4400 <= cap(yyv4400) { + yyv4400 = yyv4400[:yyrl4400] } else { - yyv4395 = make([]ContainerPort, yyrl4395) + yyv4400 = make([]ContainerPort, yyrl4400) } } else { - yyv4395 = make([]ContainerPort, yyrl4395) + yyv4400 = make([]ContainerPort, yyrl4400) } - yyc4395 = true - yyrr4395 = len(yyv4395) - if yyrg4395 { - copy(yyv4395, yyv24395) + yyc4400 = true + yyrr4400 = len(yyv4400) + if yyrg4400 { + copy(yyv4400, yyv24400) } - } else if yyl4395 != len(yyv4395) { - yyv4395 = yyv4395[:yyl4395] - yyc4395 = true + } else if yyl4400 != len(yyv4400) { + yyv4400 = yyv4400[:yyl4400] + yyc4400 = true } - yyj4395 := 0 - for ; yyj4395 < yyrr4395; yyj4395++ { - yyh4395.ElemContainerState(yyj4395) + yyj4400 := 0 + for ; yyj4400 < yyrr4400; yyj4400++ { + yyh4400.ElemContainerState(yyj4400) if r.TryDecodeAsNil() { - yyv4395[yyj4395] = ContainerPort{} + yyv4400[yyj4400] = ContainerPort{} } else { - yyv4396 := &yyv4395[yyj4395] - yyv4396.CodecDecodeSelf(d) + yyv4401 := &yyv4400[yyj4400] + yyv4401.CodecDecodeSelf(d) } } - if yyrt4395 { - for ; yyj4395 < yyl4395; yyj4395++ { - yyv4395 = append(yyv4395, ContainerPort{}) - yyh4395.ElemContainerState(yyj4395) + if yyrt4400 { + for ; yyj4400 < yyl4400; yyj4400++ { + yyv4400 = append(yyv4400, ContainerPort{}) + yyh4400.ElemContainerState(yyj4400) if r.TryDecodeAsNil() { - yyv4395[yyj4395] = ContainerPort{} + yyv4400[yyj4400] = ContainerPort{} } else { - yyv4397 := &yyv4395[yyj4395] - yyv4397.CodecDecodeSelf(d) + yyv4402 := &yyv4400[yyj4400] + yyv4402.CodecDecodeSelf(d) } } } } else { - yyj4395 := 0 - for ; !r.CheckBreak(); yyj4395++ { + yyj4400 := 0 + for ; !r.CheckBreak(); yyj4400++ { - if yyj4395 >= len(yyv4395) { - yyv4395 = append(yyv4395, ContainerPort{}) // var yyz4395 ContainerPort - yyc4395 = true + if yyj4400 >= len(yyv4400) { + yyv4400 = append(yyv4400, ContainerPort{}) // var yyz4400 ContainerPort + yyc4400 = true } - yyh4395.ElemContainerState(yyj4395) - if yyj4395 < len(yyv4395) { + yyh4400.ElemContainerState(yyj4400) + if yyj4400 < len(yyv4400) { if r.TryDecodeAsNil() { - yyv4395[yyj4395] = ContainerPort{} + yyv4400[yyj4400] = ContainerPort{} } else { - yyv4398 := &yyv4395[yyj4395] - yyv4398.CodecDecodeSelf(d) + yyv4403 := &yyv4400[yyj4400] + yyv4403.CodecDecodeSelf(d) } } else { @@ -55198,17 +55246,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj4395 < len(yyv4395) { - yyv4395 = yyv4395[:yyj4395] - yyc4395 = true - } else if yyj4395 == 0 && yyv4395 == nil { - yyv4395 = []ContainerPort{} - yyc4395 = true + if yyj4400 < len(yyv4400) { + yyv4400 = yyv4400[:yyj4400] + yyc4400 = true + } else if yyj4400 == 0 && yyv4400 == nil { + yyv4400 = []ContainerPort{} + yyc4400 = true } } - yyh4395.End() - if yyc4395 { - *v = yyv4395 + yyh4400.End() + if yyc4400 { + *v = yyv4400 } } @@ -55217,10 +55265,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4399 := range v { + for _, yyv4404 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4400 := &yyv4399 - yy4400.CodecEncodeSelf(e) + yy4405 := &yyv4404 + yy4405.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55230,83 +55278,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4401 := *v - yyh4401, yyl4401 := z.DecSliceHelperStart() - var yyc4401 bool - if yyl4401 == 0 { - if yyv4401 == nil { - yyv4401 = []EnvVar{} - yyc4401 = true - } else if len(yyv4401) != 0 { - yyv4401 = yyv4401[:0] - yyc4401 = true + yyv4406 := *v + yyh4406, yyl4406 := z.DecSliceHelperStart() + var yyc4406 bool + if yyl4406 == 0 { + if yyv4406 == nil { + yyv4406 = []EnvVar{} + yyc4406 = true + } else if len(yyv4406) != 0 { + yyv4406 = yyv4406[:0] + yyc4406 = true } - } else if yyl4401 > 0 { - var yyrr4401, yyrl4401 int - var yyrt4401 bool - if yyl4401 > cap(yyv4401) { + } else if yyl4406 > 0 { + var yyrr4406, yyrl4406 int + var yyrt4406 bool + if yyl4406 > cap(yyv4406) { - yyrg4401 := len(yyv4401) > 0 - yyv24401 := yyv4401 - yyrl4401, yyrt4401 = z.DecInferLen(yyl4401, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4401 { - if yyrl4401 <= cap(yyv4401) { - yyv4401 = yyv4401[:yyrl4401] + yyrg4406 := len(yyv4406) > 0 + yyv24406 := yyv4406 + yyrl4406, yyrt4406 = z.DecInferLen(yyl4406, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4406 { + if yyrl4406 <= cap(yyv4406) { + yyv4406 = yyv4406[:yyrl4406] } else { - yyv4401 = make([]EnvVar, yyrl4401) + yyv4406 = make([]EnvVar, yyrl4406) } } else { - yyv4401 = make([]EnvVar, yyrl4401) + yyv4406 = make([]EnvVar, yyrl4406) } - yyc4401 = true - yyrr4401 = len(yyv4401) - if yyrg4401 { - copy(yyv4401, yyv24401) + yyc4406 = true + yyrr4406 = len(yyv4406) + if yyrg4406 { + copy(yyv4406, yyv24406) } - } else if yyl4401 != len(yyv4401) { - yyv4401 = yyv4401[:yyl4401] - yyc4401 = true + } else if yyl4406 != len(yyv4406) { + yyv4406 = yyv4406[:yyl4406] + yyc4406 = true } - yyj4401 := 0 - for ; yyj4401 < yyrr4401; yyj4401++ { - yyh4401.ElemContainerState(yyj4401) + yyj4406 := 0 + for ; yyj4406 < yyrr4406; yyj4406++ { + yyh4406.ElemContainerState(yyj4406) if r.TryDecodeAsNil() { - yyv4401[yyj4401] = EnvVar{} + yyv4406[yyj4406] = EnvVar{} } else { - yyv4402 := &yyv4401[yyj4401] - yyv4402.CodecDecodeSelf(d) + yyv4407 := &yyv4406[yyj4406] + yyv4407.CodecDecodeSelf(d) } } - if yyrt4401 { - for ; yyj4401 < yyl4401; yyj4401++ { - yyv4401 = append(yyv4401, EnvVar{}) - yyh4401.ElemContainerState(yyj4401) + if yyrt4406 { + for ; yyj4406 < yyl4406; yyj4406++ { + yyv4406 = append(yyv4406, EnvVar{}) + yyh4406.ElemContainerState(yyj4406) if r.TryDecodeAsNil() { - yyv4401[yyj4401] = EnvVar{} + yyv4406[yyj4406] = EnvVar{} } else { - yyv4403 := &yyv4401[yyj4401] - yyv4403.CodecDecodeSelf(d) + yyv4408 := &yyv4406[yyj4406] + yyv4408.CodecDecodeSelf(d) } } } } else { - yyj4401 := 0 - for ; !r.CheckBreak(); yyj4401++ { + yyj4406 := 0 + for ; !r.CheckBreak(); yyj4406++ { - if yyj4401 >= len(yyv4401) { - yyv4401 = append(yyv4401, EnvVar{}) // var yyz4401 EnvVar - yyc4401 = true + if yyj4406 >= len(yyv4406) { + yyv4406 = append(yyv4406, EnvVar{}) // var yyz4406 EnvVar + yyc4406 = true } - yyh4401.ElemContainerState(yyj4401) - if yyj4401 < len(yyv4401) { + yyh4406.ElemContainerState(yyj4406) + if yyj4406 < len(yyv4406) { if r.TryDecodeAsNil() { - yyv4401[yyj4401] = EnvVar{} + yyv4406[yyj4406] = EnvVar{} } else { - yyv4404 := &yyv4401[yyj4401] - yyv4404.CodecDecodeSelf(d) + yyv4409 := &yyv4406[yyj4406] + yyv4409.CodecDecodeSelf(d) } } else { @@ -55314,17 +55362,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj4401 < len(yyv4401) { - yyv4401 = yyv4401[:yyj4401] - yyc4401 = true - } else if yyj4401 == 0 && yyv4401 == nil { - yyv4401 = []EnvVar{} - yyc4401 = true + if yyj4406 < len(yyv4406) { + yyv4406 = yyv4406[:yyj4406] + yyc4406 = true + } else if yyj4406 == 0 && yyv4406 == nil { + yyv4406 = []EnvVar{} + yyc4406 = true } } - yyh4401.End() - if yyc4401 { - *v = yyv4401 + yyh4406.End() + if yyc4406 { + *v = yyv4406 } } @@ -55333,10 +55381,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4405 := range v { + for _, yyv4410 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4406 := &yyv4405 - yy4406.CodecEncodeSelf(e) + yy4411 := &yyv4410 + yy4411.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55346,83 +55394,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4407 := *v - yyh4407, yyl4407 := z.DecSliceHelperStart() - var yyc4407 bool - if yyl4407 == 0 { - if yyv4407 == nil { - yyv4407 = []VolumeMount{} - yyc4407 = true - } else if len(yyv4407) != 0 { - yyv4407 = yyv4407[:0] - yyc4407 = true + yyv4412 := *v + yyh4412, yyl4412 := z.DecSliceHelperStart() + var yyc4412 bool + if yyl4412 == 0 { + if yyv4412 == nil { + yyv4412 = []VolumeMount{} + yyc4412 = true + } else if len(yyv4412) != 0 { + yyv4412 = yyv4412[:0] + yyc4412 = true } - } else if yyl4407 > 0 { - var yyrr4407, yyrl4407 int - var yyrt4407 bool - if yyl4407 > cap(yyv4407) { + } else if yyl4412 > 0 { + var yyrr4412, yyrl4412 int + var yyrt4412 bool + if yyl4412 > cap(yyv4412) { - yyrg4407 := len(yyv4407) > 0 - yyv24407 := yyv4407 - yyrl4407, yyrt4407 = z.DecInferLen(yyl4407, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4407 { - if yyrl4407 <= cap(yyv4407) { - yyv4407 = yyv4407[:yyrl4407] + yyrg4412 := len(yyv4412) > 0 + yyv24412 := yyv4412 + yyrl4412, yyrt4412 = z.DecInferLen(yyl4412, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4412 { + if yyrl4412 <= cap(yyv4412) { + yyv4412 = yyv4412[:yyrl4412] } else { - yyv4407 = make([]VolumeMount, yyrl4407) + yyv4412 = make([]VolumeMount, yyrl4412) } } else { - yyv4407 = make([]VolumeMount, yyrl4407) + yyv4412 = make([]VolumeMount, yyrl4412) } - yyc4407 = true - yyrr4407 = len(yyv4407) - if yyrg4407 { - copy(yyv4407, yyv24407) + yyc4412 = true + yyrr4412 = len(yyv4412) + if yyrg4412 { + copy(yyv4412, yyv24412) } - } else if yyl4407 != len(yyv4407) { - yyv4407 = yyv4407[:yyl4407] - yyc4407 = true + } else if yyl4412 != len(yyv4412) { + yyv4412 = yyv4412[:yyl4412] + yyc4412 = true } - yyj4407 := 0 - for ; yyj4407 < yyrr4407; yyj4407++ { - yyh4407.ElemContainerState(yyj4407) + yyj4412 := 0 + for ; yyj4412 < yyrr4412; yyj4412++ { + yyh4412.ElemContainerState(yyj4412) if r.TryDecodeAsNil() { - yyv4407[yyj4407] = VolumeMount{} + yyv4412[yyj4412] = VolumeMount{} } else { - yyv4408 := &yyv4407[yyj4407] - yyv4408.CodecDecodeSelf(d) + yyv4413 := &yyv4412[yyj4412] + yyv4413.CodecDecodeSelf(d) } } - if yyrt4407 { - for ; yyj4407 < yyl4407; yyj4407++ { - yyv4407 = append(yyv4407, VolumeMount{}) - yyh4407.ElemContainerState(yyj4407) + if yyrt4412 { + for ; yyj4412 < yyl4412; yyj4412++ { + yyv4412 = append(yyv4412, VolumeMount{}) + yyh4412.ElemContainerState(yyj4412) if r.TryDecodeAsNil() { - yyv4407[yyj4407] = VolumeMount{} + yyv4412[yyj4412] = VolumeMount{} } else { - yyv4409 := &yyv4407[yyj4407] - yyv4409.CodecDecodeSelf(d) + yyv4414 := &yyv4412[yyj4412] + yyv4414.CodecDecodeSelf(d) } } } } else { - yyj4407 := 0 - for ; !r.CheckBreak(); yyj4407++ { + yyj4412 := 0 + for ; !r.CheckBreak(); yyj4412++ { - if yyj4407 >= len(yyv4407) { - yyv4407 = append(yyv4407, VolumeMount{}) // var yyz4407 VolumeMount - yyc4407 = true + if yyj4412 >= len(yyv4412) { + yyv4412 = append(yyv4412, VolumeMount{}) // var yyz4412 VolumeMount + yyc4412 = true } - yyh4407.ElemContainerState(yyj4407) - if yyj4407 < len(yyv4407) { + yyh4412.ElemContainerState(yyj4412) + if yyj4412 < len(yyv4412) { if r.TryDecodeAsNil() { - yyv4407[yyj4407] = VolumeMount{} + yyv4412[yyj4412] = VolumeMount{} } else { - yyv4410 := &yyv4407[yyj4407] - yyv4410.CodecDecodeSelf(d) + yyv4415 := &yyv4412[yyj4412] + yyv4415.CodecDecodeSelf(d) } } else { @@ -55430,17 +55478,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj4407 < len(yyv4407) { - yyv4407 = yyv4407[:yyj4407] - yyc4407 = true - } else if yyj4407 == 0 && yyv4407 == nil { - yyv4407 = []VolumeMount{} - yyc4407 = true + if yyj4412 < len(yyv4412) { + yyv4412 = yyv4412[:yyj4412] + yyc4412 = true + } else if yyj4412 == 0 && yyv4412 == nil { + yyv4412 = []VolumeMount{} + yyc4412 = true } } - yyh4407.End() - if yyc4407 { - *v = yyv4407 + yyh4412.End() + if yyc4412 { + *v = yyv4412 } } @@ -55449,10 +55497,10 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4411 := range v { + for _, yyv4416 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4412 := &yyv4411 - yy4412.CodecEncodeSelf(e) + yy4417 := &yyv4416 + yy4417.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55462,83 +55510,83 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4413 := *v - yyh4413, yyl4413 := z.DecSliceHelperStart() - var yyc4413 bool - if yyl4413 == 0 { - if yyv4413 == nil { - yyv4413 = []NodeSelectorTerm{} - yyc4413 = true - } else if len(yyv4413) != 0 { - yyv4413 = yyv4413[:0] - yyc4413 = true + yyv4418 := *v + yyh4418, yyl4418 := z.DecSliceHelperStart() + var yyc4418 bool + if yyl4418 == 0 { + if yyv4418 == nil { + yyv4418 = []NodeSelectorTerm{} + yyc4418 = true + } else if len(yyv4418) != 0 { + yyv4418 = yyv4418[:0] + yyc4418 = true } - } else if yyl4413 > 0 { - var yyrr4413, yyrl4413 int - var yyrt4413 bool - if yyl4413 > cap(yyv4413) { + } else if yyl4418 > 0 { + var yyrr4418, yyrl4418 int + var yyrt4418 bool + if yyl4418 > cap(yyv4418) { - yyrg4413 := len(yyv4413) > 0 - yyv24413 := yyv4413 - yyrl4413, yyrt4413 = z.DecInferLen(yyl4413, z.DecBasicHandle().MaxInitLen, 24) - if yyrt4413 { - if yyrl4413 <= cap(yyv4413) { - yyv4413 = yyv4413[:yyrl4413] + yyrg4418 := len(yyv4418) > 0 + yyv24418 := yyv4418 + yyrl4418, yyrt4418 = z.DecInferLen(yyl4418, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4418 { + if yyrl4418 <= cap(yyv4418) { + yyv4418 = yyv4418[:yyrl4418] } else { - yyv4413 = make([]NodeSelectorTerm, yyrl4413) + yyv4418 = make([]NodeSelectorTerm, yyrl4418) } } else { - yyv4413 = make([]NodeSelectorTerm, yyrl4413) + yyv4418 = make([]NodeSelectorTerm, yyrl4418) } - yyc4413 = true - yyrr4413 = len(yyv4413) - if yyrg4413 { - copy(yyv4413, yyv24413) + yyc4418 = true + yyrr4418 = len(yyv4418) + if yyrg4418 { + copy(yyv4418, yyv24418) } - } else if yyl4413 != len(yyv4413) { - yyv4413 = yyv4413[:yyl4413] - yyc4413 = true + } else if yyl4418 != len(yyv4418) { + yyv4418 = yyv4418[:yyl4418] + yyc4418 = true } - yyj4413 := 0 - for ; yyj4413 < yyrr4413; yyj4413++ { - yyh4413.ElemContainerState(yyj4413) + yyj4418 := 0 + for ; yyj4418 < yyrr4418; yyj4418++ { + yyh4418.ElemContainerState(yyj4418) if r.TryDecodeAsNil() { - yyv4413[yyj4413] = NodeSelectorTerm{} + yyv4418[yyj4418] = NodeSelectorTerm{} } else { - yyv4414 := &yyv4413[yyj4413] - yyv4414.CodecDecodeSelf(d) + yyv4419 := &yyv4418[yyj4418] + yyv4419.CodecDecodeSelf(d) } } - if yyrt4413 { - for ; yyj4413 < yyl4413; yyj4413++ { - yyv4413 = append(yyv4413, NodeSelectorTerm{}) - yyh4413.ElemContainerState(yyj4413) + if yyrt4418 { + for ; yyj4418 < yyl4418; yyj4418++ { + yyv4418 = append(yyv4418, NodeSelectorTerm{}) + yyh4418.ElemContainerState(yyj4418) if r.TryDecodeAsNil() { - yyv4413[yyj4413] = NodeSelectorTerm{} + yyv4418[yyj4418] = NodeSelectorTerm{} } else { - yyv4415 := &yyv4413[yyj4413] - yyv4415.CodecDecodeSelf(d) + yyv4420 := &yyv4418[yyj4418] + yyv4420.CodecDecodeSelf(d) } } } } else { - yyj4413 := 0 - for ; !r.CheckBreak(); yyj4413++ { + yyj4418 := 0 + for ; !r.CheckBreak(); yyj4418++ { - if yyj4413 >= len(yyv4413) { - yyv4413 = append(yyv4413, NodeSelectorTerm{}) // var yyz4413 NodeSelectorTerm - yyc4413 = true + if yyj4418 >= len(yyv4418) { + yyv4418 = append(yyv4418, NodeSelectorTerm{}) // var yyz4418 NodeSelectorTerm + yyc4418 = true } - yyh4413.ElemContainerState(yyj4413) - if yyj4413 < len(yyv4413) { + yyh4418.ElemContainerState(yyj4418) + if yyj4418 < len(yyv4418) { if r.TryDecodeAsNil() { - yyv4413[yyj4413] = NodeSelectorTerm{} + yyv4418[yyj4418] = NodeSelectorTerm{} } else { - yyv4416 := &yyv4413[yyj4413] - yyv4416.CodecDecodeSelf(d) + yyv4421 := &yyv4418[yyj4418] + yyv4421.CodecDecodeSelf(d) } } else { @@ -55546,17 +55594,17 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } - if yyj4413 < len(yyv4413) { - yyv4413 = yyv4413[:yyj4413] - yyc4413 = true - } else if yyj4413 == 0 && yyv4413 == nil { - yyv4413 = []NodeSelectorTerm{} - yyc4413 = true + if yyj4418 < len(yyv4418) { + yyv4418 = yyv4418[:yyj4418] + yyc4418 = true + } else if yyj4418 == 0 && yyv4418 == nil { + yyv4418 = []NodeSelectorTerm{} + yyc4418 = true } } - yyh4413.End() - if yyc4413 { - *v = yyv4413 + yyh4418.End() + if yyc4418 { + *v = yyv4418 } } @@ -55565,10 +55613,10 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4417 := range v { + for _, yyv4422 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4418 := &yyv4417 - yy4418.CodecEncodeSelf(e) + yy4423 := &yyv4422 + yy4423.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55578,83 +55626,83 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4419 := *v - yyh4419, yyl4419 := z.DecSliceHelperStart() - var yyc4419 bool - if yyl4419 == 0 { - if yyv4419 == nil { - yyv4419 = []NodeSelectorRequirement{} - yyc4419 = true - } else if len(yyv4419) != 0 { - yyv4419 = yyv4419[:0] - yyc4419 = true + yyv4424 := *v + yyh4424, yyl4424 := z.DecSliceHelperStart() + var yyc4424 bool + if yyl4424 == 0 { + if yyv4424 == nil { + yyv4424 = []NodeSelectorRequirement{} + yyc4424 = true + } else if len(yyv4424) != 0 { + yyv4424 = yyv4424[:0] + yyc4424 = true } - } else if yyl4419 > 0 { - var yyrr4419, yyrl4419 int - var yyrt4419 bool - if yyl4419 > cap(yyv4419) { + } else if yyl4424 > 0 { + var yyrr4424, yyrl4424 int + var yyrt4424 bool + if yyl4424 > cap(yyv4424) { - yyrg4419 := len(yyv4419) > 0 - yyv24419 := yyv4419 - yyrl4419, yyrt4419 = z.DecInferLen(yyl4419, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4419 { - if yyrl4419 <= cap(yyv4419) { - yyv4419 = yyv4419[:yyrl4419] + yyrg4424 := len(yyv4424) > 0 + yyv24424 := yyv4424 + yyrl4424, yyrt4424 = z.DecInferLen(yyl4424, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4424 { + if yyrl4424 <= cap(yyv4424) { + yyv4424 = yyv4424[:yyrl4424] } else { - yyv4419 = make([]NodeSelectorRequirement, yyrl4419) + yyv4424 = make([]NodeSelectorRequirement, yyrl4424) } } else { - yyv4419 = make([]NodeSelectorRequirement, yyrl4419) + yyv4424 = make([]NodeSelectorRequirement, yyrl4424) } - yyc4419 = true - yyrr4419 = len(yyv4419) - if yyrg4419 { - copy(yyv4419, yyv24419) + yyc4424 = true + yyrr4424 = len(yyv4424) + if yyrg4424 { + copy(yyv4424, yyv24424) } - } else if yyl4419 != len(yyv4419) { - yyv4419 = yyv4419[:yyl4419] - yyc4419 = true + } else if yyl4424 != len(yyv4424) { + yyv4424 = yyv4424[:yyl4424] + yyc4424 = true } - yyj4419 := 0 - for ; yyj4419 < yyrr4419; yyj4419++ { - yyh4419.ElemContainerState(yyj4419) + yyj4424 := 0 + for ; yyj4424 < yyrr4424; yyj4424++ { + yyh4424.ElemContainerState(yyj4424) if r.TryDecodeAsNil() { - yyv4419[yyj4419] = NodeSelectorRequirement{} + yyv4424[yyj4424] = NodeSelectorRequirement{} } else { - yyv4420 := &yyv4419[yyj4419] - yyv4420.CodecDecodeSelf(d) + yyv4425 := &yyv4424[yyj4424] + yyv4425.CodecDecodeSelf(d) } } - if yyrt4419 { - for ; yyj4419 < yyl4419; yyj4419++ { - yyv4419 = append(yyv4419, NodeSelectorRequirement{}) - yyh4419.ElemContainerState(yyj4419) + if yyrt4424 { + for ; yyj4424 < yyl4424; yyj4424++ { + yyv4424 = append(yyv4424, NodeSelectorRequirement{}) + yyh4424.ElemContainerState(yyj4424) if r.TryDecodeAsNil() { - yyv4419[yyj4419] = NodeSelectorRequirement{} + yyv4424[yyj4424] = NodeSelectorRequirement{} } else { - yyv4421 := &yyv4419[yyj4419] - yyv4421.CodecDecodeSelf(d) + yyv4426 := &yyv4424[yyj4424] + yyv4426.CodecDecodeSelf(d) } } } } else { - yyj4419 := 0 - for ; !r.CheckBreak(); yyj4419++ { + yyj4424 := 0 + for ; !r.CheckBreak(); yyj4424++ { - if yyj4419 >= len(yyv4419) { - yyv4419 = append(yyv4419, NodeSelectorRequirement{}) // var yyz4419 NodeSelectorRequirement - yyc4419 = true + if yyj4424 >= len(yyv4424) { + yyv4424 = append(yyv4424, NodeSelectorRequirement{}) // var yyz4424 NodeSelectorRequirement + yyc4424 = true } - yyh4419.ElemContainerState(yyj4419) - if yyj4419 < len(yyv4419) { + yyh4424.ElemContainerState(yyj4424) + if yyj4424 < len(yyv4424) { if r.TryDecodeAsNil() { - yyv4419[yyj4419] = NodeSelectorRequirement{} + yyv4424[yyj4424] = NodeSelectorRequirement{} } else { - yyv4422 := &yyv4419[yyj4419] - yyv4422.CodecDecodeSelf(d) + yyv4427 := &yyv4424[yyj4424] + yyv4427.CodecDecodeSelf(d) } } else { @@ -55662,17 +55710,17 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj4419 < len(yyv4419) { - yyv4419 = yyv4419[:yyj4419] - yyc4419 = true - } else if yyj4419 == 0 && yyv4419 == nil { - yyv4419 = []NodeSelectorRequirement{} - yyc4419 = true + if yyj4424 < len(yyv4424) { + yyv4424 = yyv4424[:yyj4424] + yyc4424 = true + } else if yyj4424 == 0 && yyv4424 == nil { + yyv4424 = []NodeSelectorRequirement{} + yyc4424 = true } } - yyh4419.End() - if yyc4419 { - *v = yyv4419 + yyh4424.End() + if yyc4424 { + *v = yyv4424 } } @@ -55681,10 +55729,10 @@ func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4423 := range v { + for _, yyv4428 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4424 := &yyv4423 - yy4424.CodecEncodeSelf(e) + yy4429 := &yyv4428 + yy4429.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55694,83 +55742,83 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4425 := *v - yyh4425, yyl4425 := z.DecSliceHelperStart() - var yyc4425 bool - if yyl4425 == 0 { - if yyv4425 == nil { - yyv4425 = []PodAffinityTerm{} - yyc4425 = true - } else if len(yyv4425) != 0 { - yyv4425 = yyv4425[:0] - yyc4425 = true + yyv4430 := *v + yyh4430, yyl4430 := z.DecSliceHelperStart() + var yyc4430 bool + if yyl4430 == 0 { + if yyv4430 == nil { + yyv4430 = []PodAffinityTerm{} + yyc4430 = true + } else if len(yyv4430) != 0 { + yyv4430 = yyv4430[:0] + yyc4430 = true } - } else if yyl4425 > 0 { - var yyrr4425, yyrl4425 int - var yyrt4425 bool - if yyl4425 > cap(yyv4425) { + } else if yyl4430 > 0 { + var yyrr4430, yyrl4430 int + var yyrt4430 bool + if yyl4430 > cap(yyv4430) { - yyrg4425 := len(yyv4425) > 0 - yyv24425 := yyv4425 - yyrl4425, yyrt4425 = z.DecInferLen(yyl4425, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4425 { - if yyrl4425 <= cap(yyv4425) { - yyv4425 = yyv4425[:yyrl4425] + yyrg4430 := len(yyv4430) > 0 + yyv24430 := yyv4430 + yyrl4430, yyrt4430 = z.DecInferLen(yyl4430, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4430 { + if yyrl4430 <= cap(yyv4430) { + yyv4430 = yyv4430[:yyrl4430] } else { - yyv4425 = make([]PodAffinityTerm, yyrl4425) + yyv4430 = make([]PodAffinityTerm, yyrl4430) } } else { - yyv4425 = make([]PodAffinityTerm, yyrl4425) + yyv4430 = make([]PodAffinityTerm, yyrl4430) } - yyc4425 = true - yyrr4425 = len(yyv4425) - if yyrg4425 { - copy(yyv4425, yyv24425) + yyc4430 = true + yyrr4430 = len(yyv4430) + if yyrg4430 { + copy(yyv4430, yyv24430) } - } else if yyl4425 != len(yyv4425) { - yyv4425 = yyv4425[:yyl4425] - yyc4425 = true + } else if yyl4430 != len(yyv4430) { + yyv4430 = yyv4430[:yyl4430] + yyc4430 = true } - yyj4425 := 0 - for ; yyj4425 < yyrr4425; yyj4425++ { - yyh4425.ElemContainerState(yyj4425) + yyj4430 := 0 + for ; yyj4430 < yyrr4430; yyj4430++ { + yyh4430.ElemContainerState(yyj4430) if r.TryDecodeAsNil() { - yyv4425[yyj4425] = PodAffinityTerm{} + yyv4430[yyj4430] = PodAffinityTerm{} } else { - yyv4426 := &yyv4425[yyj4425] - yyv4426.CodecDecodeSelf(d) + yyv4431 := &yyv4430[yyj4430] + yyv4431.CodecDecodeSelf(d) } } - if yyrt4425 { - for ; yyj4425 < yyl4425; yyj4425++ { - yyv4425 = append(yyv4425, PodAffinityTerm{}) - yyh4425.ElemContainerState(yyj4425) + if yyrt4430 { + for ; yyj4430 < yyl4430; yyj4430++ { + yyv4430 = append(yyv4430, PodAffinityTerm{}) + yyh4430.ElemContainerState(yyj4430) if r.TryDecodeAsNil() { - yyv4425[yyj4425] = PodAffinityTerm{} + yyv4430[yyj4430] = PodAffinityTerm{} } else { - yyv4427 := &yyv4425[yyj4425] - yyv4427.CodecDecodeSelf(d) + yyv4432 := &yyv4430[yyj4430] + yyv4432.CodecDecodeSelf(d) } } } } else { - yyj4425 := 0 - for ; !r.CheckBreak(); yyj4425++ { + yyj4430 := 0 + for ; !r.CheckBreak(); yyj4430++ { - if yyj4425 >= len(yyv4425) { - yyv4425 = append(yyv4425, PodAffinityTerm{}) // var yyz4425 PodAffinityTerm - yyc4425 = true + if yyj4430 >= len(yyv4430) { + yyv4430 = append(yyv4430, PodAffinityTerm{}) // var yyz4430 PodAffinityTerm + yyc4430 = true } - yyh4425.ElemContainerState(yyj4425) - if yyj4425 < len(yyv4425) { + yyh4430.ElemContainerState(yyj4430) + if yyj4430 < len(yyv4430) { if r.TryDecodeAsNil() { - yyv4425[yyj4425] = PodAffinityTerm{} + yyv4430[yyj4430] = PodAffinityTerm{} } else { - yyv4428 := &yyv4425[yyj4425] - yyv4428.CodecDecodeSelf(d) + yyv4433 := &yyv4430[yyj4430] + yyv4433.CodecDecodeSelf(d) } } else { @@ -55778,17 +55826,17 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } - if yyj4425 < len(yyv4425) { - yyv4425 = yyv4425[:yyj4425] - yyc4425 = true - } else if yyj4425 == 0 && yyv4425 == nil { - yyv4425 = []PodAffinityTerm{} - yyc4425 = true + if yyj4430 < len(yyv4430) { + yyv4430 = yyv4430[:yyj4430] + yyc4430 = true + } else if yyj4430 == 0 && yyv4430 == nil { + yyv4430 = []PodAffinityTerm{} + yyc4430 = true } } - yyh4425.End() - if yyc4425 { - *v = yyv4425 + yyh4430.End() + if yyc4430 { + *v = yyv4430 } } @@ -55797,10 +55845,10 @@ func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinity z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4429 := range v { + for _, yyv4434 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4430 := &yyv4429 - yy4430.CodecEncodeSelf(e) + yy4435 := &yyv4434 + yy4435.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55810,83 +55858,83 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4431 := *v - yyh4431, yyl4431 := z.DecSliceHelperStart() - var yyc4431 bool - if yyl4431 == 0 { - if yyv4431 == nil { - yyv4431 = []WeightedPodAffinityTerm{} - yyc4431 = true - } else if len(yyv4431) != 0 { - yyv4431 = yyv4431[:0] - yyc4431 = true + yyv4436 := *v + yyh4436, yyl4436 := z.DecSliceHelperStart() + var yyc4436 bool + if yyl4436 == 0 { + if yyv4436 == nil { + yyv4436 = []WeightedPodAffinityTerm{} + yyc4436 = true + } else if len(yyv4436) != 0 { + yyv4436 = yyv4436[:0] + yyc4436 = true } - } else if yyl4431 > 0 { - var yyrr4431, yyrl4431 int - var yyrt4431 bool - if yyl4431 > cap(yyv4431) { + } else if yyl4436 > 0 { + var yyrr4436, yyrl4436 int + var yyrt4436 bool + if yyl4436 > cap(yyv4436) { - yyrg4431 := len(yyv4431) > 0 - yyv24431 := yyv4431 - yyrl4431, yyrt4431 = z.DecInferLen(yyl4431, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4431 { - if yyrl4431 <= cap(yyv4431) { - yyv4431 = yyv4431[:yyrl4431] + yyrg4436 := len(yyv4436) > 0 + yyv24436 := yyv4436 + yyrl4436, yyrt4436 = z.DecInferLen(yyl4436, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4436 { + if yyrl4436 <= cap(yyv4436) { + yyv4436 = yyv4436[:yyrl4436] } else { - yyv4431 = make([]WeightedPodAffinityTerm, yyrl4431) + yyv4436 = make([]WeightedPodAffinityTerm, yyrl4436) } } else { - yyv4431 = make([]WeightedPodAffinityTerm, yyrl4431) + yyv4436 = make([]WeightedPodAffinityTerm, yyrl4436) } - yyc4431 = true - yyrr4431 = len(yyv4431) - if yyrg4431 { - copy(yyv4431, yyv24431) + yyc4436 = true + yyrr4436 = len(yyv4436) + if yyrg4436 { + copy(yyv4436, yyv24436) } - } else if yyl4431 != len(yyv4431) { - yyv4431 = yyv4431[:yyl4431] - yyc4431 = true + } else if yyl4436 != len(yyv4436) { + yyv4436 = yyv4436[:yyl4436] + yyc4436 = true } - yyj4431 := 0 - for ; yyj4431 < yyrr4431; yyj4431++ { - yyh4431.ElemContainerState(yyj4431) + yyj4436 := 0 + for ; yyj4436 < yyrr4436; yyj4436++ { + yyh4436.ElemContainerState(yyj4436) if r.TryDecodeAsNil() { - yyv4431[yyj4431] = WeightedPodAffinityTerm{} + yyv4436[yyj4436] = WeightedPodAffinityTerm{} } else { - yyv4432 := &yyv4431[yyj4431] - yyv4432.CodecDecodeSelf(d) + yyv4437 := &yyv4436[yyj4436] + yyv4437.CodecDecodeSelf(d) } } - if yyrt4431 { - for ; yyj4431 < yyl4431; yyj4431++ { - yyv4431 = append(yyv4431, WeightedPodAffinityTerm{}) - yyh4431.ElemContainerState(yyj4431) + if yyrt4436 { + for ; yyj4436 < yyl4436; yyj4436++ { + yyv4436 = append(yyv4436, WeightedPodAffinityTerm{}) + yyh4436.ElemContainerState(yyj4436) if r.TryDecodeAsNil() { - yyv4431[yyj4431] = WeightedPodAffinityTerm{} + yyv4436[yyj4436] = WeightedPodAffinityTerm{} } else { - yyv4433 := &yyv4431[yyj4431] - yyv4433.CodecDecodeSelf(d) + yyv4438 := &yyv4436[yyj4436] + yyv4438.CodecDecodeSelf(d) } } } } else { - yyj4431 := 0 - for ; !r.CheckBreak(); yyj4431++ { + yyj4436 := 0 + for ; !r.CheckBreak(); yyj4436++ { - if yyj4431 >= len(yyv4431) { - yyv4431 = append(yyv4431, WeightedPodAffinityTerm{}) // var yyz4431 WeightedPodAffinityTerm - yyc4431 = true + if yyj4436 >= len(yyv4436) { + yyv4436 = append(yyv4436, WeightedPodAffinityTerm{}) // var yyz4436 WeightedPodAffinityTerm + yyc4436 = true } - yyh4431.ElemContainerState(yyj4431) - if yyj4431 < len(yyv4431) { + yyh4436.ElemContainerState(yyj4436) + if yyj4436 < len(yyv4436) { if r.TryDecodeAsNil() { - yyv4431[yyj4431] = WeightedPodAffinityTerm{} + yyv4436[yyj4436] = WeightedPodAffinityTerm{} } else { - yyv4434 := &yyv4431[yyj4431] - yyv4434.CodecDecodeSelf(d) + yyv4439 := &yyv4436[yyj4436] + yyv4439.CodecDecodeSelf(d) } } else { @@ -55894,17 +55942,17 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } - if yyj4431 < len(yyv4431) { - yyv4431 = yyv4431[:yyj4431] - yyc4431 = true - } else if yyj4431 == 0 && yyv4431 == nil { - yyv4431 = []WeightedPodAffinityTerm{} - yyc4431 = true + if yyj4436 < len(yyv4436) { + yyv4436 = yyv4436[:yyj4436] + yyc4436 = true + } else if yyj4436 == 0 && yyv4436 == nil { + yyv4436 = []WeightedPodAffinityTerm{} + yyc4436 = true } } - yyh4431.End() - if yyc4431 { - *v = yyv4431 + yyh4436.End() + if yyc4436 { + *v = yyv4436 } } @@ -55913,10 +55961,10 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4435 := range v { + for _, yyv4440 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4436 := &yyv4435 - yy4436.CodecEncodeSelf(e) + yy4441 := &yyv4440 + yy4441.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55926,83 +55974,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4437 := *v - yyh4437, yyl4437 := z.DecSliceHelperStart() - var yyc4437 bool - if yyl4437 == 0 { - if yyv4437 == nil { - yyv4437 = []PreferredSchedulingTerm{} - yyc4437 = true - } else if len(yyv4437) != 0 { - yyv4437 = yyv4437[:0] - yyc4437 = true + yyv4442 := *v + yyh4442, yyl4442 := z.DecSliceHelperStart() + var yyc4442 bool + if yyl4442 == 0 { + if yyv4442 == nil { + yyv4442 = []PreferredSchedulingTerm{} + yyc4442 = true + } else if len(yyv4442) != 0 { + yyv4442 = yyv4442[:0] + yyc4442 = true } - } else if yyl4437 > 0 { - var yyrr4437, yyrl4437 int - var yyrt4437 bool - if yyl4437 > cap(yyv4437) { + } else if yyl4442 > 0 { + var yyrr4442, yyrl4442 int + var yyrt4442 bool + if yyl4442 > cap(yyv4442) { - yyrg4437 := len(yyv4437) > 0 - yyv24437 := yyv4437 - yyrl4437, yyrt4437 = z.DecInferLen(yyl4437, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4437 { - if yyrl4437 <= cap(yyv4437) { - yyv4437 = yyv4437[:yyrl4437] + yyrg4442 := len(yyv4442) > 0 + yyv24442 := yyv4442 + yyrl4442, yyrt4442 = z.DecInferLen(yyl4442, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4442 { + if yyrl4442 <= cap(yyv4442) { + yyv4442 = yyv4442[:yyrl4442] } else { - yyv4437 = make([]PreferredSchedulingTerm, yyrl4437) + yyv4442 = make([]PreferredSchedulingTerm, yyrl4442) } } else { - yyv4437 = make([]PreferredSchedulingTerm, yyrl4437) + yyv4442 = make([]PreferredSchedulingTerm, yyrl4442) } - yyc4437 = true - yyrr4437 = len(yyv4437) - if yyrg4437 { - copy(yyv4437, yyv24437) + yyc4442 = true + yyrr4442 = len(yyv4442) + if yyrg4442 { + copy(yyv4442, yyv24442) } - } else if yyl4437 != len(yyv4437) { - yyv4437 = yyv4437[:yyl4437] - yyc4437 = true + } else if yyl4442 != len(yyv4442) { + yyv4442 = yyv4442[:yyl4442] + yyc4442 = true } - yyj4437 := 0 - for ; yyj4437 < yyrr4437; yyj4437++ { - yyh4437.ElemContainerState(yyj4437) + yyj4442 := 0 + for ; yyj4442 < yyrr4442; yyj4442++ { + yyh4442.ElemContainerState(yyj4442) if r.TryDecodeAsNil() { - yyv4437[yyj4437] = PreferredSchedulingTerm{} + yyv4442[yyj4442] = PreferredSchedulingTerm{} } else { - yyv4438 := &yyv4437[yyj4437] - yyv4438.CodecDecodeSelf(d) + yyv4443 := &yyv4442[yyj4442] + yyv4443.CodecDecodeSelf(d) } } - if yyrt4437 { - for ; yyj4437 < yyl4437; yyj4437++ { - yyv4437 = append(yyv4437, PreferredSchedulingTerm{}) - yyh4437.ElemContainerState(yyj4437) + if yyrt4442 { + for ; yyj4442 < yyl4442; yyj4442++ { + yyv4442 = append(yyv4442, PreferredSchedulingTerm{}) + yyh4442.ElemContainerState(yyj4442) if r.TryDecodeAsNil() { - yyv4437[yyj4437] = PreferredSchedulingTerm{} + yyv4442[yyj4442] = PreferredSchedulingTerm{} } else { - yyv4439 := &yyv4437[yyj4437] - yyv4439.CodecDecodeSelf(d) + yyv4444 := &yyv4442[yyj4442] + yyv4444.CodecDecodeSelf(d) } } } } else { - yyj4437 := 0 - for ; !r.CheckBreak(); yyj4437++ { + yyj4442 := 0 + for ; !r.CheckBreak(); yyj4442++ { - if yyj4437 >= len(yyv4437) { - yyv4437 = append(yyv4437, PreferredSchedulingTerm{}) // var yyz4437 PreferredSchedulingTerm - yyc4437 = true + if yyj4442 >= len(yyv4442) { + yyv4442 = append(yyv4442, PreferredSchedulingTerm{}) // var yyz4442 PreferredSchedulingTerm + yyc4442 = true } - yyh4437.ElemContainerState(yyj4437) - if yyj4437 < len(yyv4437) { + yyh4442.ElemContainerState(yyj4442) + if yyj4442 < len(yyv4442) { if r.TryDecodeAsNil() { - yyv4437[yyj4437] = PreferredSchedulingTerm{} + yyv4442[yyj4442] = PreferredSchedulingTerm{} } else { - yyv4440 := &yyv4437[yyj4437] - yyv4440.CodecDecodeSelf(d) + yyv4445 := &yyv4442[yyj4442] + yyv4445.CodecDecodeSelf(d) } } else { @@ -56010,17 +56058,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj4437 < len(yyv4437) { - yyv4437 = yyv4437[:yyj4437] - yyc4437 = true - } else if yyj4437 == 0 && yyv4437 == nil { - yyv4437 = []PreferredSchedulingTerm{} - yyc4437 = true + if yyj4442 < len(yyv4442) { + yyv4442 = yyv4442[:yyj4442] + yyc4442 = true + } else if yyj4442 == 0 && yyv4442 == nil { + yyv4442 = []PreferredSchedulingTerm{} + yyc4442 = true } } - yyh4437.End() - if yyc4437 { - *v = yyv4437 + yyh4442.End() + if yyc4442 { + *v = yyv4442 } } @@ -56029,10 +56077,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4441 := range v { + for _, yyv4446 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4442 := &yyv4441 - yy4442.CodecEncodeSelf(e) + yy4447 := &yyv4446 + yy4447.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56042,83 +56090,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4443 := *v - yyh4443, yyl4443 := z.DecSliceHelperStart() - var yyc4443 bool - if yyl4443 == 0 { - if yyv4443 == nil { - yyv4443 = []Volume{} - yyc4443 = true - } else if len(yyv4443) != 0 { - yyv4443 = yyv4443[:0] - yyc4443 = true + yyv4448 := *v + yyh4448, yyl4448 := z.DecSliceHelperStart() + var yyc4448 bool + if yyl4448 == 0 { + if yyv4448 == nil { + yyv4448 = []Volume{} + yyc4448 = true + } else if len(yyv4448) != 0 { + yyv4448 = yyv4448[:0] + yyc4448 = true } - } else if yyl4443 > 0 { - var yyrr4443, yyrl4443 int - var yyrt4443 bool - if yyl4443 > cap(yyv4443) { + } else if yyl4448 > 0 { + var yyrr4448, yyrl4448 int + var yyrt4448 bool + if yyl4448 > cap(yyv4448) { - yyrg4443 := len(yyv4443) > 0 - yyv24443 := yyv4443 - yyrl4443, yyrt4443 = z.DecInferLen(yyl4443, z.DecBasicHandle().MaxInitLen, 176) - if yyrt4443 { - if yyrl4443 <= cap(yyv4443) { - yyv4443 = yyv4443[:yyrl4443] + yyrg4448 := len(yyv4448) > 0 + yyv24448 := yyv4448 + yyrl4448, yyrt4448 = z.DecInferLen(yyl4448, z.DecBasicHandle().MaxInitLen, 176) + if yyrt4448 { + if yyrl4448 <= cap(yyv4448) { + yyv4448 = yyv4448[:yyrl4448] } else { - yyv4443 = make([]Volume, yyrl4443) + yyv4448 = make([]Volume, yyrl4448) } } else { - yyv4443 = make([]Volume, yyrl4443) + yyv4448 = make([]Volume, yyrl4448) } - yyc4443 = true - yyrr4443 = len(yyv4443) - if yyrg4443 { - copy(yyv4443, yyv24443) + yyc4448 = true + yyrr4448 = len(yyv4448) + if yyrg4448 { + copy(yyv4448, yyv24448) } - } else if yyl4443 != len(yyv4443) { - yyv4443 = yyv4443[:yyl4443] - yyc4443 = true + } else if yyl4448 != len(yyv4448) { + yyv4448 = yyv4448[:yyl4448] + yyc4448 = true } - yyj4443 := 0 - for ; yyj4443 < yyrr4443; yyj4443++ { - yyh4443.ElemContainerState(yyj4443) + yyj4448 := 0 + for ; yyj4448 < yyrr4448; yyj4448++ { + yyh4448.ElemContainerState(yyj4448) if r.TryDecodeAsNil() { - yyv4443[yyj4443] = Volume{} + yyv4448[yyj4448] = Volume{} } else { - yyv4444 := &yyv4443[yyj4443] - yyv4444.CodecDecodeSelf(d) + yyv4449 := &yyv4448[yyj4448] + yyv4449.CodecDecodeSelf(d) } } - if yyrt4443 { - for ; yyj4443 < yyl4443; yyj4443++ { - yyv4443 = append(yyv4443, Volume{}) - yyh4443.ElemContainerState(yyj4443) + if yyrt4448 { + for ; yyj4448 < yyl4448; yyj4448++ { + yyv4448 = append(yyv4448, Volume{}) + yyh4448.ElemContainerState(yyj4448) if r.TryDecodeAsNil() { - yyv4443[yyj4443] = Volume{} + yyv4448[yyj4448] = Volume{} } else { - yyv4445 := &yyv4443[yyj4443] - yyv4445.CodecDecodeSelf(d) + yyv4450 := &yyv4448[yyj4448] + yyv4450.CodecDecodeSelf(d) } } } } else { - yyj4443 := 0 - for ; !r.CheckBreak(); yyj4443++ { + yyj4448 := 0 + for ; !r.CheckBreak(); yyj4448++ { - if yyj4443 >= len(yyv4443) { - yyv4443 = append(yyv4443, Volume{}) // var yyz4443 Volume - yyc4443 = true + if yyj4448 >= len(yyv4448) { + yyv4448 = append(yyv4448, Volume{}) // var yyz4448 Volume + yyc4448 = true } - yyh4443.ElemContainerState(yyj4443) - if yyj4443 < len(yyv4443) { + yyh4448.ElemContainerState(yyj4448) + if yyj4448 < len(yyv4448) { if r.TryDecodeAsNil() { - yyv4443[yyj4443] = Volume{} + yyv4448[yyj4448] = Volume{} } else { - yyv4446 := &yyv4443[yyj4443] - yyv4446.CodecDecodeSelf(d) + yyv4451 := &yyv4448[yyj4448] + yyv4451.CodecDecodeSelf(d) } } else { @@ -56126,17 +56174,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4443 < len(yyv4443) { - yyv4443 = yyv4443[:yyj4443] - yyc4443 = true - } else if yyj4443 == 0 && yyv4443 == nil { - yyv4443 = []Volume{} - yyc4443 = true + if yyj4448 < len(yyv4448) { + yyv4448 = yyv4448[:yyj4448] + yyc4448 = true + } else if yyj4448 == 0 && yyv4448 == nil { + yyv4448 = []Volume{} + yyc4448 = true } } - yyh4443.End() - if yyc4443 { - *v = yyv4443 + yyh4448.End() + if yyc4448 { + *v = yyv4448 } } @@ -56145,10 +56193,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4447 := range v { + for _, yyv4452 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4448 := &yyv4447 - yy4448.CodecEncodeSelf(e) + yy4453 := &yyv4452 + yy4453.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56158,83 +56206,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4449 := *v - yyh4449, yyl4449 := z.DecSliceHelperStart() - var yyc4449 bool - if yyl4449 == 0 { - if yyv4449 == nil { - yyv4449 = []Container{} - yyc4449 = true - } else if len(yyv4449) != 0 { - yyv4449 = yyv4449[:0] - yyc4449 = true + yyv4454 := *v + yyh4454, yyl4454 := z.DecSliceHelperStart() + var yyc4454 bool + if yyl4454 == 0 { + if yyv4454 == nil { + yyv4454 = []Container{} + yyc4454 = true + } else if len(yyv4454) != 0 { + yyv4454 = yyv4454[:0] + yyc4454 = true } - } else if yyl4449 > 0 { - var yyrr4449, yyrl4449 int - var yyrt4449 bool - if yyl4449 > cap(yyv4449) { + } else if yyl4454 > 0 { + var yyrr4454, yyrl4454 int + var yyrt4454 bool + if yyl4454 > cap(yyv4454) { - yyrg4449 := len(yyv4449) > 0 - yyv24449 := yyv4449 - yyrl4449, yyrt4449 = z.DecInferLen(yyl4449, z.DecBasicHandle().MaxInitLen, 256) - if yyrt4449 { - if yyrl4449 <= cap(yyv4449) { - yyv4449 = yyv4449[:yyrl4449] + yyrg4454 := len(yyv4454) > 0 + yyv24454 := yyv4454 + yyrl4454, yyrt4454 = z.DecInferLen(yyl4454, z.DecBasicHandle().MaxInitLen, 256) + if yyrt4454 { + if yyrl4454 <= cap(yyv4454) { + yyv4454 = yyv4454[:yyrl4454] } else { - yyv4449 = make([]Container, yyrl4449) + yyv4454 = make([]Container, yyrl4454) } } else { - yyv4449 = make([]Container, yyrl4449) + yyv4454 = make([]Container, yyrl4454) } - yyc4449 = true - yyrr4449 = len(yyv4449) - if yyrg4449 { - copy(yyv4449, yyv24449) + yyc4454 = true + yyrr4454 = len(yyv4454) + if yyrg4454 { + copy(yyv4454, yyv24454) } - } else if yyl4449 != len(yyv4449) { - yyv4449 = yyv4449[:yyl4449] - yyc4449 = true + } else if yyl4454 != len(yyv4454) { + yyv4454 = yyv4454[:yyl4454] + yyc4454 = true } - yyj4449 := 0 - for ; yyj4449 < yyrr4449; yyj4449++ { - yyh4449.ElemContainerState(yyj4449) + yyj4454 := 0 + for ; yyj4454 < yyrr4454; yyj4454++ { + yyh4454.ElemContainerState(yyj4454) if r.TryDecodeAsNil() { - yyv4449[yyj4449] = Container{} + yyv4454[yyj4454] = Container{} } else { - yyv4450 := &yyv4449[yyj4449] - yyv4450.CodecDecodeSelf(d) + yyv4455 := &yyv4454[yyj4454] + yyv4455.CodecDecodeSelf(d) } } - if yyrt4449 { - for ; yyj4449 < yyl4449; yyj4449++ { - yyv4449 = append(yyv4449, Container{}) - yyh4449.ElemContainerState(yyj4449) + if yyrt4454 { + for ; yyj4454 < yyl4454; yyj4454++ { + yyv4454 = append(yyv4454, Container{}) + yyh4454.ElemContainerState(yyj4454) if r.TryDecodeAsNil() { - yyv4449[yyj4449] = Container{} + yyv4454[yyj4454] = Container{} } else { - yyv4451 := &yyv4449[yyj4449] - yyv4451.CodecDecodeSelf(d) + yyv4456 := &yyv4454[yyj4454] + yyv4456.CodecDecodeSelf(d) } } } } else { - yyj4449 := 0 - for ; !r.CheckBreak(); yyj4449++ { + yyj4454 := 0 + for ; !r.CheckBreak(); yyj4454++ { - if yyj4449 >= len(yyv4449) { - yyv4449 = append(yyv4449, Container{}) // var yyz4449 Container - yyc4449 = true + if yyj4454 >= len(yyv4454) { + yyv4454 = append(yyv4454, Container{}) // var yyz4454 Container + yyc4454 = true } - yyh4449.ElemContainerState(yyj4449) - if yyj4449 < len(yyv4449) { + yyh4454.ElemContainerState(yyj4454) + if yyj4454 < len(yyv4454) { if r.TryDecodeAsNil() { - yyv4449[yyj4449] = Container{} + yyv4454[yyj4454] = Container{} } else { - yyv4452 := &yyv4449[yyj4449] - yyv4452.CodecDecodeSelf(d) + yyv4457 := &yyv4454[yyj4454] + yyv4457.CodecDecodeSelf(d) } } else { @@ -56242,17 +56290,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4449 < len(yyv4449) { - yyv4449 = yyv4449[:yyj4449] - yyc4449 = true - } else if yyj4449 == 0 && yyv4449 == nil { - yyv4449 = []Container{} - yyc4449 = true + if yyj4454 < len(yyv4454) { + yyv4454 = yyv4454[:yyj4454] + yyc4454 = true + } else if yyj4454 == 0 && yyv4454 == nil { + yyv4454 = []Container{} + yyc4454 = true } } - yyh4449.End() - if yyc4449 { - *v = yyv4449 + yyh4454.End() + if yyc4454 { + *v = yyv4454 } } @@ -56261,10 +56309,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4453 := range v { + for _, yyv4458 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4454 := &yyv4453 - yy4454.CodecEncodeSelf(e) + yy4459 := &yyv4458 + yy4459.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56274,83 +56322,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4455 := *v - yyh4455, yyl4455 := z.DecSliceHelperStart() - var yyc4455 bool - if yyl4455 == 0 { - if yyv4455 == nil { - yyv4455 = []LocalObjectReference{} - yyc4455 = true - } else if len(yyv4455) != 0 { - yyv4455 = yyv4455[:0] - yyc4455 = true + yyv4460 := *v + yyh4460, yyl4460 := z.DecSliceHelperStart() + var yyc4460 bool + if yyl4460 == 0 { + if yyv4460 == nil { + yyv4460 = []LocalObjectReference{} + yyc4460 = true + } else if len(yyv4460) != 0 { + yyv4460 = yyv4460[:0] + yyc4460 = true } - } else if yyl4455 > 0 { - var yyrr4455, yyrl4455 int - var yyrt4455 bool - if yyl4455 > cap(yyv4455) { + } else if yyl4460 > 0 { + var yyrr4460, yyrl4460 int + var yyrt4460 bool + if yyl4460 > cap(yyv4460) { - yyrg4455 := len(yyv4455) > 0 - yyv24455 := yyv4455 - yyrl4455, yyrt4455 = z.DecInferLen(yyl4455, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4455 { - if yyrl4455 <= cap(yyv4455) { - yyv4455 = yyv4455[:yyrl4455] + yyrg4460 := len(yyv4460) > 0 + yyv24460 := yyv4460 + yyrl4460, yyrt4460 = z.DecInferLen(yyl4460, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4460 { + if yyrl4460 <= cap(yyv4460) { + yyv4460 = yyv4460[:yyrl4460] } else { - yyv4455 = make([]LocalObjectReference, yyrl4455) + yyv4460 = make([]LocalObjectReference, yyrl4460) } } else { - yyv4455 = make([]LocalObjectReference, yyrl4455) + yyv4460 = make([]LocalObjectReference, yyrl4460) } - yyc4455 = true - yyrr4455 = len(yyv4455) - if yyrg4455 { - copy(yyv4455, yyv24455) + yyc4460 = true + yyrr4460 = len(yyv4460) + if yyrg4460 { + copy(yyv4460, yyv24460) } - } else if yyl4455 != len(yyv4455) { - yyv4455 = yyv4455[:yyl4455] - yyc4455 = true + } else if yyl4460 != len(yyv4460) { + yyv4460 = yyv4460[:yyl4460] + yyc4460 = true } - yyj4455 := 0 - for ; yyj4455 < yyrr4455; yyj4455++ { - yyh4455.ElemContainerState(yyj4455) + yyj4460 := 0 + for ; yyj4460 < yyrr4460; yyj4460++ { + yyh4460.ElemContainerState(yyj4460) if r.TryDecodeAsNil() { - yyv4455[yyj4455] = LocalObjectReference{} + yyv4460[yyj4460] = LocalObjectReference{} } else { - yyv4456 := &yyv4455[yyj4455] - yyv4456.CodecDecodeSelf(d) + yyv4461 := &yyv4460[yyj4460] + yyv4461.CodecDecodeSelf(d) } } - if yyrt4455 { - for ; yyj4455 < yyl4455; yyj4455++ { - yyv4455 = append(yyv4455, LocalObjectReference{}) - yyh4455.ElemContainerState(yyj4455) + if yyrt4460 { + for ; yyj4460 < yyl4460; yyj4460++ { + yyv4460 = append(yyv4460, LocalObjectReference{}) + yyh4460.ElemContainerState(yyj4460) if r.TryDecodeAsNil() { - yyv4455[yyj4455] = LocalObjectReference{} + yyv4460[yyj4460] = LocalObjectReference{} } else { - yyv4457 := &yyv4455[yyj4455] - yyv4457.CodecDecodeSelf(d) + yyv4462 := &yyv4460[yyj4460] + yyv4462.CodecDecodeSelf(d) } } } } else { - yyj4455 := 0 - for ; !r.CheckBreak(); yyj4455++ { + yyj4460 := 0 + for ; !r.CheckBreak(); yyj4460++ { - if yyj4455 >= len(yyv4455) { - yyv4455 = append(yyv4455, LocalObjectReference{}) // var yyz4455 LocalObjectReference - yyc4455 = true + if yyj4460 >= len(yyv4460) { + yyv4460 = append(yyv4460, LocalObjectReference{}) // var yyz4460 LocalObjectReference + yyc4460 = true } - yyh4455.ElemContainerState(yyj4455) - if yyj4455 < len(yyv4455) { + yyh4460.ElemContainerState(yyj4460) + if yyj4460 < len(yyv4460) { if r.TryDecodeAsNil() { - yyv4455[yyj4455] = LocalObjectReference{} + yyv4460[yyj4460] = LocalObjectReference{} } else { - yyv4458 := &yyv4455[yyj4455] - yyv4458.CodecDecodeSelf(d) + yyv4463 := &yyv4460[yyj4460] + yyv4463.CodecDecodeSelf(d) } } else { @@ -56358,17 +56406,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4455 < len(yyv4455) { - yyv4455 = yyv4455[:yyj4455] - yyc4455 = true - } else if yyj4455 == 0 && yyv4455 == nil { - yyv4455 = []LocalObjectReference{} - yyc4455 = true + if yyj4460 < len(yyv4460) { + yyv4460 = yyv4460[:yyj4460] + yyc4460 = true + } else if yyj4460 == 0 && yyv4460 == nil { + yyv4460 = []LocalObjectReference{} + yyc4460 = true } } - yyh4455.End() - if yyc4455 { - *v = yyv4455 + yyh4460.End() + if yyc4460 { + *v = yyv4460 } } @@ -56377,10 +56425,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4459 := range v { + for _, yyv4464 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4460 := &yyv4459 - yy4460.CodecEncodeSelf(e) + yy4465 := &yyv4464 + yy4465.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56390,83 +56438,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4461 := *v - yyh4461, yyl4461 := z.DecSliceHelperStart() - var yyc4461 bool - if yyl4461 == 0 { - if yyv4461 == nil { - yyv4461 = []PodCondition{} - yyc4461 = true - } else if len(yyv4461) != 0 { - yyv4461 = yyv4461[:0] - yyc4461 = true + yyv4466 := *v + yyh4466, yyl4466 := z.DecSliceHelperStart() + var yyc4466 bool + if yyl4466 == 0 { + if yyv4466 == nil { + yyv4466 = []PodCondition{} + yyc4466 = true + } else if len(yyv4466) != 0 { + yyv4466 = yyv4466[:0] + yyc4466 = true } - } else if yyl4461 > 0 { - var yyrr4461, yyrl4461 int - var yyrt4461 bool - if yyl4461 > cap(yyv4461) { + } else if yyl4466 > 0 { + var yyrr4466, yyrl4466 int + var yyrt4466 bool + if yyl4466 > cap(yyv4466) { - yyrg4461 := len(yyv4461) > 0 - yyv24461 := yyv4461 - yyrl4461, yyrt4461 = z.DecInferLen(yyl4461, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4461 { - if yyrl4461 <= cap(yyv4461) { - yyv4461 = yyv4461[:yyrl4461] + yyrg4466 := len(yyv4466) > 0 + yyv24466 := yyv4466 + yyrl4466, yyrt4466 = z.DecInferLen(yyl4466, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4466 { + if yyrl4466 <= cap(yyv4466) { + yyv4466 = yyv4466[:yyrl4466] } else { - yyv4461 = make([]PodCondition, yyrl4461) + yyv4466 = make([]PodCondition, yyrl4466) } } else { - yyv4461 = make([]PodCondition, yyrl4461) + yyv4466 = make([]PodCondition, yyrl4466) } - yyc4461 = true - yyrr4461 = len(yyv4461) - if yyrg4461 { - copy(yyv4461, yyv24461) + yyc4466 = true + yyrr4466 = len(yyv4466) + if yyrg4466 { + copy(yyv4466, yyv24466) } - } else if yyl4461 != len(yyv4461) { - yyv4461 = yyv4461[:yyl4461] - yyc4461 = true + } else if yyl4466 != len(yyv4466) { + yyv4466 = yyv4466[:yyl4466] + yyc4466 = true } - yyj4461 := 0 - for ; yyj4461 < yyrr4461; yyj4461++ { - yyh4461.ElemContainerState(yyj4461) + yyj4466 := 0 + for ; yyj4466 < yyrr4466; yyj4466++ { + yyh4466.ElemContainerState(yyj4466) if r.TryDecodeAsNil() { - yyv4461[yyj4461] = PodCondition{} + yyv4466[yyj4466] = PodCondition{} } else { - yyv4462 := &yyv4461[yyj4461] - yyv4462.CodecDecodeSelf(d) + yyv4467 := &yyv4466[yyj4466] + yyv4467.CodecDecodeSelf(d) } } - if yyrt4461 { - for ; yyj4461 < yyl4461; yyj4461++ { - yyv4461 = append(yyv4461, PodCondition{}) - yyh4461.ElemContainerState(yyj4461) + if yyrt4466 { + for ; yyj4466 < yyl4466; yyj4466++ { + yyv4466 = append(yyv4466, PodCondition{}) + yyh4466.ElemContainerState(yyj4466) if r.TryDecodeAsNil() { - yyv4461[yyj4461] = PodCondition{} + yyv4466[yyj4466] = PodCondition{} } else { - yyv4463 := &yyv4461[yyj4461] - yyv4463.CodecDecodeSelf(d) + yyv4468 := &yyv4466[yyj4466] + yyv4468.CodecDecodeSelf(d) } } } } else { - yyj4461 := 0 - for ; !r.CheckBreak(); yyj4461++ { + yyj4466 := 0 + for ; !r.CheckBreak(); yyj4466++ { - if yyj4461 >= len(yyv4461) { - yyv4461 = append(yyv4461, PodCondition{}) // var yyz4461 PodCondition - yyc4461 = true + if yyj4466 >= len(yyv4466) { + yyv4466 = append(yyv4466, PodCondition{}) // var yyz4466 PodCondition + yyc4466 = true } - yyh4461.ElemContainerState(yyj4461) - if yyj4461 < len(yyv4461) { + yyh4466.ElemContainerState(yyj4466) + if yyj4466 < len(yyv4466) { if r.TryDecodeAsNil() { - yyv4461[yyj4461] = PodCondition{} + yyv4466[yyj4466] = PodCondition{} } else { - yyv4464 := &yyv4461[yyj4461] - yyv4464.CodecDecodeSelf(d) + yyv4469 := &yyv4466[yyj4466] + yyv4469.CodecDecodeSelf(d) } } else { @@ -56474,17 +56522,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4461 < len(yyv4461) { - yyv4461 = yyv4461[:yyj4461] - yyc4461 = true - } else if yyj4461 == 0 && yyv4461 == nil { - yyv4461 = []PodCondition{} - yyc4461 = true + if yyj4466 < len(yyv4466) { + yyv4466 = yyv4466[:yyj4466] + yyc4466 = true + } else if yyj4466 == 0 && yyv4466 == nil { + yyv4466 = []PodCondition{} + yyc4466 = true } } - yyh4461.End() - if yyc4461 { - *v = yyv4461 + yyh4466.End() + if yyc4466 { + *v = yyv4466 } } @@ -56493,10 +56541,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4465 := range v { + for _, yyv4470 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4466 := &yyv4465 - yy4466.CodecEncodeSelf(e) + yy4471 := &yyv4470 + yy4471.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56506,83 +56554,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4467 := *v - yyh4467, yyl4467 := z.DecSliceHelperStart() - var yyc4467 bool - if yyl4467 == 0 { - if yyv4467 == nil { - yyv4467 = []ContainerStatus{} - yyc4467 = true - } else if len(yyv4467) != 0 { - yyv4467 = yyv4467[:0] - yyc4467 = true + yyv4472 := *v + yyh4472, yyl4472 := z.DecSliceHelperStart() + var yyc4472 bool + if yyl4472 == 0 { + if yyv4472 == nil { + yyv4472 = []ContainerStatus{} + yyc4472 = true + } else if len(yyv4472) != 0 { + yyv4472 = yyv4472[:0] + yyc4472 = true } - } else if yyl4467 > 0 { - var yyrr4467, yyrl4467 int - var yyrt4467 bool - if yyl4467 > cap(yyv4467) { + } else if yyl4472 > 0 { + var yyrr4472, yyrl4472 int + var yyrt4472 bool + if yyl4472 > cap(yyv4472) { - yyrg4467 := len(yyv4467) > 0 - yyv24467 := yyv4467 - yyrl4467, yyrt4467 = z.DecInferLen(yyl4467, z.DecBasicHandle().MaxInitLen, 120) - if yyrt4467 { - if yyrl4467 <= cap(yyv4467) { - yyv4467 = yyv4467[:yyrl4467] + yyrg4472 := len(yyv4472) > 0 + yyv24472 := yyv4472 + yyrl4472, yyrt4472 = z.DecInferLen(yyl4472, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4472 { + if yyrl4472 <= cap(yyv4472) { + yyv4472 = yyv4472[:yyrl4472] } else { - yyv4467 = make([]ContainerStatus, yyrl4467) + yyv4472 = make([]ContainerStatus, yyrl4472) } } else { - yyv4467 = make([]ContainerStatus, yyrl4467) + yyv4472 = make([]ContainerStatus, yyrl4472) } - yyc4467 = true - yyrr4467 = len(yyv4467) - if yyrg4467 { - copy(yyv4467, yyv24467) + yyc4472 = true + yyrr4472 = len(yyv4472) + if yyrg4472 { + copy(yyv4472, yyv24472) } - } else if yyl4467 != len(yyv4467) { - yyv4467 = yyv4467[:yyl4467] - yyc4467 = true + } else if yyl4472 != len(yyv4472) { + yyv4472 = yyv4472[:yyl4472] + yyc4472 = true } - yyj4467 := 0 - for ; yyj4467 < yyrr4467; yyj4467++ { - yyh4467.ElemContainerState(yyj4467) + yyj4472 := 0 + for ; yyj4472 < yyrr4472; yyj4472++ { + yyh4472.ElemContainerState(yyj4472) if r.TryDecodeAsNil() { - yyv4467[yyj4467] = ContainerStatus{} + yyv4472[yyj4472] = ContainerStatus{} } else { - yyv4468 := &yyv4467[yyj4467] - yyv4468.CodecDecodeSelf(d) + yyv4473 := &yyv4472[yyj4472] + yyv4473.CodecDecodeSelf(d) } } - if yyrt4467 { - for ; yyj4467 < yyl4467; yyj4467++ { - yyv4467 = append(yyv4467, ContainerStatus{}) - yyh4467.ElemContainerState(yyj4467) + if yyrt4472 { + for ; yyj4472 < yyl4472; yyj4472++ { + yyv4472 = append(yyv4472, ContainerStatus{}) + yyh4472.ElemContainerState(yyj4472) if r.TryDecodeAsNil() { - yyv4467[yyj4467] = ContainerStatus{} + yyv4472[yyj4472] = ContainerStatus{} } else { - yyv4469 := &yyv4467[yyj4467] - yyv4469.CodecDecodeSelf(d) + yyv4474 := &yyv4472[yyj4472] + yyv4474.CodecDecodeSelf(d) } } } } else { - yyj4467 := 0 - for ; !r.CheckBreak(); yyj4467++ { + yyj4472 := 0 + for ; !r.CheckBreak(); yyj4472++ { - if yyj4467 >= len(yyv4467) { - yyv4467 = append(yyv4467, ContainerStatus{}) // var yyz4467 ContainerStatus - yyc4467 = true + if yyj4472 >= len(yyv4472) { + yyv4472 = append(yyv4472, ContainerStatus{}) // var yyz4472 ContainerStatus + yyc4472 = true } - yyh4467.ElemContainerState(yyj4467) - if yyj4467 < len(yyv4467) { + yyh4472.ElemContainerState(yyj4472) + if yyj4472 < len(yyv4472) { if r.TryDecodeAsNil() { - yyv4467[yyj4467] = ContainerStatus{} + yyv4472[yyj4472] = ContainerStatus{} } else { - yyv4470 := &yyv4467[yyj4467] - yyv4470.CodecDecodeSelf(d) + yyv4475 := &yyv4472[yyj4472] + yyv4475.CodecDecodeSelf(d) } } else { @@ -56590,17 +56638,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4467 < len(yyv4467) { - yyv4467 = yyv4467[:yyj4467] - yyc4467 = true - } else if yyj4467 == 0 && yyv4467 == nil { - yyv4467 = []ContainerStatus{} - yyc4467 = true + if yyj4472 < len(yyv4472) { + yyv4472 = yyv4472[:yyj4472] + yyc4472 = true + } else if yyj4472 == 0 && yyv4472 == nil { + yyv4472 = []ContainerStatus{} + yyc4472 = true } } - yyh4467.End() - if yyc4467 { - *v = yyv4467 + yyh4472.End() + if yyc4472 { + *v = yyv4472 } } @@ -56609,10 +56657,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4471 := range v { + for _, yyv4476 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4472 := &yyv4471 - yy4472.CodecEncodeSelf(e) + yy4477 := &yyv4476 + yy4477.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56622,83 +56670,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4473 := *v - yyh4473, yyl4473 := z.DecSliceHelperStart() - var yyc4473 bool - if yyl4473 == 0 { - if yyv4473 == nil { - yyv4473 = []Pod{} - yyc4473 = true - } else if len(yyv4473) != 0 { - yyv4473 = yyv4473[:0] - yyc4473 = true + yyv4478 := *v + yyh4478, yyl4478 := z.DecSliceHelperStart() + var yyc4478 bool + if yyl4478 == 0 { + if yyv4478 == nil { + yyv4478 = []Pod{} + yyc4478 = true + } else if len(yyv4478) != 0 { + yyv4478 = yyv4478[:0] + yyc4478 = true } - } else if yyl4473 > 0 { - var yyrr4473, yyrl4473 int - var yyrt4473 bool - if yyl4473 > cap(yyv4473) { + } else if yyl4478 > 0 { + var yyrr4478, yyrl4478 int + var yyrt4478 bool + if yyl4478 > cap(yyv4478) { - yyrg4473 := len(yyv4473) > 0 - yyv24473 := yyv4473 - yyrl4473, yyrt4473 = z.DecInferLen(yyl4473, z.DecBasicHandle().MaxInitLen, 648) - if yyrt4473 { - if yyrl4473 <= cap(yyv4473) { - yyv4473 = yyv4473[:yyrl4473] + yyrg4478 := len(yyv4478) > 0 + yyv24478 := yyv4478 + yyrl4478, yyrt4478 = z.DecInferLen(yyl4478, z.DecBasicHandle().MaxInitLen, 648) + if yyrt4478 { + if yyrl4478 <= cap(yyv4478) { + yyv4478 = yyv4478[:yyrl4478] } else { - yyv4473 = make([]Pod, yyrl4473) + yyv4478 = make([]Pod, yyrl4478) } } else { - yyv4473 = make([]Pod, yyrl4473) + yyv4478 = make([]Pod, yyrl4478) } - yyc4473 = true - yyrr4473 = len(yyv4473) - if yyrg4473 { - copy(yyv4473, yyv24473) + yyc4478 = true + yyrr4478 = len(yyv4478) + if yyrg4478 { + copy(yyv4478, yyv24478) } - } else if yyl4473 != len(yyv4473) { - yyv4473 = yyv4473[:yyl4473] - yyc4473 = true + } else if yyl4478 != len(yyv4478) { + yyv4478 = yyv4478[:yyl4478] + yyc4478 = true } - yyj4473 := 0 - for ; yyj4473 < yyrr4473; yyj4473++ { - yyh4473.ElemContainerState(yyj4473) + yyj4478 := 0 + for ; yyj4478 < yyrr4478; yyj4478++ { + yyh4478.ElemContainerState(yyj4478) if r.TryDecodeAsNil() { - yyv4473[yyj4473] = Pod{} + yyv4478[yyj4478] = Pod{} } else { - yyv4474 := &yyv4473[yyj4473] - yyv4474.CodecDecodeSelf(d) + yyv4479 := &yyv4478[yyj4478] + yyv4479.CodecDecodeSelf(d) } } - if yyrt4473 { - for ; yyj4473 < yyl4473; yyj4473++ { - yyv4473 = append(yyv4473, Pod{}) - yyh4473.ElemContainerState(yyj4473) + if yyrt4478 { + for ; yyj4478 < yyl4478; yyj4478++ { + yyv4478 = append(yyv4478, Pod{}) + yyh4478.ElemContainerState(yyj4478) if r.TryDecodeAsNil() { - yyv4473[yyj4473] = Pod{} + yyv4478[yyj4478] = Pod{} } else { - yyv4475 := &yyv4473[yyj4473] - yyv4475.CodecDecodeSelf(d) + yyv4480 := &yyv4478[yyj4478] + yyv4480.CodecDecodeSelf(d) } } } } else { - yyj4473 := 0 - for ; !r.CheckBreak(); yyj4473++ { + yyj4478 := 0 + for ; !r.CheckBreak(); yyj4478++ { - if yyj4473 >= len(yyv4473) { - yyv4473 = append(yyv4473, Pod{}) // var yyz4473 Pod - yyc4473 = true + if yyj4478 >= len(yyv4478) { + yyv4478 = append(yyv4478, Pod{}) // var yyz4478 Pod + yyc4478 = true } - yyh4473.ElemContainerState(yyj4473) - if yyj4473 < len(yyv4473) { + yyh4478.ElemContainerState(yyj4478) + if yyj4478 < len(yyv4478) { if r.TryDecodeAsNil() { - yyv4473[yyj4473] = Pod{} + yyv4478[yyj4478] = Pod{} } else { - yyv4476 := &yyv4473[yyj4473] - yyv4476.CodecDecodeSelf(d) + yyv4481 := &yyv4478[yyj4478] + yyv4481.CodecDecodeSelf(d) } } else { @@ -56706,17 +56754,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj4473 < len(yyv4473) { - yyv4473 = yyv4473[:yyj4473] - yyc4473 = true - } else if yyj4473 == 0 && yyv4473 == nil { - yyv4473 = []Pod{} - yyc4473 = true + if yyj4478 < len(yyv4478) { + yyv4478 = yyv4478[:yyj4478] + yyc4478 = true + } else if yyj4478 == 0 && yyv4478 == nil { + yyv4478 = []Pod{} + yyc4478 = true } } - yyh4473.End() - if yyc4473 { - *v = yyv4473 + yyh4478.End() + if yyc4478 { + *v = yyv4478 } } @@ -56725,10 +56773,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4477 := range v { + for _, yyv4482 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4478 := &yyv4477 - yy4478.CodecEncodeSelf(e) + yy4483 := &yyv4482 + yy4483.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56738,83 +56786,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4479 := *v - yyh4479, yyl4479 := z.DecSliceHelperStart() - var yyc4479 bool - if yyl4479 == 0 { - if yyv4479 == nil { - yyv4479 = []PodTemplate{} - yyc4479 = true - } else if len(yyv4479) != 0 { - yyv4479 = yyv4479[:0] - yyc4479 = true + yyv4484 := *v + yyh4484, yyl4484 := z.DecSliceHelperStart() + var yyc4484 bool + if yyl4484 == 0 { + if yyv4484 == nil { + yyv4484 = []PodTemplate{} + yyc4484 = true + } else if len(yyv4484) != 0 { + yyv4484 = yyv4484[:0] + yyc4484 = true } - } else if yyl4479 > 0 { - var yyrr4479, yyrl4479 int - var yyrt4479 bool - if yyl4479 > cap(yyv4479) { + } else if yyl4484 > 0 { + var yyrr4484, yyrl4484 int + var yyrt4484 bool + if yyl4484 > cap(yyv4484) { - yyrg4479 := len(yyv4479) > 0 - yyv24479 := yyv4479 - yyrl4479, yyrt4479 = z.DecInferLen(yyl4479, z.DecBasicHandle().MaxInitLen, 696) - if yyrt4479 { - if yyrl4479 <= cap(yyv4479) { - yyv4479 = yyv4479[:yyrl4479] + yyrg4484 := len(yyv4484) > 0 + yyv24484 := yyv4484 + yyrl4484, yyrt4484 = z.DecInferLen(yyl4484, z.DecBasicHandle().MaxInitLen, 696) + if yyrt4484 { + if yyrl4484 <= cap(yyv4484) { + yyv4484 = yyv4484[:yyrl4484] } else { - yyv4479 = make([]PodTemplate, yyrl4479) + yyv4484 = make([]PodTemplate, yyrl4484) } } else { - yyv4479 = make([]PodTemplate, yyrl4479) + yyv4484 = make([]PodTemplate, yyrl4484) } - yyc4479 = true - yyrr4479 = len(yyv4479) - if yyrg4479 { - copy(yyv4479, yyv24479) + yyc4484 = true + yyrr4484 = len(yyv4484) + if yyrg4484 { + copy(yyv4484, yyv24484) } - } else if yyl4479 != len(yyv4479) { - yyv4479 = yyv4479[:yyl4479] - yyc4479 = true + } else if yyl4484 != len(yyv4484) { + yyv4484 = yyv4484[:yyl4484] + yyc4484 = true } - yyj4479 := 0 - for ; yyj4479 < yyrr4479; yyj4479++ { - yyh4479.ElemContainerState(yyj4479) + yyj4484 := 0 + for ; yyj4484 < yyrr4484; yyj4484++ { + yyh4484.ElemContainerState(yyj4484) if r.TryDecodeAsNil() { - yyv4479[yyj4479] = PodTemplate{} + yyv4484[yyj4484] = PodTemplate{} } else { - yyv4480 := &yyv4479[yyj4479] - yyv4480.CodecDecodeSelf(d) + yyv4485 := &yyv4484[yyj4484] + yyv4485.CodecDecodeSelf(d) } } - if yyrt4479 { - for ; yyj4479 < yyl4479; yyj4479++ { - yyv4479 = append(yyv4479, PodTemplate{}) - yyh4479.ElemContainerState(yyj4479) + if yyrt4484 { + for ; yyj4484 < yyl4484; yyj4484++ { + yyv4484 = append(yyv4484, PodTemplate{}) + yyh4484.ElemContainerState(yyj4484) if r.TryDecodeAsNil() { - yyv4479[yyj4479] = PodTemplate{} + yyv4484[yyj4484] = PodTemplate{} } else { - yyv4481 := &yyv4479[yyj4479] - yyv4481.CodecDecodeSelf(d) + yyv4486 := &yyv4484[yyj4484] + yyv4486.CodecDecodeSelf(d) } } } } else { - yyj4479 := 0 - for ; !r.CheckBreak(); yyj4479++ { + yyj4484 := 0 + for ; !r.CheckBreak(); yyj4484++ { - if yyj4479 >= len(yyv4479) { - yyv4479 = append(yyv4479, PodTemplate{}) // var yyz4479 PodTemplate - yyc4479 = true + if yyj4484 >= len(yyv4484) { + yyv4484 = append(yyv4484, PodTemplate{}) // var yyz4484 PodTemplate + yyc4484 = true } - yyh4479.ElemContainerState(yyj4479) - if yyj4479 < len(yyv4479) { + yyh4484.ElemContainerState(yyj4484) + if yyj4484 < len(yyv4484) { if r.TryDecodeAsNil() { - yyv4479[yyj4479] = PodTemplate{} + yyv4484[yyj4484] = PodTemplate{} } else { - yyv4482 := &yyv4479[yyj4479] - yyv4482.CodecDecodeSelf(d) + yyv4487 := &yyv4484[yyj4484] + yyv4487.CodecDecodeSelf(d) } } else { @@ -56822,17 +56870,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4479 < len(yyv4479) { - yyv4479 = yyv4479[:yyj4479] - yyc4479 = true - } else if yyj4479 == 0 && yyv4479 == nil { - yyv4479 = []PodTemplate{} - yyc4479 = true + if yyj4484 < len(yyv4484) { + yyv4484 = yyv4484[:yyj4484] + yyc4484 = true + } else if yyj4484 == 0 && yyv4484 == nil { + yyv4484 = []PodTemplate{} + yyc4484 = true } } - yyh4479.End() - if yyc4479 { - *v = yyv4479 + yyh4484.End() + if yyc4484 { + *v = yyv4484 } } @@ -56841,10 +56889,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4483 := range v { + for _, yyv4488 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4484 := &yyv4483 - yy4484.CodecEncodeSelf(e) + yy4489 := &yyv4488 + yy4489.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56854,83 +56902,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4485 := *v - yyh4485, yyl4485 := z.DecSliceHelperStart() - var yyc4485 bool - if yyl4485 == 0 { - if yyv4485 == nil { - yyv4485 = []ReplicationController{} - yyc4485 = true - } else if len(yyv4485) != 0 { - yyv4485 = yyv4485[:0] - yyc4485 = true + yyv4490 := *v + yyh4490, yyl4490 := z.DecSliceHelperStart() + var yyc4490 bool + if yyl4490 == 0 { + if yyv4490 == nil { + yyv4490 = []ReplicationController{} + yyc4490 = true + } else if len(yyv4490) != 0 { + yyv4490 = yyv4490[:0] + yyc4490 = true } - } else if yyl4485 > 0 { - var yyrr4485, yyrl4485 int - var yyrt4485 bool - if yyl4485 > cap(yyv4485) { + } else if yyl4490 > 0 { + var yyrr4490, yyrl4490 int + var yyrt4490 bool + if yyl4490 > cap(yyv4490) { - yyrg4485 := len(yyv4485) > 0 - yyv24485 := yyv4485 - yyrl4485, yyrt4485 = z.DecInferLen(yyl4485, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4485 { - if yyrl4485 <= cap(yyv4485) { - yyv4485 = yyv4485[:yyrl4485] + yyrg4490 := len(yyv4490) > 0 + yyv24490 := yyv4490 + yyrl4490, yyrt4490 = z.DecInferLen(yyl4490, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4490 { + if yyrl4490 <= cap(yyv4490) { + yyv4490 = yyv4490[:yyrl4490] } else { - yyv4485 = make([]ReplicationController, yyrl4485) + yyv4490 = make([]ReplicationController, yyrl4490) } } else { - yyv4485 = make([]ReplicationController, yyrl4485) + yyv4490 = make([]ReplicationController, yyrl4490) } - yyc4485 = true - yyrr4485 = len(yyv4485) - if yyrg4485 { - copy(yyv4485, yyv24485) + yyc4490 = true + yyrr4490 = len(yyv4490) + if yyrg4490 { + copy(yyv4490, yyv24490) } - } else if yyl4485 != len(yyv4485) { - yyv4485 = yyv4485[:yyl4485] - yyc4485 = true + } else if yyl4490 != len(yyv4490) { + yyv4490 = yyv4490[:yyl4490] + yyc4490 = true } - yyj4485 := 0 - for ; yyj4485 < yyrr4485; yyj4485++ { - yyh4485.ElemContainerState(yyj4485) + yyj4490 := 0 + for ; yyj4490 < yyrr4490; yyj4490++ { + yyh4490.ElemContainerState(yyj4490) if r.TryDecodeAsNil() { - yyv4485[yyj4485] = ReplicationController{} + yyv4490[yyj4490] = ReplicationController{} } else { - yyv4486 := &yyv4485[yyj4485] - yyv4486.CodecDecodeSelf(d) + yyv4491 := &yyv4490[yyj4490] + yyv4491.CodecDecodeSelf(d) } } - if yyrt4485 { - for ; yyj4485 < yyl4485; yyj4485++ { - yyv4485 = append(yyv4485, ReplicationController{}) - yyh4485.ElemContainerState(yyj4485) + if yyrt4490 { + for ; yyj4490 < yyl4490; yyj4490++ { + yyv4490 = append(yyv4490, ReplicationController{}) + yyh4490.ElemContainerState(yyj4490) if r.TryDecodeAsNil() { - yyv4485[yyj4485] = ReplicationController{} + yyv4490[yyj4490] = ReplicationController{} } else { - yyv4487 := &yyv4485[yyj4485] - yyv4487.CodecDecodeSelf(d) + yyv4492 := &yyv4490[yyj4490] + yyv4492.CodecDecodeSelf(d) } } } } else { - yyj4485 := 0 - for ; !r.CheckBreak(); yyj4485++ { + yyj4490 := 0 + for ; !r.CheckBreak(); yyj4490++ { - if yyj4485 >= len(yyv4485) { - yyv4485 = append(yyv4485, ReplicationController{}) // var yyz4485 ReplicationController - yyc4485 = true + if yyj4490 >= len(yyv4490) { + yyv4490 = append(yyv4490, ReplicationController{}) // var yyz4490 ReplicationController + yyc4490 = true } - yyh4485.ElemContainerState(yyj4485) - if yyj4485 < len(yyv4485) { + yyh4490.ElemContainerState(yyj4490) + if yyj4490 < len(yyv4490) { if r.TryDecodeAsNil() { - yyv4485[yyj4485] = ReplicationController{} + yyv4490[yyj4490] = ReplicationController{} } else { - yyv4488 := &yyv4485[yyj4485] - yyv4488.CodecDecodeSelf(d) + yyv4493 := &yyv4490[yyj4490] + yyv4493.CodecDecodeSelf(d) } } else { @@ -56938,17 +56986,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4485 < len(yyv4485) { - yyv4485 = yyv4485[:yyj4485] - yyc4485 = true - } else if yyj4485 == 0 && yyv4485 == nil { - yyv4485 = []ReplicationController{} - yyc4485 = true + if yyj4490 < len(yyv4490) { + yyv4490 = yyv4490[:yyj4490] + yyc4490 = true + } else if yyj4490 == 0 && yyv4490 == nil { + yyv4490 = []ReplicationController{} + yyc4490 = true } } - yyh4485.End() - if yyc4485 { - *v = yyv4485 + yyh4490.End() + if yyc4490 { + *v = yyv4490 } } @@ -56957,10 +57005,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4489 := range v { + for _, yyv4494 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4490 := &yyv4489 - yy4490.CodecEncodeSelf(e) + yy4495 := &yyv4494 + yy4495.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56970,83 +57018,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4491 := *v - yyh4491, yyl4491 := z.DecSliceHelperStart() - var yyc4491 bool - if yyl4491 == 0 { - if yyv4491 == nil { - yyv4491 = []LoadBalancerIngress{} - yyc4491 = true - } else if len(yyv4491) != 0 { - yyv4491 = yyv4491[:0] - yyc4491 = true + yyv4496 := *v + yyh4496, yyl4496 := z.DecSliceHelperStart() + var yyc4496 bool + if yyl4496 == 0 { + if yyv4496 == nil { + yyv4496 = []LoadBalancerIngress{} + yyc4496 = true + } else if len(yyv4496) != 0 { + yyv4496 = yyv4496[:0] + yyc4496 = true } - } else if yyl4491 > 0 { - var yyrr4491, yyrl4491 int - var yyrt4491 bool - if yyl4491 > cap(yyv4491) { + } else if yyl4496 > 0 { + var yyrr4496, yyrl4496 int + var yyrt4496 bool + if yyl4496 > cap(yyv4496) { - yyrg4491 := len(yyv4491) > 0 - yyv24491 := yyv4491 - yyrl4491, yyrt4491 = z.DecInferLen(yyl4491, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4491 { - if yyrl4491 <= cap(yyv4491) { - yyv4491 = yyv4491[:yyrl4491] + yyrg4496 := len(yyv4496) > 0 + yyv24496 := yyv4496 + yyrl4496, yyrt4496 = z.DecInferLen(yyl4496, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4496 { + if yyrl4496 <= cap(yyv4496) { + yyv4496 = yyv4496[:yyrl4496] } else { - yyv4491 = make([]LoadBalancerIngress, yyrl4491) + yyv4496 = make([]LoadBalancerIngress, yyrl4496) } } else { - yyv4491 = make([]LoadBalancerIngress, yyrl4491) + yyv4496 = make([]LoadBalancerIngress, yyrl4496) } - yyc4491 = true - yyrr4491 = len(yyv4491) - if yyrg4491 { - copy(yyv4491, yyv24491) + yyc4496 = true + yyrr4496 = len(yyv4496) + if yyrg4496 { + copy(yyv4496, yyv24496) } - } else if yyl4491 != len(yyv4491) { - yyv4491 = yyv4491[:yyl4491] - yyc4491 = true + } else if yyl4496 != len(yyv4496) { + yyv4496 = yyv4496[:yyl4496] + yyc4496 = true } - yyj4491 := 0 - for ; yyj4491 < yyrr4491; yyj4491++ { - yyh4491.ElemContainerState(yyj4491) + yyj4496 := 0 + for ; yyj4496 < yyrr4496; yyj4496++ { + yyh4496.ElemContainerState(yyj4496) if r.TryDecodeAsNil() { - yyv4491[yyj4491] = LoadBalancerIngress{} + yyv4496[yyj4496] = LoadBalancerIngress{} } else { - yyv4492 := &yyv4491[yyj4491] - yyv4492.CodecDecodeSelf(d) + yyv4497 := &yyv4496[yyj4496] + yyv4497.CodecDecodeSelf(d) } } - if yyrt4491 { - for ; yyj4491 < yyl4491; yyj4491++ { - yyv4491 = append(yyv4491, LoadBalancerIngress{}) - yyh4491.ElemContainerState(yyj4491) + if yyrt4496 { + for ; yyj4496 < yyl4496; yyj4496++ { + yyv4496 = append(yyv4496, LoadBalancerIngress{}) + yyh4496.ElemContainerState(yyj4496) if r.TryDecodeAsNil() { - yyv4491[yyj4491] = LoadBalancerIngress{} + yyv4496[yyj4496] = LoadBalancerIngress{} } else { - yyv4493 := &yyv4491[yyj4491] - yyv4493.CodecDecodeSelf(d) + yyv4498 := &yyv4496[yyj4496] + yyv4498.CodecDecodeSelf(d) } } } } else { - yyj4491 := 0 - for ; !r.CheckBreak(); yyj4491++ { + yyj4496 := 0 + for ; !r.CheckBreak(); yyj4496++ { - if yyj4491 >= len(yyv4491) { - yyv4491 = append(yyv4491, LoadBalancerIngress{}) // var yyz4491 LoadBalancerIngress - yyc4491 = true + if yyj4496 >= len(yyv4496) { + yyv4496 = append(yyv4496, LoadBalancerIngress{}) // var yyz4496 LoadBalancerIngress + yyc4496 = true } - yyh4491.ElemContainerState(yyj4491) - if yyj4491 < len(yyv4491) { + yyh4496.ElemContainerState(yyj4496) + if yyj4496 < len(yyv4496) { if r.TryDecodeAsNil() { - yyv4491[yyj4491] = LoadBalancerIngress{} + yyv4496[yyj4496] = LoadBalancerIngress{} } else { - yyv4494 := &yyv4491[yyj4491] - yyv4494.CodecDecodeSelf(d) + yyv4499 := &yyv4496[yyj4496] + yyv4499.CodecDecodeSelf(d) } } else { @@ -57054,17 +57102,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4491 < len(yyv4491) { - yyv4491 = yyv4491[:yyj4491] - yyc4491 = true - } else if yyj4491 == 0 && yyv4491 == nil { - yyv4491 = []LoadBalancerIngress{} - yyc4491 = true + if yyj4496 < len(yyv4496) { + yyv4496 = yyv4496[:yyj4496] + yyc4496 = true + } else if yyj4496 == 0 && yyv4496 == nil { + yyv4496 = []LoadBalancerIngress{} + yyc4496 = true } } - yyh4491.End() - if yyc4491 { - *v = yyv4491 + yyh4496.End() + if yyc4496 { + *v = yyv4496 } } @@ -57073,10 +57121,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4495 := range v { + for _, yyv4500 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4496 := &yyv4495 - yy4496.CodecEncodeSelf(e) + yy4501 := &yyv4500 + yy4501.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57086,83 +57134,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4497 := *v - yyh4497, yyl4497 := z.DecSliceHelperStart() - var yyc4497 bool - if yyl4497 == 0 { - if yyv4497 == nil { - yyv4497 = []ServicePort{} - yyc4497 = true - } else if len(yyv4497) != 0 { - yyv4497 = yyv4497[:0] - yyc4497 = true + yyv4502 := *v + yyh4502, yyl4502 := z.DecSliceHelperStart() + var yyc4502 bool + if yyl4502 == 0 { + if yyv4502 == nil { + yyv4502 = []ServicePort{} + yyc4502 = true + } else if len(yyv4502) != 0 { + yyv4502 = yyv4502[:0] + yyc4502 = true } - } else if yyl4497 > 0 { - var yyrr4497, yyrl4497 int - var yyrt4497 bool - if yyl4497 > cap(yyv4497) { + } else if yyl4502 > 0 { + var yyrr4502, yyrl4502 int + var yyrt4502 bool + if yyl4502 > cap(yyv4502) { - yyrg4497 := len(yyv4497) > 0 - yyv24497 := yyv4497 - yyrl4497, yyrt4497 = z.DecInferLen(yyl4497, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4497 { - if yyrl4497 <= cap(yyv4497) { - yyv4497 = yyv4497[:yyrl4497] + yyrg4502 := len(yyv4502) > 0 + yyv24502 := yyv4502 + yyrl4502, yyrt4502 = z.DecInferLen(yyl4502, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4502 { + if yyrl4502 <= cap(yyv4502) { + yyv4502 = yyv4502[:yyrl4502] } else { - yyv4497 = make([]ServicePort, yyrl4497) + yyv4502 = make([]ServicePort, yyrl4502) } } else { - yyv4497 = make([]ServicePort, yyrl4497) + yyv4502 = make([]ServicePort, yyrl4502) } - yyc4497 = true - yyrr4497 = len(yyv4497) - if yyrg4497 { - copy(yyv4497, yyv24497) + yyc4502 = true + yyrr4502 = len(yyv4502) + if yyrg4502 { + copy(yyv4502, yyv24502) } - } else if yyl4497 != len(yyv4497) { - yyv4497 = yyv4497[:yyl4497] - yyc4497 = true + } else if yyl4502 != len(yyv4502) { + yyv4502 = yyv4502[:yyl4502] + yyc4502 = true } - yyj4497 := 0 - for ; yyj4497 < yyrr4497; yyj4497++ { - yyh4497.ElemContainerState(yyj4497) + yyj4502 := 0 + for ; yyj4502 < yyrr4502; yyj4502++ { + yyh4502.ElemContainerState(yyj4502) if r.TryDecodeAsNil() { - yyv4497[yyj4497] = ServicePort{} + yyv4502[yyj4502] = ServicePort{} } else { - yyv4498 := &yyv4497[yyj4497] - yyv4498.CodecDecodeSelf(d) + yyv4503 := &yyv4502[yyj4502] + yyv4503.CodecDecodeSelf(d) } } - if yyrt4497 { - for ; yyj4497 < yyl4497; yyj4497++ { - yyv4497 = append(yyv4497, ServicePort{}) - yyh4497.ElemContainerState(yyj4497) + if yyrt4502 { + for ; yyj4502 < yyl4502; yyj4502++ { + yyv4502 = append(yyv4502, ServicePort{}) + yyh4502.ElemContainerState(yyj4502) if r.TryDecodeAsNil() { - yyv4497[yyj4497] = ServicePort{} + yyv4502[yyj4502] = ServicePort{} } else { - yyv4499 := &yyv4497[yyj4497] - yyv4499.CodecDecodeSelf(d) + yyv4504 := &yyv4502[yyj4502] + yyv4504.CodecDecodeSelf(d) } } } } else { - yyj4497 := 0 - for ; !r.CheckBreak(); yyj4497++ { + yyj4502 := 0 + for ; !r.CheckBreak(); yyj4502++ { - if yyj4497 >= len(yyv4497) { - yyv4497 = append(yyv4497, ServicePort{}) // var yyz4497 ServicePort - yyc4497 = true + if yyj4502 >= len(yyv4502) { + yyv4502 = append(yyv4502, ServicePort{}) // var yyz4502 ServicePort + yyc4502 = true } - yyh4497.ElemContainerState(yyj4497) - if yyj4497 < len(yyv4497) { + yyh4502.ElemContainerState(yyj4502) + if yyj4502 < len(yyv4502) { if r.TryDecodeAsNil() { - yyv4497[yyj4497] = ServicePort{} + yyv4502[yyj4502] = ServicePort{} } else { - yyv4500 := &yyv4497[yyj4497] - yyv4500.CodecDecodeSelf(d) + yyv4505 := &yyv4502[yyj4502] + yyv4505.CodecDecodeSelf(d) } } else { @@ -57170,17 +57218,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4497 < len(yyv4497) { - yyv4497 = yyv4497[:yyj4497] - yyc4497 = true - } else if yyj4497 == 0 && yyv4497 == nil { - yyv4497 = []ServicePort{} - yyc4497 = true + if yyj4502 < len(yyv4502) { + yyv4502 = yyv4502[:yyj4502] + yyc4502 = true + } else if yyj4502 == 0 && yyv4502 == nil { + yyv4502 = []ServicePort{} + yyc4502 = true } } - yyh4497.End() - if yyc4497 { - *v = yyv4497 + yyh4502.End() + if yyc4502 { + *v = yyv4502 } } @@ -57189,10 +57237,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4501 := range v { + for _, yyv4506 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4502 := &yyv4501 - yy4502.CodecEncodeSelf(e) + yy4507 := &yyv4506 + yy4507.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57202,83 +57250,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4503 := *v - yyh4503, yyl4503 := z.DecSliceHelperStart() - var yyc4503 bool - if yyl4503 == 0 { - if yyv4503 == nil { - yyv4503 = []Service{} - yyc4503 = true - } else if len(yyv4503) != 0 { - yyv4503 = yyv4503[:0] - yyc4503 = true + yyv4508 := *v + yyh4508, yyl4508 := z.DecSliceHelperStart() + var yyc4508 bool + if yyl4508 == 0 { + if yyv4508 == nil { + yyv4508 = []Service{} + yyc4508 = true + } else if len(yyv4508) != 0 { + yyv4508 = yyv4508[:0] + yyc4508 = true } - } else if yyl4503 > 0 { - var yyrr4503, yyrl4503 int - var yyrt4503 bool - if yyl4503 > cap(yyv4503) { + } else if yyl4508 > 0 { + var yyrr4508, yyrl4508 int + var yyrt4508 bool + if yyl4508 > cap(yyv4508) { - yyrg4503 := len(yyv4503) > 0 - yyv24503 := yyv4503 - yyrl4503, yyrt4503 = z.DecInferLen(yyl4503, z.DecBasicHandle().MaxInitLen, 432) - if yyrt4503 { - if yyrl4503 <= cap(yyv4503) { - yyv4503 = yyv4503[:yyrl4503] + yyrg4508 := len(yyv4508) > 0 + yyv24508 := yyv4508 + yyrl4508, yyrt4508 = z.DecInferLen(yyl4508, z.DecBasicHandle().MaxInitLen, 448) + if yyrt4508 { + if yyrl4508 <= cap(yyv4508) { + yyv4508 = yyv4508[:yyrl4508] } else { - yyv4503 = make([]Service, yyrl4503) + yyv4508 = make([]Service, yyrl4508) } } else { - yyv4503 = make([]Service, yyrl4503) + yyv4508 = make([]Service, yyrl4508) } - yyc4503 = true - yyrr4503 = len(yyv4503) - if yyrg4503 { - copy(yyv4503, yyv24503) + yyc4508 = true + yyrr4508 = len(yyv4508) + if yyrg4508 { + copy(yyv4508, yyv24508) } - } else if yyl4503 != len(yyv4503) { - yyv4503 = yyv4503[:yyl4503] - yyc4503 = true + } else if yyl4508 != len(yyv4508) { + yyv4508 = yyv4508[:yyl4508] + yyc4508 = true } - yyj4503 := 0 - for ; yyj4503 < yyrr4503; yyj4503++ { - yyh4503.ElemContainerState(yyj4503) + yyj4508 := 0 + for ; yyj4508 < yyrr4508; yyj4508++ { + yyh4508.ElemContainerState(yyj4508) if r.TryDecodeAsNil() { - yyv4503[yyj4503] = Service{} + yyv4508[yyj4508] = Service{} } else { - yyv4504 := &yyv4503[yyj4503] - yyv4504.CodecDecodeSelf(d) + yyv4509 := &yyv4508[yyj4508] + yyv4509.CodecDecodeSelf(d) } } - if yyrt4503 { - for ; yyj4503 < yyl4503; yyj4503++ { - yyv4503 = append(yyv4503, Service{}) - yyh4503.ElemContainerState(yyj4503) + if yyrt4508 { + for ; yyj4508 < yyl4508; yyj4508++ { + yyv4508 = append(yyv4508, Service{}) + yyh4508.ElemContainerState(yyj4508) if r.TryDecodeAsNil() { - yyv4503[yyj4503] = Service{} + yyv4508[yyj4508] = Service{} } else { - yyv4505 := &yyv4503[yyj4503] - yyv4505.CodecDecodeSelf(d) + yyv4510 := &yyv4508[yyj4508] + yyv4510.CodecDecodeSelf(d) } } } } else { - yyj4503 := 0 - for ; !r.CheckBreak(); yyj4503++ { + yyj4508 := 0 + for ; !r.CheckBreak(); yyj4508++ { - if yyj4503 >= len(yyv4503) { - yyv4503 = append(yyv4503, Service{}) // var yyz4503 Service - yyc4503 = true + if yyj4508 >= len(yyv4508) { + yyv4508 = append(yyv4508, Service{}) // var yyz4508 Service + yyc4508 = true } - yyh4503.ElemContainerState(yyj4503) - if yyj4503 < len(yyv4503) { + yyh4508.ElemContainerState(yyj4508) + if yyj4508 < len(yyv4508) { if r.TryDecodeAsNil() { - yyv4503[yyj4503] = Service{} + yyv4508[yyj4508] = Service{} } else { - yyv4506 := &yyv4503[yyj4503] - yyv4506.CodecDecodeSelf(d) + yyv4511 := &yyv4508[yyj4508] + yyv4511.CodecDecodeSelf(d) } } else { @@ -57286,17 +57334,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4503 < len(yyv4503) { - yyv4503 = yyv4503[:yyj4503] - yyc4503 = true - } else if yyj4503 == 0 && yyv4503 == nil { - yyv4503 = []Service{} - yyc4503 = true + if yyj4508 < len(yyv4508) { + yyv4508 = yyv4508[:yyj4508] + yyc4508 = true + } else if yyj4508 == 0 && yyv4508 == nil { + yyv4508 = []Service{} + yyc4508 = true } } - yyh4503.End() - if yyc4503 { - *v = yyv4503 + yyh4508.End() + if yyc4508 { + *v = yyv4508 } } @@ -57305,10 +57353,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4507 := range v { + for _, yyv4512 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4508 := &yyv4507 - yy4508.CodecEncodeSelf(e) + yy4513 := &yyv4512 + yy4513.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57318,83 +57366,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4509 := *v - yyh4509, yyl4509 := z.DecSliceHelperStart() - var yyc4509 bool - if yyl4509 == 0 { - if yyv4509 == nil { - yyv4509 = []ObjectReference{} - yyc4509 = true - } else if len(yyv4509) != 0 { - yyv4509 = yyv4509[:0] - yyc4509 = true + yyv4514 := *v + yyh4514, yyl4514 := z.DecSliceHelperStart() + var yyc4514 bool + if yyl4514 == 0 { + if yyv4514 == nil { + yyv4514 = []ObjectReference{} + yyc4514 = true + } else if len(yyv4514) != 0 { + yyv4514 = yyv4514[:0] + yyc4514 = true } - } else if yyl4509 > 0 { - var yyrr4509, yyrl4509 int - var yyrt4509 bool - if yyl4509 > cap(yyv4509) { + } else if yyl4514 > 0 { + var yyrr4514, yyrl4514 int + var yyrt4514 bool + if yyl4514 > cap(yyv4514) { - yyrg4509 := len(yyv4509) > 0 - yyv24509 := yyv4509 - yyrl4509, yyrt4509 = z.DecInferLen(yyl4509, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4509 { - if yyrl4509 <= cap(yyv4509) { - yyv4509 = yyv4509[:yyrl4509] + yyrg4514 := len(yyv4514) > 0 + yyv24514 := yyv4514 + yyrl4514, yyrt4514 = z.DecInferLen(yyl4514, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4514 { + if yyrl4514 <= cap(yyv4514) { + yyv4514 = yyv4514[:yyrl4514] } else { - yyv4509 = make([]ObjectReference, yyrl4509) + yyv4514 = make([]ObjectReference, yyrl4514) } } else { - yyv4509 = make([]ObjectReference, yyrl4509) + yyv4514 = make([]ObjectReference, yyrl4514) } - yyc4509 = true - yyrr4509 = len(yyv4509) - if yyrg4509 { - copy(yyv4509, yyv24509) + yyc4514 = true + yyrr4514 = len(yyv4514) + if yyrg4514 { + copy(yyv4514, yyv24514) } - } else if yyl4509 != len(yyv4509) { - yyv4509 = yyv4509[:yyl4509] - yyc4509 = true + } else if yyl4514 != len(yyv4514) { + yyv4514 = yyv4514[:yyl4514] + yyc4514 = true } - yyj4509 := 0 - for ; yyj4509 < yyrr4509; yyj4509++ { - yyh4509.ElemContainerState(yyj4509) + yyj4514 := 0 + for ; yyj4514 < yyrr4514; yyj4514++ { + yyh4514.ElemContainerState(yyj4514) if r.TryDecodeAsNil() { - yyv4509[yyj4509] = ObjectReference{} + yyv4514[yyj4514] = ObjectReference{} } else { - yyv4510 := &yyv4509[yyj4509] - yyv4510.CodecDecodeSelf(d) + yyv4515 := &yyv4514[yyj4514] + yyv4515.CodecDecodeSelf(d) } } - if yyrt4509 { - for ; yyj4509 < yyl4509; yyj4509++ { - yyv4509 = append(yyv4509, ObjectReference{}) - yyh4509.ElemContainerState(yyj4509) + if yyrt4514 { + for ; yyj4514 < yyl4514; yyj4514++ { + yyv4514 = append(yyv4514, ObjectReference{}) + yyh4514.ElemContainerState(yyj4514) if r.TryDecodeAsNil() { - yyv4509[yyj4509] = ObjectReference{} + yyv4514[yyj4514] = ObjectReference{} } else { - yyv4511 := &yyv4509[yyj4509] - yyv4511.CodecDecodeSelf(d) + yyv4516 := &yyv4514[yyj4514] + yyv4516.CodecDecodeSelf(d) } } } } else { - yyj4509 := 0 - for ; !r.CheckBreak(); yyj4509++ { + yyj4514 := 0 + for ; !r.CheckBreak(); yyj4514++ { - if yyj4509 >= len(yyv4509) { - yyv4509 = append(yyv4509, ObjectReference{}) // var yyz4509 ObjectReference - yyc4509 = true + if yyj4514 >= len(yyv4514) { + yyv4514 = append(yyv4514, ObjectReference{}) // var yyz4514 ObjectReference + yyc4514 = true } - yyh4509.ElemContainerState(yyj4509) - if yyj4509 < len(yyv4509) { + yyh4514.ElemContainerState(yyj4514) + if yyj4514 < len(yyv4514) { if r.TryDecodeAsNil() { - yyv4509[yyj4509] = ObjectReference{} + yyv4514[yyj4514] = ObjectReference{} } else { - yyv4512 := &yyv4509[yyj4509] - yyv4512.CodecDecodeSelf(d) + yyv4517 := &yyv4514[yyj4514] + yyv4517.CodecDecodeSelf(d) } } else { @@ -57402,17 +57450,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj4509 < len(yyv4509) { - yyv4509 = yyv4509[:yyj4509] - yyc4509 = true - } else if yyj4509 == 0 && yyv4509 == nil { - yyv4509 = []ObjectReference{} - yyc4509 = true + if yyj4514 < len(yyv4514) { + yyv4514 = yyv4514[:yyj4514] + yyc4514 = true + } else if yyj4514 == 0 && yyv4514 == nil { + yyv4514 = []ObjectReference{} + yyc4514 = true } } - yyh4509.End() - if yyc4509 { - *v = yyv4509 + yyh4514.End() + if yyc4514 { + *v = yyv4514 } } @@ -57421,10 +57469,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4513 := range v { + for _, yyv4518 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4514 := &yyv4513 - yy4514.CodecEncodeSelf(e) + yy4519 := &yyv4518 + yy4519.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57434,83 +57482,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4515 := *v - yyh4515, yyl4515 := z.DecSliceHelperStart() - var yyc4515 bool - if yyl4515 == 0 { - if yyv4515 == nil { - yyv4515 = []ServiceAccount{} - yyc4515 = true - } else if len(yyv4515) != 0 { - yyv4515 = yyv4515[:0] - yyc4515 = true + yyv4520 := *v + yyh4520, yyl4520 := z.DecSliceHelperStart() + var yyc4520 bool + if yyl4520 == 0 { + if yyv4520 == nil { + yyv4520 = []ServiceAccount{} + yyc4520 = true + } else if len(yyv4520) != 0 { + yyv4520 = yyv4520[:0] + yyc4520 = true } - } else if yyl4515 > 0 { - var yyrr4515, yyrl4515 int - var yyrt4515 bool - if yyl4515 > cap(yyv4515) { + } else if yyl4520 > 0 { + var yyrr4520, yyrl4520 int + var yyrt4520 bool + if yyl4520 > cap(yyv4520) { - yyrg4515 := len(yyv4515) > 0 - yyv24515 := yyv4515 - yyrl4515, yyrt4515 = z.DecInferLen(yyl4515, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4515 { - if yyrl4515 <= cap(yyv4515) { - yyv4515 = yyv4515[:yyrl4515] + yyrg4520 := len(yyv4520) > 0 + yyv24520 := yyv4520 + yyrl4520, yyrt4520 = z.DecInferLen(yyl4520, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4520 { + if yyrl4520 <= cap(yyv4520) { + yyv4520 = yyv4520[:yyrl4520] } else { - yyv4515 = make([]ServiceAccount, yyrl4515) + yyv4520 = make([]ServiceAccount, yyrl4520) } } else { - yyv4515 = make([]ServiceAccount, yyrl4515) + yyv4520 = make([]ServiceAccount, yyrl4520) } - yyc4515 = true - yyrr4515 = len(yyv4515) - if yyrg4515 { - copy(yyv4515, yyv24515) + yyc4520 = true + yyrr4520 = len(yyv4520) + if yyrg4520 { + copy(yyv4520, yyv24520) } - } else if yyl4515 != len(yyv4515) { - yyv4515 = yyv4515[:yyl4515] - yyc4515 = true + } else if yyl4520 != len(yyv4520) { + yyv4520 = yyv4520[:yyl4520] + yyc4520 = true } - yyj4515 := 0 - for ; yyj4515 < yyrr4515; yyj4515++ { - yyh4515.ElemContainerState(yyj4515) + yyj4520 := 0 + for ; yyj4520 < yyrr4520; yyj4520++ { + yyh4520.ElemContainerState(yyj4520) if r.TryDecodeAsNil() { - yyv4515[yyj4515] = ServiceAccount{} + yyv4520[yyj4520] = ServiceAccount{} } else { - yyv4516 := &yyv4515[yyj4515] - yyv4516.CodecDecodeSelf(d) + yyv4521 := &yyv4520[yyj4520] + yyv4521.CodecDecodeSelf(d) } } - if yyrt4515 { - for ; yyj4515 < yyl4515; yyj4515++ { - yyv4515 = append(yyv4515, ServiceAccount{}) - yyh4515.ElemContainerState(yyj4515) + if yyrt4520 { + for ; yyj4520 < yyl4520; yyj4520++ { + yyv4520 = append(yyv4520, ServiceAccount{}) + yyh4520.ElemContainerState(yyj4520) if r.TryDecodeAsNil() { - yyv4515[yyj4515] = ServiceAccount{} + yyv4520[yyj4520] = ServiceAccount{} } else { - yyv4517 := &yyv4515[yyj4515] - yyv4517.CodecDecodeSelf(d) + yyv4522 := &yyv4520[yyj4520] + yyv4522.CodecDecodeSelf(d) } } } } else { - yyj4515 := 0 - for ; !r.CheckBreak(); yyj4515++ { + yyj4520 := 0 + for ; !r.CheckBreak(); yyj4520++ { - if yyj4515 >= len(yyv4515) { - yyv4515 = append(yyv4515, ServiceAccount{}) // var yyz4515 ServiceAccount - yyc4515 = true + if yyj4520 >= len(yyv4520) { + yyv4520 = append(yyv4520, ServiceAccount{}) // var yyz4520 ServiceAccount + yyc4520 = true } - yyh4515.ElemContainerState(yyj4515) - if yyj4515 < len(yyv4515) { + yyh4520.ElemContainerState(yyj4520) + if yyj4520 < len(yyv4520) { if r.TryDecodeAsNil() { - yyv4515[yyj4515] = ServiceAccount{} + yyv4520[yyj4520] = ServiceAccount{} } else { - yyv4518 := &yyv4515[yyj4515] - yyv4518.CodecDecodeSelf(d) + yyv4523 := &yyv4520[yyj4520] + yyv4523.CodecDecodeSelf(d) } } else { @@ -57518,17 +57566,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj4515 < len(yyv4515) { - yyv4515 = yyv4515[:yyj4515] - yyc4515 = true - } else if yyj4515 == 0 && yyv4515 == nil { - yyv4515 = []ServiceAccount{} - yyc4515 = true + if yyj4520 < len(yyv4520) { + yyv4520 = yyv4520[:yyj4520] + yyc4520 = true + } else if yyj4520 == 0 && yyv4520 == nil { + yyv4520 = []ServiceAccount{} + yyc4520 = true } } - yyh4515.End() - if yyc4515 { - *v = yyv4515 + yyh4520.End() + if yyc4520 { + *v = yyv4520 } } @@ -57537,10 +57585,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4519 := range v { + for _, yyv4524 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4520 := &yyv4519 - yy4520.CodecEncodeSelf(e) + yy4525 := &yyv4524 + yy4525.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57550,83 +57598,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4521 := *v - yyh4521, yyl4521 := z.DecSliceHelperStart() - var yyc4521 bool - if yyl4521 == 0 { - if yyv4521 == nil { - yyv4521 = []EndpointSubset{} - yyc4521 = true - } else if len(yyv4521) != 0 { - yyv4521 = yyv4521[:0] - yyc4521 = true + yyv4526 := *v + yyh4526, yyl4526 := z.DecSliceHelperStart() + var yyc4526 bool + if yyl4526 == 0 { + if yyv4526 == nil { + yyv4526 = []EndpointSubset{} + yyc4526 = true + } else if len(yyv4526) != 0 { + yyv4526 = yyv4526[:0] + yyc4526 = true } - } else if yyl4521 > 0 { - var yyrr4521, yyrl4521 int - var yyrt4521 bool - if yyl4521 > cap(yyv4521) { + } else if yyl4526 > 0 { + var yyrr4526, yyrl4526 int + var yyrt4526 bool + if yyl4526 > cap(yyv4526) { - yyrg4521 := len(yyv4521) > 0 - yyv24521 := yyv4521 - yyrl4521, yyrt4521 = z.DecInferLen(yyl4521, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4521 { - if yyrl4521 <= cap(yyv4521) { - yyv4521 = yyv4521[:yyrl4521] + yyrg4526 := len(yyv4526) > 0 + yyv24526 := yyv4526 + yyrl4526, yyrt4526 = z.DecInferLen(yyl4526, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4526 { + if yyrl4526 <= cap(yyv4526) { + yyv4526 = yyv4526[:yyrl4526] } else { - yyv4521 = make([]EndpointSubset, yyrl4521) + yyv4526 = make([]EndpointSubset, yyrl4526) } } else { - yyv4521 = make([]EndpointSubset, yyrl4521) + yyv4526 = make([]EndpointSubset, yyrl4526) } - yyc4521 = true - yyrr4521 = len(yyv4521) - if yyrg4521 { - copy(yyv4521, yyv24521) + yyc4526 = true + yyrr4526 = len(yyv4526) + if yyrg4526 { + copy(yyv4526, yyv24526) } - } else if yyl4521 != len(yyv4521) { - yyv4521 = yyv4521[:yyl4521] - yyc4521 = true + } else if yyl4526 != len(yyv4526) { + yyv4526 = yyv4526[:yyl4526] + yyc4526 = true } - yyj4521 := 0 - for ; yyj4521 < yyrr4521; yyj4521++ { - yyh4521.ElemContainerState(yyj4521) + yyj4526 := 0 + for ; yyj4526 < yyrr4526; yyj4526++ { + yyh4526.ElemContainerState(yyj4526) if r.TryDecodeAsNil() { - yyv4521[yyj4521] = EndpointSubset{} + yyv4526[yyj4526] = EndpointSubset{} } else { - yyv4522 := &yyv4521[yyj4521] - yyv4522.CodecDecodeSelf(d) + yyv4527 := &yyv4526[yyj4526] + yyv4527.CodecDecodeSelf(d) } } - if yyrt4521 { - for ; yyj4521 < yyl4521; yyj4521++ { - yyv4521 = append(yyv4521, EndpointSubset{}) - yyh4521.ElemContainerState(yyj4521) + if yyrt4526 { + for ; yyj4526 < yyl4526; yyj4526++ { + yyv4526 = append(yyv4526, EndpointSubset{}) + yyh4526.ElemContainerState(yyj4526) if r.TryDecodeAsNil() { - yyv4521[yyj4521] = EndpointSubset{} + yyv4526[yyj4526] = EndpointSubset{} } else { - yyv4523 := &yyv4521[yyj4521] - yyv4523.CodecDecodeSelf(d) + yyv4528 := &yyv4526[yyj4526] + yyv4528.CodecDecodeSelf(d) } } } } else { - yyj4521 := 0 - for ; !r.CheckBreak(); yyj4521++ { + yyj4526 := 0 + for ; !r.CheckBreak(); yyj4526++ { - if yyj4521 >= len(yyv4521) { - yyv4521 = append(yyv4521, EndpointSubset{}) // var yyz4521 EndpointSubset - yyc4521 = true + if yyj4526 >= len(yyv4526) { + yyv4526 = append(yyv4526, EndpointSubset{}) // var yyz4526 EndpointSubset + yyc4526 = true } - yyh4521.ElemContainerState(yyj4521) - if yyj4521 < len(yyv4521) { + yyh4526.ElemContainerState(yyj4526) + if yyj4526 < len(yyv4526) { if r.TryDecodeAsNil() { - yyv4521[yyj4521] = EndpointSubset{} + yyv4526[yyj4526] = EndpointSubset{} } else { - yyv4524 := &yyv4521[yyj4521] - yyv4524.CodecDecodeSelf(d) + yyv4529 := &yyv4526[yyj4526] + yyv4529.CodecDecodeSelf(d) } } else { @@ -57634,17 +57682,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj4521 < len(yyv4521) { - yyv4521 = yyv4521[:yyj4521] - yyc4521 = true - } else if yyj4521 == 0 && yyv4521 == nil { - yyv4521 = []EndpointSubset{} - yyc4521 = true + if yyj4526 < len(yyv4526) { + yyv4526 = yyv4526[:yyj4526] + yyc4526 = true + } else if yyj4526 == 0 && yyv4526 == nil { + yyv4526 = []EndpointSubset{} + yyc4526 = true } } - yyh4521.End() - if yyc4521 { - *v = yyv4521 + yyh4526.End() + if yyc4526 { + *v = yyv4526 } } @@ -57653,10 +57701,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4525 := range v { + for _, yyv4530 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4526 := &yyv4525 - yy4526.CodecEncodeSelf(e) + yy4531 := &yyv4530 + yy4531.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57666,83 +57714,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4527 := *v - yyh4527, yyl4527 := z.DecSliceHelperStart() - var yyc4527 bool - if yyl4527 == 0 { - if yyv4527 == nil { - yyv4527 = []EndpointAddress{} - yyc4527 = true - } else if len(yyv4527) != 0 { - yyv4527 = yyv4527[:0] - yyc4527 = true + yyv4532 := *v + yyh4532, yyl4532 := z.DecSliceHelperStart() + var yyc4532 bool + if yyl4532 == 0 { + if yyv4532 == nil { + yyv4532 = []EndpointAddress{} + yyc4532 = true + } else if len(yyv4532) != 0 { + yyv4532 = yyv4532[:0] + yyc4532 = true } - } else if yyl4527 > 0 { - var yyrr4527, yyrl4527 int - var yyrt4527 bool - if yyl4527 > cap(yyv4527) { + } else if yyl4532 > 0 { + var yyrr4532, yyrl4532 int + var yyrt4532 bool + if yyl4532 > cap(yyv4532) { - yyrg4527 := len(yyv4527) > 0 - yyv24527 := yyv4527 - yyrl4527, yyrt4527 = z.DecInferLen(yyl4527, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4527 { - if yyrl4527 <= cap(yyv4527) { - yyv4527 = yyv4527[:yyrl4527] + yyrg4532 := len(yyv4532) > 0 + yyv24532 := yyv4532 + yyrl4532, yyrt4532 = z.DecInferLen(yyl4532, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4532 { + if yyrl4532 <= cap(yyv4532) { + yyv4532 = yyv4532[:yyrl4532] } else { - yyv4527 = make([]EndpointAddress, yyrl4527) + yyv4532 = make([]EndpointAddress, yyrl4532) } } else { - yyv4527 = make([]EndpointAddress, yyrl4527) + yyv4532 = make([]EndpointAddress, yyrl4532) } - yyc4527 = true - yyrr4527 = len(yyv4527) - if yyrg4527 { - copy(yyv4527, yyv24527) + yyc4532 = true + yyrr4532 = len(yyv4532) + if yyrg4532 { + copy(yyv4532, yyv24532) } - } else if yyl4527 != len(yyv4527) { - yyv4527 = yyv4527[:yyl4527] - yyc4527 = true + } else if yyl4532 != len(yyv4532) { + yyv4532 = yyv4532[:yyl4532] + yyc4532 = true } - yyj4527 := 0 - for ; yyj4527 < yyrr4527; yyj4527++ { - yyh4527.ElemContainerState(yyj4527) + yyj4532 := 0 + for ; yyj4532 < yyrr4532; yyj4532++ { + yyh4532.ElemContainerState(yyj4532) if r.TryDecodeAsNil() { - yyv4527[yyj4527] = EndpointAddress{} + yyv4532[yyj4532] = EndpointAddress{} } else { - yyv4528 := &yyv4527[yyj4527] - yyv4528.CodecDecodeSelf(d) + yyv4533 := &yyv4532[yyj4532] + yyv4533.CodecDecodeSelf(d) } } - if yyrt4527 { - for ; yyj4527 < yyl4527; yyj4527++ { - yyv4527 = append(yyv4527, EndpointAddress{}) - yyh4527.ElemContainerState(yyj4527) + if yyrt4532 { + for ; yyj4532 < yyl4532; yyj4532++ { + yyv4532 = append(yyv4532, EndpointAddress{}) + yyh4532.ElemContainerState(yyj4532) if r.TryDecodeAsNil() { - yyv4527[yyj4527] = EndpointAddress{} + yyv4532[yyj4532] = EndpointAddress{} } else { - yyv4529 := &yyv4527[yyj4527] - yyv4529.CodecDecodeSelf(d) + yyv4534 := &yyv4532[yyj4532] + yyv4534.CodecDecodeSelf(d) } } } } else { - yyj4527 := 0 - for ; !r.CheckBreak(); yyj4527++ { + yyj4532 := 0 + for ; !r.CheckBreak(); yyj4532++ { - if yyj4527 >= len(yyv4527) { - yyv4527 = append(yyv4527, EndpointAddress{}) // var yyz4527 EndpointAddress - yyc4527 = true + if yyj4532 >= len(yyv4532) { + yyv4532 = append(yyv4532, EndpointAddress{}) // var yyz4532 EndpointAddress + yyc4532 = true } - yyh4527.ElemContainerState(yyj4527) - if yyj4527 < len(yyv4527) { + yyh4532.ElemContainerState(yyj4532) + if yyj4532 < len(yyv4532) { if r.TryDecodeAsNil() { - yyv4527[yyj4527] = EndpointAddress{} + yyv4532[yyj4532] = EndpointAddress{} } else { - yyv4530 := &yyv4527[yyj4527] - yyv4530.CodecDecodeSelf(d) + yyv4535 := &yyv4532[yyj4532] + yyv4535.CodecDecodeSelf(d) } } else { @@ -57750,17 +57798,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj4527 < len(yyv4527) { - yyv4527 = yyv4527[:yyj4527] - yyc4527 = true - } else if yyj4527 == 0 && yyv4527 == nil { - yyv4527 = []EndpointAddress{} - yyc4527 = true + if yyj4532 < len(yyv4532) { + yyv4532 = yyv4532[:yyj4532] + yyc4532 = true + } else if yyj4532 == 0 && yyv4532 == nil { + yyv4532 = []EndpointAddress{} + yyc4532 = true } } - yyh4527.End() - if yyc4527 { - *v = yyv4527 + yyh4532.End() + if yyc4532 { + *v = yyv4532 } } @@ -57769,10 +57817,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4531 := range v { + for _, yyv4536 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4532 := &yyv4531 - yy4532.CodecEncodeSelf(e) + yy4537 := &yyv4536 + yy4537.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57782,83 +57830,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4533 := *v - yyh4533, yyl4533 := z.DecSliceHelperStart() - var yyc4533 bool - if yyl4533 == 0 { - if yyv4533 == nil { - yyv4533 = []EndpointPort{} - yyc4533 = true - } else if len(yyv4533) != 0 { - yyv4533 = yyv4533[:0] - yyc4533 = true + yyv4538 := *v + yyh4538, yyl4538 := z.DecSliceHelperStart() + var yyc4538 bool + if yyl4538 == 0 { + if yyv4538 == nil { + yyv4538 = []EndpointPort{} + yyc4538 = true + } else if len(yyv4538) != 0 { + yyv4538 = yyv4538[:0] + yyc4538 = true } - } else if yyl4533 > 0 { - var yyrr4533, yyrl4533 int - var yyrt4533 bool - if yyl4533 > cap(yyv4533) { + } else if yyl4538 > 0 { + var yyrr4538, yyrl4538 int + var yyrt4538 bool + if yyl4538 > cap(yyv4538) { - yyrg4533 := len(yyv4533) > 0 - yyv24533 := yyv4533 - yyrl4533, yyrt4533 = z.DecInferLen(yyl4533, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4533 { - if yyrl4533 <= cap(yyv4533) { - yyv4533 = yyv4533[:yyrl4533] + yyrg4538 := len(yyv4538) > 0 + yyv24538 := yyv4538 + yyrl4538, yyrt4538 = z.DecInferLen(yyl4538, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4538 { + if yyrl4538 <= cap(yyv4538) { + yyv4538 = yyv4538[:yyrl4538] } else { - yyv4533 = make([]EndpointPort, yyrl4533) + yyv4538 = make([]EndpointPort, yyrl4538) } } else { - yyv4533 = make([]EndpointPort, yyrl4533) + yyv4538 = make([]EndpointPort, yyrl4538) } - yyc4533 = true - yyrr4533 = len(yyv4533) - if yyrg4533 { - copy(yyv4533, yyv24533) + yyc4538 = true + yyrr4538 = len(yyv4538) + if yyrg4538 { + copy(yyv4538, yyv24538) } - } else if yyl4533 != len(yyv4533) { - yyv4533 = yyv4533[:yyl4533] - yyc4533 = true + } else if yyl4538 != len(yyv4538) { + yyv4538 = yyv4538[:yyl4538] + yyc4538 = true } - yyj4533 := 0 - for ; yyj4533 < yyrr4533; yyj4533++ { - yyh4533.ElemContainerState(yyj4533) + yyj4538 := 0 + for ; yyj4538 < yyrr4538; yyj4538++ { + yyh4538.ElemContainerState(yyj4538) if r.TryDecodeAsNil() { - yyv4533[yyj4533] = EndpointPort{} + yyv4538[yyj4538] = EndpointPort{} } else { - yyv4534 := &yyv4533[yyj4533] - yyv4534.CodecDecodeSelf(d) + yyv4539 := &yyv4538[yyj4538] + yyv4539.CodecDecodeSelf(d) } } - if yyrt4533 { - for ; yyj4533 < yyl4533; yyj4533++ { - yyv4533 = append(yyv4533, EndpointPort{}) - yyh4533.ElemContainerState(yyj4533) + if yyrt4538 { + for ; yyj4538 < yyl4538; yyj4538++ { + yyv4538 = append(yyv4538, EndpointPort{}) + yyh4538.ElemContainerState(yyj4538) if r.TryDecodeAsNil() { - yyv4533[yyj4533] = EndpointPort{} + yyv4538[yyj4538] = EndpointPort{} } else { - yyv4535 := &yyv4533[yyj4533] - yyv4535.CodecDecodeSelf(d) + yyv4540 := &yyv4538[yyj4538] + yyv4540.CodecDecodeSelf(d) } } } } else { - yyj4533 := 0 - for ; !r.CheckBreak(); yyj4533++ { + yyj4538 := 0 + for ; !r.CheckBreak(); yyj4538++ { - if yyj4533 >= len(yyv4533) { - yyv4533 = append(yyv4533, EndpointPort{}) // var yyz4533 EndpointPort - yyc4533 = true + if yyj4538 >= len(yyv4538) { + yyv4538 = append(yyv4538, EndpointPort{}) // var yyz4538 EndpointPort + yyc4538 = true } - yyh4533.ElemContainerState(yyj4533) - if yyj4533 < len(yyv4533) { + yyh4538.ElemContainerState(yyj4538) + if yyj4538 < len(yyv4538) { if r.TryDecodeAsNil() { - yyv4533[yyj4533] = EndpointPort{} + yyv4538[yyj4538] = EndpointPort{} } else { - yyv4536 := &yyv4533[yyj4533] - yyv4536.CodecDecodeSelf(d) + yyv4541 := &yyv4538[yyj4538] + yyv4541.CodecDecodeSelf(d) } } else { @@ -57866,17 +57914,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj4533 < len(yyv4533) { - yyv4533 = yyv4533[:yyj4533] - yyc4533 = true - } else if yyj4533 == 0 && yyv4533 == nil { - yyv4533 = []EndpointPort{} - yyc4533 = true + if yyj4538 < len(yyv4538) { + yyv4538 = yyv4538[:yyj4538] + yyc4538 = true + } else if yyj4538 == 0 && yyv4538 == nil { + yyv4538 = []EndpointPort{} + yyc4538 = true } } - yyh4533.End() - if yyc4533 { - *v = yyv4533 + yyh4538.End() + if yyc4538 { + *v = yyv4538 } } @@ -57885,10 +57933,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4537 := range v { + for _, yyv4542 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4538 := &yyv4537 - yy4538.CodecEncodeSelf(e) + yy4543 := &yyv4542 + yy4543.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57898,83 +57946,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4539 := *v - yyh4539, yyl4539 := z.DecSliceHelperStart() - var yyc4539 bool - if yyl4539 == 0 { - if yyv4539 == nil { - yyv4539 = []Endpoints{} - yyc4539 = true - } else if len(yyv4539) != 0 { - yyv4539 = yyv4539[:0] - yyc4539 = true + yyv4544 := *v + yyh4544, yyl4544 := z.DecSliceHelperStart() + var yyc4544 bool + if yyl4544 == 0 { + if yyv4544 == nil { + yyv4544 = []Endpoints{} + yyc4544 = true + } else if len(yyv4544) != 0 { + yyv4544 = yyv4544[:0] + yyc4544 = true } - } else if yyl4539 > 0 { - var yyrr4539, yyrl4539 int - var yyrt4539 bool - if yyl4539 > cap(yyv4539) { + } else if yyl4544 > 0 { + var yyrr4544, yyrl4544 int + var yyrt4544 bool + if yyl4544 > cap(yyv4544) { - yyrg4539 := len(yyv4539) > 0 - yyv24539 := yyv4539 - yyrl4539, yyrt4539 = z.DecInferLen(yyl4539, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4539 { - if yyrl4539 <= cap(yyv4539) { - yyv4539 = yyv4539[:yyrl4539] + yyrg4544 := len(yyv4544) > 0 + yyv24544 := yyv4544 + yyrl4544, yyrt4544 = z.DecInferLen(yyl4544, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4544 { + if yyrl4544 <= cap(yyv4544) { + yyv4544 = yyv4544[:yyrl4544] } else { - yyv4539 = make([]Endpoints, yyrl4539) + yyv4544 = make([]Endpoints, yyrl4544) } } else { - yyv4539 = make([]Endpoints, yyrl4539) + yyv4544 = make([]Endpoints, yyrl4544) } - yyc4539 = true - yyrr4539 = len(yyv4539) - if yyrg4539 { - copy(yyv4539, yyv24539) + yyc4544 = true + yyrr4544 = len(yyv4544) + if yyrg4544 { + copy(yyv4544, yyv24544) } - } else if yyl4539 != len(yyv4539) { - yyv4539 = yyv4539[:yyl4539] - yyc4539 = true + } else if yyl4544 != len(yyv4544) { + yyv4544 = yyv4544[:yyl4544] + yyc4544 = true } - yyj4539 := 0 - for ; yyj4539 < yyrr4539; yyj4539++ { - yyh4539.ElemContainerState(yyj4539) + yyj4544 := 0 + for ; yyj4544 < yyrr4544; yyj4544++ { + yyh4544.ElemContainerState(yyj4544) if r.TryDecodeAsNil() { - yyv4539[yyj4539] = Endpoints{} + yyv4544[yyj4544] = Endpoints{} } else { - yyv4540 := &yyv4539[yyj4539] - yyv4540.CodecDecodeSelf(d) + yyv4545 := &yyv4544[yyj4544] + yyv4545.CodecDecodeSelf(d) } } - if yyrt4539 { - for ; yyj4539 < yyl4539; yyj4539++ { - yyv4539 = append(yyv4539, Endpoints{}) - yyh4539.ElemContainerState(yyj4539) + if yyrt4544 { + for ; yyj4544 < yyl4544; yyj4544++ { + yyv4544 = append(yyv4544, Endpoints{}) + yyh4544.ElemContainerState(yyj4544) if r.TryDecodeAsNil() { - yyv4539[yyj4539] = Endpoints{} + yyv4544[yyj4544] = Endpoints{} } else { - yyv4541 := &yyv4539[yyj4539] - yyv4541.CodecDecodeSelf(d) + yyv4546 := &yyv4544[yyj4544] + yyv4546.CodecDecodeSelf(d) } } } } else { - yyj4539 := 0 - for ; !r.CheckBreak(); yyj4539++ { + yyj4544 := 0 + for ; !r.CheckBreak(); yyj4544++ { - if yyj4539 >= len(yyv4539) { - yyv4539 = append(yyv4539, Endpoints{}) // var yyz4539 Endpoints - yyc4539 = true + if yyj4544 >= len(yyv4544) { + yyv4544 = append(yyv4544, Endpoints{}) // var yyz4544 Endpoints + yyc4544 = true } - yyh4539.ElemContainerState(yyj4539) - if yyj4539 < len(yyv4539) { + yyh4544.ElemContainerState(yyj4544) + if yyj4544 < len(yyv4544) { if r.TryDecodeAsNil() { - yyv4539[yyj4539] = Endpoints{} + yyv4544[yyj4544] = Endpoints{} } else { - yyv4542 := &yyv4539[yyj4539] - yyv4542.CodecDecodeSelf(d) + yyv4547 := &yyv4544[yyj4544] + yyv4547.CodecDecodeSelf(d) } } else { @@ -57982,17 +58030,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj4539 < len(yyv4539) { - yyv4539 = yyv4539[:yyj4539] - yyc4539 = true - } else if yyj4539 == 0 && yyv4539 == nil { - yyv4539 = []Endpoints{} - yyc4539 = true + if yyj4544 < len(yyv4544) { + yyv4544 = yyv4544[:yyj4544] + yyc4544 = true + } else if yyj4544 == 0 && yyv4544 == nil { + yyv4544 = []Endpoints{} + yyc4544 = true } } - yyh4539.End() - if yyc4539 { - *v = yyv4539 + yyh4544.End() + if yyc4544 { + *v = yyv4544 } } @@ -58001,10 +58049,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4543 := range v { + for _, yyv4548 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4544 := &yyv4543 - yy4544.CodecEncodeSelf(e) + yy4549 := &yyv4548 + yy4549.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58014,83 +58062,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4545 := *v - yyh4545, yyl4545 := z.DecSliceHelperStart() - var yyc4545 bool - if yyl4545 == 0 { - if yyv4545 == nil { - yyv4545 = []NodeCondition{} - yyc4545 = true - } else if len(yyv4545) != 0 { - yyv4545 = yyv4545[:0] - yyc4545 = true + yyv4550 := *v + yyh4550, yyl4550 := z.DecSliceHelperStart() + var yyc4550 bool + if yyl4550 == 0 { + if yyv4550 == nil { + yyv4550 = []NodeCondition{} + yyc4550 = true + } else if len(yyv4550) != 0 { + yyv4550 = yyv4550[:0] + yyc4550 = true } - } else if yyl4545 > 0 { - var yyrr4545, yyrl4545 int - var yyrt4545 bool - if yyl4545 > cap(yyv4545) { + } else if yyl4550 > 0 { + var yyrr4550, yyrl4550 int + var yyrt4550 bool + if yyl4550 > cap(yyv4550) { - yyrg4545 := len(yyv4545) > 0 - yyv24545 := yyv4545 - yyrl4545, yyrt4545 = z.DecInferLen(yyl4545, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4545 { - if yyrl4545 <= cap(yyv4545) { - yyv4545 = yyv4545[:yyrl4545] + yyrg4550 := len(yyv4550) > 0 + yyv24550 := yyv4550 + yyrl4550, yyrt4550 = z.DecInferLen(yyl4550, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4550 { + if yyrl4550 <= cap(yyv4550) { + yyv4550 = yyv4550[:yyrl4550] } else { - yyv4545 = make([]NodeCondition, yyrl4545) + yyv4550 = make([]NodeCondition, yyrl4550) } } else { - yyv4545 = make([]NodeCondition, yyrl4545) + yyv4550 = make([]NodeCondition, yyrl4550) } - yyc4545 = true - yyrr4545 = len(yyv4545) - if yyrg4545 { - copy(yyv4545, yyv24545) + yyc4550 = true + yyrr4550 = len(yyv4550) + if yyrg4550 { + copy(yyv4550, yyv24550) } - } else if yyl4545 != len(yyv4545) { - yyv4545 = yyv4545[:yyl4545] - yyc4545 = true + } else if yyl4550 != len(yyv4550) { + yyv4550 = yyv4550[:yyl4550] + yyc4550 = true } - yyj4545 := 0 - for ; yyj4545 < yyrr4545; yyj4545++ { - yyh4545.ElemContainerState(yyj4545) + yyj4550 := 0 + for ; yyj4550 < yyrr4550; yyj4550++ { + yyh4550.ElemContainerState(yyj4550) if r.TryDecodeAsNil() { - yyv4545[yyj4545] = NodeCondition{} + yyv4550[yyj4550] = NodeCondition{} } else { - yyv4546 := &yyv4545[yyj4545] - yyv4546.CodecDecodeSelf(d) + yyv4551 := &yyv4550[yyj4550] + yyv4551.CodecDecodeSelf(d) } } - if yyrt4545 { - for ; yyj4545 < yyl4545; yyj4545++ { - yyv4545 = append(yyv4545, NodeCondition{}) - yyh4545.ElemContainerState(yyj4545) + if yyrt4550 { + for ; yyj4550 < yyl4550; yyj4550++ { + yyv4550 = append(yyv4550, NodeCondition{}) + yyh4550.ElemContainerState(yyj4550) if r.TryDecodeAsNil() { - yyv4545[yyj4545] = NodeCondition{} + yyv4550[yyj4550] = NodeCondition{} } else { - yyv4547 := &yyv4545[yyj4545] - yyv4547.CodecDecodeSelf(d) + yyv4552 := &yyv4550[yyj4550] + yyv4552.CodecDecodeSelf(d) } } } } else { - yyj4545 := 0 - for ; !r.CheckBreak(); yyj4545++ { + yyj4550 := 0 + for ; !r.CheckBreak(); yyj4550++ { - if yyj4545 >= len(yyv4545) { - yyv4545 = append(yyv4545, NodeCondition{}) // var yyz4545 NodeCondition - yyc4545 = true + if yyj4550 >= len(yyv4550) { + yyv4550 = append(yyv4550, NodeCondition{}) // var yyz4550 NodeCondition + yyc4550 = true } - yyh4545.ElemContainerState(yyj4545) - if yyj4545 < len(yyv4545) { + yyh4550.ElemContainerState(yyj4550) + if yyj4550 < len(yyv4550) { if r.TryDecodeAsNil() { - yyv4545[yyj4545] = NodeCondition{} + yyv4550[yyj4550] = NodeCondition{} } else { - yyv4548 := &yyv4545[yyj4545] - yyv4548.CodecDecodeSelf(d) + yyv4553 := &yyv4550[yyj4550] + yyv4553.CodecDecodeSelf(d) } } else { @@ -58098,17 +58146,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj4545 < len(yyv4545) { - yyv4545 = yyv4545[:yyj4545] - yyc4545 = true - } else if yyj4545 == 0 && yyv4545 == nil { - yyv4545 = []NodeCondition{} - yyc4545 = true + if yyj4550 < len(yyv4550) { + yyv4550 = yyv4550[:yyj4550] + yyc4550 = true + } else if yyj4550 == 0 && yyv4550 == nil { + yyv4550 = []NodeCondition{} + yyc4550 = true } } - yyh4545.End() - if yyc4545 { - *v = yyv4545 + yyh4550.End() + if yyc4550 { + *v = yyv4550 } } @@ -58117,10 +58165,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4549 := range v { + for _, yyv4554 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4550 := &yyv4549 - yy4550.CodecEncodeSelf(e) + yy4555 := &yyv4554 + yy4555.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58130,83 +58178,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4551 := *v - yyh4551, yyl4551 := z.DecSliceHelperStart() - var yyc4551 bool - if yyl4551 == 0 { - if yyv4551 == nil { - yyv4551 = []NodeAddress{} - yyc4551 = true - } else if len(yyv4551) != 0 { - yyv4551 = yyv4551[:0] - yyc4551 = true + yyv4556 := *v + yyh4556, yyl4556 := z.DecSliceHelperStart() + var yyc4556 bool + if yyl4556 == 0 { + if yyv4556 == nil { + yyv4556 = []NodeAddress{} + yyc4556 = true + } else if len(yyv4556) != 0 { + yyv4556 = yyv4556[:0] + yyc4556 = true } - } else if yyl4551 > 0 { - var yyrr4551, yyrl4551 int - var yyrt4551 bool - if yyl4551 > cap(yyv4551) { + } else if yyl4556 > 0 { + var yyrr4556, yyrl4556 int + var yyrt4556 bool + if yyl4556 > cap(yyv4556) { - yyrg4551 := len(yyv4551) > 0 - yyv24551 := yyv4551 - yyrl4551, yyrt4551 = z.DecInferLen(yyl4551, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4551 { - if yyrl4551 <= cap(yyv4551) { - yyv4551 = yyv4551[:yyrl4551] + yyrg4556 := len(yyv4556) > 0 + yyv24556 := yyv4556 + yyrl4556, yyrt4556 = z.DecInferLen(yyl4556, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4556 { + if yyrl4556 <= cap(yyv4556) { + yyv4556 = yyv4556[:yyrl4556] } else { - yyv4551 = make([]NodeAddress, yyrl4551) + yyv4556 = make([]NodeAddress, yyrl4556) } } else { - yyv4551 = make([]NodeAddress, yyrl4551) + yyv4556 = make([]NodeAddress, yyrl4556) } - yyc4551 = true - yyrr4551 = len(yyv4551) - if yyrg4551 { - copy(yyv4551, yyv24551) + yyc4556 = true + yyrr4556 = len(yyv4556) + if yyrg4556 { + copy(yyv4556, yyv24556) } - } else if yyl4551 != len(yyv4551) { - yyv4551 = yyv4551[:yyl4551] - yyc4551 = true + } else if yyl4556 != len(yyv4556) { + yyv4556 = yyv4556[:yyl4556] + yyc4556 = true } - yyj4551 := 0 - for ; yyj4551 < yyrr4551; yyj4551++ { - yyh4551.ElemContainerState(yyj4551) + yyj4556 := 0 + for ; yyj4556 < yyrr4556; yyj4556++ { + yyh4556.ElemContainerState(yyj4556) if r.TryDecodeAsNil() { - yyv4551[yyj4551] = NodeAddress{} + yyv4556[yyj4556] = NodeAddress{} } else { - yyv4552 := &yyv4551[yyj4551] - yyv4552.CodecDecodeSelf(d) + yyv4557 := &yyv4556[yyj4556] + yyv4557.CodecDecodeSelf(d) } } - if yyrt4551 { - for ; yyj4551 < yyl4551; yyj4551++ { - yyv4551 = append(yyv4551, NodeAddress{}) - yyh4551.ElemContainerState(yyj4551) + if yyrt4556 { + for ; yyj4556 < yyl4556; yyj4556++ { + yyv4556 = append(yyv4556, NodeAddress{}) + yyh4556.ElemContainerState(yyj4556) if r.TryDecodeAsNil() { - yyv4551[yyj4551] = NodeAddress{} + yyv4556[yyj4556] = NodeAddress{} } else { - yyv4553 := &yyv4551[yyj4551] - yyv4553.CodecDecodeSelf(d) + yyv4558 := &yyv4556[yyj4556] + yyv4558.CodecDecodeSelf(d) } } } } else { - yyj4551 := 0 - for ; !r.CheckBreak(); yyj4551++ { + yyj4556 := 0 + for ; !r.CheckBreak(); yyj4556++ { - if yyj4551 >= len(yyv4551) { - yyv4551 = append(yyv4551, NodeAddress{}) // var yyz4551 NodeAddress - yyc4551 = true + if yyj4556 >= len(yyv4556) { + yyv4556 = append(yyv4556, NodeAddress{}) // var yyz4556 NodeAddress + yyc4556 = true } - yyh4551.ElemContainerState(yyj4551) - if yyj4551 < len(yyv4551) { + yyh4556.ElemContainerState(yyj4556) + if yyj4556 < len(yyv4556) { if r.TryDecodeAsNil() { - yyv4551[yyj4551] = NodeAddress{} + yyv4556[yyj4556] = NodeAddress{} } else { - yyv4554 := &yyv4551[yyj4551] - yyv4554.CodecDecodeSelf(d) + yyv4559 := &yyv4556[yyj4556] + yyv4559.CodecDecodeSelf(d) } } else { @@ -58214,17 +58262,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj4551 < len(yyv4551) { - yyv4551 = yyv4551[:yyj4551] - yyc4551 = true - } else if yyj4551 == 0 && yyv4551 == nil { - yyv4551 = []NodeAddress{} - yyc4551 = true + if yyj4556 < len(yyv4556) { + yyv4556 = yyv4556[:yyj4556] + yyc4556 = true + } else if yyj4556 == 0 && yyv4556 == nil { + yyv4556 = []NodeAddress{} + yyc4556 = true } } - yyh4551.End() - if yyc4551 { - *v = yyv4551 + yyh4556.End() + if yyc4556 { + *v = yyv4556 } } @@ -58233,10 +58281,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4555 := range v { + for _, yyv4560 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4556 := &yyv4555 - yy4556.CodecEncodeSelf(e) + yy4561 := &yyv4560 + yy4561.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58246,83 +58294,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4557 := *v - yyh4557, yyl4557 := z.DecSliceHelperStart() - var yyc4557 bool - if yyl4557 == 0 { - if yyv4557 == nil { - yyv4557 = []ContainerImage{} - yyc4557 = true - } else if len(yyv4557) != 0 { - yyv4557 = yyv4557[:0] - yyc4557 = true + yyv4562 := *v + yyh4562, yyl4562 := z.DecSliceHelperStart() + var yyc4562 bool + if yyl4562 == 0 { + if yyv4562 == nil { + yyv4562 = []ContainerImage{} + yyc4562 = true + } else if len(yyv4562) != 0 { + yyv4562 = yyv4562[:0] + yyc4562 = true } - } else if yyl4557 > 0 { - var yyrr4557, yyrl4557 int - var yyrt4557 bool - if yyl4557 > cap(yyv4557) { + } else if yyl4562 > 0 { + var yyrr4562, yyrl4562 int + var yyrt4562 bool + if yyl4562 > cap(yyv4562) { - yyrg4557 := len(yyv4557) > 0 - yyv24557 := yyv4557 - yyrl4557, yyrt4557 = z.DecInferLen(yyl4557, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4557 { - if yyrl4557 <= cap(yyv4557) { - yyv4557 = yyv4557[:yyrl4557] + yyrg4562 := len(yyv4562) > 0 + yyv24562 := yyv4562 + yyrl4562, yyrt4562 = z.DecInferLen(yyl4562, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4562 { + if yyrl4562 <= cap(yyv4562) { + yyv4562 = yyv4562[:yyrl4562] } else { - yyv4557 = make([]ContainerImage, yyrl4557) + yyv4562 = make([]ContainerImage, yyrl4562) } } else { - yyv4557 = make([]ContainerImage, yyrl4557) + yyv4562 = make([]ContainerImage, yyrl4562) } - yyc4557 = true - yyrr4557 = len(yyv4557) - if yyrg4557 { - copy(yyv4557, yyv24557) + yyc4562 = true + yyrr4562 = len(yyv4562) + if yyrg4562 { + copy(yyv4562, yyv24562) } - } else if yyl4557 != len(yyv4557) { - yyv4557 = yyv4557[:yyl4557] - yyc4557 = true + } else if yyl4562 != len(yyv4562) { + yyv4562 = yyv4562[:yyl4562] + yyc4562 = true } - yyj4557 := 0 - for ; yyj4557 < yyrr4557; yyj4557++ { - yyh4557.ElemContainerState(yyj4557) + yyj4562 := 0 + for ; yyj4562 < yyrr4562; yyj4562++ { + yyh4562.ElemContainerState(yyj4562) if r.TryDecodeAsNil() { - yyv4557[yyj4557] = ContainerImage{} + yyv4562[yyj4562] = ContainerImage{} } else { - yyv4558 := &yyv4557[yyj4557] - yyv4558.CodecDecodeSelf(d) + yyv4563 := &yyv4562[yyj4562] + yyv4563.CodecDecodeSelf(d) } } - if yyrt4557 { - for ; yyj4557 < yyl4557; yyj4557++ { - yyv4557 = append(yyv4557, ContainerImage{}) - yyh4557.ElemContainerState(yyj4557) + if yyrt4562 { + for ; yyj4562 < yyl4562; yyj4562++ { + yyv4562 = append(yyv4562, ContainerImage{}) + yyh4562.ElemContainerState(yyj4562) if r.TryDecodeAsNil() { - yyv4557[yyj4557] = ContainerImage{} + yyv4562[yyj4562] = ContainerImage{} } else { - yyv4559 := &yyv4557[yyj4557] - yyv4559.CodecDecodeSelf(d) + yyv4564 := &yyv4562[yyj4562] + yyv4564.CodecDecodeSelf(d) } } } } else { - yyj4557 := 0 - for ; !r.CheckBreak(); yyj4557++ { + yyj4562 := 0 + for ; !r.CheckBreak(); yyj4562++ { - if yyj4557 >= len(yyv4557) { - yyv4557 = append(yyv4557, ContainerImage{}) // var yyz4557 ContainerImage - yyc4557 = true + if yyj4562 >= len(yyv4562) { + yyv4562 = append(yyv4562, ContainerImage{}) // var yyz4562 ContainerImage + yyc4562 = true } - yyh4557.ElemContainerState(yyj4557) - if yyj4557 < len(yyv4557) { + yyh4562.ElemContainerState(yyj4562) + if yyj4562 < len(yyv4562) { if r.TryDecodeAsNil() { - yyv4557[yyj4557] = ContainerImage{} + yyv4562[yyj4562] = ContainerImage{} } else { - yyv4560 := &yyv4557[yyj4557] - yyv4560.CodecDecodeSelf(d) + yyv4565 := &yyv4562[yyj4562] + yyv4565.CodecDecodeSelf(d) } } else { @@ -58330,17 +58378,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj4557 < len(yyv4557) { - yyv4557 = yyv4557[:yyj4557] - yyc4557 = true - } else if yyj4557 == 0 && yyv4557 == nil { - yyv4557 = []ContainerImage{} - yyc4557 = true + if yyj4562 < len(yyv4562) { + yyv4562 = yyv4562[:yyj4562] + yyc4562 = true + } else if yyj4562 == 0 && yyv4562 == nil { + yyv4562 = []ContainerImage{} + yyc4562 = true } } - yyh4557.End() - if yyc4557 { - *v = yyv4557 + yyh4562.End() + if yyc4562 { + *v = yyv4562 } } @@ -58349,9 +58397,9 @@ func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4561 := range v { + for _, yyv4566 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4561.CodecEncodeSelf(e) + yyv4566.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58361,75 +58409,75 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4562 := *v - yyh4562, yyl4562 := z.DecSliceHelperStart() - var yyc4562 bool - if yyl4562 == 0 { - if yyv4562 == nil { - yyv4562 = []UniqueVolumeName{} - yyc4562 = true - } else if len(yyv4562) != 0 { - yyv4562 = yyv4562[:0] - yyc4562 = true + yyv4567 := *v + yyh4567, yyl4567 := z.DecSliceHelperStart() + var yyc4567 bool + if yyl4567 == 0 { + if yyv4567 == nil { + yyv4567 = []UniqueVolumeName{} + yyc4567 = true + } else if len(yyv4567) != 0 { + yyv4567 = yyv4567[:0] + yyc4567 = true } - } else if yyl4562 > 0 { - var yyrr4562, yyrl4562 int - var yyrt4562 bool - if yyl4562 > cap(yyv4562) { + } else if yyl4567 > 0 { + var yyrr4567, yyrl4567 int + var yyrt4567 bool + if yyl4567 > cap(yyv4567) { - yyrl4562, yyrt4562 = z.DecInferLen(yyl4562, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4562 { - if yyrl4562 <= cap(yyv4562) { - yyv4562 = yyv4562[:yyrl4562] + yyrl4567, yyrt4567 = z.DecInferLen(yyl4567, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4567 { + if yyrl4567 <= cap(yyv4567) { + yyv4567 = yyv4567[:yyrl4567] } else { - yyv4562 = make([]UniqueVolumeName, yyrl4562) + yyv4567 = make([]UniqueVolumeName, yyrl4567) } } else { - yyv4562 = make([]UniqueVolumeName, yyrl4562) + yyv4567 = make([]UniqueVolumeName, yyrl4567) } - yyc4562 = true - yyrr4562 = len(yyv4562) - } else if yyl4562 != len(yyv4562) { - yyv4562 = yyv4562[:yyl4562] - yyc4562 = true + yyc4567 = true + yyrr4567 = len(yyv4567) + } else if yyl4567 != len(yyv4567) { + yyv4567 = yyv4567[:yyl4567] + yyc4567 = true } - yyj4562 := 0 - for ; yyj4562 < yyrr4562; yyj4562++ { - yyh4562.ElemContainerState(yyj4562) + yyj4567 := 0 + for ; yyj4567 < yyrr4567; yyj4567++ { + yyh4567.ElemContainerState(yyj4567) if r.TryDecodeAsNil() { - yyv4562[yyj4562] = "" + yyv4567[yyj4567] = "" } else { - yyv4562[yyj4562] = UniqueVolumeName(r.DecodeString()) + yyv4567[yyj4567] = UniqueVolumeName(r.DecodeString()) } } - if yyrt4562 { - for ; yyj4562 < yyl4562; yyj4562++ { - yyv4562 = append(yyv4562, "") - yyh4562.ElemContainerState(yyj4562) + if yyrt4567 { + for ; yyj4567 < yyl4567; yyj4567++ { + yyv4567 = append(yyv4567, "") + yyh4567.ElemContainerState(yyj4567) if r.TryDecodeAsNil() { - yyv4562[yyj4562] = "" + yyv4567[yyj4567] = "" } else { - yyv4562[yyj4562] = UniqueVolumeName(r.DecodeString()) + yyv4567[yyj4567] = UniqueVolumeName(r.DecodeString()) } } } } else { - yyj4562 := 0 - for ; !r.CheckBreak(); yyj4562++ { + yyj4567 := 0 + for ; !r.CheckBreak(); yyj4567++ { - if yyj4562 >= len(yyv4562) { - yyv4562 = append(yyv4562, "") // var yyz4562 UniqueVolumeName - yyc4562 = true + if yyj4567 >= len(yyv4567) { + yyv4567 = append(yyv4567, "") // var yyz4567 UniqueVolumeName + yyc4567 = true } - yyh4562.ElemContainerState(yyj4562) - if yyj4562 < len(yyv4562) { + yyh4567.ElemContainerState(yyj4567) + if yyj4567 < len(yyv4567) { if r.TryDecodeAsNil() { - yyv4562[yyj4562] = "" + yyv4567[yyj4567] = "" } else { - yyv4562[yyj4562] = UniqueVolumeName(r.DecodeString()) + yyv4567[yyj4567] = UniqueVolumeName(r.DecodeString()) } } else { @@ -58437,17 +58485,17 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code } } - if yyj4562 < len(yyv4562) { - yyv4562 = yyv4562[:yyj4562] - yyc4562 = true - } else if yyj4562 == 0 && yyv4562 == nil { - yyv4562 = []UniqueVolumeName{} - yyc4562 = true + if yyj4567 < len(yyv4567) { + yyv4567 = yyv4567[:yyj4567] + yyc4567 = true + } else if yyj4567 == 0 && yyv4567 == nil { + yyv4567 = []UniqueVolumeName{} + yyc4567 = true } } - yyh4562.End() - if yyc4562 { - *v = yyv4562 + yyh4567.End() + if yyc4567 { + *v = yyv4567 } } @@ -58456,10 +58504,10 @@ func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4566 := range v { + for _, yyv4571 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4567 := &yyv4566 - yy4567.CodecEncodeSelf(e) + yy4572 := &yyv4571 + yy4572.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58469,83 +58517,83 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4568 := *v - yyh4568, yyl4568 := z.DecSliceHelperStart() - var yyc4568 bool - if yyl4568 == 0 { - if yyv4568 == nil { - yyv4568 = []AttachedVolume{} - yyc4568 = true - } else if len(yyv4568) != 0 { - yyv4568 = yyv4568[:0] - yyc4568 = true + yyv4573 := *v + yyh4573, yyl4573 := z.DecSliceHelperStart() + var yyc4573 bool + if yyl4573 == 0 { + if yyv4573 == nil { + yyv4573 = []AttachedVolume{} + yyc4573 = true + } else if len(yyv4573) != 0 { + yyv4573 = yyv4573[:0] + yyc4573 = true } - } else if yyl4568 > 0 { - var yyrr4568, yyrl4568 int - var yyrt4568 bool - if yyl4568 > cap(yyv4568) { + } else if yyl4573 > 0 { + var yyrr4573, yyrl4573 int + var yyrt4573 bool + if yyl4573 > cap(yyv4573) { - yyrg4568 := len(yyv4568) > 0 - yyv24568 := yyv4568 - yyrl4568, yyrt4568 = z.DecInferLen(yyl4568, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4568 { - if yyrl4568 <= cap(yyv4568) { - yyv4568 = yyv4568[:yyrl4568] + yyrg4573 := len(yyv4573) > 0 + yyv24573 := yyv4573 + yyrl4573, yyrt4573 = z.DecInferLen(yyl4573, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4573 { + if yyrl4573 <= cap(yyv4573) { + yyv4573 = yyv4573[:yyrl4573] } else { - yyv4568 = make([]AttachedVolume, yyrl4568) + yyv4573 = make([]AttachedVolume, yyrl4573) } } else { - yyv4568 = make([]AttachedVolume, yyrl4568) + yyv4573 = make([]AttachedVolume, yyrl4573) } - yyc4568 = true - yyrr4568 = len(yyv4568) - if yyrg4568 { - copy(yyv4568, yyv24568) + yyc4573 = true + yyrr4573 = len(yyv4573) + if yyrg4573 { + copy(yyv4573, yyv24573) } - } else if yyl4568 != len(yyv4568) { - yyv4568 = yyv4568[:yyl4568] - yyc4568 = true + } else if yyl4573 != len(yyv4573) { + yyv4573 = yyv4573[:yyl4573] + yyc4573 = true } - yyj4568 := 0 - for ; yyj4568 < yyrr4568; yyj4568++ { - yyh4568.ElemContainerState(yyj4568) + yyj4573 := 0 + for ; yyj4573 < yyrr4573; yyj4573++ { + yyh4573.ElemContainerState(yyj4573) if r.TryDecodeAsNil() { - yyv4568[yyj4568] = AttachedVolume{} + yyv4573[yyj4573] = AttachedVolume{} } else { - yyv4569 := &yyv4568[yyj4568] - yyv4569.CodecDecodeSelf(d) + yyv4574 := &yyv4573[yyj4573] + yyv4574.CodecDecodeSelf(d) } } - if yyrt4568 { - for ; yyj4568 < yyl4568; yyj4568++ { - yyv4568 = append(yyv4568, AttachedVolume{}) - yyh4568.ElemContainerState(yyj4568) + if yyrt4573 { + for ; yyj4573 < yyl4573; yyj4573++ { + yyv4573 = append(yyv4573, AttachedVolume{}) + yyh4573.ElemContainerState(yyj4573) if r.TryDecodeAsNil() { - yyv4568[yyj4568] = AttachedVolume{} + yyv4573[yyj4573] = AttachedVolume{} } else { - yyv4570 := &yyv4568[yyj4568] - yyv4570.CodecDecodeSelf(d) + yyv4575 := &yyv4573[yyj4573] + yyv4575.CodecDecodeSelf(d) } } } } else { - yyj4568 := 0 - for ; !r.CheckBreak(); yyj4568++ { + yyj4573 := 0 + for ; !r.CheckBreak(); yyj4573++ { - if yyj4568 >= len(yyv4568) { - yyv4568 = append(yyv4568, AttachedVolume{}) // var yyz4568 AttachedVolume - yyc4568 = true + if yyj4573 >= len(yyv4573) { + yyv4573 = append(yyv4573, AttachedVolume{}) // var yyz4573 AttachedVolume + yyc4573 = true } - yyh4568.ElemContainerState(yyj4568) - if yyj4568 < len(yyv4568) { + yyh4573.ElemContainerState(yyj4573) + if yyj4573 < len(yyv4573) { if r.TryDecodeAsNil() { - yyv4568[yyj4568] = AttachedVolume{} + yyv4573[yyj4573] = AttachedVolume{} } else { - yyv4571 := &yyv4568[yyj4568] - yyv4571.CodecDecodeSelf(d) + yyv4576 := &yyv4573[yyj4573] + yyv4576.CodecDecodeSelf(d) } } else { @@ -58553,17 +58601,17 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } } - if yyj4568 < len(yyv4568) { - yyv4568 = yyv4568[:yyj4568] - yyc4568 = true - } else if yyj4568 == 0 && yyv4568 == nil { - yyv4568 = []AttachedVolume{} - yyc4568 = true + if yyj4573 < len(yyv4573) { + yyv4573 = yyv4573[:yyj4573] + yyc4573 = true + } else if yyj4573 == 0 && yyv4573 == nil { + yyv4573 = []AttachedVolume{} + yyc4573 = true } } - yyh4568.End() - if yyc4568 { - *v = yyv4568 + yyh4573.End() + if yyc4573 { + *v = yyv4573 } } @@ -58572,10 +58620,10 @@ func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4572 := range v { + for _, yyv4577 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4573 := &yyv4572 - yy4573.CodecEncodeSelf(e) + yy4578 := &yyv4577 + yy4578.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58585,83 +58633,83 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4574 := *v - yyh4574, yyl4574 := z.DecSliceHelperStart() - var yyc4574 bool - if yyl4574 == 0 { - if yyv4574 == nil { - yyv4574 = []PreferAvoidPodsEntry{} - yyc4574 = true - } else if len(yyv4574) != 0 { - yyv4574 = yyv4574[:0] - yyc4574 = true + yyv4579 := *v + yyh4579, yyl4579 := z.DecSliceHelperStart() + var yyc4579 bool + if yyl4579 == 0 { + if yyv4579 == nil { + yyv4579 = []PreferAvoidPodsEntry{} + yyc4579 = true + } else if len(yyv4579) != 0 { + yyv4579 = yyv4579[:0] + yyc4579 = true } - } else if yyl4574 > 0 { - var yyrr4574, yyrl4574 int - var yyrt4574 bool - if yyl4574 > cap(yyv4574) { + } else if yyl4579 > 0 { + var yyrr4579, yyrl4579 int + var yyrt4579 bool + if yyl4579 > cap(yyv4579) { - yyrg4574 := len(yyv4574) > 0 - yyv24574 := yyv4574 - yyrl4574, yyrt4574 = z.DecInferLen(yyl4574, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4574 { - if yyrl4574 <= cap(yyv4574) { - yyv4574 = yyv4574[:yyrl4574] + yyrg4579 := len(yyv4579) > 0 + yyv24579 := yyv4579 + yyrl4579, yyrt4579 = z.DecInferLen(yyl4579, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4579 { + if yyrl4579 <= cap(yyv4579) { + yyv4579 = yyv4579[:yyrl4579] } else { - yyv4574 = make([]PreferAvoidPodsEntry, yyrl4574) + yyv4579 = make([]PreferAvoidPodsEntry, yyrl4579) } } else { - yyv4574 = make([]PreferAvoidPodsEntry, yyrl4574) + yyv4579 = make([]PreferAvoidPodsEntry, yyrl4579) } - yyc4574 = true - yyrr4574 = len(yyv4574) - if yyrg4574 { - copy(yyv4574, yyv24574) + yyc4579 = true + yyrr4579 = len(yyv4579) + if yyrg4579 { + copy(yyv4579, yyv24579) } - } else if yyl4574 != len(yyv4574) { - yyv4574 = yyv4574[:yyl4574] - yyc4574 = true + } else if yyl4579 != len(yyv4579) { + yyv4579 = yyv4579[:yyl4579] + yyc4579 = true } - yyj4574 := 0 - for ; yyj4574 < yyrr4574; yyj4574++ { - yyh4574.ElemContainerState(yyj4574) + yyj4579 := 0 + for ; yyj4579 < yyrr4579; yyj4579++ { + yyh4579.ElemContainerState(yyj4579) if r.TryDecodeAsNil() { - yyv4574[yyj4574] = PreferAvoidPodsEntry{} + yyv4579[yyj4579] = PreferAvoidPodsEntry{} } else { - yyv4575 := &yyv4574[yyj4574] - yyv4575.CodecDecodeSelf(d) + yyv4580 := &yyv4579[yyj4579] + yyv4580.CodecDecodeSelf(d) } } - if yyrt4574 { - for ; yyj4574 < yyl4574; yyj4574++ { - yyv4574 = append(yyv4574, PreferAvoidPodsEntry{}) - yyh4574.ElemContainerState(yyj4574) + if yyrt4579 { + for ; yyj4579 < yyl4579; yyj4579++ { + yyv4579 = append(yyv4579, PreferAvoidPodsEntry{}) + yyh4579.ElemContainerState(yyj4579) if r.TryDecodeAsNil() { - yyv4574[yyj4574] = PreferAvoidPodsEntry{} + yyv4579[yyj4579] = PreferAvoidPodsEntry{} } else { - yyv4576 := &yyv4574[yyj4574] - yyv4576.CodecDecodeSelf(d) + yyv4581 := &yyv4579[yyj4579] + yyv4581.CodecDecodeSelf(d) } } } } else { - yyj4574 := 0 - for ; !r.CheckBreak(); yyj4574++ { + yyj4579 := 0 + for ; !r.CheckBreak(); yyj4579++ { - if yyj4574 >= len(yyv4574) { - yyv4574 = append(yyv4574, PreferAvoidPodsEntry{}) // var yyz4574 PreferAvoidPodsEntry - yyc4574 = true + if yyj4579 >= len(yyv4579) { + yyv4579 = append(yyv4579, PreferAvoidPodsEntry{}) // var yyz4579 PreferAvoidPodsEntry + yyc4579 = true } - yyh4574.ElemContainerState(yyj4574) - if yyj4574 < len(yyv4574) { + yyh4579.ElemContainerState(yyj4579) + if yyj4579 < len(yyv4579) { if r.TryDecodeAsNil() { - yyv4574[yyj4574] = PreferAvoidPodsEntry{} + yyv4579[yyj4579] = PreferAvoidPodsEntry{} } else { - yyv4577 := &yyv4574[yyj4574] - yyv4577.CodecDecodeSelf(d) + yyv4582 := &yyv4579[yyj4579] + yyv4582.CodecDecodeSelf(d) } } else { @@ -58669,17 +58717,17 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } } - if yyj4574 < len(yyv4574) { - yyv4574 = yyv4574[:yyj4574] - yyc4574 = true - } else if yyj4574 == 0 && yyv4574 == nil { - yyv4574 = []PreferAvoidPodsEntry{} - yyc4574 = true + if yyj4579 < len(yyv4579) { + yyv4579 = yyv4579[:yyj4579] + yyc4579 = true + } else if yyj4579 == 0 && yyv4579 == nil { + yyv4579 = []PreferAvoidPodsEntry{} + yyc4579 = true } } - yyh4574.End() - if yyc4574 { - *v = yyv4574 + yyh4579.End() + if yyc4579 { + *v = yyv4579 } } @@ -58688,19 +58736,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4578, yyv4578 := range v { + for yyk4583, yyv4583 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4578.CodecEncodeSelf(e) + yyk4583.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4579 := &yyv4578 - yym4580 := z.EncBinary() - _ = yym4580 + yy4584 := &yyv4583 + yym4585 := z.EncBinary() + _ = yym4585 if false { - } else if z.HasExtensions() && z.EncExt(yy4579) { - } else if !yym4580 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4579) + } else if z.HasExtensions() && z.EncExt(yy4584) { + } else if !yym4585 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4584) } else { - z.EncFallback(yy4579) + z.EncFallback(yy4584) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -58711,86 +58759,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4581 := *v - yyl4581 := r.ReadMapStart() - yybh4581 := z.DecBasicHandle() - if yyv4581 == nil { - yyrl4581, _ := z.DecInferLen(yyl4581, yybh4581.MaxInitLen, 72) - yyv4581 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4581) - *v = yyv4581 + yyv4586 := *v + yyl4586 := r.ReadMapStart() + yybh4586 := z.DecBasicHandle() + if yyv4586 == nil { + yyrl4586, _ := z.DecInferLen(yyl4586, yybh4586.MaxInitLen, 72) + yyv4586 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4586) + *v = yyv4586 } - var yymk4581 ResourceName - var yymv4581 pkg3_resource.Quantity - var yymg4581 bool - if yybh4581.MapValueReset { - yymg4581 = true + var yymk4586 ResourceName + var yymv4586 pkg3_resource.Quantity + var yymg4586 bool + if yybh4586.MapValueReset { + yymg4586 = true } - if yyl4581 > 0 { - for yyj4581 := 0; yyj4581 < yyl4581; yyj4581++ { + if yyl4586 > 0 { + for yyj4586 := 0; yyj4586 < yyl4586; yyj4586++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4581 = "" + yymk4586 = "" } else { - yymk4581 = ResourceName(r.DecodeString()) + yymk4586 = ResourceName(r.DecodeString()) } - if yymg4581 { - yymv4581 = yyv4581[yymk4581] + if yymg4586 { + yymv4586 = yyv4586[yymk4586] } else { - yymv4581 = pkg3_resource.Quantity{} + yymv4586 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4581 = pkg3_resource.Quantity{} + yymv4586 = pkg3_resource.Quantity{} } else { - yyv4583 := &yymv4581 - yym4584 := z.DecBinary() - _ = yym4584 + yyv4588 := &yymv4586 + yym4589 := z.DecBinary() + _ = yym4589 if false { - } else if z.HasExtensions() && z.DecExt(yyv4583) { - } else if !yym4584 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4583) + } else if z.HasExtensions() && z.DecExt(yyv4588) { + } else if !yym4589 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4588) } else { - z.DecFallback(yyv4583, false) + z.DecFallback(yyv4588, false) } } - if yyv4581 != nil { - yyv4581[yymk4581] = yymv4581 + if yyv4586 != nil { + yyv4586[yymk4586] = yymv4586 } } - } else if yyl4581 < 0 { - for yyj4581 := 0; !r.CheckBreak(); yyj4581++ { + } else if yyl4586 < 0 { + for yyj4586 := 0; !r.CheckBreak(); yyj4586++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4581 = "" + yymk4586 = "" } else { - yymk4581 = ResourceName(r.DecodeString()) + yymk4586 = ResourceName(r.DecodeString()) } - if yymg4581 { - yymv4581 = yyv4581[yymk4581] + if yymg4586 { + yymv4586 = yyv4586[yymk4586] } else { - yymv4581 = pkg3_resource.Quantity{} + yymv4586 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4581 = pkg3_resource.Quantity{} + yymv4586 = pkg3_resource.Quantity{} } else { - yyv4586 := &yymv4581 - yym4587 := z.DecBinary() - _ = yym4587 + yyv4591 := &yymv4586 + yym4592 := z.DecBinary() + _ = yym4592 if false { - } else if z.HasExtensions() && z.DecExt(yyv4586) { - } else if !yym4587 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4586) + } else if z.HasExtensions() && z.DecExt(yyv4591) { + } else if !yym4592 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4591) } else { - z.DecFallback(yyv4586, false) + z.DecFallback(yyv4591, false) } } - if yyv4581 != nil { - yyv4581[yymk4581] = yymv4581 + if yyv4586 != nil { + yyv4586[yymk4586] = yymv4586 } } } // else len==0: TODO: Should we clear map entries? @@ -58802,10 +58850,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4588 := range v { + for _, yyv4593 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4589 := &yyv4588 - yy4589.CodecEncodeSelf(e) + yy4594 := &yyv4593 + yy4594.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58815,127 +58863,12 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4590 := *v - yyh4590, yyl4590 := z.DecSliceHelperStart() - var yyc4590 bool - if yyl4590 == 0 { - if yyv4590 == nil { - yyv4590 = []Node{} - yyc4590 = true - } else if len(yyv4590) != 0 { - yyv4590 = yyv4590[:0] - yyc4590 = true - } - } else if yyl4590 > 0 { - var yyrr4590, yyrl4590 int - var yyrt4590 bool - if yyl4590 > cap(yyv4590) { - - yyrg4590 := len(yyv4590) > 0 - yyv24590 := yyv4590 - yyrl4590, yyrt4590 = z.DecInferLen(yyl4590, z.DecBasicHandle().MaxInitLen, 616) - if yyrt4590 { - if yyrl4590 <= cap(yyv4590) { - yyv4590 = yyv4590[:yyrl4590] - } else { - yyv4590 = make([]Node, yyrl4590) - } - } else { - yyv4590 = make([]Node, yyrl4590) - } - yyc4590 = true - yyrr4590 = len(yyv4590) - if yyrg4590 { - copy(yyv4590, yyv24590) - } - } else if yyl4590 != len(yyv4590) { - yyv4590 = yyv4590[:yyl4590] - yyc4590 = true - } - yyj4590 := 0 - for ; yyj4590 < yyrr4590; yyj4590++ { - yyh4590.ElemContainerState(yyj4590) - if r.TryDecodeAsNil() { - yyv4590[yyj4590] = Node{} - } else { - yyv4591 := &yyv4590[yyj4590] - yyv4591.CodecDecodeSelf(d) - } - - } - if yyrt4590 { - for ; yyj4590 < yyl4590; yyj4590++ { - yyv4590 = append(yyv4590, Node{}) - yyh4590.ElemContainerState(yyj4590) - if r.TryDecodeAsNil() { - yyv4590[yyj4590] = Node{} - } else { - yyv4592 := &yyv4590[yyj4590] - yyv4592.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4590 := 0 - for ; !r.CheckBreak(); yyj4590++ { - - if yyj4590 >= len(yyv4590) { - yyv4590 = append(yyv4590, Node{}) // var yyz4590 Node - yyc4590 = true - } - yyh4590.ElemContainerState(yyj4590) - if yyj4590 < len(yyv4590) { - if r.TryDecodeAsNil() { - yyv4590[yyj4590] = Node{} - } else { - yyv4593 := &yyv4590[yyj4590] - yyv4593.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4590 < len(yyv4590) { - yyv4590 = yyv4590[:yyj4590] - yyc4590 = true - } else if yyj4590 == 0 && yyv4590 == nil { - yyv4590 = []Node{} - yyc4590 = true - } - } - yyh4590.End() - if yyc4590 { - *v = yyv4590 - } -} - -func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4594 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4594.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yyv4595 := *v yyh4595, yyl4595 := z.DecSliceHelperStart() var yyc4595 bool if yyl4595 == 0 { if yyv4595 == nil { - yyv4595 = []FinalizerName{} + yyv4595 = []Node{} yyc4595 = true } else if len(yyv4595) != 0 { yyv4595 = yyv4595[:0] @@ -58946,18 +58879,23 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. var yyrt4595 bool if yyl4595 > cap(yyv4595) { - yyrl4595, yyrt4595 = z.DecInferLen(yyl4595, z.DecBasicHandle().MaxInitLen, 16) + yyrg4595 := len(yyv4595) > 0 + yyv24595 := yyv4595 + yyrl4595, yyrt4595 = z.DecInferLen(yyl4595, z.DecBasicHandle().MaxInitLen, 616) if yyrt4595 { if yyrl4595 <= cap(yyv4595) { yyv4595 = yyv4595[:yyrl4595] } else { - yyv4595 = make([]FinalizerName, yyrl4595) + yyv4595 = make([]Node, yyrl4595) } } else { - yyv4595 = make([]FinalizerName, yyrl4595) + yyv4595 = make([]Node, yyrl4595) } yyc4595 = true yyrr4595 = len(yyv4595) + if yyrg4595 { + copy(yyv4595, yyv24595) + } } else if yyl4595 != len(yyv4595) { yyv4595 = yyv4595[:yyl4595] yyc4595 = true @@ -58966,20 +58904,22 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. for ; yyj4595 < yyrr4595; yyj4595++ { yyh4595.ElemContainerState(yyj4595) if r.TryDecodeAsNil() { - yyv4595[yyj4595] = "" + yyv4595[yyj4595] = Node{} } else { - yyv4595[yyj4595] = FinalizerName(r.DecodeString()) + yyv4596 := &yyv4595[yyj4595] + yyv4596.CodecDecodeSelf(d) } } if yyrt4595 { for ; yyj4595 < yyl4595; yyj4595++ { - yyv4595 = append(yyv4595, "") + yyv4595 = append(yyv4595, Node{}) yyh4595.ElemContainerState(yyj4595) if r.TryDecodeAsNil() { - yyv4595[yyj4595] = "" + yyv4595[yyj4595] = Node{} } else { - yyv4595[yyj4595] = FinalizerName(r.DecodeString()) + yyv4597 := &yyv4595[yyj4595] + yyv4597.CodecDecodeSelf(d) } } @@ -58990,15 +58930,16 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. for ; !r.CheckBreak(); yyj4595++ { if yyj4595 >= len(yyv4595) { - yyv4595 = append(yyv4595, "") // var yyz4595 FinalizerName + yyv4595 = append(yyv4595, Node{}) // var yyz4595 Node yyc4595 = true } yyh4595.ElemContainerState(yyj4595) if yyj4595 < len(yyv4595) { if r.TryDecodeAsNil() { - yyv4595[yyj4595] = "" + yyv4595[yyj4595] = Node{} } else { - yyv4595[yyj4595] = FinalizerName(r.DecodeString()) + yyv4598 := &yyv4595[yyj4595] + yyv4598.CodecDecodeSelf(d) } } else { @@ -59010,7 +58951,7 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. yyv4595 = yyv4595[:yyj4595] yyc4595 = true } else if yyj4595 == 0 && yyv4595 == nil { - yyv4595 = []FinalizerName{} + yyv4595 = []Node{} yyc4595 = true } } @@ -59020,101 +58961,92 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } -func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) for _, yyv4599 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4600 := &yyv4599 - yy4600.CodecEncodeSelf(e) + yyv4599.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4601 := *v - yyh4601, yyl4601 := z.DecSliceHelperStart() - var yyc4601 bool - if yyl4601 == 0 { - if yyv4601 == nil { - yyv4601 = []Namespace{} - yyc4601 = true - } else if len(yyv4601) != 0 { - yyv4601 = yyv4601[:0] - yyc4601 = true + yyv4600 := *v + yyh4600, yyl4600 := z.DecSliceHelperStart() + var yyc4600 bool + if yyl4600 == 0 { + if yyv4600 == nil { + yyv4600 = []FinalizerName{} + yyc4600 = true + } else if len(yyv4600) != 0 { + yyv4600 = yyv4600[:0] + yyc4600 = true } - } else if yyl4601 > 0 { - var yyrr4601, yyrl4601 int - var yyrt4601 bool - if yyl4601 > cap(yyv4601) { + } else if yyl4600 > 0 { + var yyrr4600, yyrl4600 int + var yyrt4600 bool + if yyl4600 > cap(yyv4600) { - yyrg4601 := len(yyv4601) > 0 - yyv24601 := yyv4601 - yyrl4601, yyrt4601 = z.DecInferLen(yyl4601, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4601 { - if yyrl4601 <= cap(yyv4601) { - yyv4601 = yyv4601[:yyrl4601] + yyrl4600, yyrt4600 = z.DecInferLen(yyl4600, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4600 { + if yyrl4600 <= cap(yyv4600) { + yyv4600 = yyv4600[:yyrl4600] } else { - yyv4601 = make([]Namespace, yyrl4601) + yyv4600 = make([]FinalizerName, yyrl4600) } } else { - yyv4601 = make([]Namespace, yyrl4601) - } - yyc4601 = true - yyrr4601 = len(yyv4601) - if yyrg4601 { - copy(yyv4601, yyv24601) + yyv4600 = make([]FinalizerName, yyrl4600) } - } else if yyl4601 != len(yyv4601) { - yyv4601 = yyv4601[:yyl4601] - yyc4601 = true + yyc4600 = true + yyrr4600 = len(yyv4600) + } else if yyl4600 != len(yyv4600) { + yyv4600 = yyv4600[:yyl4600] + yyc4600 = true } - yyj4601 := 0 - for ; yyj4601 < yyrr4601; yyj4601++ { - yyh4601.ElemContainerState(yyj4601) + yyj4600 := 0 + for ; yyj4600 < yyrr4600; yyj4600++ { + yyh4600.ElemContainerState(yyj4600) if r.TryDecodeAsNil() { - yyv4601[yyj4601] = Namespace{} + yyv4600[yyj4600] = "" } else { - yyv4602 := &yyv4601[yyj4601] - yyv4602.CodecDecodeSelf(d) + yyv4600[yyj4600] = FinalizerName(r.DecodeString()) } } - if yyrt4601 { - for ; yyj4601 < yyl4601; yyj4601++ { - yyv4601 = append(yyv4601, Namespace{}) - yyh4601.ElemContainerState(yyj4601) + if yyrt4600 { + for ; yyj4600 < yyl4600; yyj4600++ { + yyv4600 = append(yyv4600, "") + yyh4600.ElemContainerState(yyj4600) if r.TryDecodeAsNil() { - yyv4601[yyj4601] = Namespace{} + yyv4600[yyj4600] = "" } else { - yyv4603 := &yyv4601[yyj4601] - yyv4603.CodecDecodeSelf(d) + yyv4600[yyj4600] = FinalizerName(r.DecodeString()) } } } } else { - yyj4601 := 0 - for ; !r.CheckBreak(); yyj4601++ { + yyj4600 := 0 + for ; !r.CheckBreak(); yyj4600++ { - if yyj4601 >= len(yyv4601) { - yyv4601 = append(yyv4601, Namespace{}) // var yyz4601 Namespace - yyc4601 = true + if yyj4600 >= len(yyv4600) { + yyv4600 = append(yyv4600, "") // var yyz4600 FinalizerName + yyc4600 = true } - yyh4601.ElemContainerState(yyj4601) - if yyj4601 < len(yyv4601) { + yyh4600.ElemContainerState(yyj4600) + if yyj4600 < len(yyv4600) { if r.TryDecodeAsNil() { - yyv4601[yyj4601] = Namespace{} + yyv4600[yyj4600] = "" } else { - yyv4604 := &yyv4601[yyj4601] - yyv4604.CodecDecodeSelf(d) + yyv4600[yyj4600] = FinalizerName(r.DecodeString()) } } else { @@ -59122,115 +59054,115 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4601 < len(yyv4601) { - yyv4601 = yyv4601[:yyj4601] - yyc4601 = true - } else if yyj4601 == 0 && yyv4601 == nil { - yyv4601 = []Namespace{} - yyc4601 = true + if yyj4600 < len(yyv4600) { + yyv4600 = yyv4600[:yyj4600] + yyc4600 = true + } else if yyj4600 == 0 && yyv4600 == nil { + yyv4600 = []FinalizerName{} + yyc4600 = true } } - yyh4601.End() - if yyc4601 { - *v = yyv4601 + yyh4600.End() + if yyc4600 { + *v = yyv4600 } } -func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4605 := range v { + for _, yyv4604 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4606 := &yyv4605 - yy4606.CodecEncodeSelf(e) + yy4605 := &yyv4604 + yy4605.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4607 := *v - yyh4607, yyl4607 := z.DecSliceHelperStart() - var yyc4607 bool - if yyl4607 == 0 { - if yyv4607 == nil { - yyv4607 = []Event{} - yyc4607 = true - } else if len(yyv4607) != 0 { - yyv4607 = yyv4607[:0] - yyc4607 = true + yyv4606 := *v + yyh4606, yyl4606 := z.DecSliceHelperStart() + var yyc4606 bool + if yyl4606 == 0 { + if yyv4606 == nil { + yyv4606 = []Namespace{} + yyc4606 = true + } else if len(yyv4606) != 0 { + yyv4606 = yyv4606[:0] + yyc4606 = true } - } else if yyl4607 > 0 { - var yyrr4607, yyrl4607 int - var yyrt4607 bool - if yyl4607 > cap(yyv4607) { + } else if yyl4606 > 0 { + var yyrr4606, yyrl4606 int + var yyrt4606 bool + if yyl4606 > cap(yyv4606) { - yyrg4607 := len(yyv4607) > 0 - yyv24607 := yyv4607 - yyrl4607, yyrt4607 = z.DecInferLen(yyl4607, z.DecBasicHandle().MaxInitLen, 488) - if yyrt4607 { - if yyrl4607 <= cap(yyv4607) { - yyv4607 = yyv4607[:yyrl4607] + yyrg4606 := len(yyv4606) > 0 + yyv24606 := yyv4606 + yyrl4606, yyrt4606 = z.DecInferLen(yyl4606, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4606 { + if yyrl4606 <= cap(yyv4606) { + yyv4606 = yyv4606[:yyrl4606] } else { - yyv4607 = make([]Event, yyrl4607) + yyv4606 = make([]Namespace, yyrl4606) } } else { - yyv4607 = make([]Event, yyrl4607) + yyv4606 = make([]Namespace, yyrl4606) } - yyc4607 = true - yyrr4607 = len(yyv4607) - if yyrg4607 { - copy(yyv4607, yyv24607) + yyc4606 = true + yyrr4606 = len(yyv4606) + if yyrg4606 { + copy(yyv4606, yyv24606) } - } else if yyl4607 != len(yyv4607) { - yyv4607 = yyv4607[:yyl4607] - yyc4607 = true + } else if yyl4606 != len(yyv4606) { + yyv4606 = yyv4606[:yyl4606] + yyc4606 = true } - yyj4607 := 0 - for ; yyj4607 < yyrr4607; yyj4607++ { - yyh4607.ElemContainerState(yyj4607) + yyj4606 := 0 + for ; yyj4606 < yyrr4606; yyj4606++ { + yyh4606.ElemContainerState(yyj4606) if r.TryDecodeAsNil() { - yyv4607[yyj4607] = Event{} + yyv4606[yyj4606] = Namespace{} } else { - yyv4608 := &yyv4607[yyj4607] - yyv4608.CodecDecodeSelf(d) + yyv4607 := &yyv4606[yyj4606] + yyv4607.CodecDecodeSelf(d) } } - if yyrt4607 { - for ; yyj4607 < yyl4607; yyj4607++ { - yyv4607 = append(yyv4607, Event{}) - yyh4607.ElemContainerState(yyj4607) + if yyrt4606 { + for ; yyj4606 < yyl4606; yyj4606++ { + yyv4606 = append(yyv4606, Namespace{}) + yyh4606.ElemContainerState(yyj4606) if r.TryDecodeAsNil() { - yyv4607[yyj4607] = Event{} + yyv4606[yyj4606] = Namespace{} } else { - yyv4609 := &yyv4607[yyj4607] - yyv4609.CodecDecodeSelf(d) + yyv4608 := &yyv4606[yyj4606] + yyv4608.CodecDecodeSelf(d) } } } } else { - yyj4607 := 0 - for ; !r.CheckBreak(); yyj4607++ { + yyj4606 := 0 + for ; !r.CheckBreak(); yyj4606++ { - if yyj4607 >= len(yyv4607) { - yyv4607 = append(yyv4607, Event{}) // var yyz4607 Event - yyc4607 = true + if yyj4606 >= len(yyv4606) { + yyv4606 = append(yyv4606, Namespace{}) // var yyz4606 Namespace + yyc4606 = true } - yyh4607.ElemContainerState(yyj4607) - if yyj4607 < len(yyv4607) { + yyh4606.ElemContainerState(yyj4606) + if yyj4606 < len(yyv4606) { if r.TryDecodeAsNil() { - yyv4607[yyj4607] = Event{} + yyv4606[yyj4606] = Namespace{} } else { - yyv4610 := &yyv4607[yyj4607] - yyv4610.CodecDecodeSelf(d) + yyv4609 := &yyv4606[yyj4606] + yyv4609.CodecDecodeSelf(d) } } else { @@ -59238,147 +59170,115 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4607 < len(yyv4607) { - yyv4607 = yyv4607[:yyj4607] - yyc4607 = true - } else if yyj4607 == 0 && yyv4607 == nil { - yyv4607 = []Event{} - yyc4607 = true + if yyj4606 < len(yyv4606) { + yyv4606 = yyv4606[:yyj4606] + yyc4606 = true + } else if yyj4606 == 0 && yyv4606 == nil { + yyv4606 = []Namespace{} + yyc4606 = true } } - yyh4607.End() - if yyc4607 { - *v = yyv4607 + yyh4606.End() + if yyc4606 { + *v = yyv4606 } } -func (x codecSelfer1234) encSliceruntime_RawExtension(v []pkg5_runtime.RawExtension, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4611 := range v { + for _, yyv4610 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4612 := &yyv4611 - yym4613 := z.EncBinary() - _ = yym4613 - if false { - } else if z.HasExtensions() && z.EncExt(yy4612) { - } else if !yym4613 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4612) - } else { - z.EncFallback(yy4612) - } + yy4611 := &yyv4610 + yy4611.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExtension, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4614 := *v - yyh4614, yyl4614 := z.DecSliceHelperStart() - var yyc4614 bool - if yyl4614 == 0 { - if yyv4614 == nil { - yyv4614 = []pkg5_runtime.RawExtension{} - yyc4614 = true - } else if len(yyv4614) != 0 { - yyv4614 = yyv4614[:0] - yyc4614 = true + yyv4612 := *v + yyh4612, yyl4612 := z.DecSliceHelperStart() + var yyc4612 bool + if yyl4612 == 0 { + if yyv4612 == nil { + yyv4612 = []Event{} + yyc4612 = true + } else if len(yyv4612) != 0 { + yyv4612 = yyv4612[:0] + yyc4612 = true } - } else if yyl4614 > 0 { - var yyrr4614, yyrl4614 int - var yyrt4614 bool - if yyl4614 > cap(yyv4614) { + } else if yyl4612 > 0 { + var yyrr4612, yyrl4612 int + var yyrt4612 bool + if yyl4612 > cap(yyv4612) { - yyrg4614 := len(yyv4614) > 0 - yyv24614 := yyv4614 - yyrl4614, yyrt4614 = z.DecInferLen(yyl4614, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4614 { - if yyrl4614 <= cap(yyv4614) { - yyv4614 = yyv4614[:yyrl4614] + yyrg4612 := len(yyv4612) > 0 + yyv24612 := yyv4612 + yyrl4612, yyrt4612 = z.DecInferLen(yyl4612, z.DecBasicHandle().MaxInitLen, 488) + if yyrt4612 { + if yyrl4612 <= cap(yyv4612) { + yyv4612 = yyv4612[:yyrl4612] } else { - yyv4614 = make([]pkg5_runtime.RawExtension, yyrl4614) + yyv4612 = make([]Event, yyrl4612) } } else { - yyv4614 = make([]pkg5_runtime.RawExtension, yyrl4614) + yyv4612 = make([]Event, yyrl4612) } - yyc4614 = true - yyrr4614 = len(yyv4614) - if yyrg4614 { - copy(yyv4614, yyv24614) + yyc4612 = true + yyrr4612 = len(yyv4612) + if yyrg4612 { + copy(yyv4612, yyv24612) } - } else if yyl4614 != len(yyv4614) { - yyv4614 = yyv4614[:yyl4614] - yyc4614 = true + } else if yyl4612 != len(yyv4612) { + yyv4612 = yyv4612[:yyl4612] + yyc4612 = true } - yyj4614 := 0 - for ; yyj4614 < yyrr4614; yyj4614++ { - yyh4614.ElemContainerState(yyj4614) + yyj4612 := 0 + for ; yyj4612 < yyrr4612; yyj4612++ { + yyh4612.ElemContainerState(yyj4612) if r.TryDecodeAsNil() { - yyv4614[yyj4614] = pkg5_runtime.RawExtension{} + yyv4612[yyj4612] = Event{} } else { - yyv4615 := &yyv4614[yyj4614] - yym4616 := z.DecBinary() - _ = yym4616 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4615) { - } else if !yym4616 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4615) - } else { - z.DecFallback(yyv4615, false) - } + yyv4613 := &yyv4612[yyj4612] + yyv4613.CodecDecodeSelf(d) } } - if yyrt4614 { - for ; yyj4614 < yyl4614; yyj4614++ { - yyv4614 = append(yyv4614, pkg5_runtime.RawExtension{}) - yyh4614.ElemContainerState(yyj4614) + if yyrt4612 { + for ; yyj4612 < yyl4612; yyj4612++ { + yyv4612 = append(yyv4612, Event{}) + yyh4612.ElemContainerState(yyj4612) if r.TryDecodeAsNil() { - yyv4614[yyj4614] = pkg5_runtime.RawExtension{} + yyv4612[yyj4612] = Event{} } else { - yyv4617 := &yyv4614[yyj4614] - yym4618 := z.DecBinary() - _ = yym4618 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4617) { - } else if !yym4618 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4617) - } else { - z.DecFallback(yyv4617, false) - } + yyv4614 := &yyv4612[yyj4612] + yyv4614.CodecDecodeSelf(d) } } } } else { - yyj4614 := 0 - for ; !r.CheckBreak(); yyj4614++ { + yyj4612 := 0 + for ; !r.CheckBreak(); yyj4612++ { - if yyj4614 >= len(yyv4614) { - yyv4614 = append(yyv4614, pkg5_runtime.RawExtension{}) // var yyz4614 pkg5_runtime.RawExtension - yyc4614 = true + if yyj4612 >= len(yyv4612) { + yyv4612 = append(yyv4612, Event{}) // var yyz4612 Event + yyc4612 = true } - yyh4614.ElemContainerState(yyj4614) - if yyj4614 < len(yyv4614) { + yyh4612.ElemContainerState(yyj4612) + if yyj4612 < len(yyv4612) { if r.TryDecodeAsNil() { - yyv4614[yyj4614] = pkg5_runtime.RawExtension{} + yyv4612[yyj4612] = Event{} } else { - yyv4619 := &yyv4614[yyj4614] - yym4620 := z.DecBinary() - _ = yym4620 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4619) { - } else if !yym4620 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4619) - } else { - z.DecFallback(yyv4619, false) - } + yyv4615 := &yyv4612[yyj4612] + yyv4615.CodecDecodeSelf(d) } } else { @@ -59386,115 +59286,147 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten } } - if yyj4614 < len(yyv4614) { - yyv4614 = yyv4614[:yyj4614] - yyc4614 = true - } else if yyj4614 == 0 && yyv4614 == nil { - yyv4614 = []pkg5_runtime.RawExtension{} - yyc4614 = true + if yyj4612 < len(yyv4612) { + yyv4612 = yyv4612[:yyj4612] + yyc4612 = true + } else if yyj4612 == 0 && yyv4612 == nil { + yyv4612 = []Event{} + yyc4612 = true } } - yyh4614.End() - if yyc4614 { - *v = yyv4614 + yyh4612.End() + if yyc4612 { + *v = yyv4612 } } -func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceruntime_RawExtension(v []pkg5_runtime.RawExtension, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4621 := range v { + for _, yyv4616 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4622 := &yyv4621 - yy4622.CodecEncodeSelf(e) + yy4617 := &yyv4616 + yym4618 := z.EncBinary() + _ = yym4618 + if false { + } else if z.HasExtensions() && z.EncExt(yy4617) { + } else if !yym4618 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4617) + } else { + z.EncFallback(yy4617) + } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExtension, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4623 := *v - yyh4623, yyl4623 := z.DecSliceHelperStart() - var yyc4623 bool - if yyl4623 == 0 { - if yyv4623 == nil { - yyv4623 = []LimitRangeItem{} - yyc4623 = true - } else if len(yyv4623) != 0 { - yyv4623 = yyv4623[:0] - yyc4623 = true + yyv4619 := *v + yyh4619, yyl4619 := z.DecSliceHelperStart() + var yyc4619 bool + if yyl4619 == 0 { + if yyv4619 == nil { + yyv4619 = []pkg5_runtime.RawExtension{} + yyc4619 = true + } else if len(yyv4619) != 0 { + yyv4619 = yyv4619[:0] + yyc4619 = true } - } else if yyl4623 > 0 { - var yyrr4623, yyrl4623 int - var yyrt4623 bool - if yyl4623 > cap(yyv4623) { + } else if yyl4619 > 0 { + var yyrr4619, yyrl4619 int + var yyrt4619 bool + if yyl4619 > cap(yyv4619) { - yyrg4623 := len(yyv4623) > 0 - yyv24623 := yyv4623 - yyrl4623, yyrt4623 = z.DecInferLen(yyl4623, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4623 { - if yyrl4623 <= cap(yyv4623) { - yyv4623 = yyv4623[:yyrl4623] + yyrg4619 := len(yyv4619) > 0 + yyv24619 := yyv4619 + yyrl4619, yyrt4619 = z.DecInferLen(yyl4619, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4619 { + if yyrl4619 <= cap(yyv4619) { + yyv4619 = yyv4619[:yyrl4619] } else { - yyv4623 = make([]LimitRangeItem, yyrl4623) + yyv4619 = make([]pkg5_runtime.RawExtension, yyrl4619) } } else { - yyv4623 = make([]LimitRangeItem, yyrl4623) + yyv4619 = make([]pkg5_runtime.RawExtension, yyrl4619) } - yyc4623 = true - yyrr4623 = len(yyv4623) - if yyrg4623 { - copy(yyv4623, yyv24623) + yyc4619 = true + yyrr4619 = len(yyv4619) + if yyrg4619 { + copy(yyv4619, yyv24619) } - } else if yyl4623 != len(yyv4623) { - yyv4623 = yyv4623[:yyl4623] - yyc4623 = true + } else if yyl4619 != len(yyv4619) { + yyv4619 = yyv4619[:yyl4619] + yyc4619 = true } - yyj4623 := 0 - for ; yyj4623 < yyrr4623; yyj4623++ { - yyh4623.ElemContainerState(yyj4623) + yyj4619 := 0 + for ; yyj4619 < yyrr4619; yyj4619++ { + yyh4619.ElemContainerState(yyj4619) if r.TryDecodeAsNil() { - yyv4623[yyj4623] = LimitRangeItem{} + yyv4619[yyj4619] = pkg5_runtime.RawExtension{} } else { - yyv4624 := &yyv4623[yyj4623] - yyv4624.CodecDecodeSelf(d) + yyv4620 := &yyv4619[yyj4619] + yym4621 := z.DecBinary() + _ = yym4621 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4620) { + } else if !yym4621 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4620) + } else { + z.DecFallback(yyv4620, false) + } } } - if yyrt4623 { - for ; yyj4623 < yyl4623; yyj4623++ { - yyv4623 = append(yyv4623, LimitRangeItem{}) - yyh4623.ElemContainerState(yyj4623) + if yyrt4619 { + for ; yyj4619 < yyl4619; yyj4619++ { + yyv4619 = append(yyv4619, pkg5_runtime.RawExtension{}) + yyh4619.ElemContainerState(yyj4619) if r.TryDecodeAsNil() { - yyv4623[yyj4623] = LimitRangeItem{} + yyv4619[yyj4619] = pkg5_runtime.RawExtension{} } else { - yyv4625 := &yyv4623[yyj4623] - yyv4625.CodecDecodeSelf(d) + yyv4622 := &yyv4619[yyj4619] + yym4623 := z.DecBinary() + _ = yym4623 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4622) { + } else if !yym4623 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4622) + } else { + z.DecFallback(yyv4622, false) + } } } } } else { - yyj4623 := 0 - for ; !r.CheckBreak(); yyj4623++ { + yyj4619 := 0 + for ; !r.CheckBreak(); yyj4619++ { - if yyj4623 >= len(yyv4623) { - yyv4623 = append(yyv4623, LimitRangeItem{}) // var yyz4623 LimitRangeItem - yyc4623 = true + if yyj4619 >= len(yyv4619) { + yyv4619 = append(yyv4619, pkg5_runtime.RawExtension{}) // var yyz4619 pkg5_runtime.RawExtension + yyc4619 = true } - yyh4623.ElemContainerState(yyj4623) - if yyj4623 < len(yyv4623) { + yyh4619.ElemContainerState(yyj4619) + if yyj4619 < len(yyv4619) { if r.TryDecodeAsNil() { - yyv4623[yyj4623] = LimitRangeItem{} + yyv4619[yyj4619] = pkg5_runtime.RawExtension{} } else { - yyv4626 := &yyv4623[yyj4623] - yyv4626.CodecDecodeSelf(d) + yyv4624 := &yyv4619[yyj4619] + yym4625 := z.DecBinary() + _ = yym4625 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4624) { + } else if !yym4625 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4624) + } else { + z.DecFallback(yyv4624, false) + } } } else { @@ -59502,115 +59434,115 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4623 < len(yyv4623) { - yyv4623 = yyv4623[:yyj4623] - yyc4623 = true - } else if yyj4623 == 0 && yyv4623 == nil { - yyv4623 = []LimitRangeItem{} - yyc4623 = true + if yyj4619 < len(yyv4619) { + yyv4619 = yyv4619[:yyj4619] + yyc4619 = true + } else if yyj4619 == 0 && yyv4619 == nil { + yyv4619 = []pkg5_runtime.RawExtension{} + yyc4619 = true } } - yyh4623.End() - if yyc4623 { - *v = yyv4623 + yyh4619.End() + if yyc4619 { + *v = yyv4619 } } -func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4627 := range v { + for _, yyv4626 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4628 := &yyv4627 - yy4628.CodecEncodeSelf(e) + yy4627 := &yyv4626 + yy4627.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4629 := *v - yyh4629, yyl4629 := z.DecSliceHelperStart() - var yyc4629 bool - if yyl4629 == 0 { - if yyv4629 == nil { - yyv4629 = []LimitRange{} - yyc4629 = true - } else if len(yyv4629) != 0 { - yyv4629 = yyv4629[:0] - yyc4629 = true + yyv4628 := *v + yyh4628, yyl4628 := z.DecSliceHelperStart() + var yyc4628 bool + if yyl4628 == 0 { + if yyv4628 == nil { + yyv4628 = []LimitRangeItem{} + yyc4628 = true + } else if len(yyv4628) != 0 { + yyv4628 = yyv4628[:0] + yyc4628 = true } - } else if yyl4629 > 0 { - var yyrr4629, yyrl4629 int - var yyrt4629 bool - if yyl4629 > cap(yyv4629) { + } else if yyl4628 > 0 { + var yyrr4628, yyrl4628 int + var yyrt4628 bool + if yyl4628 > cap(yyv4628) { - yyrg4629 := len(yyv4629) > 0 - yyv24629 := yyv4629 - yyrl4629, yyrt4629 = z.DecInferLen(yyl4629, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4629 { - if yyrl4629 <= cap(yyv4629) { - yyv4629 = yyv4629[:yyrl4629] + yyrg4628 := len(yyv4628) > 0 + yyv24628 := yyv4628 + yyrl4628, yyrt4628 = z.DecInferLen(yyl4628, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4628 { + if yyrl4628 <= cap(yyv4628) { + yyv4628 = yyv4628[:yyrl4628] } else { - yyv4629 = make([]LimitRange, yyrl4629) + yyv4628 = make([]LimitRangeItem, yyrl4628) } } else { - yyv4629 = make([]LimitRange, yyrl4629) + yyv4628 = make([]LimitRangeItem, yyrl4628) } - yyc4629 = true - yyrr4629 = len(yyv4629) - if yyrg4629 { - copy(yyv4629, yyv24629) + yyc4628 = true + yyrr4628 = len(yyv4628) + if yyrg4628 { + copy(yyv4628, yyv24628) } - } else if yyl4629 != len(yyv4629) { - yyv4629 = yyv4629[:yyl4629] - yyc4629 = true + } else if yyl4628 != len(yyv4628) { + yyv4628 = yyv4628[:yyl4628] + yyc4628 = true } - yyj4629 := 0 - for ; yyj4629 < yyrr4629; yyj4629++ { - yyh4629.ElemContainerState(yyj4629) + yyj4628 := 0 + for ; yyj4628 < yyrr4628; yyj4628++ { + yyh4628.ElemContainerState(yyj4628) if r.TryDecodeAsNil() { - yyv4629[yyj4629] = LimitRange{} + yyv4628[yyj4628] = LimitRangeItem{} } else { - yyv4630 := &yyv4629[yyj4629] - yyv4630.CodecDecodeSelf(d) + yyv4629 := &yyv4628[yyj4628] + yyv4629.CodecDecodeSelf(d) } } - if yyrt4629 { - for ; yyj4629 < yyl4629; yyj4629++ { - yyv4629 = append(yyv4629, LimitRange{}) - yyh4629.ElemContainerState(yyj4629) + if yyrt4628 { + for ; yyj4628 < yyl4628; yyj4628++ { + yyv4628 = append(yyv4628, LimitRangeItem{}) + yyh4628.ElemContainerState(yyj4628) if r.TryDecodeAsNil() { - yyv4629[yyj4629] = LimitRange{} + yyv4628[yyj4628] = LimitRangeItem{} } else { - yyv4631 := &yyv4629[yyj4629] - yyv4631.CodecDecodeSelf(d) + yyv4630 := &yyv4628[yyj4628] + yyv4630.CodecDecodeSelf(d) } } } } else { - yyj4629 := 0 - for ; !r.CheckBreak(); yyj4629++ { + yyj4628 := 0 + for ; !r.CheckBreak(); yyj4628++ { - if yyj4629 >= len(yyv4629) { - yyv4629 = append(yyv4629, LimitRange{}) // var yyz4629 LimitRange - yyc4629 = true + if yyj4628 >= len(yyv4628) { + yyv4628 = append(yyv4628, LimitRangeItem{}) // var yyz4628 LimitRangeItem + yyc4628 = true } - yyh4629.ElemContainerState(yyj4629) - if yyj4629 < len(yyv4629) { + yyh4628.ElemContainerState(yyj4628) + if yyj4628 < len(yyv4628) { if r.TryDecodeAsNil() { - yyv4629[yyj4629] = LimitRange{} + yyv4628[yyj4628] = LimitRangeItem{} } else { - yyv4632 := &yyv4629[yyj4629] - yyv4632.CodecDecodeSelf(d) + yyv4631 := &yyv4628[yyj4628] + yyv4631.CodecDecodeSelf(d) } } else { @@ -59618,33 +59550,34 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4629 < len(yyv4629) { - yyv4629 = yyv4629[:yyj4629] - yyc4629 = true - } else if yyj4629 == 0 && yyv4629 == nil { - yyv4629 = []LimitRange{} - yyc4629 = true + if yyj4628 < len(yyv4628) { + yyv4628 = yyv4628[:yyj4628] + yyc4628 = true + } else if yyj4628 == 0 && yyv4628 == nil { + yyv4628 = []LimitRangeItem{} + yyc4628 = true } } - yyh4629.End() - if yyc4629 { - *v = yyv4629 + yyh4628.End() + if yyc4628 { + *v = yyv4628 } } -func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4633 := range v { + for _, yyv4632 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4633.CodecEncodeSelf(e) + yy4633 := &yyv4632 + yy4633.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -59654,7 +59587,7 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * var yyc4634 bool if yyl4634 == 0 { if yyv4634 == nil { - yyv4634 = []ResourceQuotaScope{} + yyv4634 = []LimitRange{} yyc4634 = true } else if len(yyv4634) != 0 { yyv4634 = yyv4634[:0] @@ -59665,18 +59598,23 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * var yyrt4634 bool if yyl4634 > cap(yyv4634) { - yyrl4634, yyrt4634 = z.DecInferLen(yyl4634, z.DecBasicHandle().MaxInitLen, 16) + yyrg4634 := len(yyv4634) > 0 + yyv24634 := yyv4634 + yyrl4634, yyrt4634 = z.DecInferLen(yyl4634, z.DecBasicHandle().MaxInitLen, 264) if yyrt4634 { if yyrl4634 <= cap(yyv4634) { yyv4634 = yyv4634[:yyrl4634] } else { - yyv4634 = make([]ResourceQuotaScope, yyrl4634) + yyv4634 = make([]LimitRange, yyrl4634) } } else { - yyv4634 = make([]ResourceQuotaScope, yyrl4634) + yyv4634 = make([]LimitRange, yyrl4634) } yyc4634 = true yyrr4634 = len(yyv4634) + if yyrg4634 { + copy(yyv4634, yyv24634) + } } else if yyl4634 != len(yyv4634) { yyv4634 = yyv4634[:yyl4634] yyc4634 = true @@ -59685,20 +59623,22 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * for ; yyj4634 < yyrr4634; yyj4634++ { yyh4634.ElemContainerState(yyj4634) if r.TryDecodeAsNil() { - yyv4634[yyj4634] = "" + yyv4634[yyj4634] = LimitRange{} } else { - yyv4634[yyj4634] = ResourceQuotaScope(r.DecodeString()) + yyv4635 := &yyv4634[yyj4634] + yyv4635.CodecDecodeSelf(d) } } if yyrt4634 { for ; yyj4634 < yyl4634; yyj4634++ { - yyv4634 = append(yyv4634, "") + yyv4634 = append(yyv4634, LimitRange{}) yyh4634.ElemContainerState(yyj4634) if r.TryDecodeAsNil() { - yyv4634[yyj4634] = "" + yyv4634[yyj4634] = LimitRange{} } else { - yyv4634[yyj4634] = ResourceQuotaScope(r.DecodeString()) + yyv4636 := &yyv4634[yyj4634] + yyv4636.CodecDecodeSelf(d) } } @@ -59709,15 +59649,16 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * for ; !r.CheckBreak(); yyj4634++ { if yyj4634 >= len(yyv4634) { - yyv4634 = append(yyv4634, "") // var yyz4634 ResourceQuotaScope + yyv4634 = append(yyv4634, LimitRange{}) // var yyz4634 LimitRange yyc4634 = true } yyh4634.ElemContainerState(yyj4634) if yyj4634 < len(yyv4634) { if r.TryDecodeAsNil() { - yyv4634[yyj4634] = "" + yyv4634[yyj4634] = LimitRange{} } else { - yyv4634[yyj4634] = ResourceQuotaScope(r.DecodeString()) + yyv4637 := &yyv4634[yyj4634] + yyv4637.CodecDecodeSelf(d) } } else { @@ -59729,7 +59670,7 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * yyv4634 = yyv4634[:yyj4634] yyc4634 = true } else if yyj4634 == 0 && yyv4634 == nil { - yyv4634 = []ResourceQuotaScope{} + yyv4634 = []LimitRange{} yyc4634 = true } } @@ -59739,15 +59680,122 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * } } -func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) for _, yyv4638 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4639 := &yyv4638 - yy4639.CodecEncodeSelf(e) + yyv4638.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4639 := *v + yyh4639, yyl4639 := z.DecSliceHelperStart() + var yyc4639 bool + if yyl4639 == 0 { + if yyv4639 == nil { + yyv4639 = []ResourceQuotaScope{} + yyc4639 = true + } else if len(yyv4639) != 0 { + yyv4639 = yyv4639[:0] + yyc4639 = true + } + } else if yyl4639 > 0 { + var yyrr4639, yyrl4639 int + var yyrt4639 bool + if yyl4639 > cap(yyv4639) { + + yyrl4639, yyrt4639 = z.DecInferLen(yyl4639, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4639 { + if yyrl4639 <= cap(yyv4639) { + yyv4639 = yyv4639[:yyrl4639] + } else { + yyv4639 = make([]ResourceQuotaScope, yyrl4639) + } + } else { + yyv4639 = make([]ResourceQuotaScope, yyrl4639) + } + yyc4639 = true + yyrr4639 = len(yyv4639) + } else if yyl4639 != len(yyv4639) { + yyv4639 = yyv4639[:yyl4639] + yyc4639 = true + } + yyj4639 := 0 + for ; yyj4639 < yyrr4639; yyj4639++ { + yyh4639.ElemContainerState(yyj4639) + if r.TryDecodeAsNil() { + yyv4639[yyj4639] = "" + } else { + yyv4639[yyj4639] = ResourceQuotaScope(r.DecodeString()) + } + + } + if yyrt4639 { + for ; yyj4639 < yyl4639; yyj4639++ { + yyv4639 = append(yyv4639, "") + yyh4639.ElemContainerState(yyj4639) + if r.TryDecodeAsNil() { + yyv4639[yyj4639] = "" + } else { + yyv4639[yyj4639] = ResourceQuotaScope(r.DecodeString()) + } + + } + } + + } else { + yyj4639 := 0 + for ; !r.CheckBreak(); yyj4639++ { + + if yyj4639 >= len(yyv4639) { + yyv4639 = append(yyv4639, "") // var yyz4639 ResourceQuotaScope + yyc4639 = true + } + yyh4639.ElemContainerState(yyj4639) + if yyj4639 < len(yyv4639) { + if r.TryDecodeAsNil() { + yyv4639[yyj4639] = "" + } else { + yyv4639[yyj4639] = ResourceQuotaScope(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4639 < len(yyv4639) { + yyv4639 = yyv4639[:yyj4639] + yyc4639 = true + } else if yyj4639 == 0 && yyv4639 == nil { + yyv4639 = []ResourceQuotaScope{} + yyc4639 = true + } + } + yyh4639.End() + if yyc4639 { + *v = yyv4639 + } +} + +func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4643 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4644 := &yyv4643 + yy4644.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59757,83 +59805,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4640 := *v - yyh4640, yyl4640 := z.DecSliceHelperStart() - var yyc4640 bool - if yyl4640 == 0 { - if yyv4640 == nil { - yyv4640 = []ResourceQuota{} - yyc4640 = true - } else if len(yyv4640) != 0 { - yyv4640 = yyv4640[:0] - yyc4640 = true + yyv4645 := *v + yyh4645, yyl4645 := z.DecSliceHelperStart() + var yyc4645 bool + if yyl4645 == 0 { + if yyv4645 == nil { + yyv4645 = []ResourceQuota{} + yyc4645 = true + } else if len(yyv4645) != 0 { + yyv4645 = yyv4645[:0] + yyc4645 = true } - } else if yyl4640 > 0 { - var yyrr4640, yyrl4640 int - var yyrt4640 bool - if yyl4640 > cap(yyv4640) { + } else if yyl4645 > 0 { + var yyrr4645, yyrl4645 int + var yyrt4645 bool + if yyl4645 > cap(yyv4645) { - yyrg4640 := len(yyv4640) > 0 - yyv24640 := yyv4640 - yyrl4640, yyrt4640 = z.DecInferLen(yyl4640, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4640 { - if yyrl4640 <= cap(yyv4640) { - yyv4640 = yyv4640[:yyrl4640] + yyrg4645 := len(yyv4645) > 0 + yyv24645 := yyv4645 + yyrl4645, yyrt4645 = z.DecInferLen(yyl4645, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4645 { + if yyrl4645 <= cap(yyv4645) { + yyv4645 = yyv4645[:yyrl4645] } else { - yyv4640 = make([]ResourceQuota, yyrl4640) + yyv4645 = make([]ResourceQuota, yyrl4645) } } else { - yyv4640 = make([]ResourceQuota, yyrl4640) + yyv4645 = make([]ResourceQuota, yyrl4645) } - yyc4640 = true - yyrr4640 = len(yyv4640) - if yyrg4640 { - copy(yyv4640, yyv24640) + yyc4645 = true + yyrr4645 = len(yyv4645) + if yyrg4645 { + copy(yyv4645, yyv24645) } - } else if yyl4640 != len(yyv4640) { - yyv4640 = yyv4640[:yyl4640] - yyc4640 = true + } else if yyl4645 != len(yyv4645) { + yyv4645 = yyv4645[:yyl4645] + yyc4645 = true } - yyj4640 := 0 - for ; yyj4640 < yyrr4640; yyj4640++ { - yyh4640.ElemContainerState(yyj4640) + yyj4645 := 0 + for ; yyj4645 < yyrr4645; yyj4645++ { + yyh4645.ElemContainerState(yyj4645) if r.TryDecodeAsNil() { - yyv4640[yyj4640] = ResourceQuota{} + yyv4645[yyj4645] = ResourceQuota{} } else { - yyv4641 := &yyv4640[yyj4640] - yyv4641.CodecDecodeSelf(d) + yyv4646 := &yyv4645[yyj4645] + yyv4646.CodecDecodeSelf(d) } } - if yyrt4640 { - for ; yyj4640 < yyl4640; yyj4640++ { - yyv4640 = append(yyv4640, ResourceQuota{}) - yyh4640.ElemContainerState(yyj4640) + if yyrt4645 { + for ; yyj4645 < yyl4645; yyj4645++ { + yyv4645 = append(yyv4645, ResourceQuota{}) + yyh4645.ElemContainerState(yyj4645) if r.TryDecodeAsNil() { - yyv4640[yyj4640] = ResourceQuota{} + yyv4645[yyj4645] = ResourceQuota{} } else { - yyv4642 := &yyv4640[yyj4640] - yyv4642.CodecDecodeSelf(d) + yyv4647 := &yyv4645[yyj4645] + yyv4647.CodecDecodeSelf(d) } } } } else { - yyj4640 := 0 - for ; !r.CheckBreak(); yyj4640++ { + yyj4645 := 0 + for ; !r.CheckBreak(); yyj4645++ { - if yyj4640 >= len(yyv4640) { - yyv4640 = append(yyv4640, ResourceQuota{}) // var yyz4640 ResourceQuota - yyc4640 = true + if yyj4645 >= len(yyv4645) { + yyv4645 = append(yyv4645, ResourceQuota{}) // var yyz4645 ResourceQuota + yyc4645 = true } - yyh4640.ElemContainerState(yyj4640) - if yyj4640 < len(yyv4640) { + yyh4645.ElemContainerState(yyj4645) + if yyj4645 < len(yyv4645) { if r.TryDecodeAsNil() { - yyv4640[yyj4640] = ResourceQuota{} + yyv4645[yyj4645] = ResourceQuota{} } else { - yyv4643 := &yyv4640[yyj4640] - yyv4643.CodecDecodeSelf(d) + yyv4648 := &yyv4645[yyj4645] + yyv4648.CodecDecodeSelf(d) } } else { @@ -59841,17 +59889,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4640 < len(yyv4640) { - yyv4640 = yyv4640[:yyj4640] - yyc4640 = true - } else if yyj4640 == 0 && yyv4640 == nil { - yyv4640 = []ResourceQuota{} - yyc4640 = true + if yyj4645 < len(yyv4645) { + yyv4645 = yyv4645[:yyj4645] + yyc4645 = true + } else if yyj4645 == 0 && yyv4645 == nil { + yyv4645 = []ResourceQuota{} + yyc4645 = true } } - yyh4640.End() - if yyc4640 { - *v = yyv4640 + yyh4645.End() + if yyc4645 { + *v = yyv4645 } } @@ -59860,23 +59908,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4644, yyv4644 := range v { + for yyk4649, yyv4649 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4645 := z.EncBinary() - _ = yym4645 + yym4650 := z.EncBinary() + _ = yym4650 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4644)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4649)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4644 == nil { + if yyv4649 == nil { r.EncodeNil() } else { - yym4646 := z.EncBinary() - _ = yym4646 + yym4651 := z.EncBinary() + _ = yym4651 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4644)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4649)) } } } @@ -59888,80 +59936,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4647 := *v - yyl4647 := r.ReadMapStart() - yybh4647 := z.DecBasicHandle() - if yyv4647 == nil { - yyrl4647, _ := z.DecInferLen(yyl4647, yybh4647.MaxInitLen, 40) - yyv4647 = make(map[string][]uint8, yyrl4647) - *v = yyv4647 + yyv4652 := *v + yyl4652 := r.ReadMapStart() + yybh4652 := z.DecBasicHandle() + if yyv4652 == nil { + yyrl4652, _ := z.DecInferLen(yyl4652, yybh4652.MaxInitLen, 40) + yyv4652 = make(map[string][]uint8, yyrl4652) + *v = yyv4652 } - var yymk4647 string - var yymv4647 []uint8 - var yymg4647 bool - if yybh4647.MapValueReset { - yymg4647 = true + var yymk4652 string + var yymv4652 []uint8 + var yymg4652 bool + if yybh4652.MapValueReset { + yymg4652 = true } - if yyl4647 > 0 { - for yyj4647 := 0; yyj4647 < yyl4647; yyj4647++ { + if yyl4652 > 0 { + for yyj4652 := 0; yyj4652 < yyl4652; yyj4652++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4647 = "" + yymk4652 = "" } else { - yymk4647 = string(r.DecodeString()) + yymk4652 = string(r.DecodeString()) } - if yymg4647 { - yymv4647 = yyv4647[yymk4647] + if yymg4652 { + yymv4652 = yyv4652[yymk4652] } else { - yymv4647 = nil + yymv4652 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4647 = nil + yymv4652 = nil } else { - yyv4649 := &yymv4647 - yym4650 := z.DecBinary() - _ = yym4650 + yyv4654 := &yymv4652 + yym4655 := z.DecBinary() + _ = yym4655 if false { } else { - *yyv4649 = r.DecodeBytes(*(*[]byte)(yyv4649), false, false) + *yyv4654 = r.DecodeBytes(*(*[]byte)(yyv4654), false, false) } } - if yyv4647 != nil { - yyv4647[yymk4647] = yymv4647 + if yyv4652 != nil { + yyv4652[yymk4652] = yymv4652 } } - } else if yyl4647 < 0 { - for yyj4647 := 0; !r.CheckBreak(); yyj4647++ { + } else if yyl4652 < 0 { + for yyj4652 := 0; !r.CheckBreak(); yyj4652++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4647 = "" + yymk4652 = "" } else { - yymk4647 = string(r.DecodeString()) + yymk4652 = string(r.DecodeString()) } - if yymg4647 { - yymv4647 = yyv4647[yymk4647] + if yymg4652 { + yymv4652 = yyv4652[yymk4652] } else { - yymv4647 = nil + yymv4652 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4647 = nil + yymv4652 = nil } else { - yyv4652 := &yymv4647 - yym4653 := z.DecBinary() - _ = yym4653 + yyv4657 := &yymv4652 + yym4658 := z.DecBinary() + _ = yym4658 if false { } else { - *yyv4652 = r.DecodeBytes(*(*[]byte)(yyv4652), false, false) + *yyv4657 = r.DecodeBytes(*(*[]byte)(yyv4657), false, false) } } - if yyv4647 != nil { - yyv4647[yymk4647] = yymv4647 + if yyv4652 != nil { + yyv4652[yymk4652] = yymv4652 } } } // else len==0: TODO: Should we clear map entries? @@ -59973,10 +60021,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4654 := range v { + for _, yyv4659 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4655 := &yyv4654 - yy4655.CodecEncodeSelf(e) + yy4660 := &yyv4659 + yy4660.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59986,83 +60034,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4656 := *v - yyh4656, yyl4656 := z.DecSliceHelperStart() - var yyc4656 bool - if yyl4656 == 0 { - if yyv4656 == nil { - yyv4656 = []Secret{} - yyc4656 = true - } else if len(yyv4656) != 0 { - yyv4656 = yyv4656[:0] - yyc4656 = true + yyv4661 := *v + yyh4661, yyl4661 := z.DecSliceHelperStart() + var yyc4661 bool + if yyl4661 == 0 { + if yyv4661 == nil { + yyv4661 = []Secret{} + yyc4661 = true + } else if len(yyv4661) != 0 { + yyv4661 = yyv4661[:0] + yyc4661 = true } - } else if yyl4656 > 0 { - var yyrr4656, yyrl4656 int - var yyrt4656 bool - if yyl4656 > cap(yyv4656) { + } else if yyl4661 > 0 { + var yyrr4661, yyrl4661 int + var yyrt4661 bool + if yyl4661 > cap(yyv4661) { - yyrg4656 := len(yyv4656) > 0 - yyv24656 := yyv4656 - yyrl4656, yyrt4656 = z.DecInferLen(yyl4656, z.DecBasicHandle().MaxInitLen, 272) - if yyrt4656 { - if yyrl4656 <= cap(yyv4656) { - yyv4656 = yyv4656[:yyrl4656] + yyrg4661 := len(yyv4661) > 0 + yyv24661 := yyv4661 + yyrl4661, yyrt4661 = z.DecInferLen(yyl4661, z.DecBasicHandle().MaxInitLen, 272) + if yyrt4661 { + if yyrl4661 <= cap(yyv4661) { + yyv4661 = yyv4661[:yyrl4661] } else { - yyv4656 = make([]Secret, yyrl4656) + yyv4661 = make([]Secret, yyrl4661) } } else { - yyv4656 = make([]Secret, yyrl4656) + yyv4661 = make([]Secret, yyrl4661) } - yyc4656 = true - yyrr4656 = len(yyv4656) - if yyrg4656 { - copy(yyv4656, yyv24656) + yyc4661 = true + yyrr4661 = len(yyv4661) + if yyrg4661 { + copy(yyv4661, yyv24661) } - } else if yyl4656 != len(yyv4656) { - yyv4656 = yyv4656[:yyl4656] - yyc4656 = true + } else if yyl4661 != len(yyv4661) { + yyv4661 = yyv4661[:yyl4661] + yyc4661 = true } - yyj4656 := 0 - for ; yyj4656 < yyrr4656; yyj4656++ { - yyh4656.ElemContainerState(yyj4656) + yyj4661 := 0 + for ; yyj4661 < yyrr4661; yyj4661++ { + yyh4661.ElemContainerState(yyj4661) if r.TryDecodeAsNil() { - yyv4656[yyj4656] = Secret{} + yyv4661[yyj4661] = Secret{} } else { - yyv4657 := &yyv4656[yyj4656] - yyv4657.CodecDecodeSelf(d) + yyv4662 := &yyv4661[yyj4661] + yyv4662.CodecDecodeSelf(d) } } - if yyrt4656 { - for ; yyj4656 < yyl4656; yyj4656++ { - yyv4656 = append(yyv4656, Secret{}) - yyh4656.ElemContainerState(yyj4656) + if yyrt4661 { + for ; yyj4661 < yyl4661; yyj4661++ { + yyv4661 = append(yyv4661, Secret{}) + yyh4661.ElemContainerState(yyj4661) if r.TryDecodeAsNil() { - yyv4656[yyj4656] = Secret{} + yyv4661[yyj4661] = Secret{} } else { - yyv4658 := &yyv4656[yyj4656] - yyv4658.CodecDecodeSelf(d) + yyv4663 := &yyv4661[yyj4661] + yyv4663.CodecDecodeSelf(d) } } } } else { - yyj4656 := 0 - for ; !r.CheckBreak(); yyj4656++ { + yyj4661 := 0 + for ; !r.CheckBreak(); yyj4661++ { - if yyj4656 >= len(yyv4656) { - yyv4656 = append(yyv4656, Secret{}) // var yyz4656 Secret - yyc4656 = true + if yyj4661 >= len(yyv4661) { + yyv4661 = append(yyv4661, Secret{}) // var yyz4661 Secret + yyc4661 = true } - yyh4656.ElemContainerState(yyj4656) - if yyj4656 < len(yyv4656) { + yyh4661.ElemContainerState(yyj4661) + if yyj4661 < len(yyv4661) { if r.TryDecodeAsNil() { - yyv4656[yyj4656] = Secret{} + yyv4661[yyj4661] = Secret{} } else { - yyv4659 := &yyv4656[yyj4656] - yyv4659.CodecDecodeSelf(d) + yyv4664 := &yyv4661[yyj4661] + yyv4664.CodecDecodeSelf(d) } } else { @@ -60070,17 +60118,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4656 < len(yyv4656) { - yyv4656 = yyv4656[:yyj4656] - yyc4656 = true - } else if yyj4656 == 0 && yyv4656 == nil { - yyv4656 = []Secret{} - yyc4656 = true + if yyj4661 < len(yyv4661) { + yyv4661 = yyv4661[:yyj4661] + yyc4661 = true + } else if yyj4661 == 0 && yyv4661 == nil { + yyv4661 = []Secret{} + yyc4661 = true } } - yyh4656.End() - if yyc4656 { - *v = yyv4656 + yyh4661.End() + if yyc4661 { + *v = yyv4661 } } @@ -60089,10 +60137,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4660 := range v { + for _, yyv4665 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4661 := &yyv4660 - yy4661.CodecEncodeSelf(e) + yy4666 := &yyv4665 + yy4666.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60102,83 +60150,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4662 := *v - yyh4662, yyl4662 := z.DecSliceHelperStart() - var yyc4662 bool - if yyl4662 == 0 { - if yyv4662 == nil { - yyv4662 = []ConfigMap{} - yyc4662 = true - } else if len(yyv4662) != 0 { - yyv4662 = yyv4662[:0] - yyc4662 = true + yyv4667 := *v + yyh4667, yyl4667 := z.DecSliceHelperStart() + var yyc4667 bool + if yyl4667 == 0 { + if yyv4667 == nil { + yyv4667 = []ConfigMap{} + yyc4667 = true + } else if len(yyv4667) != 0 { + yyv4667 = yyv4667[:0] + yyc4667 = true } - } else if yyl4662 > 0 { - var yyrr4662, yyrl4662 int - var yyrt4662 bool - if yyl4662 > cap(yyv4662) { + } else if yyl4667 > 0 { + var yyrr4667, yyrl4667 int + var yyrt4667 bool + if yyl4667 > cap(yyv4667) { - yyrg4662 := len(yyv4662) > 0 - yyv24662 := yyv4662 - yyrl4662, yyrt4662 = z.DecInferLen(yyl4662, z.DecBasicHandle().MaxInitLen, 248) - if yyrt4662 { - if yyrl4662 <= cap(yyv4662) { - yyv4662 = yyv4662[:yyrl4662] + yyrg4667 := len(yyv4667) > 0 + yyv24667 := yyv4667 + yyrl4667, yyrt4667 = z.DecInferLen(yyl4667, z.DecBasicHandle().MaxInitLen, 248) + if yyrt4667 { + if yyrl4667 <= cap(yyv4667) { + yyv4667 = yyv4667[:yyrl4667] } else { - yyv4662 = make([]ConfigMap, yyrl4662) + yyv4667 = make([]ConfigMap, yyrl4667) } } else { - yyv4662 = make([]ConfigMap, yyrl4662) + yyv4667 = make([]ConfigMap, yyrl4667) } - yyc4662 = true - yyrr4662 = len(yyv4662) - if yyrg4662 { - copy(yyv4662, yyv24662) + yyc4667 = true + yyrr4667 = len(yyv4667) + if yyrg4667 { + copy(yyv4667, yyv24667) } - } else if yyl4662 != len(yyv4662) { - yyv4662 = yyv4662[:yyl4662] - yyc4662 = true + } else if yyl4667 != len(yyv4667) { + yyv4667 = yyv4667[:yyl4667] + yyc4667 = true } - yyj4662 := 0 - for ; yyj4662 < yyrr4662; yyj4662++ { - yyh4662.ElemContainerState(yyj4662) + yyj4667 := 0 + for ; yyj4667 < yyrr4667; yyj4667++ { + yyh4667.ElemContainerState(yyj4667) if r.TryDecodeAsNil() { - yyv4662[yyj4662] = ConfigMap{} + yyv4667[yyj4667] = ConfigMap{} } else { - yyv4663 := &yyv4662[yyj4662] - yyv4663.CodecDecodeSelf(d) + yyv4668 := &yyv4667[yyj4667] + yyv4668.CodecDecodeSelf(d) } } - if yyrt4662 { - for ; yyj4662 < yyl4662; yyj4662++ { - yyv4662 = append(yyv4662, ConfigMap{}) - yyh4662.ElemContainerState(yyj4662) + if yyrt4667 { + for ; yyj4667 < yyl4667; yyj4667++ { + yyv4667 = append(yyv4667, ConfigMap{}) + yyh4667.ElemContainerState(yyj4667) if r.TryDecodeAsNil() { - yyv4662[yyj4662] = ConfigMap{} + yyv4667[yyj4667] = ConfigMap{} } else { - yyv4664 := &yyv4662[yyj4662] - yyv4664.CodecDecodeSelf(d) + yyv4669 := &yyv4667[yyj4667] + yyv4669.CodecDecodeSelf(d) } } } } else { - yyj4662 := 0 - for ; !r.CheckBreak(); yyj4662++ { + yyj4667 := 0 + for ; !r.CheckBreak(); yyj4667++ { - if yyj4662 >= len(yyv4662) { - yyv4662 = append(yyv4662, ConfigMap{}) // var yyz4662 ConfigMap - yyc4662 = true + if yyj4667 >= len(yyv4667) { + yyv4667 = append(yyv4667, ConfigMap{}) // var yyz4667 ConfigMap + yyc4667 = true } - yyh4662.ElemContainerState(yyj4662) - if yyj4662 < len(yyv4662) { + yyh4667.ElemContainerState(yyj4667) + if yyj4667 < len(yyv4667) { if r.TryDecodeAsNil() { - yyv4662[yyj4662] = ConfigMap{} + yyv4667[yyj4667] = ConfigMap{} } else { - yyv4665 := &yyv4662[yyj4662] - yyv4665.CodecDecodeSelf(d) + yyv4670 := &yyv4667[yyj4667] + yyv4670.CodecDecodeSelf(d) } } else { @@ -60186,17 +60234,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4662 < len(yyv4662) { - yyv4662 = yyv4662[:yyj4662] - yyc4662 = true - } else if yyj4662 == 0 && yyv4662 == nil { - yyv4662 = []ConfigMap{} - yyc4662 = true + if yyj4667 < len(yyv4667) { + yyv4667 = yyv4667[:yyj4667] + yyc4667 = true + } else if yyj4667 == 0 && yyv4667 == nil { + yyv4667 = []ConfigMap{} + yyc4667 = true } } - yyh4662.End() - if yyc4662 { - *v = yyv4662 + yyh4667.End() + if yyc4667 { + *v = yyv4667 } } @@ -60205,10 +60253,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4666 := range v { + for _, yyv4671 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4667 := &yyv4666 - yy4667.CodecEncodeSelf(e) + yy4672 := &yyv4671 + yy4672.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60218,83 +60266,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4668 := *v - yyh4668, yyl4668 := z.DecSliceHelperStart() - var yyc4668 bool - if yyl4668 == 0 { - if yyv4668 == nil { - yyv4668 = []ComponentCondition{} - yyc4668 = true - } else if len(yyv4668) != 0 { - yyv4668 = yyv4668[:0] - yyc4668 = true + yyv4673 := *v + yyh4673, yyl4673 := z.DecSliceHelperStart() + var yyc4673 bool + if yyl4673 == 0 { + if yyv4673 == nil { + yyv4673 = []ComponentCondition{} + yyc4673 = true + } else if len(yyv4673) != 0 { + yyv4673 = yyv4673[:0] + yyc4673 = true } - } else if yyl4668 > 0 { - var yyrr4668, yyrl4668 int - var yyrt4668 bool - if yyl4668 > cap(yyv4668) { + } else if yyl4673 > 0 { + var yyrr4673, yyrl4673 int + var yyrt4673 bool + if yyl4673 > cap(yyv4673) { - yyrg4668 := len(yyv4668) > 0 - yyv24668 := yyv4668 - yyrl4668, yyrt4668 = z.DecInferLen(yyl4668, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4668 { - if yyrl4668 <= cap(yyv4668) { - yyv4668 = yyv4668[:yyrl4668] + yyrg4673 := len(yyv4673) > 0 + yyv24673 := yyv4673 + yyrl4673, yyrt4673 = z.DecInferLen(yyl4673, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4673 { + if yyrl4673 <= cap(yyv4673) { + yyv4673 = yyv4673[:yyrl4673] } else { - yyv4668 = make([]ComponentCondition, yyrl4668) + yyv4673 = make([]ComponentCondition, yyrl4673) } } else { - yyv4668 = make([]ComponentCondition, yyrl4668) + yyv4673 = make([]ComponentCondition, yyrl4673) } - yyc4668 = true - yyrr4668 = len(yyv4668) - if yyrg4668 { - copy(yyv4668, yyv24668) + yyc4673 = true + yyrr4673 = len(yyv4673) + if yyrg4673 { + copy(yyv4673, yyv24673) } - } else if yyl4668 != len(yyv4668) { - yyv4668 = yyv4668[:yyl4668] - yyc4668 = true + } else if yyl4673 != len(yyv4673) { + yyv4673 = yyv4673[:yyl4673] + yyc4673 = true } - yyj4668 := 0 - for ; yyj4668 < yyrr4668; yyj4668++ { - yyh4668.ElemContainerState(yyj4668) + yyj4673 := 0 + for ; yyj4673 < yyrr4673; yyj4673++ { + yyh4673.ElemContainerState(yyj4673) if r.TryDecodeAsNil() { - yyv4668[yyj4668] = ComponentCondition{} + yyv4673[yyj4673] = ComponentCondition{} } else { - yyv4669 := &yyv4668[yyj4668] - yyv4669.CodecDecodeSelf(d) + yyv4674 := &yyv4673[yyj4673] + yyv4674.CodecDecodeSelf(d) } } - if yyrt4668 { - for ; yyj4668 < yyl4668; yyj4668++ { - yyv4668 = append(yyv4668, ComponentCondition{}) - yyh4668.ElemContainerState(yyj4668) + if yyrt4673 { + for ; yyj4673 < yyl4673; yyj4673++ { + yyv4673 = append(yyv4673, ComponentCondition{}) + yyh4673.ElemContainerState(yyj4673) if r.TryDecodeAsNil() { - yyv4668[yyj4668] = ComponentCondition{} + yyv4673[yyj4673] = ComponentCondition{} } else { - yyv4670 := &yyv4668[yyj4668] - yyv4670.CodecDecodeSelf(d) + yyv4675 := &yyv4673[yyj4673] + yyv4675.CodecDecodeSelf(d) } } } } else { - yyj4668 := 0 - for ; !r.CheckBreak(); yyj4668++ { + yyj4673 := 0 + for ; !r.CheckBreak(); yyj4673++ { - if yyj4668 >= len(yyv4668) { - yyv4668 = append(yyv4668, ComponentCondition{}) // var yyz4668 ComponentCondition - yyc4668 = true + if yyj4673 >= len(yyv4673) { + yyv4673 = append(yyv4673, ComponentCondition{}) // var yyz4673 ComponentCondition + yyc4673 = true } - yyh4668.ElemContainerState(yyj4668) - if yyj4668 < len(yyv4668) { + yyh4673.ElemContainerState(yyj4673) + if yyj4673 < len(yyv4673) { if r.TryDecodeAsNil() { - yyv4668[yyj4668] = ComponentCondition{} + yyv4673[yyj4673] = ComponentCondition{} } else { - yyv4671 := &yyv4668[yyj4668] - yyv4671.CodecDecodeSelf(d) + yyv4676 := &yyv4673[yyj4673] + yyv4676.CodecDecodeSelf(d) } } else { @@ -60302,17 +60350,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4668 < len(yyv4668) { - yyv4668 = yyv4668[:yyj4668] - yyc4668 = true - } else if yyj4668 == 0 && yyv4668 == nil { - yyv4668 = []ComponentCondition{} - yyc4668 = true + if yyj4673 < len(yyv4673) { + yyv4673 = yyv4673[:yyj4673] + yyc4673 = true + } else if yyj4673 == 0 && yyv4673 == nil { + yyv4673 = []ComponentCondition{} + yyc4673 = true } } - yyh4668.End() - if yyc4668 { - *v = yyv4668 + yyh4673.End() + if yyc4673 { + *v = yyv4673 } } @@ -60321,10 +60369,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4672 := range v { + for _, yyv4677 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4673 := &yyv4672 - yy4673.CodecEncodeSelf(e) + yy4678 := &yyv4677 + yy4678.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60334,83 +60382,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4674 := *v - yyh4674, yyl4674 := z.DecSliceHelperStart() - var yyc4674 bool - if yyl4674 == 0 { - if yyv4674 == nil { - yyv4674 = []ComponentStatus{} - yyc4674 = true - } else if len(yyv4674) != 0 { - yyv4674 = yyv4674[:0] - yyc4674 = true + yyv4679 := *v + yyh4679, yyl4679 := z.DecSliceHelperStart() + var yyc4679 bool + if yyl4679 == 0 { + if yyv4679 == nil { + yyv4679 = []ComponentStatus{} + yyc4679 = true + } else if len(yyv4679) != 0 { + yyv4679 = yyv4679[:0] + yyc4679 = true } - } else if yyl4674 > 0 { - var yyrr4674, yyrl4674 int - var yyrt4674 bool - if yyl4674 > cap(yyv4674) { + } else if yyl4679 > 0 { + var yyrr4679, yyrl4679 int + var yyrt4679 bool + if yyl4679 > cap(yyv4679) { - yyrg4674 := len(yyv4674) > 0 - yyv24674 := yyv4674 - yyrl4674, yyrt4674 = z.DecInferLen(yyl4674, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4674 { - if yyrl4674 <= cap(yyv4674) { - yyv4674 = yyv4674[:yyrl4674] + yyrg4679 := len(yyv4679) > 0 + yyv24679 := yyv4679 + yyrl4679, yyrt4679 = z.DecInferLen(yyl4679, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4679 { + if yyrl4679 <= cap(yyv4679) { + yyv4679 = yyv4679[:yyrl4679] } else { - yyv4674 = make([]ComponentStatus, yyrl4674) + yyv4679 = make([]ComponentStatus, yyrl4679) } } else { - yyv4674 = make([]ComponentStatus, yyrl4674) + yyv4679 = make([]ComponentStatus, yyrl4679) } - yyc4674 = true - yyrr4674 = len(yyv4674) - if yyrg4674 { - copy(yyv4674, yyv24674) + yyc4679 = true + yyrr4679 = len(yyv4679) + if yyrg4679 { + copy(yyv4679, yyv24679) } - } else if yyl4674 != len(yyv4674) { - yyv4674 = yyv4674[:yyl4674] - yyc4674 = true + } else if yyl4679 != len(yyv4679) { + yyv4679 = yyv4679[:yyl4679] + yyc4679 = true } - yyj4674 := 0 - for ; yyj4674 < yyrr4674; yyj4674++ { - yyh4674.ElemContainerState(yyj4674) + yyj4679 := 0 + for ; yyj4679 < yyrr4679; yyj4679++ { + yyh4679.ElemContainerState(yyj4679) if r.TryDecodeAsNil() { - yyv4674[yyj4674] = ComponentStatus{} + yyv4679[yyj4679] = ComponentStatus{} } else { - yyv4675 := &yyv4674[yyj4674] - yyv4675.CodecDecodeSelf(d) + yyv4680 := &yyv4679[yyj4679] + yyv4680.CodecDecodeSelf(d) } } - if yyrt4674 { - for ; yyj4674 < yyl4674; yyj4674++ { - yyv4674 = append(yyv4674, ComponentStatus{}) - yyh4674.ElemContainerState(yyj4674) + if yyrt4679 { + for ; yyj4679 < yyl4679; yyj4679++ { + yyv4679 = append(yyv4679, ComponentStatus{}) + yyh4679.ElemContainerState(yyj4679) if r.TryDecodeAsNil() { - yyv4674[yyj4674] = ComponentStatus{} + yyv4679[yyj4679] = ComponentStatus{} } else { - yyv4676 := &yyv4674[yyj4674] - yyv4676.CodecDecodeSelf(d) + yyv4681 := &yyv4679[yyj4679] + yyv4681.CodecDecodeSelf(d) } } } } else { - yyj4674 := 0 - for ; !r.CheckBreak(); yyj4674++ { + yyj4679 := 0 + for ; !r.CheckBreak(); yyj4679++ { - if yyj4674 >= len(yyv4674) { - yyv4674 = append(yyv4674, ComponentStatus{}) // var yyz4674 ComponentStatus - yyc4674 = true + if yyj4679 >= len(yyv4679) { + yyv4679 = append(yyv4679, ComponentStatus{}) // var yyz4679 ComponentStatus + yyc4679 = true } - yyh4674.ElemContainerState(yyj4674) - if yyj4674 < len(yyv4674) { + yyh4679.ElemContainerState(yyj4679) + if yyj4679 < len(yyv4679) { if r.TryDecodeAsNil() { - yyv4674[yyj4674] = ComponentStatus{} + yyv4679[yyj4679] = ComponentStatus{} } else { - yyv4677 := &yyv4674[yyj4674] - yyv4677.CodecDecodeSelf(d) + yyv4682 := &yyv4679[yyj4679] + yyv4682.CodecDecodeSelf(d) } } else { @@ -60418,17 +60466,17 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4674 < len(yyv4674) { - yyv4674 = yyv4674[:yyj4674] - yyc4674 = true - } else if yyj4674 == 0 && yyv4674 == nil { - yyv4674 = []ComponentStatus{} - yyc4674 = true + if yyj4679 < len(yyv4679) { + yyv4679 = yyv4679[:yyj4679] + yyc4679 = true + } else if yyj4679 == 0 && yyv4679 == nil { + yyv4679 = []ComponentStatus{} + yyc4679 = true } } - yyh4674.End() - if yyc4674 { - *v = yyv4674 + yyh4679.End() + if yyc4679 { + *v = yyv4679 } } @@ -60437,10 +60485,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4678 := range v { + for _, yyv4683 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4679 := &yyv4678 - yy4679.CodecEncodeSelf(e) + yy4684 := &yyv4683 + yy4684.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60450,83 +60498,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4680 := *v - yyh4680, yyl4680 := z.DecSliceHelperStart() - var yyc4680 bool - if yyl4680 == 0 { - if yyv4680 == nil { - yyv4680 = []DownwardAPIVolumeFile{} - yyc4680 = true - } else if len(yyv4680) != 0 { - yyv4680 = yyv4680[:0] - yyc4680 = true + yyv4685 := *v + yyh4685, yyl4685 := z.DecSliceHelperStart() + var yyc4685 bool + if yyl4685 == 0 { + if yyv4685 == nil { + yyv4685 = []DownwardAPIVolumeFile{} + yyc4685 = true + } else if len(yyv4685) != 0 { + yyv4685 = yyv4685[:0] + yyc4685 = true } - } else if yyl4680 > 0 { - var yyrr4680, yyrl4680 int - var yyrt4680 bool - if yyl4680 > cap(yyv4680) { + } else if yyl4685 > 0 { + var yyrr4685, yyrl4685 int + var yyrt4685 bool + if yyl4685 > cap(yyv4685) { - yyrg4680 := len(yyv4680) > 0 - yyv24680 := yyv4680 - yyrl4680, yyrt4680 = z.DecInferLen(yyl4680, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4680 { - if yyrl4680 <= cap(yyv4680) { - yyv4680 = yyv4680[:yyrl4680] + yyrg4685 := len(yyv4685) > 0 + yyv24685 := yyv4685 + yyrl4685, yyrt4685 = z.DecInferLen(yyl4685, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4685 { + if yyrl4685 <= cap(yyv4685) { + yyv4685 = yyv4685[:yyrl4685] } else { - yyv4680 = make([]DownwardAPIVolumeFile, yyrl4680) + yyv4685 = make([]DownwardAPIVolumeFile, yyrl4685) } } else { - yyv4680 = make([]DownwardAPIVolumeFile, yyrl4680) + yyv4685 = make([]DownwardAPIVolumeFile, yyrl4685) } - yyc4680 = true - yyrr4680 = len(yyv4680) - if yyrg4680 { - copy(yyv4680, yyv24680) + yyc4685 = true + yyrr4685 = len(yyv4685) + if yyrg4685 { + copy(yyv4685, yyv24685) } - } else if yyl4680 != len(yyv4680) { - yyv4680 = yyv4680[:yyl4680] - yyc4680 = true + } else if yyl4685 != len(yyv4685) { + yyv4685 = yyv4685[:yyl4685] + yyc4685 = true } - yyj4680 := 0 - for ; yyj4680 < yyrr4680; yyj4680++ { - yyh4680.ElemContainerState(yyj4680) + yyj4685 := 0 + for ; yyj4685 < yyrr4685; yyj4685++ { + yyh4685.ElemContainerState(yyj4685) if r.TryDecodeAsNil() { - yyv4680[yyj4680] = DownwardAPIVolumeFile{} + yyv4685[yyj4685] = DownwardAPIVolumeFile{} } else { - yyv4681 := &yyv4680[yyj4680] - yyv4681.CodecDecodeSelf(d) + yyv4686 := &yyv4685[yyj4685] + yyv4686.CodecDecodeSelf(d) } } - if yyrt4680 { - for ; yyj4680 < yyl4680; yyj4680++ { - yyv4680 = append(yyv4680, DownwardAPIVolumeFile{}) - yyh4680.ElemContainerState(yyj4680) + if yyrt4685 { + for ; yyj4685 < yyl4685; yyj4685++ { + yyv4685 = append(yyv4685, DownwardAPIVolumeFile{}) + yyh4685.ElemContainerState(yyj4685) if r.TryDecodeAsNil() { - yyv4680[yyj4680] = DownwardAPIVolumeFile{} + yyv4685[yyj4685] = DownwardAPIVolumeFile{} } else { - yyv4682 := &yyv4680[yyj4680] - yyv4682.CodecDecodeSelf(d) + yyv4687 := &yyv4685[yyj4685] + yyv4687.CodecDecodeSelf(d) } } } } else { - yyj4680 := 0 - for ; !r.CheckBreak(); yyj4680++ { + yyj4685 := 0 + for ; !r.CheckBreak(); yyj4685++ { - if yyj4680 >= len(yyv4680) { - yyv4680 = append(yyv4680, DownwardAPIVolumeFile{}) // var yyz4680 DownwardAPIVolumeFile - yyc4680 = true + if yyj4685 >= len(yyv4685) { + yyv4685 = append(yyv4685, DownwardAPIVolumeFile{}) // var yyz4685 DownwardAPIVolumeFile + yyc4685 = true } - yyh4680.ElemContainerState(yyj4680) - if yyj4680 < len(yyv4680) { + yyh4685.ElemContainerState(yyj4685) + if yyj4685 < len(yyv4685) { if r.TryDecodeAsNil() { - yyv4680[yyj4680] = DownwardAPIVolumeFile{} + yyv4685[yyj4685] = DownwardAPIVolumeFile{} } else { - yyv4683 := &yyv4680[yyj4680] - yyv4683.CodecDecodeSelf(d) + yyv4688 := &yyv4685[yyj4685] + yyv4688.CodecDecodeSelf(d) } } else { @@ -60534,16 +60582,16 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4680 < len(yyv4680) { - yyv4680 = yyv4680[:yyj4680] - yyc4680 = true - } else if yyj4680 == 0 && yyv4680 == nil { - yyv4680 = []DownwardAPIVolumeFile{} - yyc4680 = true + if yyj4685 < len(yyv4685) { + yyv4685 = yyv4685[:yyj4685] + yyc4685 = true + } else if yyj4685 == 0 && yyv4685 == nil { + yyv4685 = []DownwardAPIVolumeFile{} + yyc4685 = true } } - yyh4680.End() - if yyc4680 { - *v = yyv4680 + yyh4685.End() + if yyc4685 { + *v = yyv4685 } } diff --git a/pkg/api/v1/types.go b/pkg/api/v1/types.go index aacbda695f869..b3d277ddb0ac9 100644 --- a/pkg/api/v1/types.go +++ b/pkg/api/v1/types.go @@ -2051,24 +2051,29 @@ type ServiceSpec struct { // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies Ports []ServicePort `json:"ports" patchStrategy:"merge" patchMergeKey:"port" protobuf:"bytes,1,rep,name=ports"` - // This service will route traffic to pods having labels matching this selector. - // Label keys and values that must match in order to receive traffic for this service. - // If not specified, endpoints must be manually specified and the system will not automatically manage them. + // Route service traffic to pods with label keys and values matching this + // selector. If empty or not present, the service is assumed to have an + // external process managing its endpoints, which Kubernetes will not + // modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. + // Ignored if type is ExternalName. // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview Selector map[string]string `json:"selector,omitempty" protobuf:"bytes,2,rep,name=selector"` - // ClusterIP is usually assigned by the master and is the IP address of the service. - // If specified, it will be allocated to the service if it is unused - // or else creation of the service will fail. - // Valid values are None, empty string (""), or a valid IP address. - // 'None' can be specified for a headless service when proxying is not required. - // Cannot be updated. + // clusterIP is the IP address of the service and is usually assigned + // randomly by the master. If an address is specified manually and is not in + // use by others, it will be allocated to the service; otherwise, creation + // of the service will fail. This field can not be changed through updates. + // Valid values are "None", empty string (""), or a valid IP address. "None" + // can be specified for headless services when proxying is not required. + // Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if + // type is ExternalName. // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies ClusterIP string `json:"clusterIP,omitempty" protobuf:"bytes,3,opt,name=clusterIP"` - // Type of exposed service. Must be ClusterIP, NodePort, or LoadBalancer. - // Defaults to ClusterIP. - // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#external-services + // type determines how to expose the service. Defaults to ClusterIP and only + // applies if clusterIP != "None". Valid options are ClusterIP, NodePort, + // LoadBalancer, ExternalName. + // More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview Type ServiceType `json:"type,omitempty" protobuf:"bytes,4,opt,name=type,casttype=ServiceType"` // externalIPs is a list of IP addresses for which nodes in the cluster @@ -2107,6 +2112,11 @@ type ServiceSpec struct { // cloud-provider does not support the feature." // More info: http://releases.k8s.io/HEAD/docs/user-guide/services-firewalls.md LoadBalancerSourceRanges []string `json:"loadBalancerSourceRanges,omitempty" protobuf:"bytes,9,opt,name=loadBalancerSourceRanges"` + + // externalName is the external reference that kubedns or equivalent will + // return as a CNAME record for this service. No proxying will be involved. + // Must be a valid DNS name and requires Type to be ExternalName. + ExternalName string `json:"externalName,omitempty" protobuf:"bytes,10,opt,name=externalName"` } // ServicePort contains information on service's port. diff --git a/pkg/api/v1/types_swagger_doc_generated.go b/pkg/api/v1/types_swagger_doc_generated.go index 06249168b9d12..adf8d53801269 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -1645,14 +1645,15 @@ func (ServiceProxyOptions) SwaggerDoc() map[string]string { var map_ServiceSpec = map[string]string{ "": "ServiceSpec describes the attributes that a user creates on a service.", "ports": "The list of ports that are exposed by this service. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies", - "selector": "This service will route traffic to pods having labels matching this selector. Label keys and values that must match in order to receive traffic for this service. If not specified, endpoints must be manually specified and the system will not automatically manage them. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview", - "clusterIP": "ClusterIP is usually assigned by the master and is the IP address of the service. If specified, it will be allocated to the service if it is unused or else creation of the service will fail. Valid values are None, empty string (\"\"), or a valid IP address. 'None' can be specified for a headless service when proxying is not required. Cannot be updated. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies", - "type": "Type of exposed service. Must be ClusterIP, NodePort, or LoadBalancer. Defaults to ClusterIP. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#external-services", + "selector": "Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview", + "clusterIP": "clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are \"None\", empty string (\"\"), or a valid IP address. \"None\" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies", + "type": "type determines how to expose the service. Defaults to ClusterIP and only applies if clusterIP != \"None\". Valid options are ClusterIP, NodePort, LoadBalancer, ExternalName. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview", "externalIPs": "externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system. A previous form of this functionality exists as the deprecatedPublicIPs field. When using this field, callers should also clear the deprecatedPublicIPs field.", "deprecatedPublicIPs": "deprecatedPublicIPs is deprecated and replaced by the externalIPs field with almost the exact same semantics. This field is retained in the v1 API for compatibility until at least 8/20/2016. It will be removed from any new API revisions. If both deprecatedPublicIPs *and* externalIPs are set, deprecatedPublicIPs is used.", "sessionAffinity": "Supports \"ClientIP\" and \"None\". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies", "loadBalancerIP": "Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.", "loadBalancerSourceRanges": "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: http://releases.k8s.io/HEAD/docs/user-guide/services-firewalls.md", + "externalName": "externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid DNS name and requires Type to be ExternalName.", } func (ServiceSpec) SwaggerDoc() map[string]string { diff --git a/pkg/api/v1/zz_generated.conversion.go b/pkg/api/v1/zz_generated.conversion.go index 73c1ef3508b07..188049ef66db7 100644 --- a/pkg/api/v1/zz_generated.conversion.go +++ b/pkg/api/v1/zz_generated.conversion.go @@ -6382,6 +6382,7 @@ func autoConvert_v1_ServiceSpec_To_api_ServiceSpec(in *ServiceSpec, out *api.Ser out.SessionAffinity = api.ServiceAffinity(in.SessionAffinity) out.LoadBalancerIP = in.LoadBalancerIP out.LoadBalancerSourceRanges = in.LoadBalancerSourceRanges + out.ExternalName = in.ExternalName return nil } @@ -6400,6 +6401,7 @@ func autoConvert_api_ServiceSpec_To_v1_ServiceSpec(in *api.ServiceSpec, out *Ser } out.Selector = in.Selector out.ClusterIP = in.ClusterIP + out.ExternalName = in.ExternalName out.ExternalIPs = in.ExternalIPs out.LoadBalancerIP = in.LoadBalancerIP out.SessionAffinity = ServiceAffinity(in.SessionAffinity) diff --git a/pkg/api/v1/zz_generated.deepcopy.go b/pkg/api/v1/zz_generated.deepcopy.go index 6becbd5062580..624b10d58fcc0 100644 --- a/pkg/api/v1/zz_generated.deepcopy.go +++ b/pkg/api/v1/zz_generated.deepcopy.go @@ -3320,6 +3320,7 @@ func DeepCopy_v1_ServiceSpec(in interface{}, out interface{}, c *conversion.Clon } else { out.LoadBalancerSourceRanges = nil } + out.ExternalName = in.ExternalName return nil } } diff --git a/pkg/api/zz_generated.deepcopy.go b/pkg/api/zz_generated.deepcopy.go index 6782d948ee34c..fff676435edba 100644 --- a/pkg/api/zz_generated.deepcopy.go +++ b/pkg/api/zz_generated.deepcopy.go @@ -3339,6 +3339,7 @@ func DeepCopy_api_ServiceSpec(in interface{}, out interface{}, c *conversion.Clo out.Selector = nil } out.ClusterIP = in.ClusterIP + out.ExternalName = in.ExternalName if in.ExternalIPs != nil { in, out := &in.ExternalIPs, &out.ExternalIPs *out = make([]string, len(*in))