From 07012329968e93359144f04c38a947d5c9981556 Mon Sep 17 00:00:00 2001 From: Michail Kargakis Date: Thu, 29 Sep 2016 12:52:26 +0200 Subject: [PATCH 1/3] api: add Conditions in replication controllers --- pkg/api/types.go | 29 +++++++++++++++++++++++++++++ pkg/api/v1/types.go | 29 +++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) diff --git a/pkg/api/types.go b/pkg/api/types.go index 8f08fe8dbc50..4deab8c81465 100644 --- a/pkg/api/types.go +++ b/pkg/api/types.go @@ -1753,6 +1753,35 @@ type ReplicationControllerStatus struct { // ObservedGeneration is the most recent generation observed by the controller. ObservedGeneration int64 `json:"observedGeneration,omitempty"` + + // Represents the latest available observations of a replication controller's current state. + Conditions []ReplicationControllerCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type"` +} + +type ReplicationControllerConditionType string + +// These are valid conditions of a replication controller. +const ( + // ReplicationControllerReplicaFailure is added in a replication controller when one of its pods + // fails to be created due to insufficient quota, limit ranges, pod security policy, node selectors, + // etc. or deleted due to kubelet being down or finalizers are failing. + ReplicationControllerReplicaFailure ReplicationControllerConditionType = "ReplicaFailure" +) + +// ReplicationControllerCondition describes the state of a replication controller at a certain point. +type ReplicationControllerCondition struct { + // Type of replication controller condition. + Type ReplicationControllerConditionType `json:"type"` + // Status of the condition, one of True, False, Unknown. + Status ConditionStatus `json:"status"` + // Last time we probed the condition. + LastProbeTime unversioned.Time `json:"lastProbeTime,omitempty"` + // The last time the condition transitioned from one status to another. + LastTransitionTime unversioned.Time `json:"lastTransitionTime,omitempty"` + // The reason for the condition's last transition. + Reason string `json:"reason,omitempty"` + // A human readable message indicating details about the transition. + Message string `json:"message,omitempty"` } // +genclient=true diff --git a/pkg/api/v1/types.go b/pkg/api/v1/types.go index e2a6424a47b3..856d1b02b507 100644 --- a/pkg/api/v1/types.go +++ b/pkg/api/v1/types.go @@ -2064,6 +2064,35 @@ type ReplicationControllerStatus struct { // ObservedGeneration reflects the generation of the most recently observed replication controller. ObservedGeneration int64 `json:"observedGeneration,omitempty" protobuf:"varint,3,opt,name=observedGeneration"` + + // Represents the latest available observations of a replication controller's current state. + Conditions []ReplicationControllerCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type"` +} + +type ReplicationControllerConditionType string + +// These are valid conditions of a replication controller. +const ( + // ReplicationControllerReplicaFailure is added in a replication controller when one of its pods + // fails to be created due to insufficient quota, limit ranges, pod security policy, node selectors, + // etc. or deleted due to kubelet being down or finalizers are failing. + ReplicationControllerReplicaFailure ReplicationControllerConditionType = "ReplicaFailure" +) + +// ReplicationControllerCondition describes the state of a replication controller at a certain point. +type ReplicationControllerCondition struct { + // Type of replication controller condition. + Type ReplicationControllerConditionType `json:"type"` + // Status of the condition, one of True, False, Unknown. + Status ConditionStatus `json:"status"` + // Last time we probed the condition. + LastProbeTime unversioned.Time `json:"lastProbeTime,omitempty"` + // The last time the condition transitioned from one status to another. + LastTransitionTime unversioned.Time `json:"lastTransitionTime,omitempty"` + // The reason for the condition's last transition. + Reason string `json:"reason,omitempty"` + // A human readable message indicating details about the transition. + Message string `json:"message,omitempty"` } // +genclient=true From 63a6ce3a870582e4191b1948f9ad48266f0432d3 Mon Sep 17 00:00:00 2001 From: Michail Kargakis Date: Thu, 29 Sep 2016 12:56:32 +0200 Subject: [PATCH 2/3] extensions: add Conditions in replica sets --- pkg/apis/extensions/types.go | 29 ++++++++++++++++++++++++++++ pkg/apis/extensions/v1beta1/types.go | 29 ++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) diff --git a/pkg/apis/extensions/types.go b/pkg/apis/extensions/types.go index a64d2ac2884f..37a8d6eeff75 100644 --- a/pkg/apis/extensions/types.go +++ b/pkg/apis/extensions/types.go @@ -642,6 +642,35 @@ type ReplicaSetStatus struct { // ObservedGeneration is the most recent generation observed by the controller. ObservedGeneration int64 `json:"observedGeneration,omitempty"` + + // Represents the latest available observations of a replica set's current state. + Conditions []ReplicaSetCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type"` +} + +type ReplicaSetConditionType string + +// These are valid conditions of a replica set. +const ( + // ReplicaSetReplicaFailure is added in a replica set when one of its pods fails to be created + // due to insufficient quota, limit ranges, pod security policy, node selectors, etc. or deleted + // due to kubelet being down or finalizers are failing. + ReplicaSetReplicaFailure ReplicaSetConditionType = "ReplicaFailure" +) + +// ReplicaSetCondition describes the state of a replica set at a certain point. +type ReplicaSetCondition struct { + // Type of replica set condition. + Type ReplicaSetConditionType `json:"type"` + // Status of the condition, one of True, False, Unknown. + Status api.ConditionStatus `json:"status"` + // Last time we probed the condition. + LastProbeTime unversioned.Time `json:"lastProbeTime,omitempty"` + // The last time the condition transitioned from one status to another. + LastTransitionTime unversioned.Time `json:"lastTransitionTime,omitempty"` + // The reason for the condition's last transition. + Reason string `json:"reason,omitempty"` + // A human readable message indicating details about the transition. + Message string `json:"message,omitempty"` } // +genclient=true diff --git a/pkg/apis/extensions/v1beta1/types.go b/pkg/apis/extensions/v1beta1/types.go index 1d1bef880fac..67e0c16c3b50 100644 --- a/pkg/apis/extensions/v1beta1/types.go +++ b/pkg/apis/extensions/v1beta1/types.go @@ -901,6 +901,35 @@ type ReplicaSetStatus struct { // ObservedGeneration reflects the generation of the most recently observed ReplicaSet. ObservedGeneration int64 `json:"observedGeneration,omitempty" protobuf:"varint,3,opt,name=observedGeneration"` + + // Represents the latest available observations of a replica set's current state. + Conditions []ReplicaSetCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type"` +} + +type ReplicaSetConditionType string + +// These are valid conditions of a replica set. +const ( + // ReplicaSetReplicaFailure is added in a replica set when one of its pods fails to be created + // due to insufficient quota, limit ranges, pod security policy, node selectors, etc. or deleted + // due to kubelet being down or finalizers are failing. + ReplicaSetReplicaFailure ReplicaSetConditionType = "ReplicaFailure" +) + +// ReplicaSetCondition describes the state of a replica set at a certain point. +type ReplicaSetCondition struct { + // Type of replica set condition. + Type ReplicaSetConditionType `json:"type"` + // Status of the condition, one of True, False, Unknown. + Status v1.ConditionStatus `json:"status"` + // Last time we probed the condition. + LastProbeTime unversioned.Time `json:"lastProbeTime,omitempty"` + // The last time the condition transitioned from one status to another. + LastTransitionTime unversioned.Time `json:"lastTransitionTime,omitempty"` + // The reason for the condition's last transition. + Reason string `json:"reason,omitempty"` + // A human readable message indicating details about the transition. + Message string `json:"message,omitempty"` } // +genclient=true From 5589469948474360597de7d10224b319c83b6a84 Mon Sep 17 00:00:00 2001 From: Michail Kargakis Date: Fri, 7 Oct 2016 16:08:07 +0200 Subject: [PATCH 3/3] Generated code for RS/RC conditions --- api/openapi-spec/root_swagger.json | 80 + api/openapi-spec/v1.json | 40 + api/openapi-spec/v1beta1.extensions.json | 40 + api/swagger-spec/extensions_v1beta1.json | 43 + api/swagger-spec/v1.json | 43 + .../extensions/v1beta1/definitions.html | 78 +- docs/api-reference/v1/definitions.html | 78 +- pkg/api/types.generated.go | 23345 +++++++-------- pkg/api/v1/generated.pb.go | 1870 +- pkg/api/v1/generated.proto | 24 + pkg/api/v1/types.generated.go | 24045 ++++++++-------- pkg/api/v1/types_swagger_doc_generated.go | 15 + pkg/api/v1/zz_generated.conversion.go | 60 + pkg/api/v1/zz_generated.deepcopy.go | 28 + pkg/api/zz_generated.deepcopy.go | 28 + pkg/apis/extensions/types.generated.go | 6489 +++-- pkg/apis/extensions/v1beta1/generated.pb.go | 938 +- pkg/apis/extensions/v1beta1/generated.proto | 24 + .../extensions/v1beta1/types.generated.go | 6945 +++-- .../v1beta1/types_swagger_doc_generated.go | 15 + .../v1beta1/zz_generated.conversion.go | 60 + .../v1beta1/zz_generated.deepcopy.go | 28 + pkg/apis/extensions/zz_generated.deepcopy.go | 28 + pkg/generated/openapi/zz_generated.openapi.go | 204 +- 24 files changed, 34414 insertions(+), 30134 deletions(-) diff --git a/api/openapi-spec/root_swagger.json b/api/openapi-spec/root_swagger.json index b0c1a2ce7758..9a0dfe9280d7 100644 --- a/api/openapi-spec/root_swagger.json +++ b/api/openapi-spec/root_swagger.json @@ -28176,6 +28176,39 @@ } } }, + "v1.ReplicationControllerCondition": { + "description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.", + "required": [ + "type", + "status" + ], + "properties": { + "lastProbeTime": { + "description": "Last time we probed the condition.", + "$ref": "#/definitions/unversioned.Time" + }, + "lastTransitionTime": { + "description": "The last time the condition transitioned from one status to another.", + "$ref": "#/definitions/unversioned.Time" + }, + "message": { + "description": "A human readable message indicating details about the transition.", + "type": "string" + }, + "reason": { + "description": "The reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of replication controller condition.", + "type": "string" + } + } + }, "v1.ReplicationControllerList": { "description": "ReplicationControllerList is a collection of replication controllers.", "required": [ @@ -28232,6 +28265,13 @@ "type": "integer", "format": "int32" }, + "conditions": { + "description": "Represents the latest available observations of a replication controller's current state.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.ReplicationControllerCondition" + } + }, "fullyLabeledReplicas": { "description": "The number of pods that have labels matching the labels of the pod template of the replication controller.", "type": "integer", @@ -30052,6 +30092,39 @@ } } }, + "v1beta1.ReplicaSetCondition": { + "description": "ReplicaSetCondition describes the state of a replica set at a certain point.", + "required": [ + "type", + "status" + ], + "properties": { + "lastProbeTime": { + "description": "Last time we probed the condition.", + "$ref": "#/definitions/unversioned.Time" + }, + "lastTransitionTime": { + "description": "The last time the condition transitioned from one status to another.", + "$ref": "#/definitions/unversioned.Time" + }, + "message": { + "description": "A human readable message indicating details about the transition.", + "type": "string" + }, + "reason": { + "description": "The reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of replica set condition.", + "type": "string" + } + } + }, "v1beta1.ReplicaSetList": { "description": "ReplicaSetList is a collection of ReplicaSets.", "required": [ @@ -30105,6 +30178,13 @@ "type": "integer", "format": "int32" }, + "conditions": { + "description": "Represents the latest available observations of a replica set's current state.", + "type": "array", + "items": { + "$ref": "#/definitions/v1beta1.ReplicaSetCondition" + } + }, "fullyLabeledReplicas": { "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.", "type": "integer", diff --git a/api/openapi-spec/v1.json b/api/openapi-spec/v1.json index a36b882de11d..a34f9fa1f291 100644 --- a/api/openapi-spec/v1.json +++ b/api/openapi-spec/v1.json @@ -14679,6 +14679,39 @@ } } }, + "v1.ReplicationControllerCondition": { + "description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.", + "required": [ + "type", + "status" + ], + "properties": { + "lastProbeTime": { + "description": "Last time we probed the condition.", + "$ref": "#/definitions/unversioned.Time" + }, + "lastTransitionTime": { + "description": "The last time the condition transitioned from one status to another.", + "$ref": "#/definitions/unversioned.Time" + }, + "message": { + "description": "A human readable message indicating details about the transition.", + "type": "string" + }, + "reason": { + "description": "The reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of replication controller condition.", + "type": "string" + } + } + }, "v1.ReplicationControllerList": { "description": "ReplicationControllerList is a collection of replication controllers.", "required": [ @@ -14735,6 +14768,13 @@ "type": "integer", "format": "int32" }, + "conditions": { + "description": "Represents the latest available observations of a replication controller's current state.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.ReplicationControllerCondition" + } + }, "fullyLabeledReplicas": { "description": "The number of pods that have labels matching the labels of the pod template of the replication controller.", "type": "integer", diff --git a/api/openapi-spec/v1beta1.extensions.json b/api/openapi-spec/v1beta1.extensions.json index 9dfa60b74af0..92697eda83b2 100644 --- a/api/openapi-spec/v1beta1.extensions.json +++ b/api/openapi-spec/v1beta1.extensions.json @@ -7798,6 +7798,39 @@ } } }, + "v1beta1.ReplicaSetCondition": { + "description": "ReplicaSetCondition describes the state of a replica set at a certain point.", + "required": [ + "type", + "status" + ], + "properties": { + "lastProbeTime": { + "description": "Last time we probed the condition.", + "$ref": "#/definitions/unversioned.Time" + }, + "lastTransitionTime": { + "description": "The last time the condition transitioned from one status to another.", + "$ref": "#/definitions/unversioned.Time" + }, + "message": { + "description": "A human readable message indicating details about the transition.", + "type": "string" + }, + "reason": { + "description": "The reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of replica set condition.", + "type": "string" + } + } + }, "v1beta1.ReplicaSetList": { "description": "ReplicaSetList is a collection of ReplicaSets.", "required": [ @@ -7851,6 +7884,13 @@ "type": "integer", "format": "int32" }, + "conditions": { + "description": "Represents the latest available observations of a replica set's current state.", + "type": "array", + "items": { + "$ref": "#/definitions/v1beta1.ReplicaSetCondition" + } + }, "fullyLabeledReplicas": { "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.", "type": "integer", diff --git a/api/swagger-spec/extensions_v1beta1.json b/api/swagger-spec/extensions_v1beta1.json index dbf20d00dc36..d84f04b058f6 100644 --- a/api/swagger-spec/extensions_v1beta1.json +++ b/api/swagger-spec/extensions_v1beta1.json @@ -10348,6 +10348,49 @@ "type": "integer", "format": "int64", "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet." + }, + "conditions": { + "type": "array", + "items": { + "$ref": "v1beta1.ReplicaSetCondition" + }, + "description": "Represents the latest available observations of a replica set's current state." + } + } + }, + "v1beta1.ReplicaSetCondition": { + "id": "v1beta1.ReplicaSetCondition", + "description": "ReplicaSetCondition describes the state of a replica set at a certain point.", + "required": [ + "type", + "status" + ], + "properties": { + "type": { + "type": "string", + "description": "Type of replica set condition." + }, + "status": { + "type": "string", + "description": "Status of the condition, one of True, False, Unknown." + }, + "lastProbeTime": { + "type": "string", + "format": "date-time", + "description": "Last time we probed the condition." + }, + "lastTransitionTime": { + "type": "string", + "format": "date-time", + "description": "The last time the condition transitioned from one status to another." + }, + "reason": { + "type": "string", + "description": "The reason for the condition's last transition." + }, + "message": { + "type": "string", + "description": "A human readable message indicating details about the transition." } } }, diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index 14516e1f3562..8836d8646bd9 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -19135,6 +19135,49 @@ "type": "integer", "format": "int64", "description": "ObservedGeneration reflects the generation of the most recently observed replication controller." + }, + "conditions": { + "type": "array", + "items": { + "$ref": "v1.ReplicationControllerCondition" + }, + "description": "Represents the latest available observations of a replication controller's current state." + } + } + }, + "v1.ReplicationControllerCondition": { + "id": "v1.ReplicationControllerCondition", + "description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.", + "required": [ + "type", + "status" + ], + "properties": { + "type": { + "type": "string", + "description": "Type of replication controller condition." + }, + "status": { + "type": "string", + "description": "Status of the condition, one of True, False, Unknown." + }, + "lastProbeTime": { + "type": "string", + "format": "date-time", + "description": "Last time we probed the condition." + }, + "lastTransitionTime": { + "type": "string", + "format": "date-time", + "description": "The last time the condition transitioned from one status to another." + }, + "reason": { + "type": "string", + "description": "The reason for the condition's last transition." + }, + "message": { + "type": "string", + "description": "A human readable message indicating details about the transition." } } }, diff --git a/docs/api-reference/extensions/v1beta1/definitions.html b/docs/api-reference/extensions/v1beta1/definitions.html index 2c3b3f088af7..c1ad1e4b572d 100755 --- a/docs/api-reference/extensions/v1beta1/definitions.html +++ b/docs/api-reference/extensions/v1beta1/definitions.html @@ -1126,6 +1126,75 @@

unversioned.StatusCause

+ +
+

v1beta1.ReplicaSetCondition

+
+

ReplicaSetCondition describes the state of a replica set at a certain point.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

type

Type of replica set condition.

true

string

status

Status of the condition, one of True, False, Unknown.

true

string

lastProbeTime

Last time we probed the condition.

false

string (date-time)

lastTransitionTime

The last time the condition transitioned from one status to another.

false

string (date-time)

reason

The reason for the condition’s last transition.

false

string

message

A human readable message indicating details about the transition.

false

string

+

v1beta1.NetworkPolicyList

@@ -5475,6 +5544,13 @@

v1beta1.ReplicaSetStatus

integer (int64)

+ +

conditions

+

Represents the latest available observations of a replica set’s current state.

+

false

+

v1beta1.ReplicaSetCondition array

+ + @@ -6611,7 +6687,7 @@

any

diff --git a/docs/api-reference/v1/definitions.html b/docs/api-reference/v1/definitions.html index c49d8f846052..2cdbef44395f 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -1516,6 +1516,75 @@

v1.GitRepoVolumeSource

+ +
+

v1.ReplicationControllerCondition

+
+

ReplicationControllerCondition describes the state of a replication controller at a certain point.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

type

Type of replication controller condition.

true

string

status

Status of the condition, one of True, False, Unknown.

true

string

lastProbeTime

Last time we probed the condition.

false

string (date-time)

lastTransitionTime

The last time the condition transitioned from one status to another.

false

string (date-time)

reason

The reason for the condition’s last transition.

false

string

message

A human readable message indicating details about the transition.

false

string

+

v1.ScaleStatus

@@ -6191,6 +6260,13 @@

v1.ReplicationControllerStatus

integer (int64)

+ +

conditions

+

Represents the latest available observations of a replication controller’s current state.

+

false

+

v1.ReplicationControllerCondition array

+ + @@ -8489,7 +8565,7 @@

any

diff --git a/pkg/api/types.generated.go b/pkg/api/types.generated.go index 13458b49192c..b2125f21d9e2 100644 --- a/pkg/api/types.generated.go +++ b/pkg/api/types.generated.go @@ -32079,16 +32079,17 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep2437 := !z.EncBinary() yy2arr2437 := z.EncBasicHandle().StructToArray - var yyq2437 [5]bool + var yyq2437 [6]bool _, _, _ = yysep2437, yyq2437, yy2arr2437 const yyr2437 bool = false yyq2437[1] = x.FullyLabeledReplicas != 0 yyq2437[2] = x.ReadyReplicas != 0 yyq2437[3] = x.AvailableReplicas != 0 yyq2437[4] = x.ObservedGeneration != 0 + yyq2437[5] = len(x.Conditions) != 0 var yynn2437 int if yyr2437 || yy2arr2437 { - r.EncodeArrayStart(5) + r.EncodeArrayStart(6) } else { yynn2437 = 1 for _, b := range yyq2437 { @@ -32218,6 +32219,39 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } + if yyr2437 || yy2arr2437 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2437[5] { + if x.Conditions == nil { + r.EncodeNil() + } else { + yym2454 := z.EncBinary() + _ = yym2454 + if false { + } else { + h.encSliceReplicationControllerCondition(([]ReplicationControllerCondition)(x.Conditions), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2437[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("conditions")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Conditions == nil { + r.EncodeNil() + } else { + yym2455 := z.EncBinary() + _ = yym2455 + if false { + } else { + h.encSliceReplicationControllerCondition(([]ReplicationControllerCondition)(x.Conditions), e) + } + } + } + } if yyr2437 || yy2arr2437 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { @@ -32231,25 +32265,25 @@ func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2453 := z.DecBinary() - _ = yym2453 + yym2456 := z.DecBinary() + _ = yym2456 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2454 := r.ContainerType() - if yyct2454 == codecSelferValueTypeMap1234 { - yyl2454 := r.ReadMapStart() - if yyl2454 == 0 { + yyct2457 := r.ContainerType() + if yyct2457 == codecSelferValueTypeMap1234 { + yyl2457 := r.ReadMapStart() + if yyl2457 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2454, d) + x.codecDecodeSelfFromMap(yyl2457, d) } - } else if yyct2454 == codecSelferValueTypeArray1234 { - yyl2454 := r.ReadArrayStart() - if yyl2454 == 0 { + } else if yyct2457 == codecSelferValueTypeArray1234 { + yyl2457 := r.ReadArrayStart() + if yyl2457 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2454, d) + x.codecDecodeSelfFromArray(yyl2457, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32261,12 +32295,12 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2455Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2455Slc - var yyhl2455 bool = l >= 0 - for yyj2455 := 0; ; yyj2455++ { - if yyhl2455 { - if yyj2455 >= l { + var yys2458Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2458Slc + var yyhl2458 bool = l >= 0 + for yyj2458 := 0; ; yyj2458++ { + if yyhl2458 { + if yyj2458 >= l { break } } else { @@ -32275,10 +32309,10 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2455Slc = r.DecodeBytes(yys2455Slc, true, true) - yys2455 := string(yys2455Slc) + yys2458Slc = r.DecodeBytes(yys2458Slc, true, true) + yys2458 := string(yys2458Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2455 { + switch yys2458 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -32309,10 +32343,22 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 } else { x.ObservedGeneration = int64(r.DecodeInt(64)) } + case "conditions": + if r.TryDecodeAsNil() { + x.Conditions = nil + } else { + yyv2464 := &x.Conditions + yym2465 := z.DecBinary() + _ = yym2465 + if false { + } else { + h.decSliceReplicationControllerCondition((*[]ReplicationControllerCondition)(yyv2464), d) + } + } default: - z.DecStructFieldNotFound(-1, yys2455) - } // end switch yys2455 - } // end for yyj2455 + z.DecStructFieldNotFound(-1, yys2458) + } // end switch yys2458 + } // end for yyj2458 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32320,16 +32366,16 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 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 yyj2466 int + var yyb2466 bool + var yyhl2466 bool = l >= 0 + yyj2466++ + if yyhl2466 { + yyb2466 = yyj2466 > l } else { - yyb2461 = r.CheckBreak() + yyb2466 = r.CheckBreak() } - if yyb2461 { + if yyb2466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32339,13 +32385,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Replicas = int32(r.DecodeInt(32)) } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2466++ + if yyhl2466 { + yyb2466 = yyj2466 > l } else { - yyb2461 = r.CheckBreak() + yyb2466 = r.CheckBreak() } - if yyb2461 { + if yyb2466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32355,13 +32401,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.FullyLabeledReplicas = int32(r.DecodeInt(32)) } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2466++ + if yyhl2466 { + yyb2466 = yyj2466 > l } else { - yyb2461 = r.CheckBreak() + yyb2466 = r.CheckBreak() } - if yyb2461 { + if yyb2466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32371,13 +32417,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.ReadyReplicas = int32(r.DecodeInt(32)) } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2466++ + if yyhl2466 { + yyb2466 = yyj2466 > l } else { - yyb2461 = r.CheckBreak() + yyb2466 = r.CheckBreak() } - if yyb2461 { + if yyb2466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32387,13 +32433,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.AvailableReplicas = int32(r.DecodeInt(32)) } - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2466++ + if yyhl2466 { + yyb2466 = yyj2466 > l } else { - yyb2461 = r.CheckBreak() + yyb2466 = r.CheckBreak() } - if yyb2461 { + if yyb2466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32403,18 +32449,509 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.ObservedGeneration = int64(r.DecodeInt(64)) } + yyj2466++ + if yyhl2466 { + yyb2466 = yyj2466 > l + } else { + yyb2466 = r.CheckBreak() + } + if yyb2466 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Conditions = nil + } else { + yyv2472 := &x.Conditions + yym2473 := z.DecBinary() + _ = yym2473 + if false { + } else { + h.decSliceReplicationControllerCondition((*[]ReplicationControllerCondition)(yyv2472), d) + } + } + for { + yyj2466++ + if yyhl2466 { + yyb2466 = yyj2466 > l + } else { + yyb2466 = r.CheckBreak() + } + if yyb2466 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2466-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x ReplicationControllerConditionType) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym2474 := z.EncBinary() + _ = yym2474 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *ReplicationControllerConditionType) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2475 := z.DecBinary() + _ = yym2475 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *ReplicationControllerCondition) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2476 := z.EncBinary() + _ = yym2476 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2477 := !z.EncBinary() + yy2arr2477 := z.EncBasicHandle().StructToArray + var yyq2477 [6]bool + _, _, _ = yysep2477, yyq2477, yy2arr2477 + const yyr2477 bool = false + yyq2477[2] = true + yyq2477[3] = true + yyq2477[4] = x.Reason != "" + yyq2477[5] = x.Message != "" + var yynn2477 int + if yyr2477 || yy2arr2477 { + r.EncodeArrayStart(6) + } else { + yynn2477 = 2 + for _, b := range yyq2477 { + if b { + yynn2477++ + } + } + r.EncodeMapStart(yynn2477) + yynn2477 = 0 + } + if yyr2477 || yy2arr2477 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + x.Type.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("type")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Type.CodecEncodeSelf(e) + } + if yyr2477 || yy2arr2477 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + x.Status.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Status.CodecEncodeSelf(e) + } + if yyr2477 || yy2arr2477 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2477[2] { + yy2481 := &x.LastProbeTime + yym2482 := z.EncBinary() + _ = yym2482 + if false { + } else if z.HasExtensions() && z.EncExt(yy2481) { + } else if yym2482 { + z.EncBinaryMarshal(yy2481) + } else if !yym2482 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2481) + } else { + z.EncFallback(yy2481) + } + } else { + r.EncodeNil() + } + } else { + if yyq2477[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("lastProbeTime")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2483 := &x.LastProbeTime + yym2484 := z.EncBinary() + _ = yym2484 + if false { + } else if z.HasExtensions() && z.EncExt(yy2483) { + } else if yym2484 { + z.EncBinaryMarshal(yy2483) + } else if !yym2484 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2483) + } else { + z.EncFallback(yy2483) + } + } + } + if yyr2477 || yy2arr2477 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2477[3] { + yy2486 := &x.LastTransitionTime + yym2487 := z.EncBinary() + _ = yym2487 + if false { + } else if z.HasExtensions() && z.EncExt(yy2486) { + } else if yym2487 { + z.EncBinaryMarshal(yy2486) + } else if !yym2487 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2486) + } else { + z.EncFallback(yy2486) + } + } else { + r.EncodeNil() + } + } else { + if yyq2477[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2488 := &x.LastTransitionTime + yym2489 := z.EncBinary() + _ = yym2489 + if false { + } else if z.HasExtensions() && z.EncExt(yy2488) { + } else if yym2489 { + z.EncBinaryMarshal(yy2488) + } else if !yym2489 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2488) + } else { + z.EncFallback(yy2488) + } + } + } + if yyr2477 || yy2arr2477 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2477[4] { + yym2491 := z.EncBinary() + _ = yym2491 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2477[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("reason")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2492 := z.EncBinary() + _ = yym2492 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } + } + if yyr2477 || yy2arr2477 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2477[5] { + yym2494 := z.EncBinary() + _ = yym2494 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2477[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2495 := z.EncBinary() + _ = yym2495 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } + } + if yyr2477 || yy2arr2477 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ReplicationControllerCondition) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2496 := z.DecBinary() + _ = yym2496 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2497 := r.ContainerType() + if yyct2497 == codecSelferValueTypeMap1234 { + yyl2497 := r.ReadMapStart() + if yyl2497 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2497, d) + } + } else if yyct2497 == codecSelferValueTypeArray1234 { + yyl2497 := r.ReadArrayStart() + if yyl2497 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2497, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ReplicationControllerCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + 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 { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2498Slc = r.DecodeBytes(yys2498Slc, true, true) + yys2498 := string(yys2498Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2498 { + case "type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = ReplicationControllerConditionType(r.DecodeString()) + } + case "status": + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = ConditionStatus(r.DecodeString()) + } + case "lastProbeTime": + if r.TryDecodeAsNil() { + x.LastProbeTime = pkg2_unversioned.Time{} + } else { + yyv2501 := &x.LastProbeTime + yym2502 := z.DecBinary() + _ = yym2502 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2501) { + } else if yym2502 { + z.DecBinaryUnmarshal(yyv2501) + } else if !yym2502 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2501) + } else { + z.DecFallback(yyv2501, false) + } + } + case "lastTransitionTime": + if r.TryDecodeAsNil() { + x.LastTransitionTime = pkg2_unversioned.Time{} + } else { + yyv2503 := &x.LastTransitionTime + yym2504 := z.DecBinary() + _ = yym2504 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2503) { + } else if yym2504 { + z.DecBinaryUnmarshal(yyv2503) + } else if !yym2504 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2503) + } else { + z.DecFallback(yyv2503, false) + } + } + case "reason": + if r.TryDecodeAsNil() { + x.Reason = "" + } else { + x.Reason = string(r.DecodeString()) + } + case "message": + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys2498) + } // end switch yys2498 + } // end for yyj2498 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ReplicationControllerCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2507 int + var yyb2507 bool + var yyhl2507 bool = l >= 0 + yyj2507++ + if yyhl2507 { + yyb2507 = yyj2507 > l + } else { + yyb2507 = r.CheckBreak() + } + if yyb2507 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = ReplicationControllerConditionType(r.DecodeString()) + } + yyj2507++ + if yyhl2507 { + yyb2507 = yyj2507 > l + } else { + yyb2507 = r.CheckBreak() + } + if yyb2507 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = ConditionStatus(r.DecodeString()) + } + yyj2507++ + if yyhl2507 { + yyb2507 = yyj2507 > l + } else { + yyb2507 = r.CheckBreak() + } + if yyb2507 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.LastProbeTime = pkg2_unversioned.Time{} + } else { + yyv2510 := &x.LastProbeTime + yym2511 := z.DecBinary() + _ = yym2511 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2510) { + } else if yym2511 { + z.DecBinaryUnmarshal(yyv2510) + } else if !yym2511 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2510) + } else { + z.DecFallback(yyv2510, false) + } + } + yyj2507++ + if yyhl2507 { + yyb2507 = yyj2507 > l + } else { + yyb2507 = r.CheckBreak() + } + if yyb2507 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.LastTransitionTime = pkg2_unversioned.Time{} + } else { + yyv2512 := &x.LastTransitionTime + yym2513 := z.DecBinary() + _ = yym2513 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2512) { + } else if yym2513 { + z.DecBinaryUnmarshal(yyv2512) + } else if !yym2513 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2512) + } else { + z.DecFallback(yyv2512, false) + } + } + yyj2507++ + if yyhl2507 { + yyb2507 = yyj2507 > l + } else { + yyb2507 = r.CheckBreak() + } + if yyb2507 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Reason = "" + } else { + x.Reason = string(r.DecodeString()) + } + yyj2507++ + if yyhl2507 { + yyb2507 = yyj2507 > l + } else { + yyb2507 = r.CheckBreak() + } + if yyb2507 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } for { - yyj2461++ - if yyhl2461 { - yyb2461 = yyj2461 > l + yyj2507++ + if yyhl2507 { + yyb2507 = yyj2507 > l } else { - yyb2461 = r.CheckBreak() + yyb2507 = r.CheckBreak() } - if yyb2461 { + if yyb2507 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2461-1, "") + z.DecStructFieldNotFound(yyj2507-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32426,39 +32963,39 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2467 := z.EncBinary() - _ = yym2467 + yym2516 := z.EncBinary() + _ = yym2516 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2468 := !z.EncBinary() - yy2arr2468 := z.EncBasicHandle().StructToArray - var yyq2468 [5]bool - _, _, _ = yysep2468, yyq2468, yy2arr2468 - const yyr2468 bool = false - yyq2468[0] = x.Kind != "" - yyq2468[1] = x.APIVersion != "" - yyq2468[2] = true - yyq2468[3] = true - yyq2468[4] = true - var yynn2468 int - if yyr2468 || yy2arr2468 { + yysep2517 := !z.EncBinary() + yy2arr2517 := z.EncBasicHandle().StructToArray + var yyq2517 [5]bool + _, _, _ = yysep2517, yyq2517, yy2arr2517 + const yyr2517 bool = false + yyq2517[0] = x.Kind != "" + yyq2517[1] = x.APIVersion != "" + yyq2517[2] = true + yyq2517[3] = true + yyq2517[4] = true + var yynn2517 int + if yyr2517 || yy2arr2517 { r.EncodeArrayStart(5) } else { - yynn2468 = 0 - for _, b := range yyq2468 { + yynn2517 = 0 + for _, b := range yyq2517 { if b { - yynn2468++ + yynn2517++ } } - r.EncodeMapStart(yynn2468) - yynn2468 = 0 + r.EncodeMapStart(yynn2517) + yynn2517 = 0 } - if yyr2468 || yy2arr2468 { + if yyr2517 || yy2arr2517 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2468[0] { - yym2470 := z.EncBinary() - _ = yym2470 + if yyq2517[0] { + yym2519 := z.EncBinary() + _ = yym2519 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32467,23 +33004,23 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2468[0] { + if yyq2517[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2471 := z.EncBinary() - _ = yym2471 + yym2520 := z.EncBinary() + _ = yym2520 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2468 || yy2arr2468 { + if yyr2517 || yy2arr2517 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2468[1] { - yym2473 := z.EncBinary() - _ = yym2473 + if yyq2517[1] { + yym2522 := z.EncBinary() + _ = yym2522 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32492,70 +33029,70 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2468[1] { + if yyq2517[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2474 := z.EncBinary() - _ = yym2474 + yym2523 := z.EncBinary() + _ = yym2523 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2468 || yy2arr2468 { + if yyr2517 || yy2arr2517 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2468[2] { - yy2476 := &x.ObjectMeta - yy2476.CodecEncodeSelf(e) + if yyq2517[2] { + yy2525 := &x.ObjectMeta + yy2525.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2468[2] { + if yyq2517[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2477 := &x.ObjectMeta - yy2477.CodecEncodeSelf(e) + yy2526 := &x.ObjectMeta + yy2526.CodecEncodeSelf(e) } } - if yyr2468 || yy2arr2468 { + if yyr2517 || yy2arr2517 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2468[3] { - yy2479 := &x.Spec - yy2479.CodecEncodeSelf(e) + if yyq2517[3] { + yy2528 := &x.Spec + yy2528.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2468[3] { + if yyq2517[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2480 := &x.Spec - yy2480.CodecEncodeSelf(e) + yy2529 := &x.Spec + yy2529.CodecEncodeSelf(e) } } - if yyr2468 || yy2arr2468 { + if yyr2517 || yy2arr2517 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2468[4] { - yy2482 := &x.Status - yy2482.CodecEncodeSelf(e) + if yyq2517[4] { + yy2531 := &x.Status + yy2531.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2468[4] { + if yyq2517[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2483 := &x.Status - yy2483.CodecEncodeSelf(e) + yy2532 := &x.Status + yy2532.CodecEncodeSelf(e) } } - if yyr2468 || yy2arr2468 { + if yyr2517 || yy2arr2517 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32568,25 +33105,25 @@ func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2484 := z.DecBinary() - _ = yym2484 + yym2533 := z.DecBinary() + _ = yym2533 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2485 := r.ContainerType() - if yyct2485 == codecSelferValueTypeMap1234 { - yyl2485 := r.ReadMapStart() - if yyl2485 == 0 { + yyct2534 := r.ContainerType() + if yyct2534 == codecSelferValueTypeMap1234 { + yyl2534 := r.ReadMapStart() + if yyl2534 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2485, d) + x.codecDecodeSelfFromMap(yyl2534, d) } - } else if yyct2485 == codecSelferValueTypeArray1234 { - yyl2485 := r.ReadArrayStart() - if yyl2485 == 0 { + } else if yyct2534 == codecSelferValueTypeArray1234 { + yyl2534 := r.ReadArrayStart() + if yyl2534 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2485, d) + x.codecDecodeSelfFromArray(yyl2534, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32598,12 +33135,12 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2486Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2486Slc - var yyhl2486 bool = l >= 0 - for yyj2486 := 0; ; yyj2486++ { - if yyhl2486 { - if yyj2486 >= l { + var yys2535Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2535Slc + var yyhl2535 bool = l >= 0 + for yyj2535 := 0; ; yyj2535++ { + if yyhl2535 { + if yyj2535 >= l { break } } else { @@ -32612,10 +33149,10 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2486Slc = r.DecodeBytes(yys2486Slc, true, true) - yys2486 := string(yys2486Slc) + yys2535Slc = r.DecodeBytes(yys2535Slc, true, true) + yys2535 := string(yys2535Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2486 { + switch yys2535 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32632,27 +33169,27 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2489 := &x.ObjectMeta - yyv2489.CodecDecodeSelf(d) + yyv2538 := &x.ObjectMeta + yyv2538.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv2490 := &x.Spec - yyv2490.CodecDecodeSelf(d) + yyv2539 := &x.Spec + yyv2539.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv2491 := &x.Status - yyv2491.CodecDecodeSelf(d) + yyv2540 := &x.Status + yyv2540.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2486) - } // end switch yys2486 - } // end for yyj2486 + z.DecStructFieldNotFound(-1, yys2535) + } // end switch yys2535 + } // end for yyj2535 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32660,16 +33197,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2492 int - var yyb2492 bool - var yyhl2492 bool = l >= 0 - yyj2492++ - if yyhl2492 { - yyb2492 = yyj2492 > l + var yyj2541 int + var yyb2541 bool + var yyhl2541 bool = l >= 0 + yyj2541++ + if yyhl2541 { + yyb2541 = yyj2541 > l } else { - yyb2492 = r.CheckBreak() + yyb2541 = r.CheckBreak() } - if yyb2492 { + if yyb2541 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32679,13 +33216,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj2492++ - if yyhl2492 { - yyb2492 = yyj2492 > l + yyj2541++ + if yyhl2541 { + yyb2541 = yyj2541 > l } else { - yyb2492 = r.CheckBreak() + yyb2541 = r.CheckBreak() } - if yyb2492 { + if yyb2541 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32695,13 +33232,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj2492++ - if yyhl2492 { - yyb2492 = yyj2492 > l + yyj2541++ + if yyhl2541 { + yyb2541 = yyj2541 > l } else { - yyb2492 = r.CheckBreak() + yyb2541 = r.CheckBreak() } - if yyb2492 { + if yyb2541 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32709,16 +33246,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2495 := &x.ObjectMeta - yyv2495.CodecDecodeSelf(d) + yyv2544 := &x.ObjectMeta + yyv2544.CodecDecodeSelf(d) } - yyj2492++ - if yyhl2492 { - yyb2492 = yyj2492 > l + yyj2541++ + if yyhl2541 { + yyb2541 = yyj2541 > l } else { - yyb2492 = r.CheckBreak() + yyb2541 = r.CheckBreak() } - if yyb2492 { + if yyb2541 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32726,16 +33263,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv2496 := &x.Spec - yyv2496.CodecDecodeSelf(d) + yyv2545 := &x.Spec + yyv2545.CodecDecodeSelf(d) } - yyj2492++ - if yyhl2492 { - yyb2492 = yyj2492 > l + yyj2541++ + if yyhl2541 { + yyb2541 = yyj2541 > l } else { - yyb2492 = r.CheckBreak() + yyb2541 = r.CheckBreak() } - if yyb2492 { + if yyb2541 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32743,21 +33280,21 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv2497 := &x.Status - yyv2497.CodecDecodeSelf(d) + yyv2546 := &x.Status + yyv2546.CodecDecodeSelf(d) } for { - yyj2492++ - if yyhl2492 { - yyb2492 = yyj2492 > l + yyj2541++ + if yyhl2541 { + yyb2541 = yyj2541 > l } else { - yyb2492 = r.CheckBreak() + yyb2541 = r.CheckBreak() } - if yyb2492 { + if yyb2541 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2492-1, "") + z.DecStructFieldNotFound(yyj2541-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32769,37 +33306,37 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2498 := z.EncBinary() - _ = yym2498 + yym2547 := z.EncBinary() + _ = yym2547 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2499 := !z.EncBinary() - yy2arr2499 := z.EncBasicHandle().StructToArray - var yyq2499 [4]bool - _, _, _ = yysep2499, yyq2499, yy2arr2499 - const yyr2499 bool = false - yyq2499[0] = x.Kind != "" - yyq2499[1] = x.APIVersion != "" - yyq2499[2] = true - var yynn2499 int - if yyr2499 || yy2arr2499 { + yysep2548 := !z.EncBinary() + yy2arr2548 := z.EncBasicHandle().StructToArray + var yyq2548 [4]bool + _, _, _ = yysep2548, yyq2548, yy2arr2548 + const yyr2548 bool = false + yyq2548[0] = x.Kind != "" + yyq2548[1] = x.APIVersion != "" + yyq2548[2] = true + var yynn2548 int + if yyr2548 || yy2arr2548 { r.EncodeArrayStart(4) } else { - yynn2499 = 1 - for _, b := range yyq2499 { + yynn2548 = 1 + for _, b := range yyq2548 { if b { - yynn2499++ + yynn2548++ } } - r.EncodeMapStart(yynn2499) - yynn2499 = 0 + r.EncodeMapStart(yynn2548) + yynn2548 = 0 } - if yyr2499 || yy2arr2499 { + if yyr2548 || yy2arr2548 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2499[0] { - yym2501 := z.EncBinary() - _ = yym2501 + if yyq2548[0] { + yym2550 := z.EncBinary() + _ = yym2550 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32808,23 +33345,23 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2499[0] { + if yyq2548[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2502 := z.EncBinary() - _ = yym2502 + yym2551 := z.EncBinary() + _ = yym2551 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2499 || yy2arr2499 { + if yyr2548 || yy2arr2548 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2499[1] { - yym2504 := z.EncBinary() - _ = yym2504 + if yyq2548[1] { + yym2553 := z.EncBinary() + _ = yym2553 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32833,54 +33370,54 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2499[1] { + if yyq2548[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2505 := z.EncBinary() - _ = yym2505 + yym2554 := z.EncBinary() + _ = yym2554 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2499 || yy2arr2499 { + if yyr2548 || yy2arr2548 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2499[2] { - yy2507 := &x.ListMeta - yym2508 := z.EncBinary() - _ = yym2508 + if yyq2548[2] { + yy2556 := &x.ListMeta + yym2557 := z.EncBinary() + _ = yym2557 if false { - } else if z.HasExtensions() && z.EncExt(yy2507) { + } else if z.HasExtensions() && z.EncExt(yy2556) { } else { - z.EncFallback(yy2507) + z.EncFallback(yy2556) } } else { r.EncodeNil() } } else { - if yyq2499[2] { + if yyq2548[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2509 := &x.ListMeta - yym2510 := z.EncBinary() - _ = yym2510 + yy2558 := &x.ListMeta + yym2559 := z.EncBinary() + _ = yym2559 if false { - } else if z.HasExtensions() && z.EncExt(yy2509) { + } else if z.HasExtensions() && z.EncExt(yy2558) { } else { - z.EncFallback(yy2509) + z.EncFallback(yy2558) } } } - if yyr2499 || yy2arr2499 { + if yyr2548 || yy2arr2548 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2512 := z.EncBinary() - _ = yym2512 + yym2561 := z.EncBinary() + _ = yym2561 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) @@ -32893,15 +33430,15 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2513 := z.EncBinary() - _ = yym2513 + yym2562 := z.EncBinary() + _ = yym2562 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) } } } - if yyr2499 || yy2arr2499 { + if yyr2548 || yy2arr2548 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32914,25 +33451,25 @@ func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2514 := z.DecBinary() - _ = yym2514 + yym2563 := z.DecBinary() + _ = yym2563 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2515 := r.ContainerType() - if yyct2515 == codecSelferValueTypeMap1234 { - yyl2515 := r.ReadMapStart() - if yyl2515 == 0 { + yyct2564 := r.ContainerType() + if yyct2564 == codecSelferValueTypeMap1234 { + yyl2564 := r.ReadMapStart() + if yyl2564 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2515, d) + x.codecDecodeSelfFromMap(yyl2564, d) } - } else if yyct2515 == codecSelferValueTypeArray1234 { - yyl2515 := r.ReadArrayStart() - if yyl2515 == 0 { + } else if yyct2564 == codecSelferValueTypeArray1234 { + yyl2564 := r.ReadArrayStart() + if yyl2564 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2515, d) + x.codecDecodeSelfFromArray(yyl2564, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32944,12 +33481,12 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2516Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2516Slc - var yyhl2516 bool = l >= 0 - for yyj2516 := 0; ; yyj2516++ { - if yyhl2516 { - if yyj2516 >= l { + var yys2565Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2565Slc + var yyhl2565 bool = l >= 0 + for yyj2565 := 0; ; yyj2565++ { + if yyhl2565 { + if yyj2565 >= l { break } } else { @@ -32958,10 +33495,10 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2516Slc = r.DecodeBytes(yys2516Slc, true, true) - yys2516 := string(yys2516Slc) + yys2565Slc = r.DecodeBytes(yys2565Slc, true, true) + yys2565 := string(yys2565Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2516 { + switch yys2565 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32978,31 +33515,31 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2519 := &x.ListMeta - yym2520 := z.DecBinary() - _ = yym2520 + yyv2568 := &x.ListMeta + yym2569 := z.DecBinary() + _ = yym2569 if false { - } else if z.HasExtensions() && z.DecExt(yyv2519) { + } else if z.HasExtensions() && z.DecExt(yyv2568) { } else { - z.DecFallback(yyv2519, false) + z.DecFallback(yyv2568, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2521 := &x.Items - yym2522 := z.DecBinary() - _ = yym2522 + yyv2570 := &x.Items + yym2571 := z.DecBinary() + _ = yym2571 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2521), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2570), d) } } default: - z.DecStructFieldNotFound(-1, yys2516) - } // end switch yys2516 - } // end for yyj2516 + z.DecStructFieldNotFound(-1, yys2565) + } // end switch yys2565 + } // end for yyj2565 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33010,16 +33547,16 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2523 int - var yyb2523 bool - var yyhl2523 bool = l >= 0 - yyj2523++ - if yyhl2523 { - yyb2523 = yyj2523 > l + var yyj2572 int + var yyb2572 bool + var yyhl2572 bool = l >= 0 + yyj2572++ + if yyhl2572 { + yyb2572 = yyj2572 > l } else { - yyb2523 = r.CheckBreak() + yyb2572 = r.CheckBreak() } - if yyb2523 { + if yyb2572 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33029,13 +33566,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj2523++ - if yyhl2523 { - yyb2523 = yyj2523 > l + yyj2572++ + if yyhl2572 { + yyb2572 = yyj2572 > l } else { - yyb2523 = r.CheckBreak() + yyb2572 = r.CheckBreak() } - if yyb2523 { + if yyb2572 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33045,13 +33582,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj2523++ - if yyhl2523 { - yyb2523 = yyj2523 > l + yyj2572++ + if yyhl2572 { + yyb2572 = yyj2572 > l } else { - yyb2523 = r.CheckBreak() + yyb2572 = r.CheckBreak() } - if yyb2523 { + if yyb2572 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33059,22 +33596,22 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2526 := &x.ListMeta - yym2527 := z.DecBinary() - _ = yym2527 + yyv2575 := &x.ListMeta + yym2576 := z.DecBinary() + _ = yym2576 if false { - } else if z.HasExtensions() && z.DecExt(yyv2526) { + } else if z.HasExtensions() && z.DecExt(yyv2575) { } else { - z.DecFallback(yyv2526, false) + z.DecFallback(yyv2575, false) } } - yyj2523++ - if yyhl2523 { - yyb2523 = yyj2523 > l + yyj2572++ + if yyhl2572 { + yyb2572 = yyj2572 > l } else { - yyb2523 = r.CheckBreak() + yyb2572 = r.CheckBreak() } - if yyb2523 { + if yyb2572 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33082,26 +33619,26 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2528 := &x.Items - yym2529 := z.DecBinary() - _ = yym2529 + yyv2577 := &x.Items + yym2578 := z.DecBinary() + _ = yym2578 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2528), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2577), d) } } for { - yyj2523++ - if yyhl2523 { - yyb2523 = yyj2523 > l + yyj2572++ + if yyhl2572 { + yyb2572 = yyj2572 > l } else { - yyb2523 = r.CheckBreak() + yyb2572 = r.CheckBreak() } - if yyb2523 { + if yyb2572 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2523-1, "") + z.DecStructFieldNotFound(yyj2572-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33113,37 +33650,37 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2530 := z.EncBinary() - _ = yym2530 + yym2579 := z.EncBinary() + _ = yym2579 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2531 := !z.EncBinary() - yy2arr2531 := z.EncBasicHandle().StructToArray - var yyq2531 [4]bool - _, _, _ = yysep2531, yyq2531, yy2arr2531 - const yyr2531 bool = false - yyq2531[0] = x.Kind != "" - yyq2531[1] = x.APIVersion != "" - yyq2531[2] = true - var yynn2531 int - if yyr2531 || yy2arr2531 { + yysep2580 := !z.EncBinary() + yy2arr2580 := z.EncBasicHandle().StructToArray + var yyq2580 [4]bool + _, _, _ = yysep2580, yyq2580, yy2arr2580 + const yyr2580 bool = false + yyq2580[0] = x.Kind != "" + yyq2580[1] = x.APIVersion != "" + yyq2580[2] = true + var yynn2580 int + if yyr2580 || yy2arr2580 { r.EncodeArrayStart(4) } else { - yynn2531 = 1 - for _, b := range yyq2531 { + yynn2580 = 1 + for _, b := range yyq2580 { if b { - yynn2531++ + yynn2580++ } } - r.EncodeMapStart(yynn2531) - yynn2531 = 0 + r.EncodeMapStart(yynn2580) + yynn2580 = 0 } - if yyr2531 || yy2arr2531 { + if yyr2580 || yy2arr2580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2531[0] { - yym2533 := z.EncBinary() - _ = yym2533 + if yyq2580[0] { + yym2582 := z.EncBinary() + _ = yym2582 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33152,23 +33689,23 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2531[0] { + if yyq2580[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2534 := z.EncBinary() - _ = yym2534 + yym2583 := z.EncBinary() + _ = yym2583 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2531 || yy2arr2531 { + if yyr2580 || yy2arr2580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2531[1] { - yym2536 := z.EncBinary() - _ = yym2536 + if yyq2580[1] { + yym2585 := z.EncBinary() + _ = yym2585 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33177,54 +33714,54 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2531[1] { + if yyq2580[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2537 := z.EncBinary() - _ = yym2537 + yym2586 := z.EncBinary() + _ = yym2586 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2531 || yy2arr2531 { + if yyr2580 || yy2arr2580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2531[2] { - yy2539 := &x.ListMeta - yym2540 := z.EncBinary() - _ = yym2540 + if yyq2580[2] { + yy2588 := &x.ListMeta + yym2589 := z.EncBinary() + _ = yym2589 if false { - } else if z.HasExtensions() && z.EncExt(yy2539) { + } else if z.HasExtensions() && z.EncExt(yy2588) { } else { - z.EncFallback(yy2539) + z.EncFallback(yy2588) } } else { r.EncodeNil() } } else { - if yyq2531[2] { + if yyq2580[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2541 := &x.ListMeta - yym2542 := z.EncBinary() - _ = yym2542 + yy2590 := &x.ListMeta + yym2591 := z.EncBinary() + _ = yym2591 if false { - } else if z.HasExtensions() && z.EncExt(yy2541) { + } else if z.HasExtensions() && z.EncExt(yy2590) { } else { - z.EncFallback(yy2541) + z.EncFallback(yy2590) } } } - if yyr2531 || yy2arr2531 { + if yyr2580 || yy2arr2580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2544 := z.EncBinary() - _ = yym2544 + yym2593 := z.EncBinary() + _ = yym2593 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -33237,15 +33774,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2545 := z.EncBinary() - _ = yym2545 + yym2594 := z.EncBinary() + _ = yym2594 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr2531 || yy2arr2531 { + if yyr2580 || yy2arr2580 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33258,25 +33795,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2546 := z.DecBinary() - _ = yym2546 + yym2595 := z.DecBinary() + _ = yym2595 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2547 := r.ContainerType() - if yyct2547 == codecSelferValueTypeMap1234 { - yyl2547 := r.ReadMapStart() - if yyl2547 == 0 { + yyct2596 := r.ContainerType() + if yyct2596 == codecSelferValueTypeMap1234 { + yyl2596 := r.ReadMapStart() + if yyl2596 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2547, d) + x.codecDecodeSelfFromMap(yyl2596, d) } - } else if yyct2547 == codecSelferValueTypeArray1234 { - yyl2547 := r.ReadArrayStart() - if yyl2547 == 0 { + } else if yyct2596 == codecSelferValueTypeArray1234 { + yyl2596 := r.ReadArrayStart() + if yyl2596 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2547, d) + x.codecDecodeSelfFromArray(yyl2596, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33288,12 +33825,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2548Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2548Slc - var yyhl2548 bool = l >= 0 - for yyj2548 := 0; ; yyj2548++ { - if yyhl2548 { - if yyj2548 >= l { + var yys2597Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2597Slc + var yyhl2597 bool = l >= 0 + for yyj2597 := 0; ; yyj2597++ { + if yyhl2597 { + if yyj2597 >= l { break } } else { @@ -33302,10 +33839,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2548Slc = r.DecodeBytes(yys2548Slc, true, true) - yys2548 := string(yys2548Slc) + yys2597Slc = r.DecodeBytes(yys2597Slc, true, true) + yys2597 := string(yys2597Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2548 { + switch yys2597 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33322,31 +33859,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2551 := &x.ListMeta - yym2552 := z.DecBinary() - _ = yym2552 + yyv2600 := &x.ListMeta + yym2601 := z.DecBinary() + _ = yym2601 if false { - } else if z.HasExtensions() && z.DecExt(yyv2551) { + } else if z.HasExtensions() && z.DecExt(yyv2600) { } else { - z.DecFallback(yyv2551, false) + z.DecFallback(yyv2600, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2553 := &x.Items - yym2554 := z.DecBinary() - _ = yym2554 + yyv2602 := &x.Items + yym2603 := z.DecBinary() + _ = yym2603 if false { } else { - h.decSliceService((*[]Service)(yyv2553), d) + h.decSliceService((*[]Service)(yyv2602), d) } } default: - z.DecStructFieldNotFound(-1, yys2548) - } // end switch yys2548 - } // end for yyj2548 + z.DecStructFieldNotFound(-1, yys2597) + } // end switch yys2597 + } // end for yyj2597 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33354,16 +33891,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2555 int - var yyb2555 bool - var yyhl2555 bool = l >= 0 - yyj2555++ - if yyhl2555 { - yyb2555 = yyj2555 > l + var yyj2604 int + var yyb2604 bool + var yyhl2604 bool = l >= 0 + yyj2604++ + if yyhl2604 { + yyb2604 = yyj2604 > l } else { - yyb2555 = r.CheckBreak() + yyb2604 = r.CheckBreak() } - if yyb2555 { + if yyb2604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33373,13 +33910,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2555++ - if yyhl2555 { - yyb2555 = yyj2555 > l + yyj2604++ + if yyhl2604 { + yyb2604 = yyj2604 > l } else { - yyb2555 = r.CheckBreak() + yyb2604 = r.CheckBreak() } - if yyb2555 { + if yyb2604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33389,13 +33926,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2555++ - if yyhl2555 { - yyb2555 = yyj2555 > l + yyj2604++ + if yyhl2604 { + yyb2604 = yyj2604 > l } else { - yyb2555 = r.CheckBreak() + yyb2604 = r.CheckBreak() } - if yyb2555 { + if yyb2604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33403,22 +33940,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2558 := &x.ListMeta - yym2559 := z.DecBinary() - _ = yym2559 + yyv2607 := &x.ListMeta + yym2608 := z.DecBinary() + _ = yym2608 if false { - } else if z.HasExtensions() && z.DecExt(yyv2558) { + } else if z.HasExtensions() && z.DecExt(yyv2607) { } else { - z.DecFallback(yyv2558, false) + z.DecFallback(yyv2607, false) } } - yyj2555++ - if yyhl2555 { - yyb2555 = yyj2555 > l + yyj2604++ + if yyhl2604 { + yyb2604 = yyj2604 > l } else { - yyb2555 = r.CheckBreak() + yyb2604 = r.CheckBreak() } - if yyb2555 { + if yyb2604 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33426,26 +33963,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2560 := &x.Items - yym2561 := z.DecBinary() - _ = yym2561 + yyv2609 := &x.Items + yym2610 := z.DecBinary() + _ = yym2610 if false { } else { - h.decSliceService((*[]Service)(yyv2560), d) + h.decSliceService((*[]Service)(yyv2609), d) } } for { - yyj2555++ - if yyhl2555 { - yyb2555 = yyj2555 > l + yyj2604++ + if yyhl2604 { + yyb2604 = yyj2604 > l } else { - yyb2555 = r.CheckBreak() + yyb2604 = r.CheckBreak() } - if yyb2555 { + if yyb2604 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2555-1, "") + z.DecStructFieldNotFound(yyj2604-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33454,8 +33991,8 @@ func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2562 := z.EncBinary() - _ = yym2562 + yym2611 := z.EncBinary() + _ = yym2611 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -33467,8 +34004,8 @@ func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2563 := z.DecBinary() - _ = yym2563 + yym2612 := z.DecBinary() + _ = yym2612 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -33480,8 +34017,8 @@ func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2564 := z.EncBinary() - _ = yym2564 + yym2613 := z.EncBinary() + _ = yym2613 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -33493,8 +34030,8 @@ func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2565 := z.DecBinary() - _ = yym2565 + yym2614 := z.DecBinary() + _ = yym2614 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -33509,48 +34046,48 @@ func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2566 := z.EncBinary() - _ = yym2566 + yym2615 := z.EncBinary() + _ = yym2615 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2567 := !z.EncBinary() - yy2arr2567 := z.EncBasicHandle().StructToArray - var yyq2567 [1]bool - _, _, _ = yysep2567, yyq2567, yy2arr2567 - const yyr2567 bool = false - yyq2567[0] = true - var yynn2567 int - if yyr2567 || yy2arr2567 { + yysep2616 := !z.EncBinary() + yy2arr2616 := z.EncBasicHandle().StructToArray + var yyq2616 [1]bool + _, _, _ = yysep2616, yyq2616, yy2arr2616 + const yyr2616 bool = false + yyq2616[0] = true + var yynn2616 int + if yyr2616 || yy2arr2616 { r.EncodeArrayStart(1) } else { - yynn2567 = 0 - for _, b := range yyq2567 { + yynn2616 = 0 + for _, b := range yyq2616 { if b { - yynn2567++ + yynn2616++ } } - r.EncodeMapStart(yynn2567) - yynn2567 = 0 + r.EncodeMapStart(yynn2616) + yynn2616 = 0 } - if yyr2567 || yy2arr2567 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2567[0] { - yy2569 := &x.LoadBalancer - yy2569.CodecEncodeSelf(e) + if yyq2616[0] { + yy2618 := &x.LoadBalancer + yy2618.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2567[0] { + if yyq2616[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancer")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2570 := &x.LoadBalancer - yy2570.CodecEncodeSelf(e) + yy2619 := &x.LoadBalancer + yy2619.CodecEncodeSelf(e) } } - if yyr2567 || yy2arr2567 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33563,25 +34100,25 @@ func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2571 := z.DecBinary() - _ = yym2571 + yym2620 := z.DecBinary() + _ = yym2620 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2572 := r.ContainerType() - if yyct2572 == codecSelferValueTypeMap1234 { - yyl2572 := r.ReadMapStart() - if yyl2572 == 0 { + yyct2621 := r.ContainerType() + if yyct2621 == codecSelferValueTypeMap1234 { + yyl2621 := r.ReadMapStart() + if yyl2621 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2572, d) + x.codecDecodeSelfFromMap(yyl2621, d) } - } else if yyct2572 == codecSelferValueTypeArray1234 { - yyl2572 := r.ReadArrayStart() - if yyl2572 == 0 { + } else if yyct2621 == codecSelferValueTypeArray1234 { + yyl2621 := r.ReadArrayStart() + if yyl2621 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2572, d) + x.codecDecodeSelfFromArray(yyl2621, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33593,12 +34130,12 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2573Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2573Slc - var yyhl2573 bool = l >= 0 - for yyj2573 := 0; ; yyj2573++ { - if yyhl2573 { - if yyj2573 >= l { + var yys2622Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2622Slc + var yyhl2622 bool = l >= 0 + for yyj2622 := 0; ; yyj2622++ { + if yyhl2622 { + if yyj2622 >= l { break } } else { @@ -33607,21 +34144,21 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2573Slc = r.DecodeBytes(yys2573Slc, true, true) - yys2573 := string(yys2573Slc) + yys2622Slc = r.DecodeBytes(yys2622Slc, true, true) + yys2622 := string(yys2622Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2573 { + switch yys2622 { case "loadBalancer": if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2574 := &x.LoadBalancer - yyv2574.CodecDecodeSelf(d) + yyv2623 := &x.LoadBalancer + yyv2623.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2573) - } // end switch yys2573 - } // end for yyj2573 + z.DecStructFieldNotFound(-1, yys2622) + } // end switch yys2622 + } // end for yyj2622 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33629,16 +34166,16 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2575 int - var yyb2575 bool - var yyhl2575 bool = l >= 0 - yyj2575++ - if yyhl2575 { - yyb2575 = yyj2575 > l + var yyj2624 int + var yyb2624 bool + var yyhl2624 bool = l >= 0 + yyj2624++ + if yyhl2624 { + yyb2624 = yyj2624 > l } else { - yyb2575 = r.CheckBreak() + yyb2624 = r.CheckBreak() } - if yyb2575 { + if yyb2624 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33646,21 +34183,21 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2576 := &x.LoadBalancer - yyv2576.CodecDecodeSelf(d) + yyv2625 := &x.LoadBalancer + yyv2625.CodecDecodeSelf(d) } for { - yyj2575++ - if yyhl2575 { - yyb2575 = yyj2575 > l + yyj2624++ + if yyhl2624 { + yyb2624 = yyj2624 > l } else { - yyb2575 = r.CheckBreak() + yyb2624 = r.CheckBreak() } - if yyb2575 { + if yyb2624 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2575-1, "") + z.DecStructFieldNotFound(yyj2624-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33672,38 +34209,38 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2577 := z.EncBinary() - _ = yym2577 + yym2626 := z.EncBinary() + _ = yym2626 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2578 := !z.EncBinary() - yy2arr2578 := z.EncBasicHandle().StructToArray - var yyq2578 [1]bool - _, _, _ = yysep2578, yyq2578, yy2arr2578 - const yyr2578 bool = false - yyq2578[0] = len(x.Ingress) != 0 - var yynn2578 int - if yyr2578 || yy2arr2578 { + yysep2627 := !z.EncBinary() + yy2arr2627 := z.EncBasicHandle().StructToArray + var yyq2627 [1]bool + _, _, _ = yysep2627, yyq2627, yy2arr2627 + const yyr2627 bool = false + yyq2627[0] = len(x.Ingress) != 0 + var yynn2627 int + if yyr2627 || yy2arr2627 { r.EncodeArrayStart(1) } else { - yynn2578 = 0 - for _, b := range yyq2578 { + yynn2627 = 0 + for _, b := range yyq2627 { if b { - yynn2578++ + yynn2627++ } } - r.EncodeMapStart(yynn2578) - yynn2578 = 0 + r.EncodeMapStart(yynn2627) + yynn2627 = 0 } - if yyr2578 || yy2arr2578 { + if yyr2627 || yy2arr2627 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2578[0] { + if yyq2627[0] { if x.Ingress == nil { r.EncodeNil() } else { - yym2580 := z.EncBinary() - _ = yym2580 + yym2629 := z.EncBinary() + _ = yym2629 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -33713,15 +34250,15 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2578[0] { + if yyq2627[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym2581 := z.EncBinary() - _ = yym2581 + yym2630 := z.EncBinary() + _ = yym2630 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -33729,7 +34266,7 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2578 || yy2arr2578 { + if yyr2627 || yy2arr2627 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33742,25 +34279,25 @@ func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2582 := z.DecBinary() - _ = yym2582 + yym2631 := z.DecBinary() + _ = yym2631 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2583 := r.ContainerType() - if yyct2583 == codecSelferValueTypeMap1234 { - yyl2583 := r.ReadMapStart() - if yyl2583 == 0 { + yyct2632 := r.ContainerType() + if yyct2632 == codecSelferValueTypeMap1234 { + yyl2632 := r.ReadMapStart() + if yyl2632 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2583, d) + x.codecDecodeSelfFromMap(yyl2632, d) } - } else if yyct2583 == codecSelferValueTypeArray1234 { - yyl2583 := r.ReadArrayStart() - if yyl2583 == 0 { + } else if yyct2632 == codecSelferValueTypeArray1234 { + yyl2632 := r.ReadArrayStart() + if yyl2632 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2583, d) + x.codecDecodeSelfFromArray(yyl2632, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33772,12 +34309,12 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2584Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2584Slc - var yyhl2584 bool = l >= 0 - for yyj2584 := 0; ; yyj2584++ { - if yyhl2584 { - if yyj2584 >= l { + var yys2633Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2633Slc + var yyhl2633 bool = l >= 0 + for yyj2633 := 0; ; yyj2633++ { + if yyhl2633 { + if yyj2633 >= l { break } } else { @@ -33786,26 +34323,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2584Slc = r.DecodeBytes(yys2584Slc, true, true) - yys2584 := string(yys2584Slc) + yys2633Slc = r.DecodeBytes(yys2633Slc, true, true) + yys2633 := string(yys2633Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2584 { + switch yys2633 { case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2585 := &x.Ingress - yym2586 := z.DecBinary() - _ = yym2586 + yyv2634 := &x.Ingress + yym2635 := z.DecBinary() + _ = yym2635 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2585), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2634), d) } } default: - z.DecStructFieldNotFound(-1, yys2584) - } // end switch yys2584 - } // end for yyj2584 + z.DecStructFieldNotFound(-1, yys2633) + } // end switch yys2633 + } // end for yyj2633 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33813,16 +34350,16 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2587 int - var yyb2587 bool - var yyhl2587 bool = l >= 0 - yyj2587++ - if yyhl2587 { - yyb2587 = yyj2587 > l + var yyj2636 int + var yyb2636 bool + var yyhl2636 bool = l >= 0 + yyj2636++ + if yyhl2636 { + yyb2636 = yyj2636 > l } else { - yyb2587 = r.CheckBreak() + yyb2636 = r.CheckBreak() } - if yyb2587 { + if yyb2636 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33830,26 +34367,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2588 := &x.Ingress - yym2589 := z.DecBinary() - _ = yym2589 + yyv2637 := &x.Ingress + yym2638 := z.DecBinary() + _ = yym2638 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2588), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2637), d) } } for { - yyj2587++ - if yyhl2587 { - yyb2587 = yyj2587 > l + yyj2636++ + if yyhl2636 { + yyb2636 = yyj2636 > l } else { - yyb2587 = r.CheckBreak() + yyb2636 = r.CheckBreak() } - if yyb2587 { + if yyb2636 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2587-1, "") + z.DecStructFieldNotFound(yyj2636-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33861,36 +34398,36 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2590 := z.EncBinary() - _ = yym2590 + yym2639 := z.EncBinary() + _ = yym2639 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2591 := !z.EncBinary() - yy2arr2591 := z.EncBasicHandle().StructToArray - var yyq2591 [2]bool - _, _, _ = yysep2591, yyq2591, yy2arr2591 - const yyr2591 bool = false - yyq2591[0] = x.IP != "" - yyq2591[1] = x.Hostname != "" - var yynn2591 int - if yyr2591 || yy2arr2591 { + yysep2640 := !z.EncBinary() + yy2arr2640 := z.EncBasicHandle().StructToArray + var yyq2640 [2]bool + _, _, _ = yysep2640, yyq2640, yy2arr2640 + const yyr2640 bool = false + yyq2640[0] = x.IP != "" + yyq2640[1] = x.Hostname != "" + var yynn2640 int + if yyr2640 || yy2arr2640 { r.EncodeArrayStart(2) } else { - yynn2591 = 0 - for _, b := range yyq2591 { + yynn2640 = 0 + for _, b := range yyq2640 { if b { - yynn2591++ + yynn2640++ } } - r.EncodeMapStart(yynn2591) - yynn2591 = 0 + r.EncodeMapStart(yynn2640) + yynn2640 = 0 } - if yyr2591 || yy2arr2591 { + if yyr2640 || yy2arr2640 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2591[0] { - yym2593 := z.EncBinary() - _ = yym2593 + if yyq2640[0] { + yym2642 := z.EncBinary() + _ = yym2642 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -33899,23 +34436,23 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2591[0] { + if yyq2640[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2594 := z.EncBinary() - _ = yym2594 + yym2643 := z.EncBinary() + _ = yym2643 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } } - if yyr2591 || yy2arr2591 { + if yyr2640 || yy2arr2640 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2591[1] { - yym2596 := z.EncBinary() - _ = yym2596 + if yyq2640[1] { + yym2645 := z.EncBinary() + _ = yym2645 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -33924,19 +34461,19 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2591[1] { + if yyq2640[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2597 := z.EncBinary() - _ = yym2597 + yym2646 := z.EncBinary() + _ = yym2646 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2591 || yy2arr2591 { + if yyr2640 || yy2arr2640 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33949,25 +34486,25 @@ func (x *LoadBalancerIngress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2598 := z.DecBinary() - _ = yym2598 + yym2647 := z.DecBinary() + _ = yym2647 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2599 := r.ContainerType() - if yyct2599 == codecSelferValueTypeMap1234 { - yyl2599 := r.ReadMapStart() - if yyl2599 == 0 { + yyct2648 := r.ContainerType() + if yyct2648 == codecSelferValueTypeMap1234 { + yyl2648 := r.ReadMapStart() + if yyl2648 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2599, d) + x.codecDecodeSelfFromMap(yyl2648, d) } - } else if yyct2599 == codecSelferValueTypeArray1234 { - yyl2599 := r.ReadArrayStart() - if yyl2599 == 0 { + } else if yyct2648 == codecSelferValueTypeArray1234 { + yyl2648 := r.ReadArrayStart() + if yyl2648 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2599, d) + x.codecDecodeSelfFromArray(yyl2648, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33979,12 +34516,12 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2600Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2600Slc - var yyhl2600 bool = l >= 0 - for yyj2600 := 0; ; yyj2600++ { - if yyhl2600 { - if yyj2600 >= l { + var yys2649Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2649Slc + var yyhl2649 bool = l >= 0 + for yyj2649 := 0; ; yyj2649++ { + if yyhl2649 { + if yyj2649 >= l { break } } else { @@ -33993,10 +34530,10 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2600Slc = r.DecodeBytes(yys2600Slc, true, true) - yys2600 := string(yys2600Slc) + yys2649Slc = r.DecodeBytes(yys2649Slc, true, true) + yys2649 := string(yys2649Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2600 { + switch yys2649 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -34010,9 +34547,9 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Hostname = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2600) - } // end switch yys2600 - } // end for yyj2600 + z.DecStructFieldNotFound(-1, yys2649) + } // end switch yys2649 + } // end for yyj2649 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34020,16 +34557,16 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2603 int - var yyb2603 bool - var yyhl2603 bool = l >= 0 - yyj2603++ - if yyhl2603 { - yyb2603 = yyj2603 > l + var yyj2652 int + var yyb2652 bool + var yyhl2652 bool = l >= 0 + yyj2652++ + if yyhl2652 { + yyb2652 = yyj2652 > l } else { - yyb2603 = r.CheckBreak() + yyb2652 = r.CheckBreak() } - if yyb2603 { + if yyb2652 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34039,13 +34576,13 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.IP = string(r.DecodeString()) } - yyj2603++ - if yyhl2603 { - yyb2603 = yyj2603 > l + yyj2652++ + if yyhl2652 { + yyb2652 = yyj2652 > l } else { - yyb2603 = r.CheckBreak() + yyb2652 = r.CheckBreak() } - if yyb2603 { + if yyb2652 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34056,17 +34593,17 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Hostname = string(r.DecodeString()) } for { - yyj2603++ - if yyhl2603 { - yyb2603 = yyj2603 > l + yyj2652++ + if yyhl2652 { + yyb2652 = yyj2652 > l } else { - yyb2603 = r.CheckBreak() + yyb2652 = r.CheckBreak() } - if yyb2603 { + if yyb2652 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2603-1, "") + z.DecStructFieldNotFound(yyj2652-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34078,57 +34615,57 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2606 := z.EncBinary() - _ = yym2606 + yym2655 := z.EncBinary() + _ = yym2655 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2607 := !z.EncBinary() - yy2arr2607 := z.EncBasicHandle().StructToArray - var yyq2607 [9]bool - _, _, _ = yysep2607, yyq2607, yy2arr2607 - const yyr2607 bool = false - yyq2607[0] = x.Type != "" - yyq2607[3] = x.ClusterIP != "" - yyq2607[5] = len(x.ExternalIPs) != 0 - yyq2607[6] = x.LoadBalancerIP != "" - yyq2607[7] = x.SessionAffinity != "" - yyq2607[8] = len(x.LoadBalancerSourceRanges) != 0 - var yynn2607 int - if yyr2607 || yy2arr2607 { + yysep2656 := !z.EncBinary() + yy2arr2656 := z.EncBasicHandle().StructToArray + var yyq2656 [9]bool + _, _, _ = yysep2656, yyq2656, yy2arr2656 + const yyr2656 bool = false + yyq2656[0] = x.Type != "" + yyq2656[3] = x.ClusterIP != "" + yyq2656[5] = len(x.ExternalIPs) != 0 + yyq2656[6] = x.LoadBalancerIP != "" + yyq2656[7] = x.SessionAffinity != "" + yyq2656[8] = len(x.LoadBalancerSourceRanges) != 0 + var yynn2656 int + if yyr2656 || yy2arr2656 { r.EncodeArrayStart(9) } else { - yynn2607 = 3 - for _, b := range yyq2607 { + yynn2656 = 3 + for _, b := range yyq2656 { if b { - yynn2607++ + yynn2656++ } } - r.EncodeMapStart(yynn2607) - yynn2607 = 0 + r.EncodeMapStart(yynn2656) + yynn2656 = 0 } - if yyr2607 || yy2arr2607 { + if yyr2656 || yy2arr2656 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2607[0] { + if yyq2656[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2607[0] { + if yyq2656[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr2607 || yy2arr2607 { + if yyr2656 || yy2arr2656 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2610 := z.EncBinary() - _ = yym2610 + yym2659 := z.EncBinary() + _ = yym2659 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) @@ -34141,21 +34678,21 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2611 := z.EncBinary() - _ = yym2611 + yym2660 := z.EncBinary() + _ = yym2660 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) } } } - if yyr2607 || yy2arr2607 { + if yyr2656 || yy2arr2656 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Selector == nil { r.EncodeNil() } else { - yym2613 := z.EncBinary() - _ = yym2613 + yym2662 := z.EncBinary() + _ = yym2662 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -34168,19 +34705,19 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Selector == nil { r.EncodeNil() } else { - yym2614 := z.EncBinary() - _ = yym2614 + yym2663 := z.EncBinary() + _ = yym2663 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) } } } - if yyr2607 || yy2arr2607 { + if yyr2656 || yy2arr2656 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2607[3] { - yym2616 := z.EncBinary() - _ = yym2616 + if yyq2656[3] { + yym2665 := z.EncBinary() + _ = yym2665 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) @@ -34189,22 +34726,22 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2607[3] { + if yyq2656[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2617 := z.EncBinary() - _ = yym2617 + yym2666 := z.EncBinary() + _ = yym2666 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) } } } - if yyr2607 || yy2arr2607 { + if yyr2656 || yy2arr2656 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2619 := z.EncBinary() - _ = yym2619 + yym2668 := z.EncBinary() + _ = yym2668 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) @@ -34213,21 +34750,21 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ExternalName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2620 := z.EncBinary() - _ = yym2620 + yym2669 := z.EncBinary() + _ = yym2669 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) } } - if yyr2607 || yy2arr2607 { + if yyr2656 || yy2arr2656 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2607[5] { + if yyq2656[5] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2622 := z.EncBinary() - _ = yym2622 + yym2671 := z.EncBinary() + _ = yym2671 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -34237,15 +34774,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2607[5] { + if yyq2656[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2623 := z.EncBinary() - _ = yym2623 + yym2672 := z.EncBinary() + _ = yym2672 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -34253,11 +34790,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2607 || yy2arr2607 { + if yyr2656 || yy2arr2656 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2607[6] { - yym2625 := z.EncBinary() - _ = yym2625 + if yyq2656[6] { + yym2674 := z.EncBinary() + _ = yym2674 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -34266,41 +34803,41 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2607[6] { + if yyq2656[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2626 := z.EncBinary() - _ = yym2626 + yym2675 := z.EncBinary() + _ = yym2675 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) } } } - if yyr2607 || yy2arr2607 { + if yyr2656 || yy2arr2656 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2607[7] { + if yyq2656[7] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2607[7] { + if yyq2656[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.SessionAffinity.CodecEncodeSelf(e) } } - if yyr2607 || yy2arr2607 { + if yyr2656 || yy2arr2656 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2607[8] { + if yyq2656[8] { if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2629 := z.EncBinary() - _ = yym2629 + yym2678 := z.EncBinary() + _ = yym2678 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -34310,15 +34847,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2607[8] { + if yyq2656[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerSourceRanges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2630 := z.EncBinary() - _ = yym2630 + yym2679 := z.EncBinary() + _ = yym2679 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -34326,7 +34863,7 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2607 || yy2arr2607 { + if yyr2656 || yy2arr2656 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34339,25 +34876,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2631 := z.DecBinary() - _ = yym2631 + yym2680 := z.DecBinary() + _ = yym2680 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2632 := r.ContainerType() - if yyct2632 == codecSelferValueTypeMap1234 { - yyl2632 := r.ReadMapStart() - if yyl2632 == 0 { + yyct2681 := r.ContainerType() + if yyct2681 == codecSelferValueTypeMap1234 { + yyl2681 := r.ReadMapStart() + if yyl2681 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2632, d) + x.codecDecodeSelfFromMap(yyl2681, d) } - } else if yyct2632 == codecSelferValueTypeArray1234 { - yyl2632 := r.ReadArrayStart() - if yyl2632 == 0 { + } else if yyct2681 == codecSelferValueTypeArray1234 { + yyl2681 := r.ReadArrayStart() + if yyl2681 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2632, d) + x.codecDecodeSelfFromArray(yyl2681, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34369,12 +34906,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2633Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2633Slc - var yyhl2633 bool = l >= 0 - for yyj2633 := 0; ; yyj2633++ { - if yyhl2633 { - if yyj2633 >= l { + var yys2682Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2682Slc + var yyhl2682 bool = l >= 0 + for yyj2682 := 0; ; yyj2682++ { + if yyhl2682 { + if yyj2682 >= l { break } } else { @@ -34383,10 +34920,10 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2633Slc = r.DecodeBytes(yys2633Slc, true, true) - yys2633 := string(yys2633Slc) + yys2682Slc = r.DecodeBytes(yys2682Slc, true, true) + yys2682 := string(yys2682Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2633 { + switch yys2682 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -34397,24 +34934,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2635 := &x.Ports - yym2636 := z.DecBinary() - _ = yym2636 + yyv2684 := &x.Ports + yym2685 := z.DecBinary() + _ = yym2685 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2635), d) + h.decSliceServicePort((*[]ServicePort)(yyv2684), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2637 := &x.Selector - yym2638 := z.DecBinary() - _ = yym2638 + yyv2686 := &x.Selector + yym2687 := z.DecBinary() + _ = yym2687 if false { } else { - z.F.DecMapStringStringX(yyv2637, false, d) + z.F.DecMapStringStringX(yyv2686, false, d) } } case "clusterIP": @@ -34433,12 +34970,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2641 := &x.ExternalIPs - yym2642 := z.DecBinary() - _ = yym2642 + yyv2690 := &x.ExternalIPs + yym2691 := z.DecBinary() + _ = yym2691 if false { } else { - z.F.DecSliceStringX(yyv2641, false, d) + z.F.DecSliceStringX(yyv2690, false, d) } } case "loadBalancerIP": @@ -34457,18 +34994,18 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2645 := &x.LoadBalancerSourceRanges - yym2646 := z.DecBinary() - _ = yym2646 + yyv2694 := &x.LoadBalancerSourceRanges + yym2695 := z.DecBinary() + _ = yym2695 if false { } else { - z.F.DecSliceStringX(yyv2645, false, d) + z.F.DecSliceStringX(yyv2694, false, d) } } default: - z.DecStructFieldNotFound(-1, yys2633) - } // end switch yys2633 - } // end for yyj2633 + z.DecStructFieldNotFound(-1, yys2682) + } // end switch yys2682 + } // end for yyj2682 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34476,16 +35013,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2647 int - var yyb2647 bool - var yyhl2647 bool = l >= 0 - yyj2647++ - if yyhl2647 { - yyb2647 = yyj2647 > l + var yyj2696 int + var yyb2696 bool + var yyhl2696 bool = l >= 0 + yyj2696++ + if yyhl2696 { + yyb2696 = yyj2696 > l } else { - yyb2647 = r.CheckBreak() + yyb2696 = r.CheckBreak() } - if yyb2647 { + if yyb2696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34495,13 +35032,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2647++ - if yyhl2647 { - yyb2647 = yyj2647 > l + yyj2696++ + if yyhl2696 { + yyb2696 = yyj2696 > l } else { - yyb2647 = r.CheckBreak() + yyb2696 = r.CheckBreak() } - if yyb2647 { + if yyb2696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34509,21 +35046,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2649 := &x.Ports - yym2650 := z.DecBinary() - _ = yym2650 + yyv2698 := &x.Ports + yym2699 := z.DecBinary() + _ = yym2699 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2649), d) + h.decSliceServicePort((*[]ServicePort)(yyv2698), d) } } - yyj2647++ - if yyhl2647 { - yyb2647 = yyj2647 > l + yyj2696++ + if yyhl2696 { + yyb2696 = yyj2696 > l } else { - yyb2647 = r.CheckBreak() + yyb2696 = r.CheckBreak() } - if yyb2647 { + if yyb2696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34531,21 +35068,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2651 := &x.Selector - yym2652 := z.DecBinary() - _ = yym2652 + yyv2700 := &x.Selector + yym2701 := z.DecBinary() + _ = yym2701 if false { } else { - z.F.DecMapStringStringX(yyv2651, false, d) + z.F.DecMapStringStringX(yyv2700, false, d) } } - yyj2647++ - if yyhl2647 { - yyb2647 = yyj2647 > l + yyj2696++ + if yyhl2696 { + yyb2696 = yyj2696 > l } else { - yyb2647 = r.CheckBreak() + yyb2696 = r.CheckBreak() } - if yyb2647 { + if yyb2696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34555,13 +35092,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2647++ - if yyhl2647 { - yyb2647 = yyj2647 > l + yyj2696++ + if yyhl2696 { + yyb2696 = yyj2696 > l } else { - yyb2647 = r.CheckBreak() + yyb2696 = r.CheckBreak() } - if yyb2647 { + if yyb2696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34571,13 +35108,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalName = string(r.DecodeString()) } - yyj2647++ - if yyhl2647 { - yyb2647 = yyj2647 > l + yyj2696++ + if yyhl2696 { + yyb2696 = yyj2696 > l } else { - yyb2647 = r.CheckBreak() + yyb2696 = r.CheckBreak() } - if yyb2647 { + if yyb2696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34585,21 +35122,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2655 := &x.ExternalIPs - yym2656 := z.DecBinary() - _ = yym2656 + yyv2704 := &x.ExternalIPs + yym2705 := z.DecBinary() + _ = yym2705 if false { } else { - z.F.DecSliceStringX(yyv2655, false, d) + z.F.DecSliceStringX(yyv2704, false, d) } } - yyj2647++ - if yyhl2647 { - yyb2647 = yyj2647 > l + yyj2696++ + if yyhl2696 { + yyb2696 = yyj2696 > l } else { - yyb2647 = r.CheckBreak() + yyb2696 = r.CheckBreak() } - if yyb2647 { + if yyb2696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34609,13 +35146,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj2647++ - if yyhl2647 { - yyb2647 = yyj2647 > l + yyj2696++ + if yyhl2696 { + yyb2696 = yyj2696 > l } else { - yyb2647 = r.CheckBreak() + yyb2696 = r.CheckBreak() } - if yyb2647 { + if yyb2696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34625,13 +35162,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj2647++ - if yyhl2647 { - yyb2647 = yyj2647 > l + yyj2696++ + if yyhl2696 { + yyb2696 = yyj2696 > l } else { - yyb2647 = r.CheckBreak() + yyb2696 = r.CheckBreak() } - if yyb2647 { + if yyb2696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34639,26 +35176,26 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2659 := &x.LoadBalancerSourceRanges - yym2660 := z.DecBinary() - _ = yym2660 + yyv2708 := &x.LoadBalancerSourceRanges + yym2709 := z.DecBinary() + _ = yym2709 if false { } else { - z.F.DecSliceStringX(yyv2659, false, d) + z.F.DecSliceStringX(yyv2708, false, d) } } for { - yyj2647++ - if yyhl2647 { - yyb2647 = yyj2647 > l + yyj2696++ + if yyhl2696 { + yyb2696 = yyj2696 > l } else { - yyb2647 = r.CheckBreak() + yyb2696 = r.CheckBreak() } - if yyb2647 { + if yyb2696 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2647-1, "") + z.DecStructFieldNotFound(yyj2696-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34670,33 +35207,33 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2661 := z.EncBinary() - _ = yym2661 + yym2710 := z.EncBinary() + _ = yym2710 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2662 := !z.EncBinary() - yy2arr2662 := z.EncBasicHandle().StructToArray - var yyq2662 [5]bool - _, _, _ = yysep2662, yyq2662, yy2arr2662 - const yyr2662 bool = false - var yynn2662 int - if yyr2662 || yy2arr2662 { + yysep2711 := !z.EncBinary() + yy2arr2711 := z.EncBasicHandle().StructToArray + var yyq2711 [5]bool + _, _, _ = yysep2711, yyq2711, yy2arr2711 + const yyr2711 bool = false + var yynn2711 int + if yyr2711 || yy2arr2711 { r.EncodeArrayStart(5) } else { - yynn2662 = 5 - for _, b := range yyq2662 { + yynn2711 = 5 + for _, b := range yyq2711 { if b { - yynn2662++ + yynn2711++ } } - r.EncodeMapStart(yynn2662) - yynn2662 = 0 + r.EncodeMapStart(yynn2711) + yynn2711 = 0 } - if yyr2662 || yy2arr2662 { + if yyr2711 || yy2arr2711 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2664 := z.EncBinary() - _ = yym2664 + yym2713 := z.EncBinary() + _ = yym2713 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -34705,14 +35242,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2665 := z.EncBinary() - _ = yym2665 + yym2714 := z.EncBinary() + _ = yym2714 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2662 || yy2arr2662 { + if yyr2711 || yy2arr2711 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -34721,10 +35258,10 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2662 || yy2arr2662 { + if yyr2711 || yy2arr2711 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2668 := z.EncBinary() - _ = yym2668 + yym2717 := z.EncBinary() + _ = yym2717 if false { } else { r.EncodeInt(int64(x.Port)) @@ -34733,44 +35270,44 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2669 := z.EncBinary() - _ = yym2669 + yym2718 := z.EncBinary() + _ = yym2718 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2662 || yy2arr2662 { + if yyr2711 || yy2arr2711 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2671 := &x.TargetPort - yym2672 := z.EncBinary() - _ = yym2672 + yy2720 := &x.TargetPort + yym2721 := z.EncBinary() + _ = yym2721 if false { - } else if z.HasExtensions() && z.EncExt(yy2671) { - } else if !yym2672 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2671) + } else if z.HasExtensions() && z.EncExt(yy2720) { + } else if !yym2721 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2720) } else { - z.EncFallback(yy2671) + z.EncFallback(yy2720) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2673 := &x.TargetPort - yym2674 := z.EncBinary() - _ = yym2674 + yy2722 := &x.TargetPort + yym2723 := z.EncBinary() + _ = yym2723 if false { - } else if z.HasExtensions() && z.EncExt(yy2673) { - } else if !yym2674 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2673) + } else if z.HasExtensions() && z.EncExt(yy2722) { + } else if !yym2723 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2722) } else { - z.EncFallback(yy2673) + z.EncFallback(yy2722) } } - if yyr2662 || yy2arr2662 { + if yyr2711 || yy2arr2711 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2676 := z.EncBinary() - _ = yym2676 + yym2725 := z.EncBinary() + _ = yym2725 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -34779,14 +35316,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2677 := z.EncBinary() - _ = yym2677 + yym2726 := z.EncBinary() + _ = yym2726 if false { } else { r.EncodeInt(int64(x.NodePort)) } } - if yyr2662 || yy2arr2662 { + if yyr2711 || yy2arr2711 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34799,25 +35336,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2678 := z.DecBinary() - _ = yym2678 + yym2727 := z.DecBinary() + _ = yym2727 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2679 := r.ContainerType() - if yyct2679 == codecSelferValueTypeMap1234 { - yyl2679 := r.ReadMapStart() - if yyl2679 == 0 { + yyct2728 := r.ContainerType() + if yyct2728 == codecSelferValueTypeMap1234 { + yyl2728 := r.ReadMapStart() + if yyl2728 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2679, d) + x.codecDecodeSelfFromMap(yyl2728, d) } - } else if yyct2679 == codecSelferValueTypeArray1234 { - yyl2679 := r.ReadArrayStart() - if yyl2679 == 0 { + } else if yyct2728 == codecSelferValueTypeArray1234 { + yyl2728 := r.ReadArrayStart() + if yyl2728 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2679, d) + x.codecDecodeSelfFromArray(yyl2728, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34829,12 +35366,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2680Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2680Slc - var yyhl2680 bool = l >= 0 - for yyj2680 := 0; ; yyj2680++ { - if yyhl2680 { - if yyj2680 >= l { + var yys2729Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2729Slc + var yyhl2729 bool = l >= 0 + for yyj2729 := 0; ; yyj2729++ { + if yyhl2729 { + if yyj2729 >= l { break } } else { @@ -34843,10 +35380,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2680Slc = r.DecodeBytes(yys2680Slc, true, true) - yys2680 := string(yys2680Slc) + yys2729Slc = r.DecodeBytes(yys2729Slc, true, true) + yys2729 := string(yys2729Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2680 { + switch yys2729 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -34869,15 +35406,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2684 := &x.TargetPort - yym2685 := z.DecBinary() - _ = yym2685 + yyv2733 := &x.TargetPort + yym2734 := z.DecBinary() + _ = yym2734 if false { - } else if z.HasExtensions() && z.DecExt(yyv2684) { - } else if !yym2685 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2684) + } else if z.HasExtensions() && z.DecExt(yyv2733) { + } else if !yym2734 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2733) } else { - z.DecFallback(yyv2684, false) + z.DecFallback(yyv2733, false) } } case "nodePort": @@ -34887,9 +35424,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2680) - } // end switch yys2680 - } // end for yyj2680 + z.DecStructFieldNotFound(-1, yys2729) + } // end switch yys2729 + } // end for yyj2729 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34897,16 +35434,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2687 int - var yyb2687 bool - var yyhl2687 bool = l >= 0 - yyj2687++ - if yyhl2687 { - yyb2687 = yyj2687 > l + var yyj2736 int + var yyb2736 bool + var yyhl2736 bool = l >= 0 + yyj2736++ + if yyhl2736 { + yyb2736 = yyj2736 > l } else { - yyb2687 = r.CheckBreak() + yyb2736 = r.CheckBreak() } - if yyb2687 { + if yyb2736 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34916,13 +35453,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2687++ - if yyhl2687 { - yyb2687 = yyj2687 > l + yyj2736++ + if yyhl2736 { + yyb2736 = yyj2736 > l } else { - yyb2687 = r.CheckBreak() + yyb2736 = r.CheckBreak() } - if yyb2687 { + if yyb2736 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34932,13 +35469,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2687++ - if yyhl2687 { - yyb2687 = yyj2687 > l + yyj2736++ + if yyhl2736 { + yyb2736 = yyj2736 > l } else { - yyb2687 = r.CheckBreak() + yyb2736 = r.CheckBreak() } - if yyb2687 { + if yyb2736 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34948,13 +35485,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2687++ - if yyhl2687 { - yyb2687 = yyj2687 > l + yyj2736++ + if yyhl2736 { + yyb2736 = yyj2736 > l } else { - yyb2687 = r.CheckBreak() + yyb2736 = r.CheckBreak() } - if yyb2687 { + if yyb2736 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34962,24 +35499,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2691 := &x.TargetPort - yym2692 := z.DecBinary() - _ = yym2692 + yyv2740 := &x.TargetPort + yym2741 := z.DecBinary() + _ = yym2741 if false { - } else if z.HasExtensions() && z.DecExt(yyv2691) { - } else if !yym2692 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2691) + } else if z.HasExtensions() && z.DecExt(yyv2740) { + } else if !yym2741 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2740) } else { - z.DecFallback(yyv2691, false) + z.DecFallback(yyv2740, false) } } - yyj2687++ - if yyhl2687 { - yyb2687 = yyj2687 > l + yyj2736++ + if yyhl2736 { + yyb2736 = yyj2736 > l } else { - yyb2687 = r.CheckBreak() + yyb2736 = r.CheckBreak() } - if yyb2687 { + if yyb2736 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34990,17 +35527,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj2687++ - if yyhl2687 { - yyb2687 = yyj2687 > l + yyj2736++ + if yyhl2736 { + yyb2736 = yyj2736 > l } else { - yyb2687 = r.CheckBreak() + yyb2736 = r.CheckBreak() } - if yyb2687 { + if yyb2736 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2687-1, "") + z.DecStructFieldNotFound(yyj2736-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35012,39 +35549,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2694 := z.EncBinary() - _ = yym2694 + yym2743 := z.EncBinary() + _ = yym2743 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2695 := !z.EncBinary() - yy2arr2695 := z.EncBasicHandle().StructToArray - var yyq2695 [5]bool - _, _, _ = yysep2695, yyq2695, yy2arr2695 - const yyr2695 bool = false - yyq2695[0] = x.Kind != "" - yyq2695[1] = x.APIVersion != "" - yyq2695[2] = true - yyq2695[3] = true - yyq2695[4] = true - var yynn2695 int - if yyr2695 || yy2arr2695 { + yysep2744 := !z.EncBinary() + yy2arr2744 := z.EncBasicHandle().StructToArray + var yyq2744 [5]bool + _, _, _ = yysep2744, yyq2744, yy2arr2744 + const yyr2744 bool = false + yyq2744[0] = x.Kind != "" + yyq2744[1] = x.APIVersion != "" + yyq2744[2] = true + yyq2744[3] = true + yyq2744[4] = true + var yynn2744 int + if yyr2744 || yy2arr2744 { r.EncodeArrayStart(5) } else { - yynn2695 = 0 - for _, b := range yyq2695 { + yynn2744 = 0 + for _, b := range yyq2744 { if b { - yynn2695++ + yynn2744++ } } - r.EncodeMapStart(yynn2695) - yynn2695 = 0 + r.EncodeMapStart(yynn2744) + yynn2744 = 0 } - if yyr2695 || yy2arr2695 { + if yyr2744 || yy2arr2744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2695[0] { - yym2697 := z.EncBinary() - _ = yym2697 + if yyq2744[0] { + yym2746 := z.EncBinary() + _ = yym2746 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35053,23 +35590,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2695[0] { + if yyq2744[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2698 := z.EncBinary() - _ = yym2698 + yym2747 := z.EncBinary() + _ = yym2747 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2695 || yy2arr2695 { + if yyr2744 || yy2arr2744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2695[1] { - yym2700 := z.EncBinary() - _ = yym2700 + if yyq2744[1] { + yym2749 := z.EncBinary() + _ = yym2749 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35078,70 +35615,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2695[1] { + if yyq2744[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2701 := z.EncBinary() - _ = yym2701 + yym2750 := z.EncBinary() + _ = yym2750 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2695 || yy2arr2695 { + if yyr2744 || yy2arr2744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2695[2] { - yy2703 := &x.ObjectMeta - yy2703.CodecEncodeSelf(e) + if yyq2744[2] { + yy2752 := &x.ObjectMeta + yy2752.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2695[2] { + if yyq2744[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2704 := &x.ObjectMeta - yy2704.CodecEncodeSelf(e) + yy2753 := &x.ObjectMeta + yy2753.CodecEncodeSelf(e) } } - if yyr2695 || yy2arr2695 { + if yyr2744 || yy2arr2744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2695[3] { - yy2706 := &x.Spec - yy2706.CodecEncodeSelf(e) + if yyq2744[3] { + yy2755 := &x.Spec + yy2755.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2695[3] { + if yyq2744[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2707 := &x.Spec - yy2707.CodecEncodeSelf(e) + yy2756 := &x.Spec + yy2756.CodecEncodeSelf(e) } } - if yyr2695 || yy2arr2695 { + if yyr2744 || yy2arr2744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2695[4] { - yy2709 := &x.Status - yy2709.CodecEncodeSelf(e) + if yyq2744[4] { + yy2758 := &x.Status + yy2758.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2695[4] { + if yyq2744[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2710 := &x.Status - yy2710.CodecEncodeSelf(e) + yy2759 := &x.Status + yy2759.CodecEncodeSelf(e) } } - if yyr2695 || yy2arr2695 { + if yyr2744 || yy2arr2744 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35154,25 +35691,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2711 := z.DecBinary() - _ = yym2711 + yym2760 := z.DecBinary() + _ = yym2760 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2712 := r.ContainerType() - if yyct2712 == codecSelferValueTypeMap1234 { - yyl2712 := r.ReadMapStart() - if yyl2712 == 0 { + yyct2761 := r.ContainerType() + if yyct2761 == codecSelferValueTypeMap1234 { + yyl2761 := r.ReadMapStart() + if yyl2761 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2712, d) + x.codecDecodeSelfFromMap(yyl2761, d) } - } else if yyct2712 == codecSelferValueTypeArray1234 { - yyl2712 := r.ReadArrayStart() - if yyl2712 == 0 { + } else if yyct2761 == codecSelferValueTypeArray1234 { + yyl2761 := r.ReadArrayStart() + if yyl2761 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2712, d) + x.codecDecodeSelfFromArray(yyl2761, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35184,12 +35721,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2713Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2713Slc - var yyhl2713 bool = l >= 0 - for yyj2713 := 0; ; yyj2713++ { - if yyhl2713 { - if yyj2713 >= l { + var yys2762Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2762Slc + var yyhl2762 bool = l >= 0 + for yyj2762 := 0; ; yyj2762++ { + if yyhl2762 { + if yyj2762 >= l { break } } else { @@ -35198,10 +35735,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2713Slc = r.DecodeBytes(yys2713Slc, true, true) - yys2713 := string(yys2713Slc) + yys2762Slc = r.DecodeBytes(yys2762Slc, true, true) + yys2762 := string(yys2762Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2713 { + switch yys2762 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35218,27 +35755,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2716 := &x.ObjectMeta - yyv2716.CodecDecodeSelf(d) + yyv2765 := &x.ObjectMeta + yyv2765.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2717 := &x.Spec - yyv2717.CodecDecodeSelf(d) + yyv2766 := &x.Spec + yyv2766.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2718 := &x.Status - yyv2718.CodecDecodeSelf(d) + yyv2767 := &x.Status + yyv2767.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2713) - } // end switch yys2713 - } // end for yyj2713 + z.DecStructFieldNotFound(-1, yys2762) + } // end switch yys2762 + } // end for yyj2762 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35246,16 +35783,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2719 int - var yyb2719 bool - var yyhl2719 bool = l >= 0 - yyj2719++ - if yyhl2719 { - yyb2719 = yyj2719 > l + var yyj2768 int + var yyb2768 bool + var yyhl2768 bool = l >= 0 + yyj2768++ + if yyhl2768 { + yyb2768 = yyj2768 > l } else { - yyb2719 = r.CheckBreak() + yyb2768 = r.CheckBreak() } - if yyb2719 { + if yyb2768 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35265,13 +35802,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2719++ - if yyhl2719 { - yyb2719 = yyj2719 > l + yyj2768++ + if yyhl2768 { + yyb2768 = yyj2768 > l } else { - yyb2719 = r.CheckBreak() + yyb2768 = r.CheckBreak() } - if yyb2719 { + if yyb2768 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35281,13 +35818,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2719++ - if yyhl2719 { - yyb2719 = yyj2719 > l + yyj2768++ + if yyhl2768 { + yyb2768 = yyj2768 > l } else { - yyb2719 = r.CheckBreak() + yyb2768 = r.CheckBreak() } - if yyb2719 { + if yyb2768 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35295,16 +35832,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2722 := &x.ObjectMeta - yyv2722.CodecDecodeSelf(d) + yyv2771 := &x.ObjectMeta + yyv2771.CodecDecodeSelf(d) } - yyj2719++ - if yyhl2719 { - yyb2719 = yyj2719 > l + yyj2768++ + if yyhl2768 { + yyb2768 = yyj2768 > l } else { - yyb2719 = r.CheckBreak() + yyb2768 = r.CheckBreak() } - if yyb2719 { + if yyb2768 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35312,16 +35849,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2723 := &x.Spec - yyv2723.CodecDecodeSelf(d) + yyv2772 := &x.Spec + yyv2772.CodecDecodeSelf(d) } - yyj2719++ - if yyhl2719 { - yyb2719 = yyj2719 > l + yyj2768++ + if yyhl2768 { + yyb2768 = yyj2768 > l } else { - yyb2719 = r.CheckBreak() + yyb2768 = r.CheckBreak() } - if yyb2719 { + if yyb2768 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35329,21 +35866,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2724 := &x.Status - yyv2724.CodecDecodeSelf(d) + yyv2773 := &x.Status + yyv2773.CodecDecodeSelf(d) } for { - yyj2719++ - if yyhl2719 { - yyb2719 = yyj2719 > l + yyj2768++ + if yyhl2768 { + yyb2768 = yyj2768 > l } else { - yyb2719 = r.CheckBreak() + yyb2768 = r.CheckBreak() } - if yyb2719 { + if yyb2768 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2719-1, "") + z.DecStructFieldNotFound(yyj2768-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35355,38 +35892,38 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2725 := z.EncBinary() - _ = yym2725 + yym2774 := z.EncBinary() + _ = yym2774 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2726 := !z.EncBinary() - yy2arr2726 := z.EncBasicHandle().StructToArray - var yyq2726 [5]bool - _, _, _ = yysep2726, yyq2726, yy2arr2726 - const yyr2726 bool = false - yyq2726[0] = x.Kind != "" - yyq2726[1] = x.APIVersion != "" - yyq2726[2] = true - yyq2726[4] = len(x.ImagePullSecrets) != 0 - var yynn2726 int - if yyr2726 || yy2arr2726 { + yysep2775 := !z.EncBinary() + yy2arr2775 := z.EncBasicHandle().StructToArray + var yyq2775 [5]bool + _, _, _ = yysep2775, yyq2775, yy2arr2775 + const yyr2775 bool = false + yyq2775[0] = x.Kind != "" + yyq2775[1] = x.APIVersion != "" + yyq2775[2] = true + yyq2775[4] = len(x.ImagePullSecrets) != 0 + var yynn2775 int + if yyr2775 || yy2arr2775 { r.EncodeArrayStart(5) } else { - yynn2726 = 1 - for _, b := range yyq2726 { + yynn2775 = 1 + for _, b := range yyq2775 { if b { - yynn2726++ + yynn2775++ } } - r.EncodeMapStart(yynn2726) - yynn2726 = 0 + r.EncodeMapStart(yynn2775) + yynn2775 = 0 } - if yyr2726 || yy2arr2726 { + if yyr2775 || yy2arr2775 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2726[0] { - yym2728 := z.EncBinary() - _ = yym2728 + if yyq2775[0] { + yym2777 := z.EncBinary() + _ = yym2777 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35395,23 +35932,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2726[0] { + if yyq2775[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2729 := z.EncBinary() - _ = yym2729 + yym2778 := z.EncBinary() + _ = yym2778 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2726 || yy2arr2726 { + if yyr2775 || yy2arr2775 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2726[1] { - yym2731 := z.EncBinary() - _ = yym2731 + if yyq2775[1] { + yym2780 := z.EncBinary() + _ = yym2780 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35420,42 +35957,42 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2726[1] { + if yyq2775[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2732 := z.EncBinary() - _ = yym2732 + yym2781 := z.EncBinary() + _ = yym2781 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2726 || yy2arr2726 { + if yyr2775 || yy2arr2775 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2726[2] { - yy2734 := &x.ObjectMeta - yy2734.CodecEncodeSelf(e) + if yyq2775[2] { + yy2783 := &x.ObjectMeta + yy2783.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2726[2] { + if yyq2775[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2735 := &x.ObjectMeta - yy2735.CodecEncodeSelf(e) + yy2784 := &x.ObjectMeta + yy2784.CodecEncodeSelf(e) } } - if yyr2726 || yy2arr2726 { + if yyr2775 || yy2arr2775 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2737 := z.EncBinary() - _ = yym2737 + yym2786 := z.EncBinary() + _ = yym2786 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -35468,22 +36005,22 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x.Secrets == nil { r.EncodeNil() } else { - yym2738 := z.EncBinary() - _ = yym2738 + yym2787 := z.EncBinary() + _ = yym2787 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) } } } - if yyr2726 || yy2arr2726 { + if yyr2775 || yy2arr2775 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2726[4] { + if yyq2775[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2740 := z.EncBinary() - _ = yym2740 + yym2789 := z.EncBinary() + _ = yym2789 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -35493,15 +36030,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2726[4] { + if yyq2775[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2741 := z.EncBinary() - _ = yym2741 + yym2790 := z.EncBinary() + _ = yym2790 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -35509,7 +36046,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2726 || yy2arr2726 { + if yyr2775 || yy2arr2775 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35522,25 +36059,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2742 := z.DecBinary() - _ = yym2742 + yym2791 := z.DecBinary() + _ = yym2791 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2743 := r.ContainerType() - if yyct2743 == codecSelferValueTypeMap1234 { - yyl2743 := r.ReadMapStart() - if yyl2743 == 0 { + yyct2792 := r.ContainerType() + if yyct2792 == codecSelferValueTypeMap1234 { + yyl2792 := r.ReadMapStart() + if yyl2792 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2743, d) + x.codecDecodeSelfFromMap(yyl2792, d) } - } else if yyct2743 == codecSelferValueTypeArray1234 { - yyl2743 := r.ReadArrayStart() - if yyl2743 == 0 { + } else if yyct2792 == codecSelferValueTypeArray1234 { + yyl2792 := r.ReadArrayStart() + if yyl2792 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2743, d) + x.codecDecodeSelfFromArray(yyl2792, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35552,12 +36089,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2744Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2744Slc - var yyhl2744 bool = l >= 0 - for yyj2744 := 0; ; yyj2744++ { - if yyhl2744 { - if yyj2744 >= l { + var yys2793Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2793Slc + var yyhl2793 bool = l >= 0 + for yyj2793 := 0; ; yyj2793++ { + if yyhl2793 { + if yyj2793 >= l { break } } else { @@ -35566,10 +36103,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2744Slc = r.DecodeBytes(yys2744Slc, true, true) - yys2744 := string(yys2744Slc) + yys2793Slc = r.DecodeBytes(yys2793Slc, true, true) + yys2793 := string(yys2793Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2744 { + switch yys2793 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35586,37 +36123,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2747 := &x.ObjectMeta - yyv2747.CodecDecodeSelf(d) + yyv2796 := &x.ObjectMeta + yyv2796.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2748 := &x.Secrets - yym2749 := z.DecBinary() - _ = yym2749 + yyv2797 := &x.Secrets + yym2798 := z.DecBinary() + _ = yym2798 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2748), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2797), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2750 := &x.ImagePullSecrets - yym2751 := z.DecBinary() - _ = yym2751 + yyv2799 := &x.ImagePullSecrets + yym2800 := z.DecBinary() + _ = yym2800 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2750), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2799), d) } } default: - z.DecStructFieldNotFound(-1, yys2744) - } // end switch yys2744 - } // end for yyj2744 + z.DecStructFieldNotFound(-1, yys2793) + } // end switch yys2793 + } // end for yyj2793 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35624,16 +36161,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2752 int - var yyb2752 bool - var yyhl2752 bool = l >= 0 - yyj2752++ - if yyhl2752 { - yyb2752 = yyj2752 > l + var yyj2801 int + var yyb2801 bool + var yyhl2801 bool = l >= 0 + yyj2801++ + if yyhl2801 { + yyb2801 = yyj2801 > l } else { - yyb2752 = r.CheckBreak() + yyb2801 = r.CheckBreak() } - if yyb2752 { + if yyb2801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35643,13 +36180,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2752++ - if yyhl2752 { - yyb2752 = yyj2752 > l + yyj2801++ + if yyhl2801 { + yyb2801 = yyj2801 > l } else { - yyb2752 = r.CheckBreak() + yyb2801 = r.CheckBreak() } - if yyb2752 { + if yyb2801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35659,13 +36196,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2752++ - if yyhl2752 { - yyb2752 = yyj2752 > l + yyj2801++ + if yyhl2801 { + yyb2801 = yyj2801 > l } else { - yyb2752 = r.CheckBreak() + yyb2801 = r.CheckBreak() } - if yyb2752 { + if yyb2801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35673,16 +36210,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2755 := &x.ObjectMeta - yyv2755.CodecDecodeSelf(d) + yyv2804 := &x.ObjectMeta + yyv2804.CodecDecodeSelf(d) } - yyj2752++ - if yyhl2752 { - yyb2752 = yyj2752 > l + yyj2801++ + if yyhl2801 { + yyb2801 = yyj2801 > l } else { - yyb2752 = r.CheckBreak() + yyb2801 = r.CheckBreak() } - if yyb2752 { + if yyb2801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35690,21 +36227,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2756 := &x.Secrets - yym2757 := z.DecBinary() - _ = yym2757 + yyv2805 := &x.Secrets + yym2806 := z.DecBinary() + _ = yym2806 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2756), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2805), d) } } - yyj2752++ - if yyhl2752 { - yyb2752 = yyj2752 > l + yyj2801++ + if yyhl2801 { + yyb2801 = yyj2801 > l } else { - yyb2752 = r.CheckBreak() + yyb2801 = r.CheckBreak() } - if yyb2752 { + if yyb2801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35712,26 +36249,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2758 := &x.ImagePullSecrets - yym2759 := z.DecBinary() - _ = yym2759 + yyv2807 := &x.ImagePullSecrets + yym2808 := z.DecBinary() + _ = yym2808 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2758), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2807), d) } } for { - yyj2752++ - if yyhl2752 { - yyb2752 = yyj2752 > l + yyj2801++ + if yyhl2801 { + yyb2801 = yyj2801 > l } else { - yyb2752 = r.CheckBreak() + yyb2801 = r.CheckBreak() } - if yyb2752 { + if yyb2801 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2752-1, "") + z.DecStructFieldNotFound(yyj2801-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35743,37 +36280,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2760 := z.EncBinary() - _ = yym2760 + yym2809 := z.EncBinary() + _ = yym2809 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2761 := !z.EncBinary() - yy2arr2761 := z.EncBasicHandle().StructToArray - var yyq2761 [4]bool - _, _, _ = yysep2761, yyq2761, yy2arr2761 - const yyr2761 bool = false - yyq2761[0] = x.Kind != "" - yyq2761[1] = x.APIVersion != "" - yyq2761[2] = true - var yynn2761 int - if yyr2761 || yy2arr2761 { + yysep2810 := !z.EncBinary() + yy2arr2810 := z.EncBasicHandle().StructToArray + var yyq2810 [4]bool + _, _, _ = yysep2810, yyq2810, yy2arr2810 + const yyr2810 bool = false + yyq2810[0] = x.Kind != "" + yyq2810[1] = x.APIVersion != "" + yyq2810[2] = true + var yynn2810 int + if yyr2810 || yy2arr2810 { r.EncodeArrayStart(4) } else { - yynn2761 = 1 - for _, b := range yyq2761 { + yynn2810 = 1 + for _, b := range yyq2810 { if b { - yynn2761++ + yynn2810++ } } - r.EncodeMapStart(yynn2761) - yynn2761 = 0 + r.EncodeMapStart(yynn2810) + yynn2810 = 0 } - if yyr2761 || yy2arr2761 { + if yyr2810 || yy2arr2810 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2761[0] { - yym2763 := z.EncBinary() - _ = yym2763 + if yyq2810[0] { + yym2812 := z.EncBinary() + _ = yym2812 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35782,23 +36319,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2761[0] { + if yyq2810[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2764 := z.EncBinary() - _ = yym2764 + yym2813 := z.EncBinary() + _ = yym2813 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2761 || yy2arr2761 { + if yyr2810 || yy2arr2810 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2761[1] { - yym2766 := z.EncBinary() - _ = yym2766 + if yyq2810[1] { + yym2815 := z.EncBinary() + _ = yym2815 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35807,54 +36344,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2761[1] { + if yyq2810[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2767 := z.EncBinary() - _ = yym2767 + yym2816 := z.EncBinary() + _ = yym2816 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2761 || yy2arr2761 { + if yyr2810 || yy2arr2810 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2761[2] { - yy2769 := &x.ListMeta - yym2770 := z.EncBinary() - _ = yym2770 + if yyq2810[2] { + yy2818 := &x.ListMeta + yym2819 := z.EncBinary() + _ = yym2819 if false { - } else if z.HasExtensions() && z.EncExt(yy2769) { + } else if z.HasExtensions() && z.EncExt(yy2818) { } else { - z.EncFallback(yy2769) + z.EncFallback(yy2818) } } else { r.EncodeNil() } } else { - if yyq2761[2] { + if yyq2810[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2771 := &x.ListMeta - yym2772 := z.EncBinary() - _ = yym2772 + yy2820 := &x.ListMeta + yym2821 := z.EncBinary() + _ = yym2821 if false { - } else if z.HasExtensions() && z.EncExt(yy2771) { + } else if z.HasExtensions() && z.EncExt(yy2820) { } else { - z.EncFallback(yy2771) + z.EncFallback(yy2820) } } } - if yyr2761 || yy2arr2761 { + if yyr2810 || yy2arr2810 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2774 := z.EncBinary() - _ = yym2774 + yym2823 := z.EncBinary() + _ = yym2823 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -35867,15 +36404,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2775 := z.EncBinary() - _ = yym2775 + yym2824 := z.EncBinary() + _ = yym2824 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2761 || yy2arr2761 { + if yyr2810 || yy2arr2810 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35888,25 +36425,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2776 := z.DecBinary() - _ = yym2776 + yym2825 := z.DecBinary() + _ = yym2825 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2777 := r.ContainerType() - if yyct2777 == codecSelferValueTypeMap1234 { - yyl2777 := r.ReadMapStart() - if yyl2777 == 0 { + yyct2826 := r.ContainerType() + if yyct2826 == codecSelferValueTypeMap1234 { + yyl2826 := r.ReadMapStart() + if yyl2826 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2777, d) + x.codecDecodeSelfFromMap(yyl2826, d) } - } else if yyct2777 == codecSelferValueTypeArray1234 { - yyl2777 := r.ReadArrayStart() - if yyl2777 == 0 { + } else if yyct2826 == codecSelferValueTypeArray1234 { + yyl2826 := r.ReadArrayStart() + if yyl2826 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2777, d) + x.codecDecodeSelfFromArray(yyl2826, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35918,12 +36455,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2778Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2778Slc - var yyhl2778 bool = l >= 0 - for yyj2778 := 0; ; yyj2778++ { - if yyhl2778 { - if yyj2778 >= l { + var yys2827Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2827Slc + var yyhl2827 bool = l >= 0 + for yyj2827 := 0; ; yyj2827++ { + if yyhl2827 { + if yyj2827 >= l { break } } else { @@ -35932,10 +36469,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2778Slc = r.DecodeBytes(yys2778Slc, true, true) - yys2778 := string(yys2778Slc) + yys2827Slc = r.DecodeBytes(yys2827Slc, true, true) + yys2827 := string(yys2827Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2778 { + switch yys2827 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35952,31 +36489,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2781 := &x.ListMeta - yym2782 := z.DecBinary() - _ = yym2782 + yyv2830 := &x.ListMeta + yym2831 := z.DecBinary() + _ = yym2831 if false { - } else if z.HasExtensions() && z.DecExt(yyv2781) { + } else if z.HasExtensions() && z.DecExt(yyv2830) { } else { - z.DecFallback(yyv2781, false) + z.DecFallback(yyv2830, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2783 := &x.Items - yym2784 := z.DecBinary() - _ = yym2784 + yyv2832 := &x.Items + yym2833 := z.DecBinary() + _ = yym2833 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2783), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2832), d) } } default: - z.DecStructFieldNotFound(-1, yys2778) - } // end switch yys2778 - } // end for yyj2778 + z.DecStructFieldNotFound(-1, yys2827) + } // end switch yys2827 + } // end for yyj2827 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35984,16 +36521,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2785 int - var yyb2785 bool - var yyhl2785 bool = l >= 0 - yyj2785++ - if yyhl2785 { - yyb2785 = yyj2785 > l + var yyj2834 int + var yyb2834 bool + var yyhl2834 bool = l >= 0 + yyj2834++ + if yyhl2834 { + yyb2834 = yyj2834 > l } else { - yyb2785 = r.CheckBreak() + yyb2834 = r.CheckBreak() } - if yyb2785 { + if yyb2834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36003,13 +36540,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2785++ - if yyhl2785 { - yyb2785 = yyj2785 > l + yyj2834++ + if yyhl2834 { + yyb2834 = yyj2834 > l } else { - yyb2785 = r.CheckBreak() + yyb2834 = r.CheckBreak() } - if yyb2785 { + if yyb2834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36019,13 +36556,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2785++ - if yyhl2785 { - yyb2785 = yyj2785 > l + yyj2834++ + if yyhl2834 { + yyb2834 = yyj2834 > l } else { - yyb2785 = r.CheckBreak() + yyb2834 = r.CheckBreak() } - if yyb2785 { + if yyb2834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36033,22 +36570,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2788 := &x.ListMeta - yym2789 := z.DecBinary() - _ = yym2789 + yyv2837 := &x.ListMeta + yym2838 := z.DecBinary() + _ = yym2838 if false { - } else if z.HasExtensions() && z.DecExt(yyv2788) { + } else if z.HasExtensions() && z.DecExt(yyv2837) { } else { - z.DecFallback(yyv2788, false) + z.DecFallback(yyv2837, false) } } - yyj2785++ - if yyhl2785 { - yyb2785 = yyj2785 > l + yyj2834++ + if yyhl2834 { + yyb2834 = yyj2834 > l } else { - yyb2785 = r.CheckBreak() + yyb2834 = r.CheckBreak() } - if yyb2785 { + if yyb2834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36056,26 +36593,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2790 := &x.Items - yym2791 := z.DecBinary() - _ = yym2791 + yyv2839 := &x.Items + yym2840 := z.DecBinary() + _ = yym2840 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2790), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2839), d) } } for { - yyj2785++ - if yyhl2785 { - yyb2785 = yyj2785 > l + yyj2834++ + if yyhl2834 { + yyb2834 = yyj2834 > l } else { - yyb2785 = r.CheckBreak() + yyb2834 = r.CheckBreak() } - if yyb2785 { + if yyb2834 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2785-1, "") + z.DecStructFieldNotFound(yyj2834-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36087,37 +36624,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2792 := z.EncBinary() - _ = yym2792 + yym2841 := z.EncBinary() + _ = yym2841 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2793 := !z.EncBinary() - yy2arr2793 := z.EncBasicHandle().StructToArray - var yyq2793 [4]bool - _, _, _ = yysep2793, yyq2793, yy2arr2793 - const yyr2793 bool = false - yyq2793[0] = x.Kind != "" - yyq2793[1] = x.APIVersion != "" - yyq2793[2] = true - var yynn2793 int - if yyr2793 || yy2arr2793 { + yysep2842 := !z.EncBinary() + yy2arr2842 := z.EncBasicHandle().StructToArray + var yyq2842 [4]bool + _, _, _ = yysep2842, yyq2842, yy2arr2842 + const yyr2842 bool = false + yyq2842[0] = x.Kind != "" + yyq2842[1] = x.APIVersion != "" + yyq2842[2] = true + var yynn2842 int + if yyr2842 || yy2arr2842 { r.EncodeArrayStart(4) } else { - yynn2793 = 1 - for _, b := range yyq2793 { + yynn2842 = 1 + for _, b := range yyq2842 { if b { - yynn2793++ + yynn2842++ } } - r.EncodeMapStart(yynn2793) - yynn2793 = 0 + r.EncodeMapStart(yynn2842) + yynn2842 = 0 } - if yyr2793 || yy2arr2793 { + if yyr2842 || yy2arr2842 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2793[0] { - yym2795 := z.EncBinary() - _ = yym2795 + if yyq2842[0] { + yym2844 := z.EncBinary() + _ = yym2844 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -36126,23 +36663,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2793[0] { + if yyq2842[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2796 := z.EncBinary() - _ = yym2796 + yym2845 := z.EncBinary() + _ = yym2845 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2793 || yy2arr2793 { + if yyr2842 || yy2arr2842 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2793[1] { - yym2798 := z.EncBinary() - _ = yym2798 + if yyq2842[1] { + yym2847 := z.EncBinary() + _ = yym2847 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -36151,42 +36688,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2793[1] { + if yyq2842[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2799 := z.EncBinary() - _ = yym2799 + yym2848 := z.EncBinary() + _ = yym2848 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2793 || yy2arr2793 { + if yyr2842 || yy2arr2842 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2793[2] { - yy2801 := &x.ObjectMeta - yy2801.CodecEncodeSelf(e) + if yyq2842[2] { + yy2850 := &x.ObjectMeta + yy2850.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2793[2] { + if yyq2842[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2802 := &x.ObjectMeta - yy2802.CodecEncodeSelf(e) + yy2851 := &x.ObjectMeta + yy2851.CodecEncodeSelf(e) } } - if yyr2793 || yy2arr2793 { + if yyr2842 || yy2arr2842 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2804 := z.EncBinary() - _ = yym2804 + yym2853 := z.EncBinary() + _ = yym2853 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -36199,15 +36736,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2805 := z.EncBinary() - _ = yym2805 + yym2854 := z.EncBinary() + _ = yym2854 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2793 || yy2arr2793 { + if yyr2842 || yy2arr2842 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36220,25 +36757,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2806 := z.DecBinary() - _ = yym2806 + yym2855 := z.DecBinary() + _ = yym2855 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2807 := r.ContainerType() - if yyct2807 == codecSelferValueTypeMap1234 { - yyl2807 := r.ReadMapStart() - if yyl2807 == 0 { + yyct2856 := r.ContainerType() + if yyct2856 == codecSelferValueTypeMap1234 { + yyl2856 := r.ReadMapStart() + if yyl2856 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2807, d) + x.codecDecodeSelfFromMap(yyl2856, d) } - } else if yyct2807 == codecSelferValueTypeArray1234 { - yyl2807 := r.ReadArrayStart() - if yyl2807 == 0 { + } else if yyct2856 == codecSelferValueTypeArray1234 { + yyl2856 := r.ReadArrayStart() + if yyl2856 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2807, d) + x.codecDecodeSelfFromArray(yyl2856, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36250,12 +36787,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2808Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2808Slc - var yyhl2808 bool = l >= 0 - for yyj2808 := 0; ; yyj2808++ { - if yyhl2808 { - if yyj2808 >= l { + var yys2857Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2857Slc + var yyhl2857 bool = l >= 0 + for yyj2857 := 0; ; yyj2857++ { + if yyhl2857 { + if yyj2857 >= l { break } } else { @@ -36264,10 +36801,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2808Slc = r.DecodeBytes(yys2808Slc, true, true) - yys2808 := string(yys2808Slc) + yys2857Slc = r.DecodeBytes(yys2857Slc, true, true) + yys2857 := string(yys2857Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2808 { + switch yys2857 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36284,25 +36821,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2811 := &x.ObjectMeta - yyv2811.CodecDecodeSelf(d) + yyv2860 := &x.ObjectMeta + yyv2860.CodecDecodeSelf(d) } case "Subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2812 := &x.Subsets - yym2813 := z.DecBinary() - _ = yym2813 + yyv2861 := &x.Subsets + yym2862 := z.DecBinary() + _ = yym2862 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2812), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2861), d) } } default: - z.DecStructFieldNotFound(-1, yys2808) - } // end switch yys2808 - } // end for yyj2808 + z.DecStructFieldNotFound(-1, yys2857) + } // end switch yys2857 + } // end for yyj2857 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36310,16 +36847,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2814 int - var yyb2814 bool - var yyhl2814 bool = l >= 0 - yyj2814++ - if yyhl2814 { - yyb2814 = yyj2814 > l + var yyj2863 int + var yyb2863 bool + var yyhl2863 bool = l >= 0 + yyj2863++ + if yyhl2863 { + yyb2863 = yyj2863 > l } else { - yyb2814 = r.CheckBreak() + yyb2863 = r.CheckBreak() } - if yyb2814 { + if yyb2863 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36329,13 +36866,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2814++ - if yyhl2814 { - yyb2814 = yyj2814 > l + yyj2863++ + if yyhl2863 { + yyb2863 = yyj2863 > l } else { - yyb2814 = r.CheckBreak() + yyb2863 = r.CheckBreak() } - if yyb2814 { + if yyb2863 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36345,13 +36882,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2814++ - if yyhl2814 { - yyb2814 = yyj2814 > l + yyj2863++ + if yyhl2863 { + yyb2863 = yyj2863 > l } else { - yyb2814 = r.CheckBreak() + yyb2863 = r.CheckBreak() } - if yyb2814 { + if yyb2863 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36359,16 +36896,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2817 := &x.ObjectMeta - yyv2817.CodecDecodeSelf(d) + yyv2866 := &x.ObjectMeta + yyv2866.CodecDecodeSelf(d) } - yyj2814++ - if yyhl2814 { - yyb2814 = yyj2814 > l + yyj2863++ + if yyhl2863 { + yyb2863 = yyj2863 > l } else { - yyb2814 = r.CheckBreak() + yyb2863 = r.CheckBreak() } - if yyb2814 { + if yyb2863 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36376,26 +36913,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2818 := &x.Subsets - yym2819 := z.DecBinary() - _ = yym2819 + yyv2867 := &x.Subsets + yym2868 := z.DecBinary() + _ = yym2868 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2818), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2867), d) } } for { - yyj2814++ - if yyhl2814 { - yyb2814 = yyj2814 > l + yyj2863++ + if yyhl2863 { + yyb2863 = yyj2863 > l } else { - yyb2814 = r.CheckBreak() + yyb2863 = r.CheckBreak() } - if yyb2814 { + if yyb2863 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2814-1, "") + z.DecStructFieldNotFound(yyj2863-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36407,36 +36944,36 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2820 := z.EncBinary() - _ = yym2820 + yym2869 := z.EncBinary() + _ = yym2869 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2821 := !z.EncBinary() - yy2arr2821 := z.EncBasicHandle().StructToArray - var yyq2821 [3]bool - _, _, _ = yysep2821, yyq2821, yy2arr2821 - const yyr2821 bool = false - var yynn2821 int - if yyr2821 || yy2arr2821 { + yysep2870 := !z.EncBinary() + yy2arr2870 := z.EncBasicHandle().StructToArray + var yyq2870 [3]bool + _, _, _ = yysep2870, yyq2870, yy2arr2870 + const yyr2870 bool = false + var yynn2870 int + if yyr2870 || yy2arr2870 { r.EncodeArrayStart(3) } else { - yynn2821 = 3 - for _, b := range yyq2821 { + yynn2870 = 3 + for _, b := range yyq2870 { if b { - yynn2821++ + yynn2870++ } } - r.EncodeMapStart(yynn2821) - yynn2821 = 0 + r.EncodeMapStart(yynn2870) + yynn2870 = 0 } - if yyr2821 || yy2arr2821 { + if yyr2870 || yy2arr2870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2823 := z.EncBinary() - _ = yym2823 + yym2872 := z.EncBinary() + _ = yym2872 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -36449,21 +36986,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Addresses == nil { r.EncodeNil() } else { - yym2824 := z.EncBinary() - _ = yym2824 + yym2873 := z.EncBinary() + _ = yym2873 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) } } } - if yyr2821 || yy2arr2821 { + if yyr2870 || yy2arr2870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2826 := z.EncBinary() - _ = yym2826 + yym2875 := z.EncBinary() + _ = yym2875 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -36476,21 +37013,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2827 := z.EncBinary() - _ = yym2827 + yym2876 := z.EncBinary() + _ = yym2876 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) } } } - if yyr2821 || yy2arr2821 { + if yyr2870 || yy2arr2870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2829 := z.EncBinary() - _ = yym2829 + yym2878 := z.EncBinary() + _ = yym2878 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -36503,15 +37040,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2830 := z.EncBinary() - _ = yym2830 + yym2879 := z.EncBinary() + _ = yym2879 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) } } } - if yyr2821 || yy2arr2821 { + if yyr2870 || yy2arr2870 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36524,25 +37061,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2831 := z.DecBinary() - _ = yym2831 + yym2880 := z.DecBinary() + _ = yym2880 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2832 := r.ContainerType() - if yyct2832 == codecSelferValueTypeMap1234 { - yyl2832 := r.ReadMapStart() - if yyl2832 == 0 { + yyct2881 := r.ContainerType() + if yyct2881 == codecSelferValueTypeMap1234 { + yyl2881 := r.ReadMapStart() + if yyl2881 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2832, d) + x.codecDecodeSelfFromMap(yyl2881, d) } - } else if yyct2832 == codecSelferValueTypeArray1234 { - yyl2832 := r.ReadArrayStart() - if yyl2832 == 0 { + } else if yyct2881 == codecSelferValueTypeArray1234 { + yyl2881 := r.ReadArrayStart() + if yyl2881 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2832, d) + x.codecDecodeSelfFromArray(yyl2881, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36554,12 +37091,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2833Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2833Slc - var yyhl2833 bool = l >= 0 - for yyj2833 := 0; ; yyj2833++ { - if yyhl2833 { - if yyj2833 >= l { + var yys2882Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2882Slc + var yyhl2882 bool = l >= 0 + for yyj2882 := 0; ; yyj2882++ { + if yyhl2882 { + if yyj2882 >= l { break } } else { @@ -36568,50 +37105,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2833Slc = r.DecodeBytes(yys2833Slc, true, true) - yys2833 := string(yys2833Slc) + yys2882Slc = r.DecodeBytes(yys2882Slc, true, true) + yys2882 := string(yys2882Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2833 { + switch yys2882 { case "Addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2834 := &x.Addresses - yym2835 := z.DecBinary() - _ = yym2835 + yyv2883 := &x.Addresses + yym2884 := z.DecBinary() + _ = yym2884 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2834), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2883), d) } } case "NotReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2836 := &x.NotReadyAddresses - yym2837 := z.DecBinary() - _ = yym2837 + yyv2885 := &x.NotReadyAddresses + yym2886 := z.DecBinary() + _ = yym2886 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2836), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2885), d) } } case "Ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2838 := &x.Ports - yym2839 := z.DecBinary() - _ = yym2839 + yyv2887 := &x.Ports + yym2888 := z.DecBinary() + _ = yym2888 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2838), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2887), d) } } default: - z.DecStructFieldNotFound(-1, yys2833) - } // end switch yys2833 - } // end for yyj2833 + z.DecStructFieldNotFound(-1, yys2882) + } // end switch yys2882 + } // end for yyj2882 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36619,16 +37156,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2840 int - var yyb2840 bool - var yyhl2840 bool = l >= 0 - yyj2840++ - if yyhl2840 { - yyb2840 = yyj2840 > l + var yyj2889 int + var yyb2889 bool + var yyhl2889 bool = l >= 0 + yyj2889++ + if yyhl2889 { + yyb2889 = yyj2889 > l } else { - yyb2840 = r.CheckBreak() + yyb2889 = r.CheckBreak() } - if yyb2840 { + if yyb2889 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36636,21 +37173,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2841 := &x.Addresses - yym2842 := z.DecBinary() - _ = yym2842 + yyv2890 := &x.Addresses + yym2891 := z.DecBinary() + _ = yym2891 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2841), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2890), d) } } - yyj2840++ - if yyhl2840 { - yyb2840 = yyj2840 > l + yyj2889++ + if yyhl2889 { + yyb2889 = yyj2889 > l } else { - yyb2840 = r.CheckBreak() + yyb2889 = r.CheckBreak() } - if yyb2840 { + if yyb2889 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36658,21 +37195,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2843 := &x.NotReadyAddresses - yym2844 := z.DecBinary() - _ = yym2844 + yyv2892 := &x.NotReadyAddresses + yym2893 := z.DecBinary() + _ = yym2893 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2843), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2892), d) } } - yyj2840++ - if yyhl2840 { - yyb2840 = yyj2840 > l + yyj2889++ + if yyhl2889 { + yyb2889 = yyj2889 > l } else { - yyb2840 = r.CheckBreak() + yyb2889 = r.CheckBreak() } - if yyb2840 { + if yyb2889 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36680,26 +37217,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2845 := &x.Ports - yym2846 := z.DecBinary() - _ = yym2846 + yyv2894 := &x.Ports + yym2895 := z.DecBinary() + _ = yym2895 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2845), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2894), d) } } for { - yyj2840++ - if yyhl2840 { - yyb2840 = yyj2840 > l + yyj2889++ + if yyhl2889 { + yyb2889 = yyj2889 > l } else { - yyb2840 = r.CheckBreak() + yyb2889 = r.CheckBreak() } - if yyb2840 { + if yyb2889 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2840-1, "") + z.DecStructFieldNotFound(yyj2889-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36711,35 +37248,35 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2847 := z.EncBinary() - _ = yym2847 + yym2896 := z.EncBinary() + _ = yym2896 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2848 := !z.EncBinary() - yy2arr2848 := z.EncBasicHandle().StructToArray - var yyq2848 [4]bool - _, _, _ = yysep2848, yyq2848, yy2arr2848 - const yyr2848 bool = false - yyq2848[1] = x.Hostname != "" - yyq2848[2] = x.NodeName != nil - var yynn2848 int - if yyr2848 || yy2arr2848 { + yysep2897 := !z.EncBinary() + yy2arr2897 := z.EncBasicHandle().StructToArray + var yyq2897 [4]bool + _, _, _ = yysep2897, yyq2897, yy2arr2897 + const yyr2897 bool = false + yyq2897[1] = x.Hostname != "" + yyq2897[2] = x.NodeName != nil + var yynn2897 int + if yyr2897 || yy2arr2897 { r.EncodeArrayStart(4) } else { - yynn2848 = 2 - for _, b := range yyq2848 { + yynn2897 = 2 + for _, b := range yyq2897 { if b { - yynn2848++ + yynn2897++ } } - r.EncodeMapStart(yynn2848) - yynn2848 = 0 + r.EncodeMapStart(yynn2897) + yynn2897 = 0 } - if yyr2848 || yy2arr2848 { + if yyr2897 || yy2arr2897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2850 := z.EncBinary() - _ = yym2850 + yym2899 := z.EncBinary() + _ = yym2899 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -36748,18 +37285,18 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("IP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2851 := z.EncBinary() - _ = yym2851 + yym2900 := z.EncBinary() + _ = yym2900 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2848 || yy2arr2848 { + if yyr2897 || yy2arr2897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2848[1] { - yym2853 := z.EncBinary() - _ = yym2853 + if yyq2897[1] { + yym2902 := z.EncBinary() + _ = yym2902 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -36768,54 +37305,54 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2848[1] { + if yyq2897[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2854 := z.EncBinary() - _ = yym2854 + yym2903 := z.EncBinary() + _ = yym2903 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2848 || yy2arr2848 { + if yyr2897 || yy2arr2897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2848[2] { + if yyq2897[2] { if x.NodeName == nil { r.EncodeNil() } else { - yy2856 := *x.NodeName - yym2857 := z.EncBinary() - _ = yym2857 + yy2905 := *x.NodeName + yym2906 := z.EncBinary() + _ = yym2906 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2856)) + r.EncodeString(codecSelferC_UTF81234, string(yy2905)) } } } else { r.EncodeNil() } } else { - if yyq2848[2] { + if yyq2897[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeName == nil { r.EncodeNil() } else { - yy2858 := *x.NodeName - yym2859 := z.EncBinary() - _ = yym2859 + yy2907 := *x.NodeName + yym2908 := z.EncBinary() + _ = yym2908 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2858)) + r.EncodeString(codecSelferC_UTF81234, string(yy2907)) } } } } - if yyr2848 || yy2arr2848 { + if yyr2897 || yy2arr2897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TargetRef == nil { r.EncodeNil() @@ -36832,7 +37369,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { x.TargetRef.CodecEncodeSelf(e) } } - if yyr2848 || yy2arr2848 { + if yyr2897 || yy2arr2897 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36845,25 +37382,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2861 := z.DecBinary() - _ = yym2861 + yym2910 := z.DecBinary() + _ = yym2910 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2862 := r.ContainerType() - if yyct2862 == codecSelferValueTypeMap1234 { - yyl2862 := r.ReadMapStart() - if yyl2862 == 0 { + yyct2911 := r.ContainerType() + if yyct2911 == codecSelferValueTypeMap1234 { + yyl2911 := r.ReadMapStart() + if yyl2911 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2862, d) + x.codecDecodeSelfFromMap(yyl2911, d) } - } else if yyct2862 == codecSelferValueTypeArray1234 { - yyl2862 := r.ReadArrayStart() - if yyl2862 == 0 { + } else if yyct2911 == codecSelferValueTypeArray1234 { + yyl2911 := r.ReadArrayStart() + if yyl2911 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2862, d) + x.codecDecodeSelfFromArray(yyl2911, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36875,12 +37412,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2863Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2863Slc - var yyhl2863 bool = l >= 0 - for yyj2863 := 0; ; yyj2863++ { - if yyhl2863 { - if yyj2863 >= l { + var yys2912Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2912Slc + var yyhl2912 bool = l >= 0 + for yyj2912 := 0; ; yyj2912++ { + if yyhl2912 { + if yyj2912 >= l { break } } else { @@ -36889,10 +37426,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2863Slc = r.DecodeBytes(yys2863Slc, true, true) - yys2863 := string(yys2863Slc) + yys2912Slc = r.DecodeBytes(yys2912Slc, true, true) + yys2912 := string(yys2912Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2863 { + switch yys2912 { case "IP": if r.TryDecodeAsNil() { x.IP = "" @@ -36914,8 +37451,8 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.NodeName == nil { x.NodeName = new(string) } - yym2867 := z.DecBinary() - _ = yym2867 + yym2916 := z.DecBinary() + _ = yym2916 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() @@ -36933,9 +37470,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2863) - } // end switch yys2863 - } // end for yyj2863 + z.DecStructFieldNotFound(-1, yys2912) + } // end switch yys2912 + } // end for yyj2912 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36943,16 +37480,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2869 int - var yyb2869 bool - var yyhl2869 bool = l >= 0 - yyj2869++ - if yyhl2869 { - yyb2869 = yyj2869 > l + var yyj2918 int + var yyb2918 bool + var yyhl2918 bool = l >= 0 + yyj2918++ + if yyhl2918 { + yyb2918 = yyj2918 > l } else { - yyb2869 = r.CheckBreak() + yyb2918 = r.CheckBreak() } - if yyb2869 { + if yyb2918 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36962,13 +37499,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2869++ - if yyhl2869 { - yyb2869 = yyj2869 > l + yyj2918++ + if yyhl2918 { + yyb2918 = yyj2918 > l } else { - yyb2869 = r.CheckBreak() + yyb2918 = r.CheckBreak() } - if yyb2869 { + if yyb2918 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36978,13 +37515,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Hostname = string(r.DecodeString()) } - yyj2869++ - if yyhl2869 { - yyb2869 = yyj2869 > l + yyj2918++ + if yyhl2918 { + yyb2918 = yyj2918 > l } else { - yyb2869 = r.CheckBreak() + yyb2918 = r.CheckBreak() } - if yyb2869 { + if yyb2918 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36997,20 +37534,20 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.NodeName == nil { x.NodeName = new(string) } - yym2873 := z.DecBinary() - _ = yym2873 + yym2922 := z.DecBinary() + _ = yym2922 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() } } - yyj2869++ - if yyhl2869 { - yyb2869 = yyj2869 > l + yyj2918++ + if yyhl2918 { + yyb2918 = yyj2918 > l } else { - yyb2869 = r.CheckBreak() + yyb2918 = r.CheckBreak() } - if yyb2869 { + if yyb2918 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37026,17 +37563,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2869++ - if yyhl2869 { - yyb2869 = yyj2869 > l + yyj2918++ + if yyhl2918 { + yyb2918 = yyj2918 > l } else { - yyb2869 = r.CheckBreak() + yyb2918 = r.CheckBreak() } - if yyb2869 { + if yyb2918 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2869-1, "") + z.DecStructFieldNotFound(yyj2918-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37048,33 +37585,33 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2875 := z.EncBinary() - _ = yym2875 + yym2924 := z.EncBinary() + _ = yym2924 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2876 := !z.EncBinary() - yy2arr2876 := z.EncBasicHandle().StructToArray - var yyq2876 [3]bool - _, _, _ = yysep2876, yyq2876, yy2arr2876 - const yyr2876 bool = false - var yynn2876 int - if yyr2876 || yy2arr2876 { + yysep2925 := !z.EncBinary() + yy2arr2925 := z.EncBasicHandle().StructToArray + var yyq2925 [3]bool + _, _, _ = yysep2925, yyq2925, yy2arr2925 + const yyr2925 bool = false + var yynn2925 int + if yyr2925 || yy2arr2925 { r.EncodeArrayStart(3) } else { - yynn2876 = 3 - for _, b := range yyq2876 { + yynn2925 = 3 + for _, b := range yyq2925 { if b { - yynn2876++ + yynn2925++ } } - r.EncodeMapStart(yynn2876) - yynn2876 = 0 + r.EncodeMapStart(yynn2925) + yynn2925 = 0 } - if yyr2876 || yy2arr2876 { + if yyr2925 || yy2arr2925 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2878 := z.EncBinary() - _ = yym2878 + yym2927 := z.EncBinary() + _ = yym2927 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -37083,17 +37620,17 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2879 := z.EncBinary() - _ = yym2879 + yym2928 := z.EncBinary() + _ = yym2928 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2876 || yy2arr2876 { + if yyr2925 || yy2arr2925 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2881 := z.EncBinary() - _ = yym2881 + yym2930 := z.EncBinary() + _ = yym2930 if false { } else { r.EncodeInt(int64(x.Port)) @@ -37102,14 +37639,14 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2882 := z.EncBinary() - _ = yym2882 + yym2931 := z.EncBinary() + _ = yym2931 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2876 || yy2arr2876 { + if yyr2925 || yy2arr2925 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -37118,7 +37655,7 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2876 || yy2arr2876 { + if yyr2925 || yy2arr2925 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37131,25 +37668,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2884 := z.DecBinary() - _ = yym2884 + yym2933 := z.DecBinary() + _ = yym2933 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2885 := r.ContainerType() - if yyct2885 == codecSelferValueTypeMap1234 { - yyl2885 := r.ReadMapStart() - if yyl2885 == 0 { + yyct2934 := r.ContainerType() + if yyct2934 == codecSelferValueTypeMap1234 { + yyl2934 := r.ReadMapStart() + if yyl2934 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2885, d) + x.codecDecodeSelfFromMap(yyl2934, d) } - } else if yyct2885 == codecSelferValueTypeArray1234 { - yyl2885 := r.ReadArrayStart() - if yyl2885 == 0 { + } else if yyct2934 == codecSelferValueTypeArray1234 { + yyl2934 := r.ReadArrayStart() + if yyl2934 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2885, d) + x.codecDecodeSelfFromArray(yyl2934, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37161,12 +37698,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2886Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2886Slc - var yyhl2886 bool = l >= 0 - for yyj2886 := 0; ; yyj2886++ { - if yyhl2886 { - if yyj2886 >= l { + var yys2935Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2935Slc + var yyhl2935 bool = l >= 0 + for yyj2935 := 0; ; yyj2935++ { + if yyhl2935 { + if yyj2935 >= l { break } } else { @@ -37175,10 +37712,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2886Slc = r.DecodeBytes(yys2886Slc, true, true) - yys2886 := string(yys2886Slc) + yys2935Slc = r.DecodeBytes(yys2935Slc, true, true) + yys2935 := string(yys2935Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2886 { + switch yys2935 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -37198,9 +37735,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2886) - } // end switch yys2886 - } // end for yyj2886 + z.DecStructFieldNotFound(-1, yys2935) + } // end switch yys2935 + } // end for yyj2935 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37208,16 +37745,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2890 int - var yyb2890 bool - var yyhl2890 bool = l >= 0 - yyj2890++ - if yyhl2890 { - yyb2890 = yyj2890 > l + var yyj2939 int + var yyb2939 bool + var yyhl2939 bool = l >= 0 + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2890 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2890 { + if yyb2939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37227,13 +37764,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2890++ - if yyhl2890 { - yyb2890 = yyj2890 > l + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2890 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2890 { + if yyb2939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37243,13 +37780,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2890++ - if yyhl2890 { - yyb2890 = yyj2890 > l + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2890 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2890 { + if yyb2939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37260,17 +37797,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2890++ - if yyhl2890 { - yyb2890 = yyj2890 > l + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2890 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2890 { + if yyb2939 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2890-1, "") + z.DecStructFieldNotFound(yyj2939-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37282,37 +37819,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2894 := z.EncBinary() - _ = yym2894 + yym2943 := z.EncBinary() + _ = yym2943 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2895 := !z.EncBinary() - yy2arr2895 := z.EncBasicHandle().StructToArray - var yyq2895 [4]bool - _, _, _ = yysep2895, yyq2895, yy2arr2895 - const yyr2895 bool = false - yyq2895[0] = x.Kind != "" - yyq2895[1] = x.APIVersion != "" - yyq2895[2] = true - var yynn2895 int - if yyr2895 || yy2arr2895 { + yysep2944 := !z.EncBinary() + yy2arr2944 := z.EncBasicHandle().StructToArray + var yyq2944 [4]bool + _, _, _ = yysep2944, yyq2944, yy2arr2944 + const yyr2944 bool = false + yyq2944[0] = x.Kind != "" + yyq2944[1] = x.APIVersion != "" + yyq2944[2] = true + var yynn2944 int + if yyr2944 || yy2arr2944 { r.EncodeArrayStart(4) } else { - yynn2895 = 1 - for _, b := range yyq2895 { + yynn2944 = 1 + for _, b := range yyq2944 { if b { - yynn2895++ + yynn2944++ } } - r.EncodeMapStart(yynn2895) - yynn2895 = 0 + r.EncodeMapStart(yynn2944) + yynn2944 = 0 } - if yyr2895 || yy2arr2895 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2895[0] { - yym2897 := z.EncBinary() - _ = yym2897 + if yyq2944[0] { + yym2946 := z.EncBinary() + _ = yym2946 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -37321,23 +37858,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2895[0] { + if yyq2944[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2898 := z.EncBinary() - _ = yym2898 + yym2947 := z.EncBinary() + _ = yym2947 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2895 || yy2arr2895 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2895[1] { - yym2900 := z.EncBinary() - _ = yym2900 + if yyq2944[1] { + yym2949 := z.EncBinary() + _ = yym2949 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -37346,54 +37883,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2895[1] { + if yyq2944[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2901 := z.EncBinary() - _ = yym2901 + yym2950 := z.EncBinary() + _ = yym2950 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2895 || yy2arr2895 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2895[2] { - yy2903 := &x.ListMeta - yym2904 := z.EncBinary() - _ = yym2904 + if yyq2944[2] { + yy2952 := &x.ListMeta + yym2953 := z.EncBinary() + _ = yym2953 if false { - } else if z.HasExtensions() && z.EncExt(yy2903) { + } else if z.HasExtensions() && z.EncExt(yy2952) { } else { - z.EncFallback(yy2903) + z.EncFallback(yy2952) } } else { r.EncodeNil() } } else { - if yyq2895[2] { + if yyq2944[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2905 := &x.ListMeta - yym2906 := z.EncBinary() - _ = yym2906 + yy2954 := &x.ListMeta + yym2955 := z.EncBinary() + _ = yym2955 if false { - } else if z.HasExtensions() && z.EncExt(yy2905) { + } else if z.HasExtensions() && z.EncExt(yy2954) { } else { - z.EncFallback(yy2905) + z.EncFallback(yy2954) } } } - if yyr2895 || yy2arr2895 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2908 := z.EncBinary() - _ = yym2908 + yym2957 := z.EncBinary() + _ = yym2957 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -37406,15 +37943,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2909 := z.EncBinary() - _ = yym2909 + yym2958 := z.EncBinary() + _ = yym2958 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2895 || yy2arr2895 { + if yyr2944 || yy2arr2944 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37427,25 +37964,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2910 := z.DecBinary() - _ = yym2910 + yym2959 := z.DecBinary() + _ = yym2959 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2911 := r.ContainerType() - if yyct2911 == codecSelferValueTypeMap1234 { - yyl2911 := r.ReadMapStart() - if yyl2911 == 0 { + yyct2960 := r.ContainerType() + if yyct2960 == codecSelferValueTypeMap1234 { + yyl2960 := r.ReadMapStart() + if yyl2960 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2911, d) + x.codecDecodeSelfFromMap(yyl2960, d) } - } else if yyct2911 == codecSelferValueTypeArray1234 { - yyl2911 := r.ReadArrayStart() - if yyl2911 == 0 { + } else if yyct2960 == codecSelferValueTypeArray1234 { + yyl2960 := r.ReadArrayStart() + if yyl2960 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2911, d) + x.codecDecodeSelfFromArray(yyl2960, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37457,12 +37994,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2912Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2912Slc - var yyhl2912 bool = l >= 0 - for yyj2912 := 0; ; yyj2912++ { - if yyhl2912 { - if yyj2912 >= l { + var yys2961Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2961Slc + var yyhl2961 bool = l >= 0 + for yyj2961 := 0; ; yyj2961++ { + if yyhl2961 { + if yyj2961 >= l { break } } else { @@ -37471,10 +38008,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2912Slc = r.DecodeBytes(yys2912Slc, true, true) - yys2912 := string(yys2912Slc) + yys2961Slc = r.DecodeBytes(yys2961Slc, true, true) + yys2961 := string(yys2961Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2912 { + switch yys2961 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -37491,31 +38028,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2915 := &x.ListMeta - yym2916 := z.DecBinary() - _ = yym2916 + yyv2964 := &x.ListMeta + yym2965 := z.DecBinary() + _ = yym2965 if false { - } else if z.HasExtensions() && z.DecExt(yyv2915) { + } else if z.HasExtensions() && z.DecExt(yyv2964) { } else { - z.DecFallback(yyv2915, false) + z.DecFallback(yyv2964, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2917 := &x.Items - yym2918 := z.DecBinary() - _ = yym2918 + yyv2966 := &x.Items + yym2967 := z.DecBinary() + _ = yym2967 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2917), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2966), d) } } default: - z.DecStructFieldNotFound(-1, yys2912) - } // end switch yys2912 - } // end for yyj2912 + z.DecStructFieldNotFound(-1, yys2961) + } // end switch yys2961 + } // end for yyj2961 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37523,16 +38060,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2919 int - var yyb2919 bool - var yyhl2919 bool = l >= 0 - yyj2919++ - if yyhl2919 { - yyb2919 = yyj2919 > l + var yyj2968 int + var yyb2968 bool + var yyhl2968 bool = l >= 0 + yyj2968++ + if yyhl2968 { + yyb2968 = yyj2968 > l } else { - yyb2919 = r.CheckBreak() + yyb2968 = r.CheckBreak() } - if yyb2919 { + if yyb2968 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37542,13 +38079,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2919++ - if yyhl2919 { - yyb2919 = yyj2919 > l + yyj2968++ + if yyhl2968 { + yyb2968 = yyj2968 > l } else { - yyb2919 = r.CheckBreak() + yyb2968 = r.CheckBreak() } - if yyb2919 { + if yyb2968 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37558,13 +38095,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2919++ - if yyhl2919 { - yyb2919 = yyj2919 > l + yyj2968++ + if yyhl2968 { + yyb2968 = yyj2968 > l } else { - yyb2919 = r.CheckBreak() + yyb2968 = r.CheckBreak() } - if yyb2919 { + if yyb2968 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37572,22 +38109,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2922 := &x.ListMeta - yym2923 := z.DecBinary() - _ = yym2923 + yyv2971 := &x.ListMeta + yym2972 := z.DecBinary() + _ = yym2972 if false { - } else if z.HasExtensions() && z.DecExt(yyv2922) { + } else if z.HasExtensions() && z.DecExt(yyv2971) { } else { - z.DecFallback(yyv2922, false) + z.DecFallback(yyv2971, false) } } - yyj2919++ - if yyhl2919 { - yyb2919 = yyj2919 > l + yyj2968++ + if yyhl2968 { + yyb2968 = yyj2968 > l } else { - yyb2919 = r.CheckBreak() + yyb2968 = r.CheckBreak() } - if yyb2919 { + if yyb2968 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37595,26 +38132,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2924 := &x.Items - yym2925 := z.DecBinary() - _ = yym2925 + yyv2973 := &x.Items + yym2974 := z.DecBinary() + _ = yym2974 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2924), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2973), d) } } for { - yyj2919++ - if yyhl2919 { - yyb2919 = yyj2919 > l + yyj2968++ + if yyhl2968 { + yyb2968 = yyj2968 > l } else { - yyb2919 = r.CheckBreak() + yyb2968 = r.CheckBreak() } - if yyb2919 { + if yyb2968 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2919-1, "") + z.DecStructFieldNotFound(yyj2968-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37626,38 +38163,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2926 := z.EncBinary() - _ = yym2926 + yym2975 := z.EncBinary() + _ = yym2975 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2927 := !z.EncBinary() - yy2arr2927 := z.EncBasicHandle().StructToArray - var yyq2927 [4]bool - _, _, _ = yysep2927, yyq2927, yy2arr2927 - const yyr2927 bool = false - yyq2927[0] = x.PodCIDR != "" - yyq2927[1] = x.ExternalID != "" - yyq2927[2] = x.ProviderID != "" - yyq2927[3] = x.Unschedulable != false - var yynn2927 int - if yyr2927 || yy2arr2927 { + yysep2976 := !z.EncBinary() + yy2arr2976 := z.EncBasicHandle().StructToArray + var yyq2976 [4]bool + _, _, _ = yysep2976, yyq2976, yy2arr2976 + const yyr2976 bool = false + yyq2976[0] = x.PodCIDR != "" + yyq2976[1] = x.ExternalID != "" + yyq2976[2] = x.ProviderID != "" + yyq2976[3] = x.Unschedulable != false + var yynn2976 int + if yyr2976 || yy2arr2976 { r.EncodeArrayStart(4) } else { - yynn2927 = 0 - for _, b := range yyq2927 { + yynn2976 = 0 + for _, b := range yyq2976 { if b { - yynn2927++ + yynn2976++ } } - r.EncodeMapStart(yynn2927) - yynn2927 = 0 + r.EncodeMapStart(yynn2976) + yynn2976 = 0 } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2927[0] { - yym2929 := z.EncBinary() - _ = yym2929 + if yyq2976[0] { + yym2978 := z.EncBinary() + _ = yym2978 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -37666,23 +38203,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2927[0] { + if yyq2976[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2930 := z.EncBinary() - _ = yym2930 + yym2979 := z.EncBinary() + _ = yym2979 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2927[1] { - yym2932 := z.EncBinary() - _ = yym2932 + if yyq2976[1] { + yym2981 := z.EncBinary() + _ = yym2981 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -37691,23 +38228,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2927[1] { + if yyq2976[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2933 := z.EncBinary() - _ = yym2933 + yym2982 := z.EncBinary() + _ = yym2982 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2927[2] { - yym2935 := z.EncBinary() - _ = yym2935 + if yyq2976[2] { + yym2984 := z.EncBinary() + _ = yym2984 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -37716,23 +38253,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2927[2] { + if yyq2976[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2936 := z.EncBinary() - _ = yym2936 + yym2985 := z.EncBinary() + _ = yym2985 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2927[3] { - yym2938 := z.EncBinary() - _ = yym2938 + if yyq2976[3] { + yym2987 := z.EncBinary() + _ = yym2987 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -37741,19 +38278,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2927[3] { + if yyq2976[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2939 := z.EncBinary() - _ = yym2939 + yym2988 := z.EncBinary() + _ = yym2988 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37766,25 +38303,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2940 := z.DecBinary() - _ = yym2940 + yym2989 := z.DecBinary() + _ = yym2989 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2941 := r.ContainerType() - if yyct2941 == codecSelferValueTypeMap1234 { - yyl2941 := r.ReadMapStart() - if yyl2941 == 0 { + yyct2990 := r.ContainerType() + if yyct2990 == codecSelferValueTypeMap1234 { + yyl2990 := r.ReadMapStart() + if yyl2990 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2941, d) + x.codecDecodeSelfFromMap(yyl2990, d) } - } else if yyct2941 == codecSelferValueTypeArray1234 { - yyl2941 := r.ReadArrayStart() - if yyl2941 == 0 { + } else if yyct2990 == codecSelferValueTypeArray1234 { + yyl2990 := r.ReadArrayStart() + if yyl2990 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2941, d) + x.codecDecodeSelfFromArray(yyl2990, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37796,12 +38333,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2942Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2942Slc - var yyhl2942 bool = l >= 0 - for yyj2942 := 0; ; yyj2942++ { - if yyhl2942 { - if yyj2942 >= l { + var yys2991Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2991Slc + var yyhl2991 bool = l >= 0 + for yyj2991 := 0; ; yyj2991++ { + if yyhl2991 { + if yyj2991 >= l { break } } else { @@ -37810,10 +38347,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2942Slc = r.DecodeBytes(yys2942Slc, true, true) - yys2942 := string(yys2942Slc) + yys2991Slc = r.DecodeBytes(yys2991Slc, true, true) + yys2991 := string(yys2991Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2942 { + switch yys2991 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -37839,9 +38376,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2942) - } // end switch yys2942 - } // end for yyj2942 + z.DecStructFieldNotFound(-1, yys2991) + } // end switch yys2991 + } // end for yyj2991 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37849,16 +38386,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { 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 yyj2996 int + var yyb2996 bool + var yyhl2996 bool = l >= 0 + yyj2996++ + if yyhl2996 { + yyb2996 = yyj2996 > l } else { - yyb2947 = r.CheckBreak() + yyb2996 = r.CheckBreak() } - if yyb2947 { + if yyb2996 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37868,13 +38405,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2947++ - if yyhl2947 { - yyb2947 = yyj2947 > l + yyj2996++ + if yyhl2996 { + yyb2996 = yyj2996 > l } else { - yyb2947 = r.CheckBreak() + yyb2996 = r.CheckBreak() } - if yyb2947 { + if yyb2996 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37884,13 +38421,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2947++ - if yyhl2947 { - yyb2947 = yyj2947 > l + yyj2996++ + if yyhl2996 { + yyb2996 = yyj2996 > l } else { - yyb2947 = r.CheckBreak() + yyb2996 = r.CheckBreak() } - if yyb2947 { + if yyb2996 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37900,13 +38437,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2947++ - if yyhl2947 { - yyb2947 = yyj2947 > l + yyj2996++ + if yyhl2996 { + yyb2996 = yyj2996 > l } else { - yyb2947 = r.CheckBreak() + yyb2996 = r.CheckBreak() } - if yyb2947 { + if yyb2996 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37917,17 +38454,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2947++ - if yyhl2947 { - yyb2947 = yyj2947 > l + yyj2996++ + if yyhl2996 { + yyb2996 = yyj2996 > l } else { - yyb2947 = r.CheckBreak() + yyb2996 = r.CheckBreak() } - if yyb2947 { + if yyb2996 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2947-1, "") + z.DecStructFieldNotFound(yyj2996-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37939,33 +38476,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2952 := z.EncBinary() - _ = yym2952 + yym3001 := z.EncBinary() + _ = yym3001 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2953 := !z.EncBinary() - yy2arr2953 := z.EncBasicHandle().StructToArray - var yyq2953 [1]bool - _, _, _ = yysep2953, yyq2953, yy2arr2953 - const yyr2953 bool = false - var yynn2953 int - if yyr2953 || yy2arr2953 { + yysep3002 := !z.EncBinary() + yy2arr3002 := z.EncBasicHandle().StructToArray + var yyq3002 [1]bool + _, _, _ = yysep3002, yyq3002, yy2arr3002 + const yyr3002 bool = false + var yynn3002 int + if yyr3002 || yy2arr3002 { r.EncodeArrayStart(1) } else { - yynn2953 = 1 - for _, b := range yyq2953 { + yynn3002 = 1 + for _, b := range yyq3002 { if b { - yynn2953++ + yynn3002++ } } - r.EncodeMapStart(yynn2953) - yynn2953 = 0 + r.EncodeMapStart(yynn3002) + yynn3002 = 0 } - if yyr2953 || yy2arr2953 { + if yyr3002 || yy2arr3002 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2955 := z.EncBinary() - _ = yym2955 + yym3004 := z.EncBinary() + _ = yym3004 if false { } else { r.EncodeInt(int64(x.Port)) @@ -37974,14 +38511,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2956 := z.EncBinary() - _ = yym2956 + yym3005 := z.EncBinary() + _ = yym3005 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2953 || yy2arr2953 { + if yyr3002 || yy2arr3002 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37994,25 +38531,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2957 := z.DecBinary() - _ = yym2957 + yym3006 := z.DecBinary() + _ = yym3006 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2958 := r.ContainerType() - if yyct2958 == codecSelferValueTypeMap1234 { - yyl2958 := r.ReadMapStart() - if yyl2958 == 0 { + yyct3007 := r.ContainerType() + if yyct3007 == codecSelferValueTypeMap1234 { + yyl3007 := r.ReadMapStart() + if yyl3007 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2958, d) + x.codecDecodeSelfFromMap(yyl3007, d) } - } else if yyct2958 == codecSelferValueTypeArray1234 { - yyl2958 := r.ReadArrayStart() - if yyl2958 == 0 { + } else if yyct3007 == codecSelferValueTypeArray1234 { + yyl3007 := r.ReadArrayStart() + if yyl3007 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2958, d) + x.codecDecodeSelfFromArray(yyl3007, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38024,12 +38561,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2959Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2959Slc - var yyhl2959 bool = l >= 0 - for yyj2959 := 0; ; yyj2959++ { - if yyhl2959 { - if yyj2959 >= l { + var yys3008Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3008Slc + var yyhl3008 bool = l >= 0 + for yyj3008 := 0; ; yyj3008++ { + if yyhl3008 { + if yyj3008 >= l { break } } else { @@ -38038,10 +38575,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2959Slc = r.DecodeBytes(yys2959Slc, true, true) - yys2959 := string(yys2959Slc) + yys3008Slc = r.DecodeBytes(yys3008Slc, true, true) + yys3008 := string(yys3008Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2959 { + switch yys3008 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -38049,9 +38586,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2959) - } // end switch yys2959 - } // end for yyj2959 + z.DecStructFieldNotFound(-1, yys3008) + } // end switch yys3008 + } // end for yyj3008 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38059,16 +38596,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2961 int - var yyb2961 bool - var yyhl2961 bool = l >= 0 - yyj2961++ - if yyhl2961 { - yyb2961 = yyj2961 > l + var yyj3010 int + var yyb3010 bool + var yyhl3010 bool = l >= 0 + yyj3010++ + if yyhl3010 { + yyb3010 = yyj3010 > l } else { - yyb2961 = r.CheckBreak() + yyb3010 = r.CheckBreak() } - if yyb2961 { + if yyb3010 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38079,17 +38616,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2961++ - if yyhl2961 { - yyb2961 = yyj2961 > l + yyj3010++ + if yyhl3010 { + yyb3010 = yyj3010 > l } else { - yyb2961 = r.CheckBreak() + yyb3010 = r.CheckBreak() } - if yyb2961 { + if yyb3010 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2961-1, "") + z.DecStructFieldNotFound(yyj3010-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38101,48 +38638,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2963 := z.EncBinary() - _ = yym2963 + yym3012 := z.EncBinary() + _ = yym3012 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2964 := !z.EncBinary() - yy2arr2964 := z.EncBasicHandle().StructToArray - var yyq2964 [1]bool - _, _, _ = yysep2964, yyq2964, yy2arr2964 - const yyr2964 bool = false - yyq2964[0] = true - var yynn2964 int - if yyr2964 || yy2arr2964 { + yysep3013 := !z.EncBinary() + yy2arr3013 := z.EncBasicHandle().StructToArray + var yyq3013 [1]bool + _, _, _ = yysep3013, yyq3013, yy2arr3013 + const yyr3013 bool = false + yyq3013[0] = true + var yynn3013 int + if yyr3013 || yy2arr3013 { r.EncodeArrayStart(1) } else { - yynn2964 = 0 - for _, b := range yyq2964 { + yynn3013 = 0 + for _, b := range yyq3013 { if b { - yynn2964++ + yynn3013++ } } - r.EncodeMapStart(yynn2964) - yynn2964 = 0 + r.EncodeMapStart(yynn3013) + yynn3013 = 0 } - if yyr2964 || yy2arr2964 { + if yyr3013 || yy2arr3013 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2964[0] { - yy2966 := &x.KubeletEndpoint - yy2966.CodecEncodeSelf(e) + if yyq3013[0] { + yy3015 := &x.KubeletEndpoint + yy3015.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2964[0] { + if yyq3013[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2967 := &x.KubeletEndpoint - yy2967.CodecEncodeSelf(e) + yy3016 := &x.KubeletEndpoint + yy3016.CodecEncodeSelf(e) } } - if yyr2964 || yy2arr2964 { + if yyr3013 || yy2arr3013 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38155,25 +38692,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2968 := z.DecBinary() - _ = yym2968 + yym3017 := z.DecBinary() + _ = yym3017 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2969 := r.ContainerType() - if yyct2969 == codecSelferValueTypeMap1234 { - yyl2969 := r.ReadMapStart() - if yyl2969 == 0 { + yyct3018 := r.ContainerType() + if yyct3018 == codecSelferValueTypeMap1234 { + yyl3018 := r.ReadMapStart() + if yyl3018 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2969, d) + x.codecDecodeSelfFromMap(yyl3018, d) } - } else if yyct2969 == codecSelferValueTypeArray1234 { - yyl2969 := r.ReadArrayStart() - if yyl2969 == 0 { + } else if yyct3018 == codecSelferValueTypeArray1234 { + yyl3018 := r.ReadArrayStart() + if yyl3018 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2969, d) + x.codecDecodeSelfFromArray(yyl3018, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38185,12 +38722,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2970Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2970Slc - var yyhl2970 bool = l >= 0 - for yyj2970 := 0; ; yyj2970++ { - if yyhl2970 { - if yyj2970 >= l { + var yys3019Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3019Slc + var yyhl3019 bool = l >= 0 + for yyj3019 := 0; ; yyj3019++ { + if yyhl3019 { + if yyj3019 >= l { break } } else { @@ -38199,21 +38736,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2970Slc = r.DecodeBytes(yys2970Slc, true, true) - yys2970 := string(yys2970Slc) + yys3019Slc = r.DecodeBytes(yys3019Slc, true, true) + yys3019 := string(yys3019Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2970 { + switch yys3019 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2971 := &x.KubeletEndpoint - yyv2971.CodecDecodeSelf(d) + yyv3020 := &x.KubeletEndpoint + yyv3020.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2970) - } // end switch yys2970 - } // end for yyj2970 + z.DecStructFieldNotFound(-1, yys3019) + } // end switch yys3019 + } // end for yyj3019 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38221,16 +38758,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2972 int - var yyb2972 bool - var yyhl2972 bool = l >= 0 - yyj2972++ - if yyhl2972 { - yyb2972 = yyj2972 > l + var yyj3021 int + var yyb3021 bool + var yyhl3021 bool = l >= 0 + yyj3021++ + if yyhl3021 { + yyb3021 = yyj3021 > l } else { - yyb2972 = r.CheckBreak() + yyb3021 = r.CheckBreak() } - if yyb2972 { + if yyb3021 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38238,21 +38775,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2973 := &x.KubeletEndpoint - yyv2973.CodecDecodeSelf(d) + yyv3022 := &x.KubeletEndpoint + yyv3022.CodecDecodeSelf(d) } for { - yyj2972++ - if yyhl2972 { - yyb2972 = yyj2972 > l + yyj3021++ + if yyhl3021 { + yyb3021 = yyj3021 > l } else { - yyb2972 = r.CheckBreak() + yyb3021 = r.CheckBreak() } - if yyb2972 { + if yyb3021 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2972-1, "") + z.DecStructFieldNotFound(yyj3021-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38264,33 +38801,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2974 := z.EncBinary() - _ = yym2974 + yym3023 := z.EncBinary() + _ = yym3023 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2975 := !z.EncBinary() - yy2arr2975 := z.EncBasicHandle().StructToArray - var yyq2975 [10]bool - _, _, _ = yysep2975, yyq2975, yy2arr2975 - const yyr2975 bool = false - var yynn2975 int - if yyr2975 || yy2arr2975 { + yysep3024 := !z.EncBinary() + yy2arr3024 := z.EncBasicHandle().StructToArray + var yyq3024 [10]bool + _, _, _ = yysep3024, yyq3024, yy2arr3024 + const yyr3024 bool = false + var yynn3024 int + if yyr3024 || yy2arr3024 { r.EncodeArrayStart(10) } else { - yynn2975 = 10 - for _, b := range yyq2975 { + yynn3024 = 10 + for _, b := range yyq3024 { if b { - yynn2975++ + yynn3024++ } } - r.EncodeMapStart(yynn2975) - yynn2975 = 0 + r.EncodeMapStart(yynn3024) + yynn3024 = 0 } - if yyr2975 || yy2arr2975 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2977 := z.EncBinary() - _ = yym2977 + yym3026 := z.EncBinary() + _ = yym3026 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -38299,17 +38836,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2978 := z.EncBinary() - _ = yym2978 + yym3027 := z.EncBinary() + _ = yym3027 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2975 || yy2arr2975 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2980 := z.EncBinary() - _ = yym2980 + yym3029 := z.EncBinary() + _ = yym3029 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -38318,17 +38855,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2981 := z.EncBinary() - _ = yym2981 + yym3030 := z.EncBinary() + _ = yym3030 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2975 || yy2arr2975 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2983 := z.EncBinary() - _ = yym2983 + yym3032 := z.EncBinary() + _ = yym3032 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -38337,17 +38874,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2984 := z.EncBinary() - _ = yym2984 + yym3033 := z.EncBinary() + _ = yym3033 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2975 || yy2arr2975 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2986 := z.EncBinary() - _ = yym2986 + yym3035 := z.EncBinary() + _ = yym3035 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -38356,17 +38893,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2987 := z.EncBinary() - _ = yym2987 + yym3036 := z.EncBinary() + _ = yym3036 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2975 || yy2arr2975 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2989 := z.EncBinary() - _ = yym2989 + yym3038 := z.EncBinary() + _ = yym3038 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -38375,17 +38912,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2990 := z.EncBinary() - _ = yym2990 + yym3039 := z.EncBinary() + _ = yym3039 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2975 || yy2arr2975 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2992 := z.EncBinary() - _ = yym2992 + yym3041 := z.EncBinary() + _ = yym3041 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -38394,17 +38931,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2993 := z.EncBinary() - _ = yym2993 + yym3042 := z.EncBinary() + _ = yym3042 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2975 || yy2arr2975 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2995 := z.EncBinary() - _ = yym2995 + yym3044 := z.EncBinary() + _ = yym3044 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -38413,17 +38950,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2996 := z.EncBinary() - _ = yym2996 + yym3045 := z.EncBinary() + _ = yym3045 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2975 || yy2arr2975 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2998 := z.EncBinary() - _ = yym2998 + yym3047 := z.EncBinary() + _ = yym3047 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -38432,17 +38969,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2999 := z.EncBinary() - _ = yym2999 + yym3048 := z.EncBinary() + _ = yym3048 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2975 || yy2arr2975 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3001 := z.EncBinary() - _ = yym3001 + yym3050 := z.EncBinary() + _ = yym3050 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) @@ -38451,17 +38988,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operatingSystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3002 := z.EncBinary() - _ = yym3002 + yym3051 := z.EncBinary() + _ = yym3051 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) } } - if yyr2975 || yy2arr2975 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3004 := z.EncBinary() - _ = yym3004 + yym3053 := z.EncBinary() + _ = yym3053 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) @@ -38470,14 +39007,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("architecture")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3005 := z.EncBinary() - _ = yym3005 + yym3054 := z.EncBinary() + _ = yym3054 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) } } - if yyr2975 || yy2arr2975 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38490,25 +39027,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3006 := z.DecBinary() - _ = yym3006 + yym3055 := z.DecBinary() + _ = yym3055 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3007 := r.ContainerType() - if yyct3007 == codecSelferValueTypeMap1234 { - yyl3007 := r.ReadMapStart() - if yyl3007 == 0 { + yyct3056 := r.ContainerType() + if yyct3056 == codecSelferValueTypeMap1234 { + yyl3056 := r.ReadMapStart() + if yyl3056 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3007, d) + x.codecDecodeSelfFromMap(yyl3056, d) } - } else if yyct3007 == codecSelferValueTypeArray1234 { - yyl3007 := r.ReadArrayStart() - if yyl3007 == 0 { + } else if yyct3056 == codecSelferValueTypeArray1234 { + yyl3056 := r.ReadArrayStart() + if yyl3056 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3007, d) + x.codecDecodeSelfFromArray(yyl3056, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38520,12 +39057,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3008Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3008Slc - var yyhl3008 bool = l >= 0 - for yyj3008 := 0; ; yyj3008++ { - if yyhl3008 { - if yyj3008 >= l { + var yys3057Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3057Slc + var yyhl3057 bool = l >= 0 + for yyj3057 := 0; ; yyj3057++ { + if yyhl3057 { + if yyj3057 >= l { break } } else { @@ -38534,10 +39071,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3008Slc = r.DecodeBytes(yys3008Slc, true, true) - yys3008 := string(yys3008Slc) + yys3057Slc = r.DecodeBytes(yys3057Slc, true, true) + yys3057 := string(yys3057Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3008 { + switch yys3057 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -38599,9 +39136,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3008) - } // end switch yys3008 - } // end for yyj3008 + z.DecStructFieldNotFound(-1, yys3057) + } // end switch yys3057 + } // end for yyj3057 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38609,16 +39146,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3019 int - var yyb3019 bool - var yyhl3019 bool = l >= 0 - yyj3019++ - if yyhl3019 { - yyb3019 = yyj3019 > l + var yyj3068 int + var yyb3068 bool + var yyhl3068 bool = l >= 0 + yyj3068++ + if yyhl3068 { + yyb3068 = yyj3068 > l } else { - yyb3019 = r.CheckBreak() + yyb3068 = r.CheckBreak() } - if yyb3019 { + if yyb3068 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38628,13 +39165,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj3019++ - if yyhl3019 { - yyb3019 = yyj3019 > l + yyj3068++ + if yyhl3068 { + yyb3068 = yyj3068 > l } else { - yyb3019 = r.CheckBreak() + yyb3068 = r.CheckBreak() } - if yyb3019 { + if yyb3068 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38644,13 +39181,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj3019++ - if yyhl3019 { - yyb3019 = yyj3019 > l + yyj3068++ + if yyhl3068 { + yyb3068 = yyj3068 > l } else { - yyb3019 = r.CheckBreak() + yyb3068 = r.CheckBreak() } - if yyb3019 { + if yyb3068 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38660,13 +39197,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj3019++ - if yyhl3019 { - yyb3019 = yyj3019 > l + yyj3068++ + if yyhl3068 { + yyb3068 = yyj3068 > l } else { - yyb3019 = r.CheckBreak() + yyb3068 = r.CheckBreak() } - if yyb3019 { + if yyb3068 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38676,13 +39213,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj3019++ - if yyhl3019 { - yyb3019 = yyj3019 > l + yyj3068++ + if yyhl3068 { + yyb3068 = yyj3068 > l } else { - yyb3019 = r.CheckBreak() + yyb3068 = r.CheckBreak() } - if yyb3019 { + if yyb3068 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38692,13 +39229,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj3019++ - if yyhl3019 { - yyb3019 = yyj3019 > l + yyj3068++ + if yyhl3068 { + yyb3068 = yyj3068 > l } else { - yyb3019 = r.CheckBreak() + yyb3068 = r.CheckBreak() } - if yyb3019 { + if yyb3068 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38708,13 +39245,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj3019++ - if yyhl3019 { - yyb3019 = yyj3019 > l + yyj3068++ + if yyhl3068 { + yyb3068 = yyj3068 > l } else { - yyb3019 = r.CheckBreak() + yyb3068 = r.CheckBreak() } - if yyb3019 { + if yyb3068 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38724,13 +39261,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj3019++ - if yyhl3019 { - yyb3019 = yyj3019 > l + yyj3068++ + if yyhl3068 { + yyb3068 = yyj3068 > l } else { - yyb3019 = r.CheckBreak() + yyb3068 = r.CheckBreak() } - if yyb3019 { + if yyb3068 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38740,13 +39277,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeProxyVersion = string(r.DecodeString()) } - yyj3019++ - if yyhl3019 { - yyb3019 = yyj3019 > l + yyj3068++ + if yyhl3068 { + yyb3068 = yyj3068 > l } else { - yyb3019 = r.CheckBreak() + yyb3068 = r.CheckBreak() } - if yyb3019 { + if yyb3068 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38756,13 +39293,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OperatingSystem = string(r.DecodeString()) } - yyj3019++ - if yyhl3019 { - yyb3019 = yyj3019 > l + yyj3068++ + if yyhl3068 { + yyb3068 = yyj3068 > l } else { - yyb3019 = r.CheckBreak() + yyb3068 = r.CheckBreak() } - if yyb3019 { + if yyb3068 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38773,17 +39310,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } for { - yyj3019++ - if yyhl3019 { - yyb3019 = yyj3019 > l + yyj3068++ + if yyhl3068 { + yyb3068 = yyj3068 > l } else { - yyb3019 = r.CheckBreak() + yyb3068 = r.CheckBreak() } - if yyb3019 { + if yyb3068 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3019-1, "") + z.DecStructFieldNotFound(yyj3068-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38795,42 +39332,42 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3030 := z.EncBinary() - _ = yym3030 + yym3079 := z.EncBinary() + _ = yym3079 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3031 := !z.EncBinary() - yy2arr3031 := z.EncBasicHandle().StructToArray - var yyq3031 [10]bool - _, _, _ = yysep3031, yyq3031, yy2arr3031 - const yyr3031 bool = false - yyq3031[0] = len(x.Capacity) != 0 - yyq3031[1] = len(x.Allocatable) != 0 - yyq3031[2] = x.Phase != "" - yyq3031[3] = len(x.Conditions) != 0 - yyq3031[4] = len(x.Addresses) != 0 - yyq3031[5] = true - yyq3031[6] = true - yyq3031[7] = len(x.Images) != 0 - yyq3031[8] = len(x.VolumesInUse) != 0 - yyq3031[9] = len(x.VolumesAttached) != 0 - var yynn3031 int - if yyr3031 || yy2arr3031 { + yysep3080 := !z.EncBinary() + yy2arr3080 := z.EncBasicHandle().StructToArray + var yyq3080 [10]bool + _, _, _ = yysep3080, yyq3080, yy2arr3080 + const yyr3080 bool = false + yyq3080[0] = len(x.Capacity) != 0 + yyq3080[1] = len(x.Allocatable) != 0 + yyq3080[2] = x.Phase != "" + yyq3080[3] = len(x.Conditions) != 0 + yyq3080[4] = len(x.Addresses) != 0 + yyq3080[5] = true + yyq3080[6] = true + yyq3080[7] = len(x.Images) != 0 + yyq3080[8] = len(x.VolumesInUse) != 0 + yyq3080[9] = len(x.VolumesAttached) != 0 + var yynn3080 int + if yyr3080 || yy2arr3080 { r.EncodeArrayStart(10) } else { - yynn3031 = 0 - for _, b := range yyq3031 { + yynn3080 = 0 + for _, b := range yyq3080 { if b { - yynn3031++ + yynn3080++ } } - r.EncodeMapStart(yynn3031) - yynn3031 = 0 + r.EncodeMapStart(yynn3080) + yynn3080 = 0 } - if yyr3031 || yy2arr3031 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[0] { + if yyq3080[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -38840,7 +39377,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3031[0] { + if yyq3080[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -38851,9 +39388,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3031 || yy2arr3031 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[1] { + if yyq3080[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -38863,7 +39400,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3031[1] { + if yyq3080[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -38874,29 +39411,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3031 || yy2arr3031 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[2] { + if yyq3080[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3031[2] { + if yyq3080[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr3031 || yy2arr3031 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[3] { + if yyq3080[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym3036 := z.EncBinary() - _ = yym3036 + yym3085 := z.EncBinary() + _ = yym3085 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -38906,15 +39443,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3031[3] { + if yyq3080[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym3037 := z.EncBinary() - _ = yym3037 + yym3086 := z.EncBinary() + _ = yym3086 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -38922,14 +39459,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3031 || yy2arr3031 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[4] { + if yyq3080[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym3039 := z.EncBinary() - _ = yym3039 + yym3088 := z.EncBinary() + _ = yym3088 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -38939,15 +39476,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3031[4] { + if yyq3080[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym3040 := z.EncBinary() - _ = yym3040 + yym3089 := z.EncBinary() + _ = yym3089 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -38955,48 +39492,48 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3031 || yy2arr3031 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[5] { - yy3042 := &x.DaemonEndpoints - yy3042.CodecEncodeSelf(e) + if yyq3080[5] { + yy3091 := &x.DaemonEndpoints + yy3091.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3031[5] { + if yyq3080[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3043 := &x.DaemonEndpoints - yy3043.CodecEncodeSelf(e) + yy3092 := &x.DaemonEndpoints + yy3092.CodecEncodeSelf(e) } } - if yyr3031 || yy2arr3031 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[6] { - yy3045 := &x.NodeInfo - yy3045.CodecEncodeSelf(e) + if yyq3080[6] { + yy3094 := &x.NodeInfo + yy3094.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3031[6] { + if yyq3080[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3046 := &x.NodeInfo - yy3046.CodecEncodeSelf(e) + yy3095 := &x.NodeInfo + yy3095.CodecEncodeSelf(e) } } - if yyr3031 || yy2arr3031 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[7] { + if yyq3080[7] { if x.Images == nil { r.EncodeNil() } else { - yym3048 := z.EncBinary() - _ = yym3048 + yym3097 := z.EncBinary() + _ = yym3097 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -39006,15 +39543,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3031[7] { + if yyq3080[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("images")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Images == nil { r.EncodeNil() } else { - yym3049 := z.EncBinary() - _ = yym3049 + yym3098 := z.EncBinary() + _ = yym3098 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -39022,14 +39559,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3031 || yy2arr3031 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[8] { + if yyq3080[8] { if x.VolumesInUse == nil { r.EncodeNil() } else { - yym3051 := z.EncBinary() - _ = yym3051 + yym3100 := z.EncBinary() + _ = yym3100 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -39039,15 +39576,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3031[8] { + if yyq3080[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesInUse")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesInUse == nil { r.EncodeNil() } else { - yym3052 := z.EncBinary() - _ = yym3052 + yym3101 := z.EncBinary() + _ = yym3101 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -39055,14 +39592,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3031 || yy2arr3031 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[9] { + if yyq3080[9] { if x.VolumesAttached == nil { r.EncodeNil() } else { - yym3054 := z.EncBinary() - _ = yym3054 + yym3103 := z.EncBinary() + _ = yym3103 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -39072,15 +39609,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3031[9] { + if yyq3080[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesAttached")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesAttached == nil { r.EncodeNil() } else { - yym3055 := z.EncBinary() - _ = yym3055 + yym3104 := z.EncBinary() + _ = yym3104 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -39088,7 +39625,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3031 || yy2arr3031 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39101,25 +39638,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3056 := z.DecBinary() - _ = yym3056 + yym3105 := z.DecBinary() + _ = yym3105 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3057 := r.ContainerType() - if yyct3057 == codecSelferValueTypeMap1234 { - yyl3057 := r.ReadMapStart() - if yyl3057 == 0 { + yyct3106 := r.ContainerType() + if yyct3106 == codecSelferValueTypeMap1234 { + yyl3106 := r.ReadMapStart() + if yyl3106 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3057, d) + x.codecDecodeSelfFromMap(yyl3106, d) } - } else if yyct3057 == codecSelferValueTypeArray1234 { - yyl3057 := r.ReadArrayStart() - if yyl3057 == 0 { + } else if yyct3106 == codecSelferValueTypeArray1234 { + yyl3106 := r.ReadArrayStart() + if yyl3106 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3057, d) + x.codecDecodeSelfFromArray(yyl3106, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39131,12 +39668,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3058Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3058Slc - var yyhl3058 bool = l >= 0 - for yyj3058 := 0; ; yyj3058++ { - if yyhl3058 { - if yyj3058 >= 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 { @@ -39145,23 +39682,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3058Slc = r.DecodeBytes(yys3058Slc, true, true) - yys3058 := string(yys3058Slc) + yys3107Slc = r.DecodeBytes(yys3107Slc, true, true) + yys3107 := string(yys3107Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3058 { + switch yys3107 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3059 := &x.Capacity - yyv3059.CodecDecodeSelf(d) + yyv3108 := &x.Capacity + yyv3108.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv3060 := &x.Allocatable - yyv3060.CodecDecodeSelf(d) + yyv3109 := &x.Allocatable + yyv3109.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -39173,80 +39710,80 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3062 := &x.Conditions - yym3063 := z.DecBinary() - _ = yym3063 + yyv3111 := &x.Conditions + yym3112 := z.DecBinary() + _ = yym3112 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv3062), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv3111), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv3064 := &x.Addresses - yym3065 := z.DecBinary() - _ = yym3065 + yyv3113 := &x.Addresses + yym3114 := z.DecBinary() + _ = yym3114 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv3064), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv3113), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv3066 := &x.DaemonEndpoints - yyv3066.CodecDecodeSelf(d) + yyv3115 := &x.DaemonEndpoints + yyv3115.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv3067 := &x.NodeInfo - yyv3067.CodecDecodeSelf(d) + yyv3116 := &x.NodeInfo + yyv3116.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv3068 := &x.Images - yym3069 := z.DecBinary() - _ = yym3069 + yyv3117 := &x.Images + yym3118 := z.DecBinary() + _ = yym3118 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv3068), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv3117), d) } } case "volumesInUse": if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv3070 := &x.VolumesInUse - yym3071 := z.DecBinary() - _ = yym3071 + yyv3119 := &x.VolumesInUse + yym3120 := z.DecBinary() + _ = yym3120 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3070), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3119), d) } } case "volumesAttached": if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv3072 := &x.VolumesAttached - yym3073 := z.DecBinary() - _ = yym3073 + yyv3121 := &x.VolumesAttached + yym3122 := z.DecBinary() + _ = yym3122 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3072), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3121), d) } } default: - z.DecStructFieldNotFound(-1, yys3058) - } // end switch yys3058 - } // end for yyj3058 + z.DecStructFieldNotFound(-1, yys3107) + } // end switch yys3107 + } // end for yyj3107 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39254,16 +39791,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3074 int - var yyb3074 bool - var yyhl3074 bool = l >= 0 - yyj3074++ - if yyhl3074 { - yyb3074 = yyj3074 > l + var yyj3123 int + var yyb3123 bool + var yyhl3123 bool = l >= 0 + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3074 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3074 { + if yyb3123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39271,16 +39808,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3075 := &x.Capacity - yyv3075.CodecDecodeSelf(d) + yyv3124 := &x.Capacity + yyv3124.CodecDecodeSelf(d) } - yyj3074++ - if yyhl3074 { - yyb3074 = yyj3074 > l + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3074 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3074 { + if yyb3123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39288,16 +39825,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv3076 := &x.Allocatable - yyv3076.CodecDecodeSelf(d) + yyv3125 := &x.Allocatable + yyv3125.CodecDecodeSelf(d) } - yyj3074++ - if yyhl3074 { - yyb3074 = yyj3074 > l + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3074 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3074 { + if yyb3123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39307,13 +39844,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj3074++ - if yyhl3074 { - yyb3074 = yyj3074 > l + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3074 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3074 { + if yyb3123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39321,21 +39858,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3078 := &x.Conditions - yym3079 := z.DecBinary() - _ = yym3079 + yyv3127 := &x.Conditions + yym3128 := z.DecBinary() + _ = yym3128 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv3078), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv3127), d) } } - yyj3074++ - if yyhl3074 { - yyb3074 = yyj3074 > l + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3074 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3074 { + if yyb3123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39343,21 +39880,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv3080 := &x.Addresses - yym3081 := z.DecBinary() - _ = yym3081 + yyv3129 := &x.Addresses + yym3130 := z.DecBinary() + _ = yym3130 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv3080), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv3129), d) } } - yyj3074++ - if yyhl3074 { - yyb3074 = yyj3074 > l + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3074 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3074 { + if yyb3123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39365,16 +39902,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv3082 := &x.DaemonEndpoints - yyv3082.CodecDecodeSelf(d) + yyv3131 := &x.DaemonEndpoints + yyv3131.CodecDecodeSelf(d) } - yyj3074++ - if yyhl3074 { - yyb3074 = yyj3074 > l + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3074 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3074 { + if yyb3123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39382,16 +39919,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv3083 := &x.NodeInfo - yyv3083.CodecDecodeSelf(d) + yyv3132 := &x.NodeInfo + yyv3132.CodecDecodeSelf(d) } - yyj3074++ - if yyhl3074 { - yyb3074 = yyj3074 > l + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3074 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3074 { + if yyb3123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39399,21 +39936,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv3084 := &x.Images - yym3085 := z.DecBinary() - _ = yym3085 + yyv3133 := &x.Images + yym3134 := z.DecBinary() + _ = yym3134 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv3084), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv3133), d) } } - yyj3074++ - if yyhl3074 { - yyb3074 = yyj3074 > l + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3074 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3074 { + if yyb3123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39421,21 +39958,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv3086 := &x.VolumesInUse - yym3087 := z.DecBinary() - _ = yym3087 + yyv3135 := &x.VolumesInUse + yym3136 := z.DecBinary() + _ = yym3136 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3086), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3135), d) } } - yyj3074++ - if yyhl3074 { - yyb3074 = yyj3074 > l + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3074 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3074 { + if yyb3123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39443,26 +39980,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv3088 := &x.VolumesAttached - yym3089 := z.DecBinary() - _ = yym3089 + yyv3137 := &x.VolumesAttached + yym3138 := z.DecBinary() + _ = yym3138 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3088), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3137), d) } } for { - yyj3074++ - if yyhl3074 { - yyb3074 = yyj3074 > l + yyj3123++ + if yyhl3123 { + yyb3123 = yyj3123 > l } else { - yyb3074 = r.CheckBreak() + yyb3123 = r.CheckBreak() } - if yyb3074 { + if yyb3123 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3074-1, "") + z.DecStructFieldNotFound(yyj3123-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39471,8 +40008,8 @@ func (x UniqueVolumeName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3090 := z.EncBinary() - _ = yym3090 + yym3139 := z.EncBinary() + _ = yym3139 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39484,8 +40021,8 @@ func (x *UniqueVolumeName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3091 := z.DecBinary() - _ = yym3091 + yym3140 := z.DecBinary() + _ = yym3140 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39500,30 +40037,30 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3092 := z.EncBinary() - _ = yym3092 + yym3141 := z.EncBinary() + _ = yym3141 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3093 := !z.EncBinary() - yy2arr3093 := z.EncBasicHandle().StructToArray - var yyq3093 [2]bool - _, _, _ = yysep3093, yyq3093, yy2arr3093 - const yyr3093 bool = false - var yynn3093 int - if yyr3093 || yy2arr3093 { + yysep3142 := !z.EncBinary() + yy2arr3142 := z.EncBasicHandle().StructToArray + var yyq3142 [2]bool + _, _, _ = yysep3142, yyq3142, yy2arr3142 + const yyr3142 bool = false + var yynn3142 int + if yyr3142 || yy2arr3142 { r.EncodeArrayStart(2) } else { - yynn3093 = 2 - for _, b := range yyq3093 { + yynn3142 = 2 + for _, b := range yyq3142 { if b { - yynn3093++ + yynn3142++ } } - r.EncodeMapStart(yynn3093) - yynn3093 = 0 + r.EncodeMapStart(yynn3142) + yynn3142 = 0 } - if yyr3093 || yy2arr3093 { + if yyr3142 || yy2arr3142 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Name.CodecEncodeSelf(e) } else { @@ -39532,10 +40069,10 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Name.CodecEncodeSelf(e) } - if yyr3093 || yy2arr3093 { + if yyr3142 || yy2arr3142 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3096 := z.EncBinary() - _ = yym3096 + yym3145 := z.EncBinary() + _ = yym3145 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) @@ -39544,14 +40081,14 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("devicePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3097 := z.EncBinary() - _ = yym3097 + yym3146 := z.EncBinary() + _ = yym3146 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) } } - if yyr3093 || yy2arr3093 { + if yyr3142 || yy2arr3142 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39564,25 +40101,25 @@ func (x *AttachedVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3098 := z.DecBinary() - _ = yym3098 + yym3147 := z.DecBinary() + _ = yym3147 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3099 := r.ContainerType() - if yyct3099 == codecSelferValueTypeMap1234 { - yyl3099 := r.ReadMapStart() - if yyl3099 == 0 { + yyct3148 := r.ContainerType() + if yyct3148 == codecSelferValueTypeMap1234 { + yyl3148 := r.ReadMapStart() + if yyl3148 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3099, d) + x.codecDecodeSelfFromMap(yyl3148, d) } - } else if yyct3099 == codecSelferValueTypeArray1234 { - yyl3099 := r.ReadArrayStart() - if yyl3099 == 0 { + } else if yyct3148 == codecSelferValueTypeArray1234 { + yyl3148 := r.ReadArrayStart() + if yyl3148 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3099, d) + x.codecDecodeSelfFromArray(yyl3148, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39594,12 +40131,12 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3100Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3100Slc - var yyhl3100 bool = l >= 0 - for yyj3100 := 0; ; yyj3100++ { - if yyhl3100 { - if yyj3100 >= l { + var yys3149Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3149Slc + var yyhl3149 bool = l >= 0 + for yyj3149 := 0; ; yyj3149++ { + if yyhl3149 { + if yyj3149 >= l { break } } else { @@ -39608,10 +40145,10 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3100Slc = r.DecodeBytes(yys3100Slc, true, true) - yys3100 := string(yys3100Slc) + yys3149Slc = r.DecodeBytes(yys3149Slc, true, true) + yys3149 := string(yys3149Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3100 { + switch yys3149 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -39625,9 +40162,9 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3100) - } // end switch yys3100 - } // end for yyj3100 + z.DecStructFieldNotFound(-1, yys3149) + } // end switch yys3149 + } // end for yyj3149 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39635,16 +40172,16 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3103 int - var yyb3103 bool - var yyhl3103 bool = l >= 0 - yyj3103++ - if yyhl3103 { - yyb3103 = yyj3103 > l + var yyj3152 int + var yyb3152 bool + var yyhl3152 bool = l >= 0 + yyj3152++ + if yyhl3152 { + yyb3152 = yyj3152 > l } else { - yyb3103 = r.CheckBreak() + yyb3152 = r.CheckBreak() } - if yyb3103 { + if yyb3152 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39654,13 +40191,13 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = UniqueVolumeName(r.DecodeString()) } - yyj3103++ - if yyhl3103 { - yyb3103 = yyj3103 > l + yyj3152++ + if yyhl3152 { + yyb3152 = yyj3152 > l } else { - yyb3103 = r.CheckBreak() + yyb3152 = r.CheckBreak() } - if yyb3103 { + if yyb3152 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39671,17 +40208,17 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } for { - yyj3103++ - if yyhl3103 { - yyb3103 = yyj3103 > l + yyj3152++ + if yyhl3152 { + yyb3152 = yyj3152 > l } else { - yyb3103 = r.CheckBreak() + yyb3152 = r.CheckBreak() } - if yyb3103 { + if yyb3152 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3103-1, "") + z.DecStructFieldNotFound(yyj3152-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39693,38 +40230,38 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3106 := z.EncBinary() - _ = yym3106 + yym3155 := z.EncBinary() + _ = yym3155 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3107 := !z.EncBinary() - yy2arr3107 := z.EncBasicHandle().StructToArray - var yyq3107 [1]bool - _, _, _ = yysep3107, yyq3107, yy2arr3107 - const yyr3107 bool = false - yyq3107[0] = len(x.PreferAvoidPods) != 0 - var yynn3107 int - if yyr3107 || yy2arr3107 { + yysep3156 := !z.EncBinary() + yy2arr3156 := z.EncBasicHandle().StructToArray + var yyq3156 [1]bool + _, _, _ = yysep3156, yyq3156, yy2arr3156 + const yyr3156 bool = false + yyq3156[0] = len(x.PreferAvoidPods) != 0 + var yynn3156 int + if yyr3156 || yy2arr3156 { r.EncodeArrayStart(1) } else { - yynn3107 = 0 - for _, b := range yyq3107 { + yynn3156 = 0 + for _, b := range yyq3156 { if b { - yynn3107++ + yynn3156++ } } - r.EncodeMapStart(yynn3107) - yynn3107 = 0 + r.EncodeMapStart(yynn3156) + yynn3156 = 0 } - if yyr3107 || yy2arr3107 { + if yyr3156 || yy2arr3156 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3107[0] { + if yyq3156[0] { if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym3109 := z.EncBinary() - _ = yym3109 + yym3158 := z.EncBinary() + _ = yym3158 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -39734,15 +40271,15 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3107[0] { + if yyq3156[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym3110 := z.EncBinary() - _ = yym3110 + yym3159 := z.EncBinary() + _ = yym3159 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -39750,7 +40287,7 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3107 || yy2arr3107 { + if yyr3156 || yy2arr3156 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39763,25 +40300,25 @@ func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3111 := z.DecBinary() - _ = yym3111 + yym3160 := z.DecBinary() + _ = yym3160 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3112 := r.ContainerType() - if yyct3112 == codecSelferValueTypeMap1234 { - yyl3112 := r.ReadMapStart() - if yyl3112 == 0 { + yyct3161 := r.ContainerType() + if yyct3161 == codecSelferValueTypeMap1234 { + yyl3161 := r.ReadMapStart() + if yyl3161 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3112, d) + x.codecDecodeSelfFromMap(yyl3161, d) } - } else if yyct3112 == codecSelferValueTypeArray1234 { - yyl3112 := r.ReadArrayStart() - if yyl3112 == 0 { + } else if yyct3161 == codecSelferValueTypeArray1234 { + yyl3161 := r.ReadArrayStart() + if yyl3161 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3112, d) + x.codecDecodeSelfFromArray(yyl3161, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39793,12 +40330,12 @@ func (x *AvoidPods) 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 yys3162Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3162Slc + var yyhl3162 bool = l >= 0 + for yyj3162 := 0; ; yyj3162++ { + if yyhl3162 { + if yyj3162 >= l { break } } else { @@ -39807,26 +40344,26 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3113Slc = r.DecodeBytes(yys3113Slc, true, true) - yys3113 := string(yys3113Slc) + yys3162Slc = r.DecodeBytes(yys3162Slc, true, true) + yys3162 := string(yys3162Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3113 { + switch yys3162 { case "preferAvoidPods": if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv3114 := &x.PreferAvoidPods - yym3115 := z.DecBinary() - _ = yym3115 + yyv3163 := &x.PreferAvoidPods + yym3164 := z.DecBinary() + _ = yym3164 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3114), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3163), d) } } default: - z.DecStructFieldNotFound(-1, yys3113) - } // end switch yys3113 - } // end for yyj3113 + z.DecStructFieldNotFound(-1, yys3162) + } // end switch yys3162 + } // end for yyj3162 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39834,16 +40371,16 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3116 int - var yyb3116 bool - var yyhl3116 bool = l >= 0 - yyj3116++ - if yyhl3116 { - yyb3116 = yyj3116 > l + var yyj3165 int + var yyb3165 bool + var yyhl3165 bool = l >= 0 + yyj3165++ + if yyhl3165 { + yyb3165 = yyj3165 > l } else { - yyb3116 = r.CheckBreak() + yyb3165 = r.CheckBreak() } - if yyb3116 { + if yyb3165 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39851,26 +40388,26 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv3117 := &x.PreferAvoidPods - yym3118 := z.DecBinary() - _ = yym3118 + yyv3166 := &x.PreferAvoidPods + yym3167 := z.DecBinary() + _ = yym3167 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3117), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3166), d) } } for { - yyj3116++ - if yyhl3116 { - yyb3116 = yyj3116 > l + yyj3165++ + if yyhl3165 { + yyb3165 = yyj3165 > l } else { - yyb3116 = r.CheckBreak() + yyb3165 = r.CheckBreak() } - if yyb3116 { + if yyb3165 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3116-1, "") + z.DecStructFieldNotFound(yyj3165-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39882,85 +40419,85 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3119 := z.EncBinary() - _ = yym3119 + yym3168 := z.EncBinary() + _ = yym3168 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3120 := !z.EncBinary() - yy2arr3120 := z.EncBasicHandle().StructToArray - var yyq3120 [4]bool - _, _, _ = yysep3120, yyq3120, yy2arr3120 - const yyr3120 bool = false - yyq3120[1] = true - yyq3120[2] = x.Reason != "" - yyq3120[3] = x.Message != "" - var yynn3120 int - if yyr3120 || yy2arr3120 { + yysep3169 := !z.EncBinary() + yy2arr3169 := z.EncBasicHandle().StructToArray + var yyq3169 [4]bool + _, _, _ = yysep3169, yyq3169, yy2arr3169 + const yyr3169 bool = false + yyq3169[1] = true + yyq3169[2] = x.Reason != "" + yyq3169[3] = x.Message != "" + var yynn3169 int + if yyr3169 || yy2arr3169 { r.EncodeArrayStart(4) } else { - yynn3120 = 1 - for _, b := range yyq3120 { + yynn3169 = 1 + for _, b := range yyq3169 { if b { - yynn3120++ + yynn3169++ } } - r.EncodeMapStart(yynn3120) - yynn3120 = 0 + r.EncodeMapStart(yynn3169) + yynn3169 = 0 } - if yyr3120 || yy2arr3120 { + if yyr3169 || yy2arr3169 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3122 := &x.PodSignature - yy3122.CodecEncodeSelf(e) + yy3171 := &x.PodSignature + yy3171.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSignature")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3123 := &x.PodSignature - yy3123.CodecEncodeSelf(e) + yy3172 := &x.PodSignature + yy3172.CodecEncodeSelf(e) } - if yyr3120 || yy2arr3120 { + if yyr3169 || yy2arr3169 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3120[1] { - yy3125 := &x.EvictionTime - yym3126 := z.EncBinary() - _ = yym3126 + if yyq3169[1] { + yy3174 := &x.EvictionTime + yym3175 := z.EncBinary() + _ = yym3175 if false { - } else if z.HasExtensions() && z.EncExt(yy3125) { - } else if yym3126 { - z.EncBinaryMarshal(yy3125) - } else if !yym3126 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3125) + } else if z.HasExtensions() && z.EncExt(yy3174) { + } else if yym3175 { + z.EncBinaryMarshal(yy3174) + } else if !yym3175 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3174) } else { - z.EncFallback(yy3125) + z.EncFallback(yy3174) } } else { r.EncodeNil() } } else { - if yyq3120[1] { + if yyq3169[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3127 := &x.EvictionTime - yym3128 := z.EncBinary() - _ = yym3128 + yy3176 := &x.EvictionTime + yym3177 := z.EncBinary() + _ = yym3177 if false { - } else if z.HasExtensions() && z.EncExt(yy3127) { - } else if yym3128 { - z.EncBinaryMarshal(yy3127) - } else if !yym3128 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3127) + } else if z.HasExtensions() && z.EncExt(yy3176) { + } else if yym3177 { + z.EncBinaryMarshal(yy3176) + } else if !yym3177 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3176) } else { - z.EncFallback(yy3127) + z.EncFallback(yy3176) } } } - if yyr3120 || yy2arr3120 { + if yyr3169 || yy2arr3169 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3120[2] { - yym3130 := z.EncBinary() - _ = yym3130 + if yyq3169[2] { + yym3179 := z.EncBinary() + _ = yym3179 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -39969,23 +40506,23 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3120[2] { + if yyq3169[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3131 := z.EncBinary() - _ = yym3131 + yym3180 := z.EncBinary() + _ = yym3180 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3120 || yy2arr3120 { + if yyr3169 || yy2arr3169 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3120[3] { - yym3133 := z.EncBinary() - _ = yym3133 + if yyq3169[3] { + yym3182 := z.EncBinary() + _ = yym3182 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -39994,19 +40531,19 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3120[3] { + if yyq3169[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3134 := z.EncBinary() - _ = yym3134 + yym3183 := z.EncBinary() + _ = yym3183 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3120 || yy2arr3120 { + if yyr3169 || yy2arr3169 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40019,25 +40556,25 @@ func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3135 := z.DecBinary() - _ = yym3135 + yym3184 := z.DecBinary() + _ = yym3184 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3136 := r.ContainerType() - if yyct3136 == codecSelferValueTypeMap1234 { - yyl3136 := r.ReadMapStart() - if yyl3136 == 0 { + yyct3185 := r.ContainerType() + if yyct3185 == codecSelferValueTypeMap1234 { + yyl3185 := r.ReadMapStart() + if yyl3185 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3136, d) + x.codecDecodeSelfFromMap(yyl3185, d) } - } else if yyct3136 == codecSelferValueTypeArray1234 { - yyl3136 := r.ReadArrayStart() - if yyl3136 == 0 { + } else if yyct3185 == codecSelferValueTypeArray1234 { + yyl3185 := r.ReadArrayStart() + if yyl3185 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3136, d) + x.codecDecodeSelfFromArray(yyl3185, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40049,12 +40586,12 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3137Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3137Slc - var yyhl3137 bool = l >= 0 - for yyj3137 := 0; ; yyj3137++ { - if yyhl3137 { - if yyj3137 >= l { + var yys3186Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3186Slc + var yyhl3186 bool = l >= 0 + for yyj3186 := 0; ; yyj3186++ { + if yyhl3186 { + if yyj3186 >= l { break } } else { @@ -40063,32 +40600,32 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3137Slc = r.DecodeBytes(yys3137Slc, true, true) - yys3137 := string(yys3137Slc) + yys3186Slc = r.DecodeBytes(yys3186Slc, true, true) + yys3186 := string(yys3186Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3137 { + switch yys3186 { case "podSignature": if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv3138 := &x.PodSignature - yyv3138.CodecDecodeSelf(d) + yyv3187 := &x.PodSignature + yyv3187.CodecDecodeSelf(d) } case "evictionTime": if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv3139 := &x.EvictionTime - yym3140 := z.DecBinary() - _ = yym3140 + yyv3188 := &x.EvictionTime + yym3189 := z.DecBinary() + _ = yym3189 if false { - } else if z.HasExtensions() && z.DecExt(yyv3139) { - } else if yym3140 { - z.DecBinaryUnmarshal(yyv3139) - } else if !yym3140 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3139) + } else if z.HasExtensions() && z.DecExt(yyv3188) { + } else if yym3189 { + z.DecBinaryUnmarshal(yyv3188) + } else if !yym3189 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3188) } else { - z.DecFallback(yyv3139, false) + z.DecFallback(yyv3188, false) } } case "reason": @@ -40104,9 +40641,9 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3137) - } // end switch yys3137 - } // end for yyj3137 + z.DecStructFieldNotFound(-1, yys3186) + } // end switch yys3186 + } // end for yyj3186 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40114,16 +40651,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3143 int - var yyb3143 bool - var yyhl3143 bool = l >= 0 - yyj3143++ - if yyhl3143 { - yyb3143 = yyj3143 > l + var yyj3192 int + var yyb3192 bool + var yyhl3192 bool = l >= 0 + yyj3192++ + if yyhl3192 { + yyb3192 = yyj3192 > l } else { - yyb3143 = r.CheckBreak() + yyb3192 = r.CheckBreak() } - if yyb3143 { + if yyb3192 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40131,16 +40668,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv3144 := &x.PodSignature - yyv3144.CodecDecodeSelf(d) + yyv3193 := &x.PodSignature + yyv3193.CodecDecodeSelf(d) } - yyj3143++ - if yyhl3143 { - yyb3143 = yyj3143 > l + yyj3192++ + if yyhl3192 { + yyb3192 = yyj3192 > l } else { - yyb3143 = r.CheckBreak() + yyb3192 = r.CheckBreak() } - if yyb3143 { + if yyb3192 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40148,26 +40685,26 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv3145 := &x.EvictionTime - yym3146 := z.DecBinary() - _ = yym3146 + yyv3194 := &x.EvictionTime + yym3195 := z.DecBinary() + _ = yym3195 if false { - } else if z.HasExtensions() && z.DecExt(yyv3145) { - } else if yym3146 { - z.DecBinaryUnmarshal(yyv3145) - } else if !yym3146 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3145) + } else if z.HasExtensions() && z.DecExt(yyv3194) { + } else if yym3195 { + z.DecBinaryUnmarshal(yyv3194) + } else if !yym3195 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3194) } else { - z.DecFallback(yyv3145, false) + z.DecFallback(yyv3194, false) } } - yyj3143++ - if yyhl3143 { - yyb3143 = yyj3143 > l + yyj3192++ + if yyhl3192 { + yyb3192 = yyj3192 > l } else { - yyb3143 = r.CheckBreak() + yyb3192 = r.CheckBreak() } - if yyb3143 { + if yyb3192 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40177,13 +40714,13 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Reason = string(r.DecodeString()) } - yyj3143++ - if yyhl3143 { - yyb3143 = yyj3143 > l + yyj3192++ + if yyhl3192 { + yyb3192 = yyj3192 > l } else { - yyb3143 = r.CheckBreak() + yyb3192 = r.CheckBreak() } - if yyb3143 { + if yyb3192 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40194,17 +40731,17 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Message = string(r.DecodeString()) } for { - yyj3143++ - if yyhl3143 { - yyb3143 = yyj3143 > l + yyj3192++ + if yyhl3192 { + yyb3192 = yyj3192 > l } else { - yyb3143 = r.CheckBreak() + yyb3192 = r.CheckBreak() } - if yyb3143 { + if yyb3192 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3143-1, "") + z.DecStructFieldNotFound(yyj3192-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40216,33 +40753,33 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3149 := z.EncBinary() - _ = yym3149 + yym3198 := z.EncBinary() + _ = yym3198 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3150 := !z.EncBinary() - yy2arr3150 := z.EncBasicHandle().StructToArray - var yyq3150 [1]bool - _, _, _ = yysep3150, yyq3150, yy2arr3150 - const yyr3150 bool = false - yyq3150[0] = x.PodController != nil - var yynn3150 int - if yyr3150 || yy2arr3150 { + yysep3199 := !z.EncBinary() + yy2arr3199 := z.EncBasicHandle().StructToArray + var yyq3199 [1]bool + _, _, _ = yysep3199, yyq3199, yy2arr3199 + const yyr3199 bool = false + yyq3199[0] = x.PodController != nil + var yynn3199 int + if yyr3199 || yy2arr3199 { r.EncodeArrayStart(1) } else { - yynn3150 = 0 - for _, b := range yyq3150 { + yynn3199 = 0 + for _, b := range yyq3199 { if b { - yynn3150++ + yynn3199++ } } - r.EncodeMapStart(yynn3150) - yynn3150 = 0 + r.EncodeMapStart(yynn3199) + yynn3199 = 0 } - if yyr3150 || yy2arr3150 { + if yyr3199 || yy2arr3199 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3150[0] { + if yyq3199[0] { if x.PodController == nil { r.EncodeNil() } else { @@ -40252,7 +40789,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3150[0] { + if yyq3199[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podController")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -40263,7 +40800,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3150 || yy2arr3150 { + if yyr3199 || yy2arr3199 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40276,25 +40813,25 @@ func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3152 := z.DecBinary() - _ = yym3152 + yym3201 := z.DecBinary() + _ = yym3201 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3153 := r.ContainerType() - if yyct3153 == codecSelferValueTypeMap1234 { - yyl3153 := r.ReadMapStart() - if yyl3153 == 0 { + yyct3202 := r.ContainerType() + if yyct3202 == codecSelferValueTypeMap1234 { + yyl3202 := r.ReadMapStart() + if yyl3202 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3153, d) + x.codecDecodeSelfFromMap(yyl3202, d) } - } else if yyct3153 == codecSelferValueTypeArray1234 { - yyl3153 := r.ReadArrayStart() - if yyl3153 == 0 { + } else if yyct3202 == codecSelferValueTypeArray1234 { + yyl3202 := r.ReadArrayStart() + if yyl3202 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3153, d) + x.codecDecodeSelfFromArray(yyl3202, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40306,12 +40843,12 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3154Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3154Slc - var yyhl3154 bool = l >= 0 - for yyj3154 := 0; ; yyj3154++ { - if yyhl3154 { - if yyj3154 >= 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 { @@ -40320,10 +40857,10 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3154Slc = r.DecodeBytes(yys3154Slc, true, true) - yys3154 := string(yys3154Slc) + yys3203Slc = r.DecodeBytes(yys3203Slc, true, true) + yys3203 := string(yys3203Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3154 { + switch yys3203 { case "podController": if r.TryDecodeAsNil() { if x.PodController != nil { @@ -40336,9 +40873,9 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3154) - } // end switch yys3154 - } // end for yyj3154 + z.DecStructFieldNotFound(-1, yys3203) + } // end switch yys3203 + } // end for yyj3203 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40346,16 +40883,16 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3156 int - var yyb3156 bool - var yyhl3156 bool = l >= 0 - yyj3156++ - if yyhl3156 { - yyb3156 = yyj3156 > l + var yyj3205 int + var yyb3205 bool + var yyhl3205 bool = l >= 0 + yyj3205++ + if yyhl3205 { + yyb3205 = yyj3205 > l } else { - yyb3156 = r.CheckBreak() + yyb3205 = r.CheckBreak() } - if yyb3156 { + if yyb3205 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40371,17 +40908,17 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } for { - yyj3156++ - if yyhl3156 { - yyb3156 = yyj3156 > l + yyj3205++ + if yyhl3205 { + yyb3205 = yyj3205 > l } else { - yyb3156 = r.CheckBreak() + yyb3205 = r.CheckBreak() } - if yyb3156 { + if yyb3205 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3156-1, "") + z.DecStructFieldNotFound(yyj3205-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40393,37 +40930,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3158 := z.EncBinary() - _ = yym3158 + yym3207 := z.EncBinary() + _ = yym3207 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3159 := !z.EncBinary() - yy2arr3159 := z.EncBasicHandle().StructToArray - var yyq3159 [2]bool - _, _, _ = yysep3159, yyq3159, yy2arr3159 - const yyr3159 bool = false - yyq3159[1] = x.SizeBytes != 0 - var yynn3159 int - if yyr3159 || yy2arr3159 { + yysep3208 := !z.EncBinary() + yy2arr3208 := z.EncBasicHandle().StructToArray + var yyq3208 [2]bool + _, _, _ = yysep3208, yyq3208, yy2arr3208 + const yyr3208 bool = false + yyq3208[1] = x.SizeBytes != 0 + var yynn3208 int + if yyr3208 || yy2arr3208 { r.EncodeArrayStart(2) } else { - yynn3159 = 1 - for _, b := range yyq3159 { + yynn3208 = 1 + for _, b := range yyq3208 { if b { - yynn3159++ + yynn3208++ } } - r.EncodeMapStart(yynn3159) - yynn3159 = 0 + r.EncodeMapStart(yynn3208) + yynn3208 = 0 } - if yyr3159 || yy2arr3159 { + if yyr3208 || yy2arr3208 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Names == nil { r.EncodeNil() } else { - yym3161 := z.EncBinary() - _ = yym3161 + yym3210 := z.EncBinary() + _ = yym3210 if false { } else { z.F.EncSliceStringV(x.Names, false, e) @@ -40436,19 +40973,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.Names == nil { r.EncodeNil() } else { - yym3162 := z.EncBinary() - _ = yym3162 + yym3211 := z.EncBinary() + _ = yym3211 if false { } else { z.F.EncSliceStringV(x.Names, false, e) } } } - if yyr3159 || yy2arr3159 { + if yyr3208 || yy2arr3208 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3159[1] { - yym3164 := z.EncBinary() - _ = yym3164 + if yyq3208[1] { + yym3213 := z.EncBinary() + _ = yym3213 if false { } else { r.EncodeInt(int64(x.SizeBytes)) @@ -40457,19 +40994,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3159[1] { + if yyq3208[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sizeBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3165 := z.EncBinary() - _ = yym3165 + yym3214 := z.EncBinary() + _ = yym3214 if false { } else { r.EncodeInt(int64(x.SizeBytes)) } } } - if yyr3159 || yy2arr3159 { + if yyr3208 || yy2arr3208 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40482,25 +41019,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3166 := z.DecBinary() - _ = yym3166 + yym3215 := z.DecBinary() + _ = yym3215 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3167 := r.ContainerType() - if yyct3167 == codecSelferValueTypeMap1234 { - yyl3167 := r.ReadMapStart() - if yyl3167 == 0 { + yyct3216 := r.ContainerType() + if yyct3216 == codecSelferValueTypeMap1234 { + yyl3216 := r.ReadMapStart() + if yyl3216 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3167, d) + x.codecDecodeSelfFromMap(yyl3216, d) } - } else if yyct3167 == codecSelferValueTypeArray1234 { - yyl3167 := r.ReadArrayStart() - if yyl3167 == 0 { + } else if yyct3216 == codecSelferValueTypeArray1234 { + yyl3216 := r.ReadArrayStart() + if yyl3216 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3167, d) + x.codecDecodeSelfFromArray(yyl3216, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40512,12 +41049,12 @@ func (x *ContainerImage) 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 yys3217Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3217Slc + var yyhl3217 bool = l >= 0 + for yyj3217 := 0; ; yyj3217++ { + if yyhl3217 { + if yyj3217 >= l { break } } else { @@ -40526,20 +41063,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3168Slc = r.DecodeBytes(yys3168Slc, true, true) - yys3168 := string(yys3168Slc) + yys3217Slc = r.DecodeBytes(yys3217Slc, true, true) + yys3217 := string(yys3217Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3168 { + switch yys3217 { case "names": if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3169 := &x.Names - yym3170 := z.DecBinary() - _ = yym3170 + yyv3218 := &x.Names + yym3219 := z.DecBinary() + _ = yym3219 if false { } else { - z.F.DecSliceStringX(yyv3169, false, d) + z.F.DecSliceStringX(yyv3218, false, d) } } case "sizeBytes": @@ -40549,9 +41086,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys3168) - } // end switch yys3168 - } // end for yyj3168 + z.DecStructFieldNotFound(-1, yys3217) + } // end switch yys3217 + } // end for yyj3217 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40559,16 +41096,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3172 int - var yyb3172 bool - var yyhl3172 bool = l >= 0 - yyj3172++ - if yyhl3172 { - yyb3172 = yyj3172 > l + var yyj3221 int + var yyb3221 bool + var yyhl3221 bool = l >= 0 + yyj3221++ + if yyhl3221 { + yyb3221 = yyj3221 > l } else { - yyb3172 = r.CheckBreak() + yyb3221 = r.CheckBreak() } - if yyb3172 { + if yyb3221 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40576,21 +41113,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3173 := &x.Names - yym3174 := z.DecBinary() - _ = yym3174 + yyv3222 := &x.Names + yym3223 := z.DecBinary() + _ = yym3223 if false { } else { - z.F.DecSliceStringX(yyv3173, false, d) + z.F.DecSliceStringX(yyv3222, false, d) } } - yyj3172++ - if yyhl3172 { - yyb3172 = yyj3172 > l + yyj3221++ + if yyhl3221 { + yyb3221 = yyj3221 > l } else { - yyb3172 = r.CheckBreak() + yyb3221 = r.CheckBreak() } - if yyb3172 { + if yyb3221 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40601,17 +41138,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } for { - yyj3172++ - if yyhl3172 { - yyb3172 = yyj3172 > l + yyj3221++ + if yyhl3221 { + yyb3221 = yyj3221 > l } else { - yyb3172 = r.CheckBreak() + yyb3221 = r.CheckBreak() } - if yyb3172 { + if yyb3221 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3172-1, "") + z.DecStructFieldNotFound(yyj3221-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40620,8 +41157,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3176 := z.EncBinary() - _ = yym3176 + yym3225 := z.EncBinary() + _ = yym3225 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40633,8 +41170,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3177 := z.DecBinary() - _ = yym3177 + yym3226 := z.DecBinary() + _ = yym3226 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40646,8 +41183,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3178 := z.EncBinary() - _ = yym3178 + yym3227 := z.EncBinary() + _ = yym3227 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40659,8 +41196,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3179 := z.DecBinary() - _ = yym3179 + yym3228 := z.DecBinary() + _ = yym3228 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40675,34 +41212,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3180 := z.EncBinary() - _ = yym3180 + yym3229 := z.EncBinary() + _ = yym3229 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3181 := !z.EncBinary() - yy2arr3181 := z.EncBasicHandle().StructToArray - var yyq3181 [6]bool - _, _, _ = yysep3181, yyq3181, yy2arr3181 - const yyr3181 bool = false - yyq3181[2] = true - yyq3181[3] = true - yyq3181[4] = x.Reason != "" - yyq3181[5] = x.Message != "" - var yynn3181 int - if yyr3181 || yy2arr3181 { + yysep3230 := !z.EncBinary() + yy2arr3230 := z.EncBasicHandle().StructToArray + var yyq3230 [6]bool + _, _, _ = yysep3230, yyq3230, yy2arr3230 + const yyr3230 bool = false + yyq3230[2] = true + yyq3230[3] = true + yyq3230[4] = x.Reason != "" + yyq3230[5] = x.Message != "" + var yynn3230 int + if yyr3230 || yy2arr3230 { r.EncodeArrayStart(6) } else { - yynn3181 = 2 - for _, b := range yyq3181 { + yynn3230 = 2 + for _, b := range yyq3230 { if b { - yynn3181++ + yynn3230++ } } - r.EncodeMapStart(yynn3181) - yynn3181 = 0 + r.EncodeMapStart(yynn3230) + yynn3230 = 0 } - if yyr3181 || yy2arr3181 { + if yyr3230 || yy2arr3230 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -40711,7 +41248,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3181 || yy2arr3181 { + if yyr3230 || yy2arr3230 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -40720,85 +41257,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3181 || yy2arr3181 { + if yyr3230 || yy2arr3230 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3181[2] { - yy3185 := &x.LastHeartbeatTime - yym3186 := z.EncBinary() - _ = yym3186 + if yyq3230[2] { + yy3234 := &x.LastHeartbeatTime + yym3235 := z.EncBinary() + _ = yym3235 if false { - } else if z.HasExtensions() && z.EncExt(yy3185) { - } else if yym3186 { - z.EncBinaryMarshal(yy3185) - } else if !yym3186 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3185) + } else if z.HasExtensions() && z.EncExt(yy3234) { + } else if yym3235 { + z.EncBinaryMarshal(yy3234) + } else if !yym3235 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3234) } else { - z.EncFallback(yy3185) + z.EncFallback(yy3234) } } else { r.EncodeNil() } } else { - if yyq3181[2] { + if yyq3230[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3187 := &x.LastHeartbeatTime - yym3188 := z.EncBinary() - _ = yym3188 + yy3236 := &x.LastHeartbeatTime + yym3237 := z.EncBinary() + _ = yym3237 if false { - } else if z.HasExtensions() && z.EncExt(yy3187) { - } else if yym3188 { - z.EncBinaryMarshal(yy3187) - } else if !yym3188 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3187) + } else if z.HasExtensions() && z.EncExt(yy3236) { + } else if yym3237 { + z.EncBinaryMarshal(yy3236) + } else if !yym3237 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3236) } else { - z.EncFallback(yy3187) + z.EncFallback(yy3236) } } } - if yyr3181 || yy2arr3181 { + if yyr3230 || yy2arr3230 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3181[3] { - yy3190 := &x.LastTransitionTime - yym3191 := z.EncBinary() - _ = yym3191 + if yyq3230[3] { + yy3239 := &x.LastTransitionTime + yym3240 := z.EncBinary() + _ = yym3240 if false { - } else if z.HasExtensions() && z.EncExt(yy3190) { - } else if yym3191 { - z.EncBinaryMarshal(yy3190) - } else if !yym3191 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3190) + } else if z.HasExtensions() && z.EncExt(yy3239) { + } else if yym3240 { + z.EncBinaryMarshal(yy3239) + } else if !yym3240 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3239) } else { - z.EncFallback(yy3190) + z.EncFallback(yy3239) } } else { r.EncodeNil() } } else { - if yyq3181[3] { + if yyq3230[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3192 := &x.LastTransitionTime - yym3193 := z.EncBinary() - _ = yym3193 + yy3241 := &x.LastTransitionTime + yym3242 := z.EncBinary() + _ = yym3242 if false { - } else if z.HasExtensions() && z.EncExt(yy3192) { - } else if yym3193 { - z.EncBinaryMarshal(yy3192) - } else if !yym3193 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3192) + } else if z.HasExtensions() && z.EncExt(yy3241) { + } else if yym3242 { + z.EncBinaryMarshal(yy3241) + } else if !yym3242 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3241) } else { - z.EncFallback(yy3192) + z.EncFallback(yy3241) } } } - if yyr3181 || yy2arr3181 { + if yyr3230 || yy2arr3230 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3181[4] { - yym3195 := z.EncBinary() - _ = yym3195 + if yyq3230[4] { + yym3244 := z.EncBinary() + _ = yym3244 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -40807,23 +41344,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3181[4] { + if yyq3230[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3196 := z.EncBinary() - _ = yym3196 + yym3245 := z.EncBinary() + _ = yym3245 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3181 || yy2arr3181 { + if yyr3230 || yy2arr3230 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3181[5] { - yym3198 := z.EncBinary() - _ = yym3198 + if yyq3230[5] { + yym3247 := z.EncBinary() + _ = yym3247 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -40832,19 +41369,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3181[5] { + if yyq3230[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3199 := z.EncBinary() - _ = yym3199 + yym3248 := z.EncBinary() + _ = yym3248 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3181 || yy2arr3181 { + if yyr3230 || yy2arr3230 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40857,25 +41394,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3200 := z.DecBinary() - _ = yym3200 + yym3249 := z.DecBinary() + _ = yym3249 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3201 := r.ContainerType() - if yyct3201 == codecSelferValueTypeMap1234 { - yyl3201 := r.ReadMapStart() - if yyl3201 == 0 { + yyct3250 := r.ContainerType() + if yyct3250 == codecSelferValueTypeMap1234 { + yyl3250 := r.ReadMapStart() + if yyl3250 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3201, d) + x.codecDecodeSelfFromMap(yyl3250, d) } - } else if yyct3201 == codecSelferValueTypeArray1234 { - yyl3201 := r.ReadArrayStart() - if yyl3201 == 0 { + } else if yyct3250 == codecSelferValueTypeArray1234 { + yyl3250 := r.ReadArrayStart() + if yyl3250 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3201, d) + x.codecDecodeSelfFromArray(yyl3250, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40887,12 +41424,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3202Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3202Slc - var yyhl3202 bool = l >= 0 - for yyj3202 := 0; ; yyj3202++ { - if yyhl3202 { - if yyj3202 >= l { + var yys3251Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3251Slc + var yyhl3251 bool = l >= 0 + for yyj3251 := 0; ; yyj3251++ { + if yyhl3251 { + if yyj3251 >= l { break } } else { @@ -40901,10 +41438,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3202Slc = r.DecodeBytes(yys3202Slc, true, true) - yys3202 := string(yys3202Slc) + yys3251Slc = r.DecodeBytes(yys3251Slc, true, true) + yys3251 := string(yys3251Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3202 { + switch yys3251 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -40921,34 +41458,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3205 := &x.LastHeartbeatTime - yym3206 := z.DecBinary() - _ = yym3206 + yyv3254 := &x.LastHeartbeatTime + yym3255 := z.DecBinary() + _ = yym3255 if false { - } else if z.HasExtensions() && z.DecExt(yyv3205) { - } else if yym3206 { - z.DecBinaryUnmarshal(yyv3205) - } else if !yym3206 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3205) + } else if z.HasExtensions() && z.DecExt(yyv3254) { + } else if yym3255 { + z.DecBinaryUnmarshal(yyv3254) + } else if !yym3255 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3254) } else { - z.DecFallback(yyv3205, false) + z.DecFallback(yyv3254, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3207 := &x.LastTransitionTime - yym3208 := z.DecBinary() - _ = yym3208 + yyv3256 := &x.LastTransitionTime + yym3257 := z.DecBinary() + _ = yym3257 if false { - } else if z.HasExtensions() && z.DecExt(yyv3207) { - } else if yym3208 { - z.DecBinaryUnmarshal(yyv3207) - } else if !yym3208 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3207) + } else if z.HasExtensions() && z.DecExt(yyv3256) { + } else if yym3257 { + z.DecBinaryUnmarshal(yyv3256) + } else if !yym3257 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3256) } else { - z.DecFallback(yyv3207, false) + z.DecFallback(yyv3256, false) } } case "reason": @@ -40964,9 +41501,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3202) - } // end switch yys3202 - } // end for yyj3202 + z.DecStructFieldNotFound(-1, yys3251) + } // end switch yys3251 + } // end for yyj3251 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40974,16 +41511,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3211 int - var yyb3211 bool - var yyhl3211 bool = l >= 0 - yyj3211++ - if yyhl3211 { - yyb3211 = yyj3211 > l + var yyj3260 int + var yyb3260 bool + var yyhl3260 bool = l >= 0 + yyj3260++ + if yyhl3260 { + yyb3260 = yyj3260 > l } else { - yyb3211 = r.CheckBreak() + yyb3260 = r.CheckBreak() } - if yyb3211 { + if yyb3260 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40993,13 +41530,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj3211++ - if yyhl3211 { - yyb3211 = yyj3211 > l + yyj3260++ + if yyhl3260 { + yyb3260 = yyj3260 > l } else { - yyb3211 = r.CheckBreak() + yyb3260 = r.CheckBreak() } - if yyb3211 { + if yyb3260 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41009,13 +41546,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3211++ - if yyhl3211 { - yyb3211 = yyj3211 > l + yyj3260++ + if yyhl3260 { + yyb3260 = yyj3260 > l } else { - yyb3211 = r.CheckBreak() + yyb3260 = r.CheckBreak() } - if yyb3211 { + if yyb3260 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41023,26 +41560,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3214 := &x.LastHeartbeatTime - yym3215 := z.DecBinary() - _ = yym3215 + yyv3263 := &x.LastHeartbeatTime + yym3264 := z.DecBinary() + _ = yym3264 if false { - } else if z.HasExtensions() && z.DecExt(yyv3214) { - } else if yym3215 { - z.DecBinaryUnmarshal(yyv3214) - } else if !yym3215 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3214) + } else if z.HasExtensions() && z.DecExt(yyv3263) { + } else if yym3264 { + z.DecBinaryUnmarshal(yyv3263) + } else if !yym3264 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3263) } else { - z.DecFallback(yyv3214, false) + z.DecFallback(yyv3263, false) } } - yyj3211++ - if yyhl3211 { - yyb3211 = yyj3211 > l + yyj3260++ + if yyhl3260 { + yyb3260 = yyj3260 > l } else { - yyb3211 = r.CheckBreak() + yyb3260 = r.CheckBreak() } - if yyb3211 { + if yyb3260 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41050,26 +41587,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3216 := &x.LastTransitionTime - yym3217 := z.DecBinary() - _ = yym3217 + yyv3265 := &x.LastTransitionTime + yym3266 := z.DecBinary() + _ = yym3266 if false { - } else if z.HasExtensions() && z.DecExt(yyv3216) { - } else if yym3217 { - z.DecBinaryUnmarshal(yyv3216) - } else if !yym3217 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3216) + } else if z.HasExtensions() && z.DecExt(yyv3265) { + } else if yym3266 { + z.DecBinaryUnmarshal(yyv3265) + } else if !yym3266 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3265) } else { - z.DecFallback(yyv3216, false) + z.DecFallback(yyv3265, false) } } - yyj3211++ - if yyhl3211 { - yyb3211 = yyj3211 > l + yyj3260++ + if yyhl3260 { + yyb3260 = yyj3260 > l } else { - yyb3211 = r.CheckBreak() + yyb3260 = r.CheckBreak() } - if yyb3211 { + if yyb3260 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41079,13 +41616,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3211++ - if yyhl3211 { - yyb3211 = yyj3211 > l + yyj3260++ + if yyhl3260 { + yyb3260 = yyj3260 > l } else { - yyb3211 = r.CheckBreak() + yyb3260 = r.CheckBreak() } - if yyb3211 { + if yyb3260 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41096,17 +41633,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj3211++ - if yyhl3211 { - yyb3211 = yyj3211 > l + yyj3260++ + if yyhl3260 { + yyb3260 = yyj3260 > l } else { - yyb3211 = r.CheckBreak() + yyb3260 = r.CheckBreak() } - if yyb3211 { + if yyb3260 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3211-1, "") + z.DecStructFieldNotFound(yyj3260-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41115,8 +41652,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3220 := z.EncBinary() - _ = yym3220 + yym3269 := z.EncBinary() + _ = yym3269 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41128,8 +41665,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3221 := z.DecBinary() - _ = yym3221 + yym3270 := z.DecBinary() + _ = yym3270 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41144,30 +41681,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3222 := z.EncBinary() - _ = yym3222 + yym3271 := z.EncBinary() + _ = yym3271 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3223 := !z.EncBinary() - yy2arr3223 := z.EncBasicHandle().StructToArray - var yyq3223 [2]bool - _, _, _ = yysep3223, yyq3223, yy2arr3223 - const yyr3223 bool = false - var yynn3223 int - if yyr3223 || yy2arr3223 { + yysep3272 := !z.EncBinary() + yy2arr3272 := z.EncBasicHandle().StructToArray + var yyq3272 [2]bool + _, _, _ = yysep3272, yyq3272, yy2arr3272 + const yyr3272 bool = false + var yynn3272 int + if yyr3272 || yy2arr3272 { r.EncodeArrayStart(2) } else { - yynn3223 = 2 - for _, b := range yyq3223 { + yynn3272 = 2 + for _, b := range yyq3272 { if b { - yynn3223++ + yynn3272++ } } - r.EncodeMapStart(yynn3223) - yynn3223 = 0 + r.EncodeMapStart(yynn3272) + yynn3272 = 0 } - if yyr3223 || yy2arr3223 { + if yyr3272 || yy2arr3272 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -41176,10 +41713,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3223 || yy2arr3223 { + if yyr3272 || yy2arr3272 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3226 := z.EncBinary() - _ = yym3226 + yym3275 := z.EncBinary() + _ = yym3275 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -41188,14 +41725,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3227 := z.EncBinary() - _ = yym3227 + yym3276 := z.EncBinary() + _ = yym3276 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr3223 || yy2arr3223 { + if yyr3272 || yy2arr3272 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41208,25 +41745,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3228 := z.DecBinary() - _ = yym3228 + yym3277 := z.DecBinary() + _ = yym3277 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3229 := r.ContainerType() - if yyct3229 == codecSelferValueTypeMap1234 { - yyl3229 := r.ReadMapStart() - if yyl3229 == 0 { + yyct3278 := r.ContainerType() + if yyct3278 == codecSelferValueTypeMap1234 { + yyl3278 := r.ReadMapStart() + if yyl3278 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3229, d) + x.codecDecodeSelfFromMap(yyl3278, d) } - } else if yyct3229 == codecSelferValueTypeArray1234 { - yyl3229 := r.ReadArrayStart() - if yyl3229 == 0 { + } else if yyct3278 == codecSelferValueTypeArray1234 { + yyl3278 := r.ReadArrayStart() + if yyl3278 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3229, d) + x.codecDecodeSelfFromArray(yyl3278, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41238,12 +41775,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3230Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3230Slc - var yyhl3230 bool = l >= 0 - for yyj3230 := 0; ; yyj3230++ { - if yyhl3230 { - if yyj3230 >= l { + var yys3279Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3279Slc + var yyhl3279 bool = l >= 0 + for yyj3279 := 0; ; yyj3279++ { + if yyhl3279 { + if yyj3279 >= l { break } } else { @@ -41252,10 +41789,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3230Slc = r.DecodeBytes(yys3230Slc, true, true) - yys3230 := string(yys3230Slc) + yys3279Slc = r.DecodeBytes(yys3279Slc, true, true) + yys3279 := string(yys3279Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3230 { + switch yys3279 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -41269,9 +41806,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3230) - } // end switch yys3230 - } // end for yyj3230 + z.DecStructFieldNotFound(-1, yys3279) + } // end switch yys3279 + } // end for yyj3279 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41279,16 +41816,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3233 int - var yyb3233 bool - var yyhl3233 bool = l >= 0 - yyj3233++ - if yyhl3233 { - yyb3233 = yyj3233 > l + var yyj3282 int + var yyb3282 bool + var yyhl3282 bool = l >= 0 + yyj3282++ + if yyhl3282 { + yyb3282 = yyj3282 > l } else { - yyb3233 = r.CheckBreak() + yyb3282 = r.CheckBreak() } - if yyb3233 { + if yyb3282 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41298,13 +41835,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj3233++ - if yyhl3233 { - yyb3233 = yyj3233 > l + yyj3282++ + if yyhl3282 { + yyb3282 = yyj3282 > l } else { - yyb3233 = r.CheckBreak() + yyb3282 = r.CheckBreak() } - if yyb3233 { + if yyb3282 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41315,17 +41852,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj3233++ - if yyhl3233 { - yyb3233 = yyj3233 > l + yyj3282++ + if yyhl3282 { + yyb3282 = yyj3282 > l } else { - yyb3233 = r.CheckBreak() + yyb3282 = r.CheckBreak() } - if yyb3233 { + if yyb3282 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3233-1, "") + z.DecStructFieldNotFound(yyj3282-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41337,33 +41874,33 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3236 := z.EncBinary() - _ = yym3236 + yym3285 := z.EncBinary() + _ = yym3285 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3237 := !z.EncBinary() - yy2arr3237 := z.EncBasicHandle().StructToArray - var yyq3237 [1]bool - _, _, _ = yysep3237, yyq3237, yy2arr3237 - const yyr3237 bool = false - yyq3237[0] = len(x.Capacity) != 0 - var yynn3237 int - if yyr3237 || yy2arr3237 { + yysep3286 := !z.EncBinary() + yy2arr3286 := z.EncBasicHandle().StructToArray + var yyq3286 [1]bool + _, _, _ = yysep3286, yyq3286, yy2arr3286 + const yyr3286 bool = false + yyq3286[0] = len(x.Capacity) != 0 + var yynn3286 int + if yyr3286 || yy2arr3286 { r.EncodeArrayStart(1) } else { - yynn3237 = 0 - for _, b := range yyq3237 { + yynn3286 = 0 + for _, b := range yyq3286 { if b { - yynn3237++ + yynn3286++ } } - r.EncodeMapStart(yynn3237) - yynn3237 = 0 + r.EncodeMapStart(yynn3286) + yynn3286 = 0 } - if yyr3237 || yy2arr3237 { + if yyr3286 || yy2arr3286 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3237[0] { + if yyq3286[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -41373,7 +41910,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3237[0] { + if yyq3286[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41384,7 +41921,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3237 || yy2arr3237 { + if yyr3286 || yy2arr3286 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41397,25 +41934,25 @@ func (x *NodeResources) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3239 := z.DecBinary() - _ = yym3239 + yym3288 := z.DecBinary() + _ = yym3288 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3240 := r.ContainerType() - if yyct3240 == codecSelferValueTypeMap1234 { - yyl3240 := r.ReadMapStart() - if yyl3240 == 0 { + yyct3289 := r.ContainerType() + if yyct3289 == codecSelferValueTypeMap1234 { + yyl3289 := r.ReadMapStart() + if yyl3289 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3240, d) + x.codecDecodeSelfFromMap(yyl3289, d) } - } else if yyct3240 == codecSelferValueTypeArray1234 { - yyl3240 := r.ReadArrayStart() - if yyl3240 == 0 { + } else if yyct3289 == codecSelferValueTypeArray1234 { + yyl3289 := r.ReadArrayStart() + if yyl3289 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3240, d) + x.codecDecodeSelfFromArray(yyl3289, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41427,12 +41964,12 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3241Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3241Slc - var yyhl3241 bool = l >= 0 - for yyj3241 := 0; ; yyj3241++ { - if yyhl3241 { - if yyj3241 >= l { + var yys3290Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3290Slc + var yyhl3290 bool = l >= 0 + for yyj3290 := 0; ; yyj3290++ { + if yyhl3290 { + if yyj3290 >= l { break } } else { @@ -41441,21 +41978,21 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3241Slc = r.DecodeBytes(yys3241Slc, true, true) - yys3241 := string(yys3241Slc) + yys3290Slc = r.DecodeBytes(yys3290Slc, true, true) + yys3290 := string(yys3290Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3241 { + switch yys3290 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3242 := &x.Capacity - yyv3242.CodecDecodeSelf(d) + yyv3291 := &x.Capacity + yyv3291.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3241) - } // end switch yys3241 - } // end for yyj3241 + z.DecStructFieldNotFound(-1, yys3290) + } // end switch yys3290 + } // end for yyj3290 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41463,16 +42000,16 @@ func (x *NodeResources) 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 yyj3292 int + var yyb3292 bool + var yyhl3292 bool = l >= 0 + yyj3292++ + if yyhl3292 { + yyb3292 = yyj3292 > l } else { - yyb3243 = r.CheckBreak() + yyb3292 = r.CheckBreak() } - if yyb3243 { + if yyb3292 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41480,21 +42017,21 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3244 := &x.Capacity - yyv3244.CodecDecodeSelf(d) + yyv3293 := &x.Capacity + yyv3293.CodecDecodeSelf(d) } for { - yyj3243++ - if yyhl3243 { - yyb3243 = yyj3243 > l + yyj3292++ + if yyhl3292 { + yyb3292 = yyj3292 > l } else { - yyb3243 = r.CheckBreak() + yyb3292 = r.CheckBreak() } - if yyb3243 { + if yyb3292 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3243-1, "") + z.DecStructFieldNotFound(yyj3292-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41503,8 +42040,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3245 := z.EncBinary() - _ = yym3245 + yym3294 := z.EncBinary() + _ = yym3294 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41516,8 +42053,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3246 := z.DecBinary() - _ = yym3246 + yym3295 := z.DecBinary() + _ = yym3295 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41532,8 +42069,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3247 := z.EncBinary() - _ = yym3247 + yym3296 := z.EncBinary() + _ = yym3296 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41546,8 +42083,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3248 := z.DecBinary() - _ = yym3248 + yym3297 := z.DecBinary() + _ = yym3297 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41562,39 +42099,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3249 := z.EncBinary() - _ = yym3249 + yym3298 := z.EncBinary() + _ = yym3298 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3250 := !z.EncBinary() - yy2arr3250 := z.EncBasicHandle().StructToArray - var yyq3250 [5]bool - _, _, _ = yysep3250, yyq3250, yy2arr3250 - const yyr3250 bool = false - yyq3250[0] = x.Kind != "" - yyq3250[1] = x.APIVersion != "" - yyq3250[2] = true - yyq3250[3] = true - yyq3250[4] = true - var yynn3250 int - if yyr3250 || yy2arr3250 { + yysep3299 := !z.EncBinary() + yy2arr3299 := z.EncBasicHandle().StructToArray + var yyq3299 [5]bool + _, _, _ = yysep3299, yyq3299, yy2arr3299 + const yyr3299 bool = false + yyq3299[0] = x.Kind != "" + yyq3299[1] = x.APIVersion != "" + yyq3299[2] = true + yyq3299[3] = true + yyq3299[4] = true + var yynn3299 int + if yyr3299 || yy2arr3299 { r.EncodeArrayStart(5) } else { - yynn3250 = 0 - for _, b := range yyq3250 { + yynn3299 = 0 + for _, b := range yyq3299 { if b { - yynn3250++ + yynn3299++ } } - r.EncodeMapStart(yynn3250) - yynn3250 = 0 + r.EncodeMapStart(yynn3299) + yynn3299 = 0 } - if yyr3250 || yy2arr3250 { + if yyr3299 || yy2arr3299 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3250[0] { - yym3252 := z.EncBinary() - _ = yym3252 + if yyq3299[0] { + yym3301 := z.EncBinary() + _ = yym3301 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41603,23 +42140,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3250[0] { + if yyq3299[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3253 := z.EncBinary() - _ = yym3253 + yym3302 := z.EncBinary() + _ = yym3302 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3250 || yy2arr3250 { + if yyr3299 || yy2arr3299 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3250[1] { - yym3255 := z.EncBinary() - _ = yym3255 + if yyq3299[1] { + yym3304 := z.EncBinary() + _ = yym3304 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41628,70 +42165,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3250[1] { + if yyq3299[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3256 := z.EncBinary() - _ = yym3256 + yym3305 := z.EncBinary() + _ = yym3305 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3250 || yy2arr3250 { + if yyr3299 || yy2arr3299 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3250[2] { - yy3258 := &x.ObjectMeta - yy3258.CodecEncodeSelf(e) + if yyq3299[2] { + yy3307 := &x.ObjectMeta + yy3307.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3250[2] { + if yyq3299[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3259 := &x.ObjectMeta - yy3259.CodecEncodeSelf(e) + yy3308 := &x.ObjectMeta + yy3308.CodecEncodeSelf(e) } } - if yyr3250 || yy2arr3250 { + if yyr3299 || yy2arr3299 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3250[3] { - yy3261 := &x.Spec - yy3261.CodecEncodeSelf(e) + if yyq3299[3] { + yy3310 := &x.Spec + yy3310.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3250[3] { + if yyq3299[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3262 := &x.Spec - yy3262.CodecEncodeSelf(e) + yy3311 := &x.Spec + yy3311.CodecEncodeSelf(e) } } - if yyr3250 || yy2arr3250 { + if yyr3299 || yy2arr3299 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3250[4] { - yy3264 := &x.Status - yy3264.CodecEncodeSelf(e) + if yyq3299[4] { + yy3313 := &x.Status + yy3313.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3250[4] { + if yyq3299[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3265 := &x.Status - yy3265.CodecEncodeSelf(e) + yy3314 := &x.Status + yy3314.CodecEncodeSelf(e) } } - if yyr3250 || yy2arr3250 { + if yyr3299 || yy2arr3299 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41704,25 +42241,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3266 := z.DecBinary() - _ = yym3266 + yym3315 := z.DecBinary() + _ = yym3315 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3267 := r.ContainerType() - if yyct3267 == codecSelferValueTypeMap1234 { - yyl3267 := r.ReadMapStart() - if yyl3267 == 0 { + yyct3316 := r.ContainerType() + if yyct3316 == codecSelferValueTypeMap1234 { + yyl3316 := r.ReadMapStart() + if yyl3316 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3267, d) + x.codecDecodeSelfFromMap(yyl3316, d) } - } else if yyct3267 == codecSelferValueTypeArray1234 { - yyl3267 := r.ReadArrayStart() - if yyl3267 == 0 { + } else if yyct3316 == codecSelferValueTypeArray1234 { + yyl3316 := r.ReadArrayStart() + if yyl3316 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3267, d) + x.codecDecodeSelfFromArray(yyl3316, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41734,12 +42271,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3268Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3268Slc - var yyhl3268 bool = l >= 0 - for yyj3268 := 0; ; yyj3268++ { - if yyhl3268 { - if yyj3268 >= l { + var yys3317Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3317Slc + var yyhl3317 bool = l >= 0 + for yyj3317 := 0; ; yyj3317++ { + if yyhl3317 { + if yyj3317 >= l { break } } else { @@ -41748,10 +42285,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3268Slc = r.DecodeBytes(yys3268Slc, true, true) - yys3268 := string(yys3268Slc) + yys3317Slc = r.DecodeBytes(yys3317Slc, true, true) + yys3317 := string(yys3317Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3268 { + switch yys3317 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41768,27 +42305,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3271 := &x.ObjectMeta - yyv3271.CodecDecodeSelf(d) + yyv3320 := &x.ObjectMeta + yyv3320.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3272 := &x.Spec - yyv3272.CodecDecodeSelf(d) + yyv3321 := &x.Spec + yyv3321.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3273 := &x.Status - yyv3273.CodecDecodeSelf(d) + yyv3322 := &x.Status + yyv3322.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3268) - } // end switch yys3268 - } // end for yyj3268 + z.DecStructFieldNotFound(-1, yys3317) + } // end switch yys3317 + } // end for yyj3317 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41796,16 +42333,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3274 int - var yyb3274 bool - var yyhl3274 bool = l >= 0 - yyj3274++ - if yyhl3274 { - yyb3274 = yyj3274 > l + var yyj3323 int + var yyb3323 bool + var yyhl3323 bool = l >= 0 + yyj3323++ + if yyhl3323 { + yyb3323 = yyj3323 > l } else { - yyb3274 = r.CheckBreak() + yyb3323 = r.CheckBreak() } - if yyb3274 { + if yyb3323 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41815,13 +42352,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3274++ - if yyhl3274 { - yyb3274 = yyj3274 > l + yyj3323++ + if yyhl3323 { + yyb3323 = yyj3323 > l } else { - yyb3274 = r.CheckBreak() + yyb3323 = r.CheckBreak() } - if yyb3274 { + if yyb3323 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41831,13 +42368,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3274++ - if yyhl3274 { - yyb3274 = yyj3274 > l + yyj3323++ + if yyhl3323 { + yyb3323 = yyj3323 > l } else { - yyb3274 = r.CheckBreak() + yyb3323 = r.CheckBreak() } - if yyb3274 { + if yyb3323 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41845,16 +42382,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3277 := &x.ObjectMeta - yyv3277.CodecDecodeSelf(d) + yyv3326 := &x.ObjectMeta + yyv3326.CodecDecodeSelf(d) } - yyj3274++ - if yyhl3274 { - yyb3274 = yyj3274 > l + yyj3323++ + if yyhl3323 { + yyb3323 = yyj3323 > l } else { - yyb3274 = r.CheckBreak() + yyb3323 = r.CheckBreak() } - if yyb3274 { + if yyb3323 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41862,16 +42399,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3278 := &x.Spec - yyv3278.CodecDecodeSelf(d) + yyv3327 := &x.Spec + yyv3327.CodecDecodeSelf(d) } - yyj3274++ - if yyhl3274 { - yyb3274 = yyj3274 > l + yyj3323++ + if yyhl3323 { + yyb3323 = yyj3323 > l } else { - yyb3274 = r.CheckBreak() + yyb3323 = r.CheckBreak() } - if yyb3274 { + if yyb3323 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41879,21 +42416,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3279 := &x.Status - yyv3279.CodecDecodeSelf(d) + yyv3328 := &x.Status + yyv3328.CodecDecodeSelf(d) } for { - yyj3274++ - if yyhl3274 { - yyb3274 = yyj3274 > l + yyj3323++ + if yyhl3323 { + yyb3323 = yyj3323 > l } else { - yyb3274 = r.CheckBreak() + yyb3323 = r.CheckBreak() } - if yyb3274 { + if yyb3323 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3274-1, "") + z.DecStructFieldNotFound(yyj3323-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41905,37 +42442,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3280 := z.EncBinary() - _ = yym3280 + yym3329 := z.EncBinary() + _ = yym3329 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3281 := !z.EncBinary() - yy2arr3281 := z.EncBasicHandle().StructToArray - var yyq3281 [4]bool - _, _, _ = yysep3281, yyq3281, yy2arr3281 - const yyr3281 bool = false - yyq3281[0] = x.Kind != "" - yyq3281[1] = x.APIVersion != "" - yyq3281[2] = true - var yynn3281 int - if yyr3281 || yy2arr3281 { + yysep3330 := !z.EncBinary() + yy2arr3330 := z.EncBasicHandle().StructToArray + var yyq3330 [4]bool + _, _, _ = yysep3330, yyq3330, yy2arr3330 + const yyr3330 bool = false + yyq3330[0] = x.Kind != "" + yyq3330[1] = x.APIVersion != "" + yyq3330[2] = true + var yynn3330 int + if yyr3330 || yy2arr3330 { r.EncodeArrayStart(4) } else { - yynn3281 = 1 - for _, b := range yyq3281 { + yynn3330 = 1 + for _, b := range yyq3330 { if b { - yynn3281++ + yynn3330++ } } - r.EncodeMapStart(yynn3281) - yynn3281 = 0 + r.EncodeMapStart(yynn3330) + yynn3330 = 0 } - if yyr3281 || yy2arr3281 { + if yyr3330 || yy2arr3330 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3281[0] { - yym3283 := z.EncBinary() - _ = yym3283 + if yyq3330[0] { + yym3332 := z.EncBinary() + _ = yym3332 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41944,23 +42481,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3281[0] { + if yyq3330[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3284 := z.EncBinary() - _ = yym3284 + yym3333 := z.EncBinary() + _ = yym3333 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3281 || yy2arr3281 { + if yyr3330 || yy2arr3330 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3281[1] { - yym3286 := z.EncBinary() - _ = yym3286 + if yyq3330[1] { + yym3335 := z.EncBinary() + _ = yym3335 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41969,54 +42506,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3281[1] { + if yyq3330[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3287 := z.EncBinary() - _ = yym3287 + yym3336 := z.EncBinary() + _ = yym3336 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3281 || yy2arr3281 { + if yyr3330 || yy2arr3330 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3281[2] { - yy3289 := &x.ListMeta - yym3290 := z.EncBinary() - _ = yym3290 + if yyq3330[2] { + yy3338 := &x.ListMeta + yym3339 := z.EncBinary() + _ = yym3339 if false { - } else if z.HasExtensions() && z.EncExt(yy3289) { + } else if z.HasExtensions() && z.EncExt(yy3338) { } else { - z.EncFallback(yy3289) + z.EncFallback(yy3338) } } else { r.EncodeNil() } } else { - if yyq3281[2] { + if yyq3330[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3291 := &x.ListMeta - yym3292 := z.EncBinary() - _ = yym3292 + yy3340 := &x.ListMeta + yym3341 := z.EncBinary() + _ = yym3341 if false { - } else if z.HasExtensions() && z.EncExt(yy3291) { + } else if z.HasExtensions() && z.EncExt(yy3340) { } else { - z.EncFallback(yy3291) + z.EncFallback(yy3340) } } } - if yyr3281 || yy2arr3281 { + if yyr3330 || yy2arr3330 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3294 := z.EncBinary() - _ = yym3294 + yym3343 := z.EncBinary() + _ = yym3343 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -42029,15 +42566,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3295 := z.EncBinary() - _ = yym3295 + yym3344 := z.EncBinary() + _ = yym3344 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr3281 || yy2arr3281 { + if yyr3330 || yy2arr3330 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42050,25 +42587,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3296 := z.DecBinary() - _ = yym3296 + yym3345 := z.DecBinary() + _ = yym3345 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3297 := r.ContainerType() - if yyct3297 == codecSelferValueTypeMap1234 { - yyl3297 := r.ReadMapStart() - if yyl3297 == 0 { + yyct3346 := r.ContainerType() + if yyct3346 == codecSelferValueTypeMap1234 { + yyl3346 := r.ReadMapStart() + if yyl3346 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3297, d) + x.codecDecodeSelfFromMap(yyl3346, d) } - } else if yyct3297 == codecSelferValueTypeArray1234 { - yyl3297 := r.ReadArrayStart() - if yyl3297 == 0 { + } else if yyct3346 == codecSelferValueTypeArray1234 { + yyl3346 := r.ReadArrayStart() + if yyl3346 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3297, d) + x.codecDecodeSelfFromArray(yyl3346, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42080,12 +42617,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3298Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3298Slc - var yyhl3298 bool = l >= 0 - for yyj3298 := 0; ; yyj3298++ { - if yyhl3298 { - if yyj3298 >= l { + var yys3347Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3347Slc + var yyhl3347 bool = l >= 0 + for yyj3347 := 0; ; yyj3347++ { + if yyhl3347 { + if yyj3347 >= l { break } } else { @@ -42094,10 +42631,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3298Slc = r.DecodeBytes(yys3298Slc, true, true) - yys3298 := string(yys3298Slc) + yys3347Slc = r.DecodeBytes(yys3347Slc, true, true) + yys3347 := string(yys3347Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3298 { + switch yys3347 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42114,31 +42651,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3301 := &x.ListMeta - yym3302 := z.DecBinary() - _ = yym3302 + yyv3350 := &x.ListMeta + yym3351 := z.DecBinary() + _ = yym3351 if false { - } else if z.HasExtensions() && z.DecExt(yyv3301) { + } else if z.HasExtensions() && z.DecExt(yyv3350) { } else { - z.DecFallback(yyv3301, false) + z.DecFallback(yyv3350, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3303 := &x.Items - yym3304 := z.DecBinary() - _ = yym3304 + yyv3352 := &x.Items + yym3353 := z.DecBinary() + _ = yym3353 if false { } else { - h.decSliceNode((*[]Node)(yyv3303), d) + h.decSliceNode((*[]Node)(yyv3352), d) } } default: - z.DecStructFieldNotFound(-1, yys3298) - } // end switch yys3298 - } // end for yyj3298 + z.DecStructFieldNotFound(-1, yys3347) + } // end switch yys3347 + } // end for yyj3347 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42146,16 +42683,16 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3305 int - var yyb3305 bool - var yyhl3305 bool = l >= 0 - yyj3305++ - if yyhl3305 { - yyb3305 = yyj3305 > l + var yyj3354 int + var yyb3354 bool + var yyhl3354 bool = l >= 0 + yyj3354++ + if yyhl3354 { + yyb3354 = yyj3354 > l } else { - yyb3305 = r.CheckBreak() + yyb3354 = r.CheckBreak() } - if yyb3305 { + if yyb3354 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42165,13 +42702,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3305++ - if yyhl3305 { - yyb3305 = yyj3305 > l + yyj3354++ + if yyhl3354 { + yyb3354 = yyj3354 > l } else { - yyb3305 = r.CheckBreak() + yyb3354 = r.CheckBreak() } - if yyb3305 { + if yyb3354 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42181,13 +42718,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3305++ - if yyhl3305 { - yyb3305 = yyj3305 > l + yyj3354++ + if yyhl3354 { + yyb3354 = yyj3354 > l } else { - yyb3305 = r.CheckBreak() + yyb3354 = r.CheckBreak() } - if yyb3305 { + if yyb3354 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42195,22 +42732,22 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3308 := &x.ListMeta - yym3309 := z.DecBinary() - _ = yym3309 + yyv3357 := &x.ListMeta + yym3358 := z.DecBinary() + _ = yym3358 if false { - } else if z.HasExtensions() && z.DecExt(yyv3308) { + } else if z.HasExtensions() && z.DecExt(yyv3357) { } else { - z.DecFallback(yyv3308, false) + z.DecFallback(yyv3357, false) } } - yyj3305++ - if yyhl3305 { - yyb3305 = yyj3305 > l + yyj3354++ + if yyhl3354 { + yyb3354 = yyj3354 > l } else { - yyb3305 = r.CheckBreak() + yyb3354 = r.CheckBreak() } - if yyb3305 { + if yyb3354 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42218,26 +42755,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3310 := &x.Items - yym3311 := z.DecBinary() - _ = yym3311 + yyv3359 := &x.Items + yym3360 := z.DecBinary() + _ = yym3360 if false { } else { - h.decSliceNode((*[]Node)(yyv3310), d) + h.decSliceNode((*[]Node)(yyv3359), d) } } for { - yyj3305++ - if yyhl3305 { - yyb3305 = yyj3305 > l + yyj3354++ + if yyhl3354 { + yyb3354 = yyj3354 > l } else { - yyb3305 = r.CheckBreak() + yyb3354 = r.CheckBreak() } - if yyb3305 { + if yyb3354 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3305-1, "") + z.DecStructFieldNotFound(yyj3354-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42249,36 +42786,36 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3312 := z.EncBinary() - _ = yym3312 + yym3361 := z.EncBinary() + _ = yym3361 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3313 := !z.EncBinary() - yy2arr3313 := z.EncBasicHandle().StructToArray - var yyq3313 [1]bool - _, _, _ = yysep3313, yyq3313, yy2arr3313 - const yyr3313 bool = false - var yynn3313 int - if yyr3313 || yy2arr3313 { + yysep3362 := !z.EncBinary() + yy2arr3362 := z.EncBasicHandle().StructToArray + var yyq3362 [1]bool + _, _, _ = yysep3362, yyq3362, yy2arr3362 + const yyr3362 bool = false + var yynn3362 int + if yyr3362 || yy2arr3362 { r.EncodeArrayStart(1) } else { - yynn3313 = 1 - for _, b := range yyq3313 { + yynn3362 = 1 + for _, b := range yyq3362 { if b { - yynn3313++ + yynn3362++ } } - r.EncodeMapStart(yynn3313) - yynn3313 = 0 + r.EncodeMapStart(yynn3362) + yynn3362 = 0 } - if yyr3313 || yy2arr3313 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym3315 := z.EncBinary() - _ = yym3315 + yym3364 := z.EncBinary() + _ = yym3364 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -42291,15 +42828,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Finalizers == nil { r.EncodeNil() } else { - yym3316 := z.EncBinary() - _ = yym3316 + yym3365 := z.EncBinary() + _ = yym3365 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) } } } - if yyr3313 || yy2arr3313 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42312,25 +42849,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3317 := z.DecBinary() - _ = yym3317 + yym3366 := z.DecBinary() + _ = yym3366 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3318 := r.ContainerType() - if yyct3318 == codecSelferValueTypeMap1234 { - yyl3318 := r.ReadMapStart() - if yyl3318 == 0 { + yyct3367 := r.ContainerType() + if yyct3367 == codecSelferValueTypeMap1234 { + yyl3367 := r.ReadMapStart() + if yyl3367 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3318, d) + x.codecDecodeSelfFromMap(yyl3367, d) } - } else if yyct3318 == codecSelferValueTypeArray1234 { - yyl3318 := r.ReadArrayStart() - if yyl3318 == 0 { + } else if yyct3367 == codecSelferValueTypeArray1234 { + yyl3367 := r.ReadArrayStart() + if yyl3367 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3318, d) + x.codecDecodeSelfFromArray(yyl3367, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42342,12 +42879,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3319Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3319Slc - var yyhl3319 bool = l >= 0 - for yyj3319 := 0; ; yyj3319++ { - if yyhl3319 { - if yyj3319 >= l { + var yys3368Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3368Slc + var yyhl3368 bool = l >= 0 + for yyj3368 := 0; ; yyj3368++ { + if yyhl3368 { + if yyj3368 >= l { break } } else { @@ -42356,26 +42893,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3319Slc = r.DecodeBytes(yys3319Slc, true, true) - yys3319 := string(yys3319Slc) + yys3368Slc = r.DecodeBytes(yys3368Slc, true, true) + yys3368 := string(yys3368Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3319 { + switch yys3368 { case "Finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3320 := &x.Finalizers - yym3321 := z.DecBinary() - _ = yym3321 + yyv3369 := &x.Finalizers + yym3370 := z.DecBinary() + _ = yym3370 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3320), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3369), d) } } default: - z.DecStructFieldNotFound(-1, yys3319) - } // end switch yys3319 - } // end for yyj3319 + z.DecStructFieldNotFound(-1, yys3368) + } // end switch yys3368 + } // end for yyj3368 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42383,16 +42920,16 @@ func (x *NamespaceSpec) 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 yyj3371 int + var yyb3371 bool + var yyhl3371 bool = l >= 0 + yyj3371++ + if yyhl3371 { + yyb3371 = yyj3371 > l } else { - yyb3322 = r.CheckBreak() + yyb3371 = r.CheckBreak() } - if yyb3322 { + if yyb3371 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42400,26 +42937,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3323 := &x.Finalizers - yym3324 := z.DecBinary() - _ = yym3324 + yyv3372 := &x.Finalizers + yym3373 := z.DecBinary() + _ = yym3373 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3323), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3372), d) } } for { - yyj3322++ - if yyhl3322 { - yyb3322 = yyj3322 > l + yyj3371++ + if yyhl3371 { + yyb3371 = yyj3371 > l } else { - yyb3322 = r.CheckBreak() + yyb3371 = r.CheckBreak() } - if yyb3322 { + if yyb3371 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3322-1, "") + z.DecStructFieldNotFound(yyj3371-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42428,8 +42965,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3325 := z.EncBinary() - _ = yym3325 + yym3374 := z.EncBinary() + _ = yym3374 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -42441,8 +42978,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3326 := z.DecBinary() - _ = yym3326 + yym3375 := z.DecBinary() + _ = yym3375 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -42457,46 +42994,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3327 := z.EncBinary() - _ = yym3327 + yym3376 := z.EncBinary() + _ = yym3376 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3328 := !z.EncBinary() - yy2arr3328 := z.EncBasicHandle().StructToArray - var yyq3328 [1]bool - _, _, _ = yysep3328, yyq3328, yy2arr3328 - const yyr3328 bool = false - yyq3328[0] = x.Phase != "" - var yynn3328 int - if yyr3328 || yy2arr3328 { + yysep3377 := !z.EncBinary() + yy2arr3377 := z.EncBasicHandle().StructToArray + var yyq3377 [1]bool + _, _, _ = yysep3377, yyq3377, yy2arr3377 + const yyr3377 bool = false + yyq3377[0] = x.Phase != "" + var yynn3377 int + if yyr3377 || yy2arr3377 { r.EncodeArrayStart(1) } else { - yynn3328 = 0 - for _, b := range yyq3328 { + yynn3377 = 0 + for _, b := range yyq3377 { if b { - yynn3328++ + yynn3377++ } } - r.EncodeMapStart(yynn3328) - yynn3328 = 0 + r.EncodeMapStart(yynn3377) + yynn3377 = 0 } - if yyr3328 || yy2arr3328 { + if yyr3377 || yy2arr3377 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3328[0] { + if yyq3377[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3328[0] { + if yyq3377[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr3328 || yy2arr3328 { + if yyr3377 || yy2arr3377 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42509,25 +43046,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3330 := z.DecBinary() - _ = yym3330 + yym3379 := z.DecBinary() + _ = yym3379 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3331 := r.ContainerType() - if yyct3331 == codecSelferValueTypeMap1234 { - yyl3331 := r.ReadMapStart() - if yyl3331 == 0 { + yyct3380 := r.ContainerType() + if yyct3380 == codecSelferValueTypeMap1234 { + yyl3380 := r.ReadMapStart() + if yyl3380 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3331, d) + x.codecDecodeSelfFromMap(yyl3380, d) } - } else if yyct3331 == codecSelferValueTypeArray1234 { - yyl3331 := r.ReadArrayStart() - if yyl3331 == 0 { + } else if yyct3380 == codecSelferValueTypeArray1234 { + yyl3380 := r.ReadArrayStart() + if yyl3380 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3331, d) + x.codecDecodeSelfFromArray(yyl3380, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42539,12 +43076,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3332Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3332Slc - var yyhl3332 bool = l >= 0 - for yyj3332 := 0; ; yyj3332++ { - if yyhl3332 { - if yyj3332 >= l { + var yys3381Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3381Slc + var yyhl3381 bool = l >= 0 + for yyj3381 := 0; ; yyj3381++ { + if yyhl3381 { + if yyj3381 >= l { break } } else { @@ -42553,10 +43090,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3332Slc = r.DecodeBytes(yys3332Slc, true, true) - yys3332 := string(yys3332Slc) + yys3381Slc = r.DecodeBytes(yys3381Slc, true, true) + yys3381 := string(yys3381Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3332 { + switch yys3381 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -42564,9 +43101,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3332) - } // end switch yys3332 - } // end for yyj3332 + z.DecStructFieldNotFound(-1, yys3381) + } // end switch yys3381 + } // end for yyj3381 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42574,16 +43111,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3334 int - var yyb3334 bool - var yyhl3334 bool = l >= 0 - yyj3334++ - if yyhl3334 { - yyb3334 = yyj3334 > l + var yyj3383 int + var yyb3383 bool + var yyhl3383 bool = l >= 0 + yyj3383++ + if yyhl3383 { + yyb3383 = yyj3383 > l } else { - yyb3334 = r.CheckBreak() + yyb3383 = r.CheckBreak() } - if yyb3334 { + if yyb3383 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42594,17 +43131,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj3334++ - if yyhl3334 { - yyb3334 = yyj3334 > l + yyj3383++ + if yyhl3383 { + yyb3383 = yyj3383 > l } else { - yyb3334 = r.CheckBreak() + yyb3383 = r.CheckBreak() } - if yyb3334 { + if yyb3383 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3334-1, "") + z.DecStructFieldNotFound(yyj3383-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42613,8 +43150,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3336 := z.EncBinary() - _ = yym3336 + yym3385 := z.EncBinary() + _ = yym3385 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -42626,8 +43163,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3337 := z.DecBinary() - _ = yym3337 + yym3386 := z.DecBinary() + _ = yym3386 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -42642,39 +43179,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3338 := z.EncBinary() - _ = yym3338 + yym3387 := z.EncBinary() + _ = yym3387 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3339 := !z.EncBinary() - yy2arr3339 := z.EncBasicHandle().StructToArray - var yyq3339 [5]bool - _, _, _ = yysep3339, yyq3339, yy2arr3339 - const yyr3339 bool = false - yyq3339[0] = x.Kind != "" - yyq3339[1] = x.APIVersion != "" - yyq3339[2] = true - yyq3339[3] = true - yyq3339[4] = true - var yynn3339 int - if yyr3339 || yy2arr3339 { + yysep3388 := !z.EncBinary() + yy2arr3388 := z.EncBasicHandle().StructToArray + var yyq3388 [5]bool + _, _, _ = yysep3388, yyq3388, yy2arr3388 + const yyr3388 bool = false + yyq3388[0] = x.Kind != "" + yyq3388[1] = x.APIVersion != "" + yyq3388[2] = true + yyq3388[3] = true + yyq3388[4] = true + var yynn3388 int + if yyr3388 || yy2arr3388 { r.EncodeArrayStart(5) } else { - yynn3339 = 0 - for _, b := range yyq3339 { + yynn3388 = 0 + for _, b := range yyq3388 { if b { - yynn3339++ + yynn3388++ } } - r.EncodeMapStart(yynn3339) - yynn3339 = 0 + r.EncodeMapStart(yynn3388) + yynn3388 = 0 } - if yyr3339 || yy2arr3339 { + if yyr3388 || yy2arr3388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3339[0] { - yym3341 := z.EncBinary() - _ = yym3341 + if yyq3388[0] { + yym3390 := z.EncBinary() + _ = yym3390 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42683,23 +43220,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3339[0] { + if yyq3388[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3342 := z.EncBinary() - _ = yym3342 + yym3391 := z.EncBinary() + _ = yym3391 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3339 || yy2arr3339 { + if yyr3388 || yy2arr3388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3339[1] { - yym3344 := z.EncBinary() - _ = yym3344 + if yyq3388[1] { + yym3393 := z.EncBinary() + _ = yym3393 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42708,70 +43245,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3339[1] { + if yyq3388[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3345 := z.EncBinary() - _ = yym3345 + yym3394 := z.EncBinary() + _ = yym3394 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3339 || yy2arr3339 { + if yyr3388 || yy2arr3388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3339[2] { - yy3347 := &x.ObjectMeta - yy3347.CodecEncodeSelf(e) + if yyq3388[2] { + yy3396 := &x.ObjectMeta + yy3396.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3339[2] { + if yyq3388[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3348 := &x.ObjectMeta - yy3348.CodecEncodeSelf(e) + yy3397 := &x.ObjectMeta + yy3397.CodecEncodeSelf(e) } } - if yyr3339 || yy2arr3339 { + if yyr3388 || yy2arr3388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3339[3] { - yy3350 := &x.Spec - yy3350.CodecEncodeSelf(e) + if yyq3388[3] { + yy3399 := &x.Spec + yy3399.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3339[3] { + if yyq3388[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3351 := &x.Spec - yy3351.CodecEncodeSelf(e) + yy3400 := &x.Spec + yy3400.CodecEncodeSelf(e) } } - if yyr3339 || yy2arr3339 { + if yyr3388 || yy2arr3388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3339[4] { - yy3353 := &x.Status - yy3353.CodecEncodeSelf(e) + if yyq3388[4] { + yy3402 := &x.Status + yy3402.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3339[4] { + if yyq3388[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3354 := &x.Status - yy3354.CodecEncodeSelf(e) + yy3403 := &x.Status + yy3403.CodecEncodeSelf(e) } } - if yyr3339 || yy2arr3339 { + if yyr3388 || yy2arr3388 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42784,25 +43321,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3355 := z.DecBinary() - _ = yym3355 + yym3404 := z.DecBinary() + _ = yym3404 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3356 := r.ContainerType() - if yyct3356 == codecSelferValueTypeMap1234 { - yyl3356 := r.ReadMapStart() - if yyl3356 == 0 { + yyct3405 := r.ContainerType() + if yyct3405 == codecSelferValueTypeMap1234 { + yyl3405 := r.ReadMapStart() + if yyl3405 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3356, d) + x.codecDecodeSelfFromMap(yyl3405, d) } - } else if yyct3356 == codecSelferValueTypeArray1234 { - yyl3356 := r.ReadArrayStart() - if yyl3356 == 0 { + } else if yyct3405 == codecSelferValueTypeArray1234 { + yyl3405 := r.ReadArrayStart() + if yyl3405 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3356, d) + x.codecDecodeSelfFromArray(yyl3405, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42814,12 +43351,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3357Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3357Slc - var yyhl3357 bool = l >= 0 - for yyj3357 := 0; ; yyj3357++ { - if yyhl3357 { - if yyj3357 >= l { + var yys3406Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3406Slc + var yyhl3406 bool = l >= 0 + for yyj3406 := 0; ; yyj3406++ { + if yyhl3406 { + if yyj3406 >= l { break } } else { @@ -42828,10 +43365,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3357Slc = r.DecodeBytes(yys3357Slc, true, true) - yys3357 := string(yys3357Slc) + yys3406Slc = r.DecodeBytes(yys3406Slc, true, true) + yys3406 := string(yys3406Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3357 { + switch yys3406 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42848,27 +43385,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3360 := &x.ObjectMeta - yyv3360.CodecDecodeSelf(d) + yyv3409 := &x.ObjectMeta + yyv3409.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3361 := &x.Spec - yyv3361.CodecDecodeSelf(d) + yyv3410 := &x.Spec + yyv3410.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3362 := &x.Status - yyv3362.CodecDecodeSelf(d) + yyv3411 := &x.Status + yyv3411.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3357) - } // end switch yys3357 - } // end for yyj3357 + z.DecStructFieldNotFound(-1, yys3406) + } // end switch yys3406 + } // end for yyj3406 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42876,16 +43413,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3363 int - var yyb3363 bool - var yyhl3363 bool = l >= 0 - yyj3363++ - if yyhl3363 { - yyb3363 = yyj3363 > l + var yyj3412 int + var yyb3412 bool + var yyhl3412 bool = l >= 0 + yyj3412++ + if yyhl3412 { + yyb3412 = yyj3412 > l } else { - yyb3363 = r.CheckBreak() + yyb3412 = r.CheckBreak() } - if yyb3363 { + if yyb3412 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42895,13 +43432,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3363++ - if yyhl3363 { - yyb3363 = yyj3363 > l + yyj3412++ + if yyhl3412 { + yyb3412 = yyj3412 > l } else { - yyb3363 = r.CheckBreak() + yyb3412 = r.CheckBreak() } - if yyb3363 { + if yyb3412 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42911,13 +43448,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3363++ - if yyhl3363 { - yyb3363 = yyj3363 > l + yyj3412++ + if yyhl3412 { + yyb3412 = yyj3412 > l } else { - yyb3363 = r.CheckBreak() + yyb3412 = r.CheckBreak() } - if yyb3363 { + if yyb3412 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42925,16 +43462,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3366 := &x.ObjectMeta - yyv3366.CodecDecodeSelf(d) + yyv3415 := &x.ObjectMeta + yyv3415.CodecDecodeSelf(d) } - yyj3363++ - if yyhl3363 { - yyb3363 = yyj3363 > l + yyj3412++ + if yyhl3412 { + yyb3412 = yyj3412 > l } else { - yyb3363 = r.CheckBreak() + yyb3412 = r.CheckBreak() } - if yyb3363 { + if yyb3412 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42942,16 +43479,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3367 := &x.Spec - yyv3367.CodecDecodeSelf(d) + yyv3416 := &x.Spec + yyv3416.CodecDecodeSelf(d) } - yyj3363++ - if yyhl3363 { - yyb3363 = yyj3363 > l + yyj3412++ + if yyhl3412 { + yyb3412 = yyj3412 > l } else { - yyb3363 = r.CheckBreak() + yyb3412 = r.CheckBreak() } - if yyb3363 { + if yyb3412 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42959,21 +43496,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3368 := &x.Status - yyv3368.CodecDecodeSelf(d) + yyv3417 := &x.Status + yyv3417.CodecDecodeSelf(d) } for { - yyj3363++ - if yyhl3363 { - yyb3363 = yyj3363 > l + yyj3412++ + if yyhl3412 { + yyb3412 = yyj3412 > l } else { - yyb3363 = r.CheckBreak() + yyb3412 = r.CheckBreak() } - if yyb3363 { + if yyb3412 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3363-1, "") + z.DecStructFieldNotFound(yyj3412-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42985,37 +43522,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3369 := z.EncBinary() - _ = yym3369 + yym3418 := z.EncBinary() + _ = yym3418 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3370 := !z.EncBinary() - yy2arr3370 := z.EncBasicHandle().StructToArray - var yyq3370 [4]bool - _, _, _ = yysep3370, yyq3370, yy2arr3370 - const yyr3370 bool = false - yyq3370[0] = x.Kind != "" - yyq3370[1] = x.APIVersion != "" - yyq3370[2] = true - var yynn3370 int - if yyr3370 || yy2arr3370 { + yysep3419 := !z.EncBinary() + yy2arr3419 := z.EncBasicHandle().StructToArray + var yyq3419 [4]bool + _, _, _ = yysep3419, yyq3419, yy2arr3419 + const yyr3419 bool = false + yyq3419[0] = x.Kind != "" + yyq3419[1] = x.APIVersion != "" + yyq3419[2] = true + var yynn3419 int + if yyr3419 || yy2arr3419 { r.EncodeArrayStart(4) } else { - yynn3370 = 1 - for _, b := range yyq3370 { + yynn3419 = 1 + for _, b := range yyq3419 { if b { - yynn3370++ + yynn3419++ } } - r.EncodeMapStart(yynn3370) - yynn3370 = 0 + r.EncodeMapStart(yynn3419) + yynn3419 = 0 } - if yyr3370 || yy2arr3370 { + if yyr3419 || yy2arr3419 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3370[0] { - yym3372 := z.EncBinary() - _ = yym3372 + if yyq3419[0] { + yym3421 := z.EncBinary() + _ = yym3421 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43024,23 +43561,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3370[0] { + if yyq3419[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3373 := z.EncBinary() - _ = yym3373 + yym3422 := z.EncBinary() + _ = yym3422 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3370 || yy2arr3370 { + if yyr3419 || yy2arr3419 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3370[1] { - yym3375 := z.EncBinary() - _ = yym3375 + if yyq3419[1] { + yym3424 := z.EncBinary() + _ = yym3424 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43049,54 +43586,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3370[1] { + if yyq3419[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3376 := z.EncBinary() - _ = yym3376 + yym3425 := z.EncBinary() + _ = yym3425 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3370 || yy2arr3370 { + if yyr3419 || yy2arr3419 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3370[2] { - yy3378 := &x.ListMeta - yym3379 := z.EncBinary() - _ = yym3379 + if yyq3419[2] { + yy3427 := &x.ListMeta + yym3428 := z.EncBinary() + _ = yym3428 if false { - } else if z.HasExtensions() && z.EncExt(yy3378) { + } else if z.HasExtensions() && z.EncExt(yy3427) { } else { - z.EncFallback(yy3378) + z.EncFallback(yy3427) } } else { r.EncodeNil() } } else { - if yyq3370[2] { + if yyq3419[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3380 := &x.ListMeta - yym3381 := z.EncBinary() - _ = yym3381 + yy3429 := &x.ListMeta + yym3430 := z.EncBinary() + _ = yym3430 if false { - } else if z.HasExtensions() && z.EncExt(yy3380) { + } else if z.HasExtensions() && z.EncExt(yy3429) { } else { - z.EncFallback(yy3380) + z.EncFallback(yy3429) } } } - if yyr3370 || yy2arr3370 { + if yyr3419 || yy2arr3419 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3383 := z.EncBinary() - _ = yym3383 + yym3432 := z.EncBinary() + _ = yym3432 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -43109,15 +43646,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3384 := z.EncBinary() - _ = yym3384 + yym3433 := z.EncBinary() + _ = yym3433 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr3370 || yy2arr3370 { + if yyr3419 || yy2arr3419 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43130,25 +43667,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3385 := z.DecBinary() - _ = yym3385 + yym3434 := z.DecBinary() + _ = yym3434 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3386 := r.ContainerType() - if yyct3386 == codecSelferValueTypeMap1234 { - yyl3386 := r.ReadMapStart() - if yyl3386 == 0 { + yyct3435 := r.ContainerType() + if yyct3435 == codecSelferValueTypeMap1234 { + yyl3435 := r.ReadMapStart() + if yyl3435 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3386, d) + x.codecDecodeSelfFromMap(yyl3435, d) } - } else if yyct3386 == codecSelferValueTypeArray1234 { - yyl3386 := r.ReadArrayStart() - if yyl3386 == 0 { + } else if yyct3435 == codecSelferValueTypeArray1234 { + yyl3435 := r.ReadArrayStart() + if yyl3435 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3386, d) + x.codecDecodeSelfFromArray(yyl3435, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43160,12 +43697,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3387Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3387Slc - var yyhl3387 bool = l >= 0 - for yyj3387 := 0; ; yyj3387++ { - if yyhl3387 { - if yyj3387 >= l { + var yys3436Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3436Slc + var yyhl3436 bool = l >= 0 + for yyj3436 := 0; ; yyj3436++ { + if yyhl3436 { + if yyj3436 >= l { break } } else { @@ -43174,10 +43711,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3387Slc = r.DecodeBytes(yys3387Slc, true, true) - yys3387 := string(yys3387Slc) + yys3436Slc = r.DecodeBytes(yys3436Slc, true, true) + yys3436 := string(yys3436Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3387 { + switch yys3436 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43194,31 +43731,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3390 := &x.ListMeta - yym3391 := z.DecBinary() - _ = yym3391 + yyv3439 := &x.ListMeta + yym3440 := z.DecBinary() + _ = yym3440 if false { - } else if z.HasExtensions() && z.DecExt(yyv3390) { + } else if z.HasExtensions() && z.DecExt(yyv3439) { } else { - z.DecFallback(yyv3390, false) + z.DecFallback(yyv3439, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3392 := &x.Items - yym3393 := z.DecBinary() - _ = yym3393 + yyv3441 := &x.Items + yym3442 := z.DecBinary() + _ = yym3442 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3392), d) + h.decSliceNamespace((*[]Namespace)(yyv3441), d) } } default: - z.DecStructFieldNotFound(-1, yys3387) - } // end switch yys3387 - } // end for yyj3387 + z.DecStructFieldNotFound(-1, yys3436) + } // end switch yys3436 + } // end for yyj3436 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43226,16 +43763,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3394 int - var yyb3394 bool - var yyhl3394 bool = l >= 0 - yyj3394++ - if yyhl3394 { - yyb3394 = yyj3394 > l + var yyj3443 int + var yyb3443 bool + var yyhl3443 bool = l >= 0 + yyj3443++ + if yyhl3443 { + yyb3443 = yyj3443 > l } else { - yyb3394 = r.CheckBreak() + yyb3443 = r.CheckBreak() } - if yyb3394 { + if yyb3443 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43245,13 +43782,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3394++ - if yyhl3394 { - yyb3394 = yyj3394 > l + yyj3443++ + if yyhl3443 { + yyb3443 = yyj3443 > l } else { - yyb3394 = r.CheckBreak() + yyb3443 = r.CheckBreak() } - if yyb3394 { + if yyb3443 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43261,13 +43798,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3394++ - if yyhl3394 { - yyb3394 = yyj3394 > l + yyj3443++ + if yyhl3443 { + yyb3443 = yyj3443 > l } else { - yyb3394 = r.CheckBreak() + yyb3443 = r.CheckBreak() } - if yyb3394 { + if yyb3443 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43275,22 +43812,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3397 := &x.ListMeta - yym3398 := z.DecBinary() - _ = yym3398 + yyv3446 := &x.ListMeta + yym3447 := z.DecBinary() + _ = yym3447 if false { - } else if z.HasExtensions() && z.DecExt(yyv3397) { + } else if z.HasExtensions() && z.DecExt(yyv3446) { } else { - z.DecFallback(yyv3397, false) + z.DecFallback(yyv3446, false) } } - yyj3394++ - if yyhl3394 { - yyb3394 = yyj3394 > l + yyj3443++ + if yyhl3443 { + yyb3443 = yyj3443 > l } else { - yyb3394 = r.CheckBreak() + yyb3443 = r.CheckBreak() } - if yyb3394 { + if yyb3443 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43298,26 +43835,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3399 := &x.Items - yym3400 := z.DecBinary() - _ = yym3400 + yyv3448 := &x.Items + yym3449 := z.DecBinary() + _ = yym3449 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3399), d) + h.decSliceNamespace((*[]Namespace)(yyv3448), d) } } for { - yyj3394++ - if yyhl3394 { - yyb3394 = yyj3394 > l + yyj3443++ + if yyhl3443 { + yyb3443 = yyj3443 > l } else { - yyb3394 = r.CheckBreak() + yyb3443 = r.CheckBreak() } - if yyb3394 { + if yyb3443 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3394-1, "") + z.DecStructFieldNotFound(yyj3443-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43329,37 +43866,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3401 := z.EncBinary() - _ = yym3401 + yym3450 := z.EncBinary() + _ = yym3450 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3402 := !z.EncBinary() - yy2arr3402 := z.EncBasicHandle().StructToArray - var yyq3402 [4]bool - _, _, _ = yysep3402, yyq3402, yy2arr3402 - const yyr3402 bool = false - yyq3402[0] = x.Kind != "" - yyq3402[1] = x.APIVersion != "" - yyq3402[2] = true - var yynn3402 int - if yyr3402 || yy2arr3402 { + yysep3451 := !z.EncBinary() + yy2arr3451 := z.EncBasicHandle().StructToArray + var yyq3451 [4]bool + _, _, _ = yysep3451, yyq3451, yy2arr3451 + const yyr3451 bool = false + yyq3451[0] = x.Kind != "" + yyq3451[1] = x.APIVersion != "" + yyq3451[2] = true + var yynn3451 int + if yyr3451 || yy2arr3451 { r.EncodeArrayStart(4) } else { - yynn3402 = 1 - for _, b := range yyq3402 { + yynn3451 = 1 + for _, b := range yyq3451 { if b { - yynn3402++ + yynn3451++ } } - r.EncodeMapStart(yynn3402) - yynn3402 = 0 + r.EncodeMapStart(yynn3451) + yynn3451 = 0 } - if yyr3402 || yy2arr3402 { + if yyr3451 || yy2arr3451 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3402[0] { - yym3404 := z.EncBinary() - _ = yym3404 + if yyq3451[0] { + yym3453 := z.EncBinary() + _ = yym3453 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43368,23 +43905,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3402[0] { + if yyq3451[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3405 := z.EncBinary() - _ = yym3405 + yym3454 := z.EncBinary() + _ = yym3454 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3402 || yy2arr3402 { + if yyr3451 || yy2arr3451 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3402[1] { - yym3407 := z.EncBinary() - _ = yym3407 + if yyq3451[1] { + yym3456 := z.EncBinary() + _ = yym3456 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43393,47 +43930,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3402[1] { + if yyq3451[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3408 := z.EncBinary() - _ = yym3408 + yym3457 := z.EncBinary() + _ = yym3457 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3402 || yy2arr3402 { + if yyr3451 || yy2arr3451 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3402[2] { - yy3410 := &x.ObjectMeta - yy3410.CodecEncodeSelf(e) + if yyq3451[2] { + yy3459 := &x.ObjectMeta + yy3459.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3402[2] { + if yyq3451[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3411 := &x.ObjectMeta - yy3411.CodecEncodeSelf(e) + yy3460 := &x.ObjectMeta + yy3460.CodecEncodeSelf(e) } } - if yyr3402 || yy2arr3402 { + if yyr3451 || yy2arr3451 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3413 := &x.Target - yy3413.CodecEncodeSelf(e) + yy3462 := &x.Target + yy3462.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3414 := &x.Target - yy3414.CodecEncodeSelf(e) + yy3463 := &x.Target + yy3463.CodecEncodeSelf(e) } - if yyr3402 || yy2arr3402 { + if yyr3451 || yy2arr3451 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43446,25 +43983,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3415 := z.DecBinary() - _ = yym3415 + yym3464 := z.DecBinary() + _ = yym3464 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3416 := r.ContainerType() - if yyct3416 == codecSelferValueTypeMap1234 { - yyl3416 := r.ReadMapStart() - if yyl3416 == 0 { + yyct3465 := r.ContainerType() + if yyct3465 == codecSelferValueTypeMap1234 { + yyl3465 := r.ReadMapStart() + if yyl3465 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3416, d) + x.codecDecodeSelfFromMap(yyl3465, d) } - } else if yyct3416 == codecSelferValueTypeArray1234 { - yyl3416 := r.ReadArrayStart() - if yyl3416 == 0 { + } else if yyct3465 == codecSelferValueTypeArray1234 { + yyl3465 := r.ReadArrayStart() + if yyl3465 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3416, d) + x.codecDecodeSelfFromArray(yyl3465, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43476,12 +44013,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3417Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3417Slc - var yyhl3417 bool = l >= 0 - for yyj3417 := 0; ; yyj3417++ { - if yyhl3417 { - if yyj3417 >= l { + var yys3466Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3466Slc + var yyhl3466 bool = l >= 0 + for yyj3466 := 0; ; yyj3466++ { + if yyhl3466 { + if yyj3466 >= l { break } } else { @@ -43490,10 +44027,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3417Slc = r.DecodeBytes(yys3417Slc, true, true) - yys3417 := string(yys3417Slc) + yys3466Slc = r.DecodeBytes(yys3466Slc, true, true) + yys3466 := string(yys3466Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3417 { + switch yys3466 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43510,20 +44047,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3420 := &x.ObjectMeta - yyv3420.CodecDecodeSelf(d) + yyv3469 := &x.ObjectMeta + yyv3469.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3421 := &x.Target - yyv3421.CodecDecodeSelf(d) + yyv3470 := &x.Target + yyv3470.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3417) - } // end switch yys3417 - } // end for yyj3417 + z.DecStructFieldNotFound(-1, yys3466) + } // end switch yys3466 + } // end for yyj3466 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43531,16 +44068,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3422 int - var yyb3422 bool - var yyhl3422 bool = l >= 0 - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + var yyj3471 int + var yyb3471 bool + var yyhl3471 bool = l >= 0 + yyj3471++ + if yyhl3471 { + yyb3471 = yyj3471 > l } else { - yyb3422 = r.CheckBreak() + yyb3471 = r.CheckBreak() } - if yyb3422 { + if yyb3471 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43550,13 +44087,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3471++ + if yyhl3471 { + yyb3471 = yyj3471 > l } else { - yyb3422 = r.CheckBreak() + yyb3471 = r.CheckBreak() } - if yyb3422 { + if yyb3471 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43566,13 +44103,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3471++ + if yyhl3471 { + yyb3471 = yyj3471 > l } else { - yyb3422 = r.CheckBreak() + yyb3471 = r.CheckBreak() } - if yyb3422 { + if yyb3471 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43580,16 +44117,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3425 := &x.ObjectMeta - yyv3425.CodecDecodeSelf(d) + yyv3474 := &x.ObjectMeta + yyv3474.CodecDecodeSelf(d) } - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3471++ + if yyhl3471 { + yyb3471 = yyj3471 > l } else { - yyb3422 = r.CheckBreak() + yyb3471 = r.CheckBreak() } - if yyb3422 { + if yyb3471 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43597,21 +44134,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3426 := &x.Target - yyv3426.CodecDecodeSelf(d) + yyv3475 := &x.Target + yyv3475.CodecDecodeSelf(d) } for { - yyj3422++ - if yyhl3422 { - yyb3422 = yyj3422 > l + yyj3471++ + if yyhl3471 { + yyb3471 = yyj3471 > l } else { - yyb3422 = r.CheckBreak() + yyb3471 = r.CheckBreak() } - if yyb3422 { + if yyb3471 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3422-1, "") + z.DecStructFieldNotFound(yyj3471-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43623,68 +44160,68 @@ func (x *Preconditions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3427 := z.EncBinary() - _ = yym3427 + yym3476 := z.EncBinary() + _ = yym3476 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3428 := !z.EncBinary() - yy2arr3428 := z.EncBasicHandle().StructToArray - var yyq3428 [1]bool - _, _, _ = yysep3428, yyq3428, yy2arr3428 - const yyr3428 bool = false - yyq3428[0] = x.UID != nil - var yynn3428 int - if yyr3428 || yy2arr3428 { + yysep3477 := !z.EncBinary() + yy2arr3477 := z.EncBasicHandle().StructToArray + var yyq3477 [1]bool + _, _, _ = yysep3477, yyq3477, yy2arr3477 + const yyr3477 bool = false + yyq3477[0] = x.UID != nil + var yynn3477 int + if yyr3477 || yy2arr3477 { r.EncodeArrayStart(1) } else { - yynn3428 = 0 - for _, b := range yyq3428 { + yynn3477 = 0 + for _, b := range yyq3477 { if b { - yynn3428++ + yynn3477++ } } - r.EncodeMapStart(yynn3428) - yynn3428 = 0 + r.EncodeMapStart(yynn3477) + yynn3477 = 0 } - if yyr3428 || yy2arr3428 { + if yyr3477 || yy2arr3477 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3428[0] { + if yyq3477[0] { if x.UID == nil { r.EncodeNil() } else { - yy3430 := *x.UID - yym3431 := z.EncBinary() - _ = yym3431 + yy3479 := *x.UID + yym3480 := z.EncBinary() + _ = yym3480 if false { - } else if z.HasExtensions() && z.EncExt(yy3430) { + } else if z.HasExtensions() && z.EncExt(yy3479) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3430)) + r.EncodeString(codecSelferC_UTF81234, string(yy3479)) } } } else { r.EncodeNil() } } else { - if yyq3428[0] { + if yyq3477[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.UID == nil { r.EncodeNil() } else { - yy3432 := *x.UID - yym3433 := z.EncBinary() - _ = yym3433 + yy3481 := *x.UID + yym3482 := z.EncBinary() + _ = yym3482 if false { - } else if z.HasExtensions() && z.EncExt(yy3432) { + } else if z.HasExtensions() && z.EncExt(yy3481) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3432)) + r.EncodeString(codecSelferC_UTF81234, string(yy3481)) } } } } - if yyr3428 || yy2arr3428 { + if yyr3477 || yy2arr3477 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43697,25 +44234,25 @@ func (x *Preconditions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3434 := z.DecBinary() - _ = yym3434 + yym3483 := z.DecBinary() + _ = yym3483 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3435 := r.ContainerType() - if yyct3435 == codecSelferValueTypeMap1234 { - yyl3435 := r.ReadMapStart() - if yyl3435 == 0 { + yyct3484 := r.ContainerType() + if yyct3484 == codecSelferValueTypeMap1234 { + yyl3484 := r.ReadMapStart() + if yyl3484 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3435, d) + x.codecDecodeSelfFromMap(yyl3484, d) } - } else if yyct3435 == codecSelferValueTypeArray1234 { - yyl3435 := r.ReadArrayStart() - if yyl3435 == 0 { + } else if yyct3484 == codecSelferValueTypeArray1234 { + yyl3484 := r.ReadArrayStart() + if yyl3484 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3435, d) + x.codecDecodeSelfFromArray(yyl3484, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43727,12 +44264,12 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3436Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3436Slc - var yyhl3436 bool = l >= 0 - for yyj3436 := 0; ; yyj3436++ { - if yyhl3436 { - if yyj3436 >= l { + var yys3485Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3485Slc + var yyhl3485 bool = l >= 0 + for yyj3485 := 0; ; yyj3485++ { + if yyhl3485 { + if yyj3485 >= l { break } } else { @@ -43741,10 +44278,10 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3436Slc = r.DecodeBytes(yys3436Slc, true, true) - yys3436 := string(yys3436Slc) + yys3485Slc = r.DecodeBytes(yys3485Slc, true, true) + yys3485 := string(yys3485Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3436 { + switch yys3485 { case "uid": if r.TryDecodeAsNil() { if x.UID != nil { @@ -43754,8 +44291,8 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3438 := z.DecBinary() - _ = yym3438 + yym3487 := z.DecBinary() + _ = yym3487 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -43763,9 +44300,9 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3436) - } // end switch yys3436 - } // end for yyj3436 + z.DecStructFieldNotFound(-1, yys3485) + } // end switch yys3485 + } // end for yyj3485 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43773,16 +44310,16 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3439 int - var yyb3439 bool - var yyhl3439 bool = l >= 0 - yyj3439++ - if yyhl3439 { - yyb3439 = yyj3439 > l + var yyj3488 int + var yyb3488 bool + var yyhl3488 bool = l >= 0 + yyj3488++ + if yyhl3488 { + yyb3488 = yyj3488 > l } else { - yyb3439 = r.CheckBreak() + yyb3488 = r.CheckBreak() } - if yyb3439 { + if yyb3488 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43795,8 +44332,8 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3441 := z.DecBinary() - _ = yym3441 + yym3490 := z.DecBinary() + _ = yym3490 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -43804,17 +44341,17 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3439++ - if yyhl3439 { - yyb3439 = yyj3439 > l + yyj3488++ + if yyhl3488 { + yyb3488 = yyj3488 > l } else { - yyb3439 = r.CheckBreak() + yyb3488 = r.CheckBreak() } - if yyb3439 { + if yyb3488 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3439-1, "") + z.DecStructFieldNotFound(yyj3488-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43826,39 +44363,39 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3442 := z.EncBinary() - _ = yym3442 + yym3491 := z.EncBinary() + _ = yym3491 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3443 := !z.EncBinary() - yy2arr3443 := z.EncBasicHandle().StructToArray - var yyq3443 [5]bool - _, _, _ = yysep3443, yyq3443, yy2arr3443 - const yyr3443 bool = false - yyq3443[0] = x.Kind != "" - yyq3443[1] = x.APIVersion != "" - yyq3443[2] = x.GracePeriodSeconds != nil - yyq3443[3] = x.Preconditions != nil - yyq3443[4] = x.OrphanDependents != nil - var yynn3443 int - if yyr3443 || yy2arr3443 { + yysep3492 := !z.EncBinary() + yy2arr3492 := z.EncBasicHandle().StructToArray + var yyq3492 [5]bool + _, _, _ = yysep3492, yyq3492, yy2arr3492 + const yyr3492 bool = false + yyq3492[0] = x.Kind != "" + yyq3492[1] = x.APIVersion != "" + yyq3492[2] = x.GracePeriodSeconds != nil + yyq3492[3] = x.Preconditions != nil + yyq3492[4] = x.OrphanDependents != nil + var yynn3492 int + if yyr3492 || yy2arr3492 { r.EncodeArrayStart(5) } else { - yynn3443 = 0 - for _, b := range yyq3443 { + yynn3492 = 0 + for _, b := range yyq3492 { if b { - yynn3443++ + yynn3492++ } } - r.EncodeMapStart(yynn3443) - yynn3443 = 0 + r.EncodeMapStart(yynn3492) + yynn3492 = 0 } - if yyr3443 || yy2arr3443 { + if yyr3492 || yy2arr3492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3443[0] { - yym3445 := z.EncBinary() - _ = yym3445 + if yyq3492[0] { + yym3494 := z.EncBinary() + _ = yym3494 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43867,23 +44404,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3443[0] { + if yyq3492[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3446 := z.EncBinary() - _ = yym3446 + yym3495 := z.EncBinary() + _ = yym3495 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3443 || yy2arr3443 { + if yyr3492 || yy2arr3492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3443[1] { - yym3448 := z.EncBinary() - _ = yym3448 + if yyq3492[1] { + yym3497 := z.EncBinary() + _ = yym3497 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43892,56 +44429,56 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3443[1] { + if yyq3492[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3449 := z.EncBinary() - _ = yym3449 + yym3498 := z.EncBinary() + _ = yym3498 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3443 || yy2arr3443 { + if yyr3492 || yy2arr3492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3443[2] { + if yyq3492[2] { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3451 := *x.GracePeriodSeconds - yym3452 := z.EncBinary() - _ = yym3452 + yy3500 := *x.GracePeriodSeconds + yym3501 := z.EncBinary() + _ = yym3501 if false { } else { - r.EncodeInt(int64(yy3451)) + r.EncodeInt(int64(yy3500)) } } } else { r.EncodeNil() } } else { - if yyq3443[2] { + if yyq3492[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3453 := *x.GracePeriodSeconds - yym3454 := z.EncBinary() - _ = yym3454 + yy3502 := *x.GracePeriodSeconds + yym3503 := z.EncBinary() + _ = yym3503 if false { } else { - r.EncodeInt(int64(yy3453)) + r.EncodeInt(int64(yy3502)) } } } } - if yyr3443 || yy2arr3443 { + if yyr3492 || yy2arr3492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3443[3] { + if yyq3492[3] { if x.Preconditions == nil { r.EncodeNil() } else { @@ -43951,7 +44488,7 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3443[3] { + if yyq3492[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preconditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -43962,42 +44499,42 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3443 || yy2arr3443 { + if yyr3492 || yy2arr3492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3443[4] { + if yyq3492[4] { if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3457 := *x.OrphanDependents - yym3458 := z.EncBinary() - _ = yym3458 + yy3506 := *x.OrphanDependents + yym3507 := z.EncBinary() + _ = yym3507 if false { } else { - r.EncodeBool(bool(yy3457)) + r.EncodeBool(bool(yy3506)) } } } else { r.EncodeNil() } } else { - if yyq3443[4] { + if yyq3492[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("orphanDependents")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3459 := *x.OrphanDependents - yym3460 := z.EncBinary() - _ = yym3460 + yy3508 := *x.OrphanDependents + yym3509 := z.EncBinary() + _ = yym3509 if false { } else { - r.EncodeBool(bool(yy3459)) + r.EncodeBool(bool(yy3508)) } } } } - if yyr3443 || yy2arr3443 { + if yyr3492 || yy2arr3492 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44010,25 +44547,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3461 := z.DecBinary() - _ = yym3461 + yym3510 := z.DecBinary() + _ = yym3510 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3462 := r.ContainerType() - if yyct3462 == codecSelferValueTypeMap1234 { - yyl3462 := r.ReadMapStart() - if yyl3462 == 0 { + yyct3511 := r.ContainerType() + if yyct3511 == codecSelferValueTypeMap1234 { + yyl3511 := r.ReadMapStart() + if yyl3511 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3462, d) + x.codecDecodeSelfFromMap(yyl3511, d) } - } else if yyct3462 == codecSelferValueTypeArray1234 { - yyl3462 := r.ReadArrayStart() - if yyl3462 == 0 { + } else if yyct3511 == codecSelferValueTypeArray1234 { + yyl3511 := r.ReadArrayStart() + if yyl3511 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3462, d) + x.codecDecodeSelfFromArray(yyl3511, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44040,12 +44577,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3463Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3463Slc - var yyhl3463 bool = l >= 0 - for yyj3463 := 0; ; yyj3463++ { - if yyhl3463 { - if yyj3463 >= l { + var yys3512Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3512Slc + var yyhl3512 bool = l >= 0 + for yyj3512 := 0; ; yyj3512++ { + if yyhl3512 { + if yyj3512 >= l { break } } else { @@ -44054,10 +44591,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3463Slc = r.DecodeBytes(yys3463Slc, true, true) - yys3463 := string(yys3463Slc) + yys3512Slc = r.DecodeBytes(yys3512Slc, true, true) + yys3512 := string(yys3512Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3463 { + switch yys3512 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44079,8 +44616,8 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3467 := z.DecBinary() - _ = yym3467 + yym3516 := z.DecBinary() + _ = yym3516 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -44106,17 +44643,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3470 := z.DecBinary() - _ = yym3470 + yym3519 := z.DecBinary() + _ = yym3519 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3463) - } // end switch yys3463 - } // end for yyj3463 + z.DecStructFieldNotFound(-1, yys3512) + } // end switch yys3512 + } // end for yyj3512 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44124,16 +44661,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3471 int - var yyb3471 bool - var yyhl3471 bool = l >= 0 - yyj3471++ - if yyhl3471 { - yyb3471 = yyj3471 > l + var yyj3520 int + var yyb3520 bool + var yyhl3520 bool = l >= 0 + yyj3520++ + if yyhl3520 { + yyb3520 = yyj3520 > l } else { - yyb3471 = r.CheckBreak() + yyb3520 = r.CheckBreak() } - if yyb3471 { + if yyb3520 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44143,13 +44680,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3471++ - if yyhl3471 { - yyb3471 = yyj3471 > l + yyj3520++ + if yyhl3520 { + yyb3520 = yyj3520 > l } else { - yyb3471 = r.CheckBreak() + yyb3520 = r.CheckBreak() } - if yyb3471 { + if yyb3520 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44159,13 +44696,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3471++ - if yyhl3471 { - yyb3471 = yyj3471 > l + yyj3520++ + if yyhl3520 { + yyb3520 = yyj3520 > l } else { - yyb3471 = r.CheckBreak() + yyb3520 = r.CheckBreak() } - if yyb3471 { + if yyb3520 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44178,20 +44715,20 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3475 := z.DecBinary() - _ = yym3475 + yym3524 := z.DecBinary() + _ = yym3524 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj3471++ - if yyhl3471 { - yyb3471 = yyj3471 > l + yyj3520++ + if yyhl3520 { + yyb3520 = yyj3520 > l } else { - yyb3471 = r.CheckBreak() + yyb3520 = r.CheckBreak() } - if yyb3471 { + if yyb3520 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44206,13 +44743,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Preconditions.CodecDecodeSelf(d) } - yyj3471++ - if yyhl3471 { - yyb3471 = yyj3471 > l + yyj3520++ + if yyhl3520 { + yyb3520 = yyj3520 > l } else { - yyb3471 = r.CheckBreak() + yyb3520 = r.CheckBreak() } - if yyb3471 { + if yyb3520 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44225,25 +44762,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3478 := z.DecBinary() - _ = yym3478 + yym3527 := z.DecBinary() + _ = yym3527 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } for { - yyj3471++ - if yyhl3471 { - yyb3471 = yyj3471 > l + yyj3520++ + if yyhl3520 { + yyb3520 = yyj3520 > l } else { - yyb3471 = r.CheckBreak() + yyb3520 = r.CheckBreak() } - if yyb3471 { + if yyb3520 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3471-1, "") + z.DecStructFieldNotFound(yyj3520-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44255,36 +44792,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3479 := z.EncBinary() - _ = yym3479 + yym3528 := z.EncBinary() + _ = yym3528 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3480 := !z.EncBinary() - yy2arr3480 := z.EncBasicHandle().StructToArray - var yyq3480 [4]bool - _, _, _ = yysep3480, yyq3480, yy2arr3480 - const yyr3480 bool = false - yyq3480[0] = x.Kind != "" - yyq3480[1] = x.APIVersion != "" - var yynn3480 int - if yyr3480 || yy2arr3480 { + yysep3529 := !z.EncBinary() + yy2arr3529 := z.EncBasicHandle().StructToArray + var yyq3529 [4]bool + _, _, _ = yysep3529, yyq3529, yy2arr3529 + const yyr3529 bool = false + yyq3529[0] = x.Kind != "" + yyq3529[1] = x.APIVersion != "" + var yynn3529 int + if yyr3529 || yy2arr3529 { r.EncodeArrayStart(4) } else { - yynn3480 = 2 - for _, b := range yyq3480 { + yynn3529 = 2 + for _, b := range yyq3529 { if b { - yynn3480++ + yynn3529++ } } - r.EncodeMapStart(yynn3480) - yynn3480 = 0 + r.EncodeMapStart(yynn3529) + yynn3529 = 0 } - if yyr3480 || yy2arr3480 { + if yyr3529 || yy2arr3529 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3480[0] { - yym3482 := z.EncBinary() - _ = yym3482 + if yyq3529[0] { + yym3531 := z.EncBinary() + _ = yym3531 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44293,23 +44830,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3480[0] { + if yyq3529[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3483 := z.EncBinary() - _ = yym3483 + yym3532 := z.EncBinary() + _ = yym3532 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3480 || yy2arr3480 { + if yyr3529 || yy2arr3529 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3480[1] { - yym3485 := z.EncBinary() - _ = yym3485 + if yyq3529[1] { + yym3534 := z.EncBinary() + _ = yym3534 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44318,22 +44855,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3480[1] { + if yyq3529[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3486 := z.EncBinary() - _ = yym3486 + yym3535 := z.EncBinary() + _ = yym3535 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3480 || yy2arr3480 { + if yyr3529 || yy2arr3529 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3488 := z.EncBinary() - _ = yym3488 + yym3537 := z.EncBinary() + _ = yym3537 if false { } else { r.EncodeBool(bool(x.Export)) @@ -44342,17 +44879,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3489 := z.EncBinary() - _ = yym3489 + yym3538 := z.EncBinary() + _ = yym3538 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr3480 || yy2arr3480 { + if yyr3529 || yy2arr3529 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3491 := z.EncBinary() - _ = yym3491 + yym3540 := z.EncBinary() + _ = yym3540 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -44361,14 +44898,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3492 := z.EncBinary() - _ = yym3492 + yym3541 := z.EncBinary() + _ = yym3541 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr3480 || yy2arr3480 { + if yyr3529 || yy2arr3529 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44381,25 +44918,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3493 := z.DecBinary() - _ = yym3493 + yym3542 := z.DecBinary() + _ = yym3542 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3494 := r.ContainerType() - if yyct3494 == codecSelferValueTypeMap1234 { - yyl3494 := r.ReadMapStart() - if yyl3494 == 0 { + yyct3543 := r.ContainerType() + if yyct3543 == codecSelferValueTypeMap1234 { + yyl3543 := r.ReadMapStart() + if yyl3543 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3494, d) + x.codecDecodeSelfFromMap(yyl3543, d) } - } else if yyct3494 == codecSelferValueTypeArray1234 { - yyl3494 := r.ReadArrayStart() - if yyl3494 == 0 { + } else if yyct3543 == codecSelferValueTypeArray1234 { + yyl3543 := r.ReadArrayStart() + if yyl3543 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3494, d) + x.codecDecodeSelfFromArray(yyl3543, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44411,12 +44948,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3495Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3495Slc - var yyhl3495 bool = l >= 0 - for yyj3495 := 0; ; yyj3495++ { - if yyhl3495 { - if yyj3495 >= l { + var yys3544Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3544Slc + var yyhl3544 bool = l >= 0 + for yyj3544 := 0; ; yyj3544++ { + if yyhl3544 { + if yyj3544 >= l { break } } else { @@ -44425,10 +44962,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3495Slc = r.DecodeBytes(yys3495Slc, true, true) - yys3495 := string(yys3495Slc) + yys3544Slc = r.DecodeBytes(yys3544Slc, true, true) + yys3544 := string(yys3544Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3495 { + switch yys3544 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44454,9 +44991,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys3495) - } // end switch yys3495 - } // end for yyj3495 + z.DecStructFieldNotFound(-1, yys3544) + } // end switch yys3544 + } // end for yyj3544 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44464,16 +45001,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3500 int - var yyb3500 bool - var yyhl3500 bool = l >= 0 - yyj3500++ - if yyhl3500 { - yyb3500 = yyj3500 > l + var yyj3549 int + var yyb3549 bool + var yyhl3549 bool = l >= 0 + yyj3549++ + if yyhl3549 { + yyb3549 = yyj3549 > l } else { - yyb3500 = r.CheckBreak() + yyb3549 = r.CheckBreak() } - if yyb3500 { + if yyb3549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44483,13 +45020,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3500++ - if yyhl3500 { - yyb3500 = yyj3500 > l + yyj3549++ + if yyhl3549 { + yyb3549 = yyj3549 > l } else { - yyb3500 = r.CheckBreak() + yyb3549 = r.CheckBreak() } - if yyb3500 { + if yyb3549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44499,13 +45036,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3500++ - if yyhl3500 { - yyb3500 = yyj3500 > l + yyj3549++ + if yyhl3549 { + yyb3549 = yyj3549 > l } else { - yyb3500 = r.CheckBreak() + yyb3549 = r.CheckBreak() } - if yyb3500 { + if yyb3549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44515,13 +45052,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj3500++ - if yyhl3500 { - yyb3500 = yyj3500 > l + yyj3549++ + if yyhl3549 { + yyb3549 = yyj3549 > l } else { - yyb3500 = r.CheckBreak() + yyb3549 = r.CheckBreak() } - if yyb3500 { + if yyb3549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44532,17 +45069,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj3500++ - if yyhl3500 { - yyb3500 = yyj3500 > l + yyj3549++ + if yyhl3549 { + yyb3549 = yyj3549 > l } else { - yyb3500 = r.CheckBreak() + yyb3549 = r.CheckBreak() } - if yyb3500 { + if yyb3549 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3500-1, "") + z.DecStructFieldNotFound(yyj3549-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44554,36 +45091,36 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3505 := z.EncBinary() - _ = yym3505 + yym3554 := z.EncBinary() + _ = yym3554 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3506 := !z.EncBinary() - yy2arr3506 := z.EncBasicHandle().StructToArray - var yyq3506 [7]bool - _, _, _ = yysep3506, yyq3506, yy2arr3506 - const yyr3506 bool = false - yyq3506[0] = x.Kind != "" - yyq3506[1] = x.APIVersion != "" - var yynn3506 int - if yyr3506 || yy2arr3506 { + yysep3555 := !z.EncBinary() + yy2arr3555 := z.EncBasicHandle().StructToArray + var yyq3555 [7]bool + _, _, _ = yysep3555, yyq3555, yy2arr3555 + const yyr3555 bool = false + yyq3555[0] = x.Kind != "" + yyq3555[1] = x.APIVersion != "" + var yynn3555 int + if yyr3555 || yy2arr3555 { r.EncodeArrayStart(7) } else { - yynn3506 = 5 - for _, b := range yyq3506 { + yynn3555 = 5 + for _, b := range yyq3555 { if b { - yynn3506++ + yynn3555++ } } - r.EncodeMapStart(yynn3506) - yynn3506 = 0 + r.EncodeMapStart(yynn3555) + yynn3555 = 0 } - if yyr3506 || yy2arr3506 { + if yyr3555 || yy2arr3555 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3506[0] { - yym3508 := z.EncBinary() - _ = yym3508 + if yyq3555[0] { + yym3557 := z.EncBinary() + _ = yym3557 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44592,23 +45129,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3506[0] { + if yyq3555[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3509 := z.EncBinary() - _ = yym3509 + yym3558 := z.EncBinary() + _ = yym3558 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3506 || yy2arr3506 { + if yyr3555 || yy2arr3555 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3506[1] { - yym3511 := z.EncBinary() - _ = yym3511 + if yyq3555[1] { + yym3560 := z.EncBinary() + _ = yym3560 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44617,25 +45154,25 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3506[1] { + if yyq3555[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3512 := z.EncBinary() - _ = yym3512 + yym3561 := z.EncBinary() + _ = yym3561 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3506 || yy2arr3506 { + if yyr3555 || yy2arr3555 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LabelSelector == nil { r.EncodeNil() } else { - yym3514 := z.EncBinary() - _ = yym3514 + yym3563 := z.EncBinary() + _ = yym3563 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -44649,8 +45186,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LabelSelector == nil { r.EncodeNil() } else { - yym3515 := z.EncBinary() - _ = yym3515 + yym3564 := z.EncBinary() + _ = yym3564 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -44658,13 +45195,13 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3506 || yy2arr3506 { + if yyr3555 || yy2arr3555 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.FieldSelector == nil { r.EncodeNil() } else { - yym3517 := z.EncBinary() - _ = yym3517 + yym3566 := z.EncBinary() + _ = yym3566 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -44678,8 +45215,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.FieldSelector == nil { r.EncodeNil() } else { - yym3518 := z.EncBinary() - _ = yym3518 + yym3567 := z.EncBinary() + _ = yym3567 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -44687,10 +45224,10 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3506 || yy2arr3506 { + if yyr3555 || yy2arr3555 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3520 := z.EncBinary() - _ = yym3520 + yym3569 := z.EncBinary() + _ = yym3569 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -44699,17 +45236,17 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3521 := z.EncBinary() - _ = yym3521 + yym3570 := z.EncBinary() + _ = yym3570 if false { } else { r.EncodeBool(bool(x.Watch)) } } - if yyr3506 || yy2arr3506 { + if yyr3555 || yy2arr3555 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3523 := z.EncBinary() - _ = yym3523 + yym3572 := z.EncBinary() + _ = yym3572 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -44718,24 +45255,24 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ResourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3524 := z.EncBinary() - _ = yym3524 + yym3573 := z.EncBinary() + _ = yym3573 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } - if yyr3506 || yy2arr3506 { + if yyr3555 || yy2arr3555 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3526 := *x.TimeoutSeconds - yym3527 := z.EncBinary() - _ = yym3527 + yy3575 := *x.TimeoutSeconds + yym3576 := z.EncBinary() + _ = yym3576 if false { } else { - r.EncodeInt(int64(yy3526)) + r.EncodeInt(int64(yy3575)) } } } else { @@ -44745,16 +45282,16 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3528 := *x.TimeoutSeconds - yym3529 := z.EncBinary() - _ = yym3529 + yy3577 := *x.TimeoutSeconds + yym3578 := z.EncBinary() + _ = yym3578 if false { } else { - r.EncodeInt(int64(yy3528)) + r.EncodeInt(int64(yy3577)) } } } - if yyr3506 || yy2arr3506 { + if yyr3555 || yy2arr3555 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44767,25 +45304,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3530 := z.DecBinary() - _ = yym3530 + yym3579 := z.DecBinary() + _ = yym3579 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3531 := r.ContainerType() - if yyct3531 == codecSelferValueTypeMap1234 { - yyl3531 := r.ReadMapStart() - if yyl3531 == 0 { + yyct3580 := r.ContainerType() + if yyct3580 == codecSelferValueTypeMap1234 { + yyl3580 := r.ReadMapStart() + if yyl3580 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3531, d) + x.codecDecodeSelfFromMap(yyl3580, d) } - } else if yyct3531 == codecSelferValueTypeArray1234 { - yyl3531 := r.ReadArrayStart() - if yyl3531 == 0 { + } else if yyct3580 == codecSelferValueTypeArray1234 { + yyl3580 := r.ReadArrayStart() + if yyl3580 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3531, d) + x.codecDecodeSelfFromArray(yyl3580, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44797,12 +45334,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3532Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3532Slc - var yyhl3532 bool = l >= 0 - for yyj3532 := 0; ; yyj3532++ { - if yyhl3532 { - if yyj3532 >= l { + var yys3581Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3581Slc + var yyhl3581 bool = l >= 0 + for yyj3581 := 0; ; yyj3581++ { + if yyhl3581 { + if yyj3581 >= l { break } } else { @@ -44811,10 +45348,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3532Slc = r.DecodeBytes(yys3532Slc, true, true) - yys3532 := string(yys3532Slc) + yys3581Slc = r.DecodeBytes(yys3581Slc, true, true) + yys3581 := string(yys3581Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3532 { + switch yys3581 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44831,26 +45368,26 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv3535 := &x.LabelSelector - yym3536 := z.DecBinary() - _ = yym3536 + yyv3584 := &x.LabelSelector + yym3585 := z.DecBinary() + _ = yym3585 if false { - } else if z.HasExtensions() && z.DecExt(yyv3535) { + } else if z.HasExtensions() && z.DecExt(yyv3584) { } else { - z.DecFallback(yyv3535, true) + z.DecFallback(yyv3584, true) } } case "FieldSelector": if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv3537 := &x.FieldSelector - yym3538 := z.DecBinary() - _ = yym3538 + yyv3586 := &x.FieldSelector + yym3587 := z.DecBinary() + _ = yym3587 if false { - } else if z.HasExtensions() && z.DecExt(yyv3537) { + } else if z.HasExtensions() && z.DecExt(yyv3586) { } else { - z.DecFallback(yyv3537, true) + z.DecFallback(yyv3586, true) } } case "Watch": @@ -44874,17 +45411,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3542 := z.DecBinary() - _ = yym3542 + yym3591 := z.DecBinary() + _ = yym3591 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3532) - } // end switch yys3532 - } // end for yyj3532 + z.DecStructFieldNotFound(-1, yys3581) + } // end switch yys3581 + } // end for yyj3581 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44892,16 +45429,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3543 int - var yyb3543 bool - var yyhl3543 bool = l >= 0 - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + var yyj3592 int + var yyb3592 bool + var yyhl3592 bool = l >= 0 + yyj3592++ + if yyhl3592 { + yyb3592 = yyj3592 > l } else { - yyb3543 = r.CheckBreak() + yyb3592 = r.CheckBreak() } - if yyb3543 { + if yyb3592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44911,13 +45448,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + yyj3592++ + if yyhl3592 { + yyb3592 = yyj3592 > l } else { - yyb3543 = r.CheckBreak() + yyb3592 = r.CheckBreak() } - if yyb3543 { + if yyb3592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44927,13 +45464,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + yyj3592++ + if yyhl3592 { + yyb3592 = yyj3592 > l } else { - yyb3543 = r.CheckBreak() + yyb3592 = r.CheckBreak() } - if yyb3543 { + if yyb3592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44941,22 +45478,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv3546 := &x.LabelSelector - yym3547 := z.DecBinary() - _ = yym3547 + yyv3595 := &x.LabelSelector + yym3596 := z.DecBinary() + _ = yym3596 if false { - } else if z.HasExtensions() && z.DecExt(yyv3546) { + } else if z.HasExtensions() && z.DecExt(yyv3595) { } else { - z.DecFallback(yyv3546, true) + z.DecFallback(yyv3595, true) } } - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + yyj3592++ + if yyhl3592 { + yyb3592 = yyj3592 > l } else { - yyb3543 = r.CheckBreak() + yyb3592 = r.CheckBreak() } - if yyb3543 { + if yyb3592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44964,22 +45501,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv3548 := &x.FieldSelector - yym3549 := z.DecBinary() - _ = yym3549 + yyv3597 := &x.FieldSelector + yym3598 := z.DecBinary() + _ = yym3598 if false { - } else if z.HasExtensions() && z.DecExt(yyv3548) { + } else if z.HasExtensions() && z.DecExt(yyv3597) { } else { - z.DecFallback(yyv3548, true) + z.DecFallback(yyv3597, true) } } - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + yyj3592++ + if yyhl3592 { + yyb3592 = yyj3592 > l } else { - yyb3543 = r.CheckBreak() + yyb3592 = r.CheckBreak() } - if yyb3543 { + if yyb3592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44989,13 +45526,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + yyj3592++ + if yyhl3592 { + yyb3592 = yyj3592 > l } else { - yyb3543 = r.CheckBreak() + yyb3592 = r.CheckBreak() } - if yyb3543 { + if yyb3592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45005,13 +45542,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + yyj3592++ + if yyhl3592 { + yyb3592 = yyj3592 > l } else { - yyb3543 = r.CheckBreak() + yyb3592 = r.CheckBreak() } - if yyb3543 { + if yyb3592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45024,25 +45561,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3553 := z.DecBinary() - _ = yym3553 + yym3602 := z.DecBinary() + _ = yym3602 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3543++ - if yyhl3543 { - yyb3543 = yyj3543 > l + yyj3592++ + if yyhl3592 { + yyb3592 = yyj3592 > l } else { - yyb3543 = r.CheckBreak() + yyb3592 = r.CheckBreak() } - if yyb3543 { + if yyb3592 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3543-1, "") + z.DecStructFieldNotFound(yyj3592-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45054,36 +45591,36 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3554 := z.EncBinary() - _ = yym3554 + yym3603 := z.EncBinary() + _ = yym3603 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3555 := !z.EncBinary() - yy2arr3555 := z.EncBasicHandle().StructToArray - var yyq3555 [10]bool - _, _, _ = yysep3555, yyq3555, yy2arr3555 - const yyr3555 bool = false - yyq3555[0] = x.Kind != "" - yyq3555[1] = x.APIVersion != "" - var yynn3555 int - if yyr3555 || yy2arr3555 { + yysep3604 := !z.EncBinary() + yy2arr3604 := z.EncBasicHandle().StructToArray + var yyq3604 [10]bool + _, _, _ = yysep3604, yyq3604, yy2arr3604 + const yyr3604 bool = false + yyq3604[0] = x.Kind != "" + yyq3604[1] = x.APIVersion != "" + var yynn3604 int + if yyr3604 || yy2arr3604 { r.EncodeArrayStart(10) } else { - yynn3555 = 8 - for _, b := range yyq3555 { + yynn3604 = 8 + for _, b := range yyq3604 { if b { - yynn3555++ + yynn3604++ } } - r.EncodeMapStart(yynn3555) - yynn3555 = 0 + r.EncodeMapStart(yynn3604) + yynn3604 = 0 } - if yyr3555 || yy2arr3555 { + if yyr3604 || yy2arr3604 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3555[0] { - yym3557 := z.EncBinary() - _ = yym3557 + if yyq3604[0] { + yym3606 := z.EncBinary() + _ = yym3606 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45092,23 +45629,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3555[0] { + if yyq3604[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3558 := z.EncBinary() - _ = yym3558 + yym3607 := z.EncBinary() + _ = yym3607 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3555 || yy2arr3555 { + if yyr3604 || yy2arr3604 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3555[1] { - yym3560 := z.EncBinary() - _ = yym3560 + if yyq3604[1] { + yym3609 := z.EncBinary() + _ = yym3609 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45117,22 +45654,22 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3555[1] { + if yyq3604[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3561 := z.EncBinary() - _ = yym3561 + yym3610 := z.EncBinary() + _ = yym3610 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3555 || yy2arr3555 { + if yyr3604 || yy2arr3604 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3563 := z.EncBinary() - _ = yym3563 + yym3612 := z.EncBinary() + _ = yym3612 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -45141,17 +45678,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3564 := z.EncBinary() - _ = yym3564 + yym3613 := z.EncBinary() + _ = yym3613 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr3555 || yy2arr3555 { + if yyr3604 || yy2arr3604 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3566 := z.EncBinary() - _ = yym3566 + yym3615 := z.EncBinary() + _ = yym3615 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -45160,17 +45697,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3567 := z.EncBinary() - _ = yym3567 + yym3616 := z.EncBinary() + _ = yym3616 if false { } else { r.EncodeBool(bool(x.Follow)) } } - if yyr3555 || yy2arr3555 { + if yyr3604 || yy2arr3604 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3569 := z.EncBinary() - _ = yym3569 + yym3618 := z.EncBinary() + _ = yym3618 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -45179,24 +45716,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3570 := z.EncBinary() - _ = yym3570 + yym3619 := z.EncBinary() + _ = yym3619 if false { } else { r.EncodeBool(bool(x.Previous)) } } - if yyr3555 || yy2arr3555 { + if yyr3604 || yy2arr3604 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3572 := *x.SinceSeconds - yym3573 := z.EncBinary() - _ = yym3573 + yy3621 := *x.SinceSeconds + yym3622 := z.EncBinary() + _ = yym3622 if false { } else { - r.EncodeInt(int64(yy3572)) + r.EncodeInt(int64(yy3621)) } } } else { @@ -45206,27 +45743,27 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3574 := *x.SinceSeconds - yym3575 := z.EncBinary() - _ = yym3575 + yy3623 := *x.SinceSeconds + yym3624 := z.EncBinary() + _ = yym3624 if false { } else { - r.EncodeInt(int64(yy3574)) + r.EncodeInt(int64(yy3623)) } } } - if yyr3555 || yy2arr3555 { + if yyr3604 || yy2arr3604 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3577 := z.EncBinary() - _ = yym3577 + yym3626 := z.EncBinary() + _ = yym3626 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3577 { + } else if yym3626 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3577 && z.IsJSONHandle() { + } else if !yym3626 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -45239,23 +45776,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceTime == nil { r.EncodeNil() } else { - yym3578 := z.EncBinary() - _ = yym3578 + yym3627 := z.EncBinary() + _ = yym3627 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3578 { + } else if yym3627 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3578 && z.IsJSONHandle() { + } else if !yym3627 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) } } } - if yyr3555 || yy2arr3555 { + if yyr3604 || yy2arr3604 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3580 := z.EncBinary() - _ = yym3580 + yym3629 := z.EncBinary() + _ = yym3629 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -45264,24 +45801,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3581 := z.EncBinary() - _ = yym3581 + yym3630 := z.EncBinary() + _ = yym3630 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } - if yyr3555 || yy2arr3555 { + if yyr3604 || yy2arr3604 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3583 := *x.TailLines - yym3584 := z.EncBinary() - _ = yym3584 + yy3632 := *x.TailLines + yym3633 := z.EncBinary() + _ = yym3633 if false { } else { - r.EncodeInt(int64(yy3583)) + r.EncodeInt(int64(yy3632)) } } } else { @@ -45291,26 +45828,26 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TailLines == nil { r.EncodeNil() } else { - yy3585 := *x.TailLines - yym3586 := z.EncBinary() - _ = yym3586 + yy3634 := *x.TailLines + yym3635 := z.EncBinary() + _ = yym3635 if false { } else { - r.EncodeInt(int64(yy3585)) + r.EncodeInt(int64(yy3634)) } } } - if yyr3555 || yy2arr3555 { + if yyr3604 || yy2arr3604 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3588 := *x.LimitBytes - yym3589 := z.EncBinary() - _ = yym3589 + yy3637 := *x.LimitBytes + yym3638 := z.EncBinary() + _ = yym3638 if false { } else { - r.EncodeInt(int64(yy3588)) + r.EncodeInt(int64(yy3637)) } } } else { @@ -45320,16 +45857,16 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LimitBytes == nil { r.EncodeNil() } else { - yy3590 := *x.LimitBytes - yym3591 := z.EncBinary() - _ = yym3591 + yy3639 := *x.LimitBytes + yym3640 := z.EncBinary() + _ = yym3640 if false { } else { - r.EncodeInt(int64(yy3590)) + r.EncodeInt(int64(yy3639)) } } } - if yyr3555 || yy2arr3555 { + if yyr3604 || yy2arr3604 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45342,25 +45879,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3592 := z.DecBinary() - _ = yym3592 + yym3641 := z.DecBinary() + _ = yym3641 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3593 := r.ContainerType() - if yyct3593 == codecSelferValueTypeMap1234 { - yyl3593 := r.ReadMapStart() - if yyl3593 == 0 { + yyct3642 := r.ContainerType() + if yyct3642 == codecSelferValueTypeMap1234 { + yyl3642 := r.ReadMapStart() + if yyl3642 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3593, d) + x.codecDecodeSelfFromMap(yyl3642, d) } - } else if yyct3593 == codecSelferValueTypeArray1234 { - yyl3593 := r.ReadArrayStart() - if yyl3593 == 0 { + } else if yyct3642 == codecSelferValueTypeArray1234 { + yyl3642 := r.ReadArrayStart() + if yyl3642 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3593, d) + x.codecDecodeSelfFromArray(yyl3642, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45372,12 +45909,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3594Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3594Slc - var yyhl3594 bool = l >= 0 - for yyj3594 := 0; ; yyj3594++ { - if yyhl3594 { - if yyj3594 >= l { + var yys3643Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3643Slc + var yyhl3643 bool = l >= 0 + for yyj3643 := 0; ; yyj3643++ { + if yyhl3643 { + if yyj3643 >= l { break } } else { @@ -45386,10 +45923,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3594Slc = r.DecodeBytes(yys3594Slc, true, true) - yys3594 := string(yys3594Slc) + yys3643Slc = r.DecodeBytes(yys3643Slc, true, true) + yys3643 := string(yys3643Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3594 { + switch yys3643 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45429,8 +45966,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3601 := z.DecBinary() - _ = yym3601 + yym3650 := z.DecBinary() + _ = yym3650 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -45445,13 +45982,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3603 := z.DecBinary() - _ = yym3603 + yym3652 := z.DecBinary() + _ = yym3652 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3603 { + } else if yym3652 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3603 && z.IsJSONHandle() { + } else if !yym3652 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -45472,8 +46009,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3606 := z.DecBinary() - _ = yym3606 + yym3655 := z.DecBinary() + _ = yym3655 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -45488,17 +46025,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3608 := z.DecBinary() - _ = yym3608 + yym3657 := z.DecBinary() + _ = yym3657 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3594) - } // end switch yys3594 - } // end for yyj3594 + z.DecStructFieldNotFound(-1, yys3643) + } // end switch yys3643 + } // end for yyj3643 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45506,16 +46043,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3609 int - var yyb3609 bool - var yyhl3609 bool = l >= 0 - yyj3609++ - if yyhl3609 { - yyb3609 = yyj3609 > l + var yyj3658 int + var yyb3658 bool + var yyhl3658 bool = l >= 0 + yyj3658++ + if yyhl3658 { + yyb3658 = yyj3658 > l } else { - yyb3609 = r.CheckBreak() + yyb3658 = r.CheckBreak() } - if yyb3609 { + if yyb3658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45525,13 +46062,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3609++ - if yyhl3609 { - yyb3609 = yyj3609 > l + yyj3658++ + if yyhl3658 { + yyb3658 = yyj3658 > l } else { - yyb3609 = r.CheckBreak() + yyb3658 = r.CheckBreak() } - if yyb3609 { + if yyb3658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45541,13 +46078,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3609++ - if yyhl3609 { - yyb3609 = yyj3609 > l + yyj3658++ + if yyhl3658 { + yyb3658 = yyj3658 > l } else { - yyb3609 = r.CheckBreak() + yyb3658 = r.CheckBreak() } - if yyb3609 { + if yyb3658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45557,13 +46094,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3609++ - if yyhl3609 { - yyb3609 = yyj3609 > l + yyj3658++ + if yyhl3658 { + yyb3658 = yyj3658 > l } else { - yyb3609 = r.CheckBreak() + yyb3658 = r.CheckBreak() } - if yyb3609 { + if yyb3658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45573,13 +46110,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3609++ - if yyhl3609 { - yyb3609 = yyj3609 > l + yyj3658++ + if yyhl3658 { + yyb3658 = yyj3658 > l } else { - yyb3609 = r.CheckBreak() + yyb3658 = r.CheckBreak() } - if yyb3609 { + if yyb3658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45589,13 +46126,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3609++ - if yyhl3609 { - yyb3609 = yyj3609 > l + yyj3658++ + if yyhl3658 { + yyb3658 = yyj3658 > l } else { - yyb3609 = r.CheckBreak() + yyb3658 = r.CheckBreak() } - if yyb3609 { + if yyb3658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45608,20 +46145,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3616 := z.DecBinary() - _ = yym3616 + yym3665 := z.DecBinary() + _ = yym3665 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3609++ - if yyhl3609 { - yyb3609 = yyj3609 > l + yyj3658++ + if yyhl3658 { + yyb3658 = yyj3658 > l } else { - yyb3609 = r.CheckBreak() + yyb3658 = r.CheckBreak() } - if yyb3609 { + if yyb3658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45634,25 +46171,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3618 := z.DecBinary() - _ = yym3618 + yym3667 := z.DecBinary() + _ = yym3667 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3618 { + } else if yym3667 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3618 && z.IsJSONHandle() { + } else if !yym3667 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3609++ - if yyhl3609 { - yyb3609 = yyj3609 > l + yyj3658++ + if yyhl3658 { + yyb3658 = yyj3658 > l } else { - yyb3609 = r.CheckBreak() + yyb3658 = r.CheckBreak() } - if yyb3609 { + if yyb3658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45662,13 +46199,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3609++ - if yyhl3609 { - yyb3609 = yyj3609 > l + yyj3658++ + if yyhl3658 { + yyb3658 = yyj3658 > l } else { - yyb3609 = r.CheckBreak() + yyb3658 = r.CheckBreak() } - if yyb3609 { + if yyb3658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45681,20 +46218,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3621 := z.DecBinary() - _ = yym3621 + yym3670 := z.DecBinary() + _ = yym3670 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3609++ - if yyhl3609 { - yyb3609 = yyj3609 > l + yyj3658++ + if yyhl3658 { + yyb3658 = yyj3658 > l } else { - yyb3609 = r.CheckBreak() + yyb3658 = r.CheckBreak() } - if yyb3609 { + if yyb3658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45707,25 +46244,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3623 := z.DecBinary() - _ = yym3623 + yym3672 := z.DecBinary() + _ = yym3672 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3609++ - if yyhl3609 { - yyb3609 = yyj3609 > l + yyj3658++ + if yyhl3658 { + yyb3658 = yyj3658 > l } else { - yyb3609 = r.CheckBreak() + yyb3658 = r.CheckBreak() } - if yyb3609 { + if yyb3658 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3609-1, "") + z.DecStructFieldNotFound(yyj3658-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45737,41 +46274,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3624 := z.EncBinary() - _ = yym3624 + yym3673 := z.EncBinary() + _ = yym3673 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3625 := !z.EncBinary() - yy2arr3625 := z.EncBasicHandle().StructToArray - var yyq3625 [7]bool - _, _, _ = yysep3625, yyq3625, yy2arr3625 - const yyr3625 bool = false - yyq3625[0] = x.Kind != "" - yyq3625[1] = x.APIVersion != "" - yyq3625[2] = x.Stdin != false - yyq3625[3] = x.Stdout != false - yyq3625[4] = x.Stderr != false - yyq3625[5] = x.TTY != false - yyq3625[6] = x.Container != "" - var yynn3625 int - if yyr3625 || yy2arr3625 { + yysep3674 := !z.EncBinary() + yy2arr3674 := z.EncBasicHandle().StructToArray + var yyq3674 [7]bool + _, _, _ = yysep3674, yyq3674, yy2arr3674 + const yyr3674 bool = false + yyq3674[0] = x.Kind != "" + yyq3674[1] = x.APIVersion != "" + yyq3674[2] = x.Stdin != false + yyq3674[3] = x.Stdout != false + yyq3674[4] = x.Stderr != false + yyq3674[5] = x.TTY != false + yyq3674[6] = x.Container != "" + var yynn3674 int + if yyr3674 || yy2arr3674 { r.EncodeArrayStart(7) } else { - yynn3625 = 0 - for _, b := range yyq3625 { + yynn3674 = 0 + for _, b := range yyq3674 { if b { - yynn3625++ + yynn3674++ } } - r.EncodeMapStart(yynn3625) - yynn3625 = 0 + r.EncodeMapStart(yynn3674) + yynn3674 = 0 } - if yyr3625 || yy2arr3625 { + if yyr3674 || yy2arr3674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[0] { - yym3627 := z.EncBinary() - _ = yym3627 + if yyq3674[0] { + yym3676 := z.EncBinary() + _ = yym3676 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45780,23 +46317,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[0] { + if yyq3674[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3628 := z.EncBinary() - _ = yym3628 + yym3677 := z.EncBinary() + _ = yym3677 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3625 || yy2arr3625 { + if yyr3674 || yy2arr3674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[1] { - yym3630 := z.EncBinary() - _ = yym3630 + if yyq3674[1] { + yym3679 := z.EncBinary() + _ = yym3679 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45805,23 +46342,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[1] { + if yyq3674[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3631 := z.EncBinary() - _ = yym3631 + yym3680 := z.EncBinary() + _ = yym3680 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3625 || yy2arr3625 { + if yyr3674 || yy2arr3674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[2] { - yym3633 := z.EncBinary() - _ = yym3633 + if yyq3674[2] { + yym3682 := z.EncBinary() + _ = yym3682 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -45830,23 +46367,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3625[2] { + if yyq3674[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3634 := z.EncBinary() - _ = yym3634 + yym3683 := z.EncBinary() + _ = yym3683 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3625 || yy2arr3625 { + if yyr3674 || yy2arr3674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[3] { - yym3636 := z.EncBinary() - _ = yym3636 + if yyq3674[3] { + yym3685 := z.EncBinary() + _ = yym3685 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -45855,23 +46392,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3625[3] { + if yyq3674[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3637 := z.EncBinary() - _ = yym3637 + yym3686 := z.EncBinary() + _ = yym3686 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3625 || yy2arr3625 { + if yyr3674 || yy2arr3674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[4] { - yym3639 := z.EncBinary() - _ = yym3639 + if yyq3674[4] { + yym3688 := z.EncBinary() + _ = yym3688 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -45880,23 +46417,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3625[4] { + if yyq3674[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3640 := z.EncBinary() - _ = yym3640 + yym3689 := z.EncBinary() + _ = yym3689 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3625 || yy2arr3625 { + if yyr3674 || yy2arr3674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[5] { - yym3642 := z.EncBinary() - _ = yym3642 + if yyq3674[5] { + yym3691 := z.EncBinary() + _ = yym3691 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -45905,23 +46442,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3625[5] { + if yyq3674[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3643 := z.EncBinary() - _ = yym3643 + yym3692 := z.EncBinary() + _ = yym3692 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3625 || yy2arr3625 { + if yyr3674 || yy2arr3674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3625[6] { - yym3645 := z.EncBinary() - _ = yym3645 + if yyq3674[6] { + yym3694 := z.EncBinary() + _ = yym3694 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -45930,19 +46467,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3625[6] { + if yyq3674[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3646 := z.EncBinary() - _ = yym3646 + yym3695 := z.EncBinary() + _ = yym3695 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3625 || yy2arr3625 { + if yyr3674 || yy2arr3674 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45955,25 +46492,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3647 := z.DecBinary() - _ = yym3647 + yym3696 := z.DecBinary() + _ = yym3696 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3648 := r.ContainerType() - if yyct3648 == codecSelferValueTypeMap1234 { - yyl3648 := r.ReadMapStart() - if yyl3648 == 0 { + yyct3697 := r.ContainerType() + if yyct3697 == codecSelferValueTypeMap1234 { + yyl3697 := r.ReadMapStart() + if yyl3697 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3648, d) + x.codecDecodeSelfFromMap(yyl3697, d) } - } else if yyct3648 == codecSelferValueTypeArray1234 { - yyl3648 := r.ReadArrayStart() - if yyl3648 == 0 { + } else if yyct3697 == codecSelferValueTypeArray1234 { + yyl3697 := r.ReadArrayStart() + if yyl3697 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3648, d) + x.codecDecodeSelfFromArray(yyl3697, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45985,12 +46522,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3649Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3649Slc - var yyhl3649 bool = l >= 0 - for yyj3649 := 0; ; yyj3649++ { - if yyhl3649 { - if yyj3649 >= l { + var yys3698Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3698Slc + var yyhl3698 bool = l >= 0 + for yyj3698 := 0; ; yyj3698++ { + if yyhl3698 { + if yyj3698 >= l { break } } else { @@ -45999,10 +46536,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3649Slc = r.DecodeBytes(yys3649Slc, true, true) - yys3649 := string(yys3649Slc) + yys3698Slc = r.DecodeBytes(yys3698Slc, true, true) + yys3698 := string(yys3698Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3649 { + switch yys3698 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46046,9 +46583,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3649) - } // end switch yys3649 - } // end for yyj3649 + z.DecStructFieldNotFound(-1, yys3698) + } // end switch yys3698 + } // end for yyj3698 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46056,16 +46593,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) 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 yyj3706 int + var yyb3706 bool + var yyhl3706 bool = l >= 0 + yyj3706++ + if yyhl3706 { + yyb3706 = yyj3706 > l } else { - yyb3657 = r.CheckBreak() + yyb3706 = r.CheckBreak() } - if yyb3657 { + if yyb3706 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46075,13 +46612,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3706++ + if yyhl3706 { + yyb3706 = yyj3706 > l } else { - yyb3657 = r.CheckBreak() + yyb3706 = r.CheckBreak() } - if yyb3657 { + if yyb3706 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46091,13 +46628,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3706++ + if yyhl3706 { + yyb3706 = yyj3706 > l } else { - yyb3657 = r.CheckBreak() + yyb3706 = r.CheckBreak() } - if yyb3657 { + if yyb3706 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46107,13 +46644,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3706++ + if yyhl3706 { + yyb3706 = yyj3706 > l } else { - yyb3657 = r.CheckBreak() + yyb3706 = r.CheckBreak() } - if yyb3657 { + if yyb3706 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46123,13 +46660,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3706++ + if yyhl3706 { + yyb3706 = yyj3706 > l } else { - yyb3657 = r.CheckBreak() + yyb3706 = r.CheckBreak() } - if yyb3657 { + if yyb3706 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46139,13 +46676,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3706++ + if yyhl3706 { + yyb3706 = yyj3706 > l } else { - yyb3657 = r.CheckBreak() + yyb3706 = r.CheckBreak() } - if yyb3657 { + if yyb3706 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46155,13 +46692,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3706++ + if yyhl3706 { + yyb3706 = yyj3706 > l } else { - yyb3657 = r.CheckBreak() + yyb3706 = r.CheckBreak() } - if yyb3657 { + if yyb3706 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46172,17 +46709,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3657++ - if yyhl3657 { - yyb3657 = yyj3657 > l + yyj3706++ + if yyhl3706 { + yyb3706 = yyj3706 > l } else { - yyb3657 = r.CheckBreak() + yyb3706 = r.CheckBreak() } - if yyb3657 { + if yyb3706 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3657-1, "") + z.DecStructFieldNotFound(yyj3706-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46194,36 +46731,36 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3665 := z.EncBinary() - _ = yym3665 + yym3714 := z.EncBinary() + _ = yym3714 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3666 := !z.EncBinary() - yy2arr3666 := z.EncBasicHandle().StructToArray - var yyq3666 [8]bool - _, _, _ = yysep3666, yyq3666, yy2arr3666 - const yyr3666 bool = false - yyq3666[0] = x.Kind != "" - yyq3666[1] = x.APIVersion != "" - var yynn3666 int - if yyr3666 || yy2arr3666 { + yysep3715 := !z.EncBinary() + yy2arr3715 := z.EncBasicHandle().StructToArray + var yyq3715 [8]bool + _, _, _ = yysep3715, yyq3715, yy2arr3715 + const yyr3715 bool = false + yyq3715[0] = x.Kind != "" + yyq3715[1] = x.APIVersion != "" + var yynn3715 int + if yyr3715 || yy2arr3715 { r.EncodeArrayStart(8) } else { - yynn3666 = 6 - for _, b := range yyq3666 { + yynn3715 = 6 + for _, b := range yyq3715 { if b { - yynn3666++ + yynn3715++ } } - r.EncodeMapStart(yynn3666) - yynn3666 = 0 + r.EncodeMapStart(yynn3715) + yynn3715 = 0 } - if yyr3666 || yy2arr3666 { + if yyr3715 || yy2arr3715 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3666[0] { - yym3668 := z.EncBinary() - _ = yym3668 + if yyq3715[0] { + yym3717 := z.EncBinary() + _ = yym3717 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46232,23 +46769,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3666[0] { + if yyq3715[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3669 := z.EncBinary() - _ = yym3669 + yym3718 := z.EncBinary() + _ = yym3718 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3666 || yy2arr3666 { + if yyr3715 || yy2arr3715 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3666[1] { - yym3671 := z.EncBinary() - _ = yym3671 + if yyq3715[1] { + yym3720 := z.EncBinary() + _ = yym3720 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46257,22 +46794,22 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3666[1] { + if yyq3715[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3672 := z.EncBinary() - _ = yym3672 + yym3721 := z.EncBinary() + _ = yym3721 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3666 || yy2arr3666 { + if yyr3715 || yy2arr3715 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3674 := z.EncBinary() - _ = yym3674 + yym3723 := z.EncBinary() + _ = yym3723 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -46281,17 +46818,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3675 := z.EncBinary() - _ = yym3675 + yym3724 := z.EncBinary() + _ = yym3724 if false { } else { r.EncodeBool(bool(x.Stdin)) } } - if yyr3666 || yy2arr3666 { + if yyr3715 || yy2arr3715 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3677 := z.EncBinary() - _ = yym3677 + yym3726 := z.EncBinary() + _ = yym3726 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -46300,17 +46837,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3678 := z.EncBinary() - _ = yym3678 + yym3727 := z.EncBinary() + _ = yym3727 if false { } else { r.EncodeBool(bool(x.Stdout)) } } - if yyr3666 || yy2arr3666 { + if yyr3715 || yy2arr3715 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3680 := z.EncBinary() - _ = yym3680 + yym3729 := z.EncBinary() + _ = yym3729 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -46319,17 +46856,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3681 := z.EncBinary() - _ = yym3681 + yym3730 := z.EncBinary() + _ = yym3730 if false { } else { r.EncodeBool(bool(x.Stderr)) } } - if yyr3666 || yy2arr3666 { + if yyr3715 || yy2arr3715 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3683 := z.EncBinary() - _ = yym3683 + yym3732 := z.EncBinary() + _ = yym3732 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -46338,17 +46875,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("TTY")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3684 := z.EncBinary() - _ = yym3684 + yym3733 := z.EncBinary() + _ = yym3733 if false { } else { r.EncodeBool(bool(x.TTY)) } } - if yyr3666 || yy2arr3666 { + if yyr3715 || yy2arr3715 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3686 := z.EncBinary() - _ = yym3686 + yym3735 := z.EncBinary() + _ = yym3735 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -46357,20 +46894,20 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3687 := z.EncBinary() - _ = yym3687 + yym3736 := z.EncBinary() + _ = yym3736 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr3666 || yy2arr3666 { + if yyr3715 || yy2arr3715 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3689 := z.EncBinary() - _ = yym3689 + yym3738 := z.EncBinary() + _ = yym3738 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -46383,15 +46920,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3690 := z.EncBinary() - _ = yym3690 + yym3739 := z.EncBinary() + _ = yym3739 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3666 || yy2arr3666 { + if yyr3715 || yy2arr3715 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46404,25 +46941,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3691 := z.DecBinary() - _ = yym3691 + yym3740 := z.DecBinary() + _ = yym3740 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3692 := r.ContainerType() - if yyct3692 == codecSelferValueTypeMap1234 { - yyl3692 := r.ReadMapStart() - if yyl3692 == 0 { + yyct3741 := r.ContainerType() + if yyct3741 == codecSelferValueTypeMap1234 { + yyl3741 := r.ReadMapStart() + if yyl3741 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3692, d) + x.codecDecodeSelfFromMap(yyl3741, d) } - } else if yyct3692 == codecSelferValueTypeArray1234 { - yyl3692 := r.ReadArrayStart() - if yyl3692 == 0 { + } else if yyct3741 == codecSelferValueTypeArray1234 { + yyl3741 := r.ReadArrayStart() + if yyl3741 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3692, d) + x.codecDecodeSelfFromArray(yyl3741, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46434,12 +46971,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3693Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3693Slc - var yyhl3693 bool = l >= 0 - for yyj3693 := 0; ; yyj3693++ { - if yyhl3693 { - if yyj3693 >= l { + var yys3742Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3742Slc + var yyhl3742 bool = l >= 0 + for yyj3742 := 0; ; yyj3742++ { + if yyhl3742 { + if yyj3742 >= l { break } } else { @@ -46448,10 +46985,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3693Slc = r.DecodeBytes(yys3693Slc, true, true) - yys3693 := string(yys3693Slc) + yys3742Slc = r.DecodeBytes(yys3742Slc, true, true) + yys3742 := string(yys3742Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3693 { + switch yys3742 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46498,18 +47035,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3701 := &x.Command - yym3702 := z.DecBinary() - _ = yym3702 + yyv3750 := &x.Command + yym3751 := z.DecBinary() + _ = yym3751 if false { } else { - z.F.DecSliceStringX(yyv3701, false, d) + z.F.DecSliceStringX(yyv3750, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3693) - } // end switch yys3693 - } // end for yyj3693 + z.DecStructFieldNotFound(-1, yys3742) + } // end switch yys3742 + } // end for yyj3742 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46517,16 +47054,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3703 int - var yyb3703 bool - var yyhl3703 bool = l >= 0 - yyj3703++ - if yyhl3703 { - yyb3703 = yyj3703 > l + var yyj3752 int + var yyb3752 bool + var yyhl3752 bool = l >= 0 + yyj3752++ + if yyhl3752 { + yyb3752 = yyj3752 > l } else { - yyb3703 = r.CheckBreak() + yyb3752 = r.CheckBreak() } - if yyb3703 { + if yyb3752 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46536,13 +47073,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3703++ - if yyhl3703 { - yyb3703 = yyj3703 > l + yyj3752++ + if yyhl3752 { + yyb3752 = yyj3752 > l } else { - yyb3703 = r.CheckBreak() + yyb3752 = r.CheckBreak() } - if yyb3703 { + if yyb3752 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46552,13 +47089,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3703++ - if yyhl3703 { - yyb3703 = yyj3703 > l + yyj3752++ + if yyhl3752 { + yyb3752 = yyj3752 > l } else { - yyb3703 = r.CheckBreak() + yyb3752 = r.CheckBreak() } - if yyb3703 { + if yyb3752 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46568,13 +47105,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3703++ - if yyhl3703 { - yyb3703 = yyj3703 > l + yyj3752++ + if yyhl3752 { + yyb3752 = yyj3752 > l } else { - yyb3703 = r.CheckBreak() + yyb3752 = r.CheckBreak() } - if yyb3703 { + if yyb3752 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46584,13 +47121,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3703++ - if yyhl3703 { - yyb3703 = yyj3703 > l + yyj3752++ + if yyhl3752 { + yyb3752 = yyj3752 > l } else { - yyb3703 = r.CheckBreak() + yyb3752 = r.CheckBreak() } - if yyb3703 { + if yyb3752 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46600,13 +47137,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3703++ - if yyhl3703 { - yyb3703 = yyj3703 > l + yyj3752++ + if yyhl3752 { + yyb3752 = yyj3752 > l } else { - yyb3703 = r.CheckBreak() + yyb3752 = r.CheckBreak() } - if yyb3703 { + if yyb3752 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46616,13 +47153,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3703++ - if yyhl3703 { - yyb3703 = yyj3703 > l + yyj3752++ + if yyhl3752 { + yyb3752 = yyj3752 > l } else { - yyb3703 = r.CheckBreak() + yyb3752 = r.CheckBreak() } - if yyb3703 { + if yyb3752 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46632,13 +47169,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3703++ - if yyhl3703 { - yyb3703 = yyj3703 > l + yyj3752++ + if yyhl3752 { + yyb3752 = yyj3752 > l } else { - yyb3703 = r.CheckBreak() + yyb3752 = r.CheckBreak() } - if yyb3703 { + if yyb3752 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46646,26 +47183,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3711 := &x.Command - yym3712 := z.DecBinary() - _ = yym3712 + yyv3760 := &x.Command + yym3761 := z.DecBinary() + _ = yym3761 if false { } else { - z.F.DecSliceStringX(yyv3711, false, d) + z.F.DecSliceStringX(yyv3760, false, d) } } for { - yyj3703++ - if yyhl3703 { - yyb3703 = yyj3703 > l + yyj3752++ + if yyhl3752 { + yyb3752 = yyj3752 > l } else { - yyb3703 = r.CheckBreak() + yyb3752 = r.CheckBreak() } - if yyb3703 { + if yyb3752 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3703-1, "") + z.DecStructFieldNotFound(yyj3752-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46677,36 +47214,36 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3713 := z.EncBinary() - _ = yym3713 + yym3762 := z.EncBinary() + _ = yym3762 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3714 := !z.EncBinary() - yy2arr3714 := z.EncBasicHandle().StructToArray - var yyq3714 [3]bool - _, _, _ = yysep3714, yyq3714, yy2arr3714 - const yyr3714 bool = false - yyq3714[0] = x.Kind != "" - yyq3714[1] = x.APIVersion != "" - var yynn3714 int - if yyr3714 || yy2arr3714 { + yysep3763 := !z.EncBinary() + yy2arr3763 := z.EncBasicHandle().StructToArray + var yyq3763 [3]bool + _, _, _ = yysep3763, yyq3763, yy2arr3763 + const yyr3763 bool = false + yyq3763[0] = x.Kind != "" + yyq3763[1] = x.APIVersion != "" + var yynn3763 int + if yyr3763 || yy2arr3763 { r.EncodeArrayStart(3) } else { - yynn3714 = 1 - for _, b := range yyq3714 { + yynn3763 = 1 + for _, b := range yyq3763 { if b { - yynn3714++ + yynn3763++ } } - r.EncodeMapStart(yynn3714) - yynn3714 = 0 + r.EncodeMapStart(yynn3763) + yynn3763 = 0 } - if yyr3714 || yy2arr3714 { + if yyr3763 || yy2arr3763 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[0] { - yym3716 := z.EncBinary() - _ = yym3716 + if yyq3763[0] { + yym3765 := z.EncBinary() + _ = yym3765 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46715,23 +47252,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3714[0] { + if yyq3763[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3717 := z.EncBinary() - _ = yym3717 + yym3766 := z.EncBinary() + _ = yym3766 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3714 || yy2arr3714 { + if yyr3763 || yy2arr3763 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3714[1] { - yym3719 := z.EncBinary() - _ = yym3719 + if yyq3763[1] { + yym3768 := z.EncBinary() + _ = yym3768 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46740,22 +47277,22 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3714[1] { + if yyq3763[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3720 := z.EncBinary() - _ = yym3720 + yym3769 := z.EncBinary() + _ = yym3769 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3714 || yy2arr3714 { + if yyr3763 || yy2arr3763 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3722 := z.EncBinary() - _ = yym3722 + yym3771 := z.EncBinary() + _ = yym3771 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -46764,14 +47301,14 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3723 := z.EncBinary() - _ = yym3723 + yym3772 := z.EncBinary() + _ = yym3772 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3714 || yy2arr3714 { + if yyr3763 || yy2arr3763 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46784,25 +47321,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3724 := z.DecBinary() - _ = yym3724 + yym3773 := z.DecBinary() + _ = yym3773 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3725 := r.ContainerType() - if yyct3725 == codecSelferValueTypeMap1234 { - yyl3725 := r.ReadMapStart() - if yyl3725 == 0 { + yyct3774 := r.ContainerType() + if yyct3774 == codecSelferValueTypeMap1234 { + yyl3774 := r.ReadMapStart() + if yyl3774 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3725, d) + x.codecDecodeSelfFromMap(yyl3774, d) } - } else if yyct3725 == codecSelferValueTypeArray1234 { - yyl3725 := r.ReadArrayStart() - if yyl3725 == 0 { + } else if yyct3774 == codecSelferValueTypeArray1234 { + yyl3774 := r.ReadArrayStart() + if yyl3774 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3725, d) + x.codecDecodeSelfFromArray(yyl3774, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46814,12 +47351,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3726Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3726Slc - var yyhl3726 bool = l >= 0 - for yyj3726 := 0; ; yyj3726++ { - if yyhl3726 { - if yyj3726 >= l { + var yys3775Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3775Slc + var yyhl3775 bool = l >= 0 + for yyj3775 := 0; ; yyj3775++ { + if yyhl3775 { + if yyj3775 >= l { break } } else { @@ -46828,10 +47365,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3726Slc = r.DecodeBytes(yys3726Slc, true, true) - yys3726 := string(yys3726Slc) + yys3775Slc = r.DecodeBytes(yys3775Slc, true, true) + yys3775 := string(yys3775Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3726 { + switch yys3775 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46851,9 +47388,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3726) - } // end switch yys3726 - } // end for yyj3726 + z.DecStructFieldNotFound(-1, yys3775) + } // end switch yys3775 + } // end for yyj3775 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46861,16 +47398,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3730 int - var yyb3730 bool - var yyhl3730 bool = l >= 0 - yyj3730++ - if yyhl3730 { - yyb3730 = yyj3730 > l + var yyj3779 int + var yyb3779 bool + var yyhl3779 bool = l >= 0 + yyj3779++ + if yyhl3779 { + yyb3779 = yyj3779 > l } else { - yyb3730 = r.CheckBreak() + yyb3779 = r.CheckBreak() } - if yyb3730 { + if yyb3779 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46880,13 +47417,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3730++ - if yyhl3730 { - yyb3730 = yyj3730 > l + yyj3779++ + if yyhl3779 { + yyb3779 = yyj3779 > l } else { - yyb3730 = r.CheckBreak() + yyb3779 = r.CheckBreak() } - if yyb3730 { + if yyb3779 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46896,13 +47433,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3730++ - if yyhl3730 { - yyb3730 = yyj3730 > l + yyj3779++ + if yyhl3779 { + yyb3779 = yyj3779 > l } else { - yyb3730 = r.CheckBreak() + yyb3779 = r.CheckBreak() } - if yyb3730 { + if yyb3779 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46913,17 +47450,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3730++ - if yyhl3730 { - yyb3730 = yyj3730 > l + yyj3779++ + if yyhl3779 { + yyb3779 = yyj3779 > l } else { - yyb3730 = r.CheckBreak() + yyb3779 = r.CheckBreak() } - if yyb3730 { + if yyb3779 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3730-1, "") + z.DecStructFieldNotFound(yyj3779-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46935,36 +47472,36 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3734 := z.EncBinary() - _ = yym3734 + yym3783 := z.EncBinary() + _ = yym3783 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3735 := !z.EncBinary() - yy2arr3735 := z.EncBasicHandle().StructToArray - var yyq3735 [3]bool - _, _, _ = yysep3735, yyq3735, yy2arr3735 - const yyr3735 bool = false - yyq3735[0] = x.Kind != "" - yyq3735[1] = x.APIVersion != "" - var yynn3735 int - if yyr3735 || yy2arr3735 { + yysep3784 := !z.EncBinary() + yy2arr3784 := z.EncBasicHandle().StructToArray + var yyq3784 [3]bool + _, _, _ = yysep3784, yyq3784, yy2arr3784 + const yyr3784 bool = false + yyq3784[0] = x.Kind != "" + yyq3784[1] = x.APIVersion != "" + var yynn3784 int + if yyr3784 || yy2arr3784 { r.EncodeArrayStart(3) } else { - yynn3735 = 1 - for _, b := range yyq3735 { + yynn3784 = 1 + for _, b := range yyq3784 { if b { - yynn3735++ + yynn3784++ } } - r.EncodeMapStart(yynn3735) - yynn3735 = 0 + r.EncodeMapStart(yynn3784) + yynn3784 = 0 } - if yyr3735 || yy2arr3735 { + if yyr3784 || yy2arr3784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3735[0] { - yym3737 := z.EncBinary() - _ = yym3737 + if yyq3784[0] { + yym3786 := z.EncBinary() + _ = yym3786 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46973,23 +47510,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3735[0] { + if yyq3784[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3738 := z.EncBinary() - _ = yym3738 + yym3787 := z.EncBinary() + _ = yym3787 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3735 || yy2arr3735 { + if yyr3784 || yy2arr3784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3735[1] { - yym3740 := z.EncBinary() - _ = yym3740 + if yyq3784[1] { + yym3789 := z.EncBinary() + _ = yym3789 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46998,22 +47535,22 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3735[1] { + if yyq3784[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3741 := z.EncBinary() - _ = yym3741 + yym3790 := z.EncBinary() + _ = yym3790 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3735 || yy2arr3735 { + if yyr3784 || yy2arr3784 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3743 := z.EncBinary() - _ = yym3743 + yym3792 := z.EncBinary() + _ = yym3792 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -47022,14 +47559,14 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3744 := z.EncBinary() - _ = yym3744 + yym3793 := z.EncBinary() + _ = yym3793 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3735 || yy2arr3735 { + if yyr3784 || yy2arr3784 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47042,25 +47579,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3745 := z.DecBinary() - _ = yym3745 + yym3794 := z.DecBinary() + _ = yym3794 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3746 := r.ContainerType() - if yyct3746 == codecSelferValueTypeMap1234 { - yyl3746 := r.ReadMapStart() - if yyl3746 == 0 { + yyct3795 := r.ContainerType() + if yyct3795 == codecSelferValueTypeMap1234 { + yyl3795 := r.ReadMapStart() + if yyl3795 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3746, d) + x.codecDecodeSelfFromMap(yyl3795, d) } - } else if yyct3746 == codecSelferValueTypeArray1234 { - yyl3746 := r.ReadArrayStart() - if yyl3746 == 0 { + } else if yyct3795 == codecSelferValueTypeArray1234 { + yyl3795 := r.ReadArrayStart() + if yyl3795 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3746, d) + x.codecDecodeSelfFromArray(yyl3795, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47072,12 +47609,12 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3747Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3747Slc - var yyhl3747 bool = l >= 0 - for yyj3747 := 0; ; yyj3747++ { - if yyhl3747 { - if yyj3747 >= 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 { @@ -47086,10 +47623,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3747Slc = r.DecodeBytes(yys3747Slc, true, true) - yys3747 := string(yys3747Slc) + yys3796Slc = r.DecodeBytes(yys3796Slc, true, true) + yys3796 := string(yys3796Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3747 { + switch yys3796 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47109,9 +47646,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3747) - } // end switch yys3747 - } // end for yyj3747 + z.DecStructFieldNotFound(-1, yys3796) + } // end switch yys3796 + } // end for yyj3796 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47119,16 +47656,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3751 int - var yyb3751 bool - var yyhl3751 bool = l >= 0 - yyj3751++ - if yyhl3751 { - yyb3751 = yyj3751 > l + var yyj3800 int + var yyb3800 bool + var yyhl3800 bool = l >= 0 + yyj3800++ + if yyhl3800 { + yyb3800 = yyj3800 > l } else { - yyb3751 = r.CheckBreak() + yyb3800 = r.CheckBreak() } - if yyb3751 { + if yyb3800 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47138,13 +47675,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3751++ - if yyhl3751 { - yyb3751 = yyj3751 > l + yyj3800++ + if yyhl3800 { + yyb3800 = yyj3800 > l } else { - yyb3751 = r.CheckBreak() + yyb3800 = r.CheckBreak() } - if yyb3751 { + if yyb3800 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47154,13 +47691,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3751++ - if yyhl3751 { - yyb3751 = yyj3751 > l + yyj3800++ + if yyhl3800 { + yyb3800 = yyj3800 > l } else { - yyb3751 = r.CheckBreak() + yyb3800 = r.CheckBreak() } - if yyb3751 { + if yyb3800 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47171,17 +47708,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3751++ - if yyhl3751 { - yyb3751 = yyj3751 > l + yyj3800++ + if yyhl3800 { + yyb3800 = yyj3800 > l } else { - yyb3751 = r.CheckBreak() + yyb3800 = r.CheckBreak() } - if yyb3751 { + if yyb3800 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3751-1, "") + z.DecStructFieldNotFound(yyj3800-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47193,36 +47730,36 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3755 := z.EncBinary() - _ = yym3755 + yym3804 := z.EncBinary() + _ = yym3804 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3756 := !z.EncBinary() - yy2arr3756 := z.EncBasicHandle().StructToArray - var yyq3756 [3]bool - _, _, _ = yysep3756, yyq3756, yy2arr3756 - const yyr3756 bool = false - yyq3756[0] = x.Kind != "" - yyq3756[1] = x.APIVersion != "" - var yynn3756 int - if yyr3756 || yy2arr3756 { + yysep3805 := !z.EncBinary() + yy2arr3805 := z.EncBasicHandle().StructToArray + var yyq3805 [3]bool + _, _, _ = yysep3805, yyq3805, yy2arr3805 + const yyr3805 bool = false + yyq3805[0] = x.Kind != "" + yyq3805[1] = x.APIVersion != "" + var yynn3805 int + if yyr3805 || yy2arr3805 { r.EncodeArrayStart(3) } else { - yynn3756 = 1 - for _, b := range yyq3756 { + yynn3805 = 1 + for _, b := range yyq3805 { if b { - yynn3756++ + yynn3805++ } } - r.EncodeMapStart(yynn3756) - yynn3756 = 0 + r.EncodeMapStart(yynn3805) + yynn3805 = 0 } - if yyr3756 || yy2arr3756 { + if yyr3805 || yy2arr3805 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3756[0] { - yym3758 := z.EncBinary() - _ = yym3758 + if yyq3805[0] { + yym3807 := z.EncBinary() + _ = yym3807 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47231,23 +47768,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3756[0] { + if yyq3805[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3759 := z.EncBinary() - _ = yym3759 + yym3808 := z.EncBinary() + _ = yym3808 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3756 || yy2arr3756 { + if yyr3805 || yy2arr3805 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3756[1] { - yym3761 := z.EncBinary() - _ = yym3761 + if yyq3805[1] { + yym3810 := z.EncBinary() + _ = yym3810 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47256,22 +47793,22 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3756[1] { + if yyq3805[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3762 := z.EncBinary() - _ = yym3762 + yym3811 := z.EncBinary() + _ = yym3811 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3756 || yy2arr3756 { + if yyr3805 || yy2arr3805 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3764 := z.EncBinary() - _ = yym3764 + yym3813 := z.EncBinary() + _ = yym3813 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -47280,14 +47817,14 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3765 := z.EncBinary() - _ = yym3765 + yym3814 := z.EncBinary() + _ = yym3814 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3756 || yy2arr3756 { + if yyr3805 || yy2arr3805 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47300,25 +47837,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3766 := z.DecBinary() - _ = yym3766 + yym3815 := z.DecBinary() + _ = yym3815 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3767 := r.ContainerType() - if yyct3767 == codecSelferValueTypeMap1234 { - yyl3767 := r.ReadMapStart() - if yyl3767 == 0 { + yyct3816 := r.ContainerType() + if yyct3816 == codecSelferValueTypeMap1234 { + yyl3816 := r.ReadMapStart() + if yyl3816 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3767, d) + x.codecDecodeSelfFromMap(yyl3816, d) } - } else if yyct3767 == codecSelferValueTypeArray1234 { - yyl3767 := r.ReadArrayStart() - if yyl3767 == 0 { + } else if yyct3816 == codecSelferValueTypeArray1234 { + yyl3816 := r.ReadArrayStart() + if yyl3816 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3767, d) + x.codecDecodeSelfFromArray(yyl3816, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47330,12 +47867,12 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3768Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3768Slc - var yyhl3768 bool = l >= 0 - for yyj3768 := 0; ; yyj3768++ { - if yyhl3768 { - if yyj3768 >= l { + var yys3817Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3817Slc + var yyhl3817 bool = l >= 0 + for yyj3817 := 0; ; yyj3817++ { + if yyhl3817 { + if yyj3817 >= l { break } } else { @@ -47344,10 +47881,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3768Slc = r.DecodeBytes(yys3768Slc, true, true) - yys3768 := string(yys3768Slc) + yys3817Slc = r.DecodeBytes(yys3817Slc, true, true) + yys3817 := string(yys3817Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3768 { + switch yys3817 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47367,9 +47904,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3768) - } // end switch yys3768 - } // end for yyj3768 + z.DecStructFieldNotFound(-1, yys3817) + } // end switch yys3817 + } // end for yyj3817 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47377,16 +47914,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3772 int - var yyb3772 bool - var yyhl3772 bool = l >= 0 - yyj3772++ - if yyhl3772 { - yyb3772 = yyj3772 > l + var yyj3821 int + var yyb3821 bool + var yyhl3821 bool = l >= 0 + yyj3821++ + if yyhl3821 { + yyb3821 = yyj3821 > l } else { - yyb3772 = r.CheckBreak() + yyb3821 = r.CheckBreak() } - if yyb3772 { + if yyb3821 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47396,13 +47933,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3772++ - if yyhl3772 { - yyb3772 = yyj3772 > l + yyj3821++ + if yyhl3821 { + yyb3821 = yyj3821 > l } else { - yyb3772 = r.CheckBreak() + yyb3821 = r.CheckBreak() } - if yyb3772 { + if yyb3821 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47412,13 +47949,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3772++ - if yyhl3772 { - yyb3772 = yyj3772 > l + yyj3821++ + if yyhl3821 { + yyb3821 = yyj3821 > l } else { - yyb3772 = r.CheckBreak() + yyb3821 = r.CheckBreak() } - if yyb3772 { + if yyb3821 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47429,17 +47966,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3772++ - if yyhl3772 { - yyb3772 = yyj3772 > l + yyj3821++ + if yyhl3821 { + yyb3821 = yyj3821 > l } else { - yyb3772 = r.CheckBreak() + yyb3821 = r.CheckBreak() } - if yyb3772 { + if yyb3821 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3772-1, "") + z.DecStructFieldNotFound(yyj3821-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47451,34 +47988,34 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3776 := z.EncBinary() - _ = yym3776 + yym3825 := z.EncBinary() + _ = yym3825 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3777 := !z.EncBinary() - yy2arr3777 := z.EncBasicHandle().StructToArray - var yyq3777 [5]bool - _, _, _ = yysep3777, yyq3777, yy2arr3777 - const yyr3777 bool = false - yyq3777[4] = x.Controller != nil - var yynn3777 int - if yyr3777 || yy2arr3777 { + yysep3826 := !z.EncBinary() + yy2arr3826 := z.EncBasicHandle().StructToArray + var yyq3826 [5]bool + _, _, _ = yysep3826, yyq3826, yy2arr3826 + const yyr3826 bool = false + yyq3826[4] = x.Controller != nil + var yynn3826 int + if yyr3826 || yy2arr3826 { r.EncodeArrayStart(5) } else { - yynn3777 = 4 - for _, b := range yyq3777 { + yynn3826 = 4 + for _, b := range yyq3826 { if b { - yynn3777++ + yynn3826++ } } - r.EncodeMapStart(yynn3777) - yynn3777 = 0 + r.EncodeMapStart(yynn3826) + yynn3826 = 0 } - if yyr3777 || yy2arr3777 { + if yyr3826 || yy2arr3826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3779 := z.EncBinary() - _ = yym3779 + yym3828 := z.EncBinary() + _ = yym3828 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47487,17 +48024,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3780 := z.EncBinary() - _ = yym3780 + yym3829 := z.EncBinary() + _ = yym3829 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr3777 || yy2arr3777 { + if yyr3826 || yy2arr3826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3782 := z.EncBinary() - _ = yym3782 + yym3831 := z.EncBinary() + _ = yym3831 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47506,17 +48043,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3783 := z.EncBinary() - _ = yym3783 + yym3832 := z.EncBinary() + _ = yym3832 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } - if yyr3777 || yy2arr3777 { + if yyr3826 || yy2arr3826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3785 := z.EncBinary() - _ = yym3785 + yym3834 := z.EncBinary() + _ = yym3834 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -47525,17 +48062,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3786 := z.EncBinary() - _ = yym3786 + yym3835 := z.EncBinary() + _ = yym3835 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3777 || yy2arr3777 { + if yyr3826 || yy2arr3826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3788 := z.EncBinary() - _ = yym3788 + yym3837 := z.EncBinary() + _ = yym3837 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -47545,50 +48082,50 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3789 := z.EncBinary() - _ = yym3789 + yym3838 := z.EncBinary() + _ = yym3838 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.UID)) } } - if yyr3777 || yy2arr3777 { + if yyr3826 || yy2arr3826 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3777[4] { + if yyq3826[4] { if x.Controller == nil { r.EncodeNil() } else { - yy3791 := *x.Controller - yym3792 := z.EncBinary() - _ = yym3792 + yy3840 := *x.Controller + yym3841 := z.EncBinary() + _ = yym3841 if false { } else { - r.EncodeBool(bool(yy3791)) + r.EncodeBool(bool(yy3840)) } } } else { r.EncodeNil() } } else { - if yyq3777[4] { + if yyq3826[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controller")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Controller == nil { r.EncodeNil() } else { - yy3793 := *x.Controller - yym3794 := z.EncBinary() - _ = yym3794 + yy3842 := *x.Controller + yym3843 := z.EncBinary() + _ = yym3843 if false { } else { - r.EncodeBool(bool(yy3793)) + r.EncodeBool(bool(yy3842)) } } } } - if yyr3777 || yy2arr3777 { + if yyr3826 || yy2arr3826 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47601,25 +48138,25 @@ func (x *OwnerReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3795 := z.DecBinary() - _ = yym3795 + yym3844 := z.DecBinary() + _ = yym3844 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3796 := r.ContainerType() - if yyct3796 == codecSelferValueTypeMap1234 { - yyl3796 := r.ReadMapStart() - if yyl3796 == 0 { + yyct3845 := r.ContainerType() + if yyct3845 == codecSelferValueTypeMap1234 { + yyl3845 := r.ReadMapStart() + if yyl3845 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3796, d) + x.codecDecodeSelfFromMap(yyl3845, d) } - } else if yyct3796 == codecSelferValueTypeArray1234 { - yyl3796 := r.ReadArrayStart() - if yyl3796 == 0 { + } else if yyct3845 == codecSelferValueTypeArray1234 { + yyl3845 := r.ReadArrayStart() + if yyl3845 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3796, d) + x.codecDecodeSelfFromArray(yyl3845, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47631,12 +48168,12 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3797Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3797Slc - var yyhl3797 bool = l >= 0 - for yyj3797 := 0; ; yyj3797++ { - if yyhl3797 { - if yyj3797 >= l { + var yys3846Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3846Slc + var yyhl3846 bool = l >= 0 + for yyj3846 := 0; ; yyj3846++ { + if yyhl3846 { + if yyj3846 >= l { break } } else { @@ -47645,10 +48182,10 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3797Slc = r.DecodeBytes(yys3797Slc, true, true) - yys3797 := string(yys3797Slc) + yys3846Slc = r.DecodeBytes(yys3846Slc, true, true) + yys3846 := string(yys3846Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3797 { + switch yys3846 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -47682,17 +48219,17 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3803 := z.DecBinary() - _ = yym3803 + yym3852 := z.DecBinary() + _ = yym3852 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3797) - } // end switch yys3797 - } // end for yyj3797 + z.DecStructFieldNotFound(-1, yys3846) + } // end switch yys3846 + } // end for yyj3846 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47700,16 +48237,16 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3804 int - var yyb3804 bool - var yyhl3804 bool = l >= 0 - yyj3804++ - if yyhl3804 { - yyb3804 = yyj3804 > l + var yyj3853 int + var yyb3853 bool + var yyhl3853 bool = l >= 0 + yyj3853++ + if yyhl3853 { + yyb3853 = yyj3853 > l } else { - yyb3804 = r.CheckBreak() + yyb3853 = r.CheckBreak() } - if yyb3804 { + if yyb3853 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47719,13 +48256,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3804++ - if yyhl3804 { - yyb3804 = yyj3804 > l + yyj3853++ + if yyhl3853 { + yyb3853 = yyj3853 > l } else { - yyb3804 = r.CheckBreak() + yyb3853 = r.CheckBreak() } - if yyb3804 { + if yyb3853 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47735,13 +48272,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3804++ - if yyhl3804 { - yyb3804 = yyj3804 > l + yyj3853++ + if yyhl3853 { + yyb3853 = yyj3853 > l } else { - yyb3804 = r.CheckBreak() + yyb3853 = r.CheckBreak() } - if yyb3804 { + if yyb3853 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47751,13 +48288,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj3804++ - if yyhl3804 { - yyb3804 = yyj3804 > l + yyj3853++ + if yyhl3853 { + yyb3853 = yyj3853 > l } else { - yyb3804 = r.CheckBreak() + yyb3853 = r.CheckBreak() } - if yyb3804 { + if yyb3853 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47767,13 +48304,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3804++ - if yyhl3804 { - yyb3804 = yyj3804 > l + yyj3853++ + if yyhl3853 { + yyb3853 = yyj3853 > l } else { - yyb3804 = r.CheckBreak() + yyb3853 = r.CheckBreak() } - if yyb3804 { + if yyb3853 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47786,25 +48323,25 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3810 := z.DecBinary() - _ = yym3810 + yym3859 := z.DecBinary() + _ = yym3859 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } for { - yyj3804++ - if yyhl3804 { - yyb3804 = yyj3804 > l + yyj3853++ + if yyhl3853 { + yyb3853 = yyj3853 > l } else { - yyb3804 = r.CheckBreak() + yyb3853 = r.CheckBreak() } - if yyb3804 { + if yyb3853 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3804-1, "") + z.DecStructFieldNotFound(yyj3853-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47816,41 +48353,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3811 := z.EncBinary() - _ = yym3811 + yym3860 := z.EncBinary() + _ = yym3860 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3812 := !z.EncBinary() - yy2arr3812 := z.EncBasicHandle().StructToArray - var yyq3812 [7]bool - _, _, _ = yysep3812, yyq3812, yy2arr3812 - const yyr3812 bool = false - yyq3812[0] = x.Kind != "" - yyq3812[1] = x.Namespace != "" - yyq3812[2] = x.Name != "" - yyq3812[3] = x.UID != "" - yyq3812[4] = x.APIVersion != "" - yyq3812[5] = x.ResourceVersion != "" - yyq3812[6] = x.FieldPath != "" - var yynn3812 int - if yyr3812 || yy2arr3812 { + yysep3861 := !z.EncBinary() + yy2arr3861 := z.EncBasicHandle().StructToArray + var yyq3861 [7]bool + _, _, _ = yysep3861, yyq3861, yy2arr3861 + const yyr3861 bool = false + yyq3861[0] = x.Kind != "" + yyq3861[1] = x.Namespace != "" + yyq3861[2] = x.Name != "" + yyq3861[3] = x.UID != "" + yyq3861[4] = x.APIVersion != "" + yyq3861[5] = x.ResourceVersion != "" + yyq3861[6] = x.FieldPath != "" + var yynn3861 int + if yyr3861 || yy2arr3861 { r.EncodeArrayStart(7) } else { - yynn3812 = 0 - for _, b := range yyq3812 { + yynn3861 = 0 + for _, b := range yyq3861 { if b { - yynn3812++ + yynn3861++ } } - r.EncodeMapStart(yynn3812) - yynn3812 = 0 + r.EncodeMapStart(yynn3861) + yynn3861 = 0 } - if yyr3812 || yy2arr3812 { + if yyr3861 || yy2arr3861 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3812[0] { - yym3814 := z.EncBinary() - _ = yym3814 + if yyq3861[0] { + yym3863 := z.EncBinary() + _ = yym3863 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47859,23 +48396,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3812[0] { + if yyq3861[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3815 := z.EncBinary() - _ = yym3815 + yym3864 := z.EncBinary() + _ = yym3864 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3812 || yy2arr3812 { + if yyr3861 || yy2arr3861 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3812[1] { - yym3817 := z.EncBinary() - _ = yym3817 + if yyq3861[1] { + yym3866 := z.EncBinary() + _ = yym3866 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -47884,23 +48421,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3812[1] { + if yyq3861[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3818 := z.EncBinary() - _ = yym3818 + yym3867 := z.EncBinary() + _ = yym3867 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3812 || yy2arr3812 { + if yyr3861 || yy2arr3861 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3812[2] { - yym3820 := z.EncBinary() - _ = yym3820 + if yyq3861[2] { + yym3869 := z.EncBinary() + _ = yym3869 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -47909,23 +48446,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3812[2] { + if yyq3861[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3821 := z.EncBinary() - _ = yym3821 + yym3870 := z.EncBinary() + _ = yym3870 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3812 || yy2arr3812 { + if yyr3861 || yy2arr3861 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3812[3] { - yym3823 := z.EncBinary() - _ = yym3823 + if yyq3861[3] { + yym3872 := z.EncBinary() + _ = yym3872 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -47935,12 +48472,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3812[3] { + if yyq3861[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3824 := z.EncBinary() - _ = yym3824 + yym3873 := z.EncBinary() + _ = yym3873 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -47948,11 +48485,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3812 || yy2arr3812 { + if yyr3861 || yy2arr3861 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3812[4] { - yym3826 := z.EncBinary() - _ = yym3826 + if yyq3861[4] { + yym3875 := z.EncBinary() + _ = yym3875 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47961,23 +48498,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3812[4] { + if yyq3861[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3827 := z.EncBinary() - _ = yym3827 + yym3876 := z.EncBinary() + _ = yym3876 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3812 || yy2arr3812 { + if yyr3861 || yy2arr3861 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3812[5] { - yym3829 := z.EncBinary() - _ = yym3829 + if yyq3861[5] { + yym3878 := z.EncBinary() + _ = yym3878 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -47986,23 +48523,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3812[5] { + if yyq3861[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3830 := z.EncBinary() - _ = yym3830 + yym3879 := z.EncBinary() + _ = yym3879 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3812 || yy2arr3812 { + if yyr3861 || yy2arr3861 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3812[6] { - yym3832 := z.EncBinary() - _ = yym3832 + if yyq3861[6] { + yym3881 := z.EncBinary() + _ = yym3881 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -48011,19 +48548,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3812[6] { + if yyq3861[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3833 := z.EncBinary() - _ = yym3833 + yym3882 := z.EncBinary() + _ = yym3882 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3812 || yy2arr3812 { + if yyr3861 || yy2arr3861 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48036,25 +48573,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3834 := z.DecBinary() - _ = yym3834 + yym3883 := z.DecBinary() + _ = yym3883 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3835 := r.ContainerType() - if yyct3835 == codecSelferValueTypeMap1234 { - yyl3835 := r.ReadMapStart() - if yyl3835 == 0 { + yyct3884 := r.ContainerType() + if yyct3884 == codecSelferValueTypeMap1234 { + yyl3884 := r.ReadMapStart() + if yyl3884 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3835, d) + x.codecDecodeSelfFromMap(yyl3884, d) } - } else if yyct3835 == codecSelferValueTypeArray1234 { - yyl3835 := r.ReadArrayStart() - if yyl3835 == 0 { + } else if yyct3884 == codecSelferValueTypeArray1234 { + yyl3884 := r.ReadArrayStart() + if yyl3884 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3835, d) + x.codecDecodeSelfFromArray(yyl3884, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48066,12 +48603,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3836Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3836Slc - var yyhl3836 bool = l >= 0 - for yyj3836 := 0; ; yyj3836++ { - if yyhl3836 { - if yyj3836 >= l { + var yys3885Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3885Slc + var yyhl3885 bool = l >= 0 + for yyj3885 := 0; ; yyj3885++ { + if yyhl3885 { + if yyj3885 >= l { break } } else { @@ -48080,10 +48617,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3836Slc = r.DecodeBytes(yys3836Slc, true, true) - yys3836 := string(yys3836Slc) + yys3885Slc = r.DecodeBytes(yys3885Slc, true, true) + yys3885 := string(yys3885Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3836 { + switch yys3885 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48127,9 +48664,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3836) - } // end switch yys3836 - } // end for yyj3836 + z.DecStructFieldNotFound(-1, yys3885) + } // end switch yys3885 + } // end for yyj3885 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48137,16 +48674,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3844 int - var yyb3844 bool - var yyhl3844 bool = l >= 0 - yyj3844++ - if yyhl3844 { - yyb3844 = yyj3844 > l + var yyj3893 int + var yyb3893 bool + var yyhl3893 bool = l >= 0 + yyj3893++ + if yyhl3893 { + yyb3893 = yyj3893 > l } else { - yyb3844 = r.CheckBreak() + yyb3893 = r.CheckBreak() } - if yyb3844 { + if yyb3893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48156,13 +48693,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3844++ - if yyhl3844 { - yyb3844 = yyj3844 > l + yyj3893++ + if yyhl3893 { + yyb3893 = yyj3893 > l } else { - yyb3844 = r.CheckBreak() + yyb3893 = r.CheckBreak() } - if yyb3844 { + if yyb3893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48172,13 +48709,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3844++ - if yyhl3844 { - yyb3844 = yyj3844 > l + yyj3893++ + if yyhl3893 { + yyb3893 = yyj3893 > l } else { - yyb3844 = r.CheckBreak() + yyb3893 = r.CheckBreak() } - if yyb3844 { + if yyb3893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48188,13 +48725,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3844++ - if yyhl3844 { - yyb3844 = yyj3844 > l + yyj3893++ + if yyhl3893 { + yyb3893 = yyj3893 > l } else { - yyb3844 = r.CheckBreak() + yyb3893 = r.CheckBreak() } - if yyb3844 { + if yyb3893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48204,13 +48741,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3844++ - if yyhl3844 { - yyb3844 = yyj3844 > l + yyj3893++ + if yyhl3893 { + yyb3893 = yyj3893 > l } else { - yyb3844 = r.CheckBreak() + yyb3893 = r.CheckBreak() } - if yyb3844 { + if yyb3893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48220,13 +48757,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3844++ - if yyhl3844 { - yyb3844 = yyj3844 > l + yyj3893++ + if yyhl3893 { + yyb3893 = yyj3893 > l } else { - yyb3844 = r.CheckBreak() + yyb3893 = r.CheckBreak() } - if yyb3844 { + if yyb3893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48236,13 +48773,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3844++ - if yyhl3844 { - yyb3844 = yyj3844 > l + yyj3893++ + if yyhl3893 { + yyb3893 = yyj3893 > l } else { - yyb3844 = r.CheckBreak() + yyb3893 = r.CheckBreak() } - if yyb3844 { + if yyb3893 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48253,17 +48790,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3844++ - if yyhl3844 { - yyb3844 = yyj3844 > l + yyj3893++ + if yyhl3893 { + yyb3893 = yyj3893 > l } else { - yyb3844 = r.CheckBreak() + yyb3893 = r.CheckBreak() } - if yyb3844 { + if yyb3893 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3844-1, "") + z.DecStructFieldNotFound(yyj3893-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48275,33 +48812,33 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3852 := z.EncBinary() - _ = yym3852 + yym3901 := z.EncBinary() + _ = yym3901 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3853 := !z.EncBinary() - yy2arr3853 := z.EncBasicHandle().StructToArray - var yyq3853 [1]bool - _, _, _ = yysep3853, yyq3853, yy2arr3853 - const yyr3853 bool = false - var yynn3853 int - if yyr3853 || yy2arr3853 { + yysep3902 := !z.EncBinary() + yy2arr3902 := z.EncBasicHandle().StructToArray + var yyq3902 [1]bool + _, _, _ = yysep3902, yyq3902, yy2arr3902 + const yyr3902 bool = false + var yynn3902 int + if yyr3902 || yy2arr3902 { r.EncodeArrayStart(1) } else { - yynn3853 = 1 - for _, b := range yyq3853 { + yynn3902 = 1 + for _, b := range yyq3902 { if b { - yynn3853++ + yynn3902++ } } - r.EncodeMapStart(yynn3853) - yynn3853 = 0 + r.EncodeMapStart(yynn3902) + yynn3902 = 0 } - if yyr3853 || yy2arr3853 { + if yyr3902 || yy2arr3902 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3855 := z.EncBinary() - _ = yym3855 + yym3904 := z.EncBinary() + _ = yym3904 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -48310,14 +48847,14 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3856 := z.EncBinary() - _ = yym3856 + yym3905 := z.EncBinary() + _ = yym3905 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3853 || yy2arr3853 { + if yyr3902 || yy2arr3902 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48330,25 +48867,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3857 := z.DecBinary() - _ = yym3857 + yym3906 := z.DecBinary() + _ = yym3906 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3858 := r.ContainerType() - if yyct3858 == codecSelferValueTypeMap1234 { - yyl3858 := r.ReadMapStart() - if yyl3858 == 0 { + yyct3907 := r.ContainerType() + if yyct3907 == codecSelferValueTypeMap1234 { + yyl3907 := r.ReadMapStart() + if yyl3907 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3858, d) + x.codecDecodeSelfFromMap(yyl3907, d) } - } else if yyct3858 == codecSelferValueTypeArray1234 { - yyl3858 := r.ReadArrayStart() - if yyl3858 == 0 { + } else if yyct3907 == codecSelferValueTypeArray1234 { + yyl3907 := r.ReadArrayStart() + if yyl3907 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3858, d) + x.codecDecodeSelfFromArray(yyl3907, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48360,12 +48897,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3859Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3859Slc - var yyhl3859 bool = l >= 0 - for yyj3859 := 0; ; yyj3859++ { - if yyhl3859 { - if yyj3859 >= l { + var yys3908Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3908Slc + var yyhl3908 bool = l >= 0 + for yyj3908 := 0; ; yyj3908++ { + if yyhl3908 { + if yyj3908 >= l { break } } else { @@ -48374,10 +48911,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3859Slc = r.DecodeBytes(yys3859Slc, true, true) - yys3859 := string(yys3859Slc) + yys3908Slc = r.DecodeBytes(yys3908Slc, true, true) + yys3908 := string(yys3908Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3859 { + switch yys3908 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -48385,9 +48922,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3859) - } // end switch yys3859 - } // end for yyj3859 + z.DecStructFieldNotFound(-1, yys3908) + } // end switch yys3908 + } // end for yyj3908 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48395,16 +48932,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3861 int - var yyb3861 bool - var yyhl3861 bool = l >= 0 - yyj3861++ - if yyhl3861 { - yyb3861 = yyj3861 > l + var yyj3910 int + var yyb3910 bool + var yyhl3910 bool = l >= 0 + yyj3910++ + if yyhl3910 { + yyb3910 = yyj3910 > l } else { - yyb3861 = r.CheckBreak() + yyb3910 = r.CheckBreak() } - if yyb3861 { + if yyb3910 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48415,17 +48952,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj3861++ - if yyhl3861 { - yyb3861 = yyj3861 > l + yyj3910++ + if yyhl3910 { + yyb3910 = yyj3910 > l } else { - yyb3861 = r.CheckBreak() + yyb3910 = r.CheckBreak() } - if yyb3861 { + if yyb3910 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3861-1, "") + z.DecStructFieldNotFound(yyj3910-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48437,37 +48974,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3863 := z.EncBinary() - _ = yym3863 + yym3912 := z.EncBinary() + _ = yym3912 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3864 := !z.EncBinary() - yy2arr3864 := z.EncBasicHandle().StructToArray - var yyq3864 [3]bool - _, _, _ = yysep3864, yyq3864, yy2arr3864 - const yyr3864 bool = false - yyq3864[0] = x.Kind != "" - yyq3864[1] = x.APIVersion != "" - yyq3864[2] = true - var yynn3864 int - if yyr3864 || yy2arr3864 { + yysep3913 := !z.EncBinary() + yy2arr3913 := z.EncBasicHandle().StructToArray + var yyq3913 [3]bool + _, _, _ = yysep3913, yyq3913, yy2arr3913 + const yyr3913 bool = false + yyq3913[0] = x.Kind != "" + yyq3913[1] = x.APIVersion != "" + yyq3913[2] = true + var yynn3913 int + if yyr3913 || yy2arr3913 { r.EncodeArrayStart(3) } else { - yynn3864 = 0 - for _, b := range yyq3864 { + yynn3913 = 0 + for _, b := range yyq3913 { if b { - yynn3864++ + yynn3913++ } } - r.EncodeMapStart(yynn3864) - yynn3864 = 0 + r.EncodeMapStart(yynn3913) + yynn3913 = 0 } - if yyr3864 || yy2arr3864 { + if yyr3913 || yy2arr3913 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3864[0] { - yym3866 := z.EncBinary() - _ = yym3866 + if yyq3913[0] { + yym3915 := z.EncBinary() + _ = yym3915 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48476,23 +49013,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3864[0] { + if yyq3913[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3867 := z.EncBinary() - _ = yym3867 + yym3916 := z.EncBinary() + _ = yym3916 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3864 || yy2arr3864 { + if yyr3913 || yy2arr3913 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3864[1] { - yym3869 := z.EncBinary() - _ = yym3869 + if yyq3913[1] { + yym3918 := z.EncBinary() + _ = yym3918 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48501,36 +49038,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3864[1] { + if yyq3913[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3870 := z.EncBinary() - _ = yym3870 + yym3919 := z.EncBinary() + _ = yym3919 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3864 || yy2arr3864 { + if yyr3913 || yy2arr3913 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3864[2] { - yy3872 := &x.Reference - yy3872.CodecEncodeSelf(e) + if yyq3913[2] { + yy3921 := &x.Reference + yy3921.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3864[2] { + if yyq3913[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3873 := &x.Reference - yy3873.CodecEncodeSelf(e) + yy3922 := &x.Reference + yy3922.CodecEncodeSelf(e) } } - if yyr3864 || yy2arr3864 { + if yyr3913 || yy2arr3913 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48543,25 +49080,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3874 := z.DecBinary() - _ = yym3874 + yym3923 := z.DecBinary() + _ = yym3923 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3875 := r.ContainerType() - if yyct3875 == codecSelferValueTypeMap1234 { - yyl3875 := r.ReadMapStart() - if yyl3875 == 0 { + yyct3924 := r.ContainerType() + if yyct3924 == codecSelferValueTypeMap1234 { + yyl3924 := r.ReadMapStart() + if yyl3924 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3875, d) + x.codecDecodeSelfFromMap(yyl3924, d) } - } else if yyct3875 == codecSelferValueTypeArray1234 { - yyl3875 := r.ReadArrayStart() - if yyl3875 == 0 { + } else if yyct3924 == codecSelferValueTypeArray1234 { + yyl3924 := r.ReadArrayStart() + if yyl3924 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3875, d) + x.codecDecodeSelfFromArray(yyl3924, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48573,12 +49110,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3876Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3876Slc - var yyhl3876 bool = l >= 0 - for yyj3876 := 0; ; yyj3876++ { - if yyhl3876 { - if yyj3876 >= 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 { @@ -48587,10 +49124,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3876Slc = r.DecodeBytes(yys3876Slc, true, true) - yys3876 := string(yys3876Slc) + yys3925Slc = r.DecodeBytes(yys3925Slc, true, true) + yys3925 := string(yys3925Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3876 { + switch yys3925 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48607,13 +49144,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3879 := &x.Reference - yyv3879.CodecDecodeSelf(d) + yyv3928 := &x.Reference + yyv3928.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3876) - } // end switch yys3876 - } // end for yyj3876 + z.DecStructFieldNotFound(-1, yys3925) + } // end switch yys3925 + } // end for yyj3925 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48621,16 +49158,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3880 int - var yyb3880 bool - var yyhl3880 bool = l >= 0 - yyj3880++ - if yyhl3880 { - yyb3880 = yyj3880 > l + var yyj3929 int + var yyb3929 bool + var yyhl3929 bool = l >= 0 + yyj3929++ + if yyhl3929 { + yyb3929 = yyj3929 > l } else { - yyb3880 = r.CheckBreak() + yyb3929 = r.CheckBreak() } - if yyb3880 { + if yyb3929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48640,13 +49177,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3880++ - if yyhl3880 { - yyb3880 = yyj3880 > l + yyj3929++ + if yyhl3929 { + yyb3929 = yyj3929 > l } else { - yyb3880 = r.CheckBreak() + yyb3929 = r.CheckBreak() } - if yyb3880 { + if yyb3929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48656,13 +49193,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3880++ - if yyhl3880 { - yyb3880 = yyj3880 > l + yyj3929++ + if yyhl3929 { + yyb3929 = yyj3929 > l } else { - yyb3880 = r.CheckBreak() + yyb3929 = r.CheckBreak() } - if yyb3880 { + if yyb3929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48670,21 +49207,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3883 := &x.Reference - yyv3883.CodecDecodeSelf(d) + yyv3932 := &x.Reference + yyv3932.CodecDecodeSelf(d) } for { - yyj3880++ - if yyhl3880 { - yyb3880 = yyj3880 > l + yyj3929++ + if yyhl3929 { + yyb3929 = yyj3929 > l } else { - yyb3880 = r.CheckBreak() + yyb3929 = r.CheckBreak() } - if yyb3880 { + if yyb3929 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3880-1, "") + z.DecStructFieldNotFound(yyj3929-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48696,36 +49233,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3884 := z.EncBinary() - _ = yym3884 + yym3933 := z.EncBinary() + _ = yym3933 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3885 := !z.EncBinary() - yy2arr3885 := z.EncBasicHandle().StructToArray - var yyq3885 [2]bool - _, _, _ = yysep3885, yyq3885, yy2arr3885 - const yyr3885 bool = false - yyq3885[0] = x.Component != "" - yyq3885[1] = x.Host != "" - var yynn3885 int - if yyr3885 || yy2arr3885 { + yysep3934 := !z.EncBinary() + yy2arr3934 := z.EncBasicHandle().StructToArray + var yyq3934 [2]bool + _, _, _ = yysep3934, yyq3934, yy2arr3934 + const yyr3934 bool = false + yyq3934[0] = x.Component != "" + yyq3934[1] = x.Host != "" + var yynn3934 int + if yyr3934 || yy2arr3934 { r.EncodeArrayStart(2) } else { - yynn3885 = 0 - for _, b := range yyq3885 { + yynn3934 = 0 + for _, b := range yyq3934 { if b { - yynn3885++ + yynn3934++ } } - r.EncodeMapStart(yynn3885) - yynn3885 = 0 + r.EncodeMapStart(yynn3934) + yynn3934 = 0 } - if yyr3885 || yy2arr3885 { + if yyr3934 || yy2arr3934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3885[0] { - yym3887 := z.EncBinary() - _ = yym3887 + if yyq3934[0] { + yym3936 := z.EncBinary() + _ = yym3936 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -48734,23 +49271,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3885[0] { + if yyq3934[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3888 := z.EncBinary() - _ = yym3888 + yym3937 := z.EncBinary() + _ = yym3937 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr3885 || yy2arr3885 { + if yyr3934 || yy2arr3934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3885[1] { - yym3890 := z.EncBinary() - _ = yym3890 + if yyq3934[1] { + yym3939 := z.EncBinary() + _ = yym3939 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -48759,19 +49296,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3885[1] { + if yyq3934[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3891 := z.EncBinary() - _ = yym3891 + yym3940 := z.EncBinary() + _ = yym3940 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3885 || yy2arr3885 { + if yyr3934 || yy2arr3934 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48784,25 +49321,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3892 := z.DecBinary() - _ = yym3892 + yym3941 := z.DecBinary() + _ = yym3941 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3893 := r.ContainerType() - if yyct3893 == codecSelferValueTypeMap1234 { - yyl3893 := r.ReadMapStart() - if yyl3893 == 0 { + yyct3942 := r.ContainerType() + if yyct3942 == codecSelferValueTypeMap1234 { + yyl3942 := r.ReadMapStart() + if yyl3942 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3893, d) + x.codecDecodeSelfFromMap(yyl3942, d) } - } else if yyct3893 == codecSelferValueTypeArray1234 { - yyl3893 := r.ReadArrayStart() - if yyl3893 == 0 { + } else if yyct3942 == codecSelferValueTypeArray1234 { + yyl3942 := r.ReadArrayStart() + if yyl3942 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3893, d) + x.codecDecodeSelfFromArray(yyl3942, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48814,12 +49351,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3894Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3894Slc - var yyhl3894 bool = l >= 0 - for yyj3894 := 0; ; yyj3894++ { - if yyhl3894 { - if yyj3894 >= l { + var yys3943Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3943Slc + var yyhl3943 bool = l >= 0 + for yyj3943 := 0; ; yyj3943++ { + if yyhl3943 { + if yyj3943 >= l { break } } else { @@ -48828,10 +49365,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3894Slc = r.DecodeBytes(yys3894Slc, true, true) - yys3894 := string(yys3894Slc) + yys3943Slc = r.DecodeBytes(yys3943Slc, true, true) + yys3943 := string(yys3943Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3894 { + switch yys3943 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -48845,9 +49382,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3894) - } // end switch yys3894 - } // end for yyj3894 + z.DecStructFieldNotFound(-1, yys3943) + } // end switch yys3943 + } // end for yyj3943 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48855,16 +49392,16 @@ func (x *EventSource) 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 yyj3946 int + var yyb3946 bool + var yyhl3946 bool = l >= 0 + yyj3946++ + if yyhl3946 { + yyb3946 = yyj3946 > l } else { - yyb3897 = r.CheckBreak() + yyb3946 = r.CheckBreak() } - if yyb3897 { + if yyb3946 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48874,13 +49411,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3897++ - if yyhl3897 { - yyb3897 = yyj3897 > l + yyj3946++ + if yyhl3946 { + yyb3946 = yyj3946 > l } else { - yyb3897 = r.CheckBreak() + yyb3946 = r.CheckBreak() } - if yyb3897 { + if yyb3946 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48891,17 +49428,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3897++ - if yyhl3897 { - yyb3897 = yyj3897 > l + yyj3946++ + if yyhl3946 { + yyb3946 = yyj3946 > l } else { - yyb3897 = r.CheckBreak() + yyb3946 = r.CheckBreak() } - if yyb3897 { + if yyb3946 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3897-1, "") + z.DecStructFieldNotFound(yyj3946-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48913,45 +49450,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3900 := z.EncBinary() - _ = yym3900 + yym3949 := z.EncBinary() + _ = yym3949 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3901 := !z.EncBinary() - yy2arr3901 := z.EncBasicHandle().StructToArray - var yyq3901 [11]bool - _, _, _ = yysep3901, yyq3901, yy2arr3901 - const yyr3901 bool = false - yyq3901[0] = x.Kind != "" - yyq3901[1] = x.APIVersion != "" - yyq3901[2] = true - yyq3901[3] = true - yyq3901[4] = x.Reason != "" - yyq3901[5] = x.Message != "" - yyq3901[6] = true - yyq3901[7] = true - yyq3901[8] = true - yyq3901[9] = x.Count != 0 - yyq3901[10] = x.Type != "" - var yynn3901 int - if yyr3901 || yy2arr3901 { + yysep3950 := !z.EncBinary() + yy2arr3950 := z.EncBasicHandle().StructToArray + var yyq3950 [11]bool + _, _, _ = yysep3950, yyq3950, yy2arr3950 + const yyr3950 bool = false + yyq3950[0] = x.Kind != "" + yyq3950[1] = x.APIVersion != "" + yyq3950[2] = true + yyq3950[3] = true + yyq3950[4] = x.Reason != "" + yyq3950[5] = x.Message != "" + yyq3950[6] = true + yyq3950[7] = true + yyq3950[8] = true + yyq3950[9] = x.Count != 0 + yyq3950[10] = x.Type != "" + var yynn3950 int + if yyr3950 || yy2arr3950 { r.EncodeArrayStart(11) } else { - yynn3901 = 0 - for _, b := range yyq3901 { + yynn3950 = 0 + for _, b := range yyq3950 { if b { - yynn3901++ + yynn3950++ } } - r.EncodeMapStart(yynn3901) - yynn3901 = 0 + r.EncodeMapStart(yynn3950) + yynn3950 = 0 } - if yyr3901 || yy2arr3901 { + if yyr3950 || yy2arr3950 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3901[0] { - yym3903 := z.EncBinary() - _ = yym3903 + if yyq3950[0] { + yym3952 := z.EncBinary() + _ = yym3952 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48960,23 +49497,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3901[0] { + if yyq3950[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3904 := z.EncBinary() - _ = yym3904 + yym3953 := z.EncBinary() + _ = yym3953 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3901 || yy2arr3901 { + if yyr3950 || yy2arr3950 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3901[1] { - yym3906 := z.EncBinary() - _ = yym3906 + if yyq3950[1] { + yym3955 := z.EncBinary() + _ = yym3955 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48985,57 +49522,57 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3901[1] { + if yyq3950[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3907 := z.EncBinary() - _ = yym3907 + yym3956 := z.EncBinary() + _ = yym3956 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3901 || yy2arr3901 { + if yyr3950 || yy2arr3950 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3901[2] { - yy3909 := &x.ObjectMeta - yy3909.CodecEncodeSelf(e) + if yyq3950[2] { + yy3958 := &x.ObjectMeta + yy3958.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3901[2] { + if yyq3950[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3910 := &x.ObjectMeta - yy3910.CodecEncodeSelf(e) + yy3959 := &x.ObjectMeta + yy3959.CodecEncodeSelf(e) } } - if yyr3901 || yy2arr3901 { + if yyr3950 || yy2arr3950 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3901[3] { - yy3912 := &x.InvolvedObject - yy3912.CodecEncodeSelf(e) + if yyq3950[3] { + yy3961 := &x.InvolvedObject + yy3961.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3901[3] { + if yyq3950[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3913 := &x.InvolvedObject - yy3913.CodecEncodeSelf(e) + yy3962 := &x.InvolvedObject + yy3962.CodecEncodeSelf(e) } } - if yyr3901 || yy2arr3901 { + if yyr3950 || yy2arr3950 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3901[4] { - yym3915 := z.EncBinary() - _ = yym3915 + if yyq3950[4] { + yym3964 := z.EncBinary() + _ = yym3964 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -49044,23 +49581,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3901[4] { + if yyq3950[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3916 := z.EncBinary() - _ = yym3916 + yym3965 := z.EncBinary() + _ = yym3965 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3901 || yy2arr3901 { + if yyr3950 || yy2arr3950 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3901[5] { - yym3918 := z.EncBinary() - _ = yym3918 + if yyq3950[5] { + yym3967 := z.EncBinary() + _ = yym3967 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -49069,114 +49606,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3901[5] { + if yyq3950[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3919 := z.EncBinary() - _ = yym3919 + yym3968 := z.EncBinary() + _ = yym3968 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3901 || yy2arr3901 { + if yyr3950 || yy2arr3950 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3901[6] { - yy3921 := &x.Source - yy3921.CodecEncodeSelf(e) + if yyq3950[6] { + yy3970 := &x.Source + yy3970.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3901[6] { + if yyq3950[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3922 := &x.Source - yy3922.CodecEncodeSelf(e) + yy3971 := &x.Source + yy3971.CodecEncodeSelf(e) } } - if yyr3901 || yy2arr3901 { + if yyr3950 || yy2arr3950 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3901[7] { - yy3924 := &x.FirstTimestamp - yym3925 := z.EncBinary() - _ = yym3925 + if yyq3950[7] { + yy3973 := &x.FirstTimestamp + yym3974 := z.EncBinary() + _ = yym3974 if false { - } else if z.HasExtensions() && z.EncExt(yy3924) { - } else if yym3925 { - z.EncBinaryMarshal(yy3924) - } else if !yym3925 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3924) + } else if z.HasExtensions() && z.EncExt(yy3973) { + } else if yym3974 { + z.EncBinaryMarshal(yy3973) + } else if !yym3974 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3973) } else { - z.EncFallback(yy3924) + z.EncFallback(yy3973) } } else { r.EncodeNil() } } else { - if yyq3901[7] { + if yyq3950[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3926 := &x.FirstTimestamp - yym3927 := z.EncBinary() - _ = yym3927 + yy3975 := &x.FirstTimestamp + yym3976 := z.EncBinary() + _ = yym3976 if false { - } else if z.HasExtensions() && z.EncExt(yy3926) { - } else if yym3927 { - z.EncBinaryMarshal(yy3926) - } else if !yym3927 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3926) + } else if z.HasExtensions() && z.EncExt(yy3975) { + } else if yym3976 { + z.EncBinaryMarshal(yy3975) + } else if !yym3976 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3975) } else { - z.EncFallback(yy3926) + z.EncFallback(yy3975) } } } - if yyr3901 || yy2arr3901 { + if yyr3950 || yy2arr3950 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3901[8] { - yy3929 := &x.LastTimestamp - yym3930 := z.EncBinary() - _ = yym3930 + if yyq3950[8] { + yy3978 := &x.LastTimestamp + yym3979 := z.EncBinary() + _ = yym3979 if false { - } else if z.HasExtensions() && z.EncExt(yy3929) { - } else if yym3930 { - z.EncBinaryMarshal(yy3929) - } else if !yym3930 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3929) + } else if z.HasExtensions() && z.EncExt(yy3978) { + } else if yym3979 { + z.EncBinaryMarshal(yy3978) + } else if !yym3979 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3978) } else { - z.EncFallback(yy3929) + z.EncFallback(yy3978) } } else { r.EncodeNil() } } else { - if yyq3901[8] { + if yyq3950[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3931 := &x.LastTimestamp - yym3932 := z.EncBinary() - _ = yym3932 + yy3980 := &x.LastTimestamp + yym3981 := z.EncBinary() + _ = yym3981 if false { - } else if z.HasExtensions() && z.EncExt(yy3931) { - } else if yym3932 { - z.EncBinaryMarshal(yy3931) - } else if !yym3932 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3931) + } else if z.HasExtensions() && z.EncExt(yy3980) { + } else if yym3981 { + z.EncBinaryMarshal(yy3980) + } else if !yym3981 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3980) } else { - z.EncFallback(yy3931) + z.EncFallback(yy3980) } } } - if yyr3901 || yy2arr3901 { + if yyr3950 || yy2arr3950 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3901[9] { - yym3934 := z.EncBinary() - _ = yym3934 + if yyq3950[9] { + yym3983 := z.EncBinary() + _ = yym3983 if false { } else { r.EncodeInt(int64(x.Count)) @@ -49185,23 +49722,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3901[9] { + if yyq3950[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3935 := z.EncBinary() - _ = yym3935 + yym3984 := z.EncBinary() + _ = yym3984 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3901 || yy2arr3901 { + if yyr3950 || yy2arr3950 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3901[10] { - yym3937 := z.EncBinary() - _ = yym3937 + if yyq3950[10] { + yym3986 := z.EncBinary() + _ = yym3986 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -49210,19 +49747,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3901[10] { + if yyq3950[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3938 := z.EncBinary() - _ = yym3938 + yym3987 := z.EncBinary() + _ = yym3987 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3901 || yy2arr3901 { + if yyr3950 || yy2arr3950 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49235,25 +49772,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3939 := z.DecBinary() - _ = yym3939 + yym3988 := z.DecBinary() + _ = yym3988 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3940 := r.ContainerType() - if yyct3940 == codecSelferValueTypeMap1234 { - yyl3940 := r.ReadMapStart() - if yyl3940 == 0 { + yyct3989 := r.ContainerType() + if yyct3989 == codecSelferValueTypeMap1234 { + yyl3989 := r.ReadMapStart() + if yyl3989 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3940, d) + x.codecDecodeSelfFromMap(yyl3989, d) } - } else if yyct3940 == codecSelferValueTypeArray1234 { - yyl3940 := r.ReadArrayStart() - if yyl3940 == 0 { + } else if yyct3989 == codecSelferValueTypeArray1234 { + yyl3989 := r.ReadArrayStart() + if yyl3989 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3940, d) + x.codecDecodeSelfFromArray(yyl3989, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49265,12 +49802,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3941Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3941Slc - var yyhl3941 bool = l >= 0 - for yyj3941 := 0; ; yyj3941++ { - if yyhl3941 { - if yyj3941 >= l { + var yys3990Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3990Slc + var yyhl3990 bool = l >= 0 + for yyj3990 := 0; ; yyj3990++ { + if yyhl3990 { + if yyj3990 >= l { break } } else { @@ -49279,10 +49816,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3941Slc = r.DecodeBytes(yys3941Slc, true, true) - yys3941 := string(yys3941Slc) + yys3990Slc = r.DecodeBytes(yys3990Slc, true, true) + yys3990 := string(yys3990Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3941 { + switch yys3990 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49299,15 +49836,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3944 := &x.ObjectMeta - yyv3944.CodecDecodeSelf(d) + yyv3993 := &x.ObjectMeta + yyv3993.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3945 := &x.InvolvedObject - yyv3945.CodecDecodeSelf(d) + yyv3994 := &x.InvolvedObject + yyv3994.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -49325,41 +49862,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3948 := &x.Source - yyv3948.CodecDecodeSelf(d) + yyv3997 := &x.Source + yyv3997.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3949 := &x.FirstTimestamp - yym3950 := z.DecBinary() - _ = yym3950 + yyv3998 := &x.FirstTimestamp + yym3999 := z.DecBinary() + _ = yym3999 if false { - } else if z.HasExtensions() && z.DecExt(yyv3949) { - } else if yym3950 { - z.DecBinaryUnmarshal(yyv3949) - } else if !yym3950 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3949) + } else if z.HasExtensions() && z.DecExt(yyv3998) { + } else if yym3999 { + z.DecBinaryUnmarshal(yyv3998) + } else if !yym3999 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3998) } else { - z.DecFallback(yyv3949, false) + z.DecFallback(yyv3998, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3951 := &x.LastTimestamp - yym3952 := z.DecBinary() - _ = yym3952 + yyv4000 := &x.LastTimestamp + yym4001 := z.DecBinary() + _ = yym4001 if false { - } else if z.HasExtensions() && z.DecExt(yyv3951) { - } else if yym3952 { - z.DecBinaryUnmarshal(yyv3951) - } else if !yym3952 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3951) + } else if z.HasExtensions() && z.DecExt(yyv4000) { + } else if yym4001 { + z.DecBinaryUnmarshal(yyv4000) + } else if !yym4001 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4000) } else { - z.DecFallback(yyv3951, false) + z.DecFallback(yyv4000, false) } } case "count": @@ -49375,9 +49912,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3941) - } // end switch yys3941 - } // end for yyj3941 + z.DecStructFieldNotFound(-1, yys3990) + } // end switch yys3990 + } // end for yyj3990 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49385,16 +49922,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3955 int - var yyb3955 bool - var yyhl3955 bool = l >= 0 - yyj3955++ - if yyhl3955 { - yyb3955 = yyj3955 > l + var yyj4004 int + var yyb4004 bool + var yyhl4004 bool = l >= 0 + yyj4004++ + if yyhl4004 { + yyb4004 = yyj4004 > l } else { - yyb3955 = r.CheckBreak() + yyb4004 = r.CheckBreak() } - if yyb3955 { + if yyb4004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49404,13 +49941,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3955++ - if yyhl3955 { - yyb3955 = yyj3955 > l + yyj4004++ + if yyhl4004 { + yyb4004 = yyj4004 > l } else { - yyb3955 = r.CheckBreak() + yyb4004 = r.CheckBreak() } - if yyb3955 { + if yyb4004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49420,13 +49957,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3955++ - if yyhl3955 { - yyb3955 = yyj3955 > l + yyj4004++ + if yyhl4004 { + yyb4004 = yyj4004 > l } else { - yyb3955 = r.CheckBreak() + yyb4004 = r.CheckBreak() } - if yyb3955 { + if yyb4004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49434,16 +49971,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3958 := &x.ObjectMeta - yyv3958.CodecDecodeSelf(d) + yyv4007 := &x.ObjectMeta + yyv4007.CodecDecodeSelf(d) } - yyj3955++ - if yyhl3955 { - yyb3955 = yyj3955 > l + yyj4004++ + if yyhl4004 { + yyb4004 = yyj4004 > l } else { - yyb3955 = r.CheckBreak() + yyb4004 = r.CheckBreak() } - if yyb3955 { + if yyb4004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49451,16 +49988,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3959 := &x.InvolvedObject - yyv3959.CodecDecodeSelf(d) + yyv4008 := &x.InvolvedObject + yyv4008.CodecDecodeSelf(d) } - yyj3955++ - if yyhl3955 { - yyb3955 = yyj3955 > l + yyj4004++ + if yyhl4004 { + yyb4004 = yyj4004 > l } else { - yyb3955 = r.CheckBreak() + yyb4004 = r.CheckBreak() } - if yyb3955 { + if yyb4004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49470,13 +50007,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3955++ - if yyhl3955 { - yyb3955 = yyj3955 > l + yyj4004++ + if yyhl4004 { + yyb4004 = yyj4004 > l } else { - yyb3955 = r.CheckBreak() + yyb4004 = r.CheckBreak() } - if yyb3955 { + if yyb4004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49486,13 +50023,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3955++ - if yyhl3955 { - yyb3955 = yyj3955 > l + yyj4004++ + if yyhl4004 { + yyb4004 = yyj4004 > l } else { - yyb3955 = r.CheckBreak() + yyb4004 = r.CheckBreak() } - if yyb3955 { + if yyb4004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49500,16 +50037,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3962 := &x.Source - yyv3962.CodecDecodeSelf(d) + yyv4011 := &x.Source + yyv4011.CodecDecodeSelf(d) } - yyj3955++ - if yyhl3955 { - yyb3955 = yyj3955 > l + yyj4004++ + if yyhl4004 { + yyb4004 = yyj4004 > l } else { - yyb3955 = r.CheckBreak() + yyb4004 = r.CheckBreak() } - if yyb3955 { + if yyb4004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49517,26 +50054,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3963 := &x.FirstTimestamp - yym3964 := z.DecBinary() - _ = yym3964 + yyv4012 := &x.FirstTimestamp + yym4013 := z.DecBinary() + _ = yym4013 if false { - } else if z.HasExtensions() && z.DecExt(yyv3963) { - } else if yym3964 { - z.DecBinaryUnmarshal(yyv3963) - } else if !yym3964 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3963) + } else if z.HasExtensions() && z.DecExt(yyv4012) { + } else if yym4013 { + z.DecBinaryUnmarshal(yyv4012) + } else if !yym4013 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4012) } else { - z.DecFallback(yyv3963, false) + z.DecFallback(yyv4012, false) } } - yyj3955++ - if yyhl3955 { - yyb3955 = yyj3955 > l + yyj4004++ + if yyhl4004 { + yyb4004 = yyj4004 > l } else { - yyb3955 = r.CheckBreak() + yyb4004 = r.CheckBreak() } - if yyb3955 { + if yyb4004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49544,26 +50081,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3965 := &x.LastTimestamp - yym3966 := z.DecBinary() - _ = yym3966 + yyv4014 := &x.LastTimestamp + yym4015 := z.DecBinary() + _ = yym4015 if false { - } else if z.HasExtensions() && z.DecExt(yyv3965) { - } else if yym3966 { - z.DecBinaryUnmarshal(yyv3965) - } else if !yym3966 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3965) + } else if z.HasExtensions() && z.DecExt(yyv4014) { + } else if yym4015 { + z.DecBinaryUnmarshal(yyv4014) + } else if !yym4015 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4014) } else { - z.DecFallback(yyv3965, false) + z.DecFallback(yyv4014, false) } } - yyj3955++ - if yyhl3955 { - yyb3955 = yyj3955 > l + yyj4004++ + if yyhl4004 { + yyb4004 = yyj4004 > l } else { - yyb3955 = r.CheckBreak() + yyb4004 = r.CheckBreak() } - if yyb3955 { + if yyb4004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49573,13 +50110,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3955++ - if yyhl3955 { - yyb3955 = yyj3955 > l + yyj4004++ + if yyhl4004 { + yyb4004 = yyj4004 > l } else { - yyb3955 = r.CheckBreak() + yyb4004 = r.CheckBreak() } - if yyb3955 { + if yyb4004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49590,17 +50127,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3955++ - if yyhl3955 { - yyb3955 = yyj3955 > l + yyj4004++ + if yyhl4004 { + yyb4004 = yyj4004 > l } else { - yyb3955 = r.CheckBreak() + yyb4004 = r.CheckBreak() } - if yyb3955 { + if yyb4004 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3955-1, "") + z.DecStructFieldNotFound(yyj4004-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49612,37 +50149,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3969 := z.EncBinary() - _ = yym3969 + yym4018 := z.EncBinary() + _ = yym4018 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3970 := !z.EncBinary() - yy2arr3970 := z.EncBasicHandle().StructToArray - var yyq3970 [4]bool - _, _, _ = yysep3970, yyq3970, yy2arr3970 - const yyr3970 bool = false - yyq3970[0] = x.Kind != "" - yyq3970[1] = x.APIVersion != "" - yyq3970[2] = true - var yynn3970 int - if yyr3970 || yy2arr3970 { + yysep4019 := !z.EncBinary() + yy2arr4019 := z.EncBasicHandle().StructToArray + var yyq4019 [4]bool + _, _, _ = yysep4019, yyq4019, yy2arr4019 + const yyr4019 bool = false + yyq4019[0] = x.Kind != "" + yyq4019[1] = x.APIVersion != "" + yyq4019[2] = true + var yynn4019 int + if yyr4019 || yy2arr4019 { r.EncodeArrayStart(4) } else { - yynn3970 = 1 - for _, b := range yyq3970 { + yynn4019 = 1 + for _, b := range yyq4019 { if b { - yynn3970++ + yynn4019++ } } - r.EncodeMapStart(yynn3970) - yynn3970 = 0 + r.EncodeMapStart(yynn4019) + yynn4019 = 0 } - if yyr3970 || yy2arr3970 { + if yyr4019 || yy2arr4019 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3970[0] { - yym3972 := z.EncBinary() - _ = yym3972 + if yyq4019[0] { + yym4021 := z.EncBinary() + _ = yym4021 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49651,23 +50188,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3970[0] { + if yyq4019[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3973 := z.EncBinary() - _ = yym3973 + yym4022 := z.EncBinary() + _ = yym4022 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3970 || yy2arr3970 { + if yyr4019 || yy2arr4019 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3970[1] { - yym3975 := z.EncBinary() - _ = yym3975 + if yyq4019[1] { + yym4024 := z.EncBinary() + _ = yym4024 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49676,54 +50213,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3970[1] { + if yyq4019[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3976 := z.EncBinary() - _ = yym3976 + yym4025 := z.EncBinary() + _ = yym4025 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3970 || yy2arr3970 { + if yyr4019 || yy2arr4019 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3970[2] { - yy3978 := &x.ListMeta - yym3979 := z.EncBinary() - _ = yym3979 + if yyq4019[2] { + yy4027 := &x.ListMeta + yym4028 := z.EncBinary() + _ = yym4028 if false { - } else if z.HasExtensions() && z.EncExt(yy3978) { + } else if z.HasExtensions() && z.EncExt(yy4027) { } else { - z.EncFallback(yy3978) + z.EncFallback(yy4027) } } else { r.EncodeNil() } } else { - if yyq3970[2] { + if yyq4019[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3980 := &x.ListMeta - yym3981 := z.EncBinary() - _ = yym3981 + yy4029 := &x.ListMeta + yym4030 := z.EncBinary() + _ = yym4030 if false { - } else if z.HasExtensions() && z.EncExt(yy3980) { + } else if z.HasExtensions() && z.EncExt(yy4029) { } else { - z.EncFallback(yy3980) + z.EncFallback(yy4029) } } } - if yyr3970 || yy2arr3970 { + if yyr4019 || yy2arr4019 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3983 := z.EncBinary() - _ = yym3983 + yym4032 := z.EncBinary() + _ = yym4032 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -49736,15 +50273,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3984 := z.EncBinary() - _ = yym3984 + yym4033 := z.EncBinary() + _ = yym4033 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3970 || yy2arr3970 { + if yyr4019 || yy2arr4019 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49757,25 +50294,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3985 := z.DecBinary() - _ = yym3985 + yym4034 := z.DecBinary() + _ = yym4034 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3986 := r.ContainerType() - if yyct3986 == codecSelferValueTypeMap1234 { - yyl3986 := r.ReadMapStart() - if yyl3986 == 0 { + yyct4035 := r.ContainerType() + if yyct4035 == codecSelferValueTypeMap1234 { + yyl4035 := r.ReadMapStart() + if yyl4035 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3986, d) + x.codecDecodeSelfFromMap(yyl4035, d) } - } else if yyct3986 == codecSelferValueTypeArray1234 { - yyl3986 := r.ReadArrayStart() - if yyl3986 == 0 { + } else if yyct4035 == codecSelferValueTypeArray1234 { + yyl4035 := r.ReadArrayStart() + if yyl4035 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3986, d) + x.codecDecodeSelfFromArray(yyl4035, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49787,12 +50324,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3987Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3987Slc - var yyhl3987 bool = l >= 0 - for yyj3987 := 0; ; yyj3987++ { - if yyhl3987 { - if yyj3987 >= l { + var yys4036Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4036Slc + var yyhl4036 bool = l >= 0 + for yyj4036 := 0; ; yyj4036++ { + if yyhl4036 { + if yyj4036 >= l { break } } else { @@ -49801,10 +50338,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3987Slc = r.DecodeBytes(yys3987Slc, true, true) - yys3987 := string(yys3987Slc) + yys4036Slc = r.DecodeBytes(yys4036Slc, true, true) + yys4036 := string(yys4036Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3987 { + switch yys4036 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49821,31 +50358,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3990 := &x.ListMeta - yym3991 := z.DecBinary() - _ = yym3991 + yyv4039 := &x.ListMeta + yym4040 := z.DecBinary() + _ = yym4040 if false { - } else if z.HasExtensions() && z.DecExt(yyv3990) { + } else if z.HasExtensions() && z.DecExt(yyv4039) { } else { - z.DecFallback(yyv3990, false) + z.DecFallback(yyv4039, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3992 := &x.Items - yym3993 := z.DecBinary() - _ = yym3993 + yyv4041 := &x.Items + yym4042 := z.DecBinary() + _ = yym4042 if false { } else { - h.decSliceEvent((*[]Event)(yyv3992), d) + h.decSliceEvent((*[]Event)(yyv4041), d) } } default: - z.DecStructFieldNotFound(-1, yys3987) - } // end switch yys3987 - } // end for yyj3987 + z.DecStructFieldNotFound(-1, yys4036) + } // end switch yys4036 + } // end for yyj4036 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49853,16 +50390,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3994 int - var yyb3994 bool - var yyhl3994 bool = l >= 0 - yyj3994++ - if yyhl3994 { - yyb3994 = yyj3994 > l + var yyj4043 int + var yyb4043 bool + var yyhl4043 bool = l >= 0 + yyj4043++ + if yyhl4043 { + yyb4043 = yyj4043 > l } else { - yyb3994 = r.CheckBreak() + yyb4043 = r.CheckBreak() } - if yyb3994 { + if yyb4043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49872,13 +50409,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3994++ - if yyhl3994 { - yyb3994 = yyj3994 > l + yyj4043++ + if yyhl4043 { + yyb4043 = yyj4043 > l } else { - yyb3994 = r.CheckBreak() + yyb4043 = r.CheckBreak() } - if yyb3994 { + if yyb4043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49888,13 +50425,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3994++ - if yyhl3994 { - yyb3994 = yyj3994 > l + yyj4043++ + if yyhl4043 { + yyb4043 = yyj4043 > l } else { - yyb3994 = r.CheckBreak() + yyb4043 = r.CheckBreak() } - if yyb3994 { + if yyb4043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49902,22 +50439,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3997 := &x.ListMeta - yym3998 := z.DecBinary() - _ = yym3998 + yyv4046 := &x.ListMeta + yym4047 := z.DecBinary() + _ = yym4047 if false { - } else if z.HasExtensions() && z.DecExt(yyv3997) { + } else if z.HasExtensions() && z.DecExt(yyv4046) { } else { - z.DecFallback(yyv3997, false) + z.DecFallback(yyv4046, false) } } - yyj3994++ - if yyhl3994 { - yyb3994 = yyj3994 > l + yyj4043++ + if yyhl4043 { + yyb4043 = yyj4043 > l } else { - yyb3994 = r.CheckBreak() + yyb4043 = r.CheckBreak() } - if yyb3994 { + if yyb4043 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49925,26 +50462,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3999 := &x.Items - yym4000 := z.DecBinary() - _ = yym4000 + yyv4048 := &x.Items + yym4049 := z.DecBinary() + _ = yym4049 if false { } else { - h.decSliceEvent((*[]Event)(yyv3999), d) + h.decSliceEvent((*[]Event)(yyv4048), d) } } for { - yyj3994++ - if yyhl3994 { - yyb3994 = yyj3994 > l + yyj4043++ + if yyhl4043 { + yyb4043 = yyj4043 > l } else { - yyb3994 = r.CheckBreak() + yyb4043 = r.CheckBreak() } - if yyb3994 { + if yyb4043 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3994-1, "") + z.DecStructFieldNotFound(yyj4043-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49956,37 +50493,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4001 := z.EncBinary() - _ = yym4001 + yym4050 := z.EncBinary() + _ = yym4050 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4002 := !z.EncBinary() - yy2arr4002 := z.EncBasicHandle().StructToArray - var yyq4002 [4]bool - _, _, _ = yysep4002, yyq4002, yy2arr4002 - const yyr4002 bool = false - yyq4002[0] = x.Kind != "" - yyq4002[1] = x.APIVersion != "" - yyq4002[2] = true - var yynn4002 int - if yyr4002 || yy2arr4002 { + yysep4051 := !z.EncBinary() + yy2arr4051 := z.EncBasicHandle().StructToArray + var yyq4051 [4]bool + _, _, _ = yysep4051, yyq4051, yy2arr4051 + const yyr4051 bool = false + yyq4051[0] = x.Kind != "" + yyq4051[1] = x.APIVersion != "" + yyq4051[2] = true + var yynn4051 int + if yyr4051 || yy2arr4051 { r.EncodeArrayStart(4) } else { - yynn4002 = 1 - for _, b := range yyq4002 { + yynn4051 = 1 + for _, b := range yyq4051 { if b { - yynn4002++ + yynn4051++ } } - r.EncodeMapStart(yynn4002) - yynn4002 = 0 + r.EncodeMapStart(yynn4051) + yynn4051 = 0 } - if yyr4002 || yy2arr4002 { + if yyr4051 || yy2arr4051 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4002[0] { - yym4004 := z.EncBinary() - _ = yym4004 + if yyq4051[0] { + yym4053 := z.EncBinary() + _ = yym4053 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49995,23 +50532,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4002[0] { + if yyq4051[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4005 := z.EncBinary() - _ = yym4005 + yym4054 := z.EncBinary() + _ = yym4054 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4002 || yy2arr4002 { + if yyr4051 || yy2arr4051 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4002[1] { - yym4007 := z.EncBinary() - _ = yym4007 + if yyq4051[1] { + yym4056 := z.EncBinary() + _ = yym4056 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50020,54 +50557,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4002[1] { + if yyq4051[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4008 := z.EncBinary() - _ = yym4008 + yym4057 := z.EncBinary() + _ = yym4057 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4002 || yy2arr4002 { + if yyr4051 || yy2arr4051 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4002[2] { - yy4010 := &x.ListMeta - yym4011 := z.EncBinary() - _ = yym4011 + if yyq4051[2] { + yy4059 := &x.ListMeta + yym4060 := z.EncBinary() + _ = yym4060 if false { - } else if z.HasExtensions() && z.EncExt(yy4010) { + } else if z.HasExtensions() && z.EncExt(yy4059) { } else { - z.EncFallback(yy4010) + z.EncFallback(yy4059) } } else { r.EncodeNil() } } else { - if yyq4002[2] { + if yyq4051[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4012 := &x.ListMeta - yym4013 := z.EncBinary() - _ = yym4013 + yy4061 := &x.ListMeta + yym4062 := z.EncBinary() + _ = yym4062 if false { - } else if z.HasExtensions() && z.EncExt(yy4012) { + } else if z.HasExtensions() && z.EncExt(yy4061) { } else { - z.EncFallback(yy4012) + z.EncFallback(yy4061) } } } - if yyr4002 || yy2arr4002 { + if yyr4051 || yy2arr4051 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4015 := z.EncBinary() - _ = yym4015 + yym4064 := z.EncBinary() + _ = yym4064 if false { } else { h.encSliceruntime_Object(([]pkg7_runtime.Object)(x.Items), e) @@ -50080,15 +50617,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4016 := z.EncBinary() - _ = yym4016 + yym4065 := z.EncBinary() + _ = yym4065 if false { } else { h.encSliceruntime_Object(([]pkg7_runtime.Object)(x.Items), e) } } } - if yyr4002 || yy2arr4002 { + if yyr4051 || yy2arr4051 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50101,25 +50638,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4017 := z.DecBinary() - _ = yym4017 + yym4066 := z.DecBinary() + _ = yym4066 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4018 := r.ContainerType() - if yyct4018 == codecSelferValueTypeMap1234 { - yyl4018 := r.ReadMapStart() - if yyl4018 == 0 { + yyct4067 := r.ContainerType() + if yyct4067 == codecSelferValueTypeMap1234 { + yyl4067 := r.ReadMapStart() + if yyl4067 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4018, d) + x.codecDecodeSelfFromMap(yyl4067, d) } - } else if yyct4018 == codecSelferValueTypeArray1234 { - yyl4018 := r.ReadArrayStart() - if yyl4018 == 0 { + } else if yyct4067 == codecSelferValueTypeArray1234 { + yyl4067 := r.ReadArrayStart() + if yyl4067 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4018, d) + x.codecDecodeSelfFromArray(yyl4067, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50131,12 +50668,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4019Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4019Slc - var yyhl4019 bool = l >= 0 - for yyj4019 := 0; ; yyj4019++ { - if yyhl4019 { - if yyj4019 >= l { + var yys4068Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4068Slc + var yyhl4068 bool = l >= 0 + for yyj4068 := 0; ; yyj4068++ { + if yyhl4068 { + if yyj4068 >= l { break } } else { @@ -50145,10 +50682,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4019Slc = r.DecodeBytes(yys4019Slc, true, true) - yys4019 := string(yys4019Slc) + yys4068Slc = r.DecodeBytes(yys4068Slc, true, true) + yys4068 := string(yys4068Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4019 { + switch yys4068 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50165,31 +50702,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4022 := &x.ListMeta - yym4023 := z.DecBinary() - _ = yym4023 + yyv4071 := &x.ListMeta + yym4072 := z.DecBinary() + _ = yym4072 if false { - } else if z.HasExtensions() && z.DecExt(yyv4022) { + } else if z.HasExtensions() && z.DecExt(yyv4071) { } else { - z.DecFallback(yyv4022, false) + z.DecFallback(yyv4071, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4024 := &x.Items - yym4025 := z.DecBinary() - _ = yym4025 + yyv4073 := &x.Items + yym4074 := z.DecBinary() + _ = yym4074 if false { } else { - h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv4024), d) + h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv4073), d) } } default: - z.DecStructFieldNotFound(-1, yys4019) - } // end switch yys4019 - } // end for yyj4019 + z.DecStructFieldNotFound(-1, yys4068) + } // end switch yys4068 + } // end for yyj4068 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50197,16 +50734,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4026 int - var yyb4026 bool - var yyhl4026 bool = l >= 0 - yyj4026++ - if yyhl4026 { - yyb4026 = yyj4026 > l + var yyj4075 int + var yyb4075 bool + var yyhl4075 bool = l >= 0 + yyj4075++ + if yyhl4075 { + yyb4075 = yyj4075 > l } else { - yyb4026 = r.CheckBreak() + yyb4075 = r.CheckBreak() } - if yyb4026 { + if yyb4075 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50216,13 +50753,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4026++ - if yyhl4026 { - yyb4026 = yyj4026 > l + yyj4075++ + if yyhl4075 { + yyb4075 = yyj4075 > l } else { - yyb4026 = r.CheckBreak() + yyb4075 = r.CheckBreak() } - if yyb4026 { + if yyb4075 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50232,13 +50769,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4026++ - if yyhl4026 { - yyb4026 = yyj4026 > l + yyj4075++ + if yyhl4075 { + yyb4075 = yyj4075 > l } else { - yyb4026 = r.CheckBreak() + yyb4075 = r.CheckBreak() } - if yyb4026 { + if yyb4075 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50246,22 +50783,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4029 := &x.ListMeta - yym4030 := z.DecBinary() - _ = yym4030 + yyv4078 := &x.ListMeta + yym4079 := z.DecBinary() + _ = yym4079 if false { - } else if z.HasExtensions() && z.DecExt(yyv4029) { + } else if z.HasExtensions() && z.DecExt(yyv4078) { } else { - z.DecFallback(yyv4029, false) + z.DecFallback(yyv4078, false) } } - yyj4026++ - if yyhl4026 { - yyb4026 = yyj4026 > l + yyj4075++ + if yyhl4075 { + yyb4075 = yyj4075 > l } else { - yyb4026 = r.CheckBreak() + yyb4075 = r.CheckBreak() } - if yyb4026 { + if yyb4075 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50269,26 +50806,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4031 := &x.Items - yym4032 := z.DecBinary() - _ = yym4032 + yyv4080 := &x.Items + yym4081 := z.DecBinary() + _ = yym4081 if false { } else { - h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv4031), d) + h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv4080), d) } } for { - yyj4026++ - if yyhl4026 { - yyb4026 = yyj4026 > l + yyj4075++ + if yyhl4075 { + yyb4075 = yyj4075 > l } else { - yyb4026 = r.CheckBreak() + yyb4075 = r.CheckBreak() } - if yyb4026 { + if yyb4075 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4026-1, "") + z.DecStructFieldNotFound(yyj4075-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50297,8 +50834,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4033 := z.EncBinary() - _ = yym4033 + yym4082 := z.EncBinary() + _ = yym4082 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -50310,8 +50847,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4034 := z.DecBinary() - _ = yym4034 + yym4083 := z.DecBinary() + _ = yym4083 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -50326,53 +50863,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4035 := z.EncBinary() - _ = yym4035 + yym4084 := z.EncBinary() + _ = yym4084 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4036 := !z.EncBinary() - yy2arr4036 := z.EncBasicHandle().StructToArray - var yyq4036 [6]bool - _, _, _ = yysep4036, yyq4036, yy2arr4036 - const yyr4036 bool = false - yyq4036[0] = x.Type != "" - yyq4036[1] = len(x.Max) != 0 - yyq4036[2] = len(x.Min) != 0 - yyq4036[3] = len(x.Default) != 0 - yyq4036[4] = len(x.DefaultRequest) != 0 - yyq4036[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn4036 int - if yyr4036 || yy2arr4036 { + yysep4085 := !z.EncBinary() + yy2arr4085 := z.EncBasicHandle().StructToArray + var yyq4085 [6]bool + _, _, _ = yysep4085, yyq4085, yy2arr4085 + const yyr4085 bool = false + yyq4085[0] = x.Type != "" + yyq4085[1] = len(x.Max) != 0 + yyq4085[2] = len(x.Min) != 0 + yyq4085[3] = len(x.Default) != 0 + yyq4085[4] = len(x.DefaultRequest) != 0 + yyq4085[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn4085 int + if yyr4085 || yy2arr4085 { r.EncodeArrayStart(6) } else { - yynn4036 = 0 - for _, b := range yyq4036 { + yynn4085 = 0 + for _, b := range yyq4085 { if b { - yynn4036++ + yynn4085++ } } - r.EncodeMapStart(yynn4036) - yynn4036 = 0 + r.EncodeMapStart(yynn4085) + yynn4085 = 0 } - if yyr4036 || yy2arr4036 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4036[0] { + if yyq4085[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4036[0] { + if yyq4085[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4036 || yy2arr4036 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4036[1] { + if yyq4085[1] { if x.Max == nil { r.EncodeNil() } else { @@ -50382,7 +50919,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4036[1] { + if yyq4085[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50393,9 +50930,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4036 || yy2arr4036 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4036[2] { + if yyq4085[2] { if x.Min == nil { r.EncodeNil() } else { @@ -50405,7 +50942,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4036[2] { + if yyq4085[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50416,9 +50953,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4036 || yy2arr4036 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4036[3] { + if yyq4085[3] { if x.Default == nil { r.EncodeNil() } else { @@ -50428,7 +50965,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4036[3] { + if yyq4085[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50439,9 +50976,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4036 || yy2arr4036 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4036[4] { + if yyq4085[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -50451,7 +50988,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4036[4] { + if yyq4085[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50462,9 +50999,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4036 || yy2arr4036 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4036[5] { + if yyq4085[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -50474,7 +51011,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4036[5] { + if yyq4085[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50485,7 +51022,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4036 || yy2arr4036 { + if yyr4085 || yy2arr4085 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50498,25 +51035,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4043 := z.DecBinary() - _ = yym4043 + yym4092 := z.DecBinary() + _ = yym4092 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4044 := r.ContainerType() - if yyct4044 == codecSelferValueTypeMap1234 { - yyl4044 := r.ReadMapStart() - if yyl4044 == 0 { + yyct4093 := r.ContainerType() + if yyct4093 == codecSelferValueTypeMap1234 { + yyl4093 := r.ReadMapStart() + if yyl4093 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4044, d) + x.codecDecodeSelfFromMap(yyl4093, d) } - } else if yyct4044 == codecSelferValueTypeArray1234 { - yyl4044 := r.ReadArrayStart() - if yyl4044 == 0 { + } else if yyct4093 == codecSelferValueTypeArray1234 { + yyl4093 := r.ReadArrayStart() + if yyl4093 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4044, d) + x.codecDecodeSelfFromArray(yyl4093, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50528,12 +51065,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4045Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4045Slc - var yyhl4045 bool = l >= 0 - for yyj4045 := 0; ; yyj4045++ { - if yyhl4045 { - if yyj4045 >= l { + var yys4094Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4094Slc + var yyhl4094 bool = l >= 0 + for yyj4094 := 0; ; yyj4094++ { + if yyhl4094 { + if yyj4094 >= l { break } } else { @@ -50542,10 +51079,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4045Slc = r.DecodeBytes(yys4045Slc, true, true) - yys4045 := string(yys4045Slc) + yys4094Slc = r.DecodeBytes(yys4094Slc, true, true) + yys4094 := string(yys4094Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4045 { + switch yys4094 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -50556,41 +51093,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv4047 := &x.Max - yyv4047.CodecDecodeSelf(d) + yyv4096 := &x.Max + yyv4096.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv4048 := &x.Min - yyv4048.CodecDecodeSelf(d) + yyv4097 := &x.Min + yyv4097.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv4049 := &x.Default - yyv4049.CodecDecodeSelf(d) + yyv4098 := &x.Default + yyv4098.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv4050 := &x.DefaultRequest - yyv4050.CodecDecodeSelf(d) + yyv4099 := &x.DefaultRequest + yyv4099.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv4051 := &x.MaxLimitRequestRatio - yyv4051.CodecDecodeSelf(d) + yyv4100 := &x.MaxLimitRequestRatio + yyv4100.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4045) - } // end switch yys4045 - } // end for yyj4045 + z.DecStructFieldNotFound(-1, yys4094) + } // end switch yys4094 + } // end for yyj4094 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50598,16 +51135,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4052 int - var yyb4052 bool - var yyhl4052 bool = l >= 0 - yyj4052++ - if yyhl4052 { - yyb4052 = yyj4052 > l + var yyj4101 int + var yyb4101 bool + var yyhl4101 bool = l >= 0 + yyj4101++ + if yyhl4101 { + yyb4101 = yyj4101 > l } else { - yyb4052 = r.CheckBreak() + yyb4101 = r.CheckBreak() } - if yyb4052 { + if yyb4101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50617,13 +51154,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj4052++ - if yyhl4052 { - yyb4052 = yyj4052 > l + yyj4101++ + if yyhl4101 { + yyb4101 = yyj4101 > l } else { - yyb4052 = r.CheckBreak() + yyb4101 = r.CheckBreak() } - if yyb4052 { + if yyb4101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50631,16 +51168,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv4054 := &x.Max - yyv4054.CodecDecodeSelf(d) + yyv4103 := &x.Max + yyv4103.CodecDecodeSelf(d) } - yyj4052++ - if yyhl4052 { - yyb4052 = yyj4052 > l + yyj4101++ + if yyhl4101 { + yyb4101 = yyj4101 > l } else { - yyb4052 = r.CheckBreak() + yyb4101 = r.CheckBreak() } - if yyb4052 { + if yyb4101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50648,16 +51185,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv4055 := &x.Min - yyv4055.CodecDecodeSelf(d) + yyv4104 := &x.Min + yyv4104.CodecDecodeSelf(d) } - yyj4052++ - if yyhl4052 { - yyb4052 = yyj4052 > l + yyj4101++ + if yyhl4101 { + yyb4101 = yyj4101 > l } else { - yyb4052 = r.CheckBreak() + yyb4101 = r.CheckBreak() } - if yyb4052 { + if yyb4101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50665,16 +51202,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv4056 := &x.Default - yyv4056.CodecDecodeSelf(d) + yyv4105 := &x.Default + yyv4105.CodecDecodeSelf(d) } - yyj4052++ - if yyhl4052 { - yyb4052 = yyj4052 > l + yyj4101++ + if yyhl4101 { + yyb4101 = yyj4101 > l } else { - yyb4052 = r.CheckBreak() + yyb4101 = r.CheckBreak() } - if yyb4052 { + if yyb4101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50682,16 +51219,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv4057 := &x.DefaultRequest - yyv4057.CodecDecodeSelf(d) + yyv4106 := &x.DefaultRequest + yyv4106.CodecDecodeSelf(d) } - yyj4052++ - if yyhl4052 { - yyb4052 = yyj4052 > l + yyj4101++ + if yyhl4101 { + yyb4101 = yyj4101 > l } else { - yyb4052 = r.CheckBreak() + yyb4101 = r.CheckBreak() } - if yyb4052 { + if yyb4101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50699,21 +51236,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv4058 := &x.MaxLimitRequestRatio - yyv4058.CodecDecodeSelf(d) + yyv4107 := &x.MaxLimitRequestRatio + yyv4107.CodecDecodeSelf(d) } for { - yyj4052++ - if yyhl4052 { - yyb4052 = yyj4052 > l + yyj4101++ + if yyhl4101 { + yyb4101 = yyj4101 > l } else { - yyb4052 = r.CheckBreak() + yyb4101 = r.CheckBreak() } - if yyb4052 { + if yyb4101 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4052-1, "") + z.DecStructFieldNotFound(yyj4101-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50725,36 +51262,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4059 := z.EncBinary() - _ = yym4059 + yym4108 := z.EncBinary() + _ = yym4108 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4060 := !z.EncBinary() - yy2arr4060 := z.EncBasicHandle().StructToArray - var yyq4060 [1]bool - _, _, _ = yysep4060, yyq4060, yy2arr4060 - const yyr4060 bool = false - var yynn4060 int - if yyr4060 || yy2arr4060 { + yysep4109 := !z.EncBinary() + yy2arr4109 := z.EncBasicHandle().StructToArray + var yyq4109 [1]bool + _, _, _ = yysep4109, yyq4109, yy2arr4109 + const yyr4109 bool = false + var yynn4109 int + if yyr4109 || yy2arr4109 { r.EncodeArrayStart(1) } else { - yynn4060 = 1 - for _, b := range yyq4060 { + yynn4109 = 1 + for _, b := range yyq4109 { if b { - yynn4060++ + yynn4109++ } } - r.EncodeMapStart(yynn4060) - yynn4060 = 0 + r.EncodeMapStart(yynn4109) + yynn4109 = 0 } - if yyr4060 || yy2arr4060 { + if yyr4109 || yy2arr4109 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym4062 := z.EncBinary() - _ = yym4062 + yym4111 := z.EncBinary() + _ = yym4111 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -50767,15 +51304,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym4063 := z.EncBinary() - _ = yym4063 + yym4112 := z.EncBinary() + _ = yym4112 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr4060 || yy2arr4060 { + if yyr4109 || yy2arr4109 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50788,25 +51325,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4064 := z.DecBinary() - _ = yym4064 + yym4113 := z.DecBinary() + _ = yym4113 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4065 := r.ContainerType() - if yyct4065 == codecSelferValueTypeMap1234 { - yyl4065 := r.ReadMapStart() - if yyl4065 == 0 { + yyct4114 := r.ContainerType() + if yyct4114 == codecSelferValueTypeMap1234 { + yyl4114 := r.ReadMapStart() + if yyl4114 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4065, d) + x.codecDecodeSelfFromMap(yyl4114, d) } - } else if yyct4065 == codecSelferValueTypeArray1234 { - yyl4065 := r.ReadArrayStart() - if yyl4065 == 0 { + } else if yyct4114 == codecSelferValueTypeArray1234 { + yyl4114 := r.ReadArrayStart() + if yyl4114 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4065, d) + x.codecDecodeSelfFromArray(yyl4114, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50818,12 +51355,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4066Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4066Slc - var yyhl4066 bool = l >= 0 - for yyj4066 := 0; ; yyj4066++ { - if yyhl4066 { - if yyj4066 >= l { + var yys4115Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4115Slc + var yyhl4115 bool = l >= 0 + for yyj4115 := 0; ; yyj4115++ { + if yyhl4115 { + if yyj4115 >= l { break } } else { @@ -50832,26 +51369,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4066Slc = r.DecodeBytes(yys4066Slc, true, true) - yys4066 := string(yys4066Slc) + yys4115Slc = r.DecodeBytes(yys4115Slc, true, true) + yys4115 := string(yys4115Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4066 { + switch yys4115 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv4067 := &x.Limits - yym4068 := z.DecBinary() - _ = yym4068 + yyv4116 := &x.Limits + yym4117 := z.DecBinary() + _ = yym4117 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4067), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4116), d) } } default: - z.DecStructFieldNotFound(-1, yys4066) - } // end switch yys4066 - } // end for yyj4066 + z.DecStructFieldNotFound(-1, yys4115) + } // end switch yys4115 + } // end for yyj4115 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50859,16 +51396,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4069 int - var yyb4069 bool - var yyhl4069 bool = l >= 0 - yyj4069++ - if yyhl4069 { - yyb4069 = yyj4069 > l + var yyj4118 int + var yyb4118 bool + var yyhl4118 bool = l >= 0 + yyj4118++ + if yyhl4118 { + yyb4118 = yyj4118 > l } else { - yyb4069 = r.CheckBreak() + yyb4118 = r.CheckBreak() } - if yyb4069 { + if yyb4118 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50876,26 +51413,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv4070 := &x.Limits - yym4071 := z.DecBinary() - _ = yym4071 + yyv4119 := &x.Limits + yym4120 := z.DecBinary() + _ = yym4120 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4070), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4119), d) } } for { - yyj4069++ - if yyhl4069 { - yyb4069 = yyj4069 > l + yyj4118++ + if yyhl4118 { + yyb4118 = yyj4118 > l } else { - yyb4069 = r.CheckBreak() + yyb4118 = r.CheckBreak() } - if yyb4069 { + if yyb4118 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4069-1, "") + z.DecStructFieldNotFound(yyj4118-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50907,38 +51444,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4072 := z.EncBinary() - _ = yym4072 + yym4121 := z.EncBinary() + _ = yym4121 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] = true - var yynn4073 int - if yyr4073 || yy2arr4073 { + yysep4122 := !z.EncBinary() + yy2arr4122 := z.EncBasicHandle().StructToArray + var yyq4122 [4]bool + _, _, _ = yysep4122, yyq4122, yy2arr4122 + const yyr4122 bool = false + yyq4122[0] = x.Kind != "" + yyq4122[1] = x.APIVersion != "" + yyq4122[2] = true + yyq4122[3] = true + var yynn4122 int + if yyr4122 || yy2arr4122 { r.EncodeArrayStart(4) } else { - yynn4073 = 0 - for _, b := range yyq4073 { + yynn4122 = 0 + for _, b := range yyq4122 { if b { - yynn4073++ + yynn4122++ } } - r.EncodeMapStart(yynn4073) - yynn4073 = 0 + r.EncodeMapStart(yynn4122) + yynn4122 = 0 } - if yyr4073 || yy2arr4073 { + if yyr4122 || yy2arr4122 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4073[0] { - yym4075 := z.EncBinary() - _ = yym4075 + if yyq4122[0] { + yym4124 := z.EncBinary() + _ = yym4124 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50947,23 +51484,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4073[0] { + if yyq4122[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4076 := z.EncBinary() - _ = yym4076 + yym4125 := z.EncBinary() + _ = yym4125 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4073 || yy2arr4073 { + if yyr4122 || yy2arr4122 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4073[1] { - yym4078 := z.EncBinary() - _ = yym4078 + if yyq4122[1] { + yym4127 := z.EncBinary() + _ = yym4127 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50972,53 +51509,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4073[1] { + if yyq4122[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4079 := z.EncBinary() - _ = yym4079 + yym4128 := z.EncBinary() + _ = yym4128 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4073 || yy2arr4073 { + if yyr4122 || yy2arr4122 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4073[2] { - yy4081 := &x.ObjectMeta - yy4081.CodecEncodeSelf(e) + if yyq4122[2] { + yy4130 := &x.ObjectMeta + yy4130.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4073[2] { + if yyq4122[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4082 := &x.ObjectMeta - yy4082.CodecEncodeSelf(e) + yy4131 := &x.ObjectMeta + yy4131.CodecEncodeSelf(e) } } - if yyr4073 || yy2arr4073 { + if yyr4122 || yy2arr4122 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4073[3] { - yy4084 := &x.Spec - yy4084.CodecEncodeSelf(e) + if yyq4122[3] { + yy4133 := &x.Spec + yy4133.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4073[3] { + if yyq4122[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4085 := &x.Spec - yy4085.CodecEncodeSelf(e) + yy4134 := &x.Spec + yy4134.CodecEncodeSelf(e) } } - if yyr4073 || yy2arr4073 { + if yyr4122 || yy2arr4122 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51031,25 +51568,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4086 := z.DecBinary() - _ = yym4086 + yym4135 := z.DecBinary() + _ = yym4135 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4087 := r.ContainerType() - if yyct4087 == codecSelferValueTypeMap1234 { - yyl4087 := r.ReadMapStart() - if yyl4087 == 0 { + yyct4136 := r.ContainerType() + if yyct4136 == codecSelferValueTypeMap1234 { + yyl4136 := r.ReadMapStart() + if yyl4136 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4087, d) + x.codecDecodeSelfFromMap(yyl4136, d) } - } else if yyct4087 == codecSelferValueTypeArray1234 { - yyl4087 := r.ReadArrayStart() - if yyl4087 == 0 { + } else if yyct4136 == codecSelferValueTypeArray1234 { + yyl4136 := r.ReadArrayStart() + if yyl4136 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4087, d) + x.codecDecodeSelfFromArray(yyl4136, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51061,12 +51598,12 @@ func (x *LimitRange) 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 yys4137Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4137Slc + var yyhl4137 bool = l >= 0 + for yyj4137 := 0; ; yyj4137++ { + if yyhl4137 { + if yyj4137 >= l { break } } else { @@ -51075,10 +51612,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4088Slc = r.DecodeBytes(yys4088Slc, true, true) - yys4088 := string(yys4088Slc) + yys4137Slc = r.DecodeBytes(yys4137Slc, true, true) + yys4137 := string(yys4137Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4088 { + switch yys4137 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51095,20 +51632,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4091 := &x.ObjectMeta - yyv4091.CodecDecodeSelf(d) + yyv4140 := &x.ObjectMeta + yyv4140.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv4092 := &x.Spec - yyv4092.CodecDecodeSelf(d) + yyv4141 := &x.Spec + yyv4141.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4088) - } // end switch yys4088 - } // end for yyj4088 + z.DecStructFieldNotFound(-1, yys4137) + } // end switch yys4137 + } // end for yyj4137 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51116,16 +51653,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4093 int - var yyb4093 bool - var yyhl4093 bool = l >= 0 - yyj4093++ - if yyhl4093 { - yyb4093 = yyj4093 > l + var yyj4142 int + var yyb4142 bool + var yyhl4142 bool = l >= 0 + yyj4142++ + if yyhl4142 { + yyb4142 = yyj4142 > l } else { - yyb4093 = r.CheckBreak() + yyb4142 = r.CheckBreak() } - if yyb4093 { + if yyb4142 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51135,13 +51672,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4093++ - if yyhl4093 { - yyb4093 = yyj4093 > l + yyj4142++ + if yyhl4142 { + yyb4142 = yyj4142 > l } else { - yyb4093 = r.CheckBreak() + yyb4142 = r.CheckBreak() } - if yyb4093 { + if yyb4142 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51151,13 +51688,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4093++ - if yyhl4093 { - yyb4093 = yyj4093 > l + yyj4142++ + if yyhl4142 { + yyb4142 = yyj4142 > l } else { - yyb4093 = r.CheckBreak() + yyb4142 = r.CheckBreak() } - if yyb4093 { + if yyb4142 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51165,16 +51702,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4096 := &x.ObjectMeta - yyv4096.CodecDecodeSelf(d) + yyv4145 := &x.ObjectMeta + yyv4145.CodecDecodeSelf(d) } - yyj4093++ - if yyhl4093 { - yyb4093 = yyj4093 > l + yyj4142++ + if yyhl4142 { + yyb4142 = yyj4142 > l } else { - yyb4093 = r.CheckBreak() + yyb4142 = r.CheckBreak() } - if yyb4093 { + if yyb4142 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51182,21 +51719,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv4097 := &x.Spec - yyv4097.CodecDecodeSelf(d) + yyv4146 := &x.Spec + yyv4146.CodecDecodeSelf(d) } for { - yyj4093++ - if yyhl4093 { - yyb4093 = yyj4093 > l + yyj4142++ + if yyhl4142 { + yyb4142 = yyj4142 > l } else { - yyb4093 = r.CheckBreak() + yyb4142 = r.CheckBreak() } - if yyb4093 { + if yyb4142 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4093-1, "") + z.DecStructFieldNotFound(yyj4142-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51208,37 +51745,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4098 := z.EncBinary() - _ = yym4098 + yym4147 := z.EncBinary() + _ = yym4147 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4099 := !z.EncBinary() - yy2arr4099 := z.EncBasicHandle().StructToArray - var yyq4099 [4]bool - _, _, _ = yysep4099, yyq4099, yy2arr4099 - const yyr4099 bool = false - yyq4099[0] = x.Kind != "" - yyq4099[1] = x.APIVersion != "" - yyq4099[2] = true - var yynn4099 int - if yyr4099 || yy2arr4099 { + yysep4148 := !z.EncBinary() + yy2arr4148 := z.EncBasicHandle().StructToArray + var yyq4148 [4]bool + _, _, _ = yysep4148, yyq4148, yy2arr4148 + const yyr4148 bool = false + yyq4148[0] = x.Kind != "" + yyq4148[1] = x.APIVersion != "" + yyq4148[2] = true + var yynn4148 int + if yyr4148 || yy2arr4148 { r.EncodeArrayStart(4) } else { - yynn4099 = 1 - for _, b := range yyq4099 { + yynn4148 = 1 + for _, b := range yyq4148 { if b { - yynn4099++ + yynn4148++ } } - r.EncodeMapStart(yynn4099) - yynn4099 = 0 + r.EncodeMapStart(yynn4148) + yynn4148 = 0 } - if yyr4099 || yy2arr4099 { + if yyr4148 || yy2arr4148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4099[0] { - yym4101 := z.EncBinary() - _ = yym4101 + if yyq4148[0] { + yym4150 := z.EncBinary() + _ = yym4150 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51247,23 +51784,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4099[0] { + if yyq4148[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4102 := z.EncBinary() - _ = yym4102 + yym4151 := z.EncBinary() + _ = yym4151 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4099 || yy2arr4099 { + if yyr4148 || yy2arr4148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4099[1] { - yym4104 := z.EncBinary() - _ = yym4104 + if yyq4148[1] { + yym4153 := z.EncBinary() + _ = yym4153 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51272,54 +51809,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4099[1] { + if yyq4148[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4105 := z.EncBinary() - _ = yym4105 + yym4154 := z.EncBinary() + _ = yym4154 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4099 || yy2arr4099 { + if yyr4148 || yy2arr4148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4099[2] { - yy4107 := &x.ListMeta - yym4108 := z.EncBinary() - _ = yym4108 + if yyq4148[2] { + yy4156 := &x.ListMeta + yym4157 := z.EncBinary() + _ = yym4157 if false { - } else if z.HasExtensions() && z.EncExt(yy4107) { + } else if z.HasExtensions() && z.EncExt(yy4156) { } else { - z.EncFallback(yy4107) + z.EncFallback(yy4156) } } else { r.EncodeNil() } } else { - if yyq4099[2] { + if yyq4148[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4109 := &x.ListMeta - yym4110 := z.EncBinary() - _ = yym4110 + yy4158 := &x.ListMeta + yym4159 := z.EncBinary() + _ = yym4159 if false { - } else if z.HasExtensions() && z.EncExt(yy4109) { + } else if z.HasExtensions() && z.EncExt(yy4158) { } else { - z.EncFallback(yy4109) + z.EncFallback(yy4158) } } } - if yyr4099 || yy2arr4099 { + if yyr4148 || yy2arr4148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4112 := z.EncBinary() - _ = yym4112 + yym4161 := z.EncBinary() + _ = yym4161 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -51332,15 +51869,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4113 := z.EncBinary() - _ = yym4113 + yym4162 := z.EncBinary() + _ = yym4162 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr4099 || yy2arr4099 { + if yyr4148 || yy2arr4148 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51353,25 +51890,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4114 := z.DecBinary() - _ = yym4114 + yym4163 := z.DecBinary() + _ = yym4163 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4115 := r.ContainerType() - if yyct4115 == codecSelferValueTypeMap1234 { - yyl4115 := r.ReadMapStart() - if yyl4115 == 0 { + yyct4164 := r.ContainerType() + if yyct4164 == codecSelferValueTypeMap1234 { + yyl4164 := r.ReadMapStart() + if yyl4164 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4115, d) + x.codecDecodeSelfFromMap(yyl4164, d) } - } else if yyct4115 == codecSelferValueTypeArray1234 { - yyl4115 := r.ReadArrayStart() - if yyl4115 == 0 { + } else if yyct4164 == codecSelferValueTypeArray1234 { + yyl4164 := r.ReadArrayStart() + if yyl4164 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4115, d) + x.codecDecodeSelfFromArray(yyl4164, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51383,12 +51920,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4116Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4116Slc - var yyhl4116 bool = l >= 0 - for yyj4116 := 0; ; yyj4116++ { - if yyhl4116 { - if yyj4116 >= l { + var yys4165Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4165Slc + var yyhl4165 bool = l >= 0 + for yyj4165 := 0; ; yyj4165++ { + if yyhl4165 { + if yyj4165 >= l { break } } else { @@ -51397,10 +51934,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4116Slc = r.DecodeBytes(yys4116Slc, true, true) - yys4116 := string(yys4116Slc) + yys4165Slc = r.DecodeBytes(yys4165Slc, true, true) + yys4165 := string(yys4165Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4116 { + switch yys4165 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51417,31 +51954,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4119 := &x.ListMeta - yym4120 := z.DecBinary() - _ = yym4120 + yyv4168 := &x.ListMeta + yym4169 := z.DecBinary() + _ = yym4169 if false { - } else if z.HasExtensions() && z.DecExt(yyv4119) { + } else if z.HasExtensions() && z.DecExt(yyv4168) { } else { - z.DecFallback(yyv4119, false) + z.DecFallback(yyv4168, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4121 := &x.Items - yym4122 := z.DecBinary() - _ = yym4122 + yyv4170 := &x.Items + yym4171 := z.DecBinary() + _ = yym4171 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4121), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4170), d) } } default: - z.DecStructFieldNotFound(-1, yys4116) - } // end switch yys4116 - } // end for yyj4116 + z.DecStructFieldNotFound(-1, yys4165) + } // end switch yys4165 + } // end for yyj4165 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51449,16 +51986,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4123 int - var yyb4123 bool - var yyhl4123 bool = l >= 0 - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + var yyj4172 int + var yyb4172 bool + var yyhl4172 bool = l >= 0 + yyj4172++ + if yyhl4172 { + yyb4172 = yyj4172 > l } else { - yyb4123 = r.CheckBreak() + yyb4172 = r.CheckBreak() } - if yyb4123 { + if yyb4172 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51468,13 +52005,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + yyj4172++ + if yyhl4172 { + yyb4172 = yyj4172 > l } else { - yyb4123 = r.CheckBreak() + yyb4172 = r.CheckBreak() } - if yyb4123 { + if yyb4172 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51484,13 +52021,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + yyj4172++ + if yyhl4172 { + yyb4172 = yyj4172 > l } else { - yyb4123 = r.CheckBreak() + yyb4172 = r.CheckBreak() } - if yyb4123 { + if yyb4172 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51498,22 +52035,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4126 := &x.ListMeta - yym4127 := z.DecBinary() - _ = yym4127 + yyv4175 := &x.ListMeta + yym4176 := z.DecBinary() + _ = yym4176 if false { - } else if z.HasExtensions() && z.DecExt(yyv4126) { + } else if z.HasExtensions() && z.DecExt(yyv4175) { } else { - z.DecFallback(yyv4126, false) + z.DecFallback(yyv4175, false) } } - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + yyj4172++ + if yyhl4172 { + yyb4172 = yyj4172 > l } else { - yyb4123 = r.CheckBreak() + yyb4172 = r.CheckBreak() } - if yyb4123 { + if yyb4172 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51521,26 +52058,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4128 := &x.Items - yym4129 := z.DecBinary() - _ = yym4129 + yyv4177 := &x.Items + yym4178 := z.DecBinary() + _ = yym4178 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4128), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4177), d) } } for { - yyj4123++ - if yyhl4123 { - yyb4123 = yyj4123 > l + yyj4172++ + if yyhl4172 { + yyb4172 = yyj4172 > l } else { - yyb4123 = r.CheckBreak() + yyb4172 = r.CheckBreak() } - if yyb4123 { + if yyb4172 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4123-1, "") + z.DecStructFieldNotFound(yyj4172-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51549,8 +52086,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4130 := z.EncBinary() - _ = yym4130 + yym4179 := z.EncBinary() + _ = yym4179 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -51562,8 +52099,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4131 := z.DecBinary() - _ = yym4131 + yym4180 := z.DecBinary() + _ = yym4180 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -51578,34 +52115,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4132 := z.EncBinary() - _ = yym4132 + yym4181 := z.EncBinary() + _ = yym4181 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4133 := !z.EncBinary() - yy2arr4133 := z.EncBasicHandle().StructToArray - var yyq4133 [2]bool - _, _, _ = yysep4133, yyq4133, yy2arr4133 - const yyr4133 bool = false - yyq4133[0] = len(x.Hard) != 0 - yyq4133[1] = len(x.Scopes) != 0 - var yynn4133 int - if yyr4133 || yy2arr4133 { + yysep4182 := !z.EncBinary() + yy2arr4182 := z.EncBasicHandle().StructToArray + var yyq4182 [2]bool + _, _, _ = yysep4182, yyq4182, yy2arr4182 + const yyr4182 bool = false + yyq4182[0] = len(x.Hard) != 0 + yyq4182[1] = len(x.Scopes) != 0 + var yynn4182 int + if yyr4182 || yy2arr4182 { r.EncodeArrayStart(2) } else { - yynn4133 = 0 - for _, b := range yyq4133 { + yynn4182 = 0 + for _, b := range yyq4182 { if b { - yynn4133++ + yynn4182++ } } - r.EncodeMapStart(yynn4133) - yynn4133 = 0 + r.EncodeMapStart(yynn4182) + yynn4182 = 0 } - if yyr4133 || yy2arr4133 { + if yyr4182 || yy2arr4182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4133[0] { + if yyq4182[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -51615,7 +52152,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4133[0] { + if yyq4182[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -51626,14 +52163,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4133 || yy2arr4133 { + if yyr4182 || yy2arr4182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4133[1] { + if yyq4182[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym4136 := z.EncBinary() - _ = yym4136 + yym4185 := z.EncBinary() + _ = yym4185 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -51643,15 +52180,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4133[1] { + if yyq4182[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym4137 := z.EncBinary() - _ = yym4137 + yym4186 := z.EncBinary() + _ = yym4186 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -51659,7 +52196,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4133 || yy2arr4133 { + if yyr4182 || yy2arr4182 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51672,25 +52209,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4138 := z.DecBinary() - _ = yym4138 + yym4187 := z.DecBinary() + _ = yym4187 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4139 := r.ContainerType() - if yyct4139 == codecSelferValueTypeMap1234 { - yyl4139 := r.ReadMapStart() - if yyl4139 == 0 { + yyct4188 := r.ContainerType() + if yyct4188 == codecSelferValueTypeMap1234 { + yyl4188 := r.ReadMapStart() + if yyl4188 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4139, d) + x.codecDecodeSelfFromMap(yyl4188, d) } - } else if yyct4139 == codecSelferValueTypeArray1234 { - yyl4139 := r.ReadArrayStart() - if yyl4139 == 0 { + } else if yyct4188 == codecSelferValueTypeArray1234 { + yyl4188 := r.ReadArrayStart() + if yyl4188 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4139, d) + x.codecDecodeSelfFromArray(yyl4188, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51702,12 +52239,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4140Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4140Slc - var yyhl4140 bool = l >= 0 - for yyj4140 := 0; ; yyj4140++ { - if yyhl4140 { - if yyj4140 >= l { + var yys4189Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4189Slc + var yyhl4189 bool = l >= 0 + for yyj4189 := 0; ; yyj4189++ { + if yyhl4189 { + if yyj4189 >= l { break } } else { @@ -51716,33 +52253,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4140Slc = r.DecodeBytes(yys4140Slc, true, true) - yys4140 := string(yys4140Slc) + yys4189Slc = r.DecodeBytes(yys4189Slc, true, true) + yys4189 := string(yys4189Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4140 { + switch yys4189 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4141 := &x.Hard - yyv4141.CodecDecodeSelf(d) + yyv4190 := &x.Hard + yyv4190.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4142 := &x.Scopes - yym4143 := z.DecBinary() - _ = yym4143 + yyv4191 := &x.Scopes + yym4192 := z.DecBinary() + _ = yym4192 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4142), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4191), d) } } default: - z.DecStructFieldNotFound(-1, yys4140) - } // end switch yys4140 - } // end for yyj4140 + z.DecStructFieldNotFound(-1, yys4189) + } // end switch yys4189 + } // end for yyj4189 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51750,16 +52287,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4144 int - var yyb4144 bool - var yyhl4144 bool = l >= 0 - yyj4144++ - if yyhl4144 { - yyb4144 = yyj4144 > l + var yyj4193 int + var yyb4193 bool + var yyhl4193 bool = l >= 0 + yyj4193++ + if yyhl4193 { + yyb4193 = yyj4193 > l } else { - yyb4144 = r.CheckBreak() + yyb4193 = r.CheckBreak() } - if yyb4144 { + if yyb4193 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51767,16 +52304,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4145 := &x.Hard - yyv4145.CodecDecodeSelf(d) + yyv4194 := &x.Hard + yyv4194.CodecDecodeSelf(d) } - yyj4144++ - if yyhl4144 { - yyb4144 = yyj4144 > l + yyj4193++ + if yyhl4193 { + yyb4193 = yyj4193 > l } else { - yyb4144 = r.CheckBreak() + yyb4193 = r.CheckBreak() } - if yyb4144 { + if yyb4193 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51784,26 +52321,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4146 := &x.Scopes - yym4147 := z.DecBinary() - _ = yym4147 + yyv4195 := &x.Scopes + yym4196 := z.DecBinary() + _ = yym4196 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4146), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4195), d) } } for { - yyj4144++ - if yyhl4144 { - yyb4144 = yyj4144 > l + yyj4193++ + if yyhl4193 { + yyb4193 = yyj4193 > l } else { - yyb4144 = r.CheckBreak() + yyb4193 = r.CheckBreak() } - if yyb4144 { + if yyb4193 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4144-1, "") + z.DecStructFieldNotFound(yyj4193-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51815,34 +52352,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4148 := z.EncBinary() - _ = yym4148 + yym4197 := z.EncBinary() + _ = yym4197 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4149 := !z.EncBinary() - yy2arr4149 := z.EncBasicHandle().StructToArray - var yyq4149 [2]bool - _, _, _ = yysep4149, yyq4149, yy2arr4149 - const yyr4149 bool = false - yyq4149[0] = len(x.Hard) != 0 - yyq4149[1] = len(x.Used) != 0 - var yynn4149 int - if yyr4149 || yy2arr4149 { + yysep4198 := !z.EncBinary() + yy2arr4198 := z.EncBasicHandle().StructToArray + var yyq4198 [2]bool + _, _, _ = yysep4198, yyq4198, yy2arr4198 + const yyr4198 bool = false + yyq4198[0] = len(x.Hard) != 0 + yyq4198[1] = len(x.Used) != 0 + var yynn4198 int + if yyr4198 || yy2arr4198 { r.EncodeArrayStart(2) } else { - yynn4149 = 0 - for _, b := range yyq4149 { + yynn4198 = 0 + for _, b := range yyq4198 { if b { - yynn4149++ + yynn4198++ } } - r.EncodeMapStart(yynn4149) - yynn4149 = 0 + r.EncodeMapStart(yynn4198) + yynn4198 = 0 } - if yyr4149 || yy2arr4149 { + if yyr4198 || yy2arr4198 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4149[0] { + if yyq4198[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -51852,7 +52389,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4149[0] { + if yyq4198[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -51863,9 +52400,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4149 || yy2arr4149 { + if yyr4198 || yy2arr4198 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4149[1] { + if yyq4198[1] { if x.Used == nil { r.EncodeNil() } else { @@ -51875,7 +52412,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4149[1] { + if yyq4198[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -51886,7 +52423,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4149 || yy2arr4149 { + if yyr4198 || yy2arr4198 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51899,25 +52436,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4152 := z.DecBinary() - _ = yym4152 + yym4201 := z.DecBinary() + _ = yym4201 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4153 := r.ContainerType() - if yyct4153 == codecSelferValueTypeMap1234 { - yyl4153 := r.ReadMapStart() - if yyl4153 == 0 { + yyct4202 := r.ContainerType() + if yyct4202 == codecSelferValueTypeMap1234 { + yyl4202 := r.ReadMapStart() + if yyl4202 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4153, d) + x.codecDecodeSelfFromMap(yyl4202, d) } - } else if yyct4153 == codecSelferValueTypeArray1234 { - yyl4153 := r.ReadArrayStart() - if yyl4153 == 0 { + } else if yyct4202 == codecSelferValueTypeArray1234 { + yyl4202 := r.ReadArrayStart() + if yyl4202 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4153, d) + x.codecDecodeSelfFromArray(yyl4202, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51929,12 +52466,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4154Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4154Slc - var yyhl4154 bool = l >= 0 - for yyj4154 := 0; ; yyj4154++ { - if yyhl4154 { - if yyj4154 >= l { + var yys4203Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4203Slc + var yyhl4203 bool = l >= 0 + for yyj4203 := 0; ; yyj4203++ { + if yyhl4203 { + if yyj4203 >= l { break } } else { @@ -51943,28 +52480,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4154Slc = r.DecodeBytes(yys4154Slc, true, true) - yys4154 := string(yys4154Slc) + yys4203Slc = r.DecodeBytes(yys4203Slc, true, true) + yys4203 := string(yys4203Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4154 { + switch yys4203 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4155 := &x.Hard - yyv4155.CodecDecodeSelf(d) + yyv4204 := &x.Hard + yyv4204.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4156 := &x.Used - yyv4156.CodecDecodeSelf(d) + yyv4205 := &x.Used + yyv4205.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4154) - } // end switch yys4154 - } // end for yyj4154 + z.DecStructFieldNotFound(-1, yys4203) + } // end switch yys4203 + } // end for yyj4203 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51972,16 +52509,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4157 int - var yyb4157 bool - var yyhl4157 bool = l >= 0 - yyj4157++ - if yyhl4157 { - yyb4157 = yyj4157 > l + var yyj4206 int + var yyb4206 bool + var yyhl4206 bool = l >= 0 + yyj4206++ + if yyhl4206 { + yyb4206 = yyj4206 > l } else { - yyb4157 = r.CheckBreak() + yyb4206 = r.CheckBreak() } - if yyb4157 { + if yyb4206 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51989,16 +52526,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4158 := &x.Hard - yyv4158.CodecDecodeSelf(d) + yyv4207 := &x.Hard + yyv4207.CodecDecodeSelf(d) } - yyj4157++ - if yyhl4157 { - yyb4157 = yyj4157 > l + yyj4206++ + if yyhl4206 { + yyb4206 = yyj4206 > l } else { - yyb4157 = r.CheckBreak() + yyb4206 = r.CheckBreak() } - if yyb4157 { + if yyb4206 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52006,21 +52543,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4159 := &x.Used - yyv4159.CodecDecodeSelf(d) + yyv4208 := &x.Used + yyv4208.CodecDecodeSelf(d) } for { - yyj4157++ - if yyhl4157 { - yyb4157 = yyj4157 > l + yyj4206++ + if yyhl4206 { + yyb4206 = yyj4206 > l } else { - yyb4157 = r.CheckBreak() + yyb4206 = r.CheckBreak() } - if yyb4157 { + if yyb4206 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4157-1, "") + z.DecStructFieldNotFound(yyj4206-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52032,39 +52569,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4160 := z.EncBinary() - _ = yym4160 + yym4209 := z.EncBinary() + _ = yym4209 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4161 := !z.EncBinary() - yy2arr4161 := z.EncBasicHandle().StructToArray - var yyq4161 [5]bool - _, _, _ = yysep4161, yyq4161, yy2arr4161 - const yyr4161 bool = false - yyq4161[0] = x.Kind != "" - yyq4161[1] = x.APIVersion != "" - yyq4161[2] = true - yyq4161[3] = true - yyq4161[4] = true - var yynn4161 int - if yyr4161 || yy2arr4161 { + yysep4210 := !z.EncBinary() + yy2arr4210 := z.EncBasicHandle().StructToArray + var yyq4210 [5]bool + _, _, _ = yysep4210, yyq4210, yy2arr4210 + const yyr4210 bool = false + yyq4210[0] = x.Kind != "" + yyq4210[1] = x.APIVersion != "" + yyq4210[2] = true + yyq4210[3] = true + yyq4210[4] = true + var yynn4210 int + if yyr4210 || yy2arr4210 { r.EncodeArrayStart(5) } else { - yynn4161 = 0 - for _, b := range yyq4161 { + yynn4210 = 0 + for _, b := range yyq4210 { if b { - yynn4161++ + yynn4210++ } } - r.EncodeMapStart(yynn4161) - yynn4161 = 0 + r.EncodeMapStart(yynn4210) + yynn4210 = 0 } - if yyr4161 || yy2arr4161 { + if yyr4210 || yy2arr4210 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4161[0] { - yym4163 := z.EncBinary() - _ = yym4163 + if yyq4210[0] { + yym4212 := z.EncBinary() + _ = yym4212 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52073,23 +52610,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4161[0] { + if yyq4210[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4164 := z.EncBinary() - _ = yym4164 + yym4213 := z.EncBinary() + _ = yym4213 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4161 || yy2arr4161 { + if yyr4210 || yy2arr4210 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4161[1] { - yym4166 := z.EncBinary() - _ = yym4166 + if yyq4210[1] { + yym4215 := z.EncBinary() + _ = yym4215 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52098,70 +52635,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4161[1] { + if yyq4210[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4167 := z.EncBinary() - _ = yym4167 + yym4216 := z.EncBinary() + _ = yym4216 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4161 || yy2arr4161 { + if yyr4210 || yy2arr4210 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4161[2] { - yy4169 := &x.ObjectMeta - yy4169.CodecEncodeSelf(e) + if yyq4210[2] { + yy4218 := &x.ObjectMeta + yy4218.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4161[2] { + if yyq4210[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4170 := &x.ObjectMeta - yy4170.CodecEncodeSelf(e) + yy4219 := &x.ObjectMeta + yy4219.CodecEncodeSelf(e) } } - if yyr4161 || yy2arr4161 { + if yyr4210 || yy2arr4210 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4161[3] { - yy4172 := &x.Spec - yy4172.CodecEncodeSelf(e) + if yyq4210[3] { + yy4221 := &x.Spec + yy4221.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4161[3] { + if yyq4210[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4173 := &x.Spec - yy4173.CodecEncodeSelf(e) + yy4222 := &x.Spec + yy4222.CodecEncodeSelf(e) } } - if yyr4161 || yy2arr4161 { + if yyr4210 || yy2arr4210 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4161[4] { - yy4175 := &x.Status - yy4175.CodecEncodeSelf(e) + if yyq4210[4] { + yy4224 := &x.Status + yy4224.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4161[4] { + if yyq4210[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4176 := &x.Status - yy4176.CodecEncodeSelf(e) + yy4225 := &x.Status + yy4225.CodecEncodeSelf(e) } } - if yyr4161 || yy2arr4161 { + if yyr4210 || yy2arr4210 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52174,25 +52711,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4177 := z.DecBinary() - _ = yym4177 + yym4226 := z.DecBinary() + _ = yym4226 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4178 := r.ContainerType() - if yyct4178 == codecSelferValueTypeMap1234 { - yyl4178 := r.ReadMapStart() - if yyl4178 == 0 { + yyct4227 := r.ContainerType() + if yyct4227 == codecSelferValueTypeMap1234 { + yyl4227 := r.ReadMapStart() + if yyl4227 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4178, d) + x.codecDecodeSelfFromMap(yyl4227, d) } - } else if yyct4178 == codecSelferValueTypeArray1234 { - yyl4178 := r.ReadArrayStart() - if yyl4178 == 0 { + } else if yyct4227 == codecSelferValueTypeArray1234 { + yyl4227 := r.ReadArrayStart() + if yyl4227 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4178, d) + x.codecDecodeSelfFromArray(yyl4227, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52204,12 +52741,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4179Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4179Slc - var yyhl4179 bool = l >= 0 - for yyj4179 := 0; ; yyj4179++ { - if yyhl4179 { - if yyj4179 >= 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 { @@ -52218,10 +52755,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4179Slc = r.DecodeBytes(yys4179Slc, true, true) - yys4179 := string(yys4179Slc) + yys4228Slc = r.DecodeBytes(yys4228Slc, true, true) + yys4228 := string(yys4228Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4179 { + switch yys4228 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52238,27 +52775,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4182 := &x.ObjectMeta - yyv4182.CodecDecodeSelf(d) + yyv4231 := &x.ObjectMeta + yyv4231.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4183 := &x.Spec - yyv4183.CodecDecodeSelf(d) + yyv4232 := &x.Spec + yyv4232.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4184 := &x.Status - yyv4184.CodecDecodeSelf(d) + yyv4233 := &x.Status + yyv4233.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4179) - } // end switch yys4179 - } // end for yyj4179 + z.DecStructFieldNotFound(-1, yys4228) + } // end switch yys4228 + } // end for yyj4228 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52266,16 +52803,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4185 int - var yyb4185 bool - var yyhl4185 bool = l >= 0 - yyj4185++ - if yyhl4185 { - yyb4185 = yyj4185 > l + var yyj4234 int + var yyb4234 bool + var yyhl4234 bool = l >= 0 + yyj4234++ + if yyhl4234 { + yyb4234 = yyj4234 > l } else { - yyb4185 = r.CheckBreak() + yyb4234 = r.CheckBreak() } - if yyb4185 { + if yyb4234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52285,13 +52822,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4185++ - if yyhl4185 { - yyb4185 = yyj4185 > l + yyj4234++ + if yyhl4234 { + yyb4234 = yyj4234 > l } else { - yyb4185 = r.CheckBreak() + yyb4234 = r.CheckBreak() } - if yyb4185 { + if yyb4234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52301,13 +52838,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4185++ - if yyhl4185 { - yyb4185 = yyj4185 > l + yyj4234++ + if yyhl4234 { + yyb4234 = yyj4234 > l } else { - yyb4185 = r.CheckBreak() + yyb4234 = r.CheckBreak() } - if yyb4185 { + if yyb4234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52315,16 +52852,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4188 := &x.ObjectMeta - yyv4188.CodecDecodeSelf(d) + yyv4237 := &x.ObjectMeta + yyv4237.CodecDecodeSelf(d) } - yyj4185++ - if yyhl4185 { - yyb4185 = yyj4185 > l + yyj4234++ + if yyhl4234 { + yyb4234 = yyj4234 > l } else { - yyb4185 = r.CheckBreak() + yyb4234 = r.CheckBreak() } - if yyb4185 { + if yyb4234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52332,16 +52869,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4189 := &x.Spec - yyv4189.CodecDecodeSelf(d) + yyv4238 := &x.Spec + yyv4238.CodecDecodeSelf(d) } - yyj4185++ - if yyhl4185 { - yyb4185 = yyj4185 > l + yyj4234++ + if yyhl4234 { + yyb4234 = yyj4234 > l } else { - yyb4185 = r.CheckBreak() + yyb4234 = r.CheckBreak() } - if yyb4185 { + if yyb4234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52349,21 +52886,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4190 := &x.Status - yyv4190.CodecDecodeSelf(d) + yyv4239 := &x.Status + yyv4239.CodecDecodeSelf(d) } for { - yyj4185++ - if yyhl4185 { - yyb4185 = yyj4185 > l + yyj4234++ + if yyhl4234 { + yyb4234 = yyj4234 > l } else { - yyb4185 = r.CheckBreak() + yyb4234 = r.CheckBreak() } - if yyb4185 { + if yyb4234 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4185-1, "") + z.DecStructFieldNotFound(yyj4234-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52375,37 +52912,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4191 := z.EncBinary() - _ = yym4191 + yym4240 := z.EncBinary() + _ = yym4240 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4192 := !z.EncBinary() - yy2arr4192 := z.EncBasicHandle().StructToArray - var yyq4192 [4]bool - _, _, _ = yysep4192, yyq4192, yy2arr4192 - const yyr4192 bool = false - yyq4192[0] = x.Kind != "" - yyq4192[1] = x.APIVersion != "" - yyq4192[2] = true - var yynn4192 int - if yyr4192 || yy2arr4192 { + yysep4241 := !z.EncBinary() + yy2arr4241 := z.EncBasicHandle().StructToArray + var yyq4241 [4]bool + _, _, _ = yysep4241, yyq4241, yy2arr4241 + const yyr4241 bool = false + yyq4241[0] = x.Kind != "" + yyq4241[1] = x.APIVersion != "" + yyq4241[2] = true + var yynn4241 int + if yyr4241 || yy2arr4241 { r.EncodeArrayStart(4) } else { - yynn4192 = 1 - for _, b := range yyq4192 { + yynn4241 = 1 + for _, b := range yyq4241 { if b { - yynn4192++ + yynn4241++ } } - r.EncodeMapStart(yynn4192) - yynn4192 = 0 + r.EncodeMapStart(yynn4241) + yynn4241 = 0 } - if yyr4192 || yy2arr4192 { + if yyr4241 || yy2arr4241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4192[0] { - yym4194 := z.EncBinary() - _ = yym4194 + if yyq4241[0] { + yym4243 := z.EncBinary() + _ = yym4243 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52414,23 +52951,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4192[0] { + if yyq4241[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4195 := z.EncBinary() - _ = yym4195 + yym4244 := z.EncBinary() + _ = yym4244 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4192 || yy2arr4192 { + if yyr4241 || yy2arr4241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4192[1] { - yym4197 := z.EncBinary() - _ = yym4197 + if yyq4241[1] { + yym4246 := z.EncBinary() + _ = yym4246 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52439,54 +52976,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4192[1] { + if yyq4241[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4198 := z.EncBinary() - _ = yym4198 + yym4247 := z.EncBinary() + _ = yym4247 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4192 || yy2arr4192 { + if yyr4241 || yy2arr4241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4192[2] { - yy4200 := &x.ListMeta - yym4201 := z.EncBinary() - _ = yym4201 + if yyq4241[2] { + yy4249 := &x.ListMeta + yym4250 := z.EncBinary() + _ = yym4250 if false { - } else if z.HasExtensions() && z.EncExt(yy4200) { + } else if z.HasExtensions() && z.EncExt(yy4249) { } else { - z.EncFallback(yy4200) + z.EncFallback(yy4249) } } else { r.EncodeNil() } } else { - if yyq4192[2] { + if yyq4241[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4202 := &x.ListMeta - yym4203 := z.EncBinary() - _ = yym4203 + yy4251 := &x.ListMeta + yym4252 := z.EncBinary() + _ = yym4252 if false { - } else if z.HasExtensions() && z.EncExt(yy4202) { + } else if z.HasExtensions() && z.EncExt(yy4251) { } else { - z.EncFallback(yy4202) + z.EncFallback(yy4251) } } } - if yyr4192 || yy2arr4192 { + if yyr4241 || yy2arr4241 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4205 := z.EncBinary() - _ = yym4205 + yym4254 := z.EncBinary() + _ = yym4254 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -52499,15 +53036,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4206 := z.EncBinary() - _ = yym4206 + yym4255 := z.EncBinary() + _ = yym4255 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr4192 || yy2arr4192 { + if yyr4241 || yy2arr4241 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52520,25 +53057,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4207 := z.DecBinary() - _ = yym4207 + yym4256 := z.DecBinary() + _ = yym4256 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4208 := r.ContainerType() - if yyct4208 == codecSelferValueTypeMap1234 { - yyl4208 := r.ReadMapStart() - if yyl4208 == 0 { + yyct4257 := r.ContainerType() + if yyct4257 == codecSelferValueTypeMap1234 { + yyl4257 := r.ReadMapStart() + if yyl4257 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4208, d) + x.codecDecodeSelfFromMap(yyl4257, d) } - } else if yyct4208 == codecSelferValueTypeArray1234 { - yyl4208 := r.ReadArrayStart() - if yyl4208 == 0 { + } else if yyct4257 == codecSelferValueTypeArray1234 { + yyl4257 := r.ReadArrayStart() + if yyl4257 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4208, d) + x.codecDecodeSelfFromArray(yyl4257, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52550,12 +53087,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4209Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4209Slc - var yyhl4209 bool = l >= 0 - for yyj4209 := 0; ; yyj4209++ { - if yyhl4209 { - if yyj4209 >= l { + var yys4258Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4258Slc + var yyhl4258 bool = l >= 0 + for yyj4258 := 0; ; yyj4258++ { + if yyhl4258 { + if yyj4258 >= l { break } } else { @@ -52564,10 +53101,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4209Slc = r.DecodeBytes(yys4209Slc, true, true) - yys4209 := string(yys4209Slc) + yys4258Slc = r.DecodeBytes(yys4258Slc, true, true) + yys4258 := string(yys4258Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4209 { + switch yys4258 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52584,31 +53121,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4212 := &x.ListMeta - yym4213 := z.DecBinary() - _ = yym4213 + yyv4261 := &x.ListMeta + yym4262 := z.DecBinary() + _ = yym4262 if false { - } else if z.HasExtensions() && z.DecExt(yyv4212) { + } else if z.HasExtensions() && z.DecExt(yyv4261) { } else { - z.DecFallback(yyv4212, false) + z.DecFallback(yyv4261, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4214 := &x.Items - yym4215 := z.DecBinary() - _ = yym4215 + yyv4263 := &x.Items + yym4264 := z.DecBinary() + _ = yym4264 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4214), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4263), d) } } default: - z.DecStructFieldNotFound(-1, yys4209) - } // end switch yys4209 - } // end for yyj4209 + z.DecStructFieldNotFound(-1, yys4258) + } // end switch yys4258 + } // end for yyj4258 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52616,16 +53153,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4216 int - var yyb4216 bool - var yyhl4216 bool = l >= 0 - yyj4216++ - if yyhl4216 { - yyb4216 = yyj4216 > l + var yyj4265 int + var yyb4265 bool + var yyhl4265 bool = l >= 0 + yyj4265++ + if yyhl4265 { + yyb4265 = yyj4265 > l } else { - yyb4216 = r.CheckBreak() + yyb4265 = r.CheckBreak() } - if yyb4216 { + if yyb4265 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52635,13 +53172,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj4216++ - if yyhl4216 { - yyb4216 = yyj4216 > l + yyj4265++ + if yyhl4265 { + yyb4265 = yyj4265 > l } else { - yyb4216 = r.CheckBreak() + yyb4265 = r.CheckBreak() } - if yyb4216 { + if yyb4265 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52651,13 +53188,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj4216++ - if yyhl4216 { - yyb4216 = yyj4216 > l + yyj4265++ + if yyhl4265 { + yyb4265 = yyj4265 > l } else { - yyb4216 = r.CheckBreak() + yyb4265 = r.CheckBreak() } - if yyb4216 { + if yyb4265 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52665,22 +53202,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4219 := &x.ListMeta - yym4220 := z.DecBinary() - _ = yym4220 + yyv4268 := &x.ListMeta + yym4269 := z.DecBinary() + _ = yym4269 if false { - } else if z.HasExtensions() && z.DecExt(yyv4219) { + } else if z.HasExtensions() && z.DecExt(yyv4268) { } else { - z.DecFallback(yyv4219, false) + z.DecFallback(yyv4268, false) } } - yyj4216++ - if yyhl4216 { - yyb4216 = yyj4216 > l + yyj4265++ + if yyhl4265 { + yyb4265 = yyj4265 > l } else { - yyb4216 = r.CheckBreak() + yyb4265 = r.CheckBreak() } - if yyb4216 { + if yyb4265 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52688,26 +53225,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4221 := &x.Items - yym4222 := z.DecBinary() - _ = yym4222 + yyv4270 := &x.Items + yym4271 := z.DecBinary() + _ = yym4271 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4221), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4270), d) } } for { - yyj4216++ - if yyhl4216 { - yyb4216 = yyj4216 > l + yyj4265++ + if yyhl4265 { + yyb4265 = yyj4265 > l } else { - yyb4216 = r.CheckBreak() + yyb4265 = r.CheckBreak() } - if yyb4216 { + if yyb4265 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4216-1, "") + z.DecStructFieldNotFound(yyj4265-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52719,39 +53256,39 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4223 := z.EncBinary() - _ = yym4223 + yym4272 := z.EncBinary() + _ = yym4272 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4224 := !z.EncBinary() - yy2arr4224 := z.EncBasicHandle().StructToArray - var yyq4224 [5]bool - _, _, _ = yysep4224, yyq4224, yy2arr4224 - const yyr4224 bool = false - yyq4224[0] = x.Kind != "" - yyq4224[1] = x.APIVersion != "" - yyq4224[2] = true - yyq4224[3] = len(x.Data) != 0 - yyq4224[4] = x.Type != "" - var yynn4224 int - if yyr4224 || yy2arr4224 { + yysep4273 := !z.EncBinary() + yy2arr4273 := z.EncBasicHandle().StructToArray + var yyq4273 [5]bool + _, _, _ = yysep4273, yyq4273, yy2arr4273 + const yyr4273 bool = false + yyq4273[0] = x.Kind != "" + yyq4273[1] = x.APIVersion != "" + yyq4273[2] = true + yyq4273[3] = len(x.Data) != 0 + yyq4273[4] = x.Type != "" + var yynn4273 int + if yyr4273 || yy2arr4273 { r.EncodeArrayStart(5) } else { - yynn4224 = 0 - for _, b := range yyq4224 { + yynn4273 = 0 + for _, b := range yyq4273 { if b { - yynn4224++ + yynn4273++ } } - r.EncodeMapStart(yynn4224) - yynn4224 = 0 + r.EncodeMapStart(yynn4273) + yynn4273 = 0 } - if yyr4224 || yy2arr4224 { + if yyr4273 || yy2arr4273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4224[0] { - yym4226 := z.EncBinary() - _ = yym4226 + if yyq4273[0] { + yym4275 := z.EncBinary() + _ = yym4275 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52760,23 +53297,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4224[0] { + if yyq4273[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4227 := z.EncBinary() - _ = yym4227 + yym4276 := z.EncBinary() + _ = yym4276 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4224 || yy2arr4224 { + if yyr4273 || yy2arr4273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4224[1] { - yym4229 := z.EncBinary() - _ = yym4229 + if yyq4273[1] { + yym4278 := z.EncBinary() + _ = yym4278 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52785,43 +53322,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4224[1] { + if yyq4273[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4230 := z.EncBinary() - _ = yym4230 + yym4279 := z.EncBinary() + _ = yym4279 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4224 || yy2arr4224 { + if yyr4273 || yy2arr4273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4224[2] { - yy4232 := &x.ObjectMeta - yy4232.CodecEncodeSelf(e) + if yyq4273[2] { + yy4281 := &x.ObjectMeta + yy4281.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4224[2] { + if yyq4273[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4233 := &x.ObjectMeta - yy4233.CodecEncodeSelf(e) + yy4282 := &x.ObjectMeta + yy4282.CodecEncodeSelf(e) } } - if yyr4224 || yy2arr4224 { + if yyr4273 || yy2arr4273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4224[3] { + if yyq4273[3] { if x.Data == nil { r.EncodeNil() } else { - yym4235 := z.EncBinary() - _ = yym4235 + yym4284 := z.EncBinary() + _ = yym4284 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -52831,15 +53368,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4224[3] { + if yyq4273[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4236 := z.EncBinary() - _ = yym4236 + yym4285 := z.EncBinary() + _ = yym4285 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -52847,22 +53384,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4224 || yy2arr4224 { + if yyr4273 || yy2arr4273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4224[4] { + if yyq4273[4] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4224[4] { + if yyq4273[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4224 || yy2arr4224 { + if yyr4273 || yy2arr4273 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52875,25 +53412,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4238 := z.DecBinary() - _ = yym4238 + yym4287 := z.DecBinary() + _ = yym4287 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4239 := r.ContainerType() - if yyct4239 == codecSelferValueTypeMap1234 { - yyl4239 := r.ReadMapStart() - if yyl4239 == 0 { + yyct4288 := r.ContainerType() + if yyct4288 == codecSelferValueTypeMap1234 { + yyl4288 := r.ReadMapStart() + if yyl4288 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4239, d) + x.codecDecodeSelfFromMap(yyl4288, d) } - } else if yyct4239 == codecSelferValueTypeArray1234 { - yyl4239 := r.ReadArrayStart() - if yyl4239 == 0 { + } else if yyct4288 == codecSelferValueTypeArray1234 { + yyl4288 := r.ReadArrayStart() + if yyl4288 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4239, d) + x.codecDecodeSelfFromArray(yyl4288, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52905,12 +53442,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4240Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4240Slc - var yyhl4240 bool = l >= 0 - for yyj4240 := 0; ; yyj4240++ { - if yyhl4240 { - if yyj4240 >= l { + var yys4289Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4289Slc + var yyhl4289 bool = l >= 0 + for yyj4289 := 0; ; yyj4289++ { + if yyhl4289 { + if yyj4289 >= l { break } } else { @@ -52919,10 +53456,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4240Slc = r.DecodeBytes(yys4240Slc, true, true) - yys4240 := string(yys4240Slc) + yys4289Slc = r.DecodeBytes(yys4289Slc, true, true) + yys4289 := string(yys4289Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4240 { + switch yys4289 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52939,19 +53476,19 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4243 := &x.ObjectMeta - yyv4243.CodecDecodeSelf(d) + yyv4292 := &x.ObjectMeta + yyv4292.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4244 := &x.Data - yym4245 := z.DecBinary() - _ = yym4245 + yyv4293 := &x.Data + yym4294 := z.DecBinary() + _ = yym4294 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4244), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4293), d) } } case "type": @@ -52961,9 +53498,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4240) - } // end switch yys4240 - } // end for yyj4240 + z.DecStructFieldNotFound(-1, yys4289) + } // end switch yys4289 + } // end for yyj4289 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52971,16 +53508,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4247 int - var yyb4247 bool - var yyhl4247 bool = l >= 0 - yyj4247++ - if yyhl4247 { - yyb4247 = yyj4247 > l + var yyj4296 int + var yyb4296 bool + var yyhl4296 bool = l >= 0 + yyj4296++ + if yyhl4296 { + yyb4296 = yyj4296 > l } else { - yyb4247 = r.CheckBreak() + yyb4296 = r.CheckBreak() } - if yyb4247 { + if yyb4296 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52990,13 +53527,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4247++ - if yyhl4247 { - yyb4247 = yyj4247 > l + yyj4296++ + if yyhl4296 { + yyb4296 = yyj4296 > l } else { - yyb4247 = r.CheckBreak() + yyb4296 = r.CheckBreak() } - if yyb4247 { + if yyb4296 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53006,13 +53543,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4247++ - if yyhl4247 { - yyb4247 = yyj4247 > l + yyj4296++ + if yyhl4296 { + yyb4296 = yyj4296 > l } else { - yyb4247 = r.CheckBreak() + yyb4296 = r.CheckBreak() } - if yyb4247 { + if yyb4296 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53020,16 +53557,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4250 := &x.ObjectMeta - yyv4250.CodecDecodeSelf(d) + yyv4299 := &x.ObjectMeta + yyv4299.CodecDecodeSelf(d) } - yyj4247++ - if yyhl4247 { - yyb4247 = yyj4247 > l + yyj4296++ + if yyhl4296 { + yyb4296 = yyj4296 > l } else { - yyb4247 = r.CheckBreak() + yyb4296 = r.CheckBreak() } - if yyb4247 { + if yyb4296 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53037,21 +53574,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4251 := &x.Data - yym4252 := z.DecBinary() - _ = yym4252 + yyv4300 := &x.Data + yym4301 := z.DecBinary() + _ = yym4301 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4251), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4300), d) } } - yyj4247++ - if yyhl4247 { - yyb4247 = yyj4247 > l + yyj4296++ + if yyhl4296 { + yyb4296 = yyj4296 > l } else { - yyb4247 = r.CheckBreak() + yyb4296 = r.CheckBreak() } - if yyb4247 { + if yyb4296 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53062,17 +53599,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj4247++ - if yyhl4247 { - yyb4247 = yyj4247 > l + yyj4296++ + if yyhl4296 { + yyb4296 = yyj4296 > l } else { - yyb4247 = r.CheckBreak() + yyb4296 = r.CheckBreak() } - if yyb4247 { + if yyb4296 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4247-1, "") + z.DecStructFieldNotFound(yyj4296-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53081,8 +53618,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4254 := z.EncBinary() - _ = yym4254 + yym4303 := z.EncBinary() + _ = yym4303 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -53094,8 +53631,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4255 := z.DecBinary() - _ = yym4255 + yym4304 := z.DecBinary() + _ = yym4304 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -53110,37 +53647,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4256 := z.EncBinary() - _ = yym4256 + yym4305 := z.EncBinary() + _ = yym4305 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4257 := !z.EncBinary() - yy2arr4257 := z.EncBasicHandle().StructToArray - var yyq4257 [4]bool - _, _, _ = yysep4257, yyq4257, yy2arr4257 - const yyr4257 bool = false - yyq4257[0] = x.Kind != "" - yyq4257[1] = x.APIVersion != "" - yyq4257[2] = true - var yynn4257 int - if yyr4257 || yy2arr4257 { + yysep4306 := !z.EncBinary() + yy2arr4306 := z.EncBasicHandle().StructToArray + var yyq4306 [4]bool + _, _, _ = yysep4306, yyq4306, yy2arr4306 + const yyr4306 bool = false + yyq4306[0] = x.Kind != "" + yyq4306[1] = x.APIVersion != "" + yyq4306[2] = true + var yynn4306 int + if yyr4306 || yy2arr4306 { r.EncodeArrayStart(4) } else { - yynn4257 = 1 - for _, b := range yyq4257 { + yynn4306 = 1 + for _, b := range yyq4306 { if b { - yynn4257++ + yynn4306++ } } - r.EncodeMapStart(yynn4257) - yynn4257 = 0 + r.EncodeMapStart(yynn4306) + yynn4306 = 0 } - if yyr4257 || yy2arr4257 { + if yyr4306 || yy2arr4306 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4257[0] { - yym4259 := z.EncBinary() - _ = yym4259 + if yyq4306[0] { + yym4308 := z.EncBinary() + _ = yym4308 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53149,23 +53686,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4257[0] { + if yyq4306[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4260 := z.EncBinary() - _ = yym4260 + yym4309 := z.EncBinary() + _ = yym4309 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4257 || yy2arr4257 { + if yyr4306 || yy2arr4306 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4257[1] { - yym4262 := z.EncBinary() - _ = yym4262 + if yyq4306[1] { + yym4311 := z.EncBinary() + _ = yym4311 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53174,54 +53711,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4257[1] { + if yyq4306[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4263 := z.EncBinary() - _ = yym4263 + yym4312 := z.EncBinary() + _ = yym4312 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4257 || yy2arr4257 { + if yyr4306 || yy2arr4306 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4257[2] { - yy4265 := &x.ListMeta - yym4266 := z.EncBinary() - _ = yym4266 + if yyq4306[2] { + yy4314 := &x.ListMeta + yym4315 := z.EncBinary() + _ = yym4315 if false { - } else if z.HasExtensions() && z.EncExt(yy4265) { + } else if z.HasExtensions() && z.EncExt(yy4314) { } else { - z.EncFallback(yy4265) + z.EncFallback(yy4314) } } else { r.EncodeNil() } } else { - if yyq4257[2] { + if yyq4306[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4267 := &x.ListMeta - yym4268 := z.EncBinary() - _ = yym4268 + yy4316 := &x.ListMeta + yym4317 := z.EncBinary() + _ = yym4317 if false { - } else if z.HasExtensions() && z.EncExt(yy4267) { + } else if z.HasExtensions() && z.EncExt(yy4316) { } else { - z.EncFallback(yy4267) + z.EncFallback(yy4316) } } } - if yyr4257 || yy2arr4257 { + if yyr4306 || yy2arr4306 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4270 := z.EncBinary() - _ = yym4270 + yym4319 := z.EncBinary() + _ = yym4319 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -53234,15 +53771,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4271 := z.EncBinary() - _ = yym4271 + yym4320 := z.EncBinary() + _ = yym4320 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4257 || yy2arr4257 { + if yyr4306 || yy2arr4306 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53255,25 +53792,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4272 := z.DecBinary() - _ = yym4272 + yym4321 := z.DecBinary() + _ = yym4321 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4273 := r.ContainerType() - if yyct4273 == codecSelferValueTypeMap1234 { - yyl4273 := r.ReadMapStart() - if yyl4273 == 0 { + yyct4322 := r.ContainerType() + if yyct4322 == codecSelferValueTypeMap1234 { + yyl4322 := r.ReadMapStart() + if yyl4322 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4273, d) + x.codecDecodeSelfFromMap(yyl4322, d) } - } else if yyct4273 == codecSelferValueTypeArray1234 { - yyl4273 := r.ReadArrayStart() - if yyl4273 == 0 { + } else if yyct4322 == codecSelferValueTypeArray1234 { + yyl4322 := r.ReadArrayStart() + if yyl4322 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4273, d) + x.codecDecodeSelfFromArray(yyl4322, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53285,12 +53822,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4274Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4274Slc - var yyhl4274 bool = l >= 0 - for yyj4274 := 0; ; yyj4274++ { - if yyhl4274 { - if yyj4274 >= l { + var yys4323Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4323Slc + var yyhl4323 bool = l >= 0 + for yyj4323 := 0; ; yyj4323++ { + if yyhl4323 { + if yyj4323 >= l { break } } else { @@ -53299,10 +53836,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4274Slc = r.DecodeBytes(yys4274Slc, true, true) - yys4274 := string(yys4274Slc) + yys4323Slc = r.DecodeBytes(yys4323Slc, true, true) + yys4323 := string(yys4323Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4274 { + switch yys4323 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53319,31 +53856,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4277 := &x.ListMeta - yym4278 := z.DecBinary() - _ = yym4278 + yyv4326 := &x.ListMeta + yym4327 := z.DecBinary() + _ = yym4327 if false { - } else if z.HasExtensions() && z.DecExt(yyv4277) { + } else if z.HasExtensions() && z.DecExt(yyv4326) { } else { - z.DecFallback(yyv4277, false) + z.DecFallback(yyv4326, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4279 := &x.Items - yym4280 := z.DecBinary() - _ = yym4280 + yyv4328 := &x.Items + yym4329 := z.DecBinary() + _ = yym4329 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4279), d) + h.decSliceSecret((*[]Secret)(yyv4328), d) } } default: - z.DecStructFieldNotFound(-1, yys4274) - } // end switch yys4274 - } // end for yyj4274 + z.DecStructFieldNotFound(-1, yys4323) + } // end switch yys4323 + } // end for yyj4323 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53351,16 +53888,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4281 int - var yyb4281 bool - var yyhl4281 bool = l >= 0 - yyj4281++ - if yyhl4281 { - yyb4281 = yyj4281 > l + var yyj4330 int + var yyb4330 bool + var yyhl4330 bool = l >= 0 + yyj4330++ + if yyhl4330 { + yyb4330 = yyj4330 > l } else { - yyb4281 = r.CheckBreak() + yyb4330 = r.CheckBreak() } - if yyb4281 { + if yyb4330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53370,13 +53907,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4281++ - if yyhl4281 { - yyb4281 = yyj4281 > l + yyj4330++ + if yyhl4330 { + yyb4330 = yyj4330 > l } else { - yyb4281 = r.CheckBreak() + yyb4330 = r.CheckBreak() } - if yyb4281 { + if yyb4330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53386,13 +53923,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4281++ - if yyhl4281 { - yyb4281 = yyj4281 > l + yyj4330++ + if yyhl4330 { + yyb4330 = yyj4330 > l } else { - yyb4281 = r.CheckBreak() + yyb4330 = r.CheckBreak() } - if yyb4281 { + if yyb4330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53400,22 +53937,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4284 := &x.ListMeta - yym4285 := z.DecBinary() - _ = yym4285 + yyv4333 := &x.ListMeta + yym4334 := z.DecBinary() + _ = yym4334 if false { - } else if z.HasExtensions() && z.DecExt(yyv4284) { + } else if z.HasExtensions() && z.DecExt(yyv4333) { } else { - z.DecFallback(yyv4284, false) + z.DecFallback(yyv4333, false) } } - yyj4281++ - if yyhl4281 { - yyb4281 = yyj4281 > l + yyj4330++ + if yyhl4330 { + yyb4330 = yyj4330 > l } else { - yyb4281 = r.CheckBreak() + yyb4330 = r.CheckBreak() } - if yyb4281 { + if yyb4330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53423,26 +53960,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4286 := &x.Items - yym4287 := z.DecBinary() - _ = yym4287 + yyv4335 := &x.Items + yym4336 := z.DecBinary() + _ = yym4336 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4286), d) + h.decSliceSecret((*[]Secret)(yyv4335), d) } } for { - yyj4281++ - if yyhl4281 { - yyb4281 = yyj4281 > l + yyj4330++ + if yyhl4330 { + yyb4330 = yyj4330 > l } else { - yyb4281 = r.CheckBreak() + yyb4330 = r.CheckBreak() } - if yyb4281 { + if yyb4330 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4281-1, "") + z.DecStructFieldNotFound(yyj4330-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53454,38 +53991,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4288 := z.EncBinary() - _ = yym4288 + yym4337 := z.EncBinary() + _ = yym4337 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4289 := !z.EncBinary() - yy2arr4289 := z.EncBasicHandle().StructToArray - var yyq4289 [4]bool - _, _, _ = yysep4289, yyq4289, yy2arr4289 - const yyr4289 bool = false - yyq4289[0] = x.Kind != "" - yyq4289[1] = x.APIVersion != "" - yyq4289[2] = true - yyq4289[3] = len(x.Data) != 0 - var yynn4289 int - if yyr4289 || yy2arr4289 { + yysep4338 := !z.EncBinary() + yy2arr4338 := z.EncBasicHandle().StructToArray + var yyq4338 [4]bool + _, _, _ = yysep4338, yyq4338, yy2arr4338 + const yyr4338 bool = false + yyq4338[0] = x.Kind != "" + yyq4338[1] = x.APIVersion != "" + yyq4338[2] = true + yyq4338[3] = len(x.Data) != 0 + var yynn4338 int + if yyr4338 || yy2arr4338 { r.EncodeArrayStart(4) } else { - yynn4289 = 0 - for _, b := range yyq4289 { + yynn4338 = 0 + for _, b := range yyq4338 { if b { - yynn4289++ + yynn4338++ } } - r.EncodeMapStart(yynn4289) - yynn4289 = 0 + r.EncodeMapStart(yynn4338) + yynn4338 = 0 } - if yyr4289 || yy2arr4289 { + if yyr4338 || yy2arr4338 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4289[0] { - yym4291 := z.EncBinary() - _ = yym4291 + if yyq4338[0] { + yym4340 := z.EncBinary() + _ = yym4340 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53494,23 +54031,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4289[0] { + if yyq4338[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4292 := z.EncBinary() - _ = yym4292 + yym4341 := z.EncBinary() + _ = yym4341 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4289 || yy2arr4289 { + if yyr4338 || yy2arr4338 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4289[1] { - yym4294 := z.EncBinary() - _ = yym4294 + if yyq4338[1] { + yym4343 := z.EncBinary() + _ = yym4343 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53519,43 +54056,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4289[1] { + if yyq4338[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4295 := z.EncBinary() - _ = yym4295 + yym4344 := z.EncBinary() + _ = yym4344 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4289 || yy2arr4289 { + if yyr4338 || yy2arr4338 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4289[2] { - yy4297 := &x.ObjectMeta - yy4297.CodecEncodeSelf(e) + if yyq4338[2] { + yy4346 := &x.ObjectMeta + yy4346.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4289[2] { + if yyq4338[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4298 := &x.ObjectMeta - yy4298.CodecEncodeSelf(e) + yy4347 := &x.ObjectMeta + yy4347.CodecEncodeSelf(e) } } - if yyr4289 || yy2arr4289 { + if yyr4338 || yy2arr4338 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4289[3] { + if yyq4338[3] { if x.Data == nil { r.EncodeNil() } else { - yym4300 := z.EncBinary() - _ = yym4300 + yym4349 := z.EncBinary() + _ = yym4349 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -53565,15 +54102,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4289[3] { + if yyq4338[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4301 := z.EncBinary() - _ = yym4301 + yym4350 := z.EncBinary() + _ = yym4350 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -53581,7 +54118,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4289 || yy2arr4289 { + if yyr4338 || yy2arr4338 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53594,25 +54131,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4302 := z.DecBinary() - _ = yym4302 + yym4351 := z.DecBinary() + _ = yym4351 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4303 := r.ContainerType() - if yyct4303 == codecSelferValueTypeMap1234 { - yyl4303 := r.ReadMapStart() - if yyl4303 == 0 { + yyct4352 := r.ContainerType() + if yyct4352 == codecSelferValueTypeMap1234 { + yyl4352 := r.ReadMapStart() + if yyl4352 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4303, d) + x.codecDecodeSelfFromMap(yyl4352, d) } - } else if yyct4303 == codecSelferValueTypeArray1234 { - yyl4303 := r.ReadArrayStart() - if yyl4303 == 0 { + } else if yyct4352 == codecSelferValueTypeArray1234 { + yyl4352 := r.ReadArrayStart() + if yyl4352 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4303, d) + x.codecDecodeSelfFromArray(yyl4352, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53624,12 +54161,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4304Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4304Slc - var yyhl4304 bool = l >= 0 - for yyj4304 := 0; ; yyj4304++ { - if yyhl4304 { - if yyj4304 >= l { + var yys4353Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4353Slc + var yyhl4353 bool = l >= 0 + for yyj4353 := 0; ; yyj4353++ { + if yyhl4353 { + if yyj4353 >= l { break } } else { @@ -53638,10 +54175,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4304Slc = r.DecodeBytes(yys4304Slc, true, true) - yys4304 := string(yys4304Slc) + yys4353Slc = r.DecodeBytes(yys4353Slc, true, true) + yys4353 := string(yys4353Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4304 { + switch yys4353 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53658,25 +54195,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4307 := &x.ObjectMeta - yyv4307.CodecDecodeSelf(d) + yyv4356 := &x.ObjectMeta + yyv4356.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4308 := &x.Data - yym4309 := z.DecBinary() - _ = yym4309 + yyv4357 := &x.Data + yym4358 := z.DecBinary() + _ = yym4358 if false { } else { - z.F.DecMapStringStringX(yyv4308, false, d) + z.F.DecMapStringStringX(yyv4357, false, d) } } default: - z.DecStructFieldNotFound(-1, yys4304) - } // end switch yys4304 - } // end for yyj4304 + z.DecStructFieldNotFound(-1, yys4353) + } // end switch yys4353 + } // end for yyj4353 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53684,16 +54221,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4310 int - var yyb4310 bool - var yyhl4310 bool = l >= 0 - yyj4310++ - if yyhl4310 { - yyb4310 = yyj4310 > l + var yyj4359 int + var yyb4359 bool + var yyhl4359 bool = l >= 0 + yyj4359++ + if yyhl4359 { + yyb4359 = yyj4359 > l } else { - yyb4310 = r.CheckBreak() + yyb4359 = r.CheckBreak() } - if yyb4310 { + if yyb4359 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53703,13 +54240,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4310++ - if yyhl4310 { - yyb4310 = yyj4310 > l + yyj4359++ + if yyhl4359 { + yyb4359 = yyj4359 > l } else { - yyb4310 = r.CheckBreak() + yyb4359 = r.CheckBreak() } - if yyb4310 { + if yyb4359 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53719,13 +54256,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4310++ - if yyhl4310 { - yyb4310 = yyj4310 > l + yyj4359++ + if yyhl4359 { + yyb4359 = yyj4359 > l } else { - yyb4310 = r.CheckBreak() + yyb4359 = r.CheckBreak() } - if yyb4310 { + if yyb4359 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53733,16 +54270,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4313 := &x.ObjectMeta - yyv4313.CodecDecodeSelf(d) + yyv4362 := &x.ObjectMeta + yyv4362.CodecDecodeSelf(d) } - yyj4310++ - if yyhl4310 { - yyb4310 = yyj4310 > l + yyj4359++ + if yyhl4359 { + yyb4359 = yyj4359 > l } else { - yyb4310 = r.CheckBreak() + yyb4359 = r.CheckBreak() } - if yyb4310 { + if yyb4359 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53750,26 +54287,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4314 := &x.Data - yym4315 := z.DecBinary() - _ = yym4315 + yyv4363 := &x.Data + yym4364 := z.DecBinary() + _ = yym4364 if false { } else { - z.F.DecMapStringStringX(yyv4314, false, d) + z.F.DecMapStringStringX(yyv4363, false, d) } } for { - yyj4310++ - if yyhl4310 { - yyb4310 = yyj4310 > l + yyj4359++ + if yyhl4359 { + yyb4359 = yyj4359 > l } else { - yyb4310 = r.CheckBreak() + yyb4359 = r.CheckBreak() } - if yyb4310 { + if yyb4359 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4310-1, "") + z.DecStructFieldNotFound(yyj4359-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53781,37 +54318,37 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4316 := z.EncBinary() - _ = yym4316 + yym4365 := z.EncBinary() + _ = yym4365 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4317 := !z.EncBinary() - yy2arr4317 := z.EncBasicHandle().StructToArray - var yyq4317 [4]bool - _, _, _ = yysep4317, yyq4317, yy2arr4317 - const yyr4317 bool = false - yyq4317[0] = x.Kind != "" - yyq4317[1] = x.APIVersion != "" - yyq4317[2] = true - var yynn4317 int - if yyr4317 || yy2arr4317 { + yysep4366 := !z.EncBinary() + yy2arr4366 := z.EncBasicHandle().StructToArray + var yyq4366 [4]bool + _, _, _ = yysep4366, yyq4366, yy2arr4366 + const yyr4366 bool = false + yyq4366[0] = x.Kind != "" + yyq4366[1] = x.APIVersion != "" + yyq4366[2] = true + var yynn4366 int + if yyr4366 || yy2arr4366 { r.EncodeArrayStart(4) } else { - yynn4317 = 1 - for _, b := range yyq4317 { + yynn4366 = 1 + for _, b := range yyq4366 { if b { - yynn4317++ + yynn4366++ } } - r.EncodeMapStart(yynn4317) - yynn4317 = 0 + r.EncodeMapStart(yynn4366) + yynn4366 = 0 } - if yyr4317 || yy2arr4317 { + if yyr4366 || yy2arr4366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4317[0] { - yym4319 := z.EncBinary() - _ = yym4319 + if yyq4366[0] { + yym4368 := z.EncBinary() + _ = yym4368 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53820,23 +54357,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4317[0] { + if yyq4366[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4320 := z.EncBinary() - _ = yym4320 + yym4369 := z.EncBinary() + _ = yym4369 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4317 || yy2arr4317 { + if yyr4366 || yy2arr4366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4317[1] { - yym4322 := z.EncBinary() - _ = yym4322 + if yyq4366[1] { + yym4371 := z.EncBinary() + _ = yym4371 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53845,54 +54382,54 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4317[1] { + if yyq4366[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4323 := z.EncBinary() - _ = yym4323 + yym4372 := z.EncBinary() + _ = yym4372 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4317 || yy2arr4317 { + if yyr4366 || yy2arr4366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4317[2] { - yy4325 := &x.ListMeta - yym4326 := z.EncBinary() - _ = yym4326 + if yyq4366[2] { + yy4374 := &x.ListMeta + yym4375 := z.EncBinary() + _ = yym4375 if false { - } else if z.HasExtensions() && z.EncExt(yy4325) { + } else if z.HasExtensions() && z.EncExt(yy4374) { } else { - z.EncFallback(yy4325) + z.EncFallback(yy4374) } } else { r.EncodeNil() } } else { - if yyq4317[2] { + if yyq4366[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4327 := &x.ListMeta - yym4328 := z.EncBinary() - _ = yym4328 + yy4376 := &x.ListMeta + yym4377 := z.EncBinary() + _ = yym4377 if false { - } else if z.HasExtensions() && z.EncExt(yy4327) { + } else if z.HasExtensions() && z.EncExt(yy4376) { } else { - z.EncFallback(yy4327) + z.EncFallback(yy4376) } } } - if yyr4317 || yy2arr4317 { + if yyr4366 || yy2arr4366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4330 := z.EncBinary() - _ = yym4330 + yym4379 := z.EncBinary() + _ = yym4379 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -53905,15 +54442,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4331 := z.EncBinary() - _ = yym4331 + yym4380 := z.EncBinary() + _ = yym4380 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) } } } - if yyr4317 || yy2arr4317 { + if yyr4366 || yy2arr4366 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53926,25 +54463,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4332 := z.DecBinary() - _ = yym4332 + yym4381 := z.DecBinary() + _ = yym4381 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4333 := r.ContainerType() - if yyct4333 == codecSelferValueTypeMap1234 { - yyl4333 := r.ReadMapStart() - if yyl4333 == 0 { + yyct4382 := r.ContainerType() + if yyct4382 == codecSelferValueTypeMap1234 { + yyl4382 := r.ReadMapStart() + if yyl4382 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4333, d) + x.codecDecodeSelfFromMap(yyl4382, d) } - } else if yyct4333 == codecSelferValueTypeArray1234 { - yyl4333 := r.ReadArrayStart() - if yyl4333 == 0 { + } else if yyct4382 == codecSelferValueTypeArray1234 { + yyl4382 := r.ReadArrayStart() + if yyl4382 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4333, d) + x.codecDecodeSelfFromArray(yyl4382, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53956,12 +54493,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4334Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4334Slc - var yyhl4334 bool = l >= 0 - for yyj4334 := 0; ; yyj4334++ { - if yyhl4334 { - if yyj4334 >= l { + var yys4383Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4383Slc + var yyhl4383 bool = l >= 0 + for yyj4383 := 0; ; yyj4383++ { + if yyhl4383 { + if yyj4383 >= l { break } } else { @@ -53970,10 +54507,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4334Slc = r.DecodeBytes(yys4334Slc, true, true) - yys4334 := string(yys4334Slc) + yys4383Slc = r.DecodeBytes(yys4383Slc, true, true) + yys4383 := string(yys4383Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4334 { + switch yys4383 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53990,31 +54527,31 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4337 := &x.ListMeta - yym4338 := z.DecBinary() - _ = yym4338 + yyv4386 := &x.ListMeta + yym4387 := z.DecBinary() + _ = yym4387 if false { - } else if z.HasExtensions() && z.DecExt(yyv4337) { + } else if z.HasExtensions() && z.DecExt(yyv4386) { } else { - z.DecFallback(yyv4337, false) + z.DecFallback(yyv4386, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4339 := &x.Items - yym4340 := z.DecBinary() - _ = yym4340 + yyv4388 := &x.Items + yym4389 := z.DecBinary() + _ = yym4389 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4339), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4388), d) } } default: - z.DecStructFieldNotFound(-1, yys4334) - } // end switch yys4334 - } // end for yyj4334 + z.DecStructFieldNotFound(-1, yys4383) + } // end switch yys4383 + } // end for yyj4383 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54022,16 +54559,16 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4341 int - var yyb4341 bool - var yyhl4341 bool = l >= 0 - yyj4341++ - if yyhl4341 { - yyb4341 = yyj4341 > l + var yyj4390 int + var yyb4390 bool + var yyhl4390 bool = l >= 0 + yyj4390++ + if yyhl4390 { + yyb4390 = yyj4390 > l } else { - yyb4341 = r.CheckBreak() + yyb4390 = r.CheckBreak() } - if yyb4341 { + if yyb4390 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54041,13 +54578,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4341++ - if yyhl4341 { - yyb4341 = yyj4341 > l + yyj4390++ + if yyhl4390 { + yyb4390 = yyj4390 > l } else { - yyb4341 = r.CheckBreak() + yyb4390 = r.CheckBreak() } - if yyb4341 { + if yyb4390 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54057,13 +54594,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4341++ - if yyhl4341 { - yyb4341 = yyj4341 > l + yyj4390++ + if yyhl4390 { + yyb4390 = yyj4390 > l } else { - yyb4341 = r.CheckBreak() + yyb4390 = r.CheckBreak() } - if yyb4341 { + if yyb4390 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54071,22 +54608,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4344 := &x.ListMeta - yym4345 := z.DecBinary() - _ = yym4345 + yyv4393 := &x.ListMeta + yym4394 := z.DecBinary() + _ = yym4394 if false { - } else if z.HasExtensions() && z.DecExt(yyv4344) { + } else if z.HasExtensions() && z.DecExt(yyv4393) { } else { - z.DecFallback(yyv4344, false) + z.DecFallback(yyv4393, false) } } - yyj4341++ - if yyhl4341 { - yyb4341 = yyj4341 > l + yyj4390++ + if yyhl4390 { + yyb4390 = yyj4390 > l } else { - yyb4341 = r.CheckBreak() + yyb4390 = r.CheckBreak() } - if yyb4341 { + if yyb4390 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54094,26 +54631,26 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4346 := &x.Items - yym4347 := z.DecBinary() - _ = yym4347 + yyv4395 := &x.Items + yym4396 := z.DecBinary() + _ = yym4396 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4346), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4395), d) } } for { - yyj4341++ - if yyhl4341 { - yyb4341 = yyj4341 > l + yyj4390++ + if yyhl4390 { + yyb4390 = yyj4390 > l } else { - yyb4341 = r.CheckBreak() + yyb4390 = r.CheckBreak() } - if yyb4341 { + if yyb4390 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4341-1, "") + z.DecStructFieldNotFound(yyj4390-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54122,8 +54659,8 @@ func (x PatchType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4348 := z.EncBinary() - _ = yym4348 + yym4397 := z.EncBinary() + _ = yym4397 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -54135,8 +54672,8 @@ func (x *PatchType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4349 := z.DecBinary() - _ = yym4349 + yym4398 := z.DecBinary() + _ = yym4398 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -54148,8 +54685,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4350 := z.EncBinary() - _ = yym4350 + yym4399 := z.EncBinary() + _ = yym4399 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -54161,8 +54698,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4351 := z.DecBinary() - _ = yym4351 + yym4400 := z.DecBinary() + _ = yym4400 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -54177,32 +54714,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4352 := z.EncBinary() - _ = yym4352 + yym4401 := z.EncBinary() + _ = yym4401 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4353 := !z.EncBinary() - yy2arr4353 := z.EncBasicHandle().StructToArray - var yyq4353 [4]bool - _, _, _ = yysep4353, yyq4353, yy2arr4353 - const yyr4353 bool = false - yyq4353[2] = x.Message != "" - yyq4353[3] = x.Error != "" - var yynn4353 int - if yyr4353 || yy2arr4353 { + yysep4402 := !z.EncBinary() + yy2arr4402 := z.EncBasicHandle().StructToArray + var yyq4402 [4]bool + _, _, _ = yysep4402, yyq4402, yy2arr4402 + const yyr4402 bool = false + yyq4402[2] = x.Message != "" + yyq4402[3] = x.Error != "" + var yynn4402 int + if yyr4402 || yy2arr4402 { r.EncodeArrayStart(4) } else { - yynn4353 = 2 - for _, b := range yyq4353 { + yynn4402 = 2 + for _, b := range yyq4402 { if b { - yynn4353++ + yynn4402++ } } - r.EncodeMapStart(yynn4353) - yynn4353 = 0 + r.EncodeMapStart(yynn4402) + yynn4402 = 0 } - if yyr4353 || yy2arr4353 { + if yyr4402 || yy2arr4402 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -54211,7 +54748,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr4353 || yy2arr4353 { + if yyr4402 || yy2arr4402 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -54220,11 +54757,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr4353 || yy2arr4353 { + if yyr4402 || yy2arr4402 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4353[2] { - yym4357 := z.EncBinary() - _ = yym4357 + if yyq4402[2] { + yym4406 := z.EncBinary() + _ = yym4406 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -54233,23 +54770,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4353[2] { + if yyq4402[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4358 := z.EncBinary() - _ = yym4358 + yym4407 := z.EncBinary() + _ = yym4407 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr4353 || yy2arr4353 { + if yyr4402 || yy2arr4402 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4353[3] { - yym4360 := z.EncBinary() - _ = yym4360 + if yyq4402[3] { + yym4409 := z.EncBinary() + _ = yym4409 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -54258,19 +54795,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4353[3] { + if yyq4402[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4361 := z.EncBinary() - _ = yym4361 + yym4410 := z.EncBinary() + _ = yym4410 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr4353 || yy2arr4353 { + if yyr4402 || yy2arr4402 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54283,25 +54820,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4362 := z.DecBinary() - _ = yym4362 + yym4411 := z.DecBinary() + _ = yym4411 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4363 := r.ContainerType() - if yyct4363 == codecSelferValueTypeMap1234 { - yyl4363 := r.ReadMapStart() - if yyl4363 == 0 { + yyct4412 := r.ContainerType() + if yyct4412 == codecSelferValueTypeMap1234 { + yyl4412 := r.ReadMapStart() + if yyl4412 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4363, d) + x.codecDecodeSelfFromMap(yyl4412, d) } - } else if yyct4363 == codecSelferValueTypeArray1234 { - yyl4363 := r.ReadArrayStart() - if yyl4363 == 0 { + } else if yyct4412 == codecSelferValueTypeArray1234 { + yyl4412 := r.ReadArrayStart() + if yyl4412 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4363, d) + x.codecDecodeSelfFromArray(yyl4412, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54313,12 +54850,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4364Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4364Slc - var yyhl4364 bool = l >= 0 - for yyj4364 := 0; ; yyj4364++ { - if yyhl4364 { - if yyj4364 >= l { + var yys4413Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4413Slc + var yyhl4413 bool = l >= 0 + for yyj4413 := 0; ; yyj4413++ { + if yyhl4413 { + if yyj4413 >= l { break } } else { @@ -54327,10 +54864,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4364Slc = r.DecodeBytes(yys4364Slc, true, true) - yys4364 := string(yys4364Slc) + yys4413Slc = r.DecodeBytes(yys4413Slc, true, true) + yys4413 := string(yys4413Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4364 { + switch yys4413 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -54356,9 +54893,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4364) - } // end switch yys4364 - } // end for yyj4364 + z.DecStructFieldNotFound(-1, yys4413) + } // end switch yys4413 + } // end for yyj4413 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54366,16 +54903,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4369 int - var yyb4369 bool - var yyhl4369 bool = l >= 0 - yyj4369++ - if yyhl4369 { - yyb4369 = yyj4369 > l + var yyj4418 int + var yyb4418 bool + var yyhl4418 bool = l >= 0 + yyj4418++ + if yyhl4418 { + yyb4418 = yyj4418 > l } else { - yyb4369 = r.CheckBreak() + yyb4418 = r.CheckBreak() } - if yyb4369 { + if yyb4418 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54385,13 +54922,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj4369++ - if yyhl4369 { - yyb4369 = yyj4369 > l + yyj4418++ + if yyhl4418 { + yyb4418 = yyj4418 > l } else { - yyb4369 = r.CheckBreak() + yyb4418 = r.CheckBreak() } - if yyb4369 { + if yyb4418 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54401,13 +54938,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj4369++ - if yyhl4369 { - yyb4369 = yyj4369 > l + yyj4418++ + if yyhl4418 { + yyb4418 = yyj4418 > l } else { - yyb4369 = r.CheckBreak() + yyb4418 = r.CheckBreak() } - if yyb4369 { + if yyb4418 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54417,13 +54954,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj4369++ - if yyhl4369 { - yyb4369 = yyj4369 > l + yyj4418++ + if yyhl4418 { + yyb4418 = yyj4418 > l } else { - yyb4369 = r.CheckBreak() + yyb4418 = r.CheckBreak() } - if yyb4369 { + if yyb4418 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54434,17 +54971,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj4369++ - if yyhl4369 { - yyb4369 = yyj4369 > l + yyj4418++ + if yyhl4418 { + yyb4418 = yyj4418 > l } else { - yyb4369 = r.CheckBreak() + yyb4418 = r.CheckBreak() } - if yyb4369 { + if yyb4418 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4369-1, "") + z.DecStructFieldNotFound(yyj4418-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54456,38 +54993,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4374 := z.EncBinary() - _ = yym4374 + yym4423 := z.EncBinary() + _ = yym4423 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4375 := !z.EncBinary() - yy2arr4375 := z.EncBasicHandle().StructToArray - var yyq4375 [4]bool - _, _, _ = yysep4375, yyq4375, yy2arr4375 - const yyr4375 bool = false - yyq4375[0] = x.Kind != "" - yyq4375[1] = x.APIVersion != "" - yyq4375[2] = true - yyq4375[3] = len(x.Conditions) != 0 - var yynn4375 int - if yyr4375 || yy2arr4375 { + yysep4424 := !z.EncBinary() + yy2arr4424 := z.EncBasicHandle().StructToArray + var yyq4424 [4]bool + _, _, _ = yysep4424, yyq4424, yy2arr4424 + const yyr4424 bool = false + yyq4424[0] = x.Kind != "" + yyq4424[1] = x.APIVersion != "" + yyq4424[2] = true + yyq4424[3] = len(x.Conditions) != 0 + var yynn4424 int + if yyr4424 || yy2arr4424 { r.EncodeArrayStart(4) } else { - yynn4375 = 0 - for _, b := range yyq4375 { + yynn4424 = 0 + for _, b := range yyq4424 { if b { - yynn4375++ + yynn4424++ } } - r.EncodeMapStart(yynn4375) - yynn4375 = 0 + r.EncodeMapStart(yynn4424) + yynn4424 = 0 } - if yyr4375 || yy2arr4375 { + if yyr4424 || yy2arr4424 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4375[0] { - yym4377 := z.EncBinary() - _ = yym4377 + if yyq4424[0] { + yym4426 := z.EncBinary() + _ = yym4426 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -54496,23 +55033,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4375[0] { + if yyq4424[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4378 := z.EncBinary() - _ = yym4378 + yym4427 := z.EncBinary() + _ = yym4427 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4375 || yy2arr4375 { + if yyr4424 || yy2arr4424 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4375[1] { - yym4380 := z.EncBinary() - _ = yym4380 + if yyq4424[1] { + yym4429 := z.EncBinary() + _ = yym4429 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -54521,43 +55058,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4375[1] { + if yyq4424[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4381 := z.EncBinary() - _ = yym4381 + yym4430 := z.EncBinary() + _ = yym4430 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4375 || yy2arr4375 { + if yyr4424 || yy2arr4424 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4375[2] { - yy4383 := &x.ObjectMeta - yy4383.CodecEncodeSelf(e) + if yyq4424[2] { + yy4432 := &x.ObjectMeta + yy4432.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4375[2] { + if yyq4424[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4384 := &x.ObjectMeta - yy4384.CodecEncodeSelf(e) + yy4433 := &x.ObjectMeta + yy4433.CodecEncodeSelf(e) } } - if yyr4375 || yy2arr4375 { + if yyr4424 || yy2arr4424 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4375[3] { + if yyq4424[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym4386 := z.EncBinary() - _ = yym4386 + yym4435 := z.EncBinary() + _ = yym4435 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -54567,15 +55104,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4375[3] { + if yyq4424[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym4387 := z.EncBinary() - _ = yym4387 + yym4436 := z.EncBinary() + _ = yym4436 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -54583,7 +55120,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4375 || yy2arr4375 { + if yyr4424 || yy2arr4424 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54596,25 +55133,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4388 := z.DecBinary() - _ = yym4388 + yym4437 := z.DecBinary() + _ = yym4437 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4389 := r.ContainerType() - if yyct4389 == codecSelferValueTypeMap1234 { - yyl4389 := r.ReadMapStart() - if yyl4389 == 0 { + yyct4438 := r.ContainerType() + if yyct4438 == codecSelferValueTypeMap1234 { + yyl4438 := r.ReadMapStart() + if yyl4438 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4389, d) + x.codecDecodeSelfFromMap(yyl4438, d) } - } else if yyct4389 == codecSelferValueTypeArray1234 { - yyl4389 := r.ReadArrayStart() - if yyl4389 == 0 { + } else if yyct4438 == codecSelferValueTypeArray1234 { + yyl4438 := r.ReadArrayStart() + if yyl4438 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4389, d) + x.codecDecodeSelfFromArray(yyl4438, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54626,12 +55163,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4390Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4390Slc - var yyhl4390 bool = l >= 0 - for yyj4390 := 0; ; yyj4390++ { - if yyhl4390 { - if yyj4390 >= l { + var yys4439Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4439Slc + var yyhl4439 bool = l >= 0 + for yyj4439 := 0; ; yyj4439++ { + if yyhl4439 { + if yyj4439 >= l { break } } else { @@ -54640,10 +55177,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4390Slc = r.DecodeBytes(yys4390Slc, true, true) - yys4390 := string(yys4390Slc) + yys4439Slc = r.DecodeBytes(yys4439Slc, true, true) + yys4439 := string(yys4439Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4390 { + switch yys4439 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54660,25 +55197,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4393 := &x.ObjectMeta - yyv4393.CodecDecodeSelf(d) + yyv4442 := &x.ObjectMeta + yyv4442.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4394 := &x.Conditions - yym4395 := z.DecBinary() - _ = yym4395 + yyv4443 := &x.Conditions + yym4444 := z.DecBinary() + _ = yym4444 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4394), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4443), d) } } default: - z.DecStructFieldNotFound(-1, yys4390) - } // end switch yys4390 - } // end for yyj4390 + z.DecStructFieldNotFound(-1, yys4439) + } // end switch yys4439 + } // end for yyj4439 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54686,16 +55223,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4396 int - var yyb4396 bool - var yyhl4396 bool = l >= 0 - yyj4396++ - if yyhl4396 { - yyb4396 = yyj4396 > l + var yyj4445 int + var yyb4445 bool + var yyhl4445 bool = l >= 0 + yyj4445++ + if yyhl4445 { + yyb4445 = yyj4445 > l } else { - yyb4396 = r.CheckBreak() + yyb4445 = r.CheckBreak() } - if yyb4396 { + if yyb4445 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54705,13 +55242,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4396++ - if yyhl4396 { - yyb4396 = yyj4396 > l + yyj4445++ + if yyhl4445 { + yyb4445 = yyj4445 > l } else { - yyb4396 = r.CheckBreak() + yyb4445 = r.CheckBreak() } - if yyb4396 { + if yyb4445 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54721,13 +55258,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4396++ - if yyhl4396 { - yyb4396 = yyj4396 > l + yyj4445++ + if yyhl4445 { + yyb4445 = yyj4445 > l } else { - yyb4396 = r.CheckBreak() + yyb4445 = r.CheckBreak() } - if yyb4396 { + if yyb4445 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54735,16 +55272,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4399 := &x.ObjectMeta - yyv4399.CodecDecodeSelf(d) + yyv4448 := &x.ObjectMeta + yyv4448.CodecDecodeSelf(d) } - yyj4396++ - if yyhl4396 { - yyb4396 = yyj4396 > l + yyj4445++ + if yyhl4445 { + yyb4445 = yyj4445 > l } else { - yyb4396 = r.CheckBreak() + yyb4445 = r.CheckBreak() } - if yyb4396 { + if yyb4445 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54752,26 +55289,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4400 := &x.Conditions - yym4401 := z.DecBinary() - _ = yym4401 + yyv4449 := &x.Conditions + yym4450 := z.DecBinary() + _ = yym4450 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4400), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4449), d) } } for { - yyj4396++ - if yyhl4396 { - yyb4396 = yyj4396 > l + yyj4445++ + if yyhl4445 { + yyb4445 = yyj4445 > l } else { - yyb4396 = r.CheckBreak() + yyb4445 = r.CheckBreak() } - if yyb4396 { + if yyb4445 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4396-1, "") + z.DecStructFieldNotFound(yyj4445-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54783,37 +55320,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4402 := z.EncBinary() - _ = yym4402 + yym4451 := z.EncBinary() + _ = yym4451 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4403 := !z.EncBinary() - yy2arr4403 := z.EncBasicHandle().StructToArray - var yyq4403 [4]bool - _, _, _ = yysep4403, yyq4403, yy2arr4403 - const yyr4403 bool = false - yyq4403[0] = x.Kind != "" - yyq4403[1] = x.APIVersion != "" - yyq4403[2] = true - var yynn4403 int - if yyr4403 || yy2arr4403 { + yysep4452 := !z.EncBinary() + yy2arr4452 := z.EncBasicHandle().StructToArray + var yyq4452 [4]bool + _, _, _ = yysep4452, yyq4452, yy2arr4452 + const yyr4452 bool = false + yyq4452[0] = x.Kind != "" + yyq4452[1] = x.APIVersion != "" + yyq4452[2] = true + var yynn4452 int + if yyr4452 || yy2arr4452 { r.EncodeArrayStart(4) } else { - yynn4403 = 1 - for _, b := range yyq4403 { + yynn4452 = 1 + for _, b := range yyq4452 { if b { - yynn4403++ + yynn4452++ } } - r.EncodeMapStart(yynn4403) - yynn4403 = 0 + r.EncodeMapStart(yynn4452) + yynn4452 = 0 } - if yyr4403 || yy2arr4403 { + if yyr4452 || yy2arr4452 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4403[0] { - yym4405 := z.EncBinary() - _ = yym4405 + if yyq4452[0] { + yym4454 := z.EncBinary() + _ = yym4454 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -54822,23 +55359,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4403[0] { + if yyq4452[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4406 := z.EncBinary() - _ = yym4406 + yym4455 := z.EncBinary() + _ = yym4455 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4403 || yy2arr4403 { + if yyr4452 || yy2arr4452 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4403[1] { - yym4408 := z.EncBinary() - _ = yym4408 + if yyq4452[1] { + yym4457 := z.EncBinary() + _ = yym4457 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -54847,54 +55384,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4403[1] { + if yyq4452[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4409 := z.EncBinary() - _ = yym4409 + yym4458 := z.EncBinary() + _ = yym4458 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4403 || yy2arr4403 { + if yyr4452 || yy2arr4452 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4403[2] { - yy4411 := &x.ListMeta - yym4412 := z.EncBinary() - _ = yym4412 + if yyq4452[2] { + yy4460 := &x.ListMeta + yym4461 := z.EncBinary() + _ = yym4461 if false { - } else if z.HasExtensions() && z.EncExt(yy4411) { + } else if z.HasExtensions() && z.EncExt(yy4460) { } else { - z.EncFallback(yy4411) + z.EncFallback(yy4460) } } else { r.EncodeNil() } } else { - if yyq4403[2] { + if yyq4452[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4413 := &x.ListMeta - yym4414 := z.EncBinary() - _ = yym4414 + yy4462 := &x.ListMeta + yym4463 := z.EncBinary() + _ = yym4463 if false { - } else if z.HasExtensions() && z.EncExt(yy4413) { + } else if z.HasExtensions() && z.EncExt(yy4462) { } else { - z.EncFallback(yy4413) + z.EncFallback(yy4462) } } } - if yyr4403 || yy2arr4403 { + if yyr4452 || yy2arr4452 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4416 := z.EncBinary() - _ = yym4416 + yym4465 := z.EncBinary() + _ = yym4465 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -54907,15 +55444,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4417 := z.EncBinary() - _ = yym4417 + yym4466 := z.EncBinary() + _ = yym4466 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4403 || yy2arr4403 { + if yyr4452 || yy2arr4452 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54928,25 +55465,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4418 := z.DecBinary() - _ = yym4418 + yym4467 := z.DecBinary() + _ = yym4467 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4419 := r.ContainerType() - if yyct4419 == codecSelferValueTypeMap1234 { - yyl4419 := r.ReadMapStart() - if yyl4419 == 0 { + yyct4468 := r.ContainerType() + if yyct4468 == codecSelferValueTypeMap1234 { + yyl4468 := r.ReadMapStart() + if yyl4468 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4419, d) + x.codecDecodeSelfFromMap(yyl4468, d) } - } else if yyct4419 == codecSelferValueTypeArray1234 { - yyl4419 := r.ReadArrayStart() - if yyl4419 == 0 { + } else if yyct4468 == codecSelferValueTypeArray1234 { + yyl4468 := r.ReadArrayStart() + if yyl4468 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4419, d) + x.codecDecodeSelfFromArray(yyl4468, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54958,12 +55495,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4420Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4420Slc - var yyhl4420 bool = l >= 0 - for yyj4420 := 0; ; yyj4420++ { - if yyhl4420 { - if yyj4420 >= l { + var yys4469Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4469Slc + var yyhl4469 bool = l >= 0 + for yyj4469 := 0; ; yyj4469++ { + if yyhl4469 { + if yyj4469 >= l { break } } else { @@ -54972,10 +55509,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4420Slc = r.DecodeBytes(yys4420Slc, true, true) - yys4420 := string(yys4420Slc) + yys4469Slc = r.DecodeBytes(yys4469Slc, true, true) + yys4469 := string(yys4469Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4420 { + switch yys4469 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54992,31 +55529,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4423 := &x.ListMeta - yym4424 := z.DecBinary() - _ = yym4424 + yyv4472 := &x.ListMeta + yym4473 := z.DecBinary() + _ = yym4473 if false { - } else if z.HasExtensions() && z.DecExt(yyv4423) { + } else if z.HasExtensions() && z.DecExt(yyv4472) { } else { - z.DecFallback(yyv4423, false) + z.DecFallback(yyv4472, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4425 := &x.Items - yym4426 := z.DecBinary() - _ = yym4426 + yyv4474 := &x.Items + yym4475 := z.DecBinary() + _ = yym4475 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4425), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4474), d) } } default: - z.DecStructFieldNotFound(-1, yys4420) - } // end switch yys4420 - } // end for yyj4420 + z.DecStructFieldNotFound(-1, yys4469) + } // end switch yys4469 + } // end for yyj4469 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55024,16 +55561,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4427 int - var yyb4427 bool - var yyhl4427 bool = l >= 0 - yyj4427++ - if yyhl4427 { - yyb4427 = yyj4427 > l + var yyj4476 int + var yyb4476 bool + var yyhl4476 bool = l >= 0 + yyj4476++ + if yyhl4476 { + yyb4476 = yyj4476 > l } else { - yyb4427 = r.CheckBreak() + yyb4476 = r.CheckBreak() } - if yyb4427 { + if yyb4476 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55043,13 +55580,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj4427++ - if yyhl4427 { - yyb4427 = yyj4427 > l + yyj4476++ + if yyhl4476 { + yyb4476 = yyj4476 > l } else { - yyb4427 = r.CheckBreak() + yyb4476 = r.CheckBreak() } - if yyb4427 { + if yyb4476 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55059,13 +55596,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj4427++ - if yyhl4427 { - yyb4427 = yyj4427 > l + yyj4476++ + if yyhl4476 { + yyb4476 = yyj4476 > l } else { - yyb4427 = r.CheckBreak() + yyb4476 = r.CheckBreak() } - if yyb4427 { + if yyb4476 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55073,22 +55610,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4430 := &x.ListMeta - yym4431 := z.DecBinary() - _ = yym4431 + yyv4479 := &x.ListMeta + yym4480 := z.DecBinary() + _ = yym4480 if false { - } else if z.HasExtensions() && z.DecExt(yyv4430) { + } else if z.HasExtensions() && z.DecExt(yyv4479) { } else { - z.DecFallback(yyv4430, false) + z.DecFallback(yyv4479, false) } } - yyj4427++ - if yyhl4427 { - yyb4427 = yyj4427 > l + yyj4476++ + if yyhl4476 { + yyb4476 = yyj4476 > l } else { - yyb4427 = r.CheckBreak() + yyb4476 = r.CheckBreak() } - if yyb4427 { + if yyb4476 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55096,26 +55633,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4432 := &x.Items - yym4433 := z.DecBinary() - _ = yym4433 + yyv4481 := &x.Items + yym4482 := z.DecBinary() + _ = yym4482 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4432), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4481), d) } } for { - yyj4427++ - if yyhl4427 { - yyb4427 = yyj4427 > l + yyj4476++ + if yyhl4476 { + yyb4476 = yyj4476 > l } else { - yyb4427 = r.CheckBreak() + yyb4476 = r.CheckBreak() } - if yyb4427 { + if yyb4476 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4427-1, "") + z.DecStructFieldNotFound(yyj4476-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55127,38 +55664,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4434 := z.EncBinary() - _ = yym4434 + yym4483 := z.EncBinary() + _ = yym4483 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4435 := !z.EncBinary() - yy2arr4435 := z.EncBasicHandle().StructToArray - var yyq4435 [6]bool - _, _, _ = yysep4435, yyq4435, yy2arr4435 - const yyr4435 bool = false - yyq4435[0] = x.Capabilities != nil - yyq4435[1] = x.Privileged != nil - yyq4435[2] = x.SELinuxOptions != nil - yyq4435[3] = x.RunAsUser != nil - yyq4435[4] = x.RunAsNonRoot != nil - yyq4435[5] = x.ReadOnlyRootFilesystem != nil - var yynn4435 int - if yyr4435 || yy2arr4435 { + yysep4484 := !z.EncBinary() + yy2arr4484 := z.EncBasicHandle().StructToArray + var yyq4484 [6]bool + _, _, _ = yysep4484, yyq4484, yy2arr4484 + const yyr4484 bool = false + yyq4484[0] = x.Capabilities != nil + yyq4484[1] = x.Privileged != nil + yyq4484[2] = x.SELinuxOptions != nil + yyq4484[3] = x.RunAsUser != nil + yyq4484[4] = x.RunAsNonRoot != nil + yyq4484[5] = x.ReadOnlyRootFilesystem != nil + var yynn4484 int + if yyr4484 || yy2arr4484 { r.EncodeArrayStart(6) } else { - yynn4435 = 0 - for _, b := range yyq4435 { + yynn4484 = 0 + for _, b := range yyq4484 { if b { - yynn4435++ + yynn4484++ } } - r.EncodeMapStart(yynn4435) - yynn4435 = 0 + r.EncodeMapStart(yynn4484) + yynn4484 = 0 } - if yyr4435 || yy2arr4435 { + if yyr4484 || yy2arr4484 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4435[0] { + if yyq4484[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -55168,7 +55705,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4435[0] { + if yyq4484[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -55179,44 +55716,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4435 || yy2arr4435 { + if yyr4484 || yy2arr4484 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4435[1] { + if yyq4484[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4438 := *x.Privileged - yym4439 := z.EncBinary() - _ = yym4439 + yy4487 := *x.Privileged + yym4488 := z.EncBinary() + _ = yym4488 if false { } else { - r.EncodeBool(bool(yy4438)) + r.EncodeBool(bool(yy4487)) } } } else { r.EncodeNil() } } else { - if yyq4435[1] { + if yyq4484[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4440 := *x.Privileged - yym4441 := z.EncBinary() - _ = yym4441 + yy4489 := *x.Privileged + yym4490 := z.EncBinary() + _ = yym4490 if false { } else { - r.EncodeBool(bool(yy4440)) + r.EncodeBool(bool(yy4489)) } } } } - if yyr4435 || yy2arr4435 { + if yyr4484 || yy2arr4484 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4435[2] { + if yyq4484[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -55226,7 +55763,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4435[2] { + if yyq4484[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -55237,112 +55774,112 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4435 || yy2arr4435 { + if yyr4484 || yy2arr4484 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4435[3] { + if yyq4484[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4444 := *x.RunAsUser - yym4445 := z.EncBinary() - _ = yym4445 + yy4493 := *x.RunAsUser + yym4494 := z.EncBinary() + _ = yym4494 if false { } else { - r.EncodeInt(int64(yy4444)) + r.EncodeInt(int64(yy4493)) } } } else { r.EncodeNil() } } else { - if yyq4435[3] { + if yyq4484[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4446 := *x.RunAsUser - yym4447 := z.EncBinary() - _ = yym4447 + yy4495 := *x.RunAsUser + yym4496 := z.EncBinary() + _ = yym4496 if false { } else { - r.EncodeInt(int64(yy4446)) + r.EncodeInt(int64(yy4495)) } } } } - if yyr4435 || yy2arr4435 { + if yyr4484 || yy2arr4484 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4435[4] { + if yyq4484[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4449 := *x.RunAsNonRoot - yym4450 := z.EncBinary() - _ = yym4450 + yy4498 := *x.RunAsNonRoot + yym4499 := z.EncBinary() + _ = yym4499 if false { } else { - r.EncodeBool(bool(yy4449)) + r.EncodeBool(bool(yy4498)) } } } else { r.EncodeNil() } } else { - if yyq4435[4] { + if yyq4484[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4451 := *x.RunAsNonRoot - yym4452 := z.EncBinary() - _ = yym4452 + yy4500 := *x.RunAsNonRoot + yym4501 := z.EncBinary() + _ = yym4501 if false { } else { - r.EncodeBool(bool(yy4451)) + r.EncodeBool(bool(yy4500)) } } } } - if yyr4435 || yy2arr4435 { + if yyr4484 || yy2arr4484 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4435[5] { + if yyq4484[5] { if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4454 := *x.ReadOnlyRootFilesystem - yym4455 := z.EncBinary() - _ = yym4455 + yy4503 := *x.ReadOnlyRootFilesystem + yym4504 := z.EncBinary() + _ = yym4504 if false { } else { - r.EncodeBool(bool(yy4454)) + r.EncodeBool(bool(yy4503)) } } } else { r.EncodeNil() } } else { - if yyq4435[5] { + if yyq4484[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4456 := *x.ReadOnlyRootFilesystem - yym4457 := z.EncBinary() - _ = yym4457 + yy4505 := *x.ReadOnlyRootFilesystem + yym4506 := z.EncBinary() + _ = yym4506 if false { } else { - r.EncodeBool(bool(yy4456)) + r.EncodeBool(bool(yy4505)) } } } } - if yyr4435 || yy2arr4435 { + if yyr4484 || yy2arr4484 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55355,25 +55892,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4458 := z.DecBinary() - _ = yym4458 + yym4507 := z.DecBinary() + _ = yym4507 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4459 := r.ContainerType() - if yyct4459 == codecSelferValueTypeMap1234 { - yyl4459 := r.ReadMapStart() - if yyl4459 == 0 { + yyct4508 := r.ContainerType() + if yyct4508 == codecSelferValueTypeMap1234 { + yyl4508 := r.ReadMapStart() + if yyl4508 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4459, d) + x.codecDecodeSelfFromMap(yyl4508, d) } - } else if yyct4459 == codecSelferValueTypeArray1234 { - yyl4459 := r.ReadArrayStart() - if yyl4459 == 0 { + } else if yyct4508 == codecSelferValueTypeArray1234 { + yyl4508 := r.ReadArrayStart() + if yyl4508 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4459, d) + x.codecDecodeSelfFromArray(yyl4508, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55385,12 +55922,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4460Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4460Slc - var yyhl4460 bool = l >= 0 - for yyj4460 := 0; ; yyj4460++ { - if yyhl4460 { - if yyj4460 >= l { + var yys4509Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4509Slc + var yyhl4509 bool = l >= 0 + for yyj4509 := 0; ; yyj4509++ { + if yyhl4509 { + if yyj4509 >= l { break } } else { @@ -55399,10 +55936,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4460Slc = r.DecodeBytes(yys4460Slc, true, true) - yys4460 := string(yys4460Slc) + yys4509Slc = r.DecodeBytes(yys4509Slc, true, true) + yys4509 := string(yys4509Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4460 { + switch yys4509 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -55423,8 +55960,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4463 := z.DecBinary() - _ = yym4463 + yym4512 := z.DecBinary() + _ = yym4512 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -55450,8 +55987,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4466 := z.DecBinary() - _ = yym4466 + yym4515 := z.DecBinary() + _ = yym4515 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -55466,8 +56003,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4468 := z.DecBinary() - _ = yym4468 + yym4517 := z.DecBinary() + _ = yym4517 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -55482,17 +56019,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4470 := z.DecBinary() - _ = yym4470 + yym4519 := z.DecBinary() + _ = yym4519 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4460) - } // end switch yys4460 - } // end for yyj4460 + z.DecStructFieldNotFound(-1, yys4509) + } // end switch yys4509 + } // end for yyj4509 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55500,16 +56037,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4471 int - var yyb4471 bool - var yyhl4471 bool = l >= 0 - yyj4471++ - if yyhl4471 { - yyb4471 = yyj4471 > l + var yyj4520 int + var yyb4520 bool + var yyhl4520 bool = l >= 0 + yyj4520++ + if yyhl4520 { + yyb4520 = yyj4520 > l } else { - yyb4471 = r.CheckBreak() + yyb4520 = r.CheckBreak() } - if yyb4471 { + if yyb4520 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55524,13 +56061,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4471++ - if yyhl4471 { - yyb4471 = yyj4471 > l + yyj4520++ + if yyhl4520 { + yyb4520 = yyj4520 > l } else { - yyb4471 = r.CheckBreak() + yyb4520 = r.CheckBreak() } - if yyb4471 { + if yyb4520 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55543,20 +56080,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4474 := z.DecBinary() - _ = yym4474 + yym4523 := z.DecBinary() + _ = yym4523 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4471++ - if yyhl4471 { - yyb4471 = yyj4471 > l + yyj4520++ + if yyhl4520 { + yyb4520 = yyj4520 > l } else { - yyb4471 = r.CheckBreak() + yyb4520 = r.CheckBreak() } - if yyb4471 { + if yyb4520 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55571,13 +56108,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4471++ - if yyhl4471 { - yyb4471 = yyj4471 > l + yyj4520++ + if yyhl4520 { + yyb4520 = yyj4520 > l } else { - yyb4471 = r.CheckBreak() + yyb4520 = r.CheckBreak() } - if yyb4471 { + if yyb4520 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55590,20 +56127,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4477 := z.DecBinary() - _ = yym4477 + yym4526 := z.DecBinary() + _ = yym4526 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4471++ - if yyhl4471 { - yyb4471 = yyj4471 > l + yyj4520++ + if yyhl4520 { + yyb4520 = yyj4520 > l } else { - yyb4471 = r.CheckBreak() + yyb4520 = r.CheckBreak() } - if yyb4471 { + if yyb4520 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55616,20 +56153,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4479 := z.DecBinary() - _ = yym4479 + yym4528 := z.DecBinary() + _ = yym4528 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4471++ - if yyhl4471 { - yyb4471 = yyj4471 > l + yyj4520++ + if yyhl4520 { + yyb4520 = yyj4520 > l } else { - yyb4471 = r.CheckBreak() + yyb4520 = r.CheckBreak() } - if yyb4471 { + if yyb4520 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55642,25 +56179,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4481 := z.DecBinary() - _ = yym4481 + yym4530 := z.DecBinary() + _ = yym4530 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4471++ - if yyhl4471 { - yyb4471 = yyj4471 > l + yyj4520++ + if yyhl4520 { + yyb4520 = yyj4520 > l } else { - yyb4471 = r.CheckBreak() + yyb4520 = r.CheckBreak() } - if yyb4471 { + if yyb4520 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4471-1, "") + z.DecStructFieldNotFound(yyj4520-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55672,38 +56209,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4482 := z.EncBinary() - _ = yym4482 + yym4531 := z.EncBinary() + _ = yym4531 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4483 := !z.EncBinary() - yy2arr4483 := z.EncBasicHandle().StructToArray - var yyq4483 [4]bool - _, _, _ = yysep4483, yyq4483, yy2arr4483 - const yyr4483 bool = false - yyq4483[0] = x.User != "" - yyq4483[1] = x.Role != "" - yyq4483[2] = x.Type != "" - yyq4483[3] = x.Level != "" - var yynn4483 int - if yyr4483 || yy2arr4483 { + yysep4532 := !z.EncBinary() + yy2arr4532 := z.EncBasicHandle().StructToArray + var yyq4532 [4]bool + _, _, _ = yysep4532, yyq4532, yy2arr4532 + const yyr4532 bool = false + yyq4532[0] = x.User != "" + yyq4532[1] = x.Role != "" + yyq4532[2] = x.Type != "" + yyq4532[3] = x.Level != "" + var yynn4532 int + if yyr4532 || yy2arr4532 { r.EncodeArrayStart(4) } else { - yynn4483 = 0 - for _, b := range yyq4483 { + yynn4532 = 0 + for _, b := range yyq4532 { if b { - yynn4483++ + yynn4532++ } } - r.EncodeMapStart(yynn4483) - yynn4483 = 0 + r.EncodeMapStart(yynn4532) + yynn4532 = 0 } - if yyr4483 || yy2arr4483 { + if yyr4532 || yy2arr4532 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4483[0] { - yym4485 := z.EncBinary() - _ = yym4485 + if yyq4532[0] { + yym4534 := z.EncBinary() + _ = yym4534 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -55712,23 +56249,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4483[0] { + if yyq4532[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4486 := z.EncBinary() - _ = yym4486 + yym4535 := z.EncBinary() + _ = yym4535 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4483 || yy2arr4483 { + if yyr4532 || yy2arr4532 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4483[1] { - yym4488 := z.EncBinary() - _ = yym4488 + if yyq4532[1] { + yym4537 := z.EncBinary() + _ = yym4537 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -55737,23 +56274,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4483[1] { + if yyq4532[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4489 := z.EncBinary() - _ = yym4489 + yym4538 := z.EncBinary() + _ = yym4538 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr4483 || yy2arr4483 { + if yyr4532 || yy2arr4532 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4483[2] { - yym4491 := z.EncBinary() - _ = yym4491 + if yyq4532[2] { + yym4540 := z.EncBinary() + _ = yym4540 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -55762,23 +56299,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4483[2] { + if yyq4532[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4492 := z.EncBinary() - _ = yym4492 + yym4541 := z.EncBinary() + _ = yym4541 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4483 || yy2arr4483 { + if yyr4532 || yy2arr4532 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4483[3] { - yym4494 := z.EncBinary() - _ = yym4494 + if yyq4532[3] { + yym4543 := z.EncBinary() + _ = yym4543 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -55787,19 +56324,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4483[3] { + if yyq4532[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4495 := z.EncBinary() - _ = yym4495 + yym4544 := z.EncBinary() + _ = yym4544 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4483 || yy2arr4483 { + if yyr4532 || yy2arr4532 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55812,25 +56349,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4496 := z.DecBinary() - _ = yym4496 + yym4545 := z.DecBinary() + _ = yym4545 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4497 := r.ContainerType() - if yyct4497 == codecSelferValueTypeMap1234 { - yyl4497 := r.ReadMapStart() - if yyl4497 == 0 { + yyct4546 := r.ContainerType() + if yyct4546 == codecSelferValueTypeMap1234 { + yyl4546 := r.ReadMapStart() + if yyl4546 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4497, d) + x.codecDecodeSelfFromMap(yyl4546, d) } - } else if yyct4497 == codecSelferValueTypeArray1234 { - yyl4497 := r.ReadArrayStart() - if yyl4497 == 0 { + } else if yyct4546 == codecSelferValueTypeArray1234 { + yyl4546 := r.ReadArrayStart() + if yyl4546 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4497, d) + x.codecDecodeSelfFromArray(yyl4546, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55842,12 +56379,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4498Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4498Slc - var yyhl4498 bool = l >= 0 - for yyj4498 := 0; ; yyj4498++ { - if yyhl4498 { - if yyj4498 >= l { + var yys4547Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4547Slc + var yyhl4547 bool = l >= 0 + for yyj4547 := 0; ; yyj4547++ { + if yyhl4547 { + if yyj4547 >= l { break } } else { @@ -55856,10 +56393,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4498Slc = r.DecodeBytes(yys4498Slc, true, true) - yys4498 := string(yys4498Slc) + yys4547Slc = r.DecodeBytes(yys4547Slc, true, true) + yys4547 := string(yys4547Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4498 { + switch yys4547 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -55885,9 +56422,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4498) - } // end switch yys4498 - } // end for yyj4498 + z.DecStructFieldNotFound(-1, yys4547) + } // end switch yys4547 + } // end for yyj4547 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55895,16 +56432,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4503 int - var yyb4503 bool - var yyhl4503 bool = l >= 0 - yyj4503++ - if yyhl4503 { - yyb4503 = yyj4503 > l + var yyj4552 int + var yyb4552 bool + var yyhl4552 bool = l >= 0 + yyj4552++ + if yyhl4552 { + yyb4552 = yyj4552 > l } else { - yyb4503 = r.CheckBreak() + yyb4552 = r.CheckBreak() } - if yyb4503 { + if yyb4552 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55914,13 +56451,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4503++ - if yyhl4503 { - yyb4503 = yyj4503 > l + yyj4552++ + if yyhl4552 { + yyb4552 = yyj4552 > l } else { - yyb4503 = r.CheckBreak() + yyb4552 = r.CheckBreak() } - if yyb4503 { + if yyb4552 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55930,13 +56467,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4503++ - if yyhl4503 { - yyb4503 = yyj4503 > l + yyj4552++ + if yyhl4552 { + yyb4552 = yyj4552 > l } else { - yyb4503 = r.CheckBreak() + yyb4552 = r.CheckBreak() } - if yyb4503 { + if yyb4552 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55946,13 +56483,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4503++ - if yyhl4503 { - yyb4503 = yyj4503 > l + yyj4552++ + if yyhl4552 { + yyb4552 = yyj4552 > l } else { - yyb4503 = r.CheckBreak() + yyb4552 = r.CheckBreak() } - if yyb4503 { + if yyb4552 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55963,17 +56500,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4503++ - if yyhl4503 { - yyb4503 = yyj4503 > l + yyj4552++ + if yyhl4552 { + yyb4552 = yyj4552 > l } else { - yyb4503 = r.CheckBreak() + yyb4552 = r.CheckBreak() } - if yyb4503 { + if yyb4552 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4503-1, "") + z.DecStructFieldNotFound(yyj4552-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55985,37 +56522,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4508 := z.EncBinary() - _ = yym4508 + yym4557 := z.EncBinary() + _ = yym4557 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4509 := !z.EncBinary() - yy2arr4509 := z.EncBasicHandle().StructToArray - var yyq4509 [5]bool - _, _, _ = yysep4509, yyq4509, yy2arr4509 - const yyr4509 bool = false - yyq4509[0] = x.Kind != "" - yyq4509[1] = x.APIVersion != "" - yyq4509[2] = true - var yynn4509 int - if yyr4509 || yy2arr4509 { + yysep4558 := !z.EncBinary() + yy2arr4558 := z.EncBasicHandle().StructToArray + var yyq4558 [5]bool + _, _, _ = yysep4558, yyq4558, yy2arr4558 + const yyr4558 bool = false + yyq4558[0] = x.Kind != "" + yyq4558[1] = x.APIVersion != "" + yyq4558[2] = true + var yynn4558 int + if yyr4558 || yy2arr4558 { r.EncodeArrayStart(5) } else { - yynn4509 = 2 - for _, b := range yyq4509 { + yynn4558 = 2 + for _, b := range yyq4558 { if b { - yynn4509++ + yynn4558++ } } - r.EncodeMapStart(yynn4509) - yynn4509 = 0 + r.EncodeMapStart(yynn4558) + yynn4558 = 0 } - if yyr4509 || yy2arr4509 { + if yyr4558 || yy2arr4558 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4509[0] { - yym4511 := z.EncBinary() - _ = yym4511 + if yyq4558[0] { + yym4560 := z.EncBinary() + _ = yym4560 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -56024,23 +56561,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4509[0] { + if yyq4558[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4512 := z.EncBinary() - _ = yym4512 + yym4561 := z.EncBinary() + _ = yym4561 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4509 || yy2arr4509 { + if yyr4558 || yy2arr4558 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4509[1] { - yym4514 := z.EncBinary() - _ = yym4514 + if yyq4558[1] { + yym4563 := z.EncBinary() + _ = yym4563 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -56049,39 +56586,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4509[1] { + if yyq4558[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4515 := z.EncBinary() - _ = yym4515 + yym4564 := z.EncBinary() + _ = yym4564 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4509 || yy2arr4509 { + if yyr4558 || yy2arr4558 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4509[2] { - yy4517 := &x.ObjectMeta - yy4517.CodecEncodeSelf(e) + if yyq4558[2] { + yy4566 := &x.ObjectMeta + yy4566.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4509[2] { + if yyq4558[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4518 := &x.ObjectMeta - yy4518.CodecEncodeSelf(e) + yy4567 := &x.ObjectMeta + yy4567.CodecEncodeSelf(e) } } - if yyr4509 || yy2arr4509 { + if yyr4558 || yy2arr4558 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4520 := z.EncBinary() - _ = yym4520 + yym4569 := z.EncBinary() + _ = yym4569 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -56090,20 +56627,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4521 := z.EncBinary() - _ = yym4521 + yym4570 := z.EncBinary() + _ = yym4570 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4509 || yy2arr4509 { + if yyr4558 || yy2arr4558 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4523 := z.EncBinary() - _ = yym4523 + yym4572 := z.EncBinary() + _ = yym4572 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -56116,15 +56653,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4524 := z.EncBinary() - _ = yym4524 + yym4573 := z.EncBinary() + _ = yym4573 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4509 || yy2arr4509 { + if yyr4558 || yy2arr4558 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -56137,25 +56674,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4525 := z.DecBinary() - _ = yym4525 + yym4574 := z.DecBinary() + _ = yym4574 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4526 := r.ContainerType() - if yyct4526 == codecSelferValueTypeMap1234 { - yyl4526 := r.ReadMapStart() - if yyl4526 == 0 { + yyct4575 := r.ContainerType() + if yyct4575 == codecSelferValueTypeMap1234 { + yyl4575 := r.ReadMapStart() + if yyl4575 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4526, d) + x.codecDecodeSelfFromMap(yyl4575, d) } - } else if yyct4526 == codecSelferValueTypeArray1234 { - yyl4526 := r.ReadArrayStart() - if yyl4526 == 0 { + } else if yyct4575 == codecSelferValueTypeArray1234 { + yyl4575 := r.ReadArrayStart() + if yyl4575 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4526, d) + x.codecDecodeSelfFromArray(yyl4575, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -56167,12 +56704,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4527Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4527Slc - var yyhl4527 bool = l >= 0 - for yyj4527 := 0; ; yyj4527++ { - if yyhl4527 { - if yyj4527 >= l { + var yys4576Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4576Slc + var yyhl4576 bool = l >= 0 + for yyj4576 := 0; ; yyj4576++ { + if yyhl4576 { + if yyj4576 >= l { break } } else { @@ -56181,10 +56718,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4527Slc = r.DecodeBytes(yys4527Slc, true, true) - yys4527 := string(yys4527Slc) + yys4576Slc = r.DecodeBytes(yys4576Slc, true, true) + yys4576 := string(yys4576Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4527 { + switch yys4576 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -56201,8 +56738,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4530 := &x.ObjectMeta - yyv4530.CodecDecodeSelf(d) + yyv4579 := &x.ObjectMeta + yyv4579.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -56214,18 +56751,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4532 := &x.Data - yym4533 := z.DecBinary() - _ = yym4533 + yyv4581 := &x.Data + yym4582 := z.DecBinary() + _ = yym4582 if false { } else { - *yyv4532 = r.DecodeBytes(*(*[]byte)(yyv4532), false, false) + *yyv4581 = r.DecodeBytes(*(*[]byte)(yyv4581), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4527) - } // end switch yys4527 - } // end for yyj4527 + z.DecStructFieldNotFound(-1, yys4576) + } // end switch yys4576 + } // end for yyj4576 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -56233,16 +56770,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4534 int - var yyb4534 bool - var yyhl4534 bool = l >= 0 - yyj4534++ - if yyhl4534 { - yyb4534 = yyj4534 > l + var yyj4583 int + var yyb4583 bool + var yyhl4583 bool = l >= 0 + yyj4583++ + if yyhl4583 { + yyb4583 = yyj4583 > l } else { - yyb4534 = r.CheckBreak() + yyb4583 = r.CheckBreak() } - if yyb4534 { + if yyb4583 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56252,13 +56789,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4534++ - if yyhl4534 { - yyb4534 = yyj4534 > l + yyj4583++ + if yyhl4583 { + yyb4583 = yyj4583 > l } else { - yyb4534 = r.CheckBreak() + yyb4583 = r.CheckBreak() } - if yyb4534 { + if yyb4583 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56268,13 +56805,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4534++ - if yyhl4534 { - yyb4534 = yyj4534 > l + yyj4583++ + if yyhl4583 { + yyb4583 = yyj4583 > l } else { - yyb4534 = r.CheckBreak() + yyb4583 = r.CheckBreak() } - if yyb4534 { + if yyb4583 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56282,16 +56819,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4537 := &x.ObjectMeta - yyv4537.CodecDecodeSelf(d) + yyv4586 := &x.ObjectMeta + yyv4586.CodecDecodeSelf(d) } - yyj4534++ - if yyhl4534 { - yyb4534 = yyj4534 > l + yyj4583++ + if yyhl4583 { + yyb4583 = yyj4583 > l } else { - yyb4534 = r.CheckBreak() + yyb4583 = r.CheckBreak() } - if yyb4534 { + if yyb4583 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56301,13 +56838,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4534++ - if yyhl4534 { - yyb4534 = yyj4534 > l + yyj4583++ + if yyhl4583 { + yyb4583 = yyj4583 > l } else { - yyb4534 = r.CheckBreak() + yyb4583 = r.CheckBreak() } - if yyb4534 { + if yyb4583 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56315,26 +56852,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4539 := &x.Data - yym4540 := z.DecBinary() - _ = yym4540 + yyv4588 := &x.Data + yym4589 := z.DecBinary() + _ = yym4589 if false { } else { - *yyv4539 = r.DecodeBytes(*(*[]byte)(yyv4539), false, false) + *yyv4588 = r.DecodeBytes(*(*[]byte)(yyv4588), false, false) } } for { - yyj4534++ - if yyhl4534 { - yyb4534 = yyj4534 > l + yyj4583++ + if yyhl4583 { + yyb4583 = yyj4583 > l } else { - yyb4534 = r.CheckBreak() + yyb4583 = r.CheckBreak() } - if yyb4534 { + if yyb4583 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4534-1, "") + z.DecStructFieldNotFound(yyj4583-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56344,10 +56881,10 @@ func (x codecSelfer1234) encSliceOwnerReference(v []OwnerReference, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4541 := range v { + for _, yyv4590 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4542 := &yyv4541 - yy4542.CodecEncodeSelf(e) + yy4591 := &yyv4590 + yy4591.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56357,83 +56894,83 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4543 := *v - yyh4543, yyl4543 := z.DecSliceHelperStart() - var yyc4543 bool - if yyl4543 == 0 { - if yyv4543 == nil { - yyv4543 = []OwnerReference{} - yyc4543 = true - } else if len(yyv4543) != 0 { - yyv4543 = yyv4543[:0] - yyc4543 = true + yyv4592 := *v + yyh4592, yyl4592 := z.DecSliceHelperStart() + var yyc4592 bool + if yyl4592 == 0 { + if yyv4592 == nil { + yyv4592 = []OwnerReference{} + yyc4592 = true + } else if len(yyv4592) != 0 { + yyv4592 = yyv4592[:0] + yyc4592 = true } - } else if yyl4543 > 0 { - var yyrr4543, yyrl4543 int - var yyrt4543 bool - if yyl4543 > cap(yyv4543) { + } else if yyl4592 > 0 { + var yyrr4592, yyrl4592 int + var yyrt4592 bool + if yyl4592 > cap(yyv4592) { - yyrg4543 := len(yyv4543) > 0 - yyv24543 := yyv4543 - yyrl4543, yyrt4543 = z.DecInferLen(yyl4543, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4543 { - if yyrl4543 <= cap(yyv4543) { - yyv4543 = yyv4543[:yyrl4543] + yyrg4592 := len(yyv4592) > 0 + yyv24592 := yyv4592 + yyrl4592, yyrt4592 = z.DecInferLen(yyl4592, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4592 { + if yyrl4592 <= cap(yyv4592) { + yyv4592 = yyv4592[:yyrl4592] } else { - yyv4543 = make([]OwnerReference, yyrl4543) + yyv4592 = make([]OwnerReference, yyrl4592) } } else { - yyv4543 = make([]OwnerReference, yyrl4543) + yyv4592 = make([]OwnerReference, yyrl4592) } - yyc4543 = true - yyrr4543 = len(yyv4543) - if yyrg4543 { - copy(yyv4543, yyv24543) + yyc4592 = true + yyrr4592 = len(yyv4592) + if yyrg4592 { + copy(yyv4592, yyv24592) } - } else if yyl4543 != len(yyv4543) { - yyv4543 = yyv4543[:yyl4543] - yyc4543 = true + } else if yyl4592 != len(yyv4592) { + yyv4592 = yyv4592[:yyl4592] + yyc4592 = true } - yyj4543 := 0 - for ; yyj4543 < yyrr4543; yyj4543++ { - yyh4543.ElemContainerState(yyj4543) + yyj4592 := 0 + for ; yyj4592 < yyrr4592; yyj4592++ { + yyh4592.ElemContainerState(yyj4592) if r.TryDecodeAsNil() { - yyv4543[yyj4543] = OwnerReference{} + yyv4592[yyj4592] = OwnerReference{} } else { - yyv4544 := &yyv4543[yyj4543] - yyv4544.CodecDecodeSelf(d) + yyv4593 := &yyv4592[yyj4592] + yyv4593.CodecDecodeSelf(d) } } - if yyrt4543 { - for ; yyj4543 < yyl4543; yyj4543++ { - yyv4543 = append(yyv4543, OwnerReference{}) - yyh4543.ElemContainerState(yyj4543) + if yyrt4592 { + for ; yyj4592 < yyl4592; yyj4592++ { + yyv4592 = append(yyv4592, OwnerReference{}) + yyh4592.ElemContainerState(yyj4592) if r.TryDecodeAsNil() { - yyv4543[yyj4543] = OwnerReference{} + yyv4592[yyj4592] = OwnerReference{} } else { - yyv4545 := &yyv4543[yyj4543] - yyv4545.CodecDecodeSelf(d) + yyv4594 := &yyv4592[yyj4592] + yyv4594.CodecDecodeSelf(d) } } } } else { - yyj4543 := 0 - for ; !r.CheckBreak(); yyj4543++ { + yyj4592 := 0 + for ; !r.CheckBreak(); yyj4592++ { - if yyj4543 >= len(yyv4543) { - yyv4543 = append(yyv4543, OwnerReference{}) // var yyz4543 OwnerReference - yyc4543 = true + if yyj4592 >= len(yyv4592) { + yyv4592 = append(yyv4592, OwnerReference{}) // var yyz4592 OwnerReference + yyc4592 = true } - yyh4543.ElemContainerState(yyj4543) - if yyj4543 < len(yyv4543) { + yyh4592.ElemContainerState(yyj4592) + if yyj4592 < len(yyv4592) { if r.TryDecodeAsNil() { - yyv4543[yyj4543] = OwnerReference{} + yyv4592[yyj4592] = OwnerReference{} } else { - yyv4546 := &yyv4543[yyj4543] - yyv4546.CodecDecodeSelf(d) + yyv4595 := &yyv4592[yyj4592] + yyv4595.CodecDecodeSelf(d) } } else { @@ -56441,17 +56978,17 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 } } - if yyj4543 < len(yyv4543) { - yyv4543 = yyv4543[:yyj4543] - yyc4543 = true - } else if yyj4543 == 0 && yyv4543 == nil { - yyv4543 = []OwnerReference{} - yyc4543 = true + if yyj4592 < len(yyv4592) { + yyv4592 = yyv4592[:yyj4592] + yyc4592 = true + } else if yyj4592 == 0 && yyv4592 == nil { + yyv4592 = []OwnerReference{} + yyc4592 = true } } - yyh4543.End() - if yyc4543 { - *v = yyv4543 + yyh4592.End() + if yyc4592 { + *v = yyv4592 } } @@ -56460,9 +56997,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4547 := range v { + for _, yyv4596 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4547.CodecEncodeSelf(e) + yyv4596.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56472,75 +57009,75 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4548 := *v - yyh4548, yyl4548 := z.DecSliceHelperStart() - var yyc4548 bool - if yyl4548 == 0 { - if yyv4548 == nil { - yyv4548 = []PersistentVolumeAccessMode{} - yyc4548 = true - } else if len(yyv4548) != 0 { - yyv4548 = yyv4548[:0] - yyc4548 = true + yyv4597 := *v + yyh4597, yyl4597 := z.DecSliceHelperStart() + var yyc4597 bool + if yyl4597 == 0 { + if yyv4597 == nil { + yyv4597 = []PersistentVolumeAccessMode{} + yyc4597 = true + } else if len(yyv4597) != 0 { + yyv4597 = yyv4597[:0] + yyc4597 = true } - } else if yyl4548 > 0 { - var yyrr4548, yyrl4548 int - var yyrt4548 bool - if yyl4548 > cap(yyv4548) { + } else if yyl4597 > 0 { + var yyrr4597, yyrl4597 int + var yyrt4597 bool + if yyl4597 > cap(yyv4597) { - yyrl4548, yyrt4548 = z.DecInferLen(yyl4548, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4548 { - if yyrl4548 <= cap(yyv4548) { - yyv4548 = yyv4548[:yyrl4548] + yyrl4597, yyrt4597 = z.DecInferLen(yyl4597, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4597 { + if yyrl4597 <= cap(yyv4597) { + yyv4597 = yyv4597[:yyrl4597] } else { - yyv4548 = make([]PersistentVolumeAccessMode, yyrl4548) + yyv4597 = make([]PersistentVolumeAccessMode, yyrl4597) } } else { - yyv4548 = make([]PersistentVolumeAccessMode, yyrl4548) + yyv4597 = make([]PersistentVolumeAccessMode, yyrl4597) } - yyc4548 = true - yyrr4548 = len(yyv4548) - } else if yyl4548 != len(yyv4548) { - yyv4548 = yyv4548[:yyl4548] - yyc4548 = true + yyc4597 = true + yyrr4597 = len(yyv4597) + } else if yyl4597 != len(yyv4597) { + yyv4597 = yyv4597[:yyl4597] + yyc4597 = true } - yyj4548 := 0 - for ; yyj4548 < yyrr4548; yyj4548++ { - yyh4548.ElemContainerState(yyj4548) + yyj4597 := 0 + for ; yyj4597 < yyrr4597; yyj4597++ { + yyh4597.ElemContainerState(yyj4597) if r.TryDecodeAsNil() { - yyv4548[yyj4548] = "" + yyv4597[yyj4597] = "" } else { - yyv4548[yyj4548] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4597[yyj4597] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt4548 { - for ; yyj4548 < yyl4548; yyj4548++ { - yyv4548 = append(yyv4548, "") - yyh4548.ElemContainerState(yyj4548) + if yyrt4597 { + for ; yyj4597 < yyl4597; yyj4597++ { + yyv4597 = append(yyv4597, "") + yyh4597.ElemContainerState(yyj4597) if r.TryDecodeAsNil() { - yyv4548[yyj4548] = "" + yyv4597[yyj4597] = "" } else { - yyv4548[yyj4548] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4597[yyj4597] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj4548 := 0 - for ; !r.CheckBreak(); yyj4548++ { + yyj4597 := 0 + for ; !r.CheckBreak(); yyj4597++ { - if yyj4548 >= len(yyv4548) { - yyv4548 = append(yyv4548, "") // var yyz4548 PersistentVolumeAccessMode - yyc4548 = true + if yyj4597 >= len(yyv4597) { + yyv4597 = append(yyv4597, "") // var yyz4597 PersistentVolumeAccessMode + yyc4597 = true } - yyh4548.ElemContainerState(yyj4548) - if yyj4548 < len(yyv4548) { + yyh4597.ElemContainerState(yyj4597) + if yyj4597 < len(yyv4597) { if r.TryDecodeAsNil() { - yyv4548[yyj4548] = "" + yyv4597[yyj4597] = "" } else { - yyv4548[yyj4548] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4597[yyj4597] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -56548,17 +57085,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } - if yyj4548 < len(yyv4548) { - yyv4548 = yyv4548[:yyj4548] - yyc4548 = true - } else if yyj4548 == 0 && yyv4548 == nil { - yyv4548 = []PersistentVolumeAccessMode{} - yyc4548 = true + if yyj4597 < len(yyv4597) { + yyv4597 = yyv4597[:yyj4597] + yyc4597 = true + } else if yyj4597 == 0 && yyv4597 == nil { + yyv4597 = []PersistentVolumeAccessMode{} + yyc4597 = true } } - yyh4548.End() - if yyc4548 { - *v = yyv4548 + yyh4597.End() + if yyc4597 { + *v = yyv4597 } } @@ -56567,10 +57104,10 @@ func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4552 := range v { + for _, yyv4601 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4553 := &yyv4552 - yy4553.CodecEncodeSelf(e) + yy4602 := &yyv4601 + yy4602.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56580,83 +57117,83 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4554 := *v - yyh4554, yyl4554 := z.DecSliceHelperStart() - var yyc4554 bool - if yyl4554 == 0 { - if yyv4554 == nil { - yyv4554 = []PersistentVolume{} - yyc4554 = true - } else if len(yyv4554) != 0 { - yyv4554 = yyv4554[:0] - yyc4554 = true + yyv4603 := *v + yyh4603, yyl4603 := z.DecSliceHelperStart() + var yyc4603 bool + if yyl4603 == 0 { + if yyv4603 == nil { + yyv4603 = []PersistentVolume{} + yyc4603 = true + } else if len(yyv4603) != 0 { + yyv4603 = yyv4603[:0] + yyc4603 = true } - } else if yyl4554 > 0 { - var yyrr4554, yyrl4554 int - var yyrt4554 bool - if yyl4554 > cap(yyv4554) { + } else if yyl4603 > 0 { + var yyrr4603, yyrl4603 int + var yyrt4603 bool + if yyl4603 > cap(yyv4603) { - yyrg4554 := len(yyv4554) > 0 - yyv24554 := yyv4554 - yyrl4554, yyrt4554 = z.DecInferLen(yyl4554, z.DecBasicHandle().MaxInitLen, 488) - if yyrt4554 { - if yyrl4554 <= cap(yyv4554) { - yyv4554 = yyv4554[:yyrl4554] + yyrg4603 := len(yyv4603) > 0 + yyv24603 := yyv4603 + yyrl4603, yyrt4603 = z.DecInferLen(yyl4603, z.DecBasicHandle().MaxInitLen, 488) + if yyrt4603 { + if yyrl4603 <= cap(yyv4603) { + yyv4603 = yyv4603[:yyrl4603] } else { - yyv4554 = make([]PersistentVolume, yyrl4554) + yyv4603 = make([]PersistentVolume, yyrl4603) } } else { - yyv4554 = make([]PersistentVolume, yyrl4554) + yyv4603 = make([]PersistentVolume, yyrl4603) } - yyc4554 = true - yyrr4554 = len(yyv4554) - if yyrg4554 { - copy(yyv4554, yyv24554) + yyc4603 = true + yyrr4603 = len(yyv4603) + if yyrg4603 { + copy(yyv4603, yyv24603) } - } else if yyl4554 != len(yyv4554) { - yyv4554 = yyv4554[:yyl4554] - yyc4554 = true + } else if yyl4603 != len(yyv4603) { + yyv4603 = yyv4603[:yyl4603] + yyc4603 = true } - yyj4554 := 0 - for ; yyj4554 < yyrr4554; yyj4554++ { - yyh4554.ElemContainerState(yyj4554) + yyj4603 := 0 + for ; yyj4603 < yyrr4603; yyj4603++ { + yyh4603.ElemContainerState(yyj4603) if r.TryDecodeAsNil() { - yyv4554[yyj4554] = PersistentVolume{} + yyv4603[yyj4603] = PersistentVolume{} } else { - yyv4555 := &yyv4554[yyj4554] - yyv4555.CodecDecodeSelf(d) + yyv4604 := &yyv4603[yyj4603] + yyv4604.CodecDecodeSelf(d) } } - if yyrt4554 { - for ; yyj4554 < yyl4554; yyj4554++ { - yyv4554 = append(yyv4554, PersistentVolume{}) - yyh4554.ElemContainerState(yyj4554) + if yyrt4603 { + for ; yyj4603 < yyl4603; yyj4603++ { + yyv4603 = append(yyv4603, PersistentVolume{}) + yyh4603.ElemContainerState(yyj4603) if r.TryDecodeAsNil() { - yyv4554[yyj4554] = PersistentVolume{} + yyv4603[yyj4603] = PersistentVolume{} } else { - yyv4556 := &yyv4554[yyj4554] - yyv4556.CodecDecodeSelf(d) + yyv4605 := &yyv4603[yyj4603] + yyv4605.CodecDecodeSelf(d) } } } } else { - yyj4554 := 0 - for ; !r.CheckBreak(); yyj4554++ { + yyj4603 := 0 + for ; !r.CheckBreak(); yyj4603++ { - if yyj4554 >= len(yyv4554) { - yyv4554 = append(yyv4554, PersistentVolume{}) // var yyz4554 PersistentVolume - yyc4554 = true + if yyj4603 >= len(yyv4603) { + yyv4603 = append(yyv4603, PersistentVolume{}) // var yyz4603 PersistentVolume + yyc4603 = true } - yyh4554.ElemContainerState(yyj4554) - if yyj4554 < len(yyv4554) { + yyh4603.ElemContainerState(yyj4603) + if yyj4603 < len(yyv4603) { if r.TryDecodeAsNil() { - yyv4554[yyj4554] = PersistentVolume{} + yyv4603[yyj4603] = PersistentVolume{} } else { - yyv4557 := &yyv4554[yyj4554] - yyv4557.CodecDecodeSelf(d) + yyv4606 := &yyv4603[yyj4603] + yyv4606.CodecDecodeSelf(d) } } else { @@ -56664,17 +57201,17 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj4554 < len(yyv4554) { - yyv4554 = yyv4554[:yyj4554] - yyc4554 = true - } else if yyj4554 == 0 && yyv4554 == nil { - yyv4554 = []PersistentVolume{} - yyc4554 = true + if yyj4603 < len(yyv4603) { + yyv4603 = yyv4603[:yyj4603] + yyc4603 = true + } else if yyj4603 == 0 && yyv4603 == nil { + yyv4603 = []PersistentVolume{} + yyc4603 = true } } - yyh4554.End() - if yyc4554 { - *v = yyv4554 + yyh4603.End() + if yyc4603 { + *v = yyv4603 } } @@ -56683,10 +57220,10 @@ func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4558 := range v { + for _, yyv4607 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4559 := &yyv4558 - yy4559.CodecEncodeSelf(e) + yy4608 := &yyv4607 + yy4608.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56696,83 +57233,83 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4560 := *v - yyh4560, yyl4560 := z.DecSliceHelperStart() - var yyc4560 bool - if yyl4560 == 0 { - if yyv4560 == nil { - yyv4560 = []PersistentVolumeClaim{} - yyc4560 = true - } else if len(yyv4560) != 0 { - yyv4560 = yyv4560[:0] - yyc4560 = true + yyv4609 := *v + yyh4609, yyl4609 := z.DecSliceHelperStart() + var yyc4609 bool + if yyl4609 == 0 { + if yyv4609 == nil { + yyv4609 = []PersistentVolumeClaim{} + yyc4609 = true + } else if len(yyv4609) != 0 { + yyv4609 = yyv4609[:0] + yyc4609 = true } - } else if yyl4560 > 0 { - var yyrr4560, yyrl4560 int - var yyrt4560 bool - if yyl4560 > cap(yyv4560) { + } else if yyl4609 > 0 { + var yyrr4609, yyrl4609 int + var yyrt4609 bool + if yyl4609 > cap(yyv4609) { - yyrg4560 := len(yyv4560) > 0 - yyv24560 := yyv4560 - yyrl4560, yyrt4560 = z.DecInferLen(yyl4560, z.DecBasicHandle().MaxInitLen, 368) - if yyrt4560 { - if yyrl4560 <= cap(yyv4560) { - yyv4560 = yyv4560[:yyrl4560] + yyrg4609 := len(yyv4609) > 0 + yyv24609 := yyv4609 + yyrl4609, yyrt4609 = z.DecInferLen(yyl4609, z.DecBasicHandle().MaxInitLen, 368) + if yyrt4609 { + if yyrl4609 <= cap(yyv4609) { + yyv4609 = yyv4609[:yyrl4609] } else { - yyv4560 = make([]PersistentVolumeClaim, yyrl4560) + yyv4609 = make([]PersistentVolumeClaim, yyrl4609) } } else { - yyv4560 = make([]PersistentVolumeClaim, yyrl4560) + yyv4609 = make([]PersistentVolumeClaim, yyrl4609) } - yyc4560 = true - yyrr4560 = len(yyv4560) - if yyrg4560 { - copy(yyv4560, yyv24560) + yyc4609 = true + yyrr4609 = len(yyv4609) + if yyrg4609 { + copy(yyv4609, yyv24609) } - } else if yyl4560 != len(yyv4560) { - yyv4560 = yyv4560[:yyl4560] - yyc4560 = true + } else if yyl4609 != len(yyv4609) { + yyv4609 = yyv4609[:yyl4609] + yyc4609 = true } - yyj4560 := 0 - for ; yyj4560 < yyrr4560; yyj4560++ { - yyh4560.ElemContainerState(yyj4560) + yyj4609 := 0 + for ; yyj4609 < yyrr4609; yyj4609++ { + yyh4609.ElemContainerState(yyj4609) if r.TryDecodeAsNil() { - yyv4560[yyj4560] = PersistentVolumeClaim{} + yyv4609[yyj4609] = PersistentVolumeClaim{} } else { - yyv4561 := &yyv4560[yyj4560] - yyv4561.CodecDecodeSelf(d) + yyv4610 := &yyv4609[yyj4609] + yyv4610.CodecDecodeSelf(d) } } - if yyrt4560 { - for ; yyj4560 < yyl4560; yyj4560++ { - yyv4560 = append(yyv4560, PersistentVolumeClaim{}) - yyh4560.ElemContainerState(yyj4560) + if yyrt4609 { + for ; yyj4609 < yyl4609; yyj4609++ { + yyv4609 = append(yyv4609, PersistentVolumeClaim{}) + yyh4609.ElemContainerState(yyj4609) if r.TryDecodeAsNil() { - yyv4560[yyj4560] = PersistentVolumeClaim{} + yyv4609[yyj4609] = PersistentVolumeClaim{} } else { - yyv4562 := &yyv4560[yyj4560] - yyv4562.CodecDecodeSelf(d) + yyv4611 := &yyv4609[yyj4609] + yyv4611.CodecDecodeSelf(d) } } } } else { - yyj4560 := 0 - for ; !r.CheckBreak(); yyj4560++ { + yyj4609 := 0 + for ; !r.CheckBreak(); yyj4609++ { - if yyj4560 >= len(yyv4560) { - yyv4560 = append(yyv4560, PersistentVolumeClaim{}) // var yyz4560 PersistentVolumeClaim - yyc4560 = true + if yyj4609 >= len(yyv4609) { + yyv4609 = append(yyv4609, PersistentVolumeClaim{}) // var yyz4609 PersistentVolumeClaim + yyc4609 = true } - yyh4560.ElemContainerState(yyj4560) - if yyj4560 < len(yyv4560) { + yyh4609.ElemContainerState(yyj4609) + if yyj4609 < len(yyv4609) { if r.TryDecodeAsNil() { - yyv4560[yyj4560] = PersistentVolumeClaim{} + yyv4609[yyj4609] = PersistentVolumeClaim{} } else { - yyv4563 := &yyv4560[yyj4560] - yyv4563.CodecDecodeSelf(d) + yyv4612 := &yyv4609[yyj4609] + yyv4612.CodecDecodeSelf(d) } } else { @@ -56780,17 +57317,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj4560 < len(yyv4560) { - yyv4560 = yyv4560[:yyj4560] - yyc4560 = true - } else if yyj4560 == 0 && yyv4560 == nil { - yyv4560 = []PersistentVolumeClaim{} - yyc4560 = true + if yyj4609 < len(yyv4609) { + yyv4609 = yyv4609[:yyj4609] + yyc4609 = true + } else if yyj4609 == 0 && yyv4609 == nil { + yyv4609 = []PersistentVolumeClaim{} + yyc4609 = true } } - yyh4560.End() - if yyc4560 { - *v = yyv4560 + yyh4609.End() + if yyc4609 { + *v = yyv4609 } } @@ -56799,10 +57336,10 @@ func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4564 := range v { + for _, yyv4613 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4565 := &yyv4564 - yy4565.CodecEncodeSelf(e) + yy4614 := &yyv4613 + yy4614.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56812,83 +57349,83 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4566 := *v - yyh4566, yyl4566 := z.DecSliceHelperStart() - var yyc4566 bool - if yyl4566 == 0 { - if yyv4566 == nil { - yyv4566 = []KeyToPath{} - yyc4566 = true - } else if len(yyv4566) != 0 { - yyv4566 = yyv4566[:0] - yyc4566 = true + yyv4615 := *v + yyh4615, yyl4615 := z.DecSliceHelperStart() + var yyc4615 bool + if yyl4615 == 0 { + if yyv4615 == nil { + yyv4615 = []KeyToPath{} + yyc4615 = true + } else if len(yyv4615) != 0 { + yyv4615 = yyv4615[:0] + yyc4615 = true } - } else if yyl4566 > 0 { - var yyrr4566, yyrl4566 int - var yyrt4566 bool - if yyl4566 > cap(yyv4566) { + } else if yyl4615 > 0 { + var yyrr4615, yyrl4615 int + var yyrt4615 bool + if yyl4615 > cap(yyv4615) { - yyrg4566 := len(yyv4566) > 0 - yyv24566 := yyv4566 - yyrl4566, yyrt4566 = z.DecInferLen(yyl4566, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4566 { - if yyrl4566 <= cap(yyv4566) { - yyv4566 = yyv4566[:yyrl4566] + yyrg4615 := len(yyv4615) > 0 + yyv24615 := yyv4615 + yyrl4615, yyrt4615 = z.DecInferLen(yyl4615, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4615 { + if yyrl4615 <= cap(yyv4615) { + yyv4615 = yyv4615[:yyrl4615] } else { - yyv4566 = make([]KeyToPath, yyrl4566) + yyv4615 = make([]KeyToPath, yyrl4615) } } else { - yyv4566 = make([]KeyToPath, yyrl4566) + yyv4615 = make([]KeyToPath, yyrl4615) } - yyc4566 = true - yyrr4566 = len(yyv4566) - if yyrg4566 { - copy(yyv4566, yyv24566) + yyc4615 = true + yyrr4615 = len(yyv4615) + if yyrg4615 { + copy(yyv4615, yyv24615) } - } else if yyl4566 != len(yyv4566) { - yyv4566 = yyv4566[:yyl4566] - yyc4566 = true + } else if yyl4615 != len(yyv4615) { + yyv4615 = yyv4615[:yyl4615] + yyc4615 = true } - yyj4566 := 0 - for ; yyj4566 < yyrr4566; yyj4566++ { - yyh4566.ElemContainerState(yyj4566) + yyj4615 := 0 + for ; yyj4615 < yyrr4615; yyj4615++ { + yyh4615.ElemContainerState(yyj4615) if r.TryDecodeAsNil() { - yyv4566[yyj4566] = KeyToPath{} + yyv4615[yyj4615] = KeyToPath{} } else { - yyv4567 := &yyv4566[yyj4566] - yyv4567.CodecDecodeSelf(d) + yyv4616 := &yyv4615[yyj4615] + yyv4616.CodecDecodeSelf(d) } } - if yyrt4566 { - for ; yyj4566 < yyl4566; yyj4566++ { - yyv4566 = append(yyv4566, KeyToPath{}) - yyh4566.ElemContainerState(yyj4566) + if yyrt4615 { + for ; yyj4615 < yyl4615; yyj4615++ { + yyv4615 = append(yyv4615, KeyToPath{}) + yyh4615.ElemContainerState(yyj4615) if r.TryDecodeAsNil() { - yyv4566[yyj4566] = KeyToPath{} + yyv4615[yyj4615] = KeyToPath{} } else { - yyv4568 := &yyv4566[yyj4566] - yyv4568.CodecDecodeSelf(d) + yyv4617 := &yyv4615[yyj4615] + yyv4617.CodecDecodeSelf(d) } } } } else { - yyj4566 := 0 - for ; !r.CheckBreak(); yyj4566++ { + yyj4615 := 0 + for ; !r.CheckBreak(); yyj4615++ { - if yyj4566 >= len(yyv4566) { - yyv4566 = append(yyv4566, KeyToPath{}) // var yyz4566 KeyToPath - yyc4566 = true + if yyj4615 >= len(yyv4615) { + yyv4615 = append(yyv4615, KeyToPath{}) // var yyz4615 KeyToPath + yyc4615 = true } - yyh4566.ElemContainerState(yyj4566) - if yyj4566 < len(yyv4566) { + yyh4615.ElemContainerState(yyj4615) + if yyj4615 < len(yyv4615) { if r.TryDecodeAsNil() { - yyv4566[yyj4566] = KeyToPath{} + yyv4615[yyj4615] = KeyToPath{} } else { - yyv4569 := &yyv4566[yyj4566] - yyv4569.CodecDecodeSelf(d) + yyv4618 := &yyv4615[yyj4615] + yyv4618.CodecDecodeSelf(d) } } else { @@ -56896,17 +57433,17 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) } } - if yyj4566 < len(yyv4566) { - yyv4566 = yyv4566[:yyj4566] - yyc4566 = true - } else if yyj4566 == 0 && yyv4566 == nil { - yyv4566 = []KeyToPath{} - yyc4566 = true + if yyj4615 < len(yyv4615) { + yyv4615 = yyv4615[:yyj4615] + yyc4615 = true + } else if yyj4615 == 0 && yyv4615 == nil { + yyv4615 = []KeyToPath{} + yyc4615 = true } } - yyh4566.End() - if yyc4566 { - *v = yyv4566 + yyh4615.End() + if yyc4615 { + *v = yyv4615 } } @@ -56915,10 +57452,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4570 := range v { + for _, yyv4619 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4571 := &yyv4570 - yy4571.CodecEncodeSelf(e) + yy4620 := &yyv4619 + yy4620.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56928,83 +57465,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4572 := *v - yyh4572, yyl4572 := z.DecSliceHelperStart() - var yyc4572 bool - if yyl4572 == 0 { - if yyv4572 == nil { - yyv4572 = []DownwardAPIVolumeFile{} - yyc4572 = true - } else if len(yyv4572) != 0 { - yyv4572 = yyv4572[:0] - yyc4572 = true + yyv4621 := *v + yyh4621, yyl4621 := z.DecSliceHelperStart() + var yyc4621 bool + if yyl4621 == 0 { + if yyv4621 == nil { + yyv4621 = []DownwardAPIVolumeFile{} + yyc4621 = true + } else if len(yyv4621) != 0 { + yyv4621 = yyv4621[:0] + yyc4621 = true } - } else if yyl4572 > 0 { - var yyrr4572, yyrl4572 int - var yyrt4572 bool - if yyl4572 > cap(yyv4572) { + } else if yyl4621 > 0 { + var yyrr4621, yyrl4621 int + var yyrt4621 bool + if yyl4621 > cap(yyv4621) { - yyrg4572 := len(yyv4572) > 0 - yyv24572 := yyv4572 - yyrl4572, yyrt4572 = z.DecInferLen(yyl4572, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4572 { - if yyrl4572 <= cap(yyv4572) { - yyv4572 = yyv4572[:yyrl4572] + yyrg4621 := len(yyv4621) > 0 + yyv24621 := yyv4621 + yyrl4621, yyrt4621 = z.DecInferLen(yyl4621, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4621 { + if yyrl4621 <= cap(yyv4621) { + yyv4621 = yyv4621[:yyrl4621] } else { - yyv4572 = make([]DownwardAPIVolumeFile, yyrl4572) + yyv4621 = make([]DownwardAPIVolumeFile, yyrl4621) } } else { - yyv4572 = make([]DownwardAPIVolumeFile, yyrl4572) + yyv4621 = make([]DownwardAPIVolumeFile, yyrl4621) } - yyc4572 = true - yyrr4572 = len(yyv4572) - if yyrg4572 { - copy(yyv4572, yyv24572) + yyc4621 = true + yyrr4621 = len(yyv4621) + if yyrg4621 { + copy(yyv4621, yyv24621) } - } else if yyl4572 != len(yyv4572) { - yyv4572 = yyv4572[:yyl4572] - yyc4572 = true + } else if yyl4621 != len(yyv4621) { + yyv4621 = yyv4621[:yyl4621] + yyc4621 = true } - yyj4572 := 0 - for ; yyj4572 < yyrr4572; yyj4572++ { - yyh4572.ElemContainerState(yyj4572) + yyj4621 := 0 + for ; yyj4621 < yyrr4621; yyj4621++ { + yyh4621.ElemContainerState(yyj4621) if r.TryDecodeAsNil() { - yyv4572[yyj4572] = DownwardAPIVolumeFile{} + yyv4621[yyj4621] = DownwardAPIVolumeFile{} } else { - yyv4573 := &yyv4572[yyj4572] - yyv4573.CodecDecodeSelf(d) + yyv4622 := &yyv4621[yyj4621] + yyv4622.CodecDecodeSelf(d) } } - if yyrt4572 { - for ; yyj4572 < yyl4572; yyj4572++ { - yyv4572 = append(yyv4572, DownwardAPIVolumeFile{}) - yyh4572.ElemContainerState(yyj4572) + if yyrt4621 { + for ; yyj4621 < yyl4621; yyj4621++ { + yyv4621 = append(yyv4621, DownwardAPIVolumeFile{}) + yyh4621.ElemContainerState(yyj4621) if r.TryDecodeAsNil() { - yyv4572[yyj4572] = DownwardAPIVolumeFile{} + yyv4621[yyj4621] = DownwardAPIVolumeFile{} } else { - yyv4574 := &yyv4572[yyj4572] - yyv4574.CodecDecodeSelf(d) + yyv4623 := &yyv4621[yyj4621] + yyv4623.CodecDecodeSelf(d) } } } } else { - yyj4572 := 0 - for ; !r.CheckBreak(); yyj4572++ { + yyj4621 := 0 + for ; !r.CheckBreak(); yyj4621++ { - if yyj4572 >= len(yyv4572) { - yyv4572 = append(yyv4572, DownwardAPIVolumeFile{}) // var yyz4572 DownwardAPIVolumeFile - yyc4572 = true + if yyj4621 >= len(yyv4621) { + yyv4621 = append(yyv4621, DownwardAPIVolumeFile{}) // var yyz4621 DownwardAPIVolumeFile + yyc4621 = true } - yyh4572.ElemContainerState(yyj4572) - if yyj4572 < len(yyv4572) { + yyh4621.ElemContainerState(yyj4621) + if yyj4621 < len(yyv4621) { if r.TryDecodeAsNil() { - yyv4572[yyj4572] = DownwardAPIVolumeFile{} + yyv4621[yyj4621] = DownwardAPIVolumeFile{} } else { - yyv4575 := &yyv4572[yyj4572] - yyv4575.CodecDecodeSelf(d) + yyv4624 := &yyv4621[yyj4621] + yyv4624.CodecDecodeSelf(d) } } else { @@ -57012,17 +57549,17 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4572 < len(yyv4572) { - yyv4572 = yyv4572[:yyj4572] - yyc4572 = true - } else if yyj4572 == 0 && yyv4572 == nil { - yyv4572 = []DownwardAPIVolumeFile{} - yyc4572 = true + if yyj4621 < len(yyv4621) { + yyv4621 = yyv4621[:yyj4621] + yyc4621 = true + } else if yyj4621 == 0 && yyv4621 == nil { + yyv4621 = []DownwardAPIVolumeFile{} + yyc4621 = true } } - yyh4572.End() - if yyc4572 { - *v = yyv4572 + yyh4621.End() + if yyc4621 { + *v = yyv4621 } } @@ -57031,10 +57568,10 @@ func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4576 := range v { + for _, yyv4625 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4577 := &yyv4576 - yy4577.CodecEncodeSelf(e) + yy4626 := &yyv4625 + yy4626.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57044,83 +57581,83 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4578 := *v - yyh4578, yyl4578 := z.DecSliceHelperStart() - var yyc4578 bool - if yyl4578 == 0 { - if yyv4578 == nil { - yyv4578 = []HTTPHeader{} - yyc4578 = true - } else if len(yyv4578) != 0 { - yyv4578 = yyv4578[:0] - yyc4578 = true + yyv4627 := *v + yyh4627, yyl4627 := z.DecSliceHelperStart() + var yyc4627 bool + if yyl4627 == 0 { + if yyv4627 == nil { + yyv4627 = []HTTPHeader{} + yyc4627 = true + } else if len(yyv4627) != 0 { + yyv4627 = yyv4627[:0] + yyc4627 = true } - } else if yyl4578 > 0 { - var yyrr4578, yyrl4578 int - var yyrt4578 bool - if yyl4578 > cap(yyv4578) { + } else if yyl4627 > 0 { + var yyrr4627, yyrl4627 int + var yyrt4627 bool + if yyl4627 > cap(yyv4627) { - yyrg4578 := len(yyv4578) > 0 - yyv24578 := yyv4578 - yyrl4578, yyrt4578 = z.DecInferLen(yyl4578, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4578 { - if yyrl4578 <= cap(yyv4578) { - yyv4578 = yyv4578[:yyrl4578] + yyrg4627 := len(yyv4627) > 0 + yyv24627 := yyv4627 + yyrl4627, yyrt4627 = z.DecInferLen(yyl4627, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4627 { + if yyrl4627 <= cap(yyv4627) { + yyv4627 = yyv4627[:yyrl4627] } else { - yyv4578 = make([]HTTPHeader, yyrl4578) + yyv4627 = make([]HTTPHeader, yyrl4627) } } else { - yyv4578 = make([]HTTPHeader, yyrl4578) + yyv4627 = make([]HTTPHeader, yyrl4627) } - yyc4578 = true - yyrr4578 = len(yyv4578) - if yyrg4578 { - copy(yyv4578, yyv24578) + yyc4627 = true + yyrr4627 = len(yyv4627) + if yyrg4627 { + copy(yyv4627, yyv24627) } - } else if yyl4578 != len(yyv4578) { - yyv4578 = yyv4578[:yyl4578] - yyc4578 = true + } else if yyl4627 != len(yyv4627) { + yyv4627 = yyv4627[:yyl4627] + yyc4627 = true } - yyj4578 := 0 - for ; yyj4578 < yyrr4578; yyj4578++ { - yyh4578.ElemContainerState(yyj4578) + yyj4627 := 0 + for ; yyj4627 < yyrr4627; yyj4627++ { + yyh4627.ElemContainerState(yyj4627) if r.TryDecodeAsNil() { - yyv4578[yyj4578] = HTTPHeader{} + yyv4627[yyj4627] = HTTPHeader{} } else { - yyv4579 := &yyv4578[yyj4578] - yyv4579.CodecDecodeSelf(d) + yyv4628 := &yyv4627[yyj4627] + yyv4628.CodecDecodeSelf(d) } } - if yyrt4578 { - for ; yyj4578 < yyl4578; yyj4578++ { - yyv4578 = append(yyv4578, HTTPHeader{}) - yyh4578.ElemContainerState(yyj4578) + if yyrt4627 { + for ; yyj4627 < yyl4627; yyj4627++ { + yyv4627 = append(yyv4627, HTTPHeader{}) + yyh4627.ElemContainerState(yyj4627) if r.TryDecodeAsNil() { - yyv4578[yyj4578] = HTTPHeader{} + yyv4627[yyj4627] = HTTPHeader{} } else { - yyv4580 := &yyv4578[yyj4578] - yyv4580.CodecDecodeSelf(d) + yyv4629 := &yyv4627[yyj4627] + yyv4629.CodecDecodeSelf(d) } } } } else { - yyj4578 := 0 - for ; !r.CheckBreak(); yyj4578++ { + yyj4627 := 0 + for ; !r.CheckBreak(); yyj4627++ { - if yyj4578 >= len(yyv4578) { - yyv4578 = append(yyv4578, HTTPHeader{}) // var yyz4578 HTTPHeader - yyc4578 = true + if yyj4627 >= len(yyv4627) { + yyv4627 = append(yyv4627, HTTPHeader{}) // var yyz4627 HTTPHeader + yyc4627 = true } - yyh4578.ElemContainerState(yyj4578) - if yyj4578 < len(yyv4578) { + yyh4627.ElemContainerState(yyj4627) + if yyj4627 < len(yyv4627) { if r.TryDecodeAsNil() { - yyv4578[yyj4578] = HTTPHeader{} + yyv4627[yyj4627] = HTTPHeader{} } else { - yyv4581 := &yyv4578[yyj4578] - yyv4581.CodecDecodeSelf(d) + yyv4630 := &yyv4627[yyj4627] + yyv4630.CodecDecodeSelf(d) } } else { @@ -57128,17 +57665,17 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode } } - if yyj4578 < len(yyv4578) { - yyv4578 = yyv4578[:yyj4578] - yyc4578 = true - } else if yyj4578 == 0 && yyv4578 == nil { - yyv4578 = []HTTPHeader{} - yyc4578 = true + if yyj4627 < len(yyv4627) { + yyv4627 = yyv4627[:yyj4627] + yyc4627 = true + } else if yyj4627 == 0 && yyv4627 == nil { + yyv4627 = []HTTPHeader{} + yyc4627 = true } } - yyh4578.End() - if yyc4578 { - *v = yyv4578 + yyh4627.End() + if yyc4627 { + *v = yyv4627 } } @@ -57147,9 +57684,9 @@ func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4582 := range v { + for _, yyv4631 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4582.CodecEncodeSelf(e) + yyv4631.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57159,75 +57696,75 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4583 := *v - yyh4583, yyl4583 := z.DecSliceHelperStart() - var yyc4583 bool - if yyl4583 == 0 { - if yyv4583 == nil { - yyv4583 = []Capability{} - yyc4583 = true - } else if len(yyv4583) != 0 { - yyv4583 = yyv4583[:0] - yyc4583 = true + yyv4632 := *v + yyh4632, yyl4632 := z.DecSliceHelperStart() + var yyc4632 bool + if yyl4632 == 0 { + if yyv4632 == nil { + yyv4632 = []Capability{} + yyc4632 = true + } else if len(yyv4632) != 0 { + yyv4632 = yyv4632[:0] + yyc4632 = true } - } else if yyl4583 > 0 { - var yyrr4583, yyrl4583 int - var yyrt4583 bool - if yyl4583 > cap(yyv4583) { + } else if yyl4632 > 0 { + var yyrr4632, yyrl4632 int + var yyrt4632 bool + if yyl4632 > cap(yyv4632) { - yyrl4583, yyrt4583 = z.DecInferLen(yyl4583, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4583 { - if yyrl4583 <= cap(yyv4583) { - yyv4583 = yyv4583[:yyrl4583] + yyrl4632, yyrt4632 = z.DecInferLen(yyl4632, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4632 { + if yyrl4632 <= cap(yyv4632) { + yyv4632 = yyv4632[:yyrl4632] } else { - yyv4583 = make([]Capability, yyrl4583) + yyv4632 = make([]Capability, yyrl4632) } } else { - yyv4583 = make([]Capability, yyrl4583) + yyv4632 = make([]Capability, yyrl4632) } - yyc4583 = true - yyrr4583 = len(yyv4583) - } else if yyl4583 != len(yyv4583) { - yyv4583 = yyv4583[:yyl4583] - yyc4583 = true + yyc4632 = true + yyrr4632 = len(yyv4632) + } else if yyl4632 != len(yyv4632) { + yyv4632 = yyv4632[:yyl4632] + yyc4632 = true } - yyj4583 := 0 - for ; yyj4583 < yyrr4583; yyj4583++ { - yyh4583.ElemContainerState(yyj4583) + yyj4632 := 0 + for ; yyj4632 < yyrr4632; yyj4632++ { + yyh4632.ElemContainerState(yyj4632) if r.TryDecodeAsNil() { - yyv4583[yyj4583] = "" + yyv4632[yyj4632] = "" } else { - yyv4583[yyj4583] = Capability(r.DecodeString()) + yyv4632[yyj4632] = Capability(r.DecodeString()) } } - if yyrt4583 { - for ; yyj4583 < yyl4583; yyj4583++ { - yyv4583 = append(yyv4583, "") - yyh4583.ElemContainerState(yyj4583) + if yyrt4632 { + for ; yyj4632 < yyl4632; yyj4632++ { + yyv4632 = append(yyv4632, "") + yyh4632.ElemContainerState(yyj4632) if r.TryDecodeAsNil() { - yyv4583[yyj4583] = "" + yyv4632[yyj4632] = "" } else { - yyv4583[yyj4583] = Capability(r.DecodeString()) + yyv4632[yyj4632] = Capability(r.DecodeString()) } } } } else { - yyj4583 := 0 - for ; !r.CheckBreak(); yyj4583++ { + yyj4632 := 0 + for ; !r.CheckBreak(); yyj4632++ { - if yyj4583 >= len(yyv4583) { - yyv4583 = append(yyv4583, "") // var yyz4583 Capability - yyc4583 = true + if yyj4632 >= len(yyv4632) { + yyv4632 = append(yyv4632, "") // var yyz4632 Capability + yyc4632 = true } - yyh4583.ElemContainerState(yyj4583) - if yyj4583 < len(yyv4583) { + yyh4632.ElemContainerState(yyj4632) + if yyj4632 < len(yyv4632) { if r.TryDecodeAsNil() { - yyv4583[yyj4583] = "" + yyv4632[yyj4632] = "" } else { - yyv4583[yyj4583] = Capability(r.DecodeString()) + yyv4632[yyj4632] = Capability(r.DecodeString()) } } else { @@ -57235,17 +57772,17 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } - if yyj4583 < len(yyv4583) { - yyv4583 = yyv4583[:yyj4583] - yyc4583 = true - } else if yyj4583 == 0 && yyv4583 == nil { - yyv4583 = []Capability{} - yyc4583 = true + if yyj4632 < len(yyv4632) { + yyv4632 = yyv4632[:yyj4632] + yyc4632 = true + } else if yyj4632 == 0 && yyv4632 == nil { + yyv4632 = []Capability{} + yyc4632 = true } } - yyh4583.End() - if yyc4583 { - *v = yyv4583 + yyh4632.End() + if yyc4632 { + *v = yyv4632 } } @@ -57254,10 +57791,10 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4587 := range v { + for _, yyv4636 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4588 := &yyv4587 - yy4588.CodecEncodeSelf(e) + yy4637 := &yyv4636 + yy4637.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57267,83 +57804,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4589 := *v - yyh4589, yyl4589 := z.DecSliceHelperStart() - var yyc4589 bool - if yyl4589 == 0 { - if yyv4589 == nil { - yyv4589 = []ContainerPort{} - yyc4589 = true - } else if len(yyv4589) != 0 { - yyv4589 = yyv4589[:0] - yyc4589 = true + yyv4638 := *v + yyh4638, yyl4638 := z.DecSliceHelperStart() + var yyc4638 bool + if yyl4638 == 0 { + if yyv4638 == nil { + yyv4638 = []ContainerPort{} + yyc4638 = true + } else if len(yyv4638) != 0 { + yyv4638 = yyv4638[:0] + yyc4638 = true } - } else if yyl4589 > 0 { - var yyrr4589, yyrl4589 int - var yyrt4589 bool - if yyl4589 > cap(yyv4589) { + } else if yyl4638 > 0 { + var yyrr4638, yyrl4638 int + var yyrt4638 bool + if yyl4638 > cap(yyv4638) { - yyrg4589 := len(yyv4589) > 0 - yyv24589 := yyv4589 - yyrl4589, yyrt4589 = z.DecInferLen(yyl4589, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4589 { - if yyrl4589 <= cap(yyv4589) { - yyv4589 = yyv4589[:yyrl4589] + yyrg4638 := len(yyv4638) > 0 + yyv24638 := yyv4638 + yyrl4638, yyrt4638 = z.DecInferLen(yyl4638, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4638 { + if yyrl4638 <= cap(yyv4638) { + yyv4638 = yyv4638[:yyrl4638] } else { - yyv4589 = make([]ContainerPort, yyrl4589) + yyv4638 = make([]ContainerPort, yyrl4638) } } else { - yyv4589 = make([]ContainerPort, yyrl4589) + yyv4638 = make([]ContainerPort, yyrl4638) } - yyc4589 = true - yyrr4589 = len(yyv4589) - if yyrg4589 { - copy(yyv4589, yyv24589) + yyc4638 = true + yyrr4638 = len(yyv4638) + if yyrg4638 { + copy(yyv4638, yyv24638) } - } else if yyl4589 != len(yyv4589) { - yyv4589 = yyv4589[:yyl4589] - yyc4589 = true + } else if yyl4638 != len(yyv4638) { + yyv4638 = yyv4638[:yyl4638] + yyc4638 = true } - yyj4589 := 0 - for ; yyj4589 < yyrr4589; yyj4589++ { - yyh4589.ElemContainerState(yyj4589) + yyj4638 := 0 + for ; yyj4638 < yyrr4638; yyj4638++ { + yyh4638.ElemContainerState(yyj4638) if r.TryDecodeAsNil() { - yyv4589[yyj4589] = ContainerPort{} + yyv4638[yyj4638] = ContainerPort{} } else { - yyv4590 := &yyv4589[yyj4589] - yyv4590.CodecDecodeSelf(d) + yyv4639 := &yyv4638[yyj4638] + yyv4639.CodecDecodeSelf(d) } } - if yyrt4589 { - for ; yyj4589 < yyl4589; yyj4589++ { - yyv4589 = append(yyv4589, ContainerPort{}) - yyh4589.ElemContainerState(yyj4589) + if yyrt4638 { + for ; yyj4638 < yyl4638; yyj4638++ { + yyv4638 = append(yyv4638, ContainerPort{}) + yyh4638.ElemContainerState(yyj4638) if r.TryDecodeAsNil() { - yyv4589[yyj4589] = ContainerPort{} + yyv4638[yyj4638] = ContainerPort{} } else { - yyv4591 := &yyv4589[yyj4589] - yyv4591.CodecDecodeSelf(d) + yyv4640 := &yyv4638[yyj4638] + yyv4640.CodecDecodeSelf(d) } } } } else { - yyj4589 := 0 - for ; !r.CheckBreak(); yyj4589++ { + yyj4638 := 0 + for ; !r.CheckBreak(); yyj4638++ { - if yyj4589 >= len(yyv4589) { - yyv4589 = append(yyv4589, ContainerPort{}) // var yyz4589 ContainerPort - yyc4589 = true + if yyj4638 >= len(yyv4638) { + yyv4638 = append(yyv4638, ContainerPort{}) // var yyz4638 ContainerPort + yyc4638 = true } - yyh4589.ElemContainerState(yyj4589) - if yyj4589 < len(yyv4589) { + yyh4638.ElemContainerState(yyj4638) + if yyj4638 < len(yyv4638) { if r.TryDecodeAsNil() { - yyv4589[yyj4589] = ContainerPort{} + yyv4638[yyj4638] = ContainerPort{} } else { - yyv4592 := &yyv4589[yyj4589] - yyv4592.CodecDecodeSelf(d) + yyv4641 := &yyv4638[yyj4638] + yyv4641.CodecDecodeSelf(d) } } else { @@ -57351,17 +57888,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj4589 < len(yyv4589) { - yyv4589 = yyv4589[:yyj4589] - yyc4589 = true - } else if yyj4589 == 0 && yyv4589 == nil { - yyv4589 = []ContainerPort{} - yyc4589 = true + if yyj4638 < len(yyv4638) { + yyv4638 = yyv4638[:yyj4638] + yyc4638 = true + } else if yyj4638 == 0 && yyv4638 == nil { + yyv4638 = []ContainerPort{} + yyc4638 = true } } - yyh4589.End() - if yyc4589 { - *v = yyv4589 + yyh4638.End() + if yyc4638 { + *v = yyv4638 } } @@ -57370,10 +57907,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4593 := range v { + for _, yyv4642 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4594 := &yyv4593 - yy4594.CodecEncodeSelf(e) + yy4643 := &yyv4642 + yy4643.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57383,83 +57920,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4595 := *v - yyh4595, yyl4595 := z.DecSliceHelperStart() - var yyc4595 bool - if yyl4595 == 0 { - if yyv4595 == nil { - yyv4595 = []EnvVar{} - yyc4595 = true - } else if len(yyv4595) != 0 { - yyv4595 = yyv4595[:0] - yyc4595 = true + yyv4644 := *v + yyh4644, yyl4644 := z.DecSliceHelperStart() + var yyc4644 bool + if yyl4644 == 0 { + if yyv4644 == nil { + yyv4644 = []EnvVar{} + yyc4644 = true + } else if len(yyv4644) != 0 { + yyv4644 = yyv4644[:0] + yyc4644 = true } - } else if yyl4595 > 0 { - var yyrr4595, yyrl4595 int - var yyrt4595 bool - if yyl4595 > cap(yyv4595) { + } else if yyl4644 > 0 { + var yyrr4644, yyrl4644 int + var yyrt4644 bool + if yyl4644 > cap(yyv4644) { - yyrg4595 := len(yyv4595) > 0 - yyv24595 := yyv4595 - yyrl4595, yyrt4595 = z.DecInferLen(yyl4595, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4595 { - if yyrl4595 <= cap(yyv4595) { - yyv4595 = yyv4595[:yyrl4595] + yyrg4644 := len(yyv4644) > 0 + yyv24644 := yyv4644 + yyrl4644, yyrt4644 = z.DecInferLen(yyl4644, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4644 { + if yyrl4644 <= cap(yyv4644) { + yyv4644 = yyv4644[:yyrl4644] } else { - yyv4595 = make([]EnvVar, yyrl4595) + yyv4644 = make([]EnvVar, yyrl4644) } } else { - yyv4595 = make([]EnvVar, yyrl4595) + yyv4644 = make([]EnvVar, yyrl4644) } - yyc4595 = true - yyrr4595 = len(yyv4595) - if yyrg4595 { - copy(yyv4595, yyv24595) + yyc4644 = true + yyrr4644 = len(yyv4644) + if yyrg4644 { + copy(yyv4644, yyv24644) } - } else if yyl4595 != len(yyv4595) { - yyv4595 = yyv4595[:yyl4595] - yyc4595 = true + } else if yyl4644 != len(yyv4644) { + yyv4644 = yyv4644[:yyl4644] + yyc4644 = true } - yyj4595 := 0 - for ; yyj4595 < yyrr4595; yyj4595++ { - yyh4595.ElemContainerState(yyj4595) + yyj4644 := 0 + for ; yyj4644 < yyrr4644; yyj4644++ { + yyh4644.ElemContainerState(yyj4644) if r.TryDecodeAsNil() { - yyv4595[yyj4595] = EnvVar{} + yyv4644[yyj4644] = EnvVar{} } else { - yyv4596 := &yyv4595[yyj4595] - yyv4596.CodecDecodeSelf(d) + yyv4645 := &yyv4644[yyj4644] + yyv4645.CodecDecodeSelf(d) } } - if yyrt4595 { - for ; yyj4595 < yyl4595; yyj4595++ { - yyv4595 = append(yyv4595, EnvVar{}) - yyh4595.ElemContainerState(yyj4595) + if yyrt4644 { + for ; yyj4644 < yyl4644; yyj4644++ { + yyv4644 = append(yyv4644, EnvVar{}) + yyh4644.ElemContainerState(yyj4644) if r.TryDecodeAsNil() { - yyv4595[yyj4595] = EnvVar{} + yyv4644[yyj4644] = EnvVar{} } else { - yyv4597 := &yyv4595[yyj4595] - yyv4597.CodecDecodeSelf(d) + yyv4646 := &yyv4644[yyj4644] + yyv4646.CodecDecodeSelf(d) } } } } else { - yyj4595 := 0 - for ; !r.CheckBreak(); yyj4595++ { + yyj4644 := 0 + for ; !r.CheckBreak(); yyj4644++ { - if yyj4595 >= len(yyv4595) { - yyv4595 = append(yyv4595, EnvVar{}) // var yyz4595 EnvVar - yyc4595 = true + if yyj4644 >= len(yyv4644) { + yyv4644 = append(yyv4644, EnvVar{}) // var yyz4644 EnvVar + yyc4644 = true } - yyh4595.ElemContainerState(yyj4595) - if yyj4595 < len(yyv4595) { + yyh4644.ElemContainerState(yyj4644) + if yyj4644 < len(yyv4644) { if r.TryDecodeAsNil() { - yyv4595[yyj4595] = EnvVar{} + yyv4644[yyj4644] = EnvVar{} } else { - yyv4598 := &yyv4595[yyj4595] - yyv4598.CodecDecodeSelf(d) + yyv4647 := &yyv4644[yyj4644] + yyv4647.CodecDecodeSelf(d) } } else { @@ -57467,17 +58004,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj4595 < len(yyv4595) { - yyv4595 = yyv4595[:yyj4595] - yyc4595 = true - } else if yyj4595 == 0 && yyv4595 == nil { - yyv4595 = []EnvVar{} - yyc4595 = true + if yyj4644 < len(yyv4644) { + yyv4644 = yyv4644[:yyj4644] + yyc4644 = true + } else if yyj4644 == 0 && yyv4644 == nil { + yyv4644 = []EnvVar{} + yyc4644 = true } } - yyh4595.End() - if yyc4595 { - *v = yyv4595 + yyh4644.End() + if yyc4644 { + *v = yyv4644 } } @@ -57486,10 +58023,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4599 := range v { + for _, yyv4648 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4600 := &yyv4599 - yy4600.CodecEncodeSelf(e) + yy4649 := &yyv4648 + yy4649.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57499,83 +58036,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4601 := *v - yyh4601, yyl4601 := z.DecSliceHelperStart() - var yyc4601 bool - if yyl4601 == 0 { - if yyv4601 == nil { - yyv4601 = []VolumeMount{} - yyc4601 = true - } else if len(yyv4601) != 0 { - yyv4601 = yyv4601[:0] - yyc4601 = true + yyv4650 := *v + yyh4650, yyl4650 := z.DecSliceHelperStart() + var yyc4650 bool + if yyl4650 == 0 { + if yyv4650 == nil { + yyv4650 = []VolumeMount{} + yyc4650 = true + } else if len(yyv4650) != 0 { + yyv4650 = yyv4650[:0] + yyc4650 = true } - } else if yyl4601 > 0 { - var yyrr4601, yyrl4601 int - var yyrt4601 bool - if yyl4601 > cap(yyv4601) { + } else if yyl4650 > 0 { + var yyrr4650, yyrl4650 int + var yyrt4650 bool + if yyl4650 > cap(yyv4650) { - yyrg4601 := len(yyv4601) > 0 - yyv24601 := yyv4601 - yyrl4601, yyrt4601 = z.DecInferLen(yyl4601, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4601 { - if yyrl4601 <= cap(yyv4601) { - yyv4601 = yyv4601[:yyrl4601] + yyrg4650 := len(yyv4650) > 0 + yyv24650 := yyv4650 + yyrl4650, yyrt4650 = z.DecInferLen(yyl4650, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4650 { + if yyrl4650 <= cap(yyv4650) { + yyv4650 = yyv4650[:yyrl4650] } else { - yyv4601 = make([]VolumeMount, yyrl4601) + yyv4650 = make([]VolumeMount, yyrl4650) } } else { - yyv4601 = make([]VolumeMount, yyrl4601) + yyv4650 = make([]VolumeMount, yyrl4650) } - yyc4601 = true - yyrr4601 = len(yyv4601) - if yyrg4601 { - copy(yyv4601, yyv24601) + yyc4650 = true + yyrr4650 = len(yyv4650) + if yyrg4650 { + copy(yyv4650, yyv24650) } - } else if yyl4601 != len(yyv4601) { - yyv4601 = yyv4601[:yyl4601] - yyc4601 = true + } else if yyl4650 != len(yyv4650) { + yyv4650 = yyv4650[:yyl4650] + yyc4650 = true } - yyj4601 := 0 - for ; yyj4601 < yyrr4601; yyj4601++ { - yyh4601.ElemContainerState(yyj4601) + yyj4650 := 0 + for ; yyj4650 < yyrr4650; yyj4650++ { + yyh4650.ElemContainerState(yyj4650) if r.TryDecodeAsNil() { - yyv4601[yyj4601] = VolumeMount{} + yyv4650[yyj4650] = VolumeMount{} } else { - yyv4602 := &yyv4601[yyj4601] - yyv4602.CodecDecodeSelf(d) + yyv4651 := &yyv4650[yyj4650] + yyv4651.CodecDecodeSelf(d) } } - if yyrt4601 { - for ; yyj4601 < yyl4601; yyj4601++ { - yyv4601 = append(yyv4601, VolumeMount{}) - yyh4601.ElemContainerState(yyj4601) + if yyrt4650 { + for ; yyj4650 < yyl4650; yyj4650++ { + yyv4650 = append(yyv4650, VolumeMount{}) + yyh4650.ElemContainerState(yyj4650) if r.TryDecodeAsNil() { - yyv4601[yyj4601] = VolumeMount{} + yyv4650[yyj4650] = VolumeMount{} } else { - yyv4603 := &yyv4601[yyj4601] - yyv4603.CodecDecodeSelf(d) + yyv4652 := &yyv4650[yyj4650] + yyv4652.CodecDecodeSelf(d) } } } } else { - yyj4601 := 0 - for ; !r.CheckBreak(); yyj4601++ { + yyj4650 := 0 + for ; !r.CheckBreak(); yyj4650++ { - if yyj4601 >= len(yyv4601) { - yyv4601 = append(yyv4601, VolumeMount{}) // var yyz4601 VolumeMount - yyc4601 = true + if yyj4650 >= len(yyv4650) { + yyv4650 = append(yyv4650, VolumeMount{}) // var yyz4650 VolumeMount + yyc4650 = true } - yyh4601.ElemContainerState(yyj4601) - if yyj4601 < len(yyv4601) { + yyh4650.ElemContainerState(yyj4650) + if yyj4650 < len(yyv4650) { if r.TryDecodeAsNil() { - yyv4601[yyj4601] = VolumeMount{} + yyv4650[yyj4650] = VolumeMount{} } else { - yyv4604 := &yyv4601[yyj4601] - yyv4604.CodecDecodeSelf(d) + yyv4653 := &yyv4650[yyj4650] + yyv4653.CodecDecodeSelf(d) } } else { @@ -57583,17 +58120,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj4601 < len(yyv4601) { - yyv4601 = yyv4601[:yyj4601] - yyc4601 = true - } else if yyj4601 == 0 && yyv4601 == nil { - yyv4601 = []VolumeMount{} - yyc4601 = true + if yyj4650 < len(yyv4650) { + yyv4650 = yyv4650[:yyj4650] + yyc4650 = true + } else if yyj4650 == 0 && yyv4650 == nil { + yyv4650 = []VolumeMount{} + yyc4650 = true } } - yyh4601.End() - if yyc4601 { - *v = yyv4601 + yyh4650.End() + if yyc4650 { + *v = yyv4650 } } @@ -57602,10 +58139,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4605 := range v { + for _, yyv4654 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4606 := &yyv4605 - yy4606.CodecEncodeSelf(e) + yy4655 := &yyv4654 + yy4655.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57615,83 +58152,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4607 := *v - yyh4607, yyl4607 := z.DecSliceHelperStart() - var yyc4607 bool - if yyl4607 == 0 { - if yyv4607 == nil { - yyv4607 = []Pod{} - yyc4607 = true - } else if len(yyv4607) != 0 { - yyv4607 = yyv4607[:0] - yyc4607 = true + yyv4656 := *v + yyh4656, yyl4656 := z.DecSliceHelperStart() + var yyc4656 bool + if yyl4656 == 0 { + if yyv4656 == nil { + yyv4656 = []Pod{} + yyc4656 = true + } else if len(yyv4656) != 0 { + yyv4656 = yyv4656[:0] + yyc4656 = true } - } else if yyl4607 > 0 { - var yyrr4607, yyrl4607 int - var yyrt4607 bool - if yyl4607 > cap(yyv4607) { + } else if yyl4656 > 0 { + var yyrr4656, yyrl4656 int + var yyrt4656 bool + if yyl4656 > cap(yyv4656) { - yyrg4607 := len(yyv4607) > 0 - yyv24607 := yyv4607 - yyrl4607, yyrt4607 = z.DecInferLen(yyl4607, z.DecBasicHandle().MaxInitLen, 640) - if yyrt4607 { - if yyrl4607 <= cap(yyv4607) { - yyv4607 = yyv4607[:yyrl4607] + yyrg4656 := len(yyv4656) > 0 + yyv24656 := yyv4656 + yyrl4656, yyrt4656 = z.DecInferLen(yyl4656, z.DecBasicHandle().MaxInitLen, 640) + if yyrt4656 { + if yyrl4656 <= cap(yyv4656) { + yyv4656 = yyv4656[:yyrl4656] } else { - yyv4607 = make([]Pod, yyrl4607) + yyv4656 = make([]Pod, yyrl4656) } } else { - yyv4607 = make([]Pod, yyrl4607) + yyv4656 = make([]Pod, yyrl4656) } - yyc4607 = true - yyrr4607 = len(yyv4607) - if yyrg4607 { - copy(yyv4607, yyv24607) + yyc4656 = true + yyrr4656 = len(yyv4656) + if yyrg4656 { + copy(yyv4656, yyv24656) } - } else if yyl4607 != len(yyv4607) { - yyv4607 = yyv4607[:yyl4607] - yyc4607 = true + } else if yyl4656 != len(yyv4656) { + yyv4656 = yyv4656[:yyl4656] + yyc4656 = true } - yyj4607 := 0 - for ; yyj4607 < yyrr4607; yyj4607++ { - yyh4607.ElemContainerState(yyj4607) + yyj4656 := 0 + for ; yyj4656 < yyrr4656; yyj4656++ { + yyh4656.ElemContainerState(yyj4656) if r.TryDecodeAsNil() { - yyv4607[yyj4607] = Pod{} + yyv4656[yyj4656] = Pod{} } else { - yyv4608 := &yyv4607[yyj4607] - yyv4608.CodecDecodeSelf(d) + yyv4657 := &yyv4656[yyj4656] + yyv4657.CodecDecodeSelf(d) } } - if yyrt4607 { - for ; yyj4607 < yyl4607; yyj4607++ { - yyv4607 = append(yyv4607, Pod{}) - yyh4607.ElemContainerState(yyj4607) + if yyrt4656 { + for ; yyj4656 < yyl4656; yyj4656++ { + yyv4656 = append(yyv4656, Pod{}) + yyh4656.ElemContainerState(yyj4656) if r.TryDecodeAsNil() { - yyv4607[yyj4607] = Pod{} + yyv4656[yyj4656] = Pod{} } else { - yyv4609 := &yyv4607[yyj4607] - yyv4609.CodecDecodeSelf(d) + yyv4658 := &yyv4656[yyj4656] + yyv4658.CodecDecodeSelf(d) } } } } else { - yyj4607 := 0 - for ; !r.CheckBreak(); yyj4607++ { + yyj4656 := 0 + for ; !r.CheckBreak(); yyj4656++ { - if yyj4607 >= len(yyv4607) { - yyv4607 = append(yyv4607, Pod{}) // var yyz4607 Pod - yyc4607 = true + if yyj4656 >= len(yyv4656) { + yyv4656 = append(yyv4656, Pod{}) // var yyz4656 Pod + yyc4656 = true } - yyh4607.ElemContainerState(yyj4607) - if yyj4607 < len(yyv4607) { + yyh4656.ElemContainerState(yyj4656) + if yyj4656 < len(yyv4656) { if r.TryDecodeAsNil() { - yyv4607[yyj4607] = Pod{} + yyv4656[yyj4656] = Pod{} } else { - yyv4610 := &yyv4607[yyj4607] - yyv4610.CodecDecodeSelf(d) + yyv4659 := &yyv4656[yyj4656] + yyv4659.CodecDecodeSelf(d) } } else { @@ -57699,17 +58236,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj4607 < len(yyv4607) { - yyv4607 = yyv4607[:yyj4607] - yyc4607 = true - } else if yyj4607 == 0 && yyv4607 == nil { - yyv4607 = []Pod{} - yyc4607 = true + if yyj4656 < len(yyv4656) { + yyv4656 = yyv4656[:yyj4656] + yyc4656 = true + } else if yyj4656 == 0 && yyv4656 == nil { + yyv4656 = []Pod{} + yyc4656 = true } } - yyh4607.End() - if yyc4607 { - *v = yyv4607 + yyh4656.End() + if yyc4656 { + *v = yyv4656 } } @@ -57718,10 +58255,10 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4611 := range v { + for _, yyv4660 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4612 := &yyv4611 - yy4612.CodecEncodeSelf(e) + yy4661 := &yyv4660 + yy4661.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57731,83 +58268,83 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4613 := *v - yyh4613, yyl4613 := z.DecSliceHelperStart() - var yyc4613 bool - if yyl4613 == 0 { - if yyv4613 == nil { - yyv4613 = []NodeSelectorTerm{} - yyc4613 = true - } else if len(yyv4613) != 0 { - yyv4613 = yyv4613[:0] - yyc4613 = true + yyv4662 := *v + yyh4662, yyl4662 := z.DecSliceHelperStart() + var yyc4662 bool + if yyl4662 == 0 { + if yyv4662 == nil { + yyv4662 = []NodeSelectorTerm{} + yyc4662 = true + } else if len(yyv4662) != 0 { + yyv4662 = yyv4662[:0] + yyc4662 = true } - } else if yyl4613 > 0 { - var yyrr4613, yyrl4613 int - var yyrt4613 bool - if yyl4613 > cap(yyv4613) { + } else if yyl4662 > 0 { + var yyrr4662, yyrl4662 int + var yyrt4662 bool + if yyl4662 > cap(yyv4662) { - yyrg4613 := len(yyv4613) > 0 - yyv24613 := yyv4613 - yyrl4613, yyrt4613 = z.DecInferLen(yyl4613, z.DecBasicHandle().MaxInitLen, 24) - if yyrt4613 { - if yyrl4613 <= cap(yyv4613) { - yyv4613 = yyv4613[:yyrl4613] + yyrg4662 := len(yyv4662) > 0 + yyv24662 := yyv4662 + yyrl4662, yyrt4662 = z.DecInferLen(yyl4662, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4662 { + if yyrl4662 <= cap(yyv4662) { + yyv4662 = yyv4662[:yyrl4662] } else { - yyv4613 = make([]NodeSelectorTerm, yyrl4613) + yyv4662 = make([]NodeSelectorTerm, yyrl4662) } } else { - yyv4613 = make([]NodeSelectorTerm, yyrl4613) + yyv4662 = make([]NodeSelectorTerm, yyrl4662) } - yyc4613 = true - yyrr4613 = len(yyv4613) - if yyrg4613 { - copy(yyv4613, yyv24613) + yyc4662 = true + yyrr4662 = len(yyv4662) + if yyrg4662 { + copy(yyv4662, yyv24662) } - } else if yyl4613 != len(yyv4613) { - yyv4613 = yyv4613[:yyl4613] - yyc4613 = true + } else if yyl4662 != len(yyv4662) { + yyv4662 = yyv4662[:yyl4662] + yyc4662 = true } - yyj4613 := 0 - for ; yyj4613 < yyrr4613; yyj4613++ { - yyh4613.ElemContainerState(yyj4613) + yyj4662 := 0 + for ; yyj4662 < yyrr4662; yyj4662++ { + yyh4662.ElemContainerState(yyj4662) if r.TryDecodeAsNil() { - yyv4613[yyj4613] = NodeSelectorTerm{} + yyv4662[yyj4662] = NodeSelectorTerm{} } else { - yyv4614 := &yyv4613[yyj4613] - yyv4614.CodecDecodeSelf(d) + yyv4663 := &yyv4662[yyj4662] + yyv4663.CodecDecodeSelf(d) } } - if yyrt4613 { - for ; yyj4613 < yyl4613; yyj4613++ { - yyv4613 = append(yyv4613, NodeSelectorTerm{}) - yyh4613.ElemContainerState(yyj4613) + if yyrt4662 { + for ; yyj4662 < yyl4662; yyj4662++ { + yyv4662 = append(yyv4662, NodeSelectorTerm{}) + yyh4662.ElemContainerState(yyj4662) if r.TryDecodeAsNil() { - yyv4613[yyj4613] = NodeSelectorTerm{} + yyv4662[yyj4662] = NodeSelectorTerm{} } else { - yyv4615 := &yyv4613[yyj4613] - yyv4615.CodecDecodeSelf(d) + yyv4664 := &yyv4662[yyj4662] + yyv4664.CodecDecodeSelf(d) } } } } else { - yyj4613 := 0 - for ; !r.CheckBreak(); yyj4613++ { + yyj4662 := 0 + for ; !r.CheckBreak(); yyj4662++ { - if yyj4613 >= len(yyv4613) { - yyv4613 = append(yyv4613, NodeSelectorTerm{}) // var yyz4613 NodeSelectorTerm - yyc4613 = true + if yyj4662 >= len(yyv4662) { + yyv4662 = append(yyv4662, NodeSelectorTerm{}) // var yyz4662 NodeSelectorTerm + yyc4662 = true } - yyh4613.ElemContainerState(yyj4613) - if yyj4613 < len(yyv4613) { + yyh4662.ElemContainerState(yyj4662) + if yyj4662 < len(yyv4662) { if r.TryDecodeAsNil() { - yyv4613[yyj4613] = NodeSelectorTerm{} + yyv4662[yyj4662] = NodeSelectorTerm{} } else { - yyv4616 := &yyv4613[yyj4613] - yyv4616.CodecDecodeSelf(d) + yyv4665 := &yyv4662[yyj4662] + yyv4665.CodecDecodeSelf(d) } } else { @@ -57815,17 +58352,17 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } - if yyj4613 < len(yyv4613) { - yyv4613 = yyv4613[:yyj4613] - yyc4613 = true - } else if yyj4613 == 0 && yyv4613 == nil { - yyv4613 = []NodeSelectorTerm{} - yyc4613 = true + if yyj4662 < len(yyv4662) { + yyv4662 = yyv4662[:yyj4662] + yyc4662 = true + } else if yyj4662 == 0 && yyv4662 == nil { + yyv4662 = []NodeSelectorTerm{} + yyc4662 = true } } - yyh4613.End() - if yyc4613 { - *v = yyv4613 + yyh4662.End() + if yyc4662 { + *v = yyv4662 } } @@ -57834,10 +58371,10 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4617 := range v { + for _, yyv4666 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4618 := &yyv4617 - yy4618.CodecEncodeSelf(e) + yy4667 := &yyv4666 + yy4667.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57847,83 +58384,83 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4619 := *v - yyh4619, yyl4619 := z.DecSliceHelperStart() - var yyc4619 bool - if yyl4619 == 0 { - if yyv4619 == nil { - yyv4619 = []NodeSelectorRequirement{} - yyc4619 = true - } else if len(yyv4619) != 0 { - yyv4619 = yyv4619[:0] - yyc4619 = true + yyv4668 := *v + yyh4668, yyl4668 := z.DecSliceHelperStart() + var yyc4668 bool + if yyl4668 == 0 { + if yyv4668 == nil { + yyv4668 = []NodeSelectorRequirement{} + yyc4668 = true + } else if len(yyv4668) != 0 { + yyv4668 = yyv4668[:0] + yyc4668 = true } - } else if yyl4619 > 0 { - var yyrr4619, yyrl4619 int - var yyrt4619 bool - if yyl4619 > cap(yyv4619) { + } else if yyl4668 > 0 { + var yyrr4668, yyrl4668 int + var yyrt4668 bool + if yyl4668 > cap(yyv4668) { - yyrg4619 := len(yyv4619) > 0 - yyv24619 := yyv4619 - yyrl4619, yyrt4619 = z.DecInferLen(yyl4619, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4619 { - if yyrl4619 <= cap(yyv4619) { - yyv4619 = yyv4619[:yyrl4619] + yyrg4668 := len(yyv4668) > 0 + yyv24668 := yyv4668 + yyrl4668, yyrt4668 = z.DecInferLen(yyl4668, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4668 { + if yyrl4668 <= cap(yyv4668) { + yyv4668 = yyv4668[:yyrl4668] } else { - yyv4619 = make([]NodeSelectorRequirement, yyrl4619) + yyv4668 = make([]NodeSelectorRequirement, yyrl4668) } } else { - yyv4619 = make([]NodeSelectorRequirement, yyrl4619) + yyv4668 = make([]NodeSelectorRequirement, yyrl4668) } - yyc4619 = true - yyrr4619 = len(yyv4619) - if yyrg4619 { - copy(yyv4619, yyv24619) + yyc4668 = true + yyrr4668 = len(yyv4668) + if yyrg4668 { + copy(yyv4668, yyv24668) } - } else if yyl4619 != len(yyv4619) { - yyv4619 = yyv4619[:yyl4619] - yyc4619 = true + } else if yyl4668 != len(yyv4668) { + yyv4668 = yyv4668[:yyl4668] + yyc4668 = true } - yyj4619 := 0 - for ; yyj4619 < yyrr4619; yyj4619++ { - yyh4619.ElemContainerState(yyj4619) + yyj4668 := 0 + for ; yyj4668 < yyrr4668; yyj4668++ { + yyh4668.ElemContainerState(yyj4668) if r.TryDecodeAsNil() { - yyv4619[yyj4619] = NodeSelectorRequirement{} + yyv4668[yyj4668] = NodeSelectorRequirement{} } else { - yyv4620 := &yyv4619[yyj4619] - yyv4620.CodecDecodeSelf(d) + yyv4669 := &yyv4668[yyj4668] + yyv4669.CodecDecodeSelf(d) } } - if yyrt4619 { - for ; yyj4619 < yyl4619; yyj4619++ { - yyv4619 = append(yyv4619, NodeSelectorRequirement{}) - yyh4619.ElemContainerState(yyj4619) + if yyrt4668 { + for ; yyj4668 < yyl4668; yyj4668++ { + yyv4668 = append(yyv4668, NodeSelectorRequirement{}) + yyh4668.ElemContainerState(yyj4668) if r.TryDecodeAsNil() { - yyv4619[yyj4619] = NodeSelectorRequirement{} + yyv4668[yyj4668] = NodeSelectorRequirement{} } else { - yyv4621 := &yyv4619[yyj4619] - yyv4621.CodecDecodeSelf(d) + yyv4670 := &yyv4668[yyj4668] + yyv4670.CodecDecodeSelf(d) } } } } else { - yyj4619 := 0 - for ; !r.CheckBreak(); yyj4619++ { + yyj4668 := 0 + for ; !r.CheckBreak(); yyj4668++ { - if yyj4619 >= len(yyv4619) { - yyv4619 = append(yyv4619, NodeSelectorRequirement{}) // var yyz4619 NodeSelectorRequirement - yyc4619 = true + if yyj4668 >= len(yyv4668) { + yyv4668 = append(yyv4668, NodeSelectorRequirement{}) // var yyz4668 NodeSelectorRequirement + yyc4668 = true } - yyh4619.ElemContainerState(yyj4619) - if yyj4619 < len(yyv4619) { + yyh4668.ElemContainerState(yyj4668) + if yyj4668 < len(yyv4668) { if r.TryDecodeAsNil() { - yyv4619[yyj4619] = NodeSelectorRequirement{} + yyv4668[yyj4668] = NodeSelectorRequirement{} } else { - yyv4622 := &yyv4619[yyj4619] - yyv4622.CodecDecodeSelf(d) + yyv4671 := &yyv4668[yyj4668] + yyv4671.CodecDecodeSelf(d) } } else { @@ -57931,17 +58468,17 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj4619 < len(yyv4619) { - yyv4619 = yyv4619[:yyj4619] - yyc4619 = true - } else if yyj4619 == 0 && yyv4619 == nil { - yyv4619 = []NodeSelectorRequirement{} - yyc4619 = true + if yyj4668 < len(yyv4668) { + yyv4668 = yyv4668[:yyj4668] + yyc4668 = true + } else if yyj4668 == 0 && yyv4668 == nil { + yyv4668 = []NodeSelectorRequirement{} + yyc4668 = true } } - yyh4619.End() - if yyc4619 { - *v = yyv4619 + yyh4668.End() + if yyc4668 { + *v = yyv4668 } } @@ -57950,10 +58487,10 @@ func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4623 := range v { + for _, yyv4672 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4624 := &yyv4623 - yy4624.CodecEncodeSelf(e) + yy4673 := &yyv4672 + yy4673.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57963,83 +58500,83 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4625 := *v - yyh4625, yyl4625 := z.DecSliceHelperStart() - var yyc4625 bool - if yyl4625 == 0 { - if yyv4625 == nil { - yyv4625 = []PodAffinityTerm{} - yyc4625 = true - } else if len(yyv4625) != 0 { - yyv4625 = yyv4625[:0] - yyc4625 = true + yyv4674 := *v + yyh4674, yyl4674 := z.DecSliceHelperStart() + var yyc4674 bool + if yyl4674 == 0 { + if yyv4674 == nil { + yyv4674 = []PodAffinityTerm{} + yyc4674 = true + } else if len(yyv4674) != 0 { + yyv4674 = yyv4674[:0] + yyc4674 = true } - } else if yyl4625 > 0 { - var yyrr4625, yyrl4625 int - var yyrt4625 bool - if yyl4625 > cap(yyv4625) { + } else if yyl4674 > 0 { + var yyrr4674, yyrl4674 int + var yyrt4674 bool + if yyl4674 > cap(yyv4674) { - yyrg4625 := len(yyv4625) > 0 - yyv24625 := yyv4625 - yyrl4625, yyrt4625 = z.DecInferLen(yyl4625, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4625 { - if yyrl4625 <= cap(yyv4625) { - yyv4625 = yyv4625[:yyrl4625] + yyrg4674 := len(yyv4674) > 0 + yyv24674 := yyv4674 + yyrl4674, yyrt4674 = z.DecInferLen(yyl4674, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4674 { + if yyrl4674 <= cap(yyv4674) { + yyv4674 = yyv4674[:yyrl4674] } else { - yyv4625 = make([]PodAffinityTerm, yyrl4625) + yyv4674 = make([]PodAffinityTerm, yyrl4674) } } else { - yyv4625 = make([]PodAffinityTerm, yyrl4625) + yyv4674 = make([]PodAffinityTerm, yyrl4674) } - yyc4625 = true - yyrr4625 = len(yyv4625) - if yyrg4625 { - copy(yyv4625, yyv24625) + yyc4674 = true + yyrr4674 = len(yyv4674) + if yyrg4674 { + copy(yyv4674, yyv24674) } - } else if yyl4625 != len(yyv4625) { - yyv4625 = yyv4625[:yyl4625] - yyc4625 = true + } else if yyl4674 != len(yyv4674) { + yyv4674 = yyv4674[:yyl4674] + yyc4674 = true } - yyj4625 := 0 - for ; yyj4625 < yyrr4625; yyj4625++ { - yyh4625.ElemContainerState(yyj4625) + yyj4674 := 0 + for ; yyj4674 < yyrr4674; yyj4674++ { + yyh4674.ElemContainerState(yyj4674) if r.TryDecodeAsNil() { - yyv4625[yyj4625] = PodAffinityTerm{} + yyv4674[yyj4674] = PodAffinityTerm{} } else { - yyv4626 := &yyv4625[yyj4625] - yyv4626.CodecDecodeSelf(d) + yyv4675 := &yyv4674[yyj4674] + yyv4675.CodecDecodeSelf(d) } } - if yyrt4625 { - for ; yyj4625 < yyl4625; yyj4625++ { - yyv4625 = append(yyv4625, PodAffinityTerm{}) - yyh4625.ElemContainerState(yyj4625) + if yyrt4674 { + for ; yyj4674 < yyl4674; yyj4674++ { + yyv4674 = append(yyv4674, PodAffinityTerm{}) + yyh4674.ElemContainerState(yyj4674) if r.TryDecodeAsNil() { - yyv4625[yyj4625] = PodAffinityTerm{} + yyv4674[yyj4674] = PodAffinityTerm{} } else { - yyv4627 := &yyv4625[yyj4625] - yyv4627.CodecDecodeSelf(d) + yyv4676 := &yyv4674[yyj4674] + yyv4676.CodecDecodeSelf(d) } } } } else { - yyj4625 := 0 - for ; !r.CheckBreak(); yyj4625++ { + yyj4674 := 0 + for ; !r.CheckBreak(); yyj4674++ { - if yyj4625 >= len(yyv4625) { - yyv4625 = append(yyv4625, PodAffinityTerm{}) // var yyz4625 PodAffinityTerm - yyc4625 = true + if yyj4674 >= len(yyv4674) { + yyv4674 = append(yyv4674, PodAffinityTerm{}) // var yyz4674 PodAffinityTerm + yyc4674 = true } - yyh4625.ElemContainerState(yyj4625) - if yyj4625 < len(yyv4625) { + yyh4674.ElemContainerState(yyj4674) + if yyj4674 < len(yyv4674) { if r.TryDecodeAsNil() { - yyv4625[yyj4625] = PodAffinityTerm{} + yyv4674[yyj4674] = PodAffinityTerm{} } else { - yyv4628 := &yyv4625[yyj4625] - yyv4628.CodecDecodeSelf(d) + yyv4677 := &yyv4674[yyj4674] + yyv4677.CodecDecodeSelf(d) } } else { @@ -58047,17 +58584,17 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } - if yyj4625 < len(yyv4625) { - yyv4625 = yyv4625[:yyj4625] - yyc4625 = true - } else if yyj4625 == 0 && yyv4625 == nil { - yyv4625 = []PodAffinityTerm{} - yyc4625 = true + if yyj4674 < len(yyv4674) { + yyv4674 = yyv4674[:yyj4674] + yyc4674 = true + } else if yyj4674 == 0 && yyv4674 == nil { + yyv4674 = []PodAffinityTerm{} + yyc4674 = true } } - yyh4625.End() - if yyc4625 { - *v = yyv4625 + yyh4674.End() + if yyc4674 { + *v = yyv4674 } } @@ -58066,10 +58603,10 @@ func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinity z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4629 := range v { + for _, yyv4678 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4630 := &yyv4629 - yy4630.CodecEncodeSelf(e) + yy4679 := &yyv4678 + yy4679.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58079,83 +58616,83 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4631 := *v - yyh4631, yyl4631 := z.DecSliceHelperStart() - var yyc4631 bool - if yyl4631 == 0 { - if yyv4631 == nil { - yyv4631 = []WeightedPodAffinityTerm{} - yyc4631 = true - } else if len(yyv4631) != 0 { - yyv4631 = yyv4631[:0] - yyc4631 = true + yyv4680 := *v + yyh4680, yyl4680 := z.DecSliceHelperStart() + var yyc4680 bool + if yyl4680 == 0 { + if yyv4680 == nil { + yyv4680 = []WeightedPodAffinityTerm{} + yyc4680 = true + } else if len(yyv4680) != 0 { + yyv4680 = yyv4680[:0] + yyc4680 = true } - } else if yyl4631 > 0 { - var yyrr4631, yyrl4631 int - var yyrt4631 bool - if yyl4631 > cap(yyv4631) { + } else if yyl4680 > 0 { + var yyrr4680, yyrl4680 int + var yyrt4680 bool + if yyl4680 > cap(yyv4680) { - yyrg4631 := len(yyv4631) > 0 - yyv24631 := yyv4631 - yyrl4631, yyrt4631 = z.DecInferLen(yyl4631, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4631 { - if yyrl4631 <= cap(yyv4631) { - yyv4631 = yyv4631[:yyrl4631] + yyrg4680 := len(yyv4680) > 0 + yyv24680 := yyv4680 + yyrl4680, yyrt4680 = z.DecInferLen(yyl4680, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4680 { + if yyrl4680 <= cap(yyv4680) { + yyv4680 = yyv4680[:yyrl4680] } else { - yyv4631 = make([]WeightedPodAffinityTerm, yyrl4631) + yyv4680 = make([]WeightedPodAffinityTerm, yyrl4680) } } else { - yyv4631 = make([]WeightedPodAffinityTerm, yyrl4631) + yyv4680 = make([]WeightedPodAffinityTerm, yyrl4680) } - yyc4631 = true - yyrr4631 = len(yyv4631) - if yyrg4631 { - copy(yyv4631, yyv24631) + yyc4680 = true + yyrr4680 = len(yyv4680) + if yyrg4680 { + copy(yyv4680, yyv24680) } - } else if yyl4631 != len(yyv4631) { - yyv4631 = yyv4631[:yyl4631] - yyc4631 = true + } else if yyl4680 != len(yyv4680) { + yyv4680 = yyv4680[:yyl4680] + yyc4680 = true } - yyj4631 := 0 - for ; yyj4631 < yyrr4631; yyj4631++ { - yyh4631.ElemContainerState(yyj4631) + yyj4680 := 0 + for ; yyj4680 < yyrr4680; yyj4680++ { + yyh4680.ElemContainerState(yyj4680) if r.TryDecodeAsNil() { - yyv4631[yyj4631] = WeightedPodAffinityTerm{} + yyv4680[yyj4680] = WeightedPodAffinityTerm{} } else { - yyv4632 := &yyv4631[yyj4631] - yyv4632.CodecDecodeSelf(d) + yyv4681 := &yyv4680[yyj4680] + yyv4681.CodecDecodeSelf(d) } } - if yyrt4631 { - for ; yyj4631 < yyl4631; yyj4631++ { - yyv4631 = append(yyv4631, WeightedPodAffinityTerm{}) - yyh4631.ElemContainerState(yyj4631) + if yyrt4680 { + for ; yyj4680 < yyl4680; yyj4680++ { + yyv4680 = append(yyv4680, WeightedPodAffinityTerm{}) + yyh4680.ElemContainerState(yyj4680) if r.TryDecodeAsNil() { - yyv4631[yyj4631] = WeightedPodAffinityTerm{} + yyv4680[yyj4680] = WeightedPodAffinityTerm{} } else { - yyv4633 := &yyv4631[yyj4631] - yyv4633.CodecDecodeSelf(d) + yyv4682 := &yyv4680[yyj4680] + yyv4682.CodecDecodeSelf(d) } } } } else { - yyj4631 := 0 - for ; !r.CheckBreak(); yyj4631++ { + yyj4680 := 0 + for ; !r.CheckBreak(); yyj4680++ { - if yyj4631 >= len(yyv4631) { - yyv4631 = append(yyv4631, WeightedPodAffinityTerm{}) // var yyz4631 WeightedPodAffinityTerm - yyc4631 = true + if yyj4680 >= len(yyv4680) { + yyv4680 = append(yyv4680, WeightedPodAffinityTerm{}) // var yyz4680 WeightedPodAffinityTerm + yyc4680 = true } - yyh4631.ElemContainerState(yyj4631) - if yyj4631 < len(yyv4631) { + yyh4680.ElemContainerState(yyj4680) + if yyj4680 < len(yyv4680) { if r.TryDecodeAsNil() { - yyv4631[yyj4631] = WeightedPodAffinityTerm{} + yyv4680[yyj4680] = WeightedPodAffinityTerm{} } else { - yyv4634 := &yyv4631[yyj4631] - yyv4634.CodecDecodeSelf(d) + yyv4683 := &yyv4680[yyj4680] + yyv4683.CodecDecodeSelf(d) } } else { @@ -58163,17 +58700,17 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } - if yyj4631 < len(yyv4631) { - yyv4631 = yyv4631[:yyj4631] - yyc4631 = true - } else if yyj4631 == 0 && yyv4631 == nil { - yyv4631 = []WeightedPodAffinityTerm{} - yyc4631 = true + if yyj4680 < len(yyv4680) { + yyv4680 = yyv4680[:yyj4680] + yyc4680 = true + } else if yyj4680 == 0 && yyv4680 == nil { + yyv4680 = []WeightedPodAffinityTerm{} + yyc4680 = true } } - yyh4631.End() - if yyc4631 { - *v = yyv4631 + yyh4680.End() + if yyc4680 { + *v = yyv4680 } } @@ -58182,10 +58719,10 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4635 := range v { + for _, yyv4684 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4636 := &yyv4635 - yy4636.CodecEncodeSelf(e) + yy4685 := &yyv4684 + yy4685.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58195,83 +58732,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4637 := *v - yyh4637, yyl4637 := z.DecSliceHelperStart() - var yyc4637 bool - if yyl4637 == 0 { - if yyv4637 == nil { - yyv4637 = []PreferredSchedulingTerm{} - yyc4637 = true - } else if len(yyv4637) != 0 { - yyv4637 = yyv4637[:0] - yyc4637 = true + yyv4686 := *v + yyh4686, yyl4686 := z.DecSliceHelperStart() + var yyc4686 bool + if yyl4686 == 0 { + if yyv4686 == nil { + yyv4686 = []PreferredSchedulingTerm{} + yyc4686 = true + } else if len(yyv4686) != 0 { + yyv4686 = yyv4686[:0] + yyc4686 = true } - } else if yyl4637 > 0 { - var yyrr4637, yyrl4637 int - var yyrt4637 bool - if yyl4637 > cap(yyv4637) { + } else if yyl4686 > 0 { + var yyrr4686, yyrl4686 int + var yyrt4686 bool + if yyl4686 > cap(yyv4686) { - yyrg4637 := len(yyv4637) > 0 - yyv24637 := yyv4637 - yyrl4637, yyrt4637 = z.DecInferLen(yyl4637, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4637 { - if yyrl4637 <= cap(yyv4637) { - yyv4637 = yyv4637[:yyrl4637] + yyrg4686 := len(yyv4686) > 0 + yyv24686 := yyv4686 + yyrl4686, yyrt4686 = z.DecInferLen(yyl4686, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4686 { + if yyrl4686 <= cap(yyv4686) { + yyv4686 = yyv4686[:yyrl4686] } else { - yyv4637 = make([]PreferredSchedulingTerm, yyrl4637) + yyv4686 = make([]PreferredSchedulingTerm, yyrl4686) } } else { - yyv4637 = make([]PreferredSchedulingTerm, yyrl4637) + yyv4686 = make([]PreferredSchedulingTerm, yyrl4686) } - yyc4637 = true - yyrr4637 = len(yyv4637) - if yyrg4637 { - copy(yyv4637, yyv24637) + yyc4686 = true + yyrr4686 = len(yyv4686) + if yyrg4686 { + copy(yyv4686, yyv24686) } - } else if yyl4637 != len(yyv4637) { - yyv4637 = yyv4637[:yyl4637] - yyc4637 = true + } else if yyl4686 != len(yyv4686) { + yyv4686 = yyv4686[:yyl4686] + yyc4686 = true } - yyj4637 := 0 - for ; yyj4637 < yyrr4637; yyj4637++ { - yyh4637.ElemContainerState(yyj4637) + yyj4686 := 0 + for ; yyj4686 < yyrr4686; yyj4686++ { + yyh4686.ElemContainerState(yyj4686) if r.TryDecodeAsNil() { - yyv4637[yyj4637] = PreferredSchedulingTerm{} + yyv4686[yyj4686] = PreferredSchedulingTerm{} } else { - yyv4638 := &yyv4637[yyj4637] - yyv4638.CodecDecodeSelf(d) + yyv4687 := &yyv4686[yyj4686] + yyv4687.CodecDecodeSelf(d) } } - if yyrt4637 { - for ; yyj4637 < yyl4637; yyj4637++ { - yyv4637 = append(yyv4637, PreferredSchedulingTerm{}) - yyh4637.ElemContainerState(yyj4637) + if yyrt4686 { + for ; yyj4686 < yyl4686; yyj4686++ { + yyv4686 = append(yyv4686, PreferredSchedulingTerm{}) + yyh4686.ElemContainerState(yyj4686) if r.TryDecodeAsNil() { - yyv4637[yyj4637] = PreferredSchedulingTerm{} + yyv4686[yyj4686] = PreferredSchedulingTerm{} } else { - yyv4639 := &yyv4637[yyj4637] - yyv4639.CodecDecodeSelf(d) + yyv4688 := &yyv4686[yyj4686] + yyv4688.CodecDecodeSelf(d) } } } } else { - yyj4637 := 0 - for ; !r.CheckBreak(); yyj4637++ { + yyj4686 := 0 + for ; !r.CheckBreak(); yyj4686++ { - if yyj4637 >= len(yyv4637) { - yyv4637 = append(yyv4637, PreferredSchedulingTerm{}) // var yyz4637 PreferredSchedulingTerm - yyc4637 = true + if yyj4686 >= len(yyv4686) { + yyv4686 = append(yyv4686, PreferredSchedulingTerm{}) // var yyz4686 PreferredSchedulingTerm + yyc4686 = true } - yyh4637.ElemContainerState(yyj4637) - if yyj4637 < len(yyv4637) { + yyh4686.ElemContainerState(yyj4686) + if yyj4686 < len(yyv4686) { if r.TryDecodeAsNil() { - yyv4637[yyj4637] = PreferredSchedulingTerm{} + yyv4686[yyj4686] = PreferredSchedulingTerm{} } else { - yyv4640 := &yyv4637[yyj4637] - yyv4640.CodecDecodeSelf(d) + yyv4689 := &yyv4686[yyj4686] + yyv4689.CodecDecodeSelf(d) } } else { @@ -58279,17 +58816,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj4637 < len(yyv4637) { - yyv4637 = yyv4637[:yyj4637] - yyc4637 = true - } else if yyj4637 == 0 && yyv4637 == nil { - yyv4637 = []PreferredSchedulingTerm{} - yyc4637 = true + if yyj4686 < len(yyv4686) { + yyv4686 = yyv4686[:yyj4686] + yyc4686 = true + } else if yyj4686 == 0 && yyv4686 == nil { + yyv4686 = []PreferredSchedulingTerm{} + yyc4686 = true } } - yyh4637.End() - if yyc4637 { - *v = yyv4637 + yyh4686.End() + if yyc4686 { + *v = yyv4686 } } @@ -58298,10 +58835,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4641 := range v { + for _, yyv4690 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4642 := &yyv4641 - yy4642.CodecEncodeSelf(e) + yy4691 := &yyv4690 + yy4691.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58311,83 +58848,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4643 := *v - yyh4643, yyl4643 := z.DecSliceHelperStart() - var yyc4643 bool - if yyl4643 == 0 { - if yyv4643 == nil { - yyv4643 = []Volume{} - yyc4643 = true - } else if len(yyv4643) != 0 { - yyv4643 = yyv4643[:0] - yyc4643 = true + yyv4692 := *v + yyh4692, yyl4692 := z.DecSliceHelperStart() + var yyc4692 bool + if yyl4692 == 0 { + if yyv4692 == nil { + yyv4692 = []Volume{} + yyc4692 = true + } else if len(yyv4692) != 0 { + yyv4692 = yyv4692[:0] + yyc4692 = true } - } else if yyl4643 > 0 { - var yyrr4643, yyrl4643 int - var yyrt4643 bool - if yyl4643 > cap(yyv4643) { + } else if yyl4692 > 0 { + var yyrr4692, yyrl4692 int + var yyrt4692 bool + if yyl4692 > cap(yyv4692) { - yyrg4643 := len(yyv4643) > 0 - yyv24643 := yyv4643 - yyrl4643, yyrt4643 = z.DecInferLen(yyl4643, z.DecBasicHandle().MaxInitLen, 192) - if yyrt4643 { - if yyrl4643 <= cap(yyv4643) { - yyv4643 = yyv4643[:yyrl4643] + yyrg4692 := len(yyv4692) > 0 + yyv24692 := yyv4692 + yyrl4692, yyrt4692 = z.DecInferLen(yyl4692, z.DecBasicHandle().MaxInitLen, 192) + if yyrt4692 { + if yyrl4692 <= cap(yyv4692) { + yyv4692 = yyv4692[:yyrl4692] } else { - yyv4643 = make([]Volume, yyrl4643) + yyv4692 = make([]Volume, yyrl4692) } } else { - yyv4643 = make([]Volume, yyrl4643) + yyv4692 = make([]Volume, yyrl4692) } - yyc4643 = true - yyrr4643 = len(yyv4643) - if yyrg4643 { - copy(yyv4643, yyv24643) + yyc4692 = true + yyrr4692 = len(yyv4692) + if yyrg4692 { + copy(yyv4692, yyv24692) } - } else if yyl4643 != len(yyv4643) { - yyv4643 = yyv4643[:yyl4643] - yyc4643 = true + } else if yyl4692 != len(yyv4692) { + yyv4692 = yyv4692[:yyl4692] + yyc4692 = true } - yyj4643 := 0 - for ; yyj4643 < yyrr4643; yyj4643++ { - yyh4643.ElemContainerState(yyj4643) + yyj4692 := 0 + for ; yyj4692 < yyrr4692; yyj4692++ { + yyh4692.ElemContainerState(yyj4692) if r.TryDecodeAsNil() { - yyv4643[yyj4643] = Volume{} + yyv4692[yyj4692] = Volume{} } else { - yyv4644 := &yyv4643[yyj4643] - yyv4644.CodecDecodeSelf(d) + yyv4693 := &yyv4692[yyj4692] + yyv4693.CodecDecodeSelf(d) } } - if yyrt4643 { - for ; yyj4643 < yyl4643; yyj4643++ { - yyv4643 = append(yyv4643, Volume{}) - yyh4643.ElemContainerState(yyj4643) + if yyrt4692 { + for ; yyj4692 < yyl4692; yyj4692++ { + yyv4692 = append(yyv4692, Volume{}) + yyh4692.ElemContainerState(yyj4692) if r.TryDecodeAsNil() { - yyv4643[yyj4643] = Volume{} + yyv4692[yyj4692] = Volume{} } else { - yyv4645 := &yyv4643[yyj4643] - yyv4645.CodecDecodeSelf(d) + yyv4694 := &yyv4692[yyj4692] + yyv4694.CodecDecodeSelf(d) } } } } else { - yyj4643 := 0 - for ; !r.CheckBreak(); yyj4643++ { + yyj4692 := 0 + for ; !r.CheckBreak(); yyj4692++ { - if yyj4643 >= len(yyv4643) { - yyv4643 = append(yyv4643, Volume{}) // var yyz4643 Volume - yyc4643 = true + if yyj4692 >= len(yyv4692) { + yyv4692 = append(yyv4692, Volume{}) // var yyz4692 Volume + yyc4692 = true } - yyh4643.ElemContainerState(yyj4643) - if yyj4643 < len(yyv4643) { + yyh4692.ElemContainerState(yyj4692) + if yyj4692 < len(yyv4692) { if r.TryDecodeAsNil() { - yyv4643[yyj4643] = Volume{} + yyv4692[yyj4692] = Volume{} } else { - yyv4646 := &yyv4643[yyj4643] - yyv4646.CodecDecodeSelf(d) + yyv4695 := &yyv4692[yyj4692] + yyv4695.CodecDecodeSelf(d) } } else { @@ -58395,17 +58932,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4643 < len(yyv4643) { - yyv4643 = yyv4643[:yyj4643] - yyc4643 = true - } else if yyj4643 == 0 && yyv4643 == nil { - yyv4643 = []Volume{} - yyc4643 = true + if yyj4692 < len(yyv4692) { + yyv4692 = yyv4692[:yyj4692] + yyc4692 = true + } else if yyj4692 == 0 && yyv4692 == nil { + yyv4692 = []Volume{} + yyc4692 = true } } - yyh4643.End() - if yyc4643 { - *v = yyv4643 + yyh4692.End() + if yyc4692 { + *v = yyv4692 } } @@ -58414,10 +58951,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4647 := range v { + for _, yyv4696 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4648 := &yyv4647 - yy4648.CodecEncodeSelf(e) + yy4697 := &yyv4696 + yy4697.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58427,83 +58964,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4649 := *v - yyh4649, yyl4649 := z.DecSliceHelperStart() - var yyc4649 bool - if yyl4649 == 0 { - if yyv4649 == nil { - yyv4649 = []Container{} - yyc4649 = true - } else if len(yyv4649) != 0 { - yyv4649 = yyv4649[:0] - yyc4649 = true + yyv4698 := *v + yyh4698, yyl4698 := z.DecSliceHelperStart() + var yyc4698 bool + if yyl4698 == 0 { + if yyv4698 == nil { + yyv4698 = []Container{} + yyc4698 = true + } else if len(yyv4698) != 0 { + yyv4698 = yyv4698[:0] + yyc4698 = true } - } else if yyl4649 > 0 { - var yyrr4649, yyrl4649 int - var yyrt4649 bool - if yyl4649 > cap(yyv4649) { + } else if yyl4698 > 0 { + var yyrr4698, yyrl4698 int + var yyrt4698 bool + if yyl4698 > cap(yyv4698) { - yyrg4649 := len(yyv4649) > 0 - yyv24649 := yyv4649 - yyrl4649, yyrt4649 = z.DecInferLen(yyl4649, z.DecBasicHandle().MaxInitLen, 256) - if yyrt4649 { - if yyrl4649 <= cap(yyv4649) { - yyv4649 = yyv4649[:yyrl4649] + yyrg4698 := len(yyv4698) > 0 + yyv24698 := yyv4698 + yyrl4698, yyrt4698 = z.DecInferLen(yyl4698, z.DecBasicHandle().MaxInitLen, 256) + if yyrt4698 { + if yyrl4698 <= cap(yyv4698) { + yyv4698 = yyv4698[:yyrl4698] } else { - yyv4649 = make([]Container, yyrl4649) + yyv4698 = make([]Container, yyrl4698) } } else { - yyv4649 = make([]Container, yyrl4649) + yyv4698 = make([]Container, yyrl4698) } - yyc4649 = true - yyrr4649 = len(yyv4649) - if yyrg4649 { - copy(yyv4649, yyv24649) + yyc4698 = true + yyrr4698 = len(yyv4698) + if yyrg4698 { + copy(yyv4698, yyv24698) } - } else if yyl4649 != len(yyv4649) { - yyv4649 = yyv4649[:yyl4649] - yyc4649 = true + } else if yyl4698 != len(yyv4698) { + yyv4698 = yyv4698[:yyl4698] + yyc4698 = true } - yyj4649 := 0 - for ; yyj4649 < yyrr4649; yyj4649++ { - yyh4649.ElemContainerState(yyj4649) + yyj4698 := 0 + for ; yyj4698 < yyrr4698; yyj4698++ { + yyh4698.ElemContainerState(yyj4698) if r.TryDecodeAsNil() { - yyv4649[yyj4649] = Container{} + yyv4698[yyj4698] = Container{} } else { - yyv4650 := &yyv4649[yyj4649] - yyv4650.CodecDecodeSelf(d) + yyv4699 := &yyv4698[yyj4698] + yyv4699.CodecDecodeSelf(d) } } - if yyrt4649 { - for ; yyj4649 < yyl4649; yyj4649++ { - yyv4649 = append(yyv4649, Container{}) - yyh4649.ElemContainerState(yyj4649) + if yyrt4698 { + for ; yyj4698 < yyl4698; yyj4698++ { + yyv4698 = append(yyv4698, Container{}) + yyh4698.ElemContainerState(yyj4698) if r.TryDecodeAsNil() { - yyv4649[yyj4649] = Container{} + yyv4698[yyj4698] = Container{} } else { - yyv4651 := &yyv4649[yyj4649] - yyv4651.CodecDecodeSelf(d) + yyv4700 := &yyv4698[yyj4698] + yyv4700.CodecDecodeSelf(d) } } } } else { - yyj4649 := 0 - for ; !r.CheckBreak(); yyj4649++ { + yyj4698 := 0 + for ; !r.CheckBreak(); yyj4698++ { - if yyj4649 >= len(yyv4649) { - yyv4649 = append(yyv4649, Container{}) // var yyz4649 Container - yyc4649 = true + if yyj4698 >= len(yyv4698) { + yyv4698 = append(yyv4698, Container{}) // var yyz4698 Container + yyc4698 = true } - yyh4649.ElemContainerState(yyj4649) - if yyj4649 < len(yyv4649) { + yyh4698.ElemContainerState(yyj4698) + if yyj4698 < len(yyv4698) { if r.TryDecodeAsNil() { - yyv4649[yyj4649] = Container{} + yyv4698[yyj4698] = Container{} } else { - yyv4652 := &yyv4649[yyj4649] - yyv4652.CodecDecodeSelf(d) + yyv4701 := &yyv4698[yyj4698] + yyv4701.CodecDecodeSelf(d) } } else { @@ -58511,17 +59048,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4649 < len(yyv4649) { - yyv4649 = yyv4649[:yyj4649] - yyc4649 = true - } else if yyj4649 == 0 && yyv4649 == nil { - yyv4649 = []Container{} - yyc4649 = true + if yyj4698 < len(yyv4698) { + yyv4698 = yyv4698[:yyj4698] + yyc4698 = true + } else if yyj4698 == 0 && yyv4698 == nil { + yyv4698 = []Container{} + yyc4698 = true } } - yyh4649.End() - if yyc4649 { - *v = yyv4649 + yyh4698.End() + if yyc4698 { + *v = yyv4698 } } @@ -58530,10 +59067,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4653 := range v { + for _, yyv4702 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4654 := &yyv4653 - yy4654.CodecEncodeSelf(e) + yy4703 := &yyv4702 + yy4703.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58543,83 +59080,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4655 := *v - yyh4655, yyl4655 := z.DecSliceHelperStart() - var yyc4655 bool - if yyl4655 == 0 { - if yyv4655 == nil { - yyv4655 = []LocalObjectReference{} - yyc4655 = true - } else if len(yyv4655) != 0 { - yyv4655 = yyv4655[:0] - yyc4655 = true + yyv4704 := *v + yyh4704, yyl4704 := z.DecSliceHelperStart() + var yyc4704 bool + if yyl4704 == 0 { + if yyv4704 == nil { + yyv4704 = []LocalObjectReference{} + yyc4704 = true + } else if len(yyv4704) != 0 { + yyv4704 = yyv4704[:0] + yyc4704 = true } - } else if yyl4655 > 0 { - var yyrr4655, yyrl4655 int - var yyrt4655 bool - if yyl4655 > cap(yyv4655) { + } else if yyl4704 > 0 { + var yyrr4704, yyrl4704 int + var yyrt4704 bool + if yyl4704 > cap(yyv4704) { - yyrg4655 := len(yyv4655) > 0 - yyv24655 := yyv4655 - yyrl4655, yyrt4655 = z.DecInferLen(yyl4655, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4655 { - if yyrl4655 <= cap(yyv4655) { - yyv4655 = yyv4655[:yyrl4655] + yyrg4704 := len(yyv4704) > 0 + yyv24704 := yyv4704 + yyrl4704, yyrt4704 = z.DecInferLen(yyl4704, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4704 { + if yyrl4704 <= cap(yyv4704) { + yyv4704 = yyv4704[:yyrl4704] } else { - yyv4655 = make([]LocalObjectReference, yyrl4655) + yyv4704 = make([]LocalObjectReference, yyrl4704) } } else { - yyv4655 = make([]LocalObjectReference, yyrl4655) + yyv4704 = make([]LocalObjectReference, yyrl4704) } - yyc4655 = true - yyrr4655 = len(yyv4655) - if yyrg4655 { - copy(yyv4655, yyv24655) + yyc4704 = true + yyrr4704 = len(yyv4704) + if yyrg4704 { + copy(yyv4704, yyv24704) } - } else if yyl4655 != len(yyv4655) { - yyv4655 = yyv4655[:yyl4655] - yyc4655 = true + } else if yyl4704 != len(yyv4704) { + yyv4704 = yyv4704[:yyl4704] + yyc4704 = true } - yyj4655 := 0 - for ; yyj4655 < yyrr4655; yyj4655++ { - yyh4655.ElemContainerState(yyj4655) + yyj4704 := 0 + for ; yyj4704 < yyrr4704; yyj4704++ { + yyh4704.ElemContainerState(yyj4704) if r.TryDecodeAsNil() { - yyv4655[yyj4655] = LocalObjectReference{} + yyv4704[yyj4704] = LocalObjectReference{} } else { - yyv4656 := &yyv4655[yyj4655] - yyv4656.CodecDecodeSelf(d) + yyv4705 := &yyv4704[yyj4704] + yyv4705.CodecDecodeSelf(d) } } - if yyrt4655 { - for ; yyj4655 < yyl4655; yyj4655++ { - yyv4655 = append(yyv4655, LocalObjectReference{}) - yyh4655.ElemContainerState(yyj4655) + if yyrt4704 { + for ; yyj4704 < yyl4704; yyj4704++ { + yyv4704 = append(yyv4704, LocalObjectReference{}) + yyh4704.ElemContainerState(yyj4704) if r.TryDecodeAsNil() { - yyv4655[yyj4655] = LocalObjectReference{} + yyv4704[yyj4704] = LocalObjectReference{} } else { - yyv4657 := &yyv4655[yyj4655] - yyv4657.CodecDecodeSelf(d) + yyv4706 := &yyv4704[yyj4704] + yyv4706.CodecDecodeSelf(d) } } } } else { - yyj4655 := 0 - for ; !r.CheckBreak(); yyj4655++ { + yyj4704 := 0 + for ; !r.CheckBreak(); yyj4704++ { - if yyj4655 >= len(yyv4655) { - yyv4655 = append(yyv4655, LocalObjectReference{}) // var yyz4655 LocalObjectReference - yyc4655 = true + if yyj4704 >= len(yyv4704) { + yyv4704 = append(yyv4704, LocalObjectReference{}) // var yyz4704 LocalObjectReference + yyc4704 = true } - yyh4655.ElemContainerState(yyj4655) - if yyj4655 < len(yyv4655) { + yyh4704.ElemContainerState(yyj4704) + if yyj4704 < len(yyv4704) { if r.TryDecodeAsNil() { - yyv4655[yyj4655] = LocalObjectReference{} + yyv4704[yyj4704] = LocalObjectReference{} } else { - yyv4658 := &yyv4655[yyj4655] - yyv4658.CodecDecodeSelf(d) + yyv4707 := &yyv4704[yyj4704] + yyv4707.CodecDecodeSelf(d) } } else { @@ -58627,17 +59164,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4655 < len(yyv4655) { - yyv4655 = yyv4655[:yyj4655] - yyc4655 = true - } else if yyj4655 == 0 && yyv4655 == nil { - yyv4655 = []LocalObjectReference{} - yyc4655 = true + if yyj4704 < len(yyv4704) { + yyv4704 = yyv4704[:yyj4704] + yyc4704 = true + } else if yyj4704 == 0 && yyv4704 == nil { + yyv4704 = []LocalObjectReference{} + yyc4704 = true } } - yyh4655.End() - if yyc4655 { - *v = yyv4655 + yyh4704.End() + if yyc4704 { + *v = yyv4704 } } @@ -58646,10 +59183,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4659 := range v { + for _, yyv4708 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4660 := &yyv4659 - yy4660.CodecEncodeSelf(e) + yy4709 := &yyv4708 + yy4709.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58659,83 +59196,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4661 := *v - yyh4661, yyl4661 := z.DecSliceHelperStart() - var yyc4661 bool - if yyl4661 == 0 { - if yyv4661 == nil { - yyv4661 = []PodCondition{} - yyc4661 = true - } else if len(yyv4661) != 0 { - yyv4661 = yyv4661[:0] - yyc4661 = true + yyv4710 := *v + yyh4710, yyl4710 := z.DecSliceHelperStart() + var yyc4710 bool + if yyl4710 == 0 { + if yyv4710 == nil { + yyv4710 = []PodCondition{} + yyc4710 = true + } else if len(yyv4710) != 0 { + yyv4710 = yyv4710[:0] + yyc4710 = true } - } else if yyl4661 > 0 { - var yyrr4661, yyrl4661 int - var yyrt4661 bool - if yyl4661 > cap(yyv4661) { + } else if yyl4710 > 0 { + var yyrr4710, yyrl4710 int + var yyrt4710 bool + if yyl4710 > cap(yyv4710) { - yyrg4661 := len(yyv4661) > 0 - yyv24661 := yyv4661 - yyrl4661, yyrt4661 = z.DecInferLen(yyl4661, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4661 { - if yyrl4661 <= cap(yyv4661) { - yyv4661 = yyv4661[:yyrl4661] + yyrg4710 := len(yyv4710) > 0 + yyv24710 := yyv4710 + yyrl4710, yyrt4710 = z.DecInferLen(yyl4710, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4710 { + if yyrl4710 <= cap(yyv4710) { + yyv4710 = yyv4710[:yyrl4710] } else { - yyv4661 = make([]PodCondition, yyrl4661) + yyv4710 = make([]PodCondition, yyrl4710) } } else { - yyv4661 = make([]PodCondition, yyrl4661) + yyv4710 = make([]PodCondition, yyrl4710) } - yyc4661 = true - yyrr4661 = len(yyv4661) - if yyrg4661 { - copy(yyv4661, yyv24661) + yyc4710 = true + yyrr4710 = len(yyv4710) + if yyrg4710 { + copy(yyv4710, yyv24710) } - } else if yyl4661 != len(yyv4661) { - yyv4661 = yyv4661[:yyl4661] - yyc4661 = true + } else if yyl4710 != len(yyv4710) { + yyv4710 = yyv4710[:yyl4710] + yyc4710 = true } - yyj4661 := 0 - for ; yyj4661 < yyrr4661; yyj4661++ { - yyh4661.ElemContainerState(yyj4661) + yyj4710 := 0 + for ; yyj4710 < yyrr4710; yyj4710++ { + yyh4710.ElemContainerState(yyj4710) if r.TryDecodeAsNil() { - yyv4661[yyj4661] = PodCondition{} + yyv4710[yyj4710] = PodCondition{} } else { - yyv4662 := &yyv4661[yyj4661] - yyv4662.CodecDecodeSelf(d) + yyv4711 := &yyv4710[yyj4710] + yyv4711.CodecDecodeSelf(d) } } - if yyrt4661 { - for ; yyj4661 < yyl4661; yyj4661++ { - yyv4661 = append(yyv4661, PodCondition{}) - yyh4661.ElemContainerState(yyj4661) + if yyrt4710 { + for ; yyj4710 < yyl4710; yyj4710++ { + yyv4710 = append(yyv4710, PodCondition{}) + yyh4710.ElemContainerState(yyj4710) if r.TryDecodeAsNil() { - yyv4661[yyj4661] = PodCondition{} + yyv4710[yyj4710] = PodCondition{} } else { - yyv4663 := &yyv4661[yyj4661] - yyv4663.CodecDecodeSelf(d) + yyv4712 := &yyv4710[yyj4710] + yyv4712.CodecDecodeSelf(d) } } } } else { - yyj4661 := 0 - for ; !r.CheckBreak(); yyj4661++ { + yyj4710 := 0 + for ; !r.CheckBreak(); yyj4710++ { - if yyj4661 >= len(yyv4661) { - yyv4661 = append(yyv4661, PodCondition{}) // var yyz4661 PodCondition - yyc4661 = true + if yyj4710 >= len(yyv4710) { + yyv4710 = append(yyv4710, PodCondition{}) // var yyz4710 PodCondition + yyc4710 = true } - yyh4661.ElemContainerState(yyj4661) - if yyj4661 < len(yyv4661) { + yyh4710.ElemContainerState(yyj4710) + if yyj4710 < len(yyv4710) { if r.TryDecodeAsNil() { - yyv4661[yyj4661] = PodCondition{} + yyv4710[yyj4710] = PodCondition{} } else { - yyv4664 := &yyv4661[yyj4661] - yyv4664.CodecDecodeSelf(d) + yyv4713 := &yyv4710[yyj4710] + yyv4713.CodecDecodeSelf(d) } } else { @@ -58743,17 +59280,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4661 < len(yyv4661) { - yyv4661 = yyv4661[:yyj4661] - yyc4661 = true - } else if yyj4661 == 0 && yyv4661 == nil { - yyv4661 = []PodCondition{} - yyc4661 = true + if yyj4710 < len(yyv4710) { + yyv4710 = yyv4710[:yyj4710] + yyc4710 = true + } else if yyj4710 == 0 && yyv4710 == nil { + yyv4710 = []PodCondition{} + yyc4710 = true } } - yyh4661.End() - if yyc4661 { - *v = yyv4661 + yyh4710.End() + if yyc4710 { + *v = yyv4710 } } @@ -58762,10 +59299,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4665 := range v { + for _, yyv4714 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4666 := &yyv4665 - yy4666.CodecEncodeSelf(e) + yy4715 := &yyv4714 + yy4715.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58775,83 +59312,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4667 := *v - yyh4667, yyl4667 := z.DecSliceHelperStart() - var yyc4667 bool - if yyl4667 == 0 { - if yyv4667 == nil { - yyv4667 = []ContainerStatus{} - yyc4667 = true - } else if len(yyv4667) != 0 { - yyv4667 = yyv4667[:0] - yyc4667 = true + yyv4716 := *v + yyh4716, yyl4716 := z.DecSliceHelperStart() + var yyc4716 bool + if yyl4716 == 0 { + if yyv4716 == nil { + yyv4716 = []ContainerStatus{} + yyc4716 = true + } else if len(yyv4716) != 0 { + yyv4716 = yyv4716[:0] + yyc4716 = true } - } else if yyl4667 > 0 { - var yyrr4667, yyrl4667 int - var yyrt4667 bool - if yyl4667 > cap(yyv4667) { + } else if yyl4716 > 0 { + var yyrr4716, yyrl4716 int + var yyrt4716 bool + if yyl4716 > cap(yyv4716) { - yyrg4667 := len(yyv4667) > 0 - yyv24667 := yyv4667 - yyrl4667, yyrt4667 = z.DecInferLen(yyl4667, z.DecBasicHandle().MaxInitLen, 120) - if yyrt4667 { - if yyrl4667 <= cap(yyv4667) { - yyv4667 = yyv4667[:yyrl4667] + yyrg4716 := len(yyv4716) > 0 + yyv24716 := yyv4716 + yyrl4716, yyrt4716 = z.DecInferLen(yyl4716, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4716 { + if yyrl4716 <= cap(yyv4716) { + yyv4716 = yyv4716[:yyrl4716] } else { - yyv4667 = make([]ContainerStatus, yyrl4667) + yyv4716 = make([]ContainerStatus, yyrl4716) } } else { - yyv4667 = make([]ContainerStatus, yyrl4667) + yyv4716 = make([]ContainerStatus, yyrl4716) } - yyc4667 = true - yyrr4667 = len(yyv4667) - if yyrg4667 { - copy(yyv4667, yyv24667) + yyc4716 = true + yyrr4716 = len(yyv4716) + if yyrg4716 { + copy(yyv4716, yyv24716) } - } else if yyl4667 != len(yyv4667) { - yyv4667 = yyv4667[:yyl4667] - yyc4667 = true + } else if yyl4716 != len(yyv4716) { + yyv4716 = yyv4716[:yyl4716] + yyc4716 = true } - yyj4667 := 0 - for ; yyj4667 < yyrr4667; yyj4667++ { - yyh4667.ElemContainerState(yyj4667) + yyj4716 := 0 + for ; yyj4716 < yyrr4716; yyj4716++ { + yyh4716.ElemContainerState(yyj4716) if r.TryDecodeAsNil() { - yyv4667[yyj4667] = ContainerStatus{} + yyv4716[yyj4716] = ContainerStatus{} } else { - yyv4668 := &yyv4667[yyj4667] - yyv4668.CodecDecodeSelf(d) + yyv4717 := &yyv4716[yyj4716] + yyv4717.CodecDecodeSelf(d) } } - if yyrt4667 { - for ; yyj4667 < yyl4667; yyj4667++ { - yyv4667 = append(yyv4667, ContainerStatus{}) - yyh4667.ElemContainerState(yyj4667) + if yyrt4716 { + for ; yyj4716 < yyl4716; yyj4716++ { + yyv4716 = append(yyv4716, ContainerStatus{}) + yyh4716.ElemContainerState(yyj4716) if r.TryDecodeAsNil() { - yyv4667[yyj4667] = ContainerStatus{} + yyv4716[yyj4716] = ContainerStatus{} } else { - yyv4669 := &yyv4667[yyj4667] - yyv4669.CodecDecodeSelf(d) + yyv4718 := &yyv4716[yyj4716] + yyv4718.CodecDecodeSelf(d) } } } } else { - yyj4667 := 0 - for ; !r.CheckBreak(); yyj4667++ { + yyj4716 := 0 + for ; !r.CheckBreak(); yyj4716++ { - if yyj4667 >= len(yyv4667) { - yyv4667 = append(yyv4667, ContainerStatus{}) // var yyz4667 ContainerStatus - yyc4667 = true + if yyj4716 >= len(yyv4716) { + yyv4716 = append(yyv4716, ContainerStatus{}) // var yyz4716 ContainerStatus + yyc4716 = true } - yyh4667.ElemContainerState(yyj4667) - if yyj4667 < len(yyv4667) { + yyh4716.ElemContainerState(yyj4716) + if yyj4716 < len(yyv4716) { if r.TryDecodeAsNil() { - yyv4667[yyj4667] = ContainerStatus{} + yyv4716[yyj4716] = ContainerStatus{} } else { - yyv4670 := &yyv4667[yyj4667] - yyv4670.CodecDecodeSelf(d) + yyv4719 := &yyv4716[yyj4716] + yyv4719.CodecDecodeSelf(d) } } else { @@ -58859,17 +59396,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4667 < len(yyv4667) { - yyv4667 = yyv4667[:yyj4667] - yyc4667 = true - } else if yyj4667 == 0 && yyv4667 == nil { - yyv4667 = []ContainerStatus{} - yyc4667 = true + if yyj4716 < len(yyv4716) { + yyv4716 = yyv4716[:yyj4716] + yyc4716 = true + } else if yyj4716 == 0 && yyv4716 == nil { + yyv4716 = []ContainerStatus{} + yyc4716 = true } } - yyh4667.End() - if yyc4667 { - *v = yyv4667 + yyh4716.End() + if yyc4716 { + *v = yyv4716 } } @@ -58878,10 +59415,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4671 := range v { + for _, yyv4720 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4672 := &yyv4671 - yy4672.CodecEncodeSelf(e) + yy4721 := &yyv4720 + yy4721.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58891,83 +59428,199 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4673 := *v - yyh4673, yyl4673 := z.DecSliceHelperStart() - var yyc4673 bool - if yyl4673 == 0 { - if yyv4673 == nil { - yyv4673 = []PodTemplate{} - yyc4673 = true - } else if len(yyv4673) != 0 { - yyv4673 = yyv4673[:0] - yyc4673 = true + yyv4722 := *v + yyh4722, yyl4722 := z.DecSliceHelperStart() + var yyc4722 bool + if yyl4722 == 0 { + if yyv4722 == nil { + yyv4722 = []PodTemplate{} + yyc4722 = true + } else if len(yyv4722) != 0 { + yyv4722 = yyv4722[:0] + yyc4722 = true } - } else if yyl4673 > 0 { - var yyrr4673, yyrl4673 int - var yyrt4673 bool - if yyl4673 > cap(yyv4673) { + } else if yyl4722 > 0 { + var yyrr4722, yyrl4722 int + var yyrt4722 bool + if yyl4722 > cap(yyv4722) { - yyrg4673 := len(yyv4673) > 0 - yyv24673 := yyv4673 - yyrl4673, yyrt4673 = z.DecInferLen(yyl4673, z.DecBasicHandle().MaxInitLen, 704) - if yyrt4673 { - if yyrl4673 <= cap(yyv4673) { - yyv4673 = yyv4673[:yyrl4673] + yyrg4722 := len(yyv4722) > 0 + yyv24722 := yyv4722 + yyrl4722, yyrt4722 = z.DecInferLen(yyl4722, z.DecBasicHandle().MaxInitLen, 704) + if yyrt4722 { + if yyrl4722 <= cap(yyv4722) { + yyv4722 = yyv4722[:yyrl4722] } else { - yyv4673 = make([]PodTemplate, yyrl4673) + yyv4722 = make([]PodTemplate, yyrl4722) } } else { - yyv4673 = make([]PodTemplate, yyrl4673) + yyv4722 = make([]PodTemplate, yyrl4722) } - yyc4673 = true - yyrr4673 = len(yyv4673) - if yyrg4673 { - copy(yyv4673, yyv24673) + yyc4722 = true + yyrr4722 = len(yyv4722) + if yyrg4722 { + copy(yyv4722, yyv24722) } - } else if yyl4673 != len(yyv4673) { - yyv4673 = yyv4673[:yyl4673] - yyc4673 = true + } else if yyl4722 != len(yyv4722) { + yyv4722 = yyv4722[:yyl4722] + yyc4722 = true } - yyj4673 := 0 - for ; yyj4673 < yyrr4673; yyj4673++ { - yyh4673.ElemContainerState(yyj4673) + yyj4722 := 0 + for ; yyj4722 < yyrr4722; yyj4722++ { + yyh4722.ElemContainerState(yyj4722) if r.TryDecodeAsNil() { - yyv4673[yyj4673] = PodTemplate{} + yyv4722[yyj4722] = PodTemplate{} } else { - yyv4674 := &yyv4673[yyj4673] - yyv4674.CodecDecodeSelf(d) + yyv4723 := &yyv4722[yyj4722] + yyv4723.CodecDecodeSelf(d) } } - if yyrt4673 { - for ; yyj4673 < yyl4673; yyj4673++ { - yyv4673 = append(yyv4673, PodTemplate{}) - yyh4673.ElemContainerState(yyj4673) + if yyrt4722 { + for ; yyj4722 < yyl4722; yyj4722++ { + yyv4722 = append(yyv4722, PodTemplate{}) + yyh4722.ElemContainerState(yyj4722) if r.TryDecodeAsNil() { - yyv4673[yyj4673] = PodTemplate{} + yyv4722[yyj4722] = PodTemplate{} } else { - yyv4675 := &yyv4673[yyj4673] - yyv4675.CodecDecodeSelf(d) + yyv4724 := &yyv4722[yyj4722] + yyv4724.CodecDecodeSelf(d) } } } } else { - yyj4673 := 0 - for ; !r.CheckBreak(); yyj4673++ { + yyj4722 := 0 + for ; !r.CheckBreak(); yyj4722++ { - if yyj4673 >= len(yyv4673) { - yyv4673 = append(yyv4673, PodTemplate{}) // var yyz4673 PodTemplate - yyc4673 = true + if yyj4722 >= len(yyv4722) { + yyv4722 = append(yyv4722, PodTemplate{}) // var yyz4722 PodTemplate + yyc4722 = true } - yyh4673.ElemContainerState(yyj4673) - if yyj4673 < len(yyv4673) { + yyh4722.ElemContainerState(yyj4722) + if yyj4722 < len(yyv4722) { if r.TryDecodeAsNil() { - yyv4673[yyj4673] = PodTemplate{} + yyv4722[yyj4722] = PodTemplate{} } else { - yyv4676 := &yyv4673[yyj4673] - yyv4676.CodecDecodeSelf(d) + yyv4725 := &yyv4722[yyj4722] + yyv4725.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4722 < len(yyv4722) { + yyv4722 = yyv4722[:yyj4722] + yyc4722 = true + } else if yyj4722 == 0 && yyv4722 == nil { + yyv4722 = []PodTemplate{} + yyc4722 = true + } + } + yyh4722.End() + if yyc4722 { + *v = yyv4722 + } +} + +func (x codecSelfer1234) encSliceReplicationControllerCondition(v []ReplicationControllerCondition, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4726 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4727 := &yyv4726 + yy4727.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceReplicationControllerCondition(v *[]ReplicationControllerCondition, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4728 := *v + yyh4728, yyl4728 := z.DecSliceHelperStart() + var yyc4728 bool + if yyl4728 == 0 { + if yyv4728 == nil { + yyv4728 = []ReplicationControllerCondition{} + yyc4728 = true + } else if len(yyv4728) != 0 { + yyv4728 = yyv4728[:0] + yyc4728 = true + } + } else if yyl4728 > 0 { + var yyrr4728, yyrl4728 int + var yyrt4728 bool + if yyl4728 > cap(yyv4728) { + + yyrg4728 := len(yyv4728) > 0 + yyv24728 := yyv4728 + yyrl4728, yyrt4728 = z.DecInferLen(yyl4728, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4728 { + if yyrl4728 <= cap(yyv4728) { + yyv4728 = yyv4728[:yyrl4728] + } else { + yyv4728 = make([]ReplicationControllerCondition, yyrl4728) + } + } else { + yyv4728 = make([]ReplicationControllerCondition, yyrl4728) + } + yyc4728 = true + yyrr4728 = len(yyv4728) + if yyrg4728 { + copy(yyv4728, yyv24728) + } + } else if yyl4728 != len(yyv4728) { + yyv4728 = yyv4728[:yyl4728] + yyc4728 = true + } + yyj4728 := 0 + for ; yyj4728 < yyrr4728; yyj4728++ { + yyh4728.ElemContainerState(yyj4728) + if r.TryDecodeAsNil() { + yyv4728[yyj4728] = ReplicationControllerCondition{} + } else { + yyv4729 := &yyv4728[yyj4728] + yyv4729.CodecDecodeSelf(d) + } + + } + if yyrt4728 { + for ; yyj4728 < yyl4728; yyj4728++ { + yyv4728 = append(yyv4728, ReplicationControllerCondition{}) + yyh4728.ElemContainerState(yyj4728) + if r.TryDecodeAsNil() { + yyv4728[yyj4728] = ReplicationControllerCondition{} + } else { + yyv4730 := &yyv4728[yyj4728] + yyv4730.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4728 := 0 + for ; !r.CheckBreak(); yyj4728++ { + + if yyj4728 >= len(yyv4728) { + yyv4728 = append(yyv4728, ReplicationControllerCondition{}) // var yyz4728 ReplicationControllerCondition + yyc4728 = true + } + yyh4728.ElemContainerState(yyj4728) + if yyj4728 < len(yyv4728) { + if r.TryDecodeAsNil() { + yyv4728[yyj4728] = ReplicationControllerCondition{} + } else { + yyv4731 := &yyv4728[yyj4728] + yyv4731.CodecDecodeSelf(d) } } else { @@ -58975,17 +59628,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4673 < len(yyv4673) { - yyv4673 = yyv4673[:yyj4673] - yyc4673 = true - } else if yyj4673 == 0 && yyv4673 == nil { - yyv4673 = []PodTemplate{} - yyc4673 = true + if yyj4728 < len(yyv4728) { + yyv4728 = yyv4728[:yyj4728] + yyc4728 = true + } else if yyj4728 == 0 && yyv4728 == nil { + yyv4728 = []ReplicationControllerCondition{} + yyc4728 = true } } - yyh4673.End() - if yyc4673 { - *v = yyv4673 + yyh4728.End() + if yyc4728 { + *v = yyv4728 } } @@ -58994,10 +59647,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4677 := range v { + for _, yyv4732 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4678 := &yyv4677 - yy4678.CodecEncodeSelf(e) + yy4733 := &yyv4732 + yy4733.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59007,83 +59660,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4679 := *v - yyh4679, yyl4679 := z.DecSliceHelperStart() - var yyc4679 bool - if yyl4679 == 0 { - if yyv4679 == nil { - yyv4679 = []ReplicationController{} - yyc4679 = true - } else if len(yyv4679) != 0 { - yyv4679 = yyv4679[:0] - yyc4679 = true + yyv4734 := *v + yyh4734, yyl4734 := z.DecSliceHelperStart() + var yyc4734 bool + if yyl4734 == 0 { + if yyv4734 == nil { + yyv4734 = []ReplicationController{} + yyc4734 = true + } else if len(yyv4734) != 0 { + yyv4734 = yyv4734[:0] + yyc4734 = true } - } else if yyl4679 > 0 { - var yyrr4679, yyrl4679 int - var yyrt4679 bool - if yyl4679 > cap(yyv4679) { + } else if yyl4734 > 0 { + var yyrr4734, yyrl4734 int + var yyrt4734 bool + if yyl4734 > cap(yyv4734) { - yyrg4679 := len(yyv4679) > 0 - yyv24679 := yyv4679 - yyrl4679, yyrt4679 = z.DecInferLen(yyl4679, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4679 { - if yyrl4679 <= cap(yyv4679) { - yyv4679 = yyv4679[:yyrl4679] + yyrg4734 := len(yyv4734) > 0 + yyv24734 := yyv4734 + yyrl4734, yyrt4734 = z.DecInferLen(yyl4734, z.DecBasicHandle().MaxInitLen, 328) + if yyrt4734 { + if yyrl4734 <= cap(yyv4734) { + yyv4734 = yyv4734[:yyrl4734] } else { - yyv4679 = make([]ReplicationController, yyrl4679) + yyv4734 = make([]ReplicationController, yyrl4734) } } else { - yyv4679 = make([]ReplicationController, yyrl4679) + yyv4734 = make([]ReplicationController, yyrl4734) } - yyc4679 = true - yyrr4679 = len(yyv4679) - if yyrg4679 { - copy(yyv4679, yyv24679) + yyc4734 = true + yyrr4734 = len(yyv4734) + if yyrg4734 { + copy(yyv4734, yyv24734) } - } else if yyl4679 != len(yyv4679) { - yyv4679 = yyv4679[:yyl4679] - yyc4679 = true + } else if yyl4734 != len(yyv4734) { + yyv4734 = yyv4734[:yyl4734] + yyc4734 = true } - yyj4679 := 0 - for ; yyj4679 < yyrr4679; yyj4679++ { - yyh4679.ElemContainerState(yyj4679) + yyj4734 := 0 + for ; yyj4734 < yyrr4734; yyj4734++ { + yyh4734.ElemContainerState(yyj4734) if r.TryDecodeAsNil() { - yyv4679[yyj4679] = ReplicationController{} + yyv4734[yyj4734] = ReplicationController{} } else { - yyv4680 := &yyv4679[yyj4679] - yyv4680.CodecDecodeSelf(d) + yyv4735 := &yyv4734[yyj4734] + yyv4735.CodecDecodeSelf(d) } } - if yyrt4679 { - for ; yyj4679 < yyl4679; yyj4679++ { - yyv4679 = append(yyv4679, ReplicationController{}) - yyh4679.ElemContainerState(yyj4679) + if yyrt4734 { + for ; yyj4734 < yyl4734; yyj4734++ { + yyv4734 = append(yyv4734, ReplicationController{}) + yyh4734.ElemContainerState(yyj4734) if r.TryDecodeAsNil() { - yyv4679[yyj4679] = ReplicationController{} + yyv4734[yyj4734] = ReplicationController{} } else { - yyv4681 := &yyv4679[yyj4679] - yyv4681.CodecDecodeSelf(d) + yyv4736 := &yyv4734[yyj4734] + yyv4736.CodecDecodeSelf(d) } } } } else { - yyj4679 := 0 - for ; !r.CheckBreak(); yyj4679++ { + yyj4734 := 0 + for ; !r.CheckBreak(); yyj4734++ { - if yyj4679 >= len(yyv4679) { - yyv4679 = append(yyv4679, ReplicationController{}) // var yyz4679 ReplicationController - yyc4679 = true + if yyj4734 >= len(yyv4734) { + yyv4734 = append(yyv4734, ReplicationController{}) // var yyz4734 ReplicationController + yyc4734 = true } - yyh4679.ElemContainerState(yyj4679) - if yyj4679 < len(yyv4679) { + yyh4734.ElemContainerState(yyj4734) + if yyj4734 < len(yyv4734) { if r.TryDecodeAsNil() { - yyv4679[yyj4679] = ReplicationController{} + yyv4734[yyj4734] = ReplicationController{} } else { - yyv4682 := &yyv4679[yyj4679] - yyv4682.CodecDecodeSelf(d) + yyv4737 := &yyv4734[yyj4734] + yyv4737.CodecDecodeSelf(d) } } else { @@ -59091,17 +59744,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4679 < len(yyv4679) { - yyv4679 = yyv4679[:yyj4679] - yyc4679 = true - } else if yyj4679 == 0 && yyv4679 == nil { - yyv4679 = []ReplicationController{} - yyc4679 = true + if yyj4734 < len(yyv4734) { + yyv4734 = yyv4734[:yyj4734] + yyc4734 = true + } else if yyj4734 == 0 && yyv4734 == nil { + yyv4734 = []ReplicationController{} + yyc4734 = true } } - yyh4679.End() - if yyc4679 { - *v = yyv4679 + yyh4734.End() + if yyc4734 { + *v = yyv4734 } } @@ -59110,10 +59763,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4683 := range v { + for _, yyv4738 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4684 := &yyv4683 - yy4684.CodecEncodeSelf(e) + yy4739 := &yyv4738 + yy4739.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59123,83 +59776,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4685 := *v - yyh4685, yyl4685 := z.DecSliceHelperStart() - var yyc4685 bool - if yyl4685 == 0 { - if yyv4685 == nil { - yyv4685 = []Service{} - yyc4685 = true - } else if len(yyv4685) != 0 { - yyv4685 = yyv4685[:0] - yyc4685 = true + yyv4740 := *v + yyh4740, yyl4740 := z.DecSliceHelperStart() + var yyc4740 bool + if yyl4740 == 0 { + if yyv4740 == nil { + yyv4740 = []Service{} + yyc4740 = true + } else if len(yyv4740) != 0 { + yyv4740 = yyv4740[:0] + yyc4740 = true } - } else if yyl4685 > 0 { - var yyrr4685, yyrl4685 int - var yyrt4685 bool - if yyl4685 > cap(yyv4685) { + } else if yyl4740 > 0 { + var yyrr4740, yyrl4740 int + var yyrt4740 bool + if yyl4740 > cap(yyv4740) { - yyrg4685 := len(yyv4685) > 0 - yyv24685 := yyv4685 - yyrl4685, yyrt4685 = z.DecInferLen(yyl4685, z.DecBasicHandle().MaxInitLen, 440) - if yyrt4685 { - if yyrl4685 <= cap(yyv4685) { - yyv4685 = yyv4685[:yyrl4685] + yyrg4740 := len(yyv4740) > 0 + yyv24740 := yyv4740 + yyrl4740, yyrt4740 = z.DecInferLen(yyl4740, z.DecBasicHandle().MaxInitLen, 440) + if yyrt4740 { + if yyrl4740 <= cap(yyv4740) { + yyv4740 = yyv4740[:yyrl4740] } else { - yyv4685 = make([]Service, yyrl4685) + yyv4740 = make([]Service, yyrl4740) } } else { - yyv4685 = make([]Service, yyrl4685) + yyv4740 = make([]Service, yyrl4740) } - yyc4685 = true - yyrr4685 = len(yyv4685) - if yyrg4685 { - copy(yyv4685, yyv24685) + yyc4740 = true + yyrr4740 = len(yyv4740) + if yyrg4740 { + copy(yyv4740, yyv24740) } - } else if yyl4685 != len(yyv4685) { - yyv4685 = yyv4685[:yyl4685] - yyc4685 = true + } else if yyl4740 != len(yyv4740) { + yyv4740 = yyv4740[:yyl4740] + yyc4740 = true } - yyj4685 := 0 - for ; yyj4685 < yyrr4685; yyj4685++ { - yyh4685.ElemContainerState(yyj4685) + yyj4740 := 0 + for ; yyj4740 < yyrr4740; yyj4740++ { + yyh4740.ElemContainerState(yyj4740) if r.TryDecodeAsNil() { - yyv4685[yyj4685] = Service{} + yyv4740[yyj4740] = Service{} } else { - yyv4686 := &yyv4685[yyj4685] - yyv4686.CodecDecodeSelf(d) + yyv4741 := &yyv4740[yyj4740] + yyv4741.CodecDecodeSelf(d) } } - if yyrt4685 { - for ; yyj4685 < yyl4685; yyj4685++ { - yyv4685 = append(yyv4685, Service{}) - yyh4685.ElemContainerState(yyj4685) + if yyrt4740 { + for ; yyj4740 < yyl4740; yyj4740++ { + yyv4740 = append(yyv4740, Service{}) + yyh4740.ElemContainerState(yyj4740) if r.TryDecodeAsNil() { - yyv4685[yyj4685] = Service{} + yyv4740[yyj4740] = Service{} } else { - yyv4687 := &yyv4685[yyj4685] - yyv4687.CodecDecodeSelf(d) + yyv4742 := &yyv4740[yyj4740] + yyv4742.CodecDecodeSelf(d) } } } } else { - yyj4685 := 0 - for ; !r.CheckBreak(); yyj4685++ { + yyj4740 := 0 + for ; !r.CheckBreak(); yyj4740++ { - if yyj4685 >= len(yyv4685) { - yyv4685 = append(yyv4685, Service{}) // var yyz4685 Service - yyc4685 = true + if yyj4740 >= len(yyv4740) { + yyv4740 = append(yyv4740, Service{}) // var yyz4740 Service + yyc4740 = true } - yyh4685.ElemContainerState(yyj4685) - if yyj4685 < len(yyv4685) { + yyh4740.ElemContainerState(yyj4740) + if yyj4740 < len(yyv4740) { if r.TryDecodeAsNil() { - yyv4685[yyj4685] = Service{} + yyv4740[yyj4740] = Service{} } else { - yyv4688 := &yyv4685[yyj4685] - yyv4688.CodecDecodeSelf(d) + yyv4743 := &yyv4740[yyj4740] + yyv4743.CodecDecodeSelf(d) } } else { @@ -59207,17 +59860,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4685 < len(yyv4685) { - yyv4685 = yyv4685[:yyj4685] - yyc4685 = true - } else if yyj4685 == 0 && yyv4685 == nil { - yyv4685 = []Service{} - yyc4685 = true + if yyj4740 < len(yyv4740) { + yyv4740 = yyv4740[:yyj4740] + yyc4740 = true + } else if yyj4740 == 0 && yyv4740 == nil { + yyv4740 = []Service{} + yyc4740 = true } } - yyh4685.End() - if yyc4685 { - *v = yyv4685 + yyh4740.End() + if yyc4740 { + *v = yyv4740 } } @@ -59226,10 +59879,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4689 := range v { + for _, yyv4744 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4690 := &yyv4689 - yy4690.CodecEncodeSelf(e) + yy4745 := &yyv4744 + yy4745.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59239,83 +59892,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4691 := *v - yyh4691, yyl4691 := z.DecSliceHelperStart() - var yyc4691 bool - if yyl4691 == 0 { - if yyv4691 == nil { - yyv4691 = []LoadBalancerIngress{} - yyc4691 = true - } else if len(yyv4691) != 0 { - yyv4691 = yyv4691[:0] - yyc4691 = true + yyv4746 := *v + yyh4746, yyl4746 := z.DecSliceHelperStart() + var yyc4746 bool + if yyl4746 == 0 { + if yyv4746 == nil { + yyv4746 = []LoadBalancerIngress{} + yyc4746 = true + } else if len(yyv4746) != 0 { + yyv4746 = yyv4746[:0] + yyc4746 = true } - } else if yyl4691 > 0 { - var yyrr4691, yyrl4691 int - var yyrt4691 bool - if yyl4691 > cap(yyv4691) { + } else if yyl4746 > 0 { + var yyrr4746, yyrl4746 int + var yyrt4746 bool + if yyl4746 > cap(yyv4746) { - yyrg4691 := len(yyv4691) > 0 - yyv24691 := yyv4691 - yyrl4691, yyrt4691 = z.DecInferLen(yyl4691, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4691 { - if yyrl4691 <= cap(yyv4691) { - yyv4691 = yyv4691[:yyrl4691] + yyrg4746 := len(yyv4746) > 0 + yyv24746 := yyv4746 + yyrl4746, yyrt4746 = z.DecInferLen(yyl4746, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4746 { + if yyrl4746 <= cap(yyv4746) { + yyv4746 = yyv4746[:yyrl4746] } else { - yyv4691 = make([]LoadBalancerIngress, yyrl4691) + yyv4746 = make([]LoadBalancerIngress, yyrl4746) } } else { - yyv4691 = make([]LoadBalancerIngress, yyrl4691) + yyv4746 = make([]LoadBalancerIngress, yyrl4746) } - yyc4691 = true - yyrr4691 = len(yyv4691) - if yyrg4691 { - copy(yyv4691, yyv24691) + yyc4746 = true + yyrr4746 = len(yyv4746) + if yyrg4746 { + copy(yyv4746, yyv24746) } - } else if yyl4691 != len(yyv4691) { - yyv4691 = yyv4691[:yyl4691] - yyc4691 = true + } else if yyl4746 != len(yyv4746) { + yyv4746 = yyv4746[:yyl4746] + yyc4746 = true } - yyj4691 := 0 - for ; yyj4691 < yyrr4691; yyj4691++ { - yyh4691.ElemContainerState(yyj4691) + yyj4746 := 0 + for ; yyj4746 < yyrr4746; yyj4746++ { + yyh4746.ElemContainerState(yyj4746) if r.TryDecodeAsNil() { - yyv4691[yyj4691] = LoadBalancerIngress{} + yyv4746[yyj4746] = LoadBalancerIngress{} } else { - yyv4692 := &yyv4691[yyj4691] - yyv4692.CodecDecodeSelf(d) + yyv4747 := &yyv4746[yyj4746] + yyv4747.CodecDecodeSelf(d) } } - if yyrt4691 { - for ; yyj4691 < yyl4691; yyj4691++ { - yyv4691 = append(yyv4691, LoadBalancerIngress{}) - yyh4691.ElemContainerState(yyj4691) + if yyrt4746 { + for ; yyj4746 < yyl4746; yyj4746++ { + yyv4746 = append(yyv4746, LoadBalancerIngress{}) + yyh4746.ElemContainerState(yyj4746) if r.TryDecodeAsNil() { - yyv4691[yyj4691] = LoadBalancerIngress{} + yyv4746[yyj4746] = LoadBalancerIngress{} } else { - yyv4693 := &yyv4691[yyj4691] - yyv4693.CodecDecodeSelf(d) + yyv4748 := &yyv4746[yyj4746] + yyv4748.CodecDecodeSelf(d) } } } } else { - yyj4691 := 0 - for ; !r.CheckBreak(); yyj4691++ { + yyj4746 := 0 + for ; !r.CheckBreak(); yyj4746++ { - if yyj4691 >= len(yyv4691) { - yyv4691 = append(yyv4691, LoadBalancerIngress{}) // var yyz4691 LoadBalancerIngress - yyc4691 = true + if yyj4746 >= len(yyv4746) { + yyv4746 = append(yyv4746, LoadBalancerIngress{}) // var yyz4746 LoadBalancerIngress + yyc4746 = true } - yyh4691.ElemContainerState(yyj4691) - if yyj4691 < len(yyv4691) { + yyh4746.ElemContainerState(yyj4746) + if yyj4746 < len(yyv4746) { if r.TryDecodeAsNil() { - yyv4691[yyj4691] = LoadBalancerIngress{} + yyv4746[yyj4746] = LoadBalancerIngress{} } else { - yyv4694 := &yyv4691[yyj4691] - yyv4694.CodecDecodeSelf(d) + yyv4749 := &yyv4746[yyj4746] + yyv4749.CodecDecodeSelf(d) } } else { @@ -59323,17 +59976,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4691 < len(yyv4691) { - yyv4691 = yyv4691[:yyj4691] - yyc4691 = true - } else if yyj4691 == 0 && yyv4691 == nil { - yyv4691 = []LoadBalancerIngress{} - yyc4691 = true + if yyj4746 < len(yyv4746) { + yyv4746 = yyv4746[:yyj4746] + yyc4746 = true + } else if yyj4746 == 0 && yyv4746 == nil { + yyv4746 = []LoadBalancerIngress{} + yyc4746 = true } } - yyh4691.End() - if yyc4691 { - *v = yyv4691 + yyh4746.End() + if yyc4746 { + *v = yyv4746 } } @@ -59342,10 +59995,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4695 := range v { + for _, yyv4750 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4696 := &yyv4695 - yy4696.CodecEncodeSelf(e) + yy4751 := &yyv4750 + yy4751.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59355,83 +60008,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4697 := *v - yyh4697, yyl4697 := z.DecSliceHelperStart() - var yyc4697 bool - if yyl4697 == 0 { - if yyv4697 == nil { - yyv4697 = []ServicePort{} - yyc4697 = true - } else if len(yyv4697) != 0 { - yyv4697 = yyv4697[:0] - yyc4697 = true + yyv4752 := *v + yyh4752, yyl4752 := z.DecSliceHelperStart() + var yyc4752 bool + if yyl4752 == 0 { + if yyv4752 == nil { + yyv4752 = []ServicePort{} + yyc4752 = true + } else if len(yyv4752) != 0 { + yyv4752 = yyv4752[:0] + yyc4752 = true } - } else if yyl4697 > 0 { - var yyrr4697, yyrl4697 int - var yyrt4697 bool - if yyl4697 > cap(yyv4697) { + } else if yyl4752 > 0 { + var yyrr4752, yyrl4752 int + var yyrt4752 bool + if yyl4752 > cap(yyv4752) { - yyrg4697 := len(yyv4697) > 0 - yyv24697 := yyv4697 - yyrl4697, yyrt4697 = z.DecInferLen(yyl4697, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4697 { - if yyrl4697 <= cap(yyv4697) { - yyv4697 = yyv4697[:yyrl4697] + yyrg4752 := len(yyv4752) > 0 + yyv24752 := yyv4752 + yyrl4752, yyrt4752 = z.DecInferLen(yyl4752, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4752 { + if yyrl4752 <= cap(yyv4752) { + yyv4752 = yyv4752[:yyrl4752] } else { - yyv4697 = make([]ServicePort, yyrl4697) + yyv4752 = make([]ServicePort, yyrl4752) } } else { - yyv4697 = make([]ServicePort, yyrl4697) + yyv4752 = make([]ServicePort, yyrl4752) } - yyc4697 = true - yyrr4697 = len(yyv4697) - if yyrg4697 { - copy(yyv4697, yyv24697) + yyc4752 = true + yyrr4752 = len(yyv4752) + if yyrg4752 { + copy(yyv4752, yyv24752) } - } else if yyl4697 != len(yyv4697) { - yyv4697 = yyv4697[:yyl4697] - yyc4697 = true + } else if yyl4752 != len(yyv4752) { + yyv4752 = yyv4752[:yyl4752] + yyc4752 = true } - yyj4697 := 0 - for ; yyj4697 < yyrr4697; yyj4697++ { - yyh4697.ElemContainerState(yyj4697) + yyj4752 := 0 + for ; yyj4752 < yyrr4752; yyj4752++ { + yyh4752.ElemContainerState(yyj4752) if r.TryDecodeAsNil() { - yyv4697[yyj4697] = ServicePort{} + yyv4752[yyj4752] = ServicePort{} } else { - yyv4698 := &yyv4697[yyj4697] - yyv4698.CodecDecodeSelf(d) + yyv4753 := &yyv4752[yyj4752] + yyv4753.CodecDecodeSelf(d) } } - if yyrt4697 { - for ; yyj4697 < yyl4697; yyj4697++ { - yyv4697 = append(yyv4697, ServicePort{}) - yyh4697.ElemContainerState(yyj4697) + if yyrt4752 { + for ; yyj4752 < yyl4752; yyj4752++ { + yyv4752 = append(yyv4752, ServicePort{}) + yyh4752.ElemContainerState(yyj4752) if r.TryDecodeAsNil() { - yyv4697[yyj4697] = ServicePort{} + yyv4752[yyj4752] = ServicePort{} } else { - yyv4699 := &yyv4697[yyj4697] - yyv4699.CodecDecodeSelf(d) + yyv4754 := &yyv4752[yyj4752] + yyv4754.CodecDecodeSelf(d) } } } } else { - yyj4697 := 0 - for ; !r.CheckBreak(); yyj4697++ { + yyj4752 := 0 + for ; !r.CheckBreak(); yyj4752++ { - if yyj4697 >= len(yyv4697) { - yyv4697 = append(yyv4697, ServicePort{}) // var yyz4697 ServicePort - yyc4697 = true + if yyj4752 >= len(yyv4752) { + yyv4752 = append(yyv4752, ServicePort{}) // var yyz4752 ServicePort + yyc4752 = true } - yyh4697.ElemContainerState(yyj4697) - if yyj4697 < len(yyv4697) { + yyh4752.ElemContainerState(yyj4752) + if yyj4752 < len(yyv4752) { if r.TryDecodeAsNil() { - yyv4697[yyj4697] = ServicePort{} + yyv4752[yyj4752] = ServicePort{} } else { - yyv4700 := &yyv4697[yyj4697] - yyv4700.CodecDecodeSelf(d) + yyv4755 := &yyv4752[yyj4752] + yyv4755.CodecDecodeSelf(d) } } else { @@ -59439,17 +60092,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4697 < len(yyv4697) { - yyv4697 = yyv4697[:yyj4697] - yyc4697 = true - } else if yyj4697 == 0 && yyv4697 == nil { - yyv4697 = []ServicePort{} - yyc4697 = true + if yyj4752 < len(yyv4752) { + yyv4752 = yyv4752[:yyj4752] + yyc4752 = true + } else if yyj4752 == 0 && yyv4752 == nil { + yyv4752 = []ServicePort{} + yyc4752 = true } } - yyh4697.End() - if yyc4697 { - *v = yyv4697 + yyh4752.End() + if yyc4752 { + *v = yyv4752 } } @@ -59458,10 +60111,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4701 := range v { + for _, yyv4756 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4702 := &yyv4701 - yy4702.CodecEncodeSelf(e) + yy4757 := &yyv4756 + yy4757.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59471,83 +60124,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4703 := *v - yyh4703, yyl4703 := z.DecSliceHelperStart() - var yyc4703 bool - if yyl4703 == 0 { - if yyv4703 == nil { - yyv4703 = []ObjectReference{} - yyc4703 = true - } else if len(yyv4703) != 0 { - yyv4703 = yyv4703[:0] - yyc4703 = true + yyv4758 := *v + yyh4758, yyl4758 := z.DecSliceHelperStart() + var yyc4758 bool + if yyl4758 == 0 { + if yyv4758 == nil { + yyv4758 = []ObjectReference{} + yyc4758 = true + } else if len(yyv4758) != 0 { + yyv4758 = yyv4758[:0] + yyc4758 = true } - } else if yyl4703 > 0 { - var yyrr4703, yyrl4703 int - var yyrt4703 bool - if yyl4703 > cap(yyv4703) { + } else if yyl4758 > 0 { + var yyrr4758, yyrl4758 int + var yyrt4758 bool + if yyl4758 > cap(yyv4758) { - yyrg4703 := len(yyv4703) > 0 - yyv24703 := yyv4703 - yyrl4703, yyrt4703 = z.DecInferLen(yyl4703, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4703 { - if yyrl4703 <= cap(yyv4703) { - yyv4703 = yyv4703[:yyrl4703] + yyrg4758 := len(yyv4758) > 0 + yyv24758 := yyv4758 + yyrl4758, yyrt4758 = z.DecInferLen(yyl4758, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4758 { + if yyrl4758 <= cap(yyv4758) { + yyv4758 = yyv4758[:yyrl4758] } else { - yyv4703 = make([]ObjectReference, yyrl4703) + yyv4758 = make([]ObjectReference, yyrl4758) } } else { - yyv4703 = make([]ObjectReference, yyrl4703) + yyv4758 = make([]ObjectReference, yyrl4758) } - yyc4703 = true - yyrr4703 = len(yyv4703) - if yyrg4703 { - copy(yyv4703, yyv24703) + yyc4758 = true + yyrr4758 = len(yyv4758) + if yyrg4758 { + copy(yyv4758, yyv24758) } - } else if yyl4703 != len(yyv4703) { - yyv4703 = yyv4703[:yyl4703] - yyc4703 = true + } else if yyl4758 != len(yyv4758) { + yyv4758 = yyv4758[:yyl4758] + yyc4758 = true } - yyj4703 := 0 - for ; yyj4703 < yyrr4703; yyj4703++ { - yyh4703.ElemContainerState(yyj4703) + yyj4758 := 0 + for ; yyj4758 < yyrr4758; yyj4758++ { + yyh4758.ElemContainerState(yyj4758) if r.TryDecodeAsNil() { - yyv4703[yyj4703] = ObjectReference{} + yyv4758[yyj4758] = ObjectReference{} } else { - yyv4704 := &yyv4703[yyj4703] - yyv4704.CodecDecodeSelf(d) + yyv4759 := &yyv4758[yyj4758] + yyv4759.CodecDecodeSelf(d) } } - if yyrt4703 { - for ; yyj4703 < yyl4703; yyj4703++ { - yyv4703 = append(yyv4703, ObjectReference{}) - yyh4703.ElemContainerState(yyj4703) + if yyrt4758 { + for ; yyj4758 < yyl4758; yyj4758++ { + yyv4758 = append(yyv4758, ObjectReference{}) + yyh4758.ElemContainerState(yyj4758) if r.TryDecodeAsNil() { - yyv4703[yyj4703] = ObjectReference{} + yyv4758[yyj4758] = ObjectReference{} } else { - yyv4705 := &yyv4703[yyj4703] - yyv4705.CodecDecodeSelf(d) + yyv4760 := &yyv4758[yyj4758] + yyv4760.CodecDecodeSelf(d) } } } } else { - yyj4703 := 0 - for ; !r.CheckBreak(); yyj4703++ { + yyj4758 := 0 + for ; !r.CheckBreak(); yyj4758++ { - if yyj4703 >= len(yyv4703) { - yyv4703 = append(yyv4703, ObjectReference{}) // var yyz4703 ObjectReference - yyc4703 = true + if yyj4758 >= len(yyv4758) { + yyv4758 = append(yyv4758, ObjectReference{}) // var yyz4758 ObjectReference + yyc4758 = true } - yyh4703.ElemContainerState(yyj4703) - if yyj4703 < len(yyv4703) { + yyh4758.ElemContainerState(yyj4758) + if yyj4758 < len(yyv4758) { if r.TryDecodeAsNil() { - yyv4703[yyj4703] = ObjectReference{} + yyv4758[yyj4758] = ObjectReference{} } else { - yyv4706 := &yyv4703[yyj4703] - yyv4706.CodecDecodeSelf(d) + yyv4761 := &yyv4758[yyj4758] + yyv4761.CodecDecodeSelf(d) } } else { @@ -59555,17 +60208,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj4703 < len(yyv4703) { - yyv4703 = yyv4703[:yyj4703] - yyc4703 = true - } else if yyj4703 == 0 && yyv4703 == nil { - yyv4703 = []ObjectReference{} - yyc4703 = true + if yyj4758 < len(yyv4758) { + yyv4758 = yyv4758[:yyj4758] + yyc4758 = true + } else if yyj4758 == 0 && yyv4758 == nil { + yyv4758 = []ObjectReference{} + yyc4758 = true } } - yyh4703.End() - if yyc4703 { - *v = yyv4703 + yyh4758.End() + if yyc4758 { + *v = yyv4758 } } @@ -59574,10 +60227,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4707 := range v { + for _, yyv4762 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4708 := &yyv4707 - yy4708.CodecEncodeSelf(e) + yy4763 := &yyv4762 + yy4763.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59587,83 +60240,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4709 := *v - yyh4709, yyl4709 := z.DecSliceHelperStart() - var yyc4709 bool - if yyl4709 == 0 { - if yyv4709 == nil { - yyv4709 = []ServiceAccount{} - yyc4709 = true - } else if len(yyv4709) != 0 { - yyv4709 = yyv4709[:0] - yyc4709 = true + yyv4764 := *v + yyh4764, yyl4764 := z.DecSliceHelperStart() + var yyc4764 bool + if yyl4764 == 0 { + if yyv4764 == nil { + yyv4764 = []ServiceAccount{} + yyc4764 = true + } else if len(yyv4764) != 0 { + yyv4764 = yyv4764[:0] + yyc4764 = true } - } else if yyl4709 > 0 { - var yyrr4709, yyrl4709 int - var yyrt4709 bool - if yyl4709 > cap(yyv4709) { + } else if yyl4764 > 0 { + var yyrr4764, yyrl4764 int + var yyrt4764 bool + if yyl4764 > cap(yyv4764) { - yyrg4709 := len(yyv4709) > 0 - yyv24709 := yyv4709 - yyrl4709, yyrt4709 = z.DecInferLen(yyl4709, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4709 { - if yyrl4709 <= cap(yyv4709) { - yyv4709 = yyv4709[:yyrl4709] + yyrg4764 := len(yyv4764) > 0 + yyv24764 := yyv4764 + yyrl4764, yyrt4764 = z.DecInferLen(yyl4764, z.DecBasicHandle().MaxInitLen, 304) + if yyrt4764 { + if yyrl4764 <= cap(yyv4764) { + yyv4764 = yyv4764[:yyrl4764] } else { - yyv4709 = make([]ServiceAccount, yyrl4709) + yyv4764 = make([]ServiceAccount, yyrl4764) } } else { - yyv4709 = make([]ServiceAccount, yyrl4709) + yyv4764 = make([]ServiceAccount, yyrl4764) } - yyc4709 = true - yyrr4709 = len(yyv4709) - if yyrg4709 { - copy(yyv4709, yyv24709) + yyc4764 = true + yyrr4764 = len(yyv4764) + if yyrg4764 { + copy(yyv4764, yyv24764) } - } else if yyl4709 != len(yyv4709) { - yyv4709 = yyv4709[:yyl4709] - yyc4709 = true + } else if yyl4764 != len(yyv4764) { + yyv4764 = yyv4764[:yyl4764] + yyc4764 = true } - yyj4709 := 0 - for ; yyj4709 < yyrr4709; yyj4709++ { - yyh4709.ElemContainerState(yyj4709) + yyj4764 := 0 + for ; yyj4764 < yyrr4764; yyj4764++ { + yyh4764.ElemContainerState(yyj4764) if r.TryDecodeAsNil() { - yyv4709[yyj4709] = ServiceAccount{} + yyv4764[yyj4764] = ServiceAccount{} } else { - yyv4710 := &yyv4709[yyj4709] - yyv4710.CodecDecodeSelf(d) + yyv4765 := &yyv4764[yyj4764] + yyv4765.CodecDecodeSelf(d) } } - if yyrt4709 { - for ; yyj4709 < yyl4709; yyj4709++ { - yyv4709 = append(yyv4709, ServiceAccount{}) - yyh4709.ElemContainerState(yyj4709) + if yyrt4764 { + for ; yyj4764 < yyl4764; yyj4764++ { + yyv4764 = append(yyv4764, ServiceAccount{}) + yyh4764.ElemContainerState(yyj4764) if r.TryDecodeAsNil() { - yyv4709[yyj4709] = ServiceAccount{} + yyv4764[yyj4764] = ServiceAccount{} } else { - yyv4711 := &yyv4709[yyj4709] - yyv4711.CodecDecodeSelf(d) + yyv4766 := &yyv4764[yyj4764] + yyv4766.CodecDecodeSelf(d) } } } } else { - yyj4709 := 0 - for ; !r.CheckBreak(); yyj4709++ { + yyj4764 := 0 + for ; !r.CheckBreak(); yyj4764++ { - if yyj4709 >= len(yyv4709) { - yyv4709 = append(yyv4709, ServiceAccount{}) // var yyz4709 ServiceAccount - yyc4709 = true + if yyj4764 >= len(yyv4764) { + yyv4764 = append(yyv4764, ServiceAccount{}) // var yyz4764 ServiceAccount + yyc4764 = true } - yyh4709.ElemContainerState(yyj4709) - if yyj4709 < len(yyv4709) { + yyh4764.ElemContainerState(yyj4764) + if yyj4764 < len(yyv4764) { if r.TryDecodeAsNil() { - yyv4709[yyj4709] = ServiceAccount{} + yyv4764[yyj4764] = ServiceAccount{} } else { - yyv4712 := &yyv4709[yyj4709] - yyv4712.CodecDecodeSelf(d) + yyv4767 := &yyv4764[yyj4764] + yyv4767.CodecDecodeSelf(d) } } else { @@ -59671,17 +60324,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj4709 < len(yyv4709) { - yyv4709 = yyv4709[:yyj4709] - yyc4709 = true - } else if yyj4709 == 0 && yyv4709 == nil { - yyv4709 = []ServiceAccount{} - yyc4709 = true + if yyj4764 < len(yyv4764) { + yyv4764 = yyv4764[:yyj4764] + yyc4764 = true + } else if yyj4764 == 0 && yyv4764 == nil { + yyv4764 = []ServiceAccount{} + yyc4764 = true } } - yyh4709.End() - if yyc4709 { - *v = yyv4709 + yyh4764.End() + if yyc4764 { + *v = yyv4764 } } @@ -59690,10 +60343,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4713 := range v { + for _, yyv4768 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4714 := &yyv4713 - yy4714.CodecEncodeSelf(e) + yy4769 := &yyv4768 + yy4769.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59703,83 +60356,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4715 := *v - yyh4715, yyl4715 := z.DecSliceHelperStart() - var yyc4715 bool - if yyl4715 == 0 { - if yyv4715 == nil { - yyv4715 = []EndpointSubset{} - yyc4715 = true - } else if len(yyv4715) != 0 { - yyv4715 = yyv4715[:0] - yyc4715 = true + yyv4770 := *v + yyh4770, yyl4770 := z.DecSliceHelperStart() + var yyc4770 bool + if yyl4770 == 0 { + if yyv4770 == nil { + yyv4770 = []EndpointSubset{} + yyc4770 = true + } else if len(yyv4770) != 0 { + yyv4770 = yyv4770[:0] + yyc4770 = true } - } else if yyl4715 > 0 { - var yyrr4715, yyrl4715 int - var yyrt4715 bool - if yyl4715 > cap(yyv4715) { + } else if yyl4770 > 0 { + var yyrr4770, yyrl4770 int + var yyrt4770 bool + if yyl4770 > cap(yyv4770) { - yyrg4715 := len(yyv4715) > 0 - yyv24715 := yyv4715 - yyrl4715, yyrt4715 = z.DecInferLen(yyl4715, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4715 { - if yyrl4715 <= cap(yyv4715) { - yyv4715 = yyv4715[:yyrl4715] + yyrg4770 := len(yyv4770) > 0 + yyv24770 := yyv4770 + yyrl4770, yyrt4770 = z.DecInferLen(yyl4770, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4770 { + if yyrl4770 <= cap(yyv4770) { + yyv4770 = yyv4770[:yyrl4770] } else { - yyv4715 = make([]EndpointSubset, yyrl4715) + yyv4770 = make([]EndpointSubset, yyrl4770) } } else { - yyv4715 = make([]EndpointSubset, yyrl4715) + yyv4770 = make([]EndpointSubset, yyrl4770) } - yyc4715 = true - yyrr4715 = len(yyv4715) - if yyrg4715 { - copy(yyv4715, yyv24715) + yyc4770 = true + yyrr4770 = len(yyv4770) + if yyrg4770 { + copy(yyv4770, yyv24770) } - } else if yyl4715 != len(yyv4715) { - yyv4715 = yyv4715[:yyl4715] - yyc4715 = true + } else if yyl4770 != len(yyv4770) { + yyv4770 = yyv4770[:yyl4770] + yyc4770 = true } - yyj4715 := 0 - for ; yyj4715 < yyrr4715; yyj4715++ { - yyh4715.ElemContainerState(yyj4715) + yyj4770 := 0 + for ; yyj4770 < yyrr4770; yyj4770++ { + yyh4770.ElemContainerState(yyj4770) if r.TryDecodeAsNil() { - yyv4715[yyj4715] = EndpointSubset{} + yyv4770[yyj4770] = EndpointSubset{} } else { - yyv4716 := &yyv4715[yyj4715] - yyv4716.CodecDecodeSelf(d) + yyv4771 := &yyv4770[yyj4770] + yyv4771.CodecDecodeSelf(d) } } - if yyrt4715 { - for ; yyj4715 < yyl4715; yyj4715++ { - yyv4715 = append(yyv4715, EndpointSubset{}) - yyh4715.ElemContainerState(yyj4715) + if yyrt4770 { + for ; yyj4770 < yyl4770; yyj4770++ { + yyv4770 = append(yyv4770, EndpointSubset{}) + yyh4770.ElemContainerState(yyj4770) if r.TryDecodeAsNil() { - yyv4715[yyj4715] = EndpointSubset{} + yyv4770[yyj4770] = EndpointSubset{} } else { - yyv4717 := &yyv4715[yyj4715] - yyv4717.CodecDecodeSelf(d) + yyv4772 := &yyv4770[yyj4770] + yyv4772.CodecDecodeSelf(d) } } } } else { - yyj4715 := 0 - for ; !r.CheckBreak(); yyj4715++ { + yyj4770 := 0 + for ; !r.CheckBreak(); yyj4770++ { - if yyj4715 >= len(yyv4715) { - yyv4715 = append(yyv4715, EndpointSubset{}) // var yyz4715 EndpointSubset - yyc4715 = true + if yyj4770 >= len(yyv4770) { + yyv4770 = append(yyv4770, EndpointSubset{}) // var yyz4770 EndpointSubset + yyc4770 = true } - yyh4715.ElemContainerState(yyj4715) - if yyj4715 < len(yyv4715) { + yyh4770.ElemContainerState(yyj4770) + if yyj4770 < len(yyv4770) { if r.TryDecodeAsNil() { - yyv4715[yyj4715] = EndpointSubset{} + yyv4770[yyj4770] = EndpointSubset{} } else { - yyv4718 := &yyv4715[yyj4715] - yyv4718.CodecDecodeSelf(d) + yyv4773 := &yyv4770[yyj4770] + yyv4773.CodecDecodeSelf(d) } } else { @@ -59787,17 +60440,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj4715 < len(yyv4715) { - yyv4715 = yyv4715[:yyj4715] - yyc4715 = true - } else if yyj4715 == 0 && yyv4715 == nil { - yyv4715 = []EndpointSubset{} - yyc4715 = true + if yyj4770 < len(yyv4770) { + yyv4770 = yyv4770[:yyj4770] + yyc4770 = true + } else if yyj4770 == 0 && yyv4770 == nil { + yyv4770 = []EndpointSubset{} + yyc4770 = true } } - yyh4715.End() - if yyc4715 { - *v = yyv4715 + yyh4770.End() + if yyc4770 { + *v = yyv4770 } } @@ -59806,10 +60459,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4719 := range v { + for _, yyv4774 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4720 := &yyv4719 - yy4720.CodecEncodeSelf(e) + yy4775 := &yyv4774 + yy4775.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59819,83 +60472,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4721 := *v - yyh4721, yyl4721 := z.DecSliceHelperStart() - var yyc4721 bool - if yyl4721 == 0 { - if yyv4721 == nil { - yyv4721 = []EndpointAddress{} - yyc4721 = true - } else if len(yyv4721) != 0 { - yyv4721 = yyv4721[:0] - yyc4721 = true + yyv4776 := *v + yyh4776, yyl4776 := z.DecSliceHelperStart() + var yyc4776 bool + if yyl4776 == 0 { + if yyv4776 == nil { + yyv4776 = []EndpointAddress{} + yyc4776 = true + } else if len(yyv4776) != 0 { + yyv4776 = yyv4776[:0] + yyc4776 = true } - } else if yyl4721 > 0 { - var yyrr4721, yyrl4721 int - var yyrt4721 bool - if yyl4721 > cap(yyv4721) { + } else if yyl4776 > 0 { + var yyrr4776, yyrl4776 int + var yyrt4776 bool + if yyl4776 > cap(yyv4776) { - yyrg4721 := len(yyv4721) > 0 - yyv24721 := yyv4721 - yyrl4721, yyrt4721 = z.DecInferLen(yyl4721, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4721 { - if yyrl4721 <= cap(yyv4721) { - yyv4721 = yyv4721[:yyrl4721] + yyrg4776 := len(yyv4776) > 0 + yyv24776 := yyv4776 + yyrl4776, yyrt4776 = z.DecInferLen(yyl4776, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4776 { + if yyrl4776 <= cap(yyv4776) { + yyv4776 = yyv4776[:yyrl4776] } else { - yyv4721 = make([]EndpointAddress, yyrl4721) + yyv4776 = make([]EndpointAddress, yyrl4776) } } else { - yyv4721 = make([]EndpointAddress, yyrl4721) + yyv4776 = make([]EndpointAddress, yyrl4776) } - yyc4721 = true - yyrr4721 = len(yyv4721) - if yyrg4721 { - copy(yyv4721, yyv24721) + yyc4776 = true + yyrr4776 = len(yyv4776) + if yyrg4776 { + copy(yyv4776, yyv24776) } - } else if yyl4721 != len(yyv4721) { - yyv4721 = yyv4721[:yyl4721] - yyc4721 = true + } else if yyl4776 != len(yyv4776) { + yyv4776 = yyv4776[:yyl4776] + yyc4776 = true } - yyj4721 := 0 - for ; yyj4721 < yyrr4721; yyj4721++ { - yyh4721.ElemContainerState(yyj4721) + yyj4776 := 0 + for ; yyj4776 < yyrr4776; yyj4776++ { + yyh4776.ElemContainerState(yyj4776) if r.TryDecodeAsNil() { - yyv4721[yyj4721] = EndpointAddress{} + yyv4776[yyj4776] = EndpointAddress{} } else { - yyv4722 := &yyv4721[yyj4721] - yyv4722.CodecDecodeSelf(d) + yyv4777 := &yyv4776[yyj4776] + yyv4777.CodecDecodeSelf(d) } } - if yyrt4721 { - for ; yyj4721 < yyl4721; yyj4721++ { - yyv4721 = append(yyv4721, EndpointAddress{}) - yyh4721.ElemContainerState(yyj4721) + if yyrt4776 { + for ; yyj4776 < yyl4776; yyj4776++ { + yyv4776 = append(yyv4776, EndpointAddress{}) + yyh4776.ElemContainerState(yyj4776) if r.TryDecodeAsNil() { - yyv4721[yyj4721] = EndpointAddress{} + yyv4776[yyj4776] = EndpointAddress{} } else { - yyv4723 := &yyv4721[yyj4721] - yyv4723.CodecDecodeSelf(d) + yyv4778 := &yyv4776[yyj4776] + yyv4778.CodecDecodeSelf(d) } } } } else { - yyj4721 := 0 - for ; !r.CheckBreak(); yyj4721++ { + yyj4776 := 0 + for ; !r.CheckBreak(); yyj4776++ { - if yyj4721 >= len(yyv4721) { - yyv4721 = append(yyv4721, EndpointAddress{}) // var yyz4721 EndpointAddress - yyc4721 = true + if yyj4776 >= len(yyv4776) { + yyv4776 = append(yyv4776, EndpointAddress{}) // var yyz4776 EndpointAddress + yyc4776 = true } - yyh4721.ElemContainerState(yyj4721) - if yyj4721 < len(yyv4721) { + yyh4776.ElemContainerState(yyj4776) + if yyj4776 < len(yyv4776) { if r.TryDecodeAsNil() { - yyv4721[yyj4721] = EndpointAddress{} + yyv4776[yyj4776] = EndpointAddress{} } else { - yyv4724 := &yyv4721[yyj4721] - yyv4724.CodecDecodeSelf(d) + yyv4779 := &yyv4776[yyj4776] + yyv4779.CodecDecodeSelf(d) } } else { @@ -59903,17 +60556,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj4721 < len(yyv4721) { - yyv4721 = yyv4721[:yyj4721] - yyc4721 = true - } else if yyj4721 == 0 && yyv4721 == nil { - yyv4721 = []EndpointAddress{} - yyc4721 = true + if yyj4776 < len(yyv4776) { + yyv4776 = yyv4776[:yyj4776] + yyc4776 = true + } else if yyj4776 == 0 && yyv4776 == nil { + yyv4776 = []EndpointAddress{} + yyc4776 = true } } - yyh4721.End() - if yyc4721 { - *v = yyv4721 + yyh4776.End() + if yyc4776 { + *v = yyv4776 } } @@ -59922,10 +60575,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4725 := range v { + for _, yyv4780 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4726 := &yyv4725 - yy4726.CodecEncodeSelf(e) + yy4781 := &yyv4780 + yy4781.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59935,83 +60588,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4727 := *v - yyh4727, yyl4727 := z.DecSliceHelperStart() - var yyc4727 bool - if yyl4727 == 0 { - if yyv4727 == nil { - yyv4727 = []EndpointPort{} - yyc4727 = true - } else if len(yyv4727) != 0 { - yyv4727 = yyv4727[:0] - yyc4727 = true + yyv4782 := *v + yyh4782, yyl4782 := z.DecSliceHelperStart() + var yyc4782 bool + if yyl4782 == 0 { + if yyv4782 == nil { + yyv4782 = []EndpointPort{} + yyc4782 = true + } else if len(yyv4782) != 0 { + yyv4782 = yyv4782[:0] + yyc4782 = true } - } else if yyl4727 > 0 { - var yyrr4727, yyrl4727 int - var yyrt4727 bool - if yyl4727 > cap(yyv4727) { + } else if yyl4782 > 0 { + var yyrr4782, yyrl4782 int + var yyrt4782 bool + if yyl4782 > cap(yyv4782) { - yyrg4727 := len(yyv4727) > 0 - yyv24727 := yyv4727 - yyrl4727, yyrt4727 = z.DecInferLen(yyl4727, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4727 { - if yyrl4727 <= cap(yyv4727) { - yyv4727 = yyv4727[:yyrl4727] + yyrg4782 := len(yyv4782) > 0 + yyv24782 := yyv4782 + yyrl4782, yyrt4782 = z.DecInferLen(yyl4782, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4782 { + if yyrl4782 <= cap(yyv4782) { + yyv4782 = yyv4782[:yyrl4782] } else { - yyv4727 = make([]EndpointPort, yyrl4727) + yyv4782 = make([]EndpointPort, yyrl4782) } } else { - yyv4727 = make([]EndpointPort, yyrl4727) + yyv4782 = make([]EndpointPort, yyrl4782) } - yyc4727 = true - yyrr4727 = len(yyv4727) - if yyrg4727 { - copy(yyv4727, yyv24727) + yyc4782 = true + yyrr4782 = len(yyv4782) + if yyrg4782 { + copy(yyv4782, yyv24782) } - } else if yyl4727 != len(yyv4727) { - yyv4727 = yyv4727[:yyl4727] - yyc4727 = true + } else if yyl4782 != len(yyv4782) { + yyv4782 = yyv4782[:yyl4782] + yyc4782 = true } - yyj4727 := 0 - for ; yyj4727 < yyrr4727; yyj4727++ { - yyh4727.ElemContainerState(yyj4727) + yyj4782 := 0 + for ; yyj4782 < yyrr4782; yyj4782++ { + yyh4782.ElemContainerState(yyj4782) if r.TryDecodeAsNil() { - yyv4727[yyj4727] = EndpointPort{} + yyv4782[yyj4782] = EndpointPort{} } else { - yyv4728 := &yyv4727[yyj4727] - yyv4728.CodecDecodeSelf(d) + yyv4783 := &yyv4782[yyj4782] + yyv4783.CodecDecodeSelf(d) } } - if yyrt4727 { - for ; yyj4727 < yyl4727; yyj4727++ { - yyv4727 = append(yyv4727, EndpointPort{}) - yyh4727.ElemContainerState(yyj4727) + if yyrt4782 { + for ; yyj4782 < yyl4782; yyj4782++ { + yyv4782 = append(yyv4782, EndpointPort{}) + yyh4782.ElemContainerState(yyj4782) if r.TryDecodeAsNil() { - yyv4727[yyj4727] = EndpointPort{} + yyv4782[yyj4782] = EndpointPort{} } else { - yyv4729 := &yyv4727[yyj4727] - yyv4729.CodecDecodeSelf(d) + yyv4784 := &yyv4782[yyj4782] + yyv4784.CodecDecodeSelf(d) } } } } else { - yyj4727 := 0 - for ; !r.CheckBreak(); yyj4727++ { + yyj4782 := 0 + for ; !r.CheckBreak(); yyj4782++ { - if yyj4727 >= len(yyv4727) { - yyv4727 = append(yyv4727, EndpointPort{}) // var yyz4727 EndpointPort - yyc4727 = true + if yyj4782 >= len(yyv4782) { + yyv4782 = append(yyv4782, EndpointPort{}) // var yyz4782 EndpointPort + yyc4782 = true } - yyh4727.ElemContainerState(yyj4727) - if yyj4727 < len(yyv4727) { + yyh4782.ElemContainerState(yyj4782) + if yyj4782 < len(yyv4782) { if r.TryDecodeAsNil() { - yyv4727[yyj4727] = EndpointPort{} + yyv4782[yyj4782] = EndpointPort{} } else { - yyv4730 := &yyv4727[yyj4727] - yyv4730.CodecDecodeSelf(d) + yyv4785 := &yyv4782[yyj4782] + yyv4785.CodecDecodeSelf(d) } } else { @@ -60019,17 +60672,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj4727 < len(yyv4727) { - yyv4727 = yyv4727[:yyj4727] - yyc4727 = true - } else if yyj4727 == 0 && yyv4727 == nil { - yyv4727 = []EndpointPort{} - yyc4727 = true + if yyj4782 < len(yyv4782) { + yyv4782 = yyv4782[:yyj4782] + yyc4782 = true + } else if yyj4782 == 0 && yyv4782 == nil { + yyv4782 = []EndpointPort{} + yyc4782 = true } } - yyh4727.End() - if yyc4727 { - *v = yyv4727 + yyh4782.End() + if yyc4782 { + *v = yyv4782 } } @@ -60038,10 +60691,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4731 := range v { + for _, yyv4786 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4732 := &yyv4731 - yy4732.CodecEncodeSelf(e) + yy4787 := &yyv4786 + yy4787.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60051,83 +60704,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4733 := *v - yyh4733, yyl4733 := z.DecSliceHelperStart() - var yyc4733 bool - if yyl4733 == 0 { - if yyv4733 == nil { - yyv4733 = []Endpoints{} - yyc4733 = true - } else if len(yyv4733) != 0 { - yyv4733 = yyv4733[:0] - yyc4733 = true + yyv4788 := *v + yyh4788, yyl4788 := z.DecSliceHelperStart() + var yyc4788 bool + if yyl4788 == 0 { + if yyv4788 == nil { + yyv4788 = []Endpoints{} + yyc4788 = true + } else if len(yyv4788) != 0 { + yyv4788 = yyv4788[:0] + yyc4788 = true } - } else if yyl4733 > 0 { - var yyrr4733, yyrl4733 int - var yyrt4733 bool - if yyl4733 > cap(yyv4733) { + } else if yyl4788 > 0 { + var yyrr4788, yyrl4788 int + var yyrt4788 bool + if yyl4788 > cap(yyv4788) { - yyrg4733 := len(yyv4733) > 0 - yyv24733 := yyv4733 - yyrl4733, yyrt4733 = z.DecInferLen(yyl4733, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4733 { - if yyrl4733 <= cap(yyv4733) { - yyv4733 = yyv4733[:yyrl4733] + yyrg4788 := len(yyv4788) > 0 + yyv24788 := yyv4788 + yyrl4788, yyrt4788 = z.DecInferLen(yyl4788, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4788 { + if yyrl4788 <= cap(yyv4788) { + yyv4788 = yyv4788[:yyrl4788] } else { - yyv4733 = make([]Endpoints, yyrl4733) + yyv4788 = make([]Endpoints, yyrl4788) } } else { - yyv4733 = make([]Endpoints, yyrl4733) + yyv4788 = make([]Endpoints, yyrl4788) } - yyc4733 = true - yyrr4733 = len(yyv4733) - if yyrg4733 { - copy(yyv4733, yyv24733) + yyc4788 = true + yyrr4788 = len(yyv4788) + if yyrg4788 { + copy(yyv4788, yyv24788) } - } else if yyl4733 != len(yyv4733) { - yyv4733 = yyv4733[:yyl4733] - yyc4733 = true + } else if yyl4788 != len(yyv4788) { + yyv4788 = yyv4788[:yyl4788] + yyc4788 = true } - yyj4733 := 0 - for ; yyj4733 < yyrr4733; yyj4733++ { - yyh4733.ElemContainerState(yyj4733) + yyj4788 := 0 + for ; yyj4788 < yyrr4788; yyj4788++ { + yyh4788.ElemContainerState(yyj4788) if r.TryDecodeAsNil() { - yyv4733[yyj4733] = Endpoints{} + yyv4788[yyj4788] = Endpoints{} } else { - yyv4734 := &yyv4733[yyj4733] - yyv4734.CodecDecodeSelf(d) + yyv4789 := &yyv4788[yyj4788] + yyv4789.CodecDecodeSelf(d) } } - if yyrt4733 { - for ; yyj4733 < yyl4733; yyj4733++ { - yyv4733 = append(yyv4733, Endpoints{}) - yyh4733.ElemContainerState(yyj4733) + if yyrt4788 { + for ; yyj4788 < yyl4788; yyj4788++ { + yyv4788 = append(yyv4788, Endpoints{}) + yyh4788.ElemContainerState(yyj4788) if r.TryDecodeAsNil() { - yyv4733[yyj4733] = Endpoints{} + yyv4788[yyj4788] = Endpoints{} } else { - yyv4735 := &yyv4733[yyj4733] - yyv4735.CodecDecodeSelf(d) + yyv4790 := &yyv4788[yyj4788] + yyv4790.CodecDecodeSelf(d) } } } } else { - yyj4733 := 0 - for ; !r.CheckBreak(); yyj4733++ { + yyj4788 := 0 + for ; !r.CheckBreak(); yyj4788++ { - if yyj4733 >= len(yyv4733) { - yyv4733 = append(yyv4733, Endpoints{}) // var yyz4733 Endpoints - yyc4733 = true + if yyj4788 >= len(yyv4788) { + yyv4788 = append(yyv4788, Endpoints{}) // var yyz4788 Endpoints + yyc4788 = true } - yyh4733.ElemContainerState(yyj4733) - if yyj4733 < len(yyv4733) { + yyh4788.ElemContainerState(yyj4788) + if yyj4788 < len(yyv4788) { if r.TryDecodeAsNil() { - yyv4733[yyj4733] = Endpoints{} + yyv4788[yyj4788] = Endpoints{} } else { - yyv4736 := &yyv4733[yyj4733] - yyv4736.CodecDecodeSelf(d) + yyv4791 := &yyv4788[yyj4788] + yyv4791.CodecDecodeSelf(d) } } else { @@ -60135,17 +60788,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj4733 < len(yyv4733) { - yyv4733 = yyv4733[:yyj4733] - yyc4733 = true - } else if yyj4733 == 0 && yyv4733 == nil { - yyv4733 = []Endpoints{} - yyc4733 = true + if yyj4788 < len(yyv4788) { + yyv4788 = yyv4788[:yyj4788] + yyc4788 = true + } else if yyj4788 == 0 && yyv4788 == nil { + yyv4788 = []Endpoints{} + yyc4788 = true } } - yyh4733.End() - if yyc4733 { - *v = yyv4733 + yyh4788.End() + if yyc4788 { + *v = yyv4788 } } @@ -60154,10 +60807,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4737 := range v { + for _, yyv4792 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4738 := &yyv4737 - yy4738.CodecEncodeSelf(e) + yy4793 := &yyv4792 + yy4793.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60167,83 +60820,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4739 := *v - yyh4739, yyl4739 := z.DecSliceHelperStart() - var yyc4739 bool - if yyl4739 == 0 { - if yyv4739 == nil { - yyv4739 = []NodeCondition{} - yyc4739 = true - } else if len(yyv4739) != 0 { - yyv4739 = yyv4739[:0] - yyc4739 = true + yyv4794 := *v + yyh4794, yyl4794 := z.DecSliceHelperStart() + var yyc4794 bool + if yyl4794 == 0 { + if yyv4794 == nil { + yyv4794 = []NodeCondition{} + yyc4794 = true + } else if len(yyv4794) != 0 { + yyv4794 = yyv4794[:0] + yyc4794 = true } - } else if yyl4739 > 0 { - var yyrr4739, yyrl4739 int - var yyrt4739 bool - if yyl4739 > cap(yyv4739) { + } else if yyl4794 > 0 { + var yyrr4794, yyrl4794 int + var yyrt4794 bool + if yyl4794 > cap(yyv4794) { - yyrg4739 := len(yyv4739) > 0 - yyv24739 := yyv4739 - yyrl4739, yyrt4739 = z.DecInferLen(yyl4739, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4739 { - if yyrl4739 <= cap(yyv4739) { - yyv4739 = yyv4739[:yyrl4739] + yyrg4794 := len(yyv4794) > 0 + yyv24794 := yyv4794 + yyrl4794, yyrt4794 = z.DecInferLen(yyl4794, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4794 { + if yyrl4794 <= cap(yyv4794) { + yyv4794 = yyv4794[:yyrl4794] } else { - yyv4739 = make([]NodeCondition, yyrl4739) + yyv4794 = make([]NodeCondition, yyrl4794) } } else { - yyv4739 = make([]NodeCondition, yyrl4739) + yyv4794 = make([]NodeCondition, yyrl4794) } - yyc4739 = true - yyrr4739 = len(yyv4739) - if yyrg4739 { - copy(yyv4739, yyv24739) + yyc4794 = true + yyrr4794 = len(yyv4794) + if yyrg4794 { + copy(yyv4794, yyv24794) } - } else if yyl4739 != len(yyv4739) { - yyv4739 = yyv4739[:yyl4739] - yyc4739 = true + } else if yyl4794 != len(yyv4794) { + yyv4794 = yyv4794[:yyl4794] + yyc4794 = true } - yyj4739 := 0 - for ; yyj4739 < yyrr4739; yyj4739++ { - yyh4739.ElemContainerState(yyj4739) + yyj4794 := 0 + for ; yyj4794 < yyrr4794; yyj4794++ { + yyh4794.ElemContainerState(yyj4794) if r.TryDecodeAsNil() { - yyv4739[yyj4739] = NodeCondition{} + yyv4794[yyj4794] = NodeCondition{} } else { - yyv4740 := &yyv4739[yyj4739] - yyv4740.CodecDecodeSelf(d) + yyv4795 := &yyv4794[yyj4794] + yyv4795.CodecDecodeSelf(d) } } - if yyrt4739 { - for ; yyj4739 < yyl4739; yyj4739++ { - yyv4739 = append(yyv4739, NodeCondition{}) - yyh4739.ElemContainerState(yyj4739) + if yyrt4794 { + for ; yyj4794 < yyl4794; yyj4794++ { + yyv4794 = append(yyv4794, NodeCondition{}) + yyh4794.ElemContainerState(yyj4794) if r.TryDecodeAsNil() { - yyv4739[yyj4739] = NodeCondition{} + yyv4794[yyj4794] = NodeCondition{} } else { - yyv4741 := &yyv4739[yyj4739] - yyv4741.CodecDecodeSelf(d) + yyv4796 := &yyv4794[yyj4794] + yyv4796.CodecDecodeSelf(d) } } } } else { - yyj4739 := 0 - for ; !r.CheckBreak(); yyj4739++ { + yyj4794 := 0 + for ; !r.CheckBreak(); yyj4794++ { - if yyj4739 >= len(yyv4739) { - yyv4739 = append(yyv4739, NodeCondition{}) // var yyz4739 NodeCondition - yyc4739 = true + if yyj4794 >= len(yyv4794) { + yyv4794 = append(yyv4794, NodeCondition{}) // var yyz4794 NodeCondition + yyc4794 = true } - yyh4739.ElemContainerState(yyj4739) - if yyj4739 < len(yyv4739) { + yyh4794.ElemContainerState(yyj4794) + if yyj4794 < len(yyv4794) { if r.TryDecodeAsNil() { - yyv4739[yyj4739] = NodeCondition{} + yyv4794[yyj4794] = NodeCondition{} } else { - yyv4742 := &yyv4739[yyj4739] - yyv4742.CodecDecodeSelf(d) + yyv4797 := &yyv4794[yyj4794] + yyv4797.CodecDecodeSelf(d) } } else { @@ -60251,17 +60904,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj4739 < len(yyv4739) { - yyv4739 = yyv4739[:yyj4739] - yyc4739 = true - } else if yyj4739 == 0 && yyv4739 == nil { - yyv4739 = []NodeCondition{} - yyc4739 = true + if yyj4794 < len(yyv4794) { + yyv4794 = yyv4794[:yyj4794] + yyc4794 = true + } else if yyj4794 == 0 && yyv4794 == nil { + yyv4794 = []NodeCondition{} + yyc4794 = true } } - yyh4739.End() - if yyc4739 { - *v = yyv4739 + yyh4794.End() + if yyc4794 { + *v = yyv4794 } } @@ -60270,10 +60923,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4743 := range v { + for _, yyv4798 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4744 := &yyv4743 - yy4744.CodecEncodeSelf(e) + yy4799 := &yyv4798 + yy4799.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60283,83 +60936,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4745 := *v - yyh4745, yyl4745 := z.DecSliceHelperStart() - var yyc4745 bool - if yyl4745 == 0 { - if yyv4745 == nil { - yyv4745 = []NodeAddress{} - yyc4745 = true - } else if len(yyv4745) != 0 { - yyv4745 = yyv4745[:0] - yyc4745 = true + yyv4800 := *v + yyh4800, yyl4800 := z.DecSliceHelperStart() + var yyc4800 bool + if yyl4800 == 0 { + if yyv4800 == nil { + yyv4800 = []NodeAddress{} + yyc4800 = true + } else if len(yyv4800) != 0 { + yyv4800 = yyv4800[:0] + yyc4800 = true } - } else if yyl4745 > 0 { - var yyrr4745, yyrl4745 int - var yyrt4745 bool - if yyl4745 > cap(yyv4745) { + } else if yyl4800 > 0 { + var yyrr4800, yyrl4800 int + var yyrt4800 bool + if yyl4800 > cap(yyv4800) { - yyrg4745 := len(yyv4745) > 0 - yyv24745 := yyv4745 - yyrl4745, yyrt4745 = z.DecInferLen(yyl4745, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4745 { - if yyrl4745 <= cap(yyv4745) { - yyv4745 = yyv4745[:yyrl4745] + yyrg4800 := len(yyv4800) > 0 + yyv24800 := yyv4800 + yyrl4800, yyrt4800 = z.DecInferLen(yyl4800, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4800 { + if yyrl4800 <= cap(yyv4800) { + yyv4800 = yyv4800[:yyrl4800] } else { - yyv4745 = make([]NodeAddress, yyrl4745) + yyv4800 = make([]NodeAddress, yyrl4800) } } else { - yyv4745 = make([]NodeAddress, yyrl4745) + yyv4800 = make([]NodeAddress, yyrl4800) } - yyc4745 = true - yyrr4745 = len(yyv4745) - if yyrg4745 { - copy(yyv4745, yyv24745) + yyc4800 = true + yyrr4800 = len(yyv4800) + if yyrg4800 { + copy(yyv4800, yyv24800) } - } else if yyl4745 != len(yyv4745) { - yyv4745 = yyv4745[:yyl4745] - yyc4745 = true + } else if yyl4800 != len(yyv4800) { + yyv4800 = yyv4800[:yyl4800] + yyc4800 = true } - yyj4745 := 0 - for ; yyj4745 < yyrr4745; yyj4745++ { - yyh4745.ElemContainerState(yyj4745) + yyj4800 := 0 + for ; yyj4800 < yyrr4800; yyj4800++ { + yyh4800.ElemContainerState(yyj4800) if r.TryDecodeAsNil() { - yyv4745[yyj4745] = NodeAddress{} + yyv4800[yyj4800] = NodeAddress{} } else { - yyv4746 := &yyv4745[yyj4745] - yyv4746.CodecDecodeSelf(d) + yyv4801 := &yyv4800[yyj4800] + yyv4801.CodecDecodeSelf(d) } } - if yyrt4745 { - for ; yyj4745 < yyl4745; yyj4745++ { - yyv4745 = append(yyv4745, NodeAddress{}) - yyh4745.ElemContainerState(yyj4745) + if yyrt4800 { + for ; yyj4800 < yyl4800; yyj4800++ { + yyv4800 = append(yyv4800, NodeAddress{}) + yyh4800.ElemContainerState(yyj4800) if r.TryDecodeAsNil() { - yyv4745[yyj4745] = NodeAddress{} + yyv4800[yyj4800] = NodeAddress{} } else { - yyv4747 := &yyv4745[yyj4745] - yyv4747.CodecDecodeSelf(d) + yyv4802 := &yyv4800[yyj4800] + yyv4802.CodecDecodeSelf(d) } } } } else { - yyj4745 := 0 - for ; !r.CheckBreak(); yyj4745++ { + yyj4800 := 0 + for ; !r.CheckBreak(); yyj4800++ { - if yyj4745 >= len(yyv4745) { - yyv4745 = append(yyv4745, NodeAddress{}) // var yyz4745 NodeAddress - yyc4745 = true + if yyj4800 >= len(yyv4800) { + yyv4800 = append(yyv4800, NodeAddress{}) // var yyz4800 NodeAddress + yyc4800 = true } - yyh4745.ElemContainerState(yyj4745) - if yyj4745 < len(yyv4745) { + yyh4800.ElemContainerState(yyj4800) + if yyj4800 < len(yyv4800) { if r.TryDecodeAsNil() { - yyv4745[yyj4745] = NodeAddress{} + yyv4800[yyj4800] = NodeAddress{} } else { - yyv4748 := &yyv4745[yyj4745] - yyv4748.CodecDecodeSelf(d) + yyv4803 := &yyv4800[yyj4800] + yyv4803.CodecDecodeSelf(d) } } else { @@ -60367,17 +61020,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj4745 < len(yyv4745) { - yyv4745 = yyv4745[:yyj4745] - yyc4745 = true - } else if yyj4745 == 0 && yyv4745 == nil { - yyv4745 = []NodeAddress{} - yyc4745 = true + if yyj4800 < len(yyv4800) { + yyv4800 = yyv4800[:yyj4800] + yyc4800 = true + } else if yyj4800 == 0 && yyv4800 == nil { + yyv4800 = []NodeAddress{} + yyc4800 = true } } - yyh4745.End() - if yyc4745 { - *v = yyv4745 + yyh4800.End() + if yyc4800 { + *v = yyv4800 } } @@ -60386,10 +61039,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4749 := range v { + for _, yyv4804 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4750 := &yyv4749 - yy4750.CodecEncodeSelf(e) + yy4805 := &yyv4804 + yy4805.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60399,83 +61052,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4751 := *v - yyh4751, yyl4751 := z.DecSliceHelperStart() - var yyc4751 bool - if yyl4751 == 0 { - if yyv4751 == nil { - yyv4751 = []ContainerImage{} - yyc4751 = true - } else if len(yyv4751) != 0 { - yyv4751 = yyv4751[:0] - yyc4751 = true + yyv4806 := *v + yyh4806, yyl4806 := z.DecSliceHelperStart() + var yyc4806 bool + if yyl4806 == 0 { + if yyv4806 == nil { + yyv4806 = []ContainerImage{} + yyc4806 = true + } else if len(yyv4806) != 0 { + yyv4806 = yyv4806[:0] + yyc4806 = true } - } else if yyl4751 > 0 { - var yyrr4751, yyrl4751 int - var yyrt4751 bool - if yyl4751 > cap(yyv4751) { + } else if yyl4806 > 0 { + var yyrr4806, yyrl4806 int + var yyrt4806 bool + if yyl4806 > cap(yyv4806) { - yyrg4751 := len(yyv4751) > 0 - yyv24751 := yyv4751 - yyrl4751, yyrt4751 = z.DecInferLen(yyl4751, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4751 { - if yyrl4751 <= cap(yyv4751) { - yyv4751 = yyv4751[:yyrl4751] + yyrg4806 := len(yyv4806) > 0 + yyv24806 := yyv4806 + yyrl4806, yyrt4806 = z.DecInferLen(yyl4806, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4806 { + if yyrl4806 <= cap(yyv4806) { + yyv4806 = yyv4806[:yyrl4806] } else { - yyv4751 = make([]ContainerImage, yyrl4751) + yyv4806 = make([]ContainerImage, yyrl4806) } } else { - yyv4751 = make([]ContainerImage, yyrl4751) + yyv4806 = make([]ContainerImage, yyrl4806) } - yyc4751 = true - yyrr4751 = len(yyv4751) - if yyrg4751 { - copy(yyv4751, yyv24751) + yyc4806 = true + yyrr4806 = len(yyv4806) + if yyrg4806 { + copy(yyv4806, yyv24806) } - } else if yyl4751 != len(yyv4751) { - yyv4751 = yyv4751[:yyl4751] - yyc4751 = true + } else if yyl4806 != len(yyv4806) { + yyv4806 = yyv4806[:yyl4806] + yyc4806 = true } - yyj4751 := 0 - for ; yyj4751 < yyrr4751; yyj4751++ { - yyh4751.ElemContainerState(yyj4751) + yyj4806 := 0 + for ; yyj4806 < yyrr4806; yyj4806++ { + yyh4806.ElemContainerState(yyj4806) if r.TryDecodeAsNil() { - yyv4751[yyj4751] = ContainerImage{} + yyv4806[yyj4806] = ContainerImage{} } else { - yyv4752 := &yyv4751[yyj4751] - yyv4752.CodecDecodeSelf(d) + yyv4807 := &yyv4806[yyj4806] + yyv4807.CodecDecodeSelf(d) } } - if yyrt4751 { - for ; yyj4751 < yyl4751; yyj4751++ { - yyv4751 = append(yyv4751, ContainerImage{}) - yyh4751.ElemContainerState(yyj4751) + if yyrt4806 { + for ; yyj4806 < yyl4806; yyj4806++ { + yyv4806 = append(yyv4806, ContainerImage{}) + yyh4806.ElemContainerState(yyj4806) if r.TryDecodeAsNil() { - yyv4751[yyj4751] = ContainerImage{} + yyv4806[yyj4806] = ContainerImage{} } else { - yyv4753 := &yyv4751[yyj4751] - yyv4753.CodecDecodeSelf(d) + yyv4808 := &yyv4806[yyj4806] + yyv4808.CodecDecodeSelf(d) } } } } else { - yyj4751 := 0 - for ; !r.CheckBreak(); yyj4751++ { + yyj4806 := 0 + for ; !r.CheckBreak(); yyj4806++ { - if yyj4751 >= len(yyv4751) { - yyv4751 = append(yyv4751, ContainerImage{}) // var yyz4751 ContainerImage - yyc4751 = true + if yyj4806 >= len(yyv4806) { + yyv4806 = append(yyv4806, ContainerImage{}) // var yyz4806 ContainerImage + yyc4806 = true } - yyh4751.ElemContainerState(yyj4751) - if yyj4751 < len(yyv4751) { + yyh4806.ElemContainerState(yyj4806) + if yyj4806 < len(yyv4806) { if r.TryDecodeAsNil() { - yyv4751[yyj4751] = ContainerImage{} + yyv4806[yyj4806] = ContainerImage{} } else { - yyv4754 := &yyv4751[yyj4751] - yyv4754.CodecDecodeSelf(d) + yyv4809 := &yyv4806[yyj4806] + yyv4809.CodecDecodeSelf(d) } } else { @@ -60483,17 +61136,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj4751 < len(yyv4751) { - yyv4751 = yyv4751[:yyj4751] - yyc4751 = true - } else if yyj4751 == 0 && yyv4751 == nil { - yyv4751 = []ContainerImage{} - yyc4751 = true + if yyj4806 < len(yyv4806) { + yyv4806 = yyv4806[:yyj4806] + yyc4806 = true + } else if yyj4806 == 0 && yyv4806 == nil { + yyv4806 = []ContainerImage{} + yyc4806 = true } } - yyh4751.End() - if yyc4751 { - *v = yyv4751 + yyh4806.End() + if yyc4806 { + *v = yyv4806 } } @@ -60502,9 +61155,9 @@ func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4755 := range v { + for _, yyv4810 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4755.CodecEncodeSelf(e) + yyv4810.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60514,75 +61167,75 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4756 := *v - yyh4756, yyl4756 := z.DecSliceHelperStart() - var yyc4756 bool - if yyl4756 == 0 { - if yyv4756 == nil { - yyv4756 = []UniqueVolumeName{} - yyc4756 = true - } else if len(yyv4756) != 0 { - yyv4756 = yyv4756[:0] - yyc4756 = true + yyv4811 := *v + yyh4811, yyl4811 := z.DecSliceHelperStart() + var yyc4811 bool + if yyl4811 == 0 { + if yyv4811 == nil { + yyv4811 = []UniqueVolumeName{} + yyc4811 = true + } else if len(yyv4811) != 0 { + yyv4811 = yyv4811[:0] + yyc4811 = true } - } else if yyl4756 > 0 { - var yyrr4756, yyrl4756 int - var yyrt4756 bool - if yyl4756 > cap(yyv4756) { + } else if yyl4811 > 0 { + var yyrr4811, yyrl4811 int + var yyrt4811 bool + if yyl4811 > cap(yyv4811) { - yyrl4756, yyrt4756 = z.DecInferLen(yyl4756, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4756 { - if yyrl4756 <= cap(yyv4756) { - yyv4756 = yyv4756[:yyrl4756] + yyrl4811, yyrt4811 = z.DecInferLen(yyl4811, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4811 { + if yyrl4811 <= cap(yyv4811) { + yyv4811 = yyv4811[:yyrl4811] } else { - yyv4756 = make([]UniqueVolumeName, yyrl4756) + yyv4811 = make([]UniqueVolumeName, yyrl4811) } } else { - yyv4756 = make([]UniqueVolumeName, yyrl4756) + yyv4811 = make([]UniqueVolumeName, yyrl4811) } - yyc4756 = true - yyrr4756 = len(yyv4756) - } else if yyl4756 != len(yyv4756) { - yyv4756 = yyv4756[:yyl4756] - yyc4756 = true + yyc4811 = true + yyrr4811 = len(yyv4811) + } else if yyl4811 != len(yyv4811) { + yyv4811 = yyv4811[:yyl4811] + yyc4811 = true } - yyj4756 := 0 - for ; yyj4756 < yyrr4756; yyj4756++ { - yyh4756.ElemContainerState(yyj4756) + yyj4811 := 0 + for ; yyj4811 < yyrr4811; yyj4811++ { + yyh4811.ElemContainerState(yyj4811) if r.TryDecodeAsNil() { - yyv4756[yyj4756] = "" + yyv4811[yyj4811] = "" } else { - yyv4756[yyj4756] = UniqueVolumeName(r.DecodeString()) + yyv4811[yyj4811] = UniqueVolumeName(r.DecodeString()) } } - if yyrt4756 { - for ; yyj4756 < yyl4756; yyj4756++ { - yyv4756 = append(yyv4756, "") - yyh4756.ElemContainerState(yyj4756) + if yyrt4811 { + for ; yyj4811 < yyl4811; yyj4811++ { + yyv4811 = append(yyv4811, "") + yyh4811.ElemContainerState(yyj4811) if r.TryDecodeAsNil() { - yyv4756[yyj4756] = "" + yyv4811[yyj4811] = "" } else { - yyv4756[yyj4756] = UniqueVolumeName(r.DecodeString()) + yyv4811[yyj4811] = UniqueVolumeName(r.DecodeString()) } } } } else { - yyj4756 := 0 - for ; !r.CheckBreak(); yyj4756++ { + yyj4811 := 0 + for ; !r.CheckBreak(); yyj4811++ { - if yyj4756 >= len(yyv4756) { - yyv4756 = append(yyv4756, "") // var yyz4756 UniqueVolumeName - yyc4756 = true + if yyj4811 >= len(yyv4811) { + yyv4811 = append(yyv4811, "") // var yyz4811 UniqueVolumeName + yyc4811 = true } - yyh4756.ElemContainerState(yyj4756) - if yyj4756 < len(yyv4756) { + yyh4811.ElemContainerState(yyj4811) + if yyj4811 < len(yyv4811) { if r.TryDecodeAsNil() { - yyv4756[yyj4756] = "" + yyv4811[yyj4811] = "" } else { - yyv4756[yyj4756] = UniqueVolumeName(r.DecodeString()) + yyv4811[yyj4811] = UniqueVolumeName(r.DecodeString()) } } else { @@ -60590,17 +61243,17 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code } } - if yyj4756 < len(yyv4756) { - yyv4756 = yyv4756[:yyj4756] - yyc4756 = true - } else if yyj4756 == 0 && yyv4756 == nil { - yyv4756 = []UniqueVolumeName{} - yyc4756 = true + if yyj4811 < len(yyv4811) { + yyv4811 = yyv4811[:yyj4811] + yyc4811 = true + } else if yyj4811 == 0 && yyv4811 == nil { + yyv4811 = []UniqueVolumeName{} + yyc4811 = true } } - yyh4756.End() - if yyc4756 { - *v = yyv4756 + yyh4811.End() + if yyc4811 { + *v = yyv4811 } } @@ -60609,10 +61262,10 @@ func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4760 := range v { + for _, yyv4815 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4761 := &yyv4760 - yy4761.CodecEncodeSelf(e) + yy4816 := &yyv4815 + yy4816.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60622,83 +61275,83 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4762 := *v - yyh4762, yyl4762 := z.DecSliceHelperStart() - var yyc4762 bool - if yyl4762 == 0 { - if yyv4762 == nil { - yyv4762 = []AttachedVolume{} - yyc4762 = true - } else if len(yyv4762) != 0 { - yyv4762 = yyv4762[:0] - yyc4762 = true + yyv4817 := *v + yyh4817, yyl4817 := z.DecSliceHelperStart() + var yyc4817 bool + if yyl4817 == 0 { + if yyv4817 == nil { + yyv4817 = []AttachedVolume{} + yyc4817 = true + } else if len(yyv4817) != 0 { + yyv4817 = yyv4817[:0] + yyc4817 = true } - } else if yyl4762 > 0 { - var yyrr4762, yyrl4762 int - var yyrt4762 bool - if yyl4762 > cap(yyv4762) { + } else if yyl4817 > 0 { + var yyrr4817, yyrl4817 int + var yyrt4817 bool + if yyl4817 > cap(yyv4817) { - yyrg4762 := len(yyv4762) > 0 - yyv24762 := yyv4762 - yyrl4762, yyrt4762 = z.DecInferLen(yyl4762, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4762 { - if yyrl4762 <= cap(yyv4762) { - yyv4762 = yyv4762[:yyrl4762] + yyrg4817 := len(yyv4817) > 0 + yyv24817 := yyv4817 + yyrl4817, yyrt4817 = z.DecInferLen(yyl4817, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4817 { + if yyrl4817 <= cap(yyv4817) { + yyv4817 = yyv4817[:yyrl4817] } else { - yyv4762 = make([]AttachedVolume, yyrl4762) + yyv4817 = make([]AttachedVolume, yyrl4817) } } else { - yyv4762 = make([]AttachedVolume, yyrl4762) + yyv4817 = make([]AttachedVolume, yyrl4817) } - yyc4762 = true - yyrr4762 = len(yyv4762) - if yyrg4762 { - copy(yyv4762, yyv24762) + yyc4817 = true + yyrr4817 = len(yyv4817) + if yyrg4817 { + copy(yyv4817, yyv24817) } - } else if yyl4762 != len(yyv4762) { - yyv4762 = yyv4762[:yyl4762] - yyc4762 = true + } else if yyl4817 != len(yyv4817) { + yyv4817 = yyv4817[:yyl4817] + yyc4817 = true } - yyj4762 := 0 - for ; yyj4762 < yyrr4762; yyj4762++ { - yyh4762.ElemContainerState(yyj4762) + yyj4817 := 0 + for ; yyj4817 < yyrr4817; yyj4817++ { + yyh4817.ElemContainerState(yyj4817) if r.TryDecodeAsNil() { - yyv4762[yyj4762] = AttachedVolume{} + yyv4817[yyj4817] = AttachedVolume{} } else { - yyv4763 := &yyv4762[yyj4762] - yyv4763.CodecDecodeSelf(d) + yyv4818 := &yyv4817[yyj4817] + yyv4818.CodecDecodeSelf(d) } } - if yyrt4762 { - for ; yyj4762 < yyl4762; yyj4762++ { - yyv4762 = append(yyv4762, AttachedVolume{}) - yyh4762.ElemContainerState(yyj4762) + if yyrt4817 { + for ; yyj4817 < yyl4817; yyj4817++ { + yyv4817 = append(yyv4817, AttachedVolume{}) + yyh4817.ElemContainerState(yyj4817) if r.TryDecodeAsNil() { - yyv4762[yyj4762] = AttachedVolume{} + yyv4817[yyj4817] = AttachedVolume{} } else { - yyv4764 := &yyv4762[yyj4762] - yyv4764.CodecDecodeSelf(d) + yyv4819 := &yyv4817[yyj4817] + yyv4819.CodecDecodeSelf(d) } } } } else { - yyj4762 := 0 - for ; !r.CheckBreak(); yyj4762++ { + yyj4817 := 0 + for ; !r.CheckBreak(); yyj4817++ { - if yyj4762 >= len(yyv4762) { - yyv4762 = append(yyv4762, AttachedVolume{}) // var yyz4762 AttachedVolume - yyc4762 = true + if yyj4817 >= len(yyv4817) { + yyv4817 = append(yyv4817, AttachedVolume{}) // var yyz4817 AttachedVolume + yyc4817 = true } - yyh4762.ElemContainerState(yyj4762) - if yyj4762 < len(yyv4762) { + yyh4817.ElemContainerState(yyj4817) + if yyj4817 < len(yyv4817) { if r.TryDecodeAsNil() { - yyv4762[yyj4762] = AttachedVolume{} + yyv4817[yyj4817] = AttachedVolume{} } else { - yyv4765 := &yyv4762[yyj4762] - yyv4765.CodecDecodeSelf(d) + yyv4820 := &yyv4817[yyj4817] + yyv4820.CodecDecodeSelf(d) } } else { @@ -60706,17 +61359,17 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } } - if yyj4762 < len(yyv4762) { - yyv4762 = yyv4762[:yyj4762] - yyc4762 = true - } else if yyj4762 == 0 && yyv4762 == nil { - yyv4762 = []AttachedVolume{} - yyc4762 = true + if yyj4817 < len(yyv4817) { + yyv4817 = yyv4817[:yyj4817] + yyc4817 = true + } else if yyj4817 == 0 && yyv4817 == nil { + yyv4817 = []AttachedVolume{} + yyc4817 = true } } - yyh4762.End() - if yyc4762 { - *v = yyv4762 + yyh4817.End() + if yyc4817 { + *v = yyv4817 } } @@ -60725,10 +61378,10 @@ func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4766 := range v { + for _, yyv4821 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4767 := &yyv4766 - yy4767.CodecEncodeSelf(e) + yy4822 := &yyv4821 + yy4822.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60738,83 +61391,83 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4768 := *v - yyh4768, yyl4768 := z.DecSliceHelperStart() - var yyc4768 bool - if yyl4768 == 0 { - if yyv4768 == nil { - yyv4768 = []PreferAvoidPodsEntry{} - yyc4768 = true - } else if len(yyv4768) != 0 { - yyv4768 = yyv4768[:0] - yyc4768 = true + yyv4823 := *v + yyh4823, yyl4823 := z.DecSliceHelperStart() + var yyc4823 bool + if yyl4823 == 0 { + if yyv4823 == nil { + yyv4823 = []PreferAvoidPodsEntry{} + yyc4823 = true + } else if len(yyv4823) != 0 { + yyv4823 = yyv4823[:0] + yyc4823 = true } - } else if yyl4768 > 0 { - var yyrr4768, yyrl4768 int - var yyrt4768 bool - if yyl4768 > cap(yyv4768) { + } else if yyl4823 > 0 { + var yyrr4823, yyrl4823 int + var yyrt4823 bool + if yyl4823 > cap(yyv4823) { - yyrg4768 := len(yyv4768) > 0 - yyv24768 := yyv4768 - yyrl4768, yyrt4768 = z.DecInferLen(yyl4768, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4768 { - if yyrl4768 <= cap(yyv4768) { - yyv4768 = yyv4768[:yyrl4768] + yyrg4823 := len(yyv4823) > 0 + yyv24823 := yyv4823 + yyrl4823, yyrt4823 = z.DecInferLen(yyl4823, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4823 { + if yyrl4823 <= cap(yyv4823) { + yyv4823 = yyv4823[:yyrl4823] } else { - yyv4768 = make([]PreferAvoidPodsEntry, yyrl4768) + yyv4823 = make([]PreferAvoidPodsEntry, yyrl4823) } } else { - yyv4768 = make([]PreferAvoidPodsEntry, yyrl4768) + yyv4823 = make([]PreferAvoidPodsEntry, yyrl4823) } - yyc4768 = true - yyrr4768 = len(yyv4768) - if yyrg4768 { - copy(yyv4768, yyv24768) + yyc4823 = true + yyrr4823 = len(yyv4823) + if yyrg4823 { + copy(yyv4823, yyv24823) } - } else if yyl4768 != len(yyv4768) { - yyv4768 = yyv4768[:yyl4768] - yyc4768 = true + } else if yyl4823 != len(yyv4823) { + yyv4823 = yyv4823[:yyl4823] + yyc4823 = true } - yyj4768 := 0 - for ; yyj4768 < yyrr4768; yyj4768++ { - yyh4768.ElemContainerState(yyj4768) + yyj4823 := 0 + for ; yyj4823 < yyrr4823; yyj4823++ { + yyh4823.ElemContainerState(yyj4823) if r.TryDecodeAsNil() { - yyv4768[yyj4768] = PreferAvoidPodsEntry{} + yyv4823[yyj4823] = PreferAvoidPodsEntry{} } else { - yyv4769 := &yyv4768[yyj4768] - yyv4769.CodecDecodeSelf(d) + yyv4824 := &yyv4823[yyj4823] + yyv4824.CodecDecodeSelf(d) } } - if yyrt4768 { - for ; yyj4768 < yyl4768; yyj4768++ { - yyv4768 = append(yyv4768, PreferAvoidPodsEntry{}) - yyh4768.ElemContainerState(yyj4768) + if yyrt4823 { + for ; yyj4823 < yyl4823; yyj4823++ { + yyv4823 = append(yyv4823, PreferAvoidPodsEntry{}) + yyh4823.ElemContainerState(yyj4823) if r.TryDecodeAsNil() { - yyv4768[yyj4768] = PreferAvoidPodsEntry{} + yyv4823[yyj4823] = PreferAvoidPodsEntry{} } else { - yyv4770 := &yyv4768[yyj4768] - yyv4770.CodecDecodeSelf(d) + yyv4825 := &yyv4823[yyj4823] + yyv4825.CodecDecodeSelf(d) } } } } else { - yyj4768 := 0 - for ; !r.CheckBreak(); yyj4768++ { + yyj4823 := 0 + for ; !r.CheckBreak(); yyj4823++ { - if yyj4768 >= len(yyv4768) { - yyv4768 = append(yyv4768, PreferAvoidPodsEntry{}) // var yyz4768 PreferAvoidPodsEntry - yyc4768 = true + if yyj4823 >= len(yyv4823) { + yyv4823 = append(yyv4823, PreferAvoidPodsEntry{}) // var yyz4823 PreferAvoidPodsEntry + yyc4823 = true } - yyh4768.ElemContainerState(yyj4768) - if yyj4768 < len(yyv4768) { + yyh4823.ElemContainerState(yyj4823) + if yyj4823 < len(yyv4823) { if r.TryDecodeAsNil() { - yyv4768[yyj4768] = PreferAvoidPodsEntry{} + yyv4823[yyj4823] = PreferAvoidPodsEntry{} } else { - yyv4771 := &yyv4768[yyj4768] - yyv4771.CodecDecodeSelf(d) + yyv4826 := &yyv4823[yyj4823] + yyv4826.CodecDecodeSelf(d) } } else { @@ -60822,17 +61475,17 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } } - if yyj4768 < len(yyv4768) { - yyv4768 = yyv4768[:yyj4768] - yyc4768 = true - } else if yyj4768 == 0 && yyv4768 == nil { - yyv4768 = []PreferAvoidPodsEntry{} - yyc4768 = true + if yyj4823 < len(yyv4823) { + yyv4823 = yyv4823[:yyj4823] + yyc4823 = true + } else if yyj4823 == 0 && yyv4823 == nil { + yyv4823 = []PreferAvoidPodsEntry{} + yyc4823 = true } } - yyh4768.End() - if yyc4768 { - *v = yyv4768 + yyh4823.End() + if yyc4823 { + *v = yyv4823 } } @@ -60841,19 +61494,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4772, yyv4772 := range v { + for yyk4827, yyv4827 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4772.CodecEncodeSelf(e) + yyk4827.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4773 := &yyv4772 - yym4774 := z.EncBinary() - _ = yym4774 + yy4828 := &yyv4827 + yym4829 := z.EncBinary() + _ = yym4829 if false { - } else if z.HasExtensions() && z.EncExt(yy4773) { - } else if !yym4774 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4773) + } else if z.HasExtensions() && z.EncExt(yy4828) { + } else if !yym4829 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4828) } else { - z.EncFallback(yy4773) + z.EncFallback(yy4828) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -60864,86 +61517,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4775 := *v - yyl4775 := r.ReadMapStart() - yybh4775 := z.DecBasicHandle() - if yyv4775 == nil { - yyrl4775, _ := z.DecInferLen(yyl4775, yybh4775.MaxInitLen, 72) - yyv4775 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4775) - *v = yyv4775 + yyv4830 := *v + yyl4830 := r.ReadMapStart() + yybh4830 := z.DecBasicHandle() + if yyv4830 == nil { + yyrl4830, _ := z.DecInferLen(yyl4830, yybh4830.MaxInitLen, 72) + yyv4830 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4830) + *v = yyv4830 } - var yymk4775 ResourceName - var yymv4775 pkg3_resource.Quantity - var yymg4775 bool - if yybh4775.MapValueReset { - yymg4775 = true + var yymk4830 ResourceName + var yymv4830 pkg3_resource.Quantity + var yymg4830 bool + if yybh4830.MapValueReset { + yymg4830 = true } - if yyl4775 > 0 { - for yyj4775 := 0; yyj4775 < yyl4775; yyj4775++ { + if yyl4830 > 0 { + for yyj4830 := 0; yyj4830 < yyl4830; yyj4830++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4775 = "" + yymk4830 = "" } else { - yymk4775 = ResourceName(r.DecodeString()) + yymk4830 = ResourceName(r.DecodeString()) } - if yymg4775 { - yymv4775 = yyv4775[yymk4775] + if yymg4830 { + yymv4830 = yyv4830[yymk4830] } else { - yymv4775 = pkg3_resource.Quantity{} + yymv4830 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4775 = pkg3_resource.Quantity{} + yymv4830 = pkg3_resource.Quantity{} } else { - yyv4777 := &yymv4775 - yym4778 := z.DecBinary() - _ = yym4778 + yyv4832 := &yymv4830 + yym4833 := z.DecBinary() + _ = yym4833 if false { - } else if z.HasExtensions() && z.DecExt(yyv4777) { - } else if !yym4778 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4777) + } else if z.HasExtensions() && z.DecExt(yyv4832) { + } else if !yym4833 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4832) } else { - z.DecFallback(yyv4777, false) + z.DecFallback(yyv4832, false) } } - if yyv4775 != nil { - yyv4775[yymk4775] = yymv4775 + if yyv4830 != nil { + yyv4830[yymk4830] = yymv4830 } } - } else if yyl4775 < 0 { - for yyj4775 := 0; !r.CheckBreak(); yyj4775++ { + } else if yyl4830 < 0 { + for yyj4830 := 0; !r.CheckBreak(); yyj4830++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4775 = "" + yymk4830 = "" } else { - yymk4775 = ResourceName(r.DecodeString()) + yymk4830 = ResourceName(r.DecodeString()) } - if yymg4775 { - yymv4775 = yyv4775[yymk4775] + if yymg4830 { + yymv4830 = yyv4830[yymk4830] } else { - yymv4775 = pkg3_resource.Quantity{} + yymv4830 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4775 = pkg3_resource.Quantity{} + yymv4830 = pkg3_resource.Quantity{} } else { - yyv4780 := &yymv4775 - yym4781 := z.DecBinary() - _ = yym4781 + yyv4835 := &yymv4830 + yym4836 := z.DecBinary() + _ = yym4836 if false { - } else if z.HasExtensions() && z.DecExt(yyv4780) { - } else if !yym4781 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4780) + } else if z.HasExtensions() && z.DecExt(yyv4835) { + } else if !yym4836 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4835) } else { - z.DecFallback(yyv4780, false) + z.DecFallback(yyv4835, false) } } - if yyv4775 != nil { - yyv4775[yymk4775] = yymv4775 + if yyv4830 != nil { + yyv4830[yymk4830] = yymv4830 } } } // else len==0: TODO: Should we clear map entries? @@ -60955,10 +61608,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4782 := range v { + for _, yyv4837 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4783 := &yyv4782 - yy4783.CodecEncodeSelf(e) + yy4838 := &yyv4837 + yy4838.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60968,83 +61621,83 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4784 := *v - yyh4784, yyl4784 := z.DecSliceHelperStart() - var yyc4784 bool - if yyl4784 == 0 { - if yyv4784 == nil { - yyv4784 = []Node{} - yyc4784 = true - } else if len(yyv4784) != 0 { - yyv4784 = yyv4784[:0] - yyc4784 = true + yyv4839 := *v + yyh4839, yyl4839 := z.DecSliceHelperStart() + var yyc4839 bool + if yyl4839 == 0 { + if yyv4839 == nil { + yyv4839 = []Node{} + yyc4839 = true + } else if len(yyv4839) != 0 { + yyv4839 = yyv4839[:0] + yyc4839 = true } - } else if yyl4784 > 0 { - var yyrr4784, yyrl4784 int - var yyrt4784 bool - if yyl4784 > cap(yyv4784) { + } else if yyl4839 > 0 { + var yyrr4839, yyrl4839 int + var yyrt4839 bool + if yyl4839 > cap(yyv4839) { - yyrg4784 := len(yyv4784) > 0 - yyv24784 := yyv4784 - yyrl4784, yyrt4784 = z.DecInferLen(yyl4784, z.DecBasicHandle().MaxInitLen, 632) - if yyrt4784 { - if yyrl4784 <= cap(yyv4784) { - yyv4784 = yyv4784[:yyrl4784] + yyrg4839 := len(yyv4839) > 0 + yyv24839 := yyv4839 + yyrl4839, yyrt4839 = z.DecInferLen(yyl4839, z.DecBasicHandle().MaxInitLen, 632) + if yyrt4839 { + if yyrl4839 <= cap(yyv4839) { + yyv4839 = yyv4839[:yyrl4839] } else { - yyv4784 = make([]Node, yyrl4784) + yyv4839 = make([]Node, yyrl4839) } } else { - yyv4784 = make([]Node, yyrl4784) + yyv4839 = make([]Node, yyrl4839) } - yyc4784 = true - yyrr4784 = len(yyv4784) - if yyrg4784 { - copy(yyv4784, yyv24784) + yyc4839 = true + yyrr4839 = len(yyv4839) + if yyrg4839 { + copy(yyv4839, yyv24839) } - } else if yyl4784 != len(yyv4784) { - yyv4784 = yyv4784[:yyl4784] - yyc4784 = true + } else if yyl4839 != len(yyv4839) { + yyv4839 = yyv4839[:yyl4839] + yyc4839 = true } - yyj4784 := 0 - for ; yyj4784 < yyrr4784; yyj4784++ { - yyh4784.ElemContainerState(yyj4784) + yyj4839 := 0 + for ; yyj4839 < yyrr4839; yyj4839++ { + yyh4839.ElemContainerState(yyj4839) if r.TryDecodeAsNil() { - yyv4784[yyj4784] = Node{} + yyv4839[yyj4839] = Node{} } else { - yyv4785 := &yyv4784[yyj4784] - yyv4785.CodecDecodeSelf(d) + yyv4840 := &yyv4839[yyj4839] + yyv4840.CodecDecodeSelf(d) } } - if yyrt4784 { - for ; yyj4784 < yyl4784; yyj4784++ { - yyv4784 = append(yyv4784, Node{}) - yyh4784.ElemContainerState(yyj4784) + if yyrt4839 { + for ; yyj4839 < yyl4839; yyj4839++ { + yyv4839 = append(yyv4839, Node{}) + yyh4839.ElemContainerState(yyj4839) if r.TryDecodeAsNil() { - yyv4784[yyj4784] = Node{} + yyv4839[yyj4839] = Node{} } else { - yyv4786 := &yyv4784[yyj4784] - yyv4786.CodecDecodeSelf(d) + yyv4841 := &yyv4839[yyj4839] + yyv4841.CodecDecodeSelf(d) } } } } else { - yyj4784 := 0 - for ; !r.CheckBreak(); yyj4784++ { + yyj4839 := 0 + for ; !r.CheckBreak(); yyj4839++ { - if yyj4784 >= len(yyv4784) { - yyv4784 = append(yyv4784, Node{}) // var yyz4784 Node - yyc4784 = true + if yyj4839 >= len(yyv4839) { + yyv4839 = append(yyv4839, Node{}) // var yyz4839 Node + yyc4839 = true } - yyh4784.ElemContainerState(yyj4784) - if yyj4784 < len(yyv4784) { + yyh4839.ElemContainerState(yyj4839) + if yyj4839 < len(yyv4839) { if r.TryDecodeAsNil() { - yyv4784[yyj4784] = Node{} + yyv4839[yyj4839] = Node{} } else { - yyv4787 := &yyv4784[yyj4784] - yyv4787.CodecDecodeSelf(d) + yyv4842 := &yyv4839[yyj4839] + yyv4842.CodecDecodeSelf(d) } } else { @@ -61052,17 +61705,17 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { } } - if yyj4784 < len(yyv4784) { - yyv4784 = yyv4784[:yyj4784] - yyc4784 = true - } else if yyj4784 == 0 && yyv4784 == nil { - yyv4784 = []Node{} - yyc4784 = true + if yyj4839 < len(yyv4839) { + yyv4839 = yyv4839[:yyj4839] + yyc4839 = true + } else if yyj4839 == 0 && yyv4839 == nil { + yyv4839 = []Node{} + yyc4839 = true } } - yyh4784.End() - if yyc4784 { - *v = yyv4784 + yyh4839.End() + if yyc4839 { + *v = yyv4839 } } @@ -61071,9 +61724,9 @@ func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4788 := range v { + for _, yyv4843 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4788.CodecEncodeSelf(e) + yyv4843.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61083,75 +61736,75 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4789 := *v - yyh4789, yyl4789 := z.DecSliceHelperStart() - var yyc4789 bool - if yyl4789 == 0 { - if yyv4789 == nil { - yyv4789 = []FinalizerName{} - yyc4789 = true - } else if len(yyv4789) != 0 { - yyv4789 = yyv4789[:0] - yyc4789 = true + yyv4844 := *v + yyh4844, yyl4844 := z.DecSliceHelperStart() + var yyc4844 bool + if yyl4844 == 0 { + if yyv4844 == nil { + yyv4844 = []FinalizerName{} + yyc4844 = true + } else if len(yyv4844) != 0 { + yyv4844 = yyv4844[:0] + yyc4844 = true } - } else if yyl4789 > 0 { - var yyrr4789, yyrl4789 int - var yyrt4789 bool - if yyl4789 > cap(yyv4789) { + } else if yyl4844 > 0 { + var yyrr4844, yyrl4844 int + var yyrt4844 bool + if yyl4844 > cap(yyv4844) { - yyrl4789, yyrt4789 = z.DecInferLen(yyl4789, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4789 { - if yyrl4789 <= cap(yyv4789) { - yyv4789 = yyv4789[:yyrl4789] + yyrl4844, yyrt4844 = z.DecInferLen(yyl4844, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4844 { + if yyrl4844 <= cap(yyv4844) { + yyv4844 = yyv4844[:yyrl4844] } else { - yyv4789 = make([]FinalizerName, yyrl4789) + yyv4844 = make([]FinalizerName, yyrl4844) } } else { - yyv4789 = make([]FinalizerName, yyrl4789) + yyv4844 = make([]FinalizerName, yyrl4844) } - yyc4789 = true - yyrr4789 = len(yyv4789) - } else if yyl4789 != len(yyv4789) { - yyv4789 = yyv4789[:yyl4789] - yyc4789 = true + yyc4844 = true + yyrr4844 = len(yyv4844) + } else if yyl4844 != len(yyv4844) { + yyv4844 = yyv4844[:yyl4844] + yyc4844 = true } - yyj4789 := 0 - for ; yyj4789 < yyrr4789; yyj4789++ { - yyh4789.ElemContainerState(yyj4789) + yyj4844 := 0 + for ; yyj4844 < yyrr4844; yyj4844++ { + yyh4844.ElemContainerState(yyj4844) if r.TryDecodeAsNil() { - yyv4789[yyj4789] = "" + yyv4844[yyj4844] = "" } else { - yyv4789[yyj4789] = FinalizerName(r.DecodeString()) + yyv4844[yyj4844] = FinalizerName(r.DecodeString()) } } - if yyrt4789 { - for ; yyj4789 < yyl4789; yyj4789++ { - yyv4789 = append(yyv4789, "") - yyh4789.ElemContainerState(yyj4789) + if yyrt4844 { + for ; yyj4844 < yyl4844; yyj4844++ { + yyv4844 = append(yyv4844, "") + yyh4844.ElemContainerState(yyj4844) if r.TryDecodeAsNil() { - yyv4789[yyj4789] = "" + yyv4844[yyj4844] = "" } else { - yyv4789[yyj4789] = FinalizerName(r.DecodeString()) + yyv4844[yyj4844] = FinalizerName(r.DecodeString()) } } } } else { - yyj4789 := 0 - for ; !r.CheckBreak(); yyj4789++ { + yyj4844 := 0 + for ; !r.CheckBreak(); yyj4844++ { - if yyj4789 >= len(yyv4789) { - yyv4789 = append(yyv4789, "") // var yyz4789 FinalizerName - yyc4789 = true + if yyj4844 >= len(yyv4844) { + yyv4844 = append(yyv4844, "") // var yyz4844 FinalizerName + yyc4844 = true } - yyh4789.ElemContainerState(yyj4789) - if yyj4789 < len(yyv4789) { + yyh4844.ElemContainerState(yyj4844) + if yyj4844 < len(yyv4844) { if r.TryDecodeAsNil() { - yyv4789[yyj4789] = "" + yyv4844[yyj4844] = "" } else { - yyv4789[yyj4789] = FinalizerName(r.DecodeString()) + yyv4844[yyj4844] = FinalizerName(r.DecodeString()) } } else { @@ -61159,17 +61812,17 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } - if yyj4789 < len(yyv4789) { - yyv4789 = yyv4789[:yyj4789] - yyc4789 = true - } else if yyj4789 == 0 && yyv4789 == nil { - yyv4789 = []FinalizerName{} - yyc4789 = true + if yyj4844 < len(yyv4844) { + yyv4844 = yyv4844[:yyj4844] + yyc4844 = true + } else if yyj4844 == 0 && yyv4844 == nil { + yyv4844 = []FinalizerName{} + yyc4844 = true } } - yyh4789.End() - if yyc4789 { - *v = yyv4789 + yyh4844.End() + if yyc4844 { + *v = yyv4844 } } @@ -61178,10 +61831,10 @@ func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4793 := range v { + for _, yyv4848 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4794 := &yyv4793 - yy4794.CodecEncodeSelf(e) + yy4849 := &yyv4848 + yy4849.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61191,83 +61844,83 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4795 := *v - yyh4795, yyl4795 := z.DecSliceHelperStart() - var yyc4795 bool - if yyl4795 == 0 { - if yyv4795 == nil { - yyv4795 = []Namespace{} - yyc4795 = true - } else if len(yyv4795) != 0 { - yyv4795 = yyv4795[:0] - yyc4795 = true + yyv4850 := *v + yyh4850, yyl4850 := z.DecSliceHelperStart() + var yyc4850 bool + if yyl4850 == 0 { + if yyv4850 == nil { + yyv4850 = []Namespace{} + yyc4850 = true + } else if len(yyv4850) != 0 { + yyv4850 = yyv4850[:0] + yyc4850 = true } - } else if yyl4795 > 0 { - var yyrr4795, yyrl4795 int - var yyrt4795 bool - if yyl4795 > cap(yyv4795) { + } else if yyl4850 > 0 { + var yyrr4850, yyrl4850 int + var yyrt4850 bool + if yyl4850 > cap(yyv4850) { - yyrg4795 := len(yyv4795) > 0 - yyv24795 := yyv4795 - yyrl4795, yyrt4795 = z.DecInferLen(yyl4795, z.DecBasicHandle().MaxInitLen, 296) - if yyrt4795 { - if yyrl4795 <= cap(yyv4795) { - yyv4795 = yyv4795[:yyrl4795] + yyrg4850 := len(yyv4850) > 0 + yyv24850 := yyv4850 + yyrl4850, yyrt4850 = z.DecInferLen(yyl4850, z.DecBasicHandle().MaxInitLen, 296) + if yyrt4850 { + if yyrl4850 <= cap(yyv4850) { + yyv4850 = yyv4850[:yyrl4850] } else { - yyv4795 = make([]Namespace, yyrl4795) + yyv4850 = make([]Namespace, yyrl4850) } } else { - yyv4795 = make([]Namespace, yyrl4795) + yyv4850 = make([]Namespace, yyrl4850) } - yyc4795 = true - yyrr4795 = len(yyv4795) - if yyrg4795 { - copy(yyv4795, yyv24795) + yyc4850 = true + yyrr4850 = len(yyv4850) + if yyrg4850 { + copy(yyv4850, yyv24850) } - } else if yyl4795 != len(yyv4795) { - yyv4795 = yyv4795[:yyl4795] - yyc4795 = true + } else if yyl4850 != len(yyv4850) { + yyv4850 = yyv4850[:yyl4850] + yyc4850 = true } - yyj4795 := 0 - for ; yyj4795 < yyrr4795; yyj4795++ { - yyh4795.ElemContainerState(yyj4795) + yyj4850 := 0 + for ; yyj4850 < yyrr4850; yyj4850++ { + yyh4850.ElemContainerState(yyj4850) if r.TryDecodeAsNil() { - yyv4795[yyj4795] = Namespace{} + yyv4850[yyj4850] = Namespace{} } else { - yyv4796 := &yyv4795[yyj4795] - yyv4796.CodecDecodeSelf(d) + yyv4851 := &yyv4850[yyj4850] + yyv4851.CodecDecodeSelf(d) } } - if yyrt4795 { - for ; yyj4795 < yyl4795; yyj4795++ { - yyv4795 = append(yyv4795, Namespace{}) - yyh4795.ElemContainerState(yyj4795) + if yyrt4850 { + for ; yyj4850 < yyl4850; yyj4850++ { + yyv4850 = append(yyv4850, Namespace{}) + yyh4850.ElemContainerState(yyj4850) if r.TryDecodeAsNil() { - yyv4795[yyj4795] = Namespace{} + yyv4850[yyj4850] = Namespace{} } else { - yyv4797 := &yyv4795[yyj4795] - yyv4797.CodecDecodeSelf(d) + yyv4852 := &yyv4850[yyj4850] + yyv4852.CodecDecodeSelf(d) } } } } else { - yyj4795 := 0 - for ; !r.CheckBreak(); yyj4795++ { + yyj4850 := 0 + for ; !r.CheckBreak(); yyj4850++ { - if yyj4795 >= len(yyv4795) { - yyv4795 = append(yyv4795, Namespace{}) // var yyz4795 Namespace - yyc4795 = true + if yyj4850 >= len(yyv4850) { + yyv4850 = append(yyv4850, Namespace{}) // var yyz4850 Namespace + yyc4850 = true } - yyh4795.ElemContainerState(yyj4795) - if yyj4795 < len(yyv4795) { + yyh4850.ElemContainerState(yyj4850) + if yyj4850 < len(yyv4850) { if r.TryDecodeAsNil() { - yyv4795[yyj4795] = Namespace{} + yyv4850[yyj4850] = Namespace{} } else { - yyv4798 := &yyv4795[yyj4795] - yyv4798.CodecDecodeSelf(d) + yyv4853 := &yyv4850[yyj4850] + yyv4853.CodecDecodeSelf(d) } } else { @@ -61275,17 +61928,17 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4795 < len(yyv4795) { - yyv4795 = yyv4795[:yyj4795] - yyc4795 = true - } else if yyj4795 == 0 && yyv4795 == nil { - yyv4795 = []Namespace{} - yyc4795 = true + if yyj4850 < len(yyv4850) { + yyv4850 = yyv4850[:yyj4850] + yyc4850 = true + } else if yyj4850 == 0 && yyv4850 == nil { + yyv4850 = []Namespace{} + yyc4850 = true } } - yyh4795.End() - if yyc4795 { - *v = yyv4795 + yyh4850.End() + if yyc4850 { + *v = yyv4850 } } @@ -61294,10 +61947,10 @@ func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4799 := range v { + for _, yyv4854 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4800 := &yyv4799 - yy4800.CodecEncodeSelf(e) + yy4855 := &yyv4854 + yy4855.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61307,83 +61960,83 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4801 := *v - yyh4801, yyl4801 := z.DecSliceHelperStart() - var yyc4801 bool - if yyl4801 == 0 { - if yyv4801 == nil { - yyv4801 = []Event{} - yyc4801 = true - } else if len(yyv4801) != 0 { - yyv4801 = yyv4801[:0] - yyc4801 = true + yyv4856 := *v + yyh4856, yyl4856 := z.DecSliceHelperStart() + var yyc4856 bool + if yyl4856 == 0 { + if yyv4856 == nil { + yyv4856 = []Event{} + yyc4856 = true + } else if len(yyv4856) != 0 { + yyv4856 = yyv4856[:0] + yyc4856 = true } - } else if yyl4801 > 0 { - var yyrr4801, yyrl4801 int - var yyrt4801 bool - if yyl4801 > cap(yyv4801) { + } else if yyl4856 > 0 { + var yyrr4856, yyrl4856 int + var yyrt4856 bool + if yyl4856 > cap(yyv4856) { - yyrg4801 := len(yyv4801) > 0 - yyv24801 := yyv4801 - yyrl4801, yyrt4801 = z.DecInferLen(yyl4801, z.DecBasicHandle().MaxInitLen, 504) - if yyrt4801 { - if yyrl4801 <= cap(yyv4801) { - yyv4801 = yyv4801[:yyrl4801] + yyrg4856 := len(yyv4856) > 0 + yyv24856 := yyv4856 + yyrl4856, yyrt4856 = z.DecInferLen(yyl4856, z.DecBasicHandle().MaxInitLen, 504) + if yyrt4856 { + if yyrl4856 <= cap(yyv4856) { + yyv4856 = yyv4856[:yyrl4856] } else { - yyv4801 = make([]Event, yyrl4801) + yyv4856 = make([]Event, yyrl4856) } } else { - yyv4801 = make([]Event, yyrl4801) + yyv4856 = make([]Event, yyrl4856) } - yyc4801 = true - yyrr4801 = len(yyv4801) - if yyrg4801 { - copy(yyv4801, yyv24801) + yyc4856 = true + yyrr4856 = len(yyv4856) + if yyrg4856 { + copy(yyv4856, yyv24856) } - } else if yyl4801 != len(yyv4801) { - yyv4801 = yyv4801[:yyl4801] - yyc4801 = true + } else if yyl4856 != len(yyv4856) { + yyv4856 = yyv4856[:yyl4856] + yyc4856 = true } - yyj4801 := 0 - for ; yyj4801 < yyrr4801; yyj4801++ { - yyh4801.ElemContainerState(yyj4801) + yyj4856 := 0 + for ; yyj4856 < yyrr4856; yyj4856++ { + yyh4856.ElemContainerState(yyj4856) if r.TryDecodeAsNil() { - yyv4801[yyj4801] = Event{} + yyv4856[yyj4856] = Event{} } else { - yyv4802 := &yyv4801[yyj4801] - yyv4802.CodecDecodeSelf(d) + yyv4857 := &yyv4856[yyj4856] + yyv4857.CodecDecodeSelf(d) } } - if yyrt4801 { - for ; yyj4801 < yyl4801; yyj4801++ { - yyv4801 = append(yyv4801, Event{}) - yyh4801.ElemContainerState(yyj4801) + if yyrt4856 { + for ; yyj4856 < yyl4856; yyj4856++ { + yyv4856 = append(yyv4856, Event{}) + yyh4856.ElemContainerState(yyj4856) if r.TryDecodeAsNil() { - yyv4801[yyj4801] = Event{} + yyv4856[yyj4856] = Event{} } else { - yyv4803 := &yyv4801[yyj4801] - yyv4803.CodecDecodeSelf(d) + yyv4858 := &yyv4856[yyj4856] + yyv4858.CodecDecodeSelf(d) } } } } else { - yyj4801 := 0 - for ; !r.CheckBreak(); yyj4801++ { + yyj4856 := 0 + for ; !r.CheckBreak(); yyj4856++ { - if yyj4801 >= len(yyv4801) { - yyv4801 = append(yyv4801, Event{}) // var yyz4801 Event - yyc4801 = true + if yyj4856 >= len(yyv4856) { + yyv4856 = append(yyv4856, Event{}) // var yyz4856 Event + yyc4856 = true } - yyh4801.ElemContainerState(yyj4801) - if yyj4801 < len(yyv4801) { + yyh4856.ElemContainerState(yyj4856) + if yyj4856 < len(yyv4856) { if r.TryDecodeAsNil() { - yyv4801[yyj4801] = Event{} + yyv4856[yyj4856] = Event{} } else { - yyv4804 := &yyv4801[yyj4801] - yyv4804.CodecDecodeSelf(d) + yyv4859 := &yyv4856[yyj4856] + yyv4859.CodecDecodeSelf(d) } } else { @@ -61391,17 +62044,17 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4801 < len(yyv4801) { - yyv4801 = yyv4801[:yyj4801] - yyc4801 = true - } else if yyj4801 == 0 && yyv4801 == nil { - yyv4801 = []Event{} - yyc4801 = true + if yyj4856 < len(yyv4856) { + yyv4856 = yyv4856[:yyj4856] + yyc4856 = true + } else if yyj4856 == 0 && yyv4856 == nil { + yyv4856 = []Event{} + yyc4856 = true } } - yyh4801.End() - if yyc4801 { - *v = yyv4801 + yyh4856.End() + if yyc4856 { + *v = yyv4856 } } @@ -61410,17 +62063,17 @@ func (x codecSelfer1234) encSliceruntime_Object(v []pkg7_runtime.Object, e *code z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4805 := range v { + for _, yyv4860 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyv4805 == nil { + if yyv4860 == nil { r.EncodeNil() } else { - yym4806 := z.EncBinary() - _ = yym4806 + yym4861 := z.EncBinary() + _ = yym4861 if false { - } else if z.HasExtensions() && z.EncExt(yyv4805) { + } else if z.HasExtensions() && z.EncExt(yyv4860) { } else { - z.EncFallback(yyv4805) + z.EncFallback(yyv4860) } } } @@ -61432,74 +62085,74 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4807 := *v - yyh4807, yyl4807 := z.DecSliceHelperStart() - var yyc4807 bool - if yyl4807 == 0 { - if yyv4807 == nil { - yyv4807 = []pkg7_runtime.Object{} - yyc4807 = true - } else if len(yyv4807) != 0 { - yyv4807 = yyv4807[:0] - yyc4807 = true + yyv4862 := *v + yyh4862, yyl4862 := z.DecSliceHelperStart() + var yyc4862 bool + if yyl4862 == 0 { + if yyv4862 == nil { + yyv4862 = []pkg7_runtime.Object{} + yyc4862 = true + } else if len(yyv4862) != 0 { + yyv4862 = yyv4862[:0] + yyc4862 = true } - } else if yyl4807 > 0 { - var yyrr4807, yyrl4807 int - var yyrt4807 bool - if yyl4807 > cap(yyv4807) { + } else if yyl4862 > 0 { + var yyrr4862, yyrl4862 int + var yyrt4862 bool + if yyl4862 > cap(yyv4862) { - yyrg4807 := len(yyv4807) > 0 - yyv24807 := yyv4807 - yyrl4807, yyrt4807 = z.DecInferLen(yyl4807, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4807 { - if yyrl4807 <= cap(yyv4807) { - yyv4807 = yyv4807[:yyrl4807] + yyrg4862 := len(yyv4862) > 0 + yyv24862 := yyv4862 + yyrl4862, yyrt4862 = z.DecInferLen(yyl4862, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4862 { + if yyrl4862 <= cap(yyv4862) { + yyv4862 = yyv4862[:yyrl4862] } else { - yyv4807 = make([]pkg7_runtime.Object, yyrl4807) + yyv4862 = make([]pkg7_runtime.Object, yyrl4862) } } else { - yyv4807 = make([]pkg7_runtime.Object, yyrl4807) + yyv4862 = make([]pkg7_runtime.Object, yyrl4862) } - yyc4807 = true - yyrr4807 = len(yyv4807) - if yyrg4807 { - copy(yyv4807, yyv24807) + yyc4862 = true + yyrr4862 = len(yyv4862) + if yyrg4862 { + copy(yyv4862, yyv24862) } - } else if yyl4807 != len(yyv4807) { - yyv4807 = yyv4807[:yyl4807] - yyc4807 = true + } else if yyl4862 != len(yyv4862) { + yyv4862 = yyv4862[:yyl4862] + yyc4862 = true } - yyj4807 := 0 - for ; yyj4807 < yyrr4807; yyj4807++ { - yyh4807.ElemContainerState(yyj4807) + yyj4862 := 0 + for ; yyj4862 < yyrr4862; yyj4862++ { + yyh4862.ElemContainerState(yyj4862) if r.TryDecodeAsNil() { - yyv4807[yyj4807] = nil + yyv4862[yyj4862] = nil } else { - yyv4808 := &yyv4807[yyj4807] - yym4809 := z.DecBinary() - _ = yym4809 + yyv4863 := &yyv4862[yyj4862] + yym4864 := z.DecBinary() + _ = yym4864 if false { - } else if z.HasExtensions() && z.DecExt(yyv4808) { + } else if z.HasExtensions() && z.DecExt(yyv4863) { } else { - z.DecFallback(yyv4808, true) + z.DecFallback(yyv4863, true) } } } - if yyrt4807 { - for ; yyj4807 < yyl4807; yyj4807++ { - yyv4807 = append(yyv4807, nil) - yyh4807.ElemContainerState(yyj4807) + if yyrt4862 { + for ; yyj4862 < yyl4862; yyj4862++ { + yyv4862 = append(yyv4862, nil) + yyh4862.ElemContainerState(yyj4862) if r.TryDecodeAsNil() { - yyv4807[yyj4807] = nil + yyv4862[yyj4862] = nil } else { - yyv4810 := &yyv4807[yyj4807] - yym4811 := z.DecBinary() - _ = yym4811 + yyv4865 := &yyv4862[yyj4862] + yym4866 := z.DecBinary() + _ = yym4866 if false { - } else if z.HasExtensions() && z.DecExt(yyv4810) { + } else if z.HasExtensions() && z.DecExt(yyv4865) { } else { - z.DecFallback(yyv4810, true) + z.DecFallback(yyv4865, true) } } @@ -61507,25 +62160,25 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod } } else { - yyj4807 := 0 - for ; !r.CheckBreak(); yyj4807++ { + yyj4862 := 0 + for ; !r.CheckBreak(); yyj4862++ { - if yyj4807 >= len(yyv4807) { - yyv4807 = append(yyv4807, nil) // var yyz4807 pkg7_runtime.Object - yyc4807 = true + if yyj4862 >= len(yyv4862) { + yyv4862 = append(yyv4862, nil) // var yyz4862 pkg7_runtime.Object + yyc4862 = true } - yyh4807.ElemContainerState(yyj4807) - if yyj4807 < len(yyv4807) { + yyh4862.ElemContainerState(yyj4862) + if yyj4862 < len(yyv4862) { if r.TryDecodeAsNil() { - yyv4807[yyj4807] = nil + yyv4862[yyj4862] = nil } else { - yyv4812 := &yyv4807[yyj4807] - yym4813 := z.DecBinary() - _ = yym4813 + yyv4867 := &yyv4862[yyj4862] + yym4868 := z.DecBinary() + _ = yym4868 if false { - } else if z.HasExtensions() && z.DecExt(yyv4812) { + } else if z.HasExtensions() && z.DecExt(yyv4867) { } else { - z.DecFallback(yyv4812, true) + z.DecFallback(yyv4867, true) } } @@ -61534,17 +62187,17 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod } } - if yyj4807 < len(yyv4807) { - yyv4807 = yyv4807[:yyj4807] - yyc4807 = true - } else if yyj4807 == 0 && yyv4807 == nil { - yyv4807 = []pkg7_runtime.Object{} - yyc4807 = true + if yyj4862 < len(yyv4862) { + yyv4862 = yyv4862[:yyj4862] + yyc4862 = true + } else if yyj4862 == 0 && yyv4862 == nil { + yyv4862 = []pkg7_runtime.Object{} + yyc4862 = true } } - yyh4807.End() - if yyc4807 { - *v = yyv4807 + yyh4862.End() + if yyc4862 { + *v = yyv4862 } } @@ -61553,10 +62206,10 @@ func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4814 := range v { + for _, yyv4869 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4815 := &yyv4814 - yy4815.CodecEncodeSelf(e) + yy4870 := &yyv4869 + yy4870.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61566,83 +62219,83 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4816 := *v - yyh4816, yyl4816 := z.DecSliceHelperStart() - var yyc4816 bool - if yyl4816 == 0 { - if yyv4816 == nil { - yyv4816 = []LimitRangeItem{} - yyc4816 = true - } else if len(yyv4816) != 0 { - yyv4816 = yyv4816[:0] - yyc4816 = true + yyv4871 := *v + yyh4871, yyl4871 := z.DecSliceHelperStart() + var yyc4871 bool + if yyl4871 == 0 { + if yyv4871 == nil { + yyv4871 = []LimitRangeItem{} + yyc4871 = true + } else if len(yyv4871) != 0 { + yyv4871 = yyv4871[:0] + yyc4871 = true } - } else if yyl4816 > 0 { - var yyrr4816, yyrl4816 int - var yyrt4816 bool - if yyl4816 > cap(yyv4816) { + } else if yyl4871 > 0 { + var yyrr4871, yyrl4871 int + var yyrt4871 bool + if yyl4871 > cap(yyv4871) { - yyrg4816 := len(yyv4816) > 0 - yyv24816 := yyv4816 - yyrl4816, yyrt4816 = z.DecInferLen(yyl4816, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4816 { - if yyrl4816 <= cap(yyv4816) { - yyv4816 = yyv4816[:yyrl4816] + yyrg4871 := len(yyv4871) > 0 + yyv24871 := yyv4871 + yyrl4871, yyrt4871 = z.DecInferLen(yyl4871, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4871 { + if yyrl4871 <= cap(yyv4871) { + yyv4871 = yyv4871[:yyrl4871] } else { - yyv4816 = make([]LimitRangeItem, yyrl4816) + yyv4871 = make([]LimitRangeItem, yyrl4871) } } else { - yyv4816 = make([]LimitRangeItem, yyrl4816) + yyv4871 = make([]LimitRangeItem, yyrl4871) } - yyc4816 = true - yyrr4816 = len(yyv4816) - if yyrg4816 { - copy(yyv4816, yyv24816) + yyc4871 = true + yyrr4871 = len(yyv4871) + if yyrg4871 { + copy(yyv4871, yyv24871) } - } else if yyl4816 != len(yyv4816) { - yyv4816 = yyv4816[:yyl4816] - yyc4816 = true + } else if yyl4871 != len(yyv4871) { + yyv4871 = yyv4871[:yyl4871] + yyc4871 = true } - yyj4816 := 0 - for ; yyj4816 < yyrr4816; yyj4816++ { - yyh4816.ElemContainerState(yyj4816) + yyj4871 := 0 + for ; yyj4871 < yyrr4871; yyj4871++ { + yyh4871.ElemContainerState(yyj4871) if r.TryDecodeAsNil() { - yyv4816[yyj4816] = LimitRangeItem{} + yyv4871[yyj4871] = LimitRangeItem{} } else { - yyv4817 := &yyv4816[yyj4816] - yyv4817.CodecDecodeSelf(d) + yyv4872 := &yyv4871[yyj4871] + yyv4872.CodecDecodeSelf(d) } } - if yyrt4816 { - for ; yyj4816 < yyl4816; yyj4816++ { - yyv4816 = append(yyv4816, LimitRangeItem{}) - yyh4816.ElemContainerState(yyj4816) + if yyrt4871 { + for ; yyj4871 < yyl4871; yyj4871++ { + yyv4871 = append(yyv4871, LimitRangeItem{}) + yyh4871.ElemContainerState(yyj4871) if r.TryDecodeAsNil() { - yyv4816[yyj4816] = LimitRangeItem{} + yyv4871[yyj4871] = LimitRangeItem{} } else { - yyv4818 := &yyv4816[yyj4816] - yyv4818.CodecDecodeSelf(d) + yyv4873 := &yyv4871[yyj4871] + yyv4873.CodecDecodeSelf(d) } } } } else { - yyj4816 := 0 - for ; !r.CheckBreak(); yyj4816++ { + yyj4871 := 0 + for ; !r.CheckBreak(); yyj4871++ { - if yyj4816 >= len(yyv4816) { - yyv4816 = append(yyv4816, LimitRangeItem{}) // var yyz4816 LimitRangeItem - yyc4816 = true + if yyj4871 >= len(yyv4871) { + yyv4871 = append(yyv4871, LimitRangeItem{}) // var yyz4871 LimitRangeItem + yyc4871 = true } - yyh4816.ElemContainerState(yyj4816) - if yyj4816 < len(yyv4816) { + yyh4871.ElemContainerState(yyj4871) + if yyj4871 < len(yyv4871) { if r.TryDecodeAsNil() { - yyv4816[yyj4816] = LimitRangeItem{} + yyv4871[yyj4871] = LimitRangeItem{} } else { - yyv4819 := &yyv4816[yyj4816] - yyv4819.CodecDecodeSelf(d) + yyv4874 := &yyv4871[yyj4871] + yyv4874.CodecDecodeSelf(d) } } else { @@ -61650,17 +62303,17 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4816 < len(yyv4816) { - yyv4816 = yyv4816[:yyj4816] - yyc4816 = true - } else if yyj4816 == 0 && yyv4816 == nil { - yyv4816 = []LimitRangeItem{} - yyc4816 = true + if yyj4871 < len(yyv4871) { + yyv4871 = yyv4871[:yyj4871] + yyc4871 = true + } else if yyj4871 == 0 && yyv4871 == nil { + yyv4871 = []LimitRangeItem{} + yyc4871 = true } } - yyh4816.End() - if yyc4816 { - *v = yyv4816 + yyh4871.End() + if yyc4871 { + *v = yyv4871 } } @@ -61669,10 +62322,10 @@ func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4820 := range v { + for _, yyv4875 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4821 := &yyv4820 - yy4821.CodecEncodeSelf(e) + yy4876 := &yyv4875 + yy4876.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61682,83 +62335,83 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4822 := *v - yyh4822, yyl4822 := z.DecSliceHelperStart() - var yyc4822 bool - if yyl4822 == 0 { - if yyv4822 == nil { - yyv4822 = []LimitRange{} - yyc4822 = true - } else if len(yyv4822) != 0 { - yyv4822 = yyv4822[:0] - yyc4822 = true + yyv4877 := *v + yyh4877, yyl4877 := z.DecSliceHelperStart() + var yyc4877 bool + if yyl4877 == 0 { + if yyv4877 == nil { + yyv4877 = []LimitRange{} + yyc4877 = true + } else if len(yyv4877) != 0 { + yyv4877 = yyv4877[:0] + yyc4877 = true } - } else if yyl4822 > 0 { - var yyrr4822, yyrl4822 int - var yyrt4822 bool - if yyl4822 > cap(yyv4822) { + } else if yyl4877 > 0 { + var yyrr4877, yyrl4877 int + var yyrt4877 bool + if yyl4877 > cap(yyv4877) { - yyrg4822 := len(yyv4822) > 0 - yyv24822 := yyv4822 - yyrl4822, yyrt4822 = z.DecInferLen(yyl4822, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4822 { - if yyrl4822 <= cap(yyv4822) { - yyv4822 = yyv4822[:yyrl4822] + yyrg4877 := len(yyv4877) > 0 + yyv24877 := yyv4877 + yyrl4877, yyrt4877 = z.DecInferLen(yyl4877, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4877 { + if yyrl4877 <= cap(yyv4877) { + yyv4877 = yyv4877[:yyrl4877] } else { - yyv4822 = make([]LimitRange, yyrl4822) + yyv4877 = make([]LimitRange, yyrl4877) } } else { - yyv4822 = make([]LimitRange, yyrl4822) + yyv4877 = make([]LimitRange, yyrl4877) } - yyc4822 = true - yyrr4822 = len(yyv4822) - if yyrg4822 { - copy(yyv4822, yyv24822) + yyc4877 = true + yyrr4877 = len(yyv4877) + if yyrg4877 { + copy(yyv4877, yyv24877) } - } else if yyl4822 != len(yyv4822) { - yyv4822 = yyv4822[:yyl4822] - yyc4822 = true + } else if yyl4877 != len(yyv4877) { + yyv4877 = yyv4877[:yyl4877] + yyc4877 = true } - yyj4822 := 0 - for ; yyj4822 < yyrr4822; yyj4822++ { - yyh4822.ElemContainerState(yyj4822) + yyj4877 := 0 + for ; yyj4877 < yyrr4877; yyj4877++ { + yyh4877.ElemContainerState(yyj4877) if r.TryDecodeAsNil() { - yyv4822[yyj4822] = LimitRange{} + yyv4877[yyj4877] = LimitRange{} } else { - yyv4823 := &yyv4822[yyj4822] - yyv4823.CodecDecodeSelf(d) + yyv4878 := &yyv4877[yyj4877] + yyv4878.CodecDecodeSelf(d) } } - if yyrt4822 { - for ; yyj4822 < yyl4822; yyj4822++ { - yyv4822 = append(yyv4822, LimitRange{}) - yyh4822.ElemContainerState(yyj4822) + if yyrt4877 { + for ; yyj4877 < yyl4877; yyj4877++ { + yyv4877 = append(yyv4877, LimitRange{}) + yyh4877.ElemContainerState(yyj4877) if r.TryDecodeAsNil() { - yyv4822[yyj4822] = LimitRange{} + yyv4877[yyj4877] = LimitRange{} } else { - yyv4824 := &yyv4822[yyj4822] - yyv4824.CodecDecodeSelf(d) + yyv4879 := &yyv4877[yyj4877] + yyv4879.CodecDecodeSelf(d) } } } } else { - yyj4822 := 0 - for ; !r.CheckBreak(); yyj4822++ { + yyj4877 := 0 + for ; !r.CheckBreak(); yyj4877++ { - if yyj4822 >= len(yyv4822) { - yyv4822 = append(yyv4822, LimitRange{}) // var yyz4822 LimitRange - yyc4822 = true + if yyj4877 >= len(yyv4877) { + yyv4877 = append(yyv4877, LimitRange{}) // var yyz4877 LimitRange + yyc4877 = true } - yyh4822.ElemContainerState(yyj4822) - if yyj4822 < len(yyv4822) { + yyh4877.ElemContainerState(yyj4877) + if yyj4877 < len(yyv4877) { if r.TryDecodeAsNil() { - yyv4822[yyj4822] = LimitRange{} + yyv4877[yyj4877] = LimitRange{} } else { - yyv4825 := &yyv4822[yyj4822] - yyv4825.CodecDecodeSelf(d) + yyv4880 := &yyv4877[yyj4877] + yyv4880.CodecDecodeSelf(d) } } else { @@ -61766,17 +62419,17 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4822 < len(yyv4822) { - yyv4822 = yyv4822[:yyj4822] - yyc4822 = true - } else if yyj4822 == 0 && yyv4822 == nil { - yyv4822 = []LimitRange{} - yyc4822 = true + if yyj4877 < len(yyv4877) { + yyv4877 = yyv4877[:yyj4877] + yyc4877 = true + } else if yyj4877 == 0 && yyv4877 == nil { + yyv4877 = []LimitRange{} + yyc4877 = true } } - yyh4822.End() - if yyc4822 { - *v = yyv4822 + yyh4877.End() + if yyc4877 { + *v = yyv4877 } } @@ -61785,9 +62438,9 @@ func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4826 := range v { + for _, yyv4881 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4826.CodecEncodeSelf(e) + yyv4881.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61797,75 +62450,75 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4827 := *v - yyh4827, yyl4827 := z.DecSliceHelperStart() - var yyc4827 bool - if yyl4827 == 0 { - if yyv4827 == nil { - yyv4827 = []ResourceQuotaScope{} - yyc4827 = true - } else if len(yyv4827) != 0 { - yyv4827 = yyv4827[:0] - yyc4827 = true + yyv4882 := *v + yyh4882, yyl4882 := z.DecSliceHelperStart() + var yyc4882 bool + if yyl4882 == 0 { + if yyv4882 == nil { + yyv4882 = []ResourceQuotaScope{} + yyc4882 = true + } else if len(yyv4882) != 0 { + yyv4882 = yyv4882[:0] + yyc4882 = true } - } else if yyl4827 > 0 { - var yyrr4827, yyrl4827 int - var yyrt4827 bool - if yyl4827 > cap(yyv4827) { + } else if yyl4882 > 0 { + var yyrr4882, yyrl4882 int + var yyrt4882 bool + if yyl4882 > cap(yyv4882) { - yyrl4827, yyrt4827 = z.DecInferLen(yyl4827, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4827 { - if yyrl4827 <= cap(yyv4827) { - yyv4827 = yyv4827[:yyrl4827] + yyrl4882, yyrt4882 = z.DecInferLen(yyl4882, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4882 { + if yyrl4882 <= cap(yyv4882) { + yyv4882 = yyv4882[:yyrl4882] } else { - yyv4827 = make([]ResourceQuotaScope, yyrl4827) + yyv4882 = make([]ResourceQuotaScope, yyrl4882) } } else { - yyv4827 = make([]ResourceQuotaScope, yyrl4827) + yyv4882 = make([]ResourceQuotaScope, yyrl4882) } - yyc4827 = true - yyrr4827 = len(yyv4827) - } else if yyl4827 != len(yyv4827) { - yyv4827 = yyv4827[:yyl4827] - yyc4827 = true + yyc4882 = true + yyrr4882 = len(yyv4882) + } else if yyl4882 != len(yyv4882) { + yyv4882 = yyv4882[:yyl4882] + yyc4882 = true } - yyj4827 := 0 - for ; yyj4827 < yyrr4827; yyj4827++ { - yyh4827.ElemContainerState(yyj4827) + yyj4882 := 0 + for ; yyj4882 < yyrr4882; yyj4882++ { + yyh4882.ElemContainerState(yyj4882) if r.TryDecodeAsNil() { - yyv4827[yyj4827] = "" + yyv4882[yyj4882] = "" } else { - yyv4827[yyj4827] = ResourceQuotaScope(r.DecodeString()) + yyv4882[yyj4882] = ResourceQuotaScope(r.DecodeString()) } } - if yyrt4827 { - for ; yyj4827 < yyl4827; yyj4827++ { - yyv4827 = append(yyv4827, "") - yyh4827.ElemContainerState(yyj4827) + if yyrt4882 { + for ; yyj4882 < yyl4882; yyj4882++ { + yyv4882 = append(yyv4882, "") + yyh4882.ElemContainerState(yyj4882) if r.TryDecodeAsNil() { - yyv4827[yyj4827] = "" + yyv4882[yyj4882] = "" } else { - yyv4827[yyj4827] = ResourceQuotaScope(r.DecodeString()) + yyv4882[yyj4882] = ResourceQuotaScope(r.DecodeString()) } } } } else { - yyj4827 := 0 - for ; !r.CheckBreak(); yyj4827++ { + yyj4882 := 0 + for ; !r.CheckBreak(); yyj4882++ { - if yyj4827 >= len(yyv4827) { - yyv4827 = append(yyv4827, "") // var yyz4827 ResourceQuotaScope - yyc4827 = true + if yyj4882 >= len(yyv4882) { + yyv4882 = append(yyv4882, "") // var yyz4882 ResourceQuotaScope + yyc4882 = true } - yyh4827.ElemContainerState(yyj4827) - if yyj4827 < len(yyv4827) { + yyh4882.ElemContainerState(yyj4882) + if yyj4882 < len(yyv4882) { if r.TryDecodeAsNil() { - yyv4827[yyj4827] = "" + yyv4882[yyj4882] = "" } else { - yyv4827[yyj4827] = ResourceQuotaScope(r.DecodeString()) + yyv4882[yyj4882] = ResourceQuotaScope(r.DecodeString()) } } else { @@ -61873,17 +62526,17 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * } } - if yyj4827 < len(yyv4827) { - yyv4827 = yyv4827[:yyj4827] - yyc4827 = true - } else if yyj4827 == 0 && yyv4827 == nil { - yyv4827 = []ResourceQuotaScope{} - yyc4827 = true + if yyj4882 < len(yyv4882) { + yyv4882 = yyv4882[:yyj4882] + yyc4882 = true + } else if yyj4882 == 0 && yyv4882 == nil { + yyv4882 = []ResourceQuotaScope{} + yyc4882 = true } } - yyh4827.End() - if yyc4827 { - *v = yyv4827 + yyh4882.End() + if yyc4882 { + *v = yyv4882 } } @@ -61892,10 +62545,10 @@ func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4831 := range v { + for _, yyv4886 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4832 := &yyv4831 - yy4832.CodecEncodeSelf(e) + yy4887 := &yyv4886 + yy4887.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61905,83 +62558,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4833 := *v - yyh4833, yyl4833 := z.DecSliceHelperStart() - var yyc4833 bool - if yyl4833 == 0 { - if yyv4833 == nil { - yyv4833 = []ResourceQuota{} - yyc4833 = true - } else if len(yyv4833) != 0 { - yyv4833 = yyv4833[:0] - yyc4833 = true + yyv4888 := *v + yyh4888, yyl4888 := z.DecSliceHelperStart() + var yyc4888 bool + if yyl4888 == 0 { + if yyv4888 == nil { + yyv4888 = []ResourceQuota{} + yyc4888 = true + } else if len(yyv4888) != 0 { + yyv4888 = yyv4888[:0] + yyc4888 = true } - } else if yyl4833 > 0 { - var yyrr4833, yyrl4833 int - var yyrt4833 bool - if yyl4833 > cap(yyv4833) { + } else if yyl4888 > 0 { + var yyrr4888, yyrl4888 int + var yyrt4888 bool + if yyl4888 > cap(yyv4888) { - yyrg4833 := len(yyv4833) > 0 - yyv24833 := yyv4833 - yyrl4833, yyrt4833 = z.DecInferLen(yyl4833, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4833 { - if yyrl4833 <= cap(yyv4833) { - yyv4833 = yyv4833[:yyrl4833] + yyrg4888 := len(yyv4888) > 0 + yyv24888 := yyv4888 + yyrl4888, yyrt4888 = z.DecInferLen(yyl4888, z.DecBasicHandle().MaxInitLen, 304) + if yyrt4888 { + if yyrl4888 <= cap(yyv4888) { + yyv4888 = yyv4888[:yyrl4888] } else { - yyv4833 = make([]ResourceQuota, yyrl4833) + yyv4888 = make([]ResourceQuota, yyrl4888) } } else { - yyv4833 = make([]ResourceQuota, yyrl4833) + yyv4888 = make([]ResourceQuota, yyrl4888) } - yyc4833 = true - yyrr4833 = len(yyv4833) - if yyrg4833 { - copy(yyv4833, yyv24833) + yyc4888 = true + yyrr4888 = len(yyv4888) + if yyrg4888 { + copy(yyv4888, yyv24888) } - } else if yyl4833 != len(yyv4833) { - yyv4833 = yyv4833[:yyl4833] - yyc4833 = true + } else if yyl4888 != len(yyv4888) { + yyv4888 = yyv4888[:yyl4888] + yyc4888 = true } - yyj4833 := 0 - for ; yyj4833 < yyrr4833; yyj4833++ { - yyh4833.ElemContainerState(yyj4833) + yyj4888 := 0 + for ; yyj4888 < yyrr4888; yyj4888++ { + yyh4888.ElemContainerState(yyj4888) if r.TryDecodeAsNil() { - yyv4833[yyj4833] = ResourceQuota{} + yyv4888[yyj4888] = ResourceQuota{} } else { - yyv4834 := &yyv4833[yyj4833] - yyv4834.CodecDecodeSelf(d) + yyv4889 := &yyv4888[yyj4888] + yyv4889.CodecDecodeSelf(d) } } - if yyrt4833 { - for ; yyj4833 < yyl4833; yyj4833++ { - yyv4833 = append(yyv4833, ResourceQuota{}) - yyh4833.ElemContainerState(yyj4833) + if yyrt4888 { + for ; yyj4888 < yyl4888; yyj4888++ { + yyv4888 = append(yyv4888, ResourceQuota{}) + yyh4888.ElemContainerState(yyj4888) if r.TryDecodeAsNil() { - yyv4833[yyj4833] = ResourceQuota{} + yyv4888[yyj4888] = ResourceQuota{} } else { - yyv4835 := &yyv4833[yyj4833] - yyv4835.CodecDecodeSelf(d) + yyv4890 := &yyv4888[yyj4888] + yyv4890.CodecDecodeSelf(d) } } } } else { - yyj4833 := 0 - for ; !r.CheckBreak(); yyj4833++ { + yyj4888 := 0 + for ; !r.CheckBreak(); yyj4888++ { - if yyj4833 >= len(yyv4833) { - yyv4833 = append(yyv4833, ResourceQuota{}) // var yyz4833 ResourceQuota - yyc4833 = true + if yyj4888 >= len(yyv4888) { + yyv4888 = append(yyv4888, ResourceQuota{}) // var yyz4888 ResourceQuota + yyc4888 = true } - yyh4833.ElemContainerState(yyj4833) - if yyj4833 < len(yyv4833) { + yyh4888.ElemContainerState(yyj4888) + if yyj4888 < len(yyv4888) { if r.TryDecodeAsNil() { - yyv4833[yyj4833] = ResourceQuota{} + yyv4888[yyj4888] = ResourceQuota{} } else { - yyv4836 := &yyv4833[yyj4833] - yyv4836.CodecDecodeSelf(d) + yyv4891 := &yyv4888[yyj4888] + yyv4891.CodecDecodeSelf(d) } } else { @@ -61989,17 +62642,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4833 < len(yyv4833) { - yyv4833 = yyv4833[:yyj4833] - yyc4833 = true - } else if yyj4833 == 0 && yyv4833 == nil { - yyv4833 = []ResourceQuota{} - yyc4833 = true + if yyj4888 < len(yyv4888) { + yyv4888 = yyv4888[:yyj4888] + yyc4888 = true + } else if yyj4888 == 0 && yyv4888 == nil { + yyv4888 = []ResourceQuota{} + yyc4888 = true } } - yyh4833.End() - if yyc4833 { - *v = yyv4833 + yyh4888.End() + if yyc4888 { + *v = yyv4888 } } @@ -62008,23 +62661,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4837, yyv4837 := range v { + for yyk4892, yyv4892 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4838 := z.EncBinary() - _ = yym4838 + yym4893 := z.EncBinary() + _ = yym4893 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4837)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4892)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4837 == nil { + if yyv4892 == nil { r.EncodeNil() } else { - yym4839 := z.EncBinary() - _ = yym4839 + yym4894 := z.EncBinary() + _ = yym4894 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4837)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4892)) } } } @@ -62036,80 +62689,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4840 := *v - yyl4840 := r.ReadMapStart() - yybh4840 := z.DecBasicHandle() - if yyv4840 == nil { - yyrl4840, _ := z.DecInferLen(yyl4840, yybh4840.MaxInitLen, 40) - yyv4840 = make(map[string][]uint8, yyrl4840) - *v = yyv4840 + yyv4895 := *v + yyl4895 := r.ReadMapStart() + yybh4895 := z.DecBasicHandle() + if yyv4895 == nil { + yyrl4895, _ := z.DecInferLen(yyl4895, yybh4895.MaxInitLen, 40) + yyv4895 = make(map[string][]uint8, yyrl4895) + *v = yyv4895 } - var yymk4840 string - var yymv4840 []uint8 - var yymg4840 bool - if yybh4840.MapValueReset { - yymg4840 = true + var yymk4895 string + var yymv4895 []uint8 + var yymg4895 bool + if yybh4895.MapValueReset { + yymg4895 = true } - if yyl4840 > 0 { - for yyj4840 := 0; yyj4840 < yyl4840; yyj4840++ { + if yyl4895 > 0 { + for yyj4895 := 0; yyj4895 < yyl4895; yyj4895++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4840 = "" + yymk4895 = "" } else { - yymk4840 = string(r.DecodeString()) + yymk4895 = string(r.DecodeString()) } - if yymg4840 { - yymv4840 = yyv4840[yymk4840] + if yymg4895 { + yymv4895 = yyv4895[yymk4895] } else { - yymv4840 = nil + yymv4895 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4840 = nil + yymv4895 = nil } else { - yyv4842 := &yymv4840 - yym4843 := z.DecBinary() - _ = yym4843 + yyv4897 := &yymv4895 + yym4898 := z.DecBinary() + _ = yym4898 if false { } else { - *yyv4842 = r.DecodeBytes(*(*[]byte)(yyv4842), false, false) + *yyv4897 = r.DecodeBytes(*(*[]byte)(yyv4897), false, false) } } - if yyv4840 != nil { - yyv4840[yymk4840] = yymv4840 + if yyv4895 != nil { + yyv4895[yymk4895] = yymv4895 } } - } else if yyl4840 < 0 { - for yyj4840 := 0; !r.CheckBreak(); yyj4840++ { + } else if yyl4895 < 0 { + for yyj4895 := 0; !r.CheckBreak(); yyj4895++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4840 = "" + yymk4895 = "" } else { - yymk4840 = string(r.DecodeString()) + yymk4895 = string(r.DecodeString()) } - if yymg4840 { - yymv4840 = yyv4840[yymk4840] + if yymg4895 { + yymv4895 = yyv4895[yymk4895] } else { - yymv4840 = nil + yymv4895 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4840 = nil + yymv4895 = nil } else { - yyv4845 := &yymv4840 - yym4846 := z.DecBinary() - _ = yym4846 + yyv4900 := &yymv4895 + yym4901 := z.DecBinary() + _ = yym4901 if false { } else { - *yyv4845 = r.DecodeBytes(*(*[]byte)(yyv4845), false, false) + *yyv4900 = r.DecodeBytes(*(*[]byte)(yyv4900), false, false) } } - if yyv4840 != nil { - yyv4840[yymk4840] = yymv4840 + if yyv4895 != nil { + yyv4895[yymk4895] = yymv4895 } } } // else len==0: TODO: Should we clear map entries? @@ -62121,10 +62774,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4847 := range v { + for _, yyv4902 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4848 := &yyv4847 - yy4848.CodecEncodeSelf(e) + yy4903 := &yyv4902 + yy4903.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62134,83 +62787,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4849 := *v - yyh4849, yyl4849 := z.DecSliceHelperStart() - var yyc4849 bool - if yyl4849 == 0 { - if yyv4849 == nil { - yyv4849 = []Secret{} - yyc4849 = true - } else if len(yyv4849) != 0 { - yyv4849 = yyv4849[:0] - yyc4849 = true + yyv4904 := *v + yyh4904, yyl4904 := z.DecSliceHelperStart() + var yyc4904 bool + if yyl4904 == 0 { + if yyv4904 == nil { + yyv4904 = []Secret{} + yyc4904 = true + } else if len(yyv4904) != 0 { + yyv4904 = yyv4904[:0] + yyc4904 = true } - } else if yyl4849 > 0 { - var yyrr4849, yyrl4849 int - var yyrt4849 bool - if yyl4849 > cap(yyv4849) { + } else if yyl4904 > 0 { + var yyrr4904, yyrl4904 int + var yyrt4904 bool + if yyl4904 > cap(yyv4904) { - yyrg4849 := len(yyv4849) > 0 - yyv24849 := yyv4849 - yyrl4849, yyrt4849 = z.DecInferLen(yyl4849, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4849 { - if yyrl4849 <= cap(yyv4849) { - yyv4849 = yyv4849[:yyrl4849] + yyrg4904 := len(yyv4904) > 0 + yyv24904 := yyv4904 + yyrl4904, yyrt4904 = z.DecInferLen(yyl4904, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4904 { + if yyrl4904 <= cap(yyv4904) { + yyv4904 = yyv4904[:yyrl4904] } else { - yyv4849 = make([]Secret, yyrl4849) + yyv4904 = make([]Secret, yyrl4904) } } else { - yyv4849 = make([]Secret, yyrl4849) + yyv4904 = make([]Secret, yyrl4904) } - yyc4849 = true - yyrr4849 = len(yyv4849) - if yyrg4849 { - copy(yyv4849, yyv24849) + yyc4904 = true + yyrr4904 = len(yyv4904) + if yyrg4904 { + copy(yyv4904, yyv24904) } - } else if yyl4849 != len(yyv4849) { - yyv4849 = yyv4849[:yyl4849] - yyc4849 = true + } else if yyl4904 != len(yyv4904) { + yyv4904 = yyv4904[:yyl4904] + yyc4904 = true } - yyj4849 := 0 - for ; yyj4849 < yyrr4849; yyj4849++ { - yyh4849.ElemContainerState(yyj4849) + yyj4904 := 0 + for ; yyj4904 < yyrr4904; yyj4904++ { + yyh4904.ElemContainerState(yyj4904) if r.TryDecodeAsNil() { - yyv4849[yyj4849] = Secret{} + yyv4904[yyj4904] = Secret{} } else { - yyv4850 := &yyv4849[yyj4849] - yyv4850.CodecDecodeSelf(d) + yyv4905 := &yyv4904[yyj4904] + yyv4905.CodecDecodeSelf(d) } } - if yyrt4849 { - for ; yyj4849 < yyl4849; yyj4849++ { - yyv4849 = append(yyv4849, Secret{}) - yyh4849.ElemContainerState(yyj4849) + if yyrt4904 { + for ; yyj4904 < yyl4904; yyj4904++ { + yyv4904 = append(yyv4904, Secret{}) + yyh4904.ElemContainerState(yyj4904) if r.TryDecodeAsNil() { - yyv4849[yyj4849] = Secret{} + yyv4904[yyj4904] = Secret{} } else { - yyv4851 := &yyv4849[yyj4849] - yyv4851.CodecDecodeSelf(d) + yyv4906 := &yyv4904[yyj4904] + yyv4906.CodecDecodeSelf(d) } } } } else { - yyj4849 := 0 - for ; !r.CheckBreak(); yyj4849++ { + yyj4904 := 0 + for ; !r.CheckBreak(); yyj4904++ { - if yyj4849 >= len(yyv4849) { - yyv4849 = append(yyv4849, Secret{}) // var yyz4849 Secret - yyc4849 = true + if yyj4904 >= len(yyv4904) { + yyv4904 = append(yyv4904, Secret{}) // var yyz4904 Secret + yyc4904 = true } - yyh4849.ElemContainerState(yyj4849) - if yyj4849 < len(yyv4849) { + yyh4904.ElemContainerState(yyj4904) + if yyj4904 < len(yyv4904) { if r.TryDecodeAsNil() { - yyv4849[yyj4849] = Secret{} + yyv4904[yyj4904] = Secret{} } else { - yyv4852 := &yyv4849[yyj4849] - yyv4852.CodecDecodeSelf(d) + yyv4907 := &yyv4904[yyj4904] + yyv4907.CodecDecodeSelf(d) } } else { @@ -62218,17 +62871,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4849 < len(yyv4849) { - yyv4849 = yyv4849[:yyj4849] - yyc4849 = true - } else if yyj4849 == 0 && yyv4849 == nil { - yyv4849 = []Secret{} - yyc4849 = true + if yyj4904 < len(yyv4904) { + yyv4904 = yyv4904[:yyj4904] + yyc4904 = true + } else if yyj4904 == 0 && yyv4904 == nil { + yyv4904 = []Secret{} + yyc4904 = true } } - yyh4849.End() - if yyc4849 { - *v = yyv4849 + yyh4904.End() + if yyc4904 { + *v = yyv4904 } } @@ -62237,10 +62890,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4853 := range v { + for _, yyv4908 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4854 := &yyv4853 - yy4854.CodecEncodeSelf(e) + yy4909 := &yyv4908 + yy4909.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62250,83 +62903,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4855 := *v - yyh4855, yyl4855 := z.DecSliceHelperStart() - var yyc4855 bool - if yyl4855 == 0 { - if yyv4855 == nil { - yyv4855 = []ConfigMap{} - yyc4855 = true - } else if len(yyv4855) != 0 { - yyv4855 = yyv4855[:0] - yyc4855 = true + yyv4910 := *v + yyh4910, yyl4910 := z.DecSliceHelperStart() + var yyc4910 bool + if yyl4910 == 0 { + if yyv4910 == nil { + yyv4910 = []ConfigMap{} + yyc4910 = true + } else if len(yyv4910) != 0 { + yyv4910 = yyv4910[:0] + yyc4910 = true } - } else if yyl4855 > 0 { - var yyrr4855, yyrl4855 int - var yyrt4855 bool - if yyl4855 > cap(yyv4855) { + } else if yyl4910 > 0 { + var yyrr4910, yyrl4910 int + var yyrt4910 bool + if yyl4910 > cap(yyv4910) { - yyrg4855 := len(yyv4855) > 0 - yyv24855 := yyv4855 - yyrl4855, yyrt4855 = z.DecInferLen(yyl4855, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4855 { - if yyrl4855 <= cap(yyv4855) { - yyv4855 = yyv4855[:yyrl4855] + yyrg4910 := len(yyv4910) > 0 + yyv24910 := yyv4910 + yyrl4910, yyrt4910 = z.DecInferLen(yyl4910, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4910 { + if yyrl4910 <= cap(yyv4910) { + yyv4910 = yyv4910[:yyrl4910] } else { - yyv4855 = make([]ConfigMap, yyrl4855) + yyv4910 = make([]ConfigMap, yyrl4910) } } else { - yyv4855 = make([]ConfigMap, yyrl4855) + yyv4910 = make([]ConfigMap, yyrl4910) } - yyc4855 = true - yyrr4855 = len(yyv4855) - if yyrg4855 { - copy(yyv4855, yyv24855) + yyc4910 = true + yyrr4910 = len(yyv4910) + if yyrg4910 { + copy(yyv4910, yyv24910) } - } else if yyl4855 != len(yyv4855) { - yyv4855 = yyv4855[:yyl4855] - yyc4855 = true + } else if yyl4910 != len(yyv4910) { + yyv4910 = yyv4910[:yyl4910] + yyc4910 = true } - yyj4855 := 0 - for ; yyj4855 < yyrr4855; yyj4855++ { - yyh4855.ElemContainerState(yyj4855) + yyj4910 := 0 + for ; yyj4910 < yyrr4910; yyj4910++ { + yyh4910.ElemContainerState(yyj4910) if r.TryDecodeAsNil() { - yyv4855[yyj4855] = ConfigMap{} + yyv4910[yyj4910] = ConfigMap{} } else { - yyv4856 := &yyv4855[yyj4855] - yyv4856.CodecDecodeSelf(d) + yyv4911 := &yyv4910[yyj4910] + yyv4911.CodecDecodeSelf(d) } } - if yyrt4855 { - for ; yyj4855 < yyl4855; yyj4855++ { - yyv4855 = append(yyv4855, ConfigMap{}) - yyh4855.ElemContainerState(yyj4855) + if yyrt4910 { + for ; yyj4910 < yyl4910; yyj4910++ { + yyv4910 = append(yyv4910, ConfigMap{}) + yyh4910.ElemContainerState(yyj4910) if r.TryDecodeAsNil() { - yyv4855[yyj4855] = ConfigMap{} + yyv4910[yyj4910] = ConfigMap{} } else { - yyv4857 := &yyv4855[yyj4855] - yyv4857.CodecDecodeSelf(d) + yyv4912 := &yyv4910[yyj4910] + yyv4912.CodecDecodeSelf(d) } } } } else { - yyj4855 := 0 - for ; !r.CheckBreak(); yyj4855++ { + yyj4910 := 0 + for ; !r.CheckBreak(); yyj4910++ { - if yyj4855 >= len(yyv4855) { - yyv4855 = append(yyv4855, ConfigMap{}) // var yyz4855 ConfigMap - yyc4855 = true + if yyj4910 >= len(yyv4910) { + yyv4910 = append(yyv4910, ConfigMap{}) // var yyz4910 ConfigMap + yyc4910 = true } - yyh4855.ElemContainerState(yyj4855) - if yyj4855 < len(yyv4855) { + yyh4910.ElemContainerState(yyj4910) + if yyj4910 < len(yyv4910) { if r.TryDecodeAsNil() { - yyv4855[yyj4855] = ConfigMap{} + yyv4910[yyj4910] = ConfigMap{} } else { - yyv4858 := &yyv4855[yyj4855] - yyv4858.CodecDecodeSelf(d) + yyv4913 := &yyv4910[yyj4910] + yyv4913.CodecDecodeSelf(d) } } else { @@ -62334,17 +62987,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4855 < len(yyv4855) { - yyv4855 = yyv4855[:yyj4855] - yyc4855 = true - } else if yyj4855 == 0 && yyv4855 == nil { - yyv4855 = []ConfigMap{} - yyc4855 = true + if yyj4910 < len(yyv4910) { + yyv4910 = yyv4910[:yyj4910] + yyc4910 = true + } else if yyj4910 == 0 && yyv4910 == nil { + yyv4910 = []ConfigMap{} + yyc4910 = true } } - yyh4855.End() - if yyc4855 { - *v = yyv4855 + yyh4910.End() + if yyc4910 { + *v = yyv4910 } } @@ -62353,10 +63006,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4859 := range v { + for _, yyv4914 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4860 := &yyv4859 - yy4860.CodecEncodeSelf(e) + yy4915 := &yyv4914 + yy4915.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62366,83 +63019,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4861 := *v - yyh4861, yyl4861 := z.DecSliceHelperStart() - var yyc4861 bool - if yyl4861 == 0 { - if yyv4861 == nil { - yyv4861 = []ComponentCondition{} - yyc4861 = true - } else if len(yyv4861) != 0 { - yyv4861 = yyv4861[:0] - yyc4861 = true + yyv4916 := *v + yyh4916, yyl4916 := z.DecSliceHelperStart() + var yyc4916 bool + if yyl4916 == 0 { + if yyv4916 == nil { + yyv4916 = []ComponentCondition{} + yyc4916 = true + } else if len(yyv4916) != 0 { + yyv4916 = yyv4916[:0] + yyc4916 = true } - } else if yyl4861 > 0 { - var yyrr4861, yyrl4861 int - var yyrt4861 bool - if yyl4861 > cap(yyv4861) { + } else if yyl4916 > 0 { + var yyrr4916, yyrl4916 int + var yyrt4916 bool + if yyl4916 > cap(yyv4916) { - yyrg4861 := len(yyv4861) > 0 - yyv24861 := yyv4861 - yyrl4861, yyrt4861 = z.DecInferLen(yyl4861, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4861 { - if yyrl4861 <= cap(yyv4861) { - yyv4861 = yyv4861[:yyrl4861] + yyrg4916 := len(yyv4916) > 0 + yyv24916 := yyv4916 + yyrl4916, yyrt4916 = z.DecInferLen(yyl4916, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4916 { + if yyrl4916 <= cap(yyv4916) { + yyv4916 = yyv4916[:yyrl4916] } else { - yyv4861 = make([]ComponentCondition, yyrl4861) + yyv4916 = make([]ComponentCondition, yyrl4916) } } else { - yyv4861 = make([]ComponentCondition, yyrl4861) + yyv4916 = make([]ComponentCondition, yyrl4916) } - yyc4861 = true - yyrr4861 = len(yyv4861) - if yyrg4861 { - copy(yyv4861, yyv24861) + yyc4916 = true + yyrr4916 = len(yyv4916) + if yyrg4916 { + copy(yyv4916, yyv24916) } - } else if yyl4861 != len(yyv4861) { - yyv4861 = yyv4861[:yyl4861] - yyc4861 = true + } else if yyl4916 != len(yyv4916) { + yyv4916 = yyv4916[:yyl4916] + yyc4916 = true } - yyj4861 := 0 - for ; yyj4861 < yyrr4861; yyj4861++ { - yyh4861.ElemContainerState(yyj4861) + yyj4916 := 0 + for ; yyj4916 < yyrr4916; yyj4916++ { + yyh4916.ElemContainerState(yyj4916) if r.TryDecodeAsNil() { - yyv4861[yyj4861] = ComponentCondition{} + yyv4916[yyj4916] = ComponentCondition{} } else { - yyv4862 := &yyv4861[yyj4861] - yyv4862.CodecDecodeSelf(d) + yyv4917 := &yyv4916[yyj4916] + yyv4917.CodecDecodeSelf(d) } } - if yyrt4861 { - for ; yyj4861 < yyl4861; yyj4861++ { - yyv4861 = append(yyv4861, ComponentCondition{}) - yyh4861.ElemContainerState(yyj4861) + if yyrt4916 { + for ; yyj4916 < yyl4916; yyj4916++ { + yyv4916 = append(yyv4916, ComponentCondition{}) + yyh4916.ElemContainerState(yyj4916) if r.TryDecodeAsNil() { - yyv4861[yyj4861] = ComponentCondition{} + yyv4916[yyj4916] = ComponentCondition{} } else { - yyv4863 := &yyv4861[yyj4861] - yyv4863.CodecDecodeSelf(d) + yyv4918 := &yyv4916[yyj4916] + yyv4918.CodecDecodeSelf(d) } } } } else { - yyj4861 := 0 - for ; !r.CheckBreak(); yyj4861++ { + yyj4916 := 0 + for ; !r.CheckBreak(); yyj4916++ { - if yyj4861 >= len(yyv4861) { - yyv4861 = append(yyv4861, ComponentCondition{}) // var yyz4861 ComponentCondition - yyc4861 = true + if yyj4916 >= len(yyv4916) { + yyv4916 = append(yyv4916, ComponentCondition{}) // var yyz4916 ComponentCondition + yyc4916 = true } - yyh4861.ElemContainerState(yyj4861) - if yyj4861 < len(yyv4861) { + yyh4916.ElemContainerState(yyj4916) + if yyj4916 < len(yyv4916) { if r.TryDecodeAsNil() { - yyv4861[yyj4861] = ComponentCondition{} + yyv4916[yyj4916] = ComponentCondition{} } else { - yyv4864 := &yyv4861[yyj4861] - yyv4864.CodecDecodeSelf(d) + yyv4919 := &yyv4916[yyj4916] + yyv4919.CodecDecodeSelf(d) } } else { @@ -62450,17 +63103,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4861 < len(yyv4861) { - yyv4861 = yyv4861[:yyj4861] - yyc4861 = true - } else if yyj4861 == 0 && yyv4861 == nil { - yyv4861 = []ComponentCondition{} - yyc4861 = true + if yyj4916 < len(yyv4916) { + yyv4916 = yyv4916[:yyj4916] + yyc4916 = true + } else if yyj4916 == 0 && yyv4916 == nil { + yyv4916 = []ComponentCondition{} + yyc4916 = true } } - yyh4861.End() - if yyc4861 { - *v = yyv4861 + yyh4916.End() + if yyc4916 { + *v = yyv4916 } } @@ -62469,10 +63122,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4865 := range v { + for _, yyv4920 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4866 := &yyv4865 - yy4866.CodecEncodeSelf(e) + yy4921 := &yyv4920 + yy4921.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62482,83 +63135,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4867 := *v - yyh4867, yyl4867 := z.DecSliceHelperStart() - var yyc4867 bool - if yyl4867 == 0 { - if yyv4867 == nil { - yyv4867 = []ComponentStatus{} - yyc4867 = true - } else if len(yyv4867) != 0 { - yyv4867 = yyv4867[:0] - yyc4867 = true + yyv4922 := *v + yyh4922, yyl4922 := z.DecSliceHelperStart() + var yyc4922 bool + if yyl4922 == 0 { + if yyv4922 == nil { + yyv4922 = []ComponentStatus{} + yyc4922 = true + } else if len(yyv4922) != 0 { + yyv4922 = yyv4922[:0] + yyc4922 = true } - } else if yyl4867 > 0 { - var yyrr4867, yyrl4867 int - var yyrt4867 bool - if yyl4867 > cap(yyv4867) { + } else if yyl4922 > 0 { + var yyrr4922, yyrl4922 int + var yyrt4922 bool + if yyl4922 > cap(yyv4922) { - yyrg4867 := len(yyv4867) > 0 - yyv24867 := yyv4867 - yyrl4867, yyrt4867 = z.DecInferLen(yyl4867, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4867 { - if yyrl4867 <= cap(yyv4867) { - yyv4867 = yyv4867[:yyrl4867] + yyrg4922 := len(yyv4922) > 0 + yyv24922 := yyv4922 + yyrl4922, yyrt4922 = z.DecInferLen(yyl4922, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4922 { + if yyrl4922 <= cap(yyv4922) { + yyv4922 = yyv4922[:yyrl4922] } else { - yyv4867 = make([]ComponentStatus, yyrl4867) + yyv4922 = make([]ComponentStatus, yyrl4922) } } else { - yyv4867 = make([]ComponentStatus, yyrl4867) + yyv4922 = make([]ComponentStatus, yyrl4922) } - yyc4867 = true - yyrr4867 = len(yyv4867) - if yyrg4867 { - copy(yyv4867, yyv24867) + yyc4922 = true + yyrr4922 = len(yyv4922) + if yyrg4922 { + copy(yyv4922, yyv24922) } - } else if yyl4867 != len(yyv4867) { - yyv4867 = yyv4867[:yyl4867] - yyc4867 = true + } else if yyl4922 != len(yyv4922) { + yyv4922 = yyv4922[:yyl4922] + yyc4922 = true } - yyj4867 := 0 - for ; yyj4867 < yyrr4867; yyj4867++ { - yyh4867.ElemContainerState(yyj4867) + yyj4922 := 0 + for ; yyj4922 < yyrr4922; yyj4922++ { + yyh4922.ElemContainerState(yyj4922) if r.TryDecodeAsNil() { - yyv4867[yyj4867] = ComponentStatus{} + yyv4922[yyj4922] = ComponentStatus{} } else { - yyv4868 := &yyv4867[yyj4867] - yyv4868.CodecDecodeSelf(d) + yyv4923 := &yyv4922[yyj4922] + yyv4923.CodecDecodeSelf(d) } } - if yyrt4867 { - for ; yyj4867 < yyl4867; yyj4867++ { - yyv4867 = append(yyv4867, ComponentStatus{}) - yyh4867.ElemContainerState(yyj4867) + if yyrt4922 { + for ; yyj4922 < yyl4922; yyj4922++ { + yyv4922 = append(yyv4922, ComponentStatus{}) + yyh4922.ElemContainerState(yyj4922) if r.TryDecodeAsNil() { - yyv4867[yyj4867] = ComponentStatus{} + yyv4922[yyj4922] = ComponentStatus{} } else { - yyv4869 := &yyv4867[yyj4867] - yyv4869.CodecDecodeSelf(d) + yyv4924 := &yyv4922[yyj4922] + yyv4924.CodecDecodeSelf(d) } } } } else { - yyj4867 := 0 - for ; !r.CheckBreak(); yyj4867++ { + yyj4922 := 0 + for ; !r.CheckBreak(); yyj4922++ { - if yyj4867 >= len(yyv4867) { - yyv4867 = append(yyv4867, ComponentStatus{}) // var yyz4867 ComponentStatus - yyc4867 = true + if yyj4922 >= len(yyv4922) { + yyv4922 = append(yyv4922, ComponentStatus{}) // var yyz4922 ComponentStatus + yyc4922 = true } - yyh4867.ElemContainerState(yyj4867) - if yyj4867 < len(yyv4867) { + yyh4922.ElemContainerState(yyj4922) + if yyj4922 < len(yyv4922) { if r.TryDecodeAsNil() { - yyv4867[yyj4867] = ComponentStatus{} + yyv4922[yyj4922] = ComponentStatus{} } else { - yyv4870 := &yyv4867[yyj4867] - yyv4870.CodecDecodeSelf(d) + yyv4925 := &yyv4922[yyj4922] + yyv4925.CodecDecodeSelf(d) } } else { @@ -62566,16 +63219,16 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4867 < len(yyv4867) { - yyv4867 = yyv4867[:yyj4867] - yyc4867 = true - } else if yyj4867 == 0 && yyv4867 == nil { - yyv4867 = []ComponentStatus{} - yyc4867 = true + if yyj4922 < len(yyv4922) { + yyv4922 = yyv4922[:yyj4922] + yyc4922 = true + } else if yyj4922 == 0 && yyv4922 == nil { + yyv4922 = []ComponentStatus{} + yyc4922 = true } } - yyh4867.End() - if yyc4867 { - *v = yyv4867 + yyh4922.End() + if yyc4922 { + *v = yyv4922 } } diff --git a/pkg/api/v1/generated.pb.go b/pkg/api/v1/generated.pb.go index d90e6d4623df..164a774715ea 100644 --- a/pkg/api/v1/generated.pb.go +++ b/pkg/api/v1/generated.pb.go @@ -147,6 +147,7 @@ limitations under the License. RBDVolumeSource RangeAllocation ReplicationController + ReplicationControllerCondition ReplicationControllerList ReplicationControllerSpec ReplicationControllerStatus @@ -715,142 +716,148 @@ func (m *ReplicationController) Reset() { *m = ReplicationCon func (*ReplicationController) ProtoMessage() {} func (*ReplicationController) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{121} } +func (m *ReplicationControllerCondition) Reset() { *m = ReplicationControllerCondition{} } +func (*ReplicationControllerCondition) ProtoMessage() {} +func (*ReplicationControllerCondition) Descriptor() ([]byte, []int) { + return fileDescriptorGenerated, []int{122} +} + func (m *ReplicationControllerList) Reset() { *m = ReplicationControllerList{} } func (*ReplicationControllerList) ProtoMessage() {} func (*ReplicationControllerList) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{122} + return fileDescriptorGenerated, []int{123} } func (m *ReplicationControllerSpec) Reset() { *m = ReplicationControllerSpec{} } func (*ReplicationControllerSpec) ProtoMessage() {} func (*ReplicationControllerSpec) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{123} + return fileDescriptorGenerated, []int{124} } func (m *ReplicationControllerStatus) Reset() { *m = ReplicationControllerStatus{} } func (*ReplicationControllerStatus) ProtoMessage() {} func (*ReplicationControllerStatus) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{124} + return fileDescriptorGenerated, []int{125} } func (m *ResourceFieldSelector) Reset() { *m = ResourceFieldSelector{} } func (*ResourceFieldSelector) ProtoMessage() {} -func (*ResourceFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{125} } +func (*ResourceFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{126} } func (m *ResourceQuota) Reset() { *m = ResourceQuota{} } func (*ResourceQuota) ProtoMessage() {} -func (*ResourceQuota) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{126} } +func (*ResourceQuota) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{127} } func (m *ResourceQuotaList) Reset() { *m = ResourceQuotaList{} } func (*ResourceQuotaList) ProtoMessage() {} -func (*ResourceQuotaList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{127} } +func (*ResourceQuotaList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{128} } func (m *ResourceQuotaSpec) Reset() { *m = ResourceQuotaSpec{} } func (*ResourceQuotaSpec) ProtoMessage() {} -func (*ResourceQuotaSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{128} } +func (*ResourceQuotaSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{129} } func (m *ResourceQuotaStatus) Reset() { *m = ResourceQuotaStatus{} } func (*ResourceQuotaStatus) ProtoMessage() {} -func (*ResourceQuotaStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{129} } +func (*ResourceQuotaStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{130} } func (m *ResourceRequirements) Reset() { *m = ResourceRequirements{} } func (*ResourceRequirements) ProtoMessage() {} -func (*ResourceRequirements) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{130} } +func (*ResourceRequirements) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{131} } func (m *SELinuxOptions) Reset() { *m = SELinuxOptions{} } func (*SELinuxOptions) ProtoMessage() {} -func (*SELinuxOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{131} } +func (*SELinuxOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{132} } func (m *Secret) Reset() { *m = Secret{} } func (*Secret) ProtoMessage() {} -func (*Secret) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{132} } +func (*Secret) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{133} } func (m *SecretKeySelector) Reset() { *m = SecretKeySelector{} } func (*SecretKeySelector) ProtoMessage() {} -func (*SecretKeySelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{133} } +func (*SecretKeySelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{134} } func (m *SecretList) Reset() { *m = SecretList{} } func (*SecretList) ProtoMessage() {} -func (*SecretList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{134} } +func (*SecretList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{135} } func (m *SecretVolumeSource) Reset() { *m = SecretVolumeSource{} } func (*SecretVolumeSource) ProtoMessage() {} -func (*SecretVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{135} } +func (*SecretVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{136} } func (m *SecurityContext) Reset() { *m = SecurityContext{} } func (*SecurityContext) ProtoMessage() {} -func (*SecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{136} } +func (*SecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{137} } func (m *SerializedReference) Reset() { *m = SerializedReference{} } func (*SerializedReference) ProtoMessage() {} -func (*SerializedReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{137} } +func (*SerializedReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{138} } func (m *Service) Reset() { *m = Service{} } func (*Service) ProtoMessage() {} -func (*Service) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{138} } +func (*Service) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{139} } func (m *ServiceAccount) Reset() { *m = ServiceAccount{} } func (*ServiceAccount) ProtoMessage() {} -func (*ServiceAccount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{139} } +func (*ServiceAccount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{140} } func (m *ServiceAccountList) Reset() { *m = ServiceAccountList{} } func (*ServiceAccountList) ProtoMessage() {} -func (*ServiceAccountList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{140} } +func (*ServiceAccountList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{141} } func (m *ServiceList) Reset() { *m = ServiceList{} } func (*ServiceList) ProtoMessage() {} -func (*ServiceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{141} } +func (*ServiceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{142} } func (m *ServicePort) Reset() { *m = ServicePort{} } func (*ServicePort) ProtoMessage() {} -func (*ServicePort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{142} } +func (*ServicePort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{143} } func (m *ServiceProxyOptions) Reset() { *m = ServiceProxyOptions{} } func (*ServiceProxyOptions) ProtoMessage() {} -func (*ServiceProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{143} } +func (*ServiceProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{144} } func (m *ServiceSpec) Reset() { *m = ServiceSpec{} } func (*ServiceSpec) ProtoMessage() {} -func (*ServiceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{144} } +func (*ServiceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{145} } func (m *ServiceStatus) Reset() { *m = ServiceStatus{} } func (*ServiceStatus) ProtoMessage() {} -func (*ServiceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{145} } +func (*ServiceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{146} } func (m *TCPSocketAction) Reset() { *m = TCPSocketAction{} } func (*TCPSocketAction) ProtoMessage() {} -func (*TCPSocketAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{146} } +func (*TCPSocketAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{147} } func (m *Taint) Reset() { *m = Taint{} } func (*Taint) ProtoMessage() {} -func (*Taint) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{147} } +func (*Taint) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{148} } func (m *Toleration) Reset() { *m = Toleration{} } func (*Toleration) ProtoMessage() {} -func (*Toleration) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{148} } +func (*Toleration) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{149} } func (m *Volume) Reset() { *m = Volume{} } func (*Volume) ProtoMessage() {} -func (*Volume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{149} } +func (*Volume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{150} } func (m *VolumeMount) Reset() { *m = VolumeMount{} } func (*VolumeMount) ProtoMessage() {} -func (*VolumeMount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{150} } +func (*VolumeMount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{151} } func (m *VolumeSource) Reset() { *m = VolumeSource{} } func (*VolumeSource) ProtoMessage() {} -func (*VolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{151} } +func (*VolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{152} } func (m *VsphereVirtualDiskVolumeSource) Reset() { *m = VsphereVirtualDiskVolumeSource{} } func (*VsphereVirtualDiskVolumeSource) ProtoMessage() {} func (*VsphereVirtualDiskVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{152} + return fileDescriptorGenerated, []int{153} } func (m *WeightedPodAffinityTerm) Reset() { *m = WeightedPodAffinityTerm{} } func (*WeightedPodAffinityTerm) ProtoMessage() {} func (*WeightedPodAffinityTerm) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{153} + return fileDescriptorGenerated, []int{154} } func init() { @@ -976,6 +983,7 @@ func init() { proto.RegisterType((*RBDVolumeSource)(nil), "k8s.io.kubernetes.pkg.api.v1.RBDVolumeSource") proto.RegisterType((*RangeAllocation)(nil), "k8s.io.kubernetes.pkg.api.v1.RangeAllocation") proto.RegisterType((*ReplicationController)(nil), "k8s.io.kubernetes.pkg.api.v1.ReplicationController") + proto.RegisterType((*ReplicationControllerCondition)(nil), "k8s.io.kubernetes.pkg.api.v1.ReplicationControllerCondition") proto.RegisterType((*ReplicationControllerList)(nil), "k8s.io.kubernetes.pkg.api.v1.ReplicationControllerList") proto.RegisterType((*ReplicationControllerSpec)(nil), "k8s.io.kubernetes.pkg.api.v1.ReplicationControllerSpec") proto.RegisterType((*ReplicationControllerStatus)(nil), "k8s.io.kubernetes.pkg.api.v1.ReplicationControllerStatus") @@ -6541,6 +6549,56 @@ func (m *ReplicationController) MarshalTo(data []byte) (int, error) { return i, nil } +func (m *ReplicationControllerCondition) Marshal() (data []byte, err error) { + size := m.Size() + data = make([]byte, size) + n, err := m.MarshalTo(data) + if err != nil { + return nil, err + } + return data[:n], nil +} + +func (m *ReplicationControllerCondition) MarshalTo(data []byte) (int, error) { + var i int + _ = i + var l int + _ = l + data[i] = 0xa + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.Type))) + i += copy(data[i:], m.Type) + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.Status))) + i += copy(data[i:], m.Status) + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.LastProbeTime.Size())) + n135, err := m.LastProbeTime.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n135 + data[i] = 0x22 + i++ + i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) + n136, err := m.LastTransitionTime.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n136 + data[i] = 0x2a + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) + i += copy(data[i:], m.Reason) + data[i] = 0x32 + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.Message))) + i += copy(data[i:], m.Message) + return i, nil +} + func (m *ReplicationControllerList) Marshal() (data []byte, err error) { size := m.Size() data = make([]byte, size) @@ -6559,11 +6617,11 @@ func (m *ReplicationControllerList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n135, err := m.ListMeta.MarshalTo(data[i:]) + n137, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n135 + i += n137 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -6620,11 +6678,11 @@ func (m *ReplicationControllerSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n136, err := m.Template.MarshalTo(data[i:]) + n138, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n136 + i += n138 } data[i] = 0x20 i++ @@ -6662,6 +6720,18 @@ func (m *ReplicationControllerStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x28 i++ i = encodeVarintGenerated(data, i, uint64(m.AvailableReplicas)) + if len(m.Conditions) > 0 { + for _, msg := range m.Conditions { + data[i] = 0x32 + i++ + i = encodeVarintGenerated(data, i, uint64(msg.Size())) + n, err := msg.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n + } + } return i, nil } @@ -6691,11 +6761,11 @@ func (m *ResourceFieldSelector) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Divisor.Size())) - n137, err := m.Divisor.MarshalTo(data[i:]) + n139, err := m.Divisor.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n137 + i += n139 return i, nil } @@ -6717,27 +6787,27 @@ func (m *ResourceQuota) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n138, err := m.ObjectMeta.MarshalTo(data[i:]) + n140, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n138 + i += n140 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n139, err := m.Spec.MarshalTo(data[i:]) + n141, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n139 + i += n141 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n140, err := m.Status.MarshalTo(data[i:]) + n142, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n140 + i += n142 return i, nil } @@ -6759,11 +6829,11 @@ func (m *ResourceQuotaList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n141, err := m.ListMeta.MarshalTo(data[i:]) + n143, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n141 + i += n143 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -6809,11 +6879,11 @@ func (m *ResourceQuotaSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n142, err := (&v).MarshalTo(data[i:]) + n144, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n142 + i += n144 } } if len(m.Scopes) > 0 { @@ -6864,11 +6934,11 @@ func (m *ResourceQuotaStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n143, err := (&v).MarshalTo(data[i:]) + n145, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n143 + i += n145 } } if len(m.Used) > 0 { @@ -6886,11 +6956,11 @@ func (m *ResourceQuotaStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n144, err := (&v).MarshalTo(data[i:]) + n146, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n144 + i += n146 } } return i, nil @@ -6926,11 +6996,11 @@ func (m *ResourceRequirements) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n145, err := (&v).MarshalTo(data[i:]) + n147, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n145 + i += n147 } } if len(m.Requests) > 0 { @@ -6948,11 +7018,11 @@ func (m *ResourceRequirements) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n146, err := (&v).MarshalTo(data[i:]) + n148, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n146 + i += n148 } } return i, nil @@ -7010,11 +7080,11 @@ func (m *Secret) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n147, err := m.ObjectMeta.MarshalTo(data[i:]) + n149, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n147 + i += n149 if len(m.Data) > 0 { for k := range m.Data { data[i] = 0x12 @@ -7074,11 +7144,11 @@ func (m *SecretKeySelector) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LocalObjectReference.Size())) - n148, err := m.LocalObjectReference.MarshalTo(data[i:]) + n150, err := m.LocalObjectReference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n148 + i += n150 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Key))) @@ -7104,11 +7174,11 @@ func (m *SecretList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n149, err := m.ListMeta.MarshalTo(data[i:]) + n151, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n149 + i += n151 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7182,11 +7252,11 @@ func (m *SecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Capabilities.Size())) - n150, err := m.Capabilities.MarshalTo(data[i:]) + n152, err := m.Capabilities.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n150 + i += n152 } if m.Privileged != nil { data[i] = 0x10 @@ -7202,11 +7272,11 @@ func (m *SecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.SELinuxOptions.Size())) - n151, err := m.SELinuxOptions.MarshalTo(data[i:]) + n153, err := m.SELinuxOptions.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n151 + i += n153 } if m.RunAsUser != nil { data[i] = 0x20 @@ -7254,11 +7324,11 @@ func (m *SerializedReference) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Reference.Size())) - n152, err := m.Reference.MarshalTo(data[i:]) + n154, err := m.Reference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n152 + i += n154 return i, nil } @@ -7280,27 +7350,27 @@ func (m *Service) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n153, err := m.ObjectMeta.MarshalTo(data[i:]) + n155, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n153 + i += n155 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n154, err := m.Spec.MarshalTo(data[i:]) + n156, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n154 + i += n156 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n155, err := m.Status.MarshalTo(data[i:]) + n157, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n155 + i += n157 return i, nil } @@ -7322,11 +7392,11 @@ func (m *ServiceAccount) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n156, err := m.ObjectMeta.MarshalTo(data[i:]) + n158, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n156 + i += n158 if len(m.Secrets) > 0 { for _, msg := range m.Secrets { data[i] = 0x12 @@ -7372,11 +7442,11 @@ func (m *ServiceAccountList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n157, err := m.ListMeta.MarshalTo(data[i:]) + n159, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n157 + i += n159 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7410,11 +7480,11 @@ func (m *ServiceList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n158, err := m.ListMeta.MarshalTo(data[i:]) + n160, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n158 + i += n160 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7459,11 +7529,11 @@ func (m *ServicePort) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.TargetPort.Size())) - n159, err := m.TargetPort.MarshalTo(data[i:]) + n161, err := m.TargetPort.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n159 + i += n161 data[i] = 0x28 i++ i = encodeVarintGenerated(data, i, uint64(m.NodePort)) @@ -7622,11 +7692,11 @@ func (m *ServiceStatus) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LoadBalancer.Size())) - n160, err := m.LoadBalancer.MarshalTo(data[i:]) + n162, err := m.LoadBalancer.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n160 + i += n162 return i, nil } @@ -7648,11 +7718,11 @@ func (m *TCPSocketAction) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Port.Size())) - n161, err := m.Port.MarshalTo(data[i:]) + n163, err := m.Port.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n161 + i += n163 return i, nil } @@ -7742,11 +7812,11 @@ func (m *Volume) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.VolumeSource.Size())) - n162, err := m.VolumeSource.MarshalTo(data[i:]) + n164, err := m.VolumeSource.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n162 + i += n164 return i, nil } @@ -7807,151 +7877,151 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.HostPath.Size())) - n163, err := m.HostPath.MarshalTo(data[i:]) + n165, err := m.HostPath.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n163 + i += n165 } if m.EmptyDir != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.EmptyDir.Size())) - n164, err := m.EmptyDir.MarshalTo(data[i:]) + n166, err := m.EmptyDir.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n164 + i += n166 } if m.GCEPersistentDisk != nil { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.GCEPersistentDisk.Size())) - n165, err := m.GCEPersistentDisk.MarshalTo(data[i:]) + n167, err := m.GCEPersistentDisk.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n165 + i += n167 } if m.AWSElasticBlockStore != nil { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.AWSElasticBlockStore.Size())) - n166, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) + n168, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n166 + i += n168 } if m.GitRepo != nil { data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(m.GitRepo.Size())) - n167, err := m.GitRepo.MarshalTo(data[i:]) + n169, err := m.GitRepo.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n167 + i += n169 } if m.Secret != nil { data[i] = 0x32 i++ i = encodeVarintGenerated(data, i, uint64(m.Secret.Size())) - n168, err := m.Secret.MarshalTo(data[i:]) + n170, err := m.Secret.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n168 + i += n170 } if m.NFS != nil { data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.NFS.Size())) - n169, err := m.NFS.MarshalTo(data[i:]) + n171, err := m.NFS.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n169 + i += n171 } if m.ISCSI != nil { data[i] = 0x42 i++ i = encodeVarintGenerated(data, i, uint64(m.ISCSI.Size())) - n170, err := m.ISCSI.MarshalTo(data[i:]) + n172, err := m.ISCSI.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n170 + i += n172 } if m.Glusterfs != nil { data[i] = 0x4a i++ i = encodeVarintGenerated(data, i, uint64(m.Glusterfs.Size())) - n171, err := m.Glusterfs.MarshalTo(data[i:]) + n173, err := m.Glusterfs.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n171 + i += n173 } if m.PersistentVolumeClaim != nil { data[i] = 0x52 i++ i = encodeVarintGenerated(data, i, uint64(m.PersistentVolumeClaim.Size())) - n172, err := m.PersistentVolumeClaim.MarshalTo(data[i:]) + n174, err := m.PersistentVolumeClaim.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n172 + i += n174 } if m.RBD != nil { data[i] = 0x5a i++ i = encodeVarintGenerated(data, i, uint64(m.RBD.Size())) - n173, err := m.RBD.MarshalTo(data[i:]) + n175, err := m.RBD.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n173 + i += n175 } if m.FlexVolume != nil { data[i] = 0x62 i++ i = encodeVarintGenerated(data, i, uint64(m.FlexVolume.Size())) - n174, err := m.FlexVolume.MarshalTo(data[i:]) + n176, err := m.FlexVolume.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n174 + i += n176 } if m.Cinder != nil { data[i] = 0x6a i++ i = encodeVarintGenerated(data, i, uint64(m.Cinder.Size())) - n175, err := m.Cinder.MarshalTo(data[i:]) + n177, err := m.Cinder.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n175 + i += n177 } if m.CephFS != nil { data[i] = 0x72 i++ i = encodeVarintGenerated(data, i, uint64(m.CephFS.Size())) - n176, err := m.CephFS.MarshalTo(data[i:]) + n178, err := m.CephFS.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n176 + i += n178 } if m.Flocker != nil { data[i] = 0x7a i++ i = encodeVarintGenerated(data, i, uint64(m.Flocker.Size())) - n177, err := m.Flocker.MarshalTo(data[i:]) + n179, err := m.Flocker.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n177 + i += n179 } if m.DownwardAPI != nil { data[i] = 0x82 @@ -7959,11 +8029,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.DownwardAPI.Size())) - n178, err := m.DownwardAPI.MarshalTo(data[i:]) + n180, err := m.DownwardAPI.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n178 + i += n180 } if m.FC != nil { data[i] = 0x8a @@ -7971,11 +8041,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.FC.Size())) - n179, err := m.FC.MarshalTo(data[i:]) + n181, err := m.FC.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n179 + i += n181 } if m.AzureFile != nil { data[i] = 0x92 @@ -7983,11 +8053,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.AzureFile.Size())) - n180, err := m.AzureFile.MarshalTo(data[i:]) + n182, err := m.AzureFile.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n180 + i += n182 } if m.ConfigMap != nil { data[i] = 0x9a @@ -7995,11 +8065,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.ConfigMap.Size())) - n181, err := m.ConfigMap.MarshalTo(data[i:]) + n183, err := m.ConfigMap.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n181 + i += n183 } if m.VsphereVolume != nil { data[i] = 0xa2 @@ -8007,11 +8077,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.VsphereVolume.Size())) - n182, err := m.VsphereVolume.MarshalTo(data[i:]) + n184, err := m.VsphereVolume.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n182 + i += n184 } if m.Quobyte != nil { data[i] = 0xaa @@ -8019,11 +8089,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.Quobyte.Size())) - n183, err := m.Quobyte.MarshalTo(data[i:]) + n185, err := m.Quobyte.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n183 + i += n185 } if m.AzureDisk != nil { data[i] = 0xb2 @@ -8031,11 +8101,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.AzureDisk.Size())) - n184, err := m.AzureDisk.MarshalTo(data[i:]) + n186, err := m.AzureDisk.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n184 + i += n186 } return i, nil } @@ -8087,11 +8157,11 @@ func (m *WeightedPodAffinityTerm) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.PodAffinityTerm.Size())) - n185, err := m.PodAffinityTerm.MarshalTo(data[i:]) + n187, err := m.PodAffinityTerm.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n185 + i += n187 return i, nil } @@ -10163,6 +10233,24 @@ func (m *ReplicationController) Size() (n int) { return n } +func (m *ReplicationControllerCondition) Size() (n int) { + var l int + _ = l + l = len(m.Type) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Status) + n += 1 + l + sovGenerated(uint64(l)) + l = m.LastProbeTime.Size() + n += 1 + l + sovGenerated(uint64(l)) + l = m.LastTransitionTime.Size() + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Reason) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Message) + n += 1 + l + sovGenerated(uint64(l)) + return n +} + func (m *ReplicationControllerList) Size() (n int) { var l int _ = l @@ -10207,6 +10295,12 @@ func (m *ReplicationControllerStatus) Size() (n int) { n += 1 + sovGenerated(uint64(m.ObservedGeneration)) n += 1 + sovGenerated(uint64(m.ReadyReplicas)) n += 1 + sovGenerated(uint64(m.AvailableReplicas)) + if len(m.Conditions) > 0 { + for _, e := range m.Conditions { + l = e.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + } return n } @@ -12435,6 +12529,21 @@ func (this *ReplicationController) String() string { }, "") return s } +func (this *ReplicationControllerCondition) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&ReplicationControllerCondition{`, + `Type:` + fmt.Sprintf("%v", this.Type) + `,`, + `Status:` + fmt.Sprintf("%v", this.Status) + `,`, + `LastProbeTime:` + strings.Replace(strings.Replace(this.LastProbeTime.String(), "Time", "k8s_io_kubernetes_pkg_api_unversioned.Time", 1), `&`, ``, 1) + `,`, + `LastTransitionTime:` + strings.Replace(strings.Replace(this.LastTransitionTime.String(), "Time", "k8s_io_kubernetes_pkg_api_unversioned.Time", 1), `&`, ``, 1) + `,`, + `Reason:` + fmt.Sprintf("%v", this.Reason) + `,`, + `Message:` + fmt.Sprintf("%v", this.Message) + `,`, + `}`, + }, "") + return s +} func (this *ReplicationControllerList) String() string { if this == nil { return "nil" @@ -12479,6 +12588,7 @@ func (this *ReplicationControllerStatus) String() string { `ObservedGeneration:` + fmt.Sprintf("%v", this.ObservedGeneration) + `,`, `ReadyReplicas:` + fmt.Sprintf("%v", this.ReadyReplicas) + `,`, `AvailableReplicas:` + fmt.Sprintf("%v", this.AvailableReplicas) + `,`, + `Conditions:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Conditions), "ReplicationControllerCondition", "ReplicationControllerCondition", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -32799,6 +32909,232 @@ func (m *ReplicationController) Unmarshal(data []byte) error { } return nil } +func (m *ReplicationControllerCondition) Unmarshal(data []byte) error { + l := len(data) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ReplicationControllerCondition: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReplicationControllerCondition: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", 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.Type = ReplicationControllerConditionType(data[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Status", 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.Status = ConditionStatus(data[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field LastProbeTime", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.LastProbeTime.Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field LastTransitionTime", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.LastTransitionTime.Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Reason", 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.Reason = string(data[iNdEx:postIndex]) + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Message", 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.Message = string(data[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipGenerated(data[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *ReplicationControllerList) Unmarshal(data []byte) error { l := len(data) iNdEx := 0 @@ -33267,6 +33603,37 @@ func (m *ReplicationControllerStatus) Unmarshal(data []byte) error { break } } + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Conditions", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Conditions = append(m.Conditions, ReplicationControllerCondition{}) + if err := m.Conditions[len(m.Conditions)-1].Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -38564,620 +38931,623 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 9827 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x8c, 0x24, 0x49, - 0x76, 0x90, 0xab, 0xaa, 0xbf, 0x2a, 0xfa, 0x73, 0x72, 0x66, 0x67, 0x7b, 0xfb, 0xf6, 0x33, 0x6f, - 0x77, 0x6f, 0x77, 0x76, 0xa7, 0x67, 0x67, 0x76, 0xd7, 0xbb, 0x7b, 0x77, 0xdc, 0x6d, 0x7f, 0xce, - 0xb4, 0xa7, 0x7b, 0xa6, 0xf6, 0x55, 0xcf, 0xcc, 0x9d, 0x6f, 0x39, 0x6f, 0x76, 0x55, 0x76, 0x77, - 0xde, 0x54, 0x57, 0xd6, 0x66, 0x66, 0xf5, 0x4c, 0xef, 0x61, 0xc9, 0x18, 0x63, 0x84, 0x6c, 0x99, - 0xb3, 0xc0, 0x02, 0x09, 0x10, 0x06, 0x09, 0x04, 0x58, 0x18, 0x9f, 0x39, 0xec, 0x3b, 0xb0, 0x2c, - 0x24, 0xcc, 0xe9, 0xf8, 0x30, 0x3a, 0x4b, 0x08, 0x5b, 0xb6, 0x74, 0xf8, 0x6c, 0x21, 0x7e, 0xf0, - 0x03, 0x24, 0xf8, 0xc3, 0xc8, 0x02, 0xe2, 0xc5, 0x77, 0x64, 0x65, 0x75, 0x66, 0xf5, 0x4e, 0x35, - 0x63, 0x8b, 0x1f, 0x2d, 0x75, 0xbd, 0xf7, 0xe2, 0xc5, 0x47, 0x46, 0xbc, 0x78, 0xef, 0xc5, 0x8b, - 0x17, 0xe4, 0xd5, 0xbb, 0x6f, 0xc7, 0x8b, 0x41, 0x78, 0xe9, 0x6e, 0x77, 0xc7, 0x8f, 0xda, 0x7e, - 0xe2, 0xc7, 0x97, 0x3a, 0x77, 0xf7, 0x2e, 0x79, 0x9d, 0xe0, 0xd2, 0xe1, 0xe5, 0x4b, 0x7b, 0x7e, - 0xdb, 0x8f, 0xbc, 0xc4, 0x6f, 0x2e, 0x76, 0xa2, 0x30, 0x09, 0x9d, 0x27, 0x39, 0xf5, 0xa2, 0xa6, - 0x5e, 0xa4, 0xd4, 0x8b, 0x94, 0x7a, 0xf1, 0xf0, 0xf2, 0xc2, 0xc5, 0xbd, 0x20, 0xd9, 0xef, 0xee, - 0x2c, 0x36, 0xc2, 0x83, 0x4b, 0x7b, 0xe1, 0x5e, 0x78, 0x89, 0x15, 0xda, 0xe9, 0xee, 0xb2, 0x5f, - 0xec, 0x07, 0xfb, 0x8f, 0x33, 0x5b, 0xb8, 0xd2, 0xbf, 0xea, 0xc8, 0x8f, 0xc3, 0x6e, 0xd4, 0xf0, - 0xd3, 0x0d, 0x58, 0x78, 0xb3, 0x7f, 0x99, 0x6e, 0xfb, 0xd0, 0x8f, 0xe2, 0x20, 0x6c, 0xfb, 0xcd, - 0x9e, 0x62, 0x17, 0xb3, 0x8b, 0x45, 0xdd, 0x76, 0x12, 0x1c, 0xf4, 0xd6, 0x72, 0x39, 0x9b, 0xbc, - 0x9b, 0x04, 0xad, 0x4b, 0x41, 0x3b, 0x89, 0x93, 0x28, 0x5d, 0xc4, 0xfd, 0xed, 0x12, 0x79, 0x76, - 0xe9, 0x4e, 0x7d, 0xad, 0xe5, 0xc5, 0x49, 0xd0, 0x58, 0x6e, 0x85, 0x8d, 0xbb, 0xf5, 0x24, 0x8c, - 0xfc, 0xdb, 0x61, 0xab, 0x7b, 0xe0, 0xd7, 0x59, 0x6f, 0x9c, 0x57, 0xc9, 0xc4, 0x21, 0xfb, 0xbd, - 0xb1, 0x3a, 0x5f, 0x7a, 0xb6, 0xf4, 0x52, 0x75, 0x79, 0xee, 0x3b, 0xdf, 0x7b, 0xe6, 0x07, 0xfe, - 0xe0, 0x7b, 0xcf, 0x4c, 0xdc, 0x16, 0x70, 0x50, 0x14, 0xce, 0x8b, 0x64, 0x6c, 0x37, 0xde, 0x3e, - 0xea, 0xf8, 0xf3, 0x65, 0x46, 0x3b, 0x23, 0x68, 0xc7, 0xd6, 0xeb, 0x08, 0x05, 0x81, 0x75, 0x2e, - 0x91, 0x6a, 0xc7, 0x8b, 0x92, 0x20, 0xa1, 0x7d, 0x9f, 0xaf, 0x50, 0xd2, 0xd1, 0xe5, 0x33, 0x82, - 0xb4, 0x5a, 0x93, 0x08, 0xd0, 0x34, 0xd8, 0x8c, 0xc8, 0xf7, 0x9a, 0x37, 0xdb, 0xad, 0xa3, 0xf9, - 0x11, 0x4a, 0x3f, 0xa1, 0x9b, 0x01, 0x02, 0x0e, 0x8a, 0xc2, 0xfd, 0x66, 0x99, 0x4c, 0x2c, 0xed, - 0xee, 0x06, 0xed, 0x20, 0x39, 0x72, 0x3e, 0x20, 0x53, 0xed, 0xb0, 0xe9, 0xcb, 0xdf, 0xac, 0x17, - 0x93, 0x57, 0x2e, 0x2c, 0x1e, 0x37, 0x2f, 0x16, 0x6f, 0x18, 0x25, 0x96, 0xe7, 0x68, 0x35, 0x53, - 0x26, 0x04, 0x2c, 0x8e, 0xce, 0xfb, 0x64, 0xb2, 0x13, 0x36, 0x55, 0x05, 0x65, 0x56, 0xc1, 0xcb, - 0xc7, 0x57, 0x50, 0xd3, 0x05, 0x96, 0x67, 0x29, 0xff, 0x49, 0x03, 0x00, 0x26, 0x3b, 0xa7, 0x45, - 0x66, 0xf1, 0x27, 0xfd, 0xec, 0xaa, 0x86, 0x0a, 0xab, 0xe1, 0x62, 0x7e, 0x0d, 0x46, 0xa1, 0xe5, - 0xb3, 0xb4, 0x96, 0xd9, 0x14, 0x10, 0xd2, 0xac, 0xdd, 0x8f, 0xc8, 0xcc, 0x52, 0x92, 0x78, 0x8d, - 0x7d, 0xbf, 0xc9, 0xbf, 0xaf, 0xf3, 0x06, 0x19, 0x69, 0x7b, 0x07, 0xbe, 0xf8, 0xfa, 0xcf, 0x8a, - 0x61, 0x1f, 0xb9, 0x41, 0x61, 0x0f, 0xbe, 0xf7, 0xcc, 0xdc, 0xad, 0x76, 0xf0, 0x61, 0x57, 0xcc, - 0x19, 0x84, 0x01, 0xa3, 0x76, 0xae, 0x10, 0xd2, 0xf4, 0x0f, 0x83, 0x86, 0x5f, 0xf3, 0x92, 0x7d, - 0x31, 0x1b, 0x1c, 0x51, 0x96, 0xac, 0x2a, 0x0c, 0x18, 0x54, 0xee, 0x8f, 0x97, 0x48, 0x75, 0xe9, - 0x30, 0x0c, 0x9a, 0xb4, 0x95, 0xb1, 0xd3, 0xa5, 0xfd, 0x8e, 0xfc, 0x5d, 0x3f, 0x52, 0x20, 0xda, - 0x84, 0x0a, 0xed, 0xf7, 0x95, 0x9c, 0x7e, 0xdb, 0x85, 0xd6, 0xda, 0x49, 0x74, 0xb4, 0xfc, 0xb8, - 0xa8, 0x7a, 0x36, 0x85, 0x85, 0x74, 0x1d, 0xee, 0xcf, 0x96, 0xc9, 0x63, 0x4b, 0x1f, 0x75, 0x23, - 0x7f, 0x35, 0x88, 0xef, 0xa6, 0x97, 0x42, 0x93, 0xc2, 0x6e, 0xe8, 0xc1, 0x50, 0x73, 0x70, 0x55, - 0xc0, 0x41, 0x51, 0x38, 0x17, 0xc9, 0x38, 0xfe, 0x7f, 0x0b, 0x36, 0x44, 0xef, 0xcf, 0x0a, 0xe2, - 0xc9, 0x55, 0x2f, 0xf1, 0x56, 0x39, 0x0a, 0x24, 0x8d, 0xb3, 0x45, 0x26, 0x1b, 0x74, 0xd4, 0x83, - 0xf6, 0xde, 0x16, 0x9d, 0x5a, 0xec, 0x0b, 0x57, 0x97, 0x5f, 0x41, 0xf2, 0x15, 0x0d, 0xa6, 0xe3, - 0x3d, 0xcf, 0xdb, 0x26, 0x58, 0x18, 0x38, 0x30, 0xcb, 0x3b, 0xae, 0x5a, 0x88, 0x23, 0x8c, 0x13, - 0xc9, 0x58, 0x84, 0x2f, 0x19, 0x6b, 0x6a, 0x94, 0xad, 0xa9, 0xa9, 0x3e, 0xeb, 0xe9, 0x1f, 0x96, - 0xc4, 0x98, 0xac, 0x07, 0x2d, 0x5b, 0x3c, 0xd0, 0xcf, 0x1c, 0xfb, 0x8d, 0xc8, 0x4f, 0x8c, 0x51, - 0x51, 0x9f, 0xb9, 0xae, 0x30, 0x60, 0x50, 0xe1, 0xe2, 0x8f, 0xf7, 0xbd, 0x88, 0xcd, 0x16, 0x31, - 0x36, 0x6a, 0xf1, 0xd7, 0x25, 0x02, 0x34, 0x8d, 0xb5, 0xf8, 0x2b, 0xb9, 0x8b, 0xff, 0x9f, 0x95, - 0xc8, 0xf8, 0x72, 0xd0, 0x6e, 0xd2, 0xa1, 0x70, 0xbe, 0x40, 0x26, 0x0e, 0xfc, 0xc4, 0x6b, 0xd2, - 0xe1, 0x12, 0xeb, 0xfe, 0xa5, 0xe3, 0x27, 0xcf, 0xcd, 0x9d, 0xaf, 0xf8, 0x8d, 0x64, 0x8b, 0x96, - 0xd1, 0xdd, 0xd0, 0x30, 0x50, 0xdc, 0x9c, 0x5b, 0x64, 0x2c, 0xf1, 0xa2, 0x3d, 0x3f, 0x11, 0xcb, - 0xfd, 0x62, 0x11, 0xbe, 0x80, 0x53, 0xcd, 0x6f, 0x37, 0x7c, 0x2d, 0x18, 0xb7, 0x19, 0x13, 0x10, - 0xcc, 0xdc, 0x06, 0x99, 0x5a, 0xf1, 0x3a, 0xde, 0x4e, 0xd0, 0xa2, 0x72, 0xcf, 0x8f, 0x9d, 0x4f, - 0x91, 0x8a, 0xd7, 0x6c, 0xb2, 0x89, 0x5f, 0x5d, 0x7e, 0x8c, 0x16, 0xa8, 0x2c, 0x35, 0x9b, 0x74, - 0x1a, 0x10, 0x45, 0x75, 0x04, 0x48, 0xe1, 0x5c, 0x20, 0x23, 0xcd, 0x28, 0xec, 0xd0, 0xd6, 0x20, - 0xe5, 0x79, 0x5c, 0xa1, 0xab, 0xf4, 0x77, 0x8a, 0x94, 0xd1, 0xb8, 0xff, 0xaa, 0x4c, 0x9c, 0x15, - 0xbf, 0xb3, 0xbf, 0x5e, 0xb7, 0xbe, 0x25, 0x9d, 0x0f, 0x07, 0x21, 0x15, 0x02, 0x61, 0x14, 0x8b, - 0x0a, 0xd9, 0x7c, 0xd8, 0x12, 0x30, 0x50, 0x58, 0xe7, 0x59, 0x32, 0xd2, 0xd1, 0xcb, 0x7a, 0x4a, - 0x8a, 0x04, 0xb6, 0xa0, 0x19, 0x06, 0x29, 0xba, 0xb1, 0x1f, 0x89, 0x79, 0xac, 0x28, 0x6e, 0x51, - 0x18, 0x30, 0x8c, 0x9e, 0x39, 0x38, 0xa7, 0xc4, 0x2c, 0x4d, 0xcd, 0x1c, 0xc4, 0x80, 0x41, 0xe5, - 0xfc, 0x08, 0x9d, 0x39, 0xec, 0x17, 0x1d, 0x48, 0x36, 0x65, 0x73, 0x85, 0xc1, 0x66, 0xd8, 0xf0, - 0x5a, 0xe9, 0xc1, 0x9f, 0x66, 0x33, 0x4d, 0x32, 0x02, 0xcd, 0xd3, 0x9a, 0x69, 0x63, 0xb9, 0x33, - 0xed, 0xaf, 0x95, 0xe8, 0x38, 0xd2, 0x99, 0xe6, 0x47, 0xa7, 0xb0, 0x65, 0x0e, 0xb6, 0x08, 0x7e, - 0x0f, 0x9b, 0x16, 0x1e, 0x74, 0xa8, 0x6a, 0xd1, 0x4e, 0x56, 0x42, 0xba, 0x1a, 0xd8, 0x36, 0xfa, - 0x69, 0x32, 0x92, 0x60, 0x55, 0xbc, 0x59, 0x2f, 0xca, 0xcf, 0x82, 0x15, 0xd0, 0x99, 0x72, 0xbe, - 0xb7, 0x04, 0x6b, 0x02, 0x2b, 0xe3, 0xbc, 0x43, 0xc6, 0xe2, 0xc4, 0x4b, 0xba, 0xb1, 0x68, 0xe8, - 0x73, 0xb2, 0xa1, 0x75, 0x06, 0xa5, 0xe5, 0x67, 0x55, 0x31, 0x0e, 0x02, 0x51, 0xc0, 0x79, 0x99, - 0x8c, 0x1f, 0xf8, 0x71, 0xec, 0xed, 0x49, 0xc1, 0x36, 0x2b, 0xca, 0x8e, 0x6f, 0x71, 0x30, 0x48, - 0xbc, 0xf3, 0x49, 0x32, 0xea, 0x47, 0x51, 0x18, 0x89, 0x19, 0x31, 0x2d, 0x08, 0x47, 0xd7, 0x10, - 0x08, 0x1c, 0xe7, 0xfe, 0x56, 0x89, 0xcc, 0xaa, 0xb6, 0xf2, 0xba, 0x86, 0xb8, 0xd4, 0x9b, 0x84, - 0x34, 0x64, 0xc7, 0x62, 0xb6, 0xc0, 0x26, 0xaf, 0xbc, 0x76, 0x3c, 0xef, 0xde, 0x81, 0xd4, 0x75, - 0x28, 0x50, 0x0c, 0x06, 0x5f, 0xf7, 0x3b, 0x25, 0x72, 0x36, 0xd5, 0xa7, 0xcd, 0x20, 0x4e, 0x9c, - 0x3f, 0xdd, 0xd3, 0xaf, 0x4b, 0xc7, 0xd4, 0x6d, 0x68, 0x94, 0x8b, 0x58, 0x9c, 0x75, 0x4f, 0x4d, - 0x14, 0x09, 0x31, 0x3a, 0x07, 0x64, 0x34, 0x48, 0xfc, 0x03, 0xd9, 0xaf, 0x8b, 0x05, 0xfb, 0xc5, - 0x1b, 0xa8, 0x3f, 0xcf, 0x06, 0xf2, 0x00, 0xce, 0xca, 0xfd, 0x1f, 0x74, 0x1f, 0xa7, 0xbd, 0xdc, - 0x0d, 0xf6, 0xb6, 0xbc, 0xce, 0x10, 0x3f, 0x4c, 0x9d, 0xca, 0x3c, 0xe4, 0xca, 0x9b, 0x7e, 0x39, - 0xaf, 0xe9, 0xa2, 0x41, 0x8b, 0xb8, 0x79, 0x72, 0xad, 0x40, 0xc9, 0x25, 0x04, 0x01, 0x63, 0xb6, - 0xf0, 0x16, 0xa9, 0x2a, 0x02, 0x67, 0x8e, 0x54, 0xee, 0xfa, 0x5c, 0x65, 0xac, 0x02, 0xfe, 0xeb, - 0x9c, 0x23, 0xa3, 0x87, 0x5e, 0xab, 0x2b, 0x56, 0x2b, 0xf0, 0x1f, 0x9f, 0x2e, 0xbf, 0x5d, 0x72, - 0x7f, 0xad, 0x44, 0xce, 0xa9, 0x4a, 0xae, 0xfb, 0x47, 0x75, 0xbf, 0x45, 0x9b, 0x1c, 0x46, 0xce, - 0x4f, 0x50, 0x44, 0x2b, 0x43, 0x0e, 0x89, 0xd1, 0x38, 0x89, 0x04, 0x7b, 0x52, 0x34, 0xfc, 0x5c, - 0x16, 0x16, 0x32, 0x6b, 0x73, 0x9e, 0xe2, 0x7d, 0xe1, 0x8b, 0x77, 0x52, 0x30, 0xa8, 0xd0, 0x86, - 0xb2, 0x8e, 0x61, 0xf3, 0xa7, 0x55, 0xf3, 0x4f, 0x63, 0xe6, 0x6d, 0xda, 0x33, 0xef, 0x53, 0x05, - 0x3f, 0x5f, 0x9f, 0x39, 0xf7, 0xb7, 0xa8, 0xda, 0xa6, 0x68, 0x2c, 0x71, 0xfc, 0x88, 0x0c, 0xff, - 0x60, 0xdd, 0xa5, 0x9f, 0x65, 0x3b, 0xc4, 0xfd, 0x34, 0xbb, 0xbb, 0xce, 0x65, 0x32, 0xd9, 0xf4, - 0x77, 0xbd, 0x6e, 0x2b, 0x51, 0xea, 0xe2, 0x28, 0xb7, 0x23, 0x56, 0x35, 0x18, 0x4c, 0x1a, 0xf7, - 0x37, 0xab, 0x6c, 0x55, 0x26, 0x5e, 0x40, 0xcd, 0x40, 0xdc, 0xa0, 0x0d, 0xad, 0x7e, 0xca, 0xd4, - 0xea, 0x85, 0x06, 0x4f, 0x25, 0x71, 0x70, 0x80, 0x22, 0xbb, 0x6c, 0x4b, 0xe2, 0x0d, 0x04, 0x02, - 0xc7, 0x39, 0x2f, 0x90, 0x71, 0x6a, 0x3a, 0x1f, 0x78, 0xed, 0x26, 0x6d, 0x03, 0xaa, 0x0c, 0x93, - 0x28, 0xd5, 0x57, 0x38, 0x08, 0x24, 0xce, 0x79, 0x92, 0x8c, 0x50, 0xfd, 0x26, 0xa6, 0x42, 0x1d, - 0x69, 0x26, 0xb0, 0xa6, 0x25, 0xfa, 0x1b, 0x18, 0x14, 0x55, 0x81, 0x7b, 0x61, 0x74, 0x97, 0x2a, - 0x6c, 0xab, 0x41, 0xc4, 0xf6, 0x75, 0x43, 0x15, 0xb8, 0xa3, 0x30, 0x60, 0x50, 0x39, 0x35, 0x32, - 0xda, 0x09, 0xa3, 0x24, 0xa6, 0xdb, 0x34, 0x0e, 0xe7, 0x2b, 0xb9, 0xb3, 0x87, 0xf7, 0xbb, 0x46, - 0xcb, 0xe8, 0xae, 0xe0, 0x2f, 0x3a, 0xa4, 0x8c, 0x91, 0xb3, 0x42, 0x2a, 0x7e, 0xfb, 0x70, 0x7e, - 0x9c, 0xf1, 0x7b, 0xfe, 0x78, 0x7e, 0x6b, 0xed, 0xc3, 0xdb, 0x5e, 0xa4, 0x57, 0x11, 0xfd, 0x0d, - 0x58, 0xda, 0x69, 0x90, 0xaa, 0x74, 0x04, 0xc4, 0xf3, 0x13, 0x45, 0x26, 0x18, 0x08, 0x72, 0xf0, - 0x3f, 0xec, 0x06, 0x91, 0x7f, 0x40, 0x85, 0x6b, 0xac, 0xf5, 0x61, 0x89, 0x8d, 0x41, 0xf3, 0xa5, - 0x95, 0x4c, 0x71, 0xf5, 0x61, 0x2b, 0xec, 0x52, 0xea, 0xf9, 0x2a, 0x6b, 0x72, 0x8e, 0xc1, 0x79, - 0x5b, 0x97, 0x58, 0x3e, 0x27, 0xd8, 0x4f, 0x19, 0xc0, 0x18, 0x2c, 0xa6, 0xd4, 0xa8, 0x9d, 0x6e, - 0x05, 0x87, 0x7e, 0x9b, 0xee, 0xcb, 0xb5, 0x28, 0xdc, 0xf1, 0xe7, 0x09, 0xeb, 0xcd, 0x27, 0xf3, - 0x8c, 0x2f, 0x4a, 0xba, 0x7c, 0x86, 0xf2, 0x9e, 0xde, 0x34, 0x4b, 0x83, 0xcd, 0x8c, 0x6a, 0x72, - 0x33, 0xa8, 0xab, 0x04, 0x9a, 0xfd, 0x64, 0x71, 0xf6, 0x0e, 0x65, 0x3f, 0x03, 0x56, 0x71, 0x48, - 0xb1, 0x73, 0xb6, 0x49, 0xb5, 0x15, 0xec, 0xfa, 0x8d, 0xa3, 0x06, 0xd5, 0x2e, 0xa7, 0x18, 0xef, - 0x9c, 0x25, 0xb7, 0x29, 0xc9, 0xb9, 0x7e, 0xa8, 0x7e, 0x82, 0x66, 0xe4, 0xdc, 0x26, 0xe7, 0x13, - 0x3f, 0x3a, 0x08, 0xda, 0x1e, 0x6e, 0xda, 0x42, 0x79, 0x61, 0x16, 0xee, 0x34, 0x9b, 0xb5, 0x4f, - 0x8b, 0x81, 0x3d, 0xbf, 0x9d, 0x49, 0x05, 0x7d, 0x4a, 0x3b, 0x37, 0xc9, 0x2c, 0x5b, 0x4f, 0xb5, - 0x6e, 0xab, 0x55, 0x0b, 0x5b, 0x41, 0xe3, 0x68, 0x7e, 0x86, 0x31, 0x7c, 0x41, 0xda, 0xad, 0x1b, - 0x36, 0x1a, 0xf5, 0x7a, 0xfd, 0x0b, 0xd2, 0xa5, 0xd1, 0x69, 0x40, 0xb5, 0xda, 0x6e, 0x44, 0x95, - 0x7e, 0x9c, 0xfb, 0xfe, 0xfd, 0x64, 0x7e, 0xb6, 0x88, 0x9d, 0x52, 0xb7, 0x0b, 0x71, 0xa7, 0x41, - 0x0a, 0x08, 0x69, 0xd6, 0x28, 0x2a, 0xe2, 0x84, 0x8e, 0xfe, 0xfc, 0x1c, 0x53, 0x4c, 0xd5, 0xfa, - 0xaa, 0x23, 0x10, 0x38, 0x8e, 0x99, 0x7d, 0xf8, 0xcf, 0x4d, 0x94, 0xbd, 0x67, 0x18, 0xa1, 0x36, - 0xfb, 0x24, 0x02, 0x34, 0x0d, 0x6e, 0x58, 0x49, 0x72, 0x34, 0xef, 0x30, 0x52, 0xb5, 0xd4, 0xb6, - 0xb7, 0xbf, 0x08, 0x08, 0x77, 0x77, 0xc8, 0x8c, 0x5a, 0xd6, 0x6c, 0x74, 0x9c, 0x67, 0xc8, 0x28, - 0x4a, 0x2e, 0x69, 0xbd, 0x54, 0xb1, 0x09, 0x28, 0xd0, 0xe8, 0x12, 0x67, 0x70, 0xd6, 0x84, 0xe0, - 0x23, 0x7f, 0xf9, 0x88, 0xf6, 0x9a, 0x89, 0xb5, 0x8a, 0xd1, 0x04, 0x89, 0x00, 0x4d, 0xe3, 0xfe, - 0x6f, 0xbe, 0x29, 0x6a, 0xd9, 0x51, 0x40, 0x6e, 0x52, 0x45, 0x7d, 0x3f, 0x8c, 0x13, 0xa4, 0x66, - 0x75, 0x8c, 0xea, 0x5d, 0xf0, 0x9a, 0x80, 0x83, 0xa2, 0x70, 0x3e, 0x43, 0xa6, 0x1b, 0x66, 0x05, - 0x42, 0x94, 0x3f, 0x26, 0x8a, 0xd8, 0xb5, 0x83, 0x4d, 0xeb, 0xbc, 0x4d, 0x26, 0x98, 0x2b, 0xaf, - 0x11, 0xb6, 0x84, 0xbe, 0x2c, 0x77, 0xa6, 0x89, 0x9a, 0x80, 0x3f, 0x30, 0xfe, 0x07, 0x45, 0x8d, - 0x56, 0x07, 0x36, 0x61, 0xa3, 0x26, 0xc4, 0xad, 0xb2, 0x3a, 0xae, 0x31, 0x28, 0x08, 0xac, 0xfb, - 0x4b, 0x65, 0x63, 0x94, 0x51, 0xe9, 0xf3, 0x9d, 0x1f, 0x26, 0xe3, 0xf7, 0x3c, 0xaa, 0xb4, 0xb6, - 0xf7, 0xc4, 0x0e, 0xfa, 0x7a, 0x41, 0xd9, 0xcb, 0x8a, 0xdf, 0xe1, 0x45, 0xf9, 0x3e, 0x21, 0x7e, - 0x80, 0x64, 0x88, 0xbc, 0xa3, 0x6e, 0xbb, 0x8d, 0xbc, 0xcb, 0x83, 0xf3, 0x06, 0x5e, 0x94, 0xf3, - 0x16, 0x3f, 0x40, 0x32, 0x74, 0x76, 0x09, 0x91, 0xab, 0xcf, 0x6f, 0x0a, 0x17, 0xda, 0x0f, 0x0e, - 0xc2, 0x7e, 0x5b, 0x95, 0x5e, 0x9e, 0xc1, 0x9d, 0x49, 0xff, 0x06, 0x83, 0xb3, 0xdb, 0x65, 0x8a, - 0x48, 0x6f, 0xb3, 0xa8, 0x44, 0xa5, 0x93, 0xdb, 0x8b, 0x28, 0xcd, 0x52, 0x22, 0x86, 0xee, 0x95, - 0x82, 0x0a, 0xd5, 0x76, 0x70, 0xe0, 0x9b, 0xab, 0x45, 0x70, 0x01, 0xcd, 0xd0, 0xfd, 0x56, 0x85, - 0xcc, 0xf7, 0x6b, 0x2f, 0xce, 0x49, 0xff, 0x7e, 0x40, 0xad, 0x91, 0x26, 0x9f, 0xb9, 0xc6, 0x9c, - 0x5c, 0x13, 0x70, 0x50, 0x14, 0x38, 0x39, 0xe2, 0x60, 0xaf, 0xed, 0xb5, 0xc4, 0xfc, 0x55, 0x93, - 0xa3, 0xce, 0xa0, 0x20, 0xb0, 0x48, 0x47, 0xa5, 0x6e, 0x2c, 0x5c, 0xb8, 0xc6, 0x24, 0x02, 0x06, - 0x05, 0x81, 0x35, 0xcd, 0xbf, 0x91, 0x1c, 0xf3, 0xcf, 0x1a, 0xa3, 0xd1, 0x87, 0x3c, 0x46, 0x74, - 0xd7, 0x21, 0xe8, 0xe6, 0x8c, 0xf7, 0x19, 0xfb, 0xb1, 0xc1, 0xd9, 0x2b, 0xad, 0x64, 0x5d, 0xb1, - 0x01, 0x83, 0xa5, 0xf3, 0x26, 0x99, 0x54, 0x2b, 0x94, 0x5a, 0xff, 0xe3, 0xb6, 0xe3, 0x4f, 0x8b, - 0xab, 0x55, 0x30, 0xe9, 0xdc, 0xaf, 0xa4, 0xa7, 0x8c, 0x58, 0x18, 0xc6, 0x08, 0x97, 0x8a, 0x8e, - 0x70, 0xf9, 0xf8, 0x11, 0x76, 0xff, 0x63, 0x05, 0x6d, 0x67, 0xa3, 0xb2, 0x6e, 0x5c, 0x40, 0xa8, - 0xbd, 0x87, 0x12, 0x9e, 0x36, 0x4c, 0x2c, 0xcb, 0x57, 0x07, 0x59, 0x37, 0xe6, 0x7e, 0x80, 0xcb, - 0x81, 0x73, 0x72, 0xf6, 0xe9, 0x0e, 0xed, 0xc5, 0xcc, 0x92, 0xf4, 0xc5, 0x72, 0x1c, 0x8c, 0xad, - 0xd6, 0xc2, 0x29, 0x1b, 0x63, 0xc3, 0xe5, 0xb5, 0x68, 0xe6, 0xb8, 0x3d, 0xa1, 0x76, 0x20, 0x4f, - 0x0e, 0x54, 0x73, 0x50, 0x85, 0x38, 0x02, 0x8e, 0xa3, 0xb2, 0x74, 0x8a, 0x6a, 0x58, 0x38, 0x55, - 0x56, 0x50, 0x01, 0x62, 0x93, 0x6f, 0x54, 0x6b, 0x4a, 0x60, 0xe0, 0xc0, 0xa2, 0xd4, 0x8a, 0xf2, - 0xd8, 0x31, 0x8a, 0x32, 0xfd, 0x42, 0xec, 0x1f, 0x35, 0x2b, 0xd4, 0x17, 0xda, 0xe0, 0x60, 0x90, - 0xf8, 0xf4, 0x24, 0x9a, 0x28, 0x38, 0x89, 0x2e, 0x90, 0x99, 0x55, 0xcf, 0x3f, 0x08, 0xdb, 0x6b, - 0xed, 0x66, 0x27, 0x0c, 0x68, 0xc3, 0xe6, 0xc9, 0x08, 0xdb, 0x52, 0xf8, 0x8a, 0x1f, 0x41, 0x0e, - 0x30, 0x82, 0xca, 0xae, 0xfb, 0x7f, 0xe8, 0xbe, 0xb6, 0x4a, 0xed, 0xd3, 0xc4, 0xbf, 0xd9, 0x61, - 0xee, 0x07, 0x67, 0x9d, 0x38, 0x7b, 0x91, 0xd7, 0xf0, 0x6b, 0x7e, 0x14, 0x84, 0x4d, 0xba, 0xe3, - 0x87, 0x6d, 0xe6, 0x70, 0xc7, 0x3d, 0x12, 0xbd, 0x89, 0xce, 0xd5, 0x1e, 0x2c, 0x64, 0x94, 0x70, - 0x9a, 0x64, 0xba, 0x13, 0xf9, 0x96, 0xbf, 0xa4, 0x94, 0xaf, 0x9f, 0xd7, 0xcc, 0x22, 0x5c, 0x7d, - 0xb4, 0x40, 0x60, 0x33, 0x75, 0xde, 0x25, 0x73, 0x61, 0xd4, 0xd9, 0xf7, 0xda, 0xab, 0x7e, 0xc7, - 0x6f, 0x37, 0x51, 0x67, 0x16, 0x4e, 0xb1, 0x73, 0xb4, 0xec, 0xdc, 0xcd, 0x14, 0x0e, 0x7a, 0xa8, - 0xdd, 0x5f, 0xa0, 0xf6, 0xe2, 0x6a, 0x78, 0xaf, 0x7d, 0xcf, 0x8b, 0x9a, 0x4b, 0xb5, 0x0d, 0xae, - 0x08, 0x33, 0x27, 0xa3, 0x74, 0x6e, 0x96, 0xfa, 0x3a, 0x37, 0xbf, 0x44, 0x26, 0x76, 0x03, 0xbf, - 0xd5, 0x44, 0x2f, 0x24, 0xef, 0xde, 0xe5, 0x22, 0x1e, 0x8d, 0x75, 0x2c, 0x23, 0xbd, 0x02, 0xdc, - 0xb7, 0xba, 0x2e, 0xd8, 0x80, 0x62, 0xe8, 0x74, 0xc9, 0x9c, 0xd4, 0xf4, 0x25, 0x56, 0xac, 0x8e, - 0xd7, 0x8b, 0x19, 0x12, 0x76, 0x35, 0x6c, 0x3c, 0x20, 0xc5, 0x10, 0x7a, 0xaa, 0x40, 0x0b, 0xed, - 0x00, 0x77, 0x87, 0x11, 0x36, 0x57, 0x98, 0x85, 0xc6, 0x4c, 0x48, 0x06, 0x75, 0xff, 0x5e, 0x89, - 0x3c, 0xde, 0x33, 0x5a, 0xc2, 0xbe, 0xfe, 0x82, 0x34, 0x6c, 0xf9, 0xe9, 0x4c, 0x4e, 0x2b, 0x33, - 0xc7, 0xbc, 0x98, 0x91, 0x5b, 0x2e, 0x60, 0xe4, 0xde, 0x24, 0xe7, 0xd6, 0x0e, 0x3a, 0xc9, 0x11, - 0x35, 0x11, 0xad, 0x46, 0xbe, 0x45, 0xc6, 0x0e, 0xfc, 0x66, 0xd0, 0x3d, 0x10, 0x9f, 0xf5, 0x19, - 0x29, 0x48, 0xb7, 0x18, 0x94, 0x6a, 0x49, 0xd3, 0x78, 0xf6, 0x49, 0x17, 0x20, 0x07, 0x80, 0x20, - 0x77, 0xbf, 0x5f, 0x22, 0xb3, 0x72, 0x41, 0x2d, 0x35, 0x9b, 0x74, 0xdc, 0x62, 0x67, 0x81, 0x94, - 0x83, 0x8e, 0x60, 0x44, 0x04, 0xa3, 0x32, 0x55, 0x9a, 0x28, 0x94, 0x6a, 0x30, 0x55, 0xee, 0xca, - 0xd7, 0x93, 0x63, 0xc0, 0xa3, 0x01, 0x66, 0x7d, 0x6c, 0x4b, 0x1e, 0xa0, 0xd9, 0x49, 0xcd, 0x92, - 0x89, 0xea, 0x8a, 0xed, 0x58, 0xbe, 0x26, 0xe0, 0xa0, 0x28, 0xd0, 0x9d, 0x8f, 0xa7, 0x94, 0xec, - 0x94, 0x85, 0x6f, 0xbb, 0x6c, 0xca, 0xdd, 0x10, 0x30, 0x50, 0x58, 0xf7, 0xa7, 0x4b, 0x64, 0x4a, - 0xf6, 0xb1, 0xa0, 0x92, 0x8b, 0x8b, 0x44, 0x2b, 0xb8, 0x7a, 0x91, 0xa0, 0x92, 0xca, 0x30, 0x96, - 0x6e, 0x5a, 0x19, 0x44, 0x37, 0x75, 0xbf, 0x45, 0x75, 0x4e, 0xd9, 0x9c, 0x7a, 0x77, 0x27, 0xf6, - 0x13, 0xe7, 0xcb, 0xa4, 0xea, 0xf1, 0xc1, 0xf7, 0xe5, 0x3c, 0xbb, 0x98, 0x67, 0xa1, 0x5b, 0xdf, - 0x4c, 0x2b, 0x06, 0x4b, 0x92, 0x0f, 0x68, 0x96, 0xce, 0x21, 0x39, 0xd3, 0x0e, 0x13, 0xb6, 0x1f, - 0x28, 0x7c, 0x31, 0x8f, 0x68, 0xba, 0x9e, 0x27, 0x44, 0x3d, 0x67, 0x6e, 0xa4, 0xf9, 0x41, 0x6f, - 0x15, 0xd4, 0xee, 0x13, 0x5e, 0x8c, 0x0a, 0xab, 0xeb, 0x42, 0xb1, 0xba, 0xfa, 0x3b, 0x31, 0xdc, - 0x5f, 0x2f, 0x91, 0xaa, 0x24, 0x1b, 0xa6, 0x4f, 0xfc, 0x0e, 0x19, 0x8f, 0xd9, 0xa7, 0x91, 0xc3, - 0xf4, 0x6a, 0xb1, 0xa6, 0xf3, 0xef, 0xa9, 0x37, 0x3f, 0xfe, 0x3b, 0x06, 0xc9, 0x8d, 0xb9, 0x21, - 0x55, 0x07, 0x1e, 0x3d, 0x37, 0xa4, 0x6a, 0x5a, 0x1f, 0x37, 0xe4, 0xdf, 0x2f, 0x91, 0x31, 0xee, - 0x1c, 0x2a, 0xe6, 0x61, 0x33, 0x7c, 0xc9, 0x9a, 0xe3, 0x6d, 0x04, 0x0a, 0xd7, 0x32, 0x1d, 0xe9, - 0x2a, 0xfb, 0x67, 0x3d, 0x0a, 0x0f, 0xc4, 0x46, 0x70, 0xa1, 0x88, 0x73, 0x8a, 0x0b, 0x3e, 0x2e, - 0x4d, 0x6e, 0x4b, 0x06, 0xa0, 0x79, 0xb9, 0xbf, 0x56, 0xc1, 0x55, 0xaf, 0x49, 0xad, 0x6d, 0xad, - 0x74, 0x1a, 0xdb, 0x5a, 0x79, 0xf8, 0xdb, 0xda, 0x87, 0x64, 0xb6, 0x61, 0xf8, 0xe4, 0xf5, 0x66, - 0x7a, 0xa5, 0xa0, 0xbb, 0xd9, 0x70, 0xe4, 0x73, 0x67, 0xc8, 0x8a, 0xcd, 0x0e, 0xd2, 0xfc, 0x1d, - 0x9f, 0x4c, 0xf1, 0x03, 0x45, 0x51, 0xdf, 0x48, 0xee, 0x9c, 0xe5, 0x7e, 0x17, 0x5e, 0x42, 0x55, - 0xc6, 0x82, 0x4e, 0xea, 0x06, 0x23, 0xb0, 0xd8, 0xba, 0x7f, 0x65, 0x94, 0x8c, 0xae, 0x1d, 0x52, - 0x5d, 0x66, 0x88, 0xab, 0xfc, 0x80, 0xcc, 0x04, 0xed, 0xc3, 0xb0, 0x75, 0xe8, 0x37, 0x39, 0xfe, - 0x64, 0x3b, 0xda, 0x79, 0x51, 0xc9, 0xcc, 0x86, 0xc5, 0x0c, 0x52, 0xcc, 0x87, 0x61, 0x4f, 0xbe, - 0x47, 0x4d, 0x59, 0x36, 0x23, 0x84, 0x31, 0x99, 0xe3, 0x24, 0x65, 0x03, 0x2a, 0x56, 0x8e, 0xb6, - 0x7a, 0xb9, 0x7f, 0x56, 0x30, 0x72, 0xee, 0x92, 0x99, 0xdd, 0x20, 0xa2, 0x16, 0x07, 0x35, 0x08, - 0xa9, 0x15, 0x70, 0xd0, 0x39, 0x89, 0x21, 0xa9, 0x86, 0x64, 0xdd, 0x62, 0x05, 0x29, 0xd6, 0xd4, - 0x48, 0x9a, 0x46, 0x3b, 0x46, 0xd7, 0x35, 0x3e, 0x78, 0x5d, 0xca, 0x97, 0xb4, 0x69, 0x72, 0x02, - 0x9b, 0x31, 0x0a, 0xa3, 0x06, 0x33, 0x7c, 0x26, 0xd8, 0x96, 0xae, 0x84, 0x11, 0xb7, 0x78, 0x38, - 0x0e, 0x65, 0x1a, 0x3b, 0x3f, 0xae, 0xda, 0x32, 0x4d, 0x9f, 0x12, 0xbb, 0xdf, 0xc0, 0x0d, 0x08, - 0x47, 0xf1, 0x34, 0x64, 0xf7, 0x35, 0x5b, 0x76, 0x7f, 0xb2, 0xc0, 0xc7, 0xed, 0x23, 0xb7, 0x3f, - 0x20, 0x93, 0xc6, 0xb7, 0x47, 0x47, 0x61, 0x43, 0x1e, 0x75, 0x0a, 0x01, 0xae, 0x14, 0x08, 0x75, - 0x06, 0x0a, 0x9a, 0x06, 0x07, 0x06, 0x15, 0xaf, 0x74, 0x44, 0x04, 0xaa, 0x65, 0xc0, 0x30, 0xee, - 0xeb, 0x84, 0xac, 0xdd, 0xf7, 0x1b, 0x4b, 0x0d, 0x76, 0x10, 0x6f, 0x9c, 0x9b, 0x94, 0xfa, 0x9f, - 0x9b, 0xb8, 0xef, 0xd3, 0xcd, 0xf0, 0x3e, 0xee, 0xec, 0xd2, 0x4c, 0xa3, 0x4b, 0xc4, 0x67, 0x00, - 0xd6, 0xaa, 0x09, 0x3d, 0x49, 0x39, 0x19, 0x08, 0x2c, 0x3b, 0x46, 0xbf, 0xef, 0x89, 0x05, 0x6b, - 0x98, 0xbc, 0x6b, 0x08, 0x04, 0x8e, 0x73, 0xbf, 0x5e, 0x22, 0x33, 0xeb, 0x2b, 0x96, 0x9e, 0xbc, - 0x48, 0x08, 0xd7, 0x37, 0xef, 0xdc, 0xb9, 0x21, 0xfd, 0xa8, 0xdc, 0xd9, 0xa5, 0xa0, 0x60, 0x50, - 0x38, 0x4f, 0x90, 0x4a, 0xab, 0xdb, 0x16, 0x6a, 0xe0, 0x38, 0xfa, 0x67, 0x37, 0xbb, 0x6d, 0x40, - 0x98, 0x11, 0xd8, 0x50, 0x29, 0x1c, 0xd8, 0x90, 0x1f, 0xda, 0xf7, 0x73, 0x15, 0x32, 0xb7, 0xde, - 0xf2, 0xef, 0x5b, 0xad, 0xa6, 0x55, 0x35, 0xa3, 0x80, 0x4e, 0x9e, 0xb4, 0x9b, 0x64, 0x95, 0x41, - 0x41, 0x60, 0x0b, 0xc7, 0x5a, 0x58, 0x71, 0x26, 0x95, 0x21, 0xc7, 0x99, 0xe4, 0xf6, 0xd9, 0xd9, - 0x25, 0xe3, 0x21, 0xff, 0xfe, 0x54, 0x8a, 0xe1, 0x44, 0xff, 0xcc, 0xf1, 0x8d, 0x49, 0x8f, 0xcf, - 0xa2, 0x98, 0x3d, 0xfc, 0xd0, 0x5b, 0x09, 0x4b, 0x01, 0x05, 0xc9, 0x7c, 0xe1, 0xd3, 0x64, 0xca, - 0xa4, 0x1c, 0xe8, 0xf4, 0xfb, 0xcf, 0x95, 0xc8, 0xd9, 0x75, 0x0c, 0x21, 0x4d, 0x05, 0xc3, 0xbc, - 0x49, 0x6d, 0x38, 0xba, 0x54, 0x63, 0x2b, 0x42, 0xcc, 0x0a, 0x85, 0x13, 0x28, 0x30, 0xe9, 0x8c, - 0x62, 0xb7, 0x6e, 0x6d, 0xac, 0x66, 0x45, 0xd0, 0x09, 0x14, 0x98, 0x74, 0xee, 0xbf, 0x2f, 0x91, - 0xa7, 0xae, 0xae, 0xac, 0xd5, 0x50, 0x8c, 0xc4, 0x09, 0x5d, 0x98, 0x3d, 0x41, 0x7c, 0x74, 0x0a, - 0x74, 0x9a, 0x46, 0x53, 0xd4, 0x14, 0xa8, 0xad, 0xb2, 0x56, 0x08, 0xec, 0xa3, 0x12, 0xc9, 0x4a, - 0xf5, 0xc9, 0xb3, 0x57, 0x03, 0x3a, 0x67, 0x3a, 0x61, 0x3a, 0xee, 0x2e, 0xa2, 0xb0, 0x18, 0xe3, - 0xb1, 0x8e, 0xd2, 0x71, 0x77, 0xa0, 0x30, 0x60, 0x50, 0xf1, 0x9a, 0x0f, 0x03, 0x14, 0xb0, 0xa2, - 0x53, 0x46, 0xcd, 0x1c, 0x0e, 0x8a, 0x02, 0x3b, 0xd6, 0x0c, 0x22, 0xa6, 0x8b, 0x1c, 0x89, 0x15, - 0xac, 0x3a, 0xb6, 0x2a, 0x11, 0xa0, 0x69, 0xdc, 0xbf, 0x51, 0x22, 0x8f, 0x5d, 0x6d, 0x75, 0xe9, - 0xb0, 0x47, 0xbb, 0xb1, 0xd5, 0xd8, 0xd7, 0x49, 0xd5, 0x97, 0x7a, 0xb3, 0x68, 0xab, 0xda, 0x93, - 0x94, 0x42, 0xcd, 0x83, 0xfe, 0x14, 0x5d, 0x81, 0x18, 0xb3, 0xc1, 0x22, 0xa2, 0xfe, 0x79, 0x99, - 0x4c, 0x5f, 0xdb, 0xde, 0xae, 0x5d, 0xf5, 0x13, 0x21, 0x83, 0xf3, 0x1d, 0x3d, 0x35, 0xc3, 0xca, - 0x9d, 0xbc, 0xb2, 0xd8, 0x67, 0xd5, 0x61, 0x8c, 0xf5, 0x22, 0x8f, 0xb1, 0x5e, 0xdc, 0x68, 0x27, - 0x37, 0xa3, 0x7a, 0x12, 0xe1, 0x31, 0x44, 0x96, 0x55, 0x2c, 0xf7, 0x89, 0x4a, 0xbf, 0x7d, 0x82, - 0x0e, 0xd6, 0x58, 0xdc, 0xd8, 0xf7, 0x95, 0xd1, 0xfe, 0x09, 0xa5, 0x86, 0x30, 0x28, 0xb5, 0x99, - 0xab, 0xb7, 0x60, 0x83, 0xff, 0x00, 0x41, 0x4a, 0x05, 0xd6, 0xe4, 0x7e, 0x92, 0x74, 0xae, 0xd1, - 0xce, 0xd2, 0xa9, 0x2f, 0xa4, 0x44, 0x8e, 0x16, 0x88, 0x83, 0xc1, 0x0b, 0xe8, 0x85, 0xa5, 0x61, - 0x31, 0x98, 0x1c, 0xdd, 0x3a, 0x21, 0x1a, 0xf7, 0x90, 0x4c, 0x1b, 0xf7, 0xcf, 0x96, 0xc9, 0xf8, - 0x35, 0xba, 0xcd, 0xb5, 0x28, 0xcb, 0x75, 0x32, 0xe2, 0xd3, 0xed, 0xb1, 0x98, 0x02, 0xab, 0x37, - 0x52, 0xee, 0xa9, 0xc2, 0xdf, 0xc0, 0xca, 0x3b, 0x40, 0xc6, 0xb1, 0xdd, 0x57, 0x55, 0x60, 0xe6, - 0x2b, 0xf9, 0xa3, 0xa0, 0xa6, 0x04, 0xdf, 0x85, 0x05, 0x08, 0x24, 0x23, 0xe6, 0xd3, 0x69, 0x74, - 0xea, 0x28, 0xdc, 0x92, 0x62, 0xb1, 0xd7, 0xdb, 0x2b, 0x35, 0x4e, 0x2e, 0xf8, 0x72, 0x9f, 0x8e, - 0x04, 0x82, 0x66, 0xe7, 0xbe, 0x4d, 0xce, 0xb1, 0x53, 0x41, 0x3a, 0xdd, 0xac, 0x35, 0x93, 0x3b, - 0x39, 0xdd, 0xbf, 0x5d, 0x26, 0x67, 0x36, 0xea, 0x2b, 0x75, 0xdb, 0x1b, 0xf7, 0x36, 0x99, 0xe2, - 0xdb, 0x33, 0x4e, 0x3a, 0xaf, 0x25, 0xca, 0x2b, 0x37, 0xf6, 0xb6, 0x81, 0x03, 0x8b, 0x12, 0x8f, - 0x5b, 0x83, 0x0f, 0xdb, 0xe9, 0xf8, 0xa0, 0x8d, 0xf7, 0x6e, 0x00, 0xc2, 0x11, 0x8d, 0x3b, 0x3d, - 0x17, 0x71, 0x0a, 0xad, 0x76, 0xfb, 0xcf, 0x51, 0x53, 0x21, 0x6e, 0xc4, 0x01, 0x5d, 0x00, 0x74, - 0xfd, 0x7b, 0x0d, 0x39, 0x7d, 0xb5, 0xee, 0x8f, 0x4d, 0x55, 0x58, 0x48, 0x51, 0x1b, 0xf2, 0x76, - 0xb4, 0xb0, 0xb6, 0x90, 0x1f, 0xa1, 0xf9, 0x15, 0x52, 0x55, 0x91, 0x34, 0x32, 0x00, 0xaa, 0x94, - 0x1d, 0x00, 0x55, 0x40, 0xe0, 0x48, 0x1f, 0x69, 0x25, 0xd3, 0x47, 0xfa, 0x8f, 0xa8, 0xe6, 0xab, - 0x82, 0x06, 0xe8, 0x3c, 0xac, 0x52, 0xc1, 0x9b, 0xb0, 0x63, 0x28, 0x31, 0xa9, 0x5f, 0xc8, 0x99, - 0x89, 0x7c, 0x25, 0xf0, 0xb9, 0x52, 0x93, 0x65, 0x41, 0xb3, 0x71, 0x36, 0xc9, 0x78, 0x27, 0xf2, - 0xeb, 0x09, 0x0b, 0xf3, 0x1d, 0x80, 0x23, 0x9b, 0xd5, 0x35, 0x5e, 0x12, 0x24, 0x0b, 0xf7, 0x57, - 0x4a, 0x84, 0x6c, 0x06, 0x07, 0x74, 0x73, 0xf1, 0xda, 0x7b, 0xfe, 0x10, 0xad, 0xc8, 0x1b, 0x64, - 0x24, 0xee, 0xd0, 0xa5, 0x5d, 0xe8, 0xe8, 0x48, 0xb7, 0xa8, 0x4e, 0xcb, 0xe8, 0xcf, 0x80, 0xbf, - 0x80, 0xf1, 0x71, 0x7f, 0x91, 0x90, 0x19, 0x4d, 0x86, 0x6a, 0xbc, 0x73, 0xd1, 0x8a, 0x6b, 0x7d, - 0x22, 0x15, 0xd7, 0x5a, 0x65, 0xd4, 0x46, 0x28, 0x6b, 0x42, 0x2a, 0x07, 0xde, 0x7d, 0x61, 0x35, - 0xbc, 0x59, 0xb4, 0x41, 0x58, 0xd3, 0xe2, 0x96, 0x77, 0x9f, 0xab, 0x51, 0xaf, 0xc8, 0x09, 0x44, - 0x21, 0x0f, 0xf8, 0x01, 0x11, 0x5b, 0x81, 0x68, 0xa6, 0xfc, 0xf8, 0x7f, 0xd2, 0xbf, 0x99, 0x50, - 0xc4, 0xea, 0x58, 0xad, 0x41, 0x5b, 0xb8, 0xfa, 0x06, 0xac, 0x35, 0x68, 0xa7, 0x6b, 0x0d, 0xda, - 0x05, 0x6a, 0x0d, 0xda, 0x18, 0xfe, 0x36, 0x2e, 0x3c, 0xe4, 0x2c, 0xfc, 0x6a, 0xf2, 0xca, 0x3b, - 0x03, 0x55, 0x2d, 0x5c, 0xed, 0xbc, 0xfa, 0x4b, 0x52, 0x77, 0x14, 0xd0, 0xdc, 0x26, 0xc8, 0xaa, - 0x9d, 0x9f, 0xa7, 0xb6, 0x86, 0xf8, 0x1f, 0x23, 0x9d, 0xa8, 0xd1, 0x29, 0x76, 0xa9, 0x77, 0x4f, - 0xd2, 0x1a, 0xc1, 0x82, 0x37, 0xea, 0x07, 0xa5, 0x88, 0xb1, 0x91, 0xb9, 0x6d, 0x4b, 0xb5, 0xc7, - 0xf9, 0x66, 0x89, 0x9c, 0xa3, 0xdf, 0x89, 0xd7, 0xc8, 0x61, 0x80, 0x07, 0x8a, 0x22, 0xc4, 0x6c, - 0x7d, 0xd0, 0x79, 0xd2, 0xc3, 0x88, 0x37, 0xf7, 0xb3, 0xf2, 0xd8, 0x32, 0x8b, 0x24, 0xb7, 0xd1, - 0x99, 0x2d, 0x5c, 0x68, 0x92, 0x09, 0x39, 0x31, 0x33, 0xb4, 0xf6, 0x65, 0x73, 0x33, 0x3e, 0x7e, - 0x05, 0x4a, 0x07, 0xda, 0xe2, 0x7b, 0x5d, 0xaf, 0x9d, 0xe0, 0x95, 0x01, 0xad, 0xe3, 0xb3, 0x5a, - 0xc4, 0x44, 0x1c, 0x62, 0x2d, 0xfb, 0x64, 0xca, 0x9c, 0x73, 0x43, 0xac, 0x29, 0x24, 0x67, 0x33, - 0xe6, 0xd3, 0x10, 0x2b, 0xec, 0x92, 0x27, 0xfa, 0xce, 0x8b, 0xe1, 0x55, 0x8b, 0x87, 0x02, 0x86, - 0xc0, 0x3c, 0x0d, 0xc7, 0xcc, 0x96, 0xed, 0x98, 0x79, 0xa9, 0xe8, 0xd2, 0xe9, 0xe3, 0x9d, 0xd9, - 0x35, 0xdb, 0x8f, 0x3b, 0x81, 0xb3, 0x4d, 0xc6, 0x5a, 0x08, 0x91, 0xa7, 0x41, 0xaf, 0x0e, 0xb2, - 0x38, 0xb5, 0x72, 0xc1, 0xe0, 0x31, 0x08, 0x5e, 0xee, 0xaf, 0x96, 0xc8, 0xc8, 0x69, 0x0c, 0x4f, - 0xcd, 0x1e, 0x9e, 0x7e, 0x2a, 0xaa, 0xb8, 0xeb, 0xb9, 0x08, 0xde, 0xbd, 0xb5, 0xfb, 0xd4, 0x9a, - 0x8d, 0x99, 0x2a, 0x99, 0x39, 0x42, 0xbf, 0x50, 0x26, 0x93, 0x58, 0x91, 0xf4, 0x13, 0x7d, 0x06, - 0xfd, 0x86, 0x3b, 0x7e, 0x4b, 0xba, 0x93, 0xd3, 0x66, 0xd7, 0xa6, 0x89, 0x04, 0x9b, 0x16, 0x0b, - 0xef, 0x9a, 0xde, 0x76, 0xa1, 0x12, 0xa9, 0xc2, 0x96, 0x2b, 0x1e, 0x6c, 0x5a, 0xd4, 0xfc, 0xef, - 0x79, 0x49, 0x63, 0x5f, 0x98, 0x64, 0xaa, 0xb9, 0x77, 0x10, 0x08, 0x1c, 0xe7, 0x2c, 0x91, 0x59, - 0x39, 0x63, 0x6f, 0xf3, 0xa1, 0x13, 0xea, 0xa2, 0xba, 0xa7, 0x07, 0x36, 0x1a, 0xd2, 0xf4, 0xce, - 0xa7, 0xc9, 0x0c, 0x0e, 0x4e, 0xd8, 0x4d, 0x64, 0xb0, 0xc2, 0x28, 0x0b, 0x56, 0x60, 0xc1, 0xa1, - 0xdb, 0x16, 0x06, 0x52, 0x94, 0xee, 0x8f, 0x90, 0xb3, 0x9b, 0xa1, 0xd7, 0x5c, 0xf6, 0x5a, 0x5e, - 0xbb, 0xe1, 0x47, 0x1b, 0xed, 0xbd, 0xdc, 0x73, 0x5d, 0xf3, 0xec, 0xb5, 0x9c, 0x77, 0xf6, 0xea, - 0x46, 0xc4, 0x31, 0x2b, 0x10, 0x61, 0x36, 0xef, 0x93, 0xf1, 0x80, 0x57, 0x25, 0x66, 0xed, 0xe5, - 0x3c, 0xa7, 0x52, 0x4f, 0x1b, 0x8d, 0xb0, 0x11, 0x0e, 0x00, 0xc9, 0x12, 0x2d, 0x89, 0x2c, 0x2f, - 0x54, 0xbe, 0xb1, 0xe6, 0xfe, 0xc5, 0x12, 0x99, 0xbd, 0x91, 0xba, 0x0c, 0x86, 0x31, 0x60, 0x7e, - 0x94, 0xe1, 0x52, 0xab, 0x33, 0x28, 0x08, 0xec, 0x43, 0x37, 0xd3, 0x7f, 0xaa, 0x4c, 0xaa, 0x2c, - 0x66, 0xb3, 0xe3, 0x35, 0x86, 0xa9, 0x94, 0x6e, 0x59, 0x4a, 0x69, 0x8e, 0x91, 0xa8, 0x1a, 0xd4, - 0x4f, 0x27, 0xc5, 0xeb, 0x80, 0xe2, 0x72, 0x54, 0x21, 0xfb, 0x50, 0x33, 0xe4, 0xf7, 0x68, 0x66, - 0xec, 0xbb, 0x54, 0xf2, 0xe2, 0x14, 0x3b, 0x0d, 0x55, 0xb4, 0x8f, 0xde, 0x69, 0xa8, 0x6a, 0x5a, - 0x1f, 0xa9, 0x54, 0x33, 0x5a, 0xcf, 0xc4, 0xf6, 0xe7, 0x59, 0x00, 0x9e, 0xd7, 0x0a, 0x3e, 0xf2, - 0xd5, 0x25, 0xc3, 0x67, 0x44, 0x3c, 0x9d, 0x80, 0x3e, 0x60, 0x02, 0x46, 0xfc, 0xe2, 0x77, 0x47, - 0x75, 0x11, 0xf7, 0x1a, 0x9d, 0xa9, 0xf6, 0xd8, 0x39, 0x6f, 0x92, 0xd1, 0xce, 0xbe, 0x17, 0xfb, - 0xa9, 0xc8, 0x8e, 0xd1, 0x1a, 0x02, 0x29, 0xb7, 0x19, 0x55, 0x80, 0x41, 0x80, 0x53, 0xbb, 0x7f, - 0x44, 0x65, 0x3d, 0xc6, 0x42, 0x0c, 0x71, 0x8e, 0x5d, 0xb3, 0xe6, 0xd8, 0x8b, 0xf9, 0x37, 0xce, - 0xfb, 0x4e, 0xaf, 0x5a, 0x6a, 0x7a, 0xbd, 0x54, 0x80, 0xd7, 0xf1, 0x33, 0xeb, 0x80, 0x4c, 0xb2, - 0x1b, 0xed, 0x22, 0xa4, 0xe5, 0x75, 0xcb, 0x80, 0x7a, 0x26, 0x65, 0x40, 0xcd, 0x1a, 0xa4, 0x86, - 0x19, 0xf5, 0x32, 0x19, 0x17, 0x21, 0x14, 0xe9, 0xa8, 0x43, 0x41, 0x0b, 0x12, 0xef, 0xfe, 0x72, - 0x85, 0x58, 0x37, 0xe8, 0x9d, 0x6f, 0x97, 0x08, 0x55, 0x5a, 0xd8, 0x95, 0x87, 0xe6, 0x6a, 0x17, - 0xfd, 0x65, 0xe8, 0xd2, 0x6a, 0x76, 0x5b, 0xf4, 0xbf, 0x8d, 0xbd, 0x76, 0xa8, 0xc0, 0xe8, 0xdb, - 0xe9, 0x32, 0xef, 0x6a, 0xe1, 0x8b, 0xfb, 0xea, 0x0c, 0xf5, 0x0a, 0x6d, 0xcb, 0x22, 0x0c, 0x54, - 0x0b, 0x0c, 0xd8, 0x2a, 0xe7, 0x77, 0x4a, 0xe4, 0x12, 0xbf, 0x43, 0x5e, 0xbc, 0x27, 0x85, 0x0c, - 0xcf, 0x9a, 0x64, 0xaa, 0xd9, 0x61, 0x90, 0xe3, 0xf2, 0x5b, 0x62, 0x90, 0x2f, 0xd5, 0x06, 0xab, - 0x15, 0x06, 0x6d, 0xa6, 0xfb, 0x2f, 0x2b, 0x74, 0xfd, 0xd2, 0xf1, 0xd4, 0xf7, 0x47, 0xdf, 0xb4, - 0xa6, 0xc9, 0x73, 0xa9, 0x69, 0x72, 0xc6, 0x22, 0x7e, 0x38, 0x57, 0x47, 0x13, 0x72, 0x06, 0xcf, - 0x29, 0xaf, 0xf9, 0x5e, 0x94, 0xec, 0xf8, 0x1e, 0x3b, 0xb0, 0x14, 0x8b, 0x60, 0xa0, 0x43, 0x50, - 0x15, 0x97, 0xb3, 0x99, 0xe6, 0x06, 0xbd, 0x15, 0x38, 0xf7, 0x88, 0xc3, 0x4e, 0x47, 0x23, 0x8f, - 0x2a, 0x5d, 0xac, 0x33, 0x81, 0x70, 0xc8, 0x0e, 0x58, 0xed, 0x82, 0xa8, 0xd6, 0xd9, 0xec, 0x61, - 0x07, 0x19, 0x55, 0x18, 0x47, 0xe0, 0xa3, 0x45, 0x8f, 0xc0, 0xc7, 0x72, 0x02, 0x7e, 0x7f, 0xb2, - 0x44, 0xce, 0xe2, 0x87, 0xb1, 0x83, 0x43, 0x63, 0x27, 0x24, 0xb3, 0xd8, 0x83, 0x96, 0x9f, 0x48, - 0x98, 0x58, 0x61, 0x39, 0xba, 0xb4, 0xcd, 0x47, 0x6b, 0x6c, 0xd7, 0x6d, 0x66, 0x90, 0xe6, 0xee, - 0xfe, 0x72, 0x89, 0xb0, 0xe8, 0xb3, 0xd3, 0xd8, 0xc7, 0xae, 0xda, 0xfb, 0x98, 0x9b, 0x2f, 0x34, - 0xfa, 0x6c, 0x61, 0x6f, 0x90, 0x39, 0xc4, 0xd6, 0xa2, 0xf0, 0xfe, 0x91, 0x54, 0xae, 0xf3, 0x7d, - 0xb3, 0x7f, 0xa1, 0xc4, 0xc5, 0x9d, 0xd2, 0x8a, 0xef, 0x61, 0x80, 0x99, 0xfe, 0x8d, 0x0b, 0x59, - 0x2a, 0x81, 0x8b, 0xc5, 0x05, 0x1a, 0x5b, 0xff, 0x46, 0x84, 0x59, 0x8a, 0x21, 0xf4, 0xd6, 0xe1, - 0xfe, 0x9d, 0x12, 0x79, 0xdc, 0x24, 0x34, 0xae, 0x99, 0xe5, 0x39, 0x44, 0x57, 0xc9, 0x44, 0xd8, - 0xc1, 0x8c, 0x31, 0xca, 0x02, 0x78, 0x49, 0x8e, 0xf8, 0x4d, 0x01, 0xa7, 0x2b, 0xf7, 0x9c, 0xc9, - 0x5d, 0xc2, 0x41, 0x95, 0xc4, 0x4c, 0x14, 0xcc, 0x12, 0x8d, 0xc5, 0x05, 0x41, 0x96, 0x89, 0x82, - 0x1d, 0x03, 0xd0, 0x45, 0xce, 0x31, 0xee, 0x5f, 0x2a, 0xf1, 0x51, 0x36, 0x9b, 0xee, 0x7c, 0x95, - 0xcc, 0x1d, 0xa0, 0xb1, 0xb0, 0x76, 0xbf, 0x83, 0x5b, 0x08, 0x3b, 0xfe, 0x2c, 0x15, 0x11, 0x9c, - 0x7d, 0xba, 0xbb, 0x3c, 0x2f, 0x5a, 0x3f, 0xb7, 0x95, 0x62, 0x0b, 0x3d, 0x15, 0xb9, 0xbf, 0x2b, - 0xe6, 0x2a, 0xd3, 0x5a, 0xe8, 0x62, 0xeb, 0x84, 0xcd, 0x95, 0x8d, 0x55, 0x10, 0x63, 0xa5, 0x16, - 0x5b, 0x8d, 0x83, 0x41, 0xe2, 0xf1, 0x5c, 0xce, 0xa7, 0xa6, 0x5a, 0x44, 0x15, 0x16, 0x75, 0x6c, - 0xa9, 0x94, 0x84, 0x35, 0x85, 0x01, 0x83, 0x0a, 0xcb, 0x74, 0xa2, 0xf0, 0x30, 0x68, 0xb2, 0x70, - 0xef, 0x8a, 0x5d, 0xa6, 0xa6, 0x30, 0x60, 0x50, 0xa1, 0x89, 0xd6, 0x6d, 0xc7, 0x5c, 0x80, 0x7b, - 0x3b, 0x22, 0x81, 0xc2, 0x84, 0x36, 0xd1, 0x6e, 0x99, 0x48, 0xb0, 0x69, 0xdd, 0xdf, 0xaa, 0x12, - 0xa2, 0x55, 0x04, 0xf4, 0x10, 0x4e, 0x34, 0x3c, 0xaa, 0x20, 0xf1, 0xec, 0x38, 0x95, 0xfc, 0x7b, - 0x31, 0xba, 0xf0, 0xe2, 0x8a, 0x28, 0xc8, 0x7d, 0x5b, 0xaf, 0xc9, 0x09, 0x22, 0xc1, 0xb9, 0xfe, - 0x2c, 0x55, 0xb3, 0xf3, 0xb5, 0x12, 0x99, 0xf4, 0x5a, 0x78, 0x77, 0x36, 0x61, 0x3d, 0x2a, 0x17, - 0x71, 0x56, 0x1a, 0x2d, 0x59, 0xd2, 0x65, 0x79, 0x63, 0x5e, 0x97, 0xa7, 0x5a, 0x06, 0x26, 0xb7, - 0x3d, 0x66, 0x13, 0x9c, 0xd7, 0xa4, 0x6a, 0xc9, 0x3f, 0xca, 0x42, 0x5a, 0xb5, 0xac, 0x32, 0xd1, - 0x60, 0x68, 0x95, 0x78, 0xc3, 0xc4, 0x88, 0x7d, 0x1f, 0x29, 0x72, 0x37, 0xd5, 0xda, 0x34, 0xf3, - 0xd2, 0x04, 0xe0, 0x59, 0x94, 0x8e, 0x84, 0x1d, 0x2d, 0x72, 0xf1, 0xd3, 0xd0, 0xdd, 0x72, 0xa2, - 0x60, 0x13, 0x32, 0xdb, 0xb4, 0x37, 0x09, 0x11, 0xda, 0x74, 0x39, 0xbf, 0x86, 0xd4, 0xee, 0xa2, - 0xb7, 0x85, 0x14, 0x02, 0xd2, 0x55, 0xd0, 0x1e, 0xb1, 0x48, 0xe4, 0x8d, 0xf6, 0x6e, 0x28, 0xa2, - 0x9b, 0x5e, 0x2d, 0xf0, 0xcd, 0x8f, 0x62, 0x2a, 0x9e, 0xb1, 0x8c, 0xde, 0x06, 0x6e, 0x08, 0x2e, - 0xa0, 0xf8, 0xa1, 0x9b, 0x88, 0xdd, 0xaa, 0xc0, 0xbb, 0xb8, 0x95, 0x01, 0x2e, 0x98, 0xb0, 0x3b, - 0x19, 0x7a, 0xf3, 0x65, 0x3f, 0xa9, 0xb8, 0xe2, 0xbc, 0xa8, 0x5e, 0x2f, 0xae, 0xca, 0xc6, 0x1b, - 0xed, 0x5b, 0xb1, 0xcf, 0xee, 0xdf, 0x56, 0x97, 0x9f, 0xd7, 0x17, 0x6a, 0x39, 0x3c, 0x33, 0x3b, - 0x92, 0x55, 0x12, 0xf7, 0x60, 0xf1, 0x5b, 0x26, 0x5d, 0x9a, 0x27, 0x45, 0x1a, 0x6a, 0xa7, 0x68, - 0xd2, 0x83, 0x7d, 0xdb, 0x66, 0x06, 0x69, 0xee, 0x0b, 0x01, 0x99, 0xb6, 0x56, 0xec, 0x10, 0x9d, - 0x9d, 0x2d, 0x32, 0x97, 0x5e, 0x92, 0x43, 0xf4, 0x71, 0xfe, 0xe1, 0x08, 0x99, 0xb1, 0x27, 0x06, - 0x46, 0x30, 0x1c, 0xb0, 0x94, 0x48, 0x3a, 0x11, 0x8b, 0x9a, 0xff, 0x5b, 0x12, 0x01, 0x9a, 0x86, - 0xa5, 0xa4, 0x61, 0xc5, 0x8d, 0x98, 0x13, 0x9d, 0x92, 0x46, 0x61, 0xc0, 0xa0, 0x42, 0x85, 0x6d, - 0x27, 0x0c, 0x13, 0x25, 0xb8, 0xd5, 0x9c, 0x59, 0x66, 0x50, 0x10, 0x58, 0x14, 0xd8, 0x77, 0xb1, - 0x43, 0x2d, 0xdb, 0xdf, 0xa5, 0x04, 0xf6, 0x75, 0x13, 0x09, 0x36, 0x2d, 0x6e, 0x40, 0x61, 0xcc, - 0x26, 0xa1, 0x50, 0x0b, 0x75, 0x0c, 0x4f, 0x9d, 0xdf, 0x32, 0x92, 0x78, 0xe7, 0x8b, 0xe4, 0x71, - 0x75, 0x29, 0x08, 0xb8, 0xff, 0x50, 0xd6, 0x38, 0x66, 0xd9, 0x76, 0x8f, 0xaf, 0x64, 0x93, 0x41, - 0xbf, 0xf2, 0x78, 0xc4, 0x2b, 0x54, 0x3a, 0xc9, 0x71, 0xdc, 0x3e, 0xe2, 0xbd, 0x6e, 0x61, 0x21, - 0x45, 0x4d, 0xf5, 0x89, 0x39, 0x84, 0x30, 0x55, 0x4a, 0x72, 0xe0, 0x97, 0x9b, 0xd4, 0xce, 0x7c, - 0x3d, 0x85, 0x87, 0x9e, 0x12, 0xe8, 0x3a, 0xe4, 0xba, 0x05, 0x5a, 0x30, 0xec, 0x3b, 0x88, 0x68, - 0x44, 0xb5, 0x08, 0x6e, 0xda, 0x68, 0x48, 0xd3, 0xe3, 0x19, 0xb9, 0x17, 0xd1, 0x8f, 0x9e, 0x50, - 0x15, 0xa1, 0x1b, 0xf1, 0x9b, 0xed, 0xc6, 0x19, 0xf9, 0x92, 0x81, 0x03, 0x8b, 0xd2, 0xfd, 0x88, - 0x9c, 0xcd, 0x08, 0x7a, 0xc6, 0x89, 0x43, 0x27, 0xa8, 0xec, 0x53, 0x2a, 0x1a, 0x07, 0x6f, 0xba, - 0x88, 0xde, 0x18, 0x54, 0x38, 0x3b, 0x99, 0xe3, 0xd4, 0xc8, 0x8f, 0xa6, 0x66, 0xe7, 0xba, 0x44, - 0x80, 0xa6, 0x71, 0xff, 0x2b, 0xdd, 0xb5, 0xb5, 0x9b, 0xa1, 0x40, 0x0c, 0x06, 0xed, 0xa6, 0x4c, - 0xf9, 0x67, 0xa4, 0xda, 0x52, 0xdd, 0xbc, 0x6a, 0xe0, 0xc0, 0xa2, 0xc4, 0xb6, 0xb5, 0xa5, 0xd3, - 0x24, 0x1d, 0xfb, 0xa3, 0xbc, 0x29, 0xa0, 0x69, 0xd0, 0xc7, 0x17, 0xfb, 0xad, 0xdd, 0xcd, 0xa0, - 0x7d, 0x57, 0x4c, 0x6c, 0x25, 0x95, 0xeb, 0x02, 0x0e, 0x8a, 0xc2, 0x79, 0x97, 0x54, 0xba, 0x41, - 0x53, 0x4c, 0xe5, 0x45, 0xa9, 0x77, 0xd2, 0xd5, 0x44, 0x25, 0xe6, 0x33, 0xd9, 0x79, 0x0c, 0xd1, - 0x8c, 0x8c, 0x17, 0x71, 0xf1, 0x61, 0xd1, 0x2c, 0xff, 0xf1, 0xd8, 0x80, 0xfe, 0x63, 0xfa, 0xcd, - 0x44, 0x9f, 0xe5, 0x4c, 0xae, 0xe8, 0x6f, 0x76, 0x55, 0x61, 0xc0, 0xa0, 0x42, 0x63, 0xb4, 0x41, - 0x0d, 0x30, 0x69, 0xad, 0xf1, 0x88, 0xdc, 0x89, 0x8f, 0x61, 0x8c, 0xae, 0xa4, 0xb9, 0x41, 0x6f, - 0x05, 0x4e, 0x87, 0x9c, 0x69, 0xe2, 0x3a, 0xb2, 0x6a, 0xad, 0x9e, 0x20, 0x0e, 0x18, 0x6b, 0x5c, - 0x4d, 0x73, 0x82, 0x5e, 0xe6, 0xce, 0x97, 0xc9, 0x82, 0x04, 0xf6, 0x5e, 0xfb, 0x63, 0xcb, 0xa5, - 0xb2, 0xfc, 0x34, 0xe5, 0xb6, 0xb0, 0xda, 0x97, 0x0a, 0x8e, 0xe1, 0xe0, 0xbc, 0x4f, 0xc6, 0xd8, - 0x89, 0x43, 0x3c, 0x3f, 0xc9, 0x76, 0xbb, 0x37, 0x8a, 0x3a, 0xdc, 0x16, 0xd9, 0xb9, 0x85, 0x08, - 0x64, 0xd4, 0xa7, 0x38, 0x0c, 0x08, 0x82, 0x27, 0x1d, 0xaf, 0x49, 0xaf, 0xdd, 0x0e, 0x13, 0x8f, - 0x2b, 0x61, 0x53, 0x45, 0xf4, 0x48, 0xa3, 0x8a, 0x25, 0x5d, 0x96, 0xd7, 0xa3, 0xa2, 0xa3, 0x0c, - 0x0c, 0x98, 0x55, 0xe0, 0x36, 0x1e, 0xde, 0x43, 0x81, 0x29, 0x9d, 0xee, 0xf1, 0xfc, 0x74, 0x91, - 0x6d, 0xfc, 0xa6, 0x55, 0xc8, 0x90, 0x60, 0x36, 0x33, 0x48, 0x73, 0xc7, 0x30, 0x5d, 0xc3, 0x8f, - 0x3a, 0xa3, 0xc3, 0x74, 0xb5, 0x1f, 0xd5, 0x74, 0x9b, 0xb2, 0x2b, 0xa5, 0x3c, 0x34, 0x8f, 0x49, - 0x82, 0xd9, 0xd4, 0x95, 0x52, 0x8d, 0x02, 0x93, 0x6e, 0xe1, 0x1d, 0x32, 0x69, 0x0c, 0xf8, 0x20, - 0xf1, 0xa0, 0x0b, 0x9f, 0xa3, 0xbb, 0x7f, 0x6a, 0x20, 0x07, 0x8a, 0x27, 0xfd, 0xef, 0x65, 0x32, - 0x9b, 0x71, 0x92, 0x71, 0x37, 0x60, 0x11, 0xd3, 0x96, 0xc8, 0xbb, 0x4e, 0x61, 0xc0, 0x30, 0xb6, - 0xe0, 0x2a, 0x17, 0x10, 0x5c, 0x52, 0x8a, 0x56, 0xfa, 0x4a, 0x51, 0x21, 0xac, 0x46, 0x4e, 0x2e, - 0xac, 0xec, 0xdd, 0x61, 0xb4, 0xd0, 0xee, 0xf0, 0x10, 0x04, 0x9c, 0xb5, 0xc1, 0x8c, 0x17, 0xd8, - 0x60, 0x1e, 0x94, 0xc8, 0x8c, 0x3d, 0xf3, 0x0a, 0x8c, 0xf8, 0xa3, 0x3a, 0x80, 0x8b, 0xcc, 0x10, - 0x4b, 0xa2, 0xb0, 0xd5, 0xf2, 0x23, 0x11, 0x29, 0x36, 0x23, 0xec, 0x2a, 0x01, 0x05, 0x83, 0xc2, - 0xfd, 0xf9, 0x32, 0x99, 0xd3, 0x61, 0xc3, 0x22, 0xf5, 0xe9, 0xf0, 0x8e, 0x06, 0xb6, 0xad, 0xa3, - 0x81, 0xbc, 0x8c, 0xa6, 0xa9, 0x76, 0xf5, 0x3d, 0x26, 0x78, 0x3f, 0x75, 0x4c, 0xf0, 0xc6, 0x80, - 0x7c, 0x8f, 0x3f, 0x32, 0xf8, 0xc7, 0x65, 0xf2, 0x58, 0xba, 0xc8, 0x4a, 0xcb, 0x0b, 0x0e, 0x86, - 0x38, 0x4e, 0x5f, 0xb4, 0xc6, 0xe9, 0xad, 0xc1, 0xfa, 0xc3, 0x1a, 0xd7, 0x77, 0xb0, 0xbc, 0xd4, - 0x60, 0xbd, 0x73, 0x12, 0xe6, 0xc7, 0x8f, 0xd8, 0x7f, 0x28, 0x91, 0x27, 0x32, 0xcb, 0x9d, 0x86, - 0x0b, 0xf4, 0x0b, 0xb6, 0x0b, 0xf4, 0xf5, 0x13, 0x74, 0xaf, 0x8f, 0x4f, 0xf4, 0x3f, 0x97, 0xfb, - 0x74, 0x8b, 0x79, 0xcb, 0x6e, 0xd2, 0xed, 0xb7, 0x41, 0x37, 0xa9, 0x18, 0x63, 0x23, 0xe5, 0x21, - 0xdf, 0x45, 0xb6, 0x7f, 0x6a, 0x30, 0x5d, 0xfb, 0x0b, 0x69, 0x16, 0x1a, 0x0d, 0x26, 0x07, 0x3b, - 0xa7, 0x56, 0x79, 0x48, 0x39, 0xb5, 0xa8, 0x8c, 0x39, 0x54, 0x56, 0x7a, 0xda, 0x09, 0x67, 0xd8, - 0xef, 0x06, 0x15, 0x55, 0x93, 0x50, 0xa7, 0xe5, 0x21, 0x12, 0x23, 0xb9, 0x0b, 0xce, 0xfa, 0x80, - 0x66, 0xbc, 0x05, 0xbf, 0x33, 0xa9, 0x3c, 0x96, 0x8a, 0xa7, 0xfb, 0x8d, 0x0a, 0xf9, 0xc4, 0x31, - 0xd3, 0x8e, 0x6e, 0x12, 0xd6, 0xc9, 0xe7, 0x2b, 0x69, 0xf7, 0xd4, 0x42, 0x66, 0x61, 0xcb, 0x5f, - 0x95, 0xfa, 0x58, 0xe5, 0x8f, 0xfd, 0xb1, 0x7e, 0xce, 0x74, 0x26, 0xf2, 0x50, 0xc7, 0xab, 0x27, - 0x5e, 0x58, 0x0f, 0xcf, 0xbb, 0x78, 0x8a, 0x8e, 0x0f, 0x4c, 0x63, 0xfd, 0x5c, 0x66, 0xa7, 0xac, - 0x00, 0x0b, 0xbc, 0x62, 0x86, 0x40, 0xe3, 0x2e, 0x8a, 0xbe, 0x62, 0x26, 0x11, 0xa0, 0x69, 0xac, - 0x38, 0x8a, 0x72, 0x6e, 0x1c, 0xc5, 0xbf, 0x29, 0x91, 0x73, 0xe9, 0x46, 0x9c, 0x86, 0xd4, 0xa9, - 0xdb, 0x52, 0x67, 0x71, 0xb0, 0x6f, 0xdf, 0x47, 0xe0, 0xfc, 0xec, 0x14, 0x39, 0xdf, 0xb3, 0x59, - 0xf1, 0x61, 0xfc, 0xb1, 0x12, 0x39, 0xb3, 0xc7, 0xec, 0x0b, 0xe3, 0xc6, 0x8f, 0xe8, 0x58, 0xce, - 0x35, 0xa9, 0x63, 0x2f, 0x0a, 0x71, 0x6b, 0xa9, 0x87, 0x04, 0x7a, 0x2b, 0x73, 0x7e, 0x9a, 0x0e, - 0xb5, 0x77, 0x2f, 0xee, 0xc9, 0xa3, 0x2f, 0xe6, 0xd1, 0xe7, 0x72, 0x5c, 0x79, 0x39, 0x19, 0xf8, - 0x97, 0xe7, 0x31, 0x56, 0x34, 0x8b, 0x0a, 0x32, 0x6b, 0xa5, 0x4a, 0x00, 0xcf, 0x2e, 0x86, 0x6a, - 0x5f, 0xa1, 0xbb, 0x6b, 0x59, 0xf7, 0x0f, 0xb8, 0x4c, 0x92, 0x18, 0x50, 0x1c, 0x9d, 0x0f, 0x48, - 0x75, 0x4f, 0x5e, 0xf2, 0x11, 0x42, 0x2f, 0x67, 0x67, 0xc9, 0xbc, 0x13, 0xc4, 0xa3, 0xdc, 0x15, - 0x0a, 0x34, 0x53, 0xe7, 0x1a, 0xa9, 0xb4, 0x77, 0x63, 0x71, 0x5f, 0x37, 0x2f, 0x8e, 0xc6, 0x8e, - 0x5a, 0xe2, 0x37, 0x10, 0x29, 0x10, 0x90, 0x05, 0x72, 0x8a, 0x76, 0x9a, 0xc2, 0x87, 0x9d, 0xc3, - 0x09, 0x96, 0x57, 0x7b, 0x39, 0x51, 0x20, 0x20, 0x0b, 0x16, 0xb0, 0x87, 0xf7, 0x15, 0x84, 0x83, - 0x3a, 0xe7, 0x32, 0x77, 0xcf, 0xad, 0x0c, 0x9e, 0x8a, 0x8e, 0x81, 0x81, 0x33, 0x42, 0xcf, 0x74, - 0x83, 0xa5, 0x8e, 0x16, 0xfe, 0x83, 0xbc, 0x84, 0xc2, 0x3d, 0x69, 0xa6, 0xf9, 0x41, 0x1a, 0x87, - 0x83, 0xe0, 0xc5, 0xb8, 0xfa, 0x9d, 0xfd, 0xdd, 0x58, 0xf8, 0x07, 0xf2, 0xb8, 0xf6, 0x24, 0x01, - 0x17, 0x5c, 0x19, 0x1c, 0x04, 0x2f, 0x67, 0x95, 0x94, 0x77, 0x1b, 0x22, 0xff, 0x63, 0x8e, 0x45, - 0x6b, 0x5f, 0x27, 0x5d, 0x1e, 0xc3, 0x08, 0xba, 0xf5, 0x15, 0xa0, 0xe5, 0xa9, 0x3e, 0x32, 0xbe, - 0xcb, 0x2f, 0x08, 0x8a, 0x5c, 0x8f, 0x97, 0xf3, 0x6e, 0x31, 0xf6, 0xdc, 0x26, 0xe4, 0x37, 0x19, - 0x04, 0x02, 0x24, 0x3b, 0xba, 0x0f, 0x93, 0x5d, 0x75, 0xe5, 0x51, 0x24, 0x7b, 0x5c, 0x1c, 0xec, - 0x8a, 0xa4, 0xb0, 0x9e, 0x15, 0x14, 0x0c, 0x8e, 0x38, 0xe7, 0x3d, 0x99, 0xfd, 0x9e, 0x25, 0x7a, - 0xcc, 0x9d, 0xf3, 0x99, 0xc9, 0xf2, 0xf9, 0x9c, 0x57, 0x28, 0xd0, 0x4c, 0x9d, 0x2e, 0x99, 0x3e, - 0x8c, 0x3b, 0xfb, 0xbe, 0x5c, 0xfa, 0x2c, 0xfb, 0xe3, 0xe4, 0x95, 0xcf, 0xe6, 0xa4, 0xf4, 0x14, - 0x45, 0x82, 0x28, 0xe9, 0x7a, 0xad, 0x1e, 0x09, 0xc6, 0xd2, 0x28, 0xdd, 0x36, 0xd9, 0x82, 0x5d, - 0x0b, 0x7e, 0x92, 0x0f, 0xbb, 0xe1, 0xce, 0x51, 0xe2, 0x8b, 0xec, 0x90, 0x39, 0x9f, 0xe4, 0x3d, - 0x4e, 0xdc, 0xfb, 0x49, 0x04, 0x02, 0x24, 0x3b, 0x35, 0x64, 0x4c, 0x1a, 0xcf, 0x15, 0x1e, 0xb2, - 0x9e, 0x3e, 0xe8, 0x21, 0x63, 0xd2, 0x57, 0x33, 0x75, 0x7f, 0x77, 0xb4, 0x77, 0x83, 0x63, 0xfa, - 0xe7, 0xcf, 0xf4, 0x1e, 0x67, 0xbe, 0x3b, 0xb8, 0x7d, 0xf5, 0x10, 0x0f, 0x36, 0xe9, 0xfe, 0x70, - 0xbe, 0x93, 0xb9, 0x7b, 0x89, 0x1d, 0x62, 0x50, 0x33, 0x8d, 0x0f, 0x8d, 0xca, 0x35, 0x9a, 0x8d, - 0x87, 0x3e, 0x75, 0xa6, 0x55, 0xbe, 0xca, 0xc7, 0x56, 0xf9, 0xee, 0xd0, 0xf1, 0x46, 0x2d, 0x45, - 0x27, 0xbb, 0x18, 0x30, 0x3f, 0x04, 0xdb, 0x6b, 0x56, 0x04, 0x0b, 0x50, 0xcc, 0x70, 0xe0, 0x9e, - 0x4a, 0x77, 0x02, 0x7c, 0x86, 0x16, 0x49, 0x52, 0xb9, 0x2f, 0x60, 0x5d, 0x8c, 0xc4, 0x53, 0xb5, - 0xe3, 0x88, 0x1f, 0xe4, 0x11, 0xc0, 0xf1, 0x95, 0x9d, 0xa6, 0x0a, 0xf9, 0x0f, 0x4a, 0x19, 0x0a, - 0x0f, 0x57, 0xfa, 0x3f, 0x6b, 0x2b, 0xfd, 0x2f, 0xa6, 0x95, 0xfe, 0x1e, 0x13, 0xdd, 0xd2, 0xf7, - 0x8b, 0x27, 0x0a, 0x2c, 0x9a, 0x8d, 0xc3, 0xfd, 0x5f, 0x25, 0x52, 0xa9, 0x85, 0xcd, 0x21, 0x3a, - 0x01, 0xae, 0x5a, 0x4e, 0x80, 0x17, 0x72, 0x9f, 0xbd, 0xe9, 0x6b, 0xf2, 0xdf, 0x4c, 0x99, 0xfc, - 0x9f, 0xca, 0x67, 0x75, 0xbc, 0x81, 0xff, 0xcd, 0x0a, 0x31, 0x1f, 0xee, 0x71, 0x7e, 0xf3, 0x24, - 0x51, 0x8d, 0x95, 0x62, 0x6f, 0xf9, 0x88, 0x3a, 0x58, 0x0c, 0x90, 0xbc, 0xf2, 0xf4, 0xc7, 0x36, - 0xb8, 0xf1, 0x8e, 0x1f, 0xec, 0xed, 0x27, 0x7e, 0x33, 0xdd, 0xb1, 0xd3, 0x0b, 0x6e, 0xfc, 0x2f, - 0x25, 0x32, 0x9b, 0xaa, 0xdd, 0x39, 0xc8, 0xba, 0x35, 0x71, 0x52, 0xab, 0xfe, 0x4c, 0xee, 0x3d, - 0x8b, 0x45, 0x42, 0x94, 0x27, 0x5a, 0xda, 0xde, 0x4c, 0x0f, 0x51, 0xae, 0xea, 0x18, 0x0c, 0x0a, - 0xf4, 0xe2, 0x27, 0x61, 0x27, 0x6c, 0x85, 0x7b, 0x47, 0xd7, 0x7d, 0x79, 0x29, 0x5f, 0x79, 0xf1, - 0xb7, 0x35, 0x0a, 0x4c, 0x3a, 0x4c, 0xf4, 0x94, 0x7e, 0xf7, 0xe9, 0xff, 0x4f, 0xd4, 0x3f, 0x3e, - 0x13, 0xf5, 0xb7, 0x4b, 0x64, 0x0e, 0x6b, 0x67, 0x21, 0x1c, 0x32, 0x04, 0x51, 0x65, 0xdc, 0x2e, - 0x1d, 0x93, 0x71, 0x1b, 0xef, 0x70, 0x24, 0xcd, 0xb0, 0x2b, 0xb3, 0xc0, 0x18, 0x52, 0x0c, 0xa1, - 0x20, 0xb0, 0x82, 0x8e, 0xb6, 0x49, 0xdc, 0xcf, 0x30, 0xe9, 0x28, 0x14, 0x04, 0x56, 0x26, 0xe4, - 0x1e, 0xc9, 0x4e, 0xc8, 0xcd, 0x93, 0xe6, 0x88, 0xd0, 0x01, 0xb1, 0x33, 0x1b, 0x49, 0x73, 0x64, - 0x4c, 0x81, 0xa6, 0x71, 0xff, 0x69, 0x85, 0x4c, 0x61, 0x04, 0x9d, 0x0a, 0x2f, 0x7e, 0xc3, 0x0a, - 0x2f, 0x7e, 0x36, 0x15, 0x5e, 0x3c, 0x67, 0xd2, 0x3e, 0x9c, 0xe8, 0x62, 0x91, 0x5e, 0x89, 0xa5, - 0x8c, 0x3f, 0x69, 0x64, 0xb1, 0x95, 0x5e, 0x49, 0x71, 0x02, 0x9b, 0xf1, 0x9f, 0xa8, 0x88, 0xe2, - 0x3f, 0x2a, 0x91, 0x19, 0xfa, 0x2d, 0x70, 0x8a, 0xfe, 0x49, 0x9a, 0x8f, 0x66, 0x52, 0xa6, 0xb1, - 0x63, 0x92, 0x32, 0xfd, 0x52, 0x89, 0x60, 0xe0, 0xe7, 0x69, 0x78, 0xd3, 0xd6, 0x6d, 0x6f, 0xda, - 0x73, 0xb9, 0xc2, 0xb7, 0x8f, 0x03, 0xed, 0x57, 0x2b, 0x64, 0x1a, 0x9b, 0x1c, 0xee, 0xc9, 0x0f, - 0x66, 0x0d, 0x4e, 0xa9, 0xc0, 0xe0, 0x60, 0x82, 0x86, 0xb0, 0xd5, 0x0a, 0xef, 0xa5, 0x3f, 0xde, - 0x3a, 0x83, 0x82, 0xc0, 0xa2, 0x9b, 0xb2, 0x83, 0x49, 0x64, 0xc2, 0x6e, 0x9c, 0xbe, 0xee, 0x55, - 0x13, 0x70, 0x50, 0x14, 0x74, 0xc5, 0x4f, 0xc5, 0x01, 0xb5, 0x01, 0x64, 0x6c, 0xc1, 0x08, 0x8b, - 0x2d, 0xe0, 0xb9, 0xef, 0x0c, 0x38, 0x58, 0x54, 0x54, 0xd5, 0xac, 0xb2, 0xdf, 0x6c, 0x0d, 0x9d, - 0x20, 0x4b, 0x38, 0x4f, 0xcc, 0x24, 0x39, 0x80, 0x66, 0x86, 0xc7, 0x00, 0x89, 0x0c, 0x83, 0x88, - 0xc5, 0xb1, 0xa1, 0x52, 0x4e, 0x55, 0x80, 0x04, 0xe6, 0xc0, 0x52, 0xff, 0x3b, 0xaf, 0x60, 0xca, - 0xd7, 0xa0, 0xb5, 0x89, 0xaf, 0x4f, 0x88, 0x40, 0x12, 0x91, 0xc3, 0x55, 0x00, 0x41, 0xe3, 0x71, - 0xcf, 0x67, 0x97, 0x4d, 0xf9, 0x1b, 0x04, 0x13, 0x8c, 0x9a, 0xed, 0xf9, 0x9b, 0x0a, 0x0a, 0x06, - 0x85, 0xfb, 0x3a, 0xdb, 0xbb, 0x07, 0x0c, 0x3f, 0xff, 0x6e, 0x99, 0x38, 0x35, 0x16, 0x6e, 0x61, - 0x3d, 0xd3, 0xb0, 0x4f, 0x66, 0x62, 0x6a, 0xac, 0xb6, 0xbb, 0xf7, 0x05, 0xab, 0x62, 0x01, 0xff, - 0xf5, 0x35, 0xb3, 0x0c, 0xbf, 0x60, 0x69, 0xc3, 0x20, 0xc5, 0x17, 0x87, 0x24, 0xea, 0xb6, 0x97, - 0x62, 0x7c, 0xef, 0x4d, 0x3c, 0xb4, 0xc0, 0x86, 0x04, 0x24, 0x10, 0x34, 0x1e, 0xe7, 0x00, 0xfb, - 0x71, 0x83, 0x4a, 0xa3, 0x30, 0x4c, 0xe4, 0xac, 0x61, 0x59, 0xb7, 0x0d, 0x38, 0x58, 0x54, 0x98, - 0xb0, 0x3a, 0xee, 0x76, 0x3a, 0x2d, 0x76, 0xba, 0xe3, 0xb5, 0xae, 0x46, 0x61, 0xb7, 0xc3, 0x23, - 0x6e, 0x45, 0xc2, 0xea, 0x7a, 0x0f, 0x16, 0x32, 0x4a, 0xe0, 0xa2, 0xdf, 0x8d, 0xd9, 0xff, 0xe2, - 0x02, 0x29, 0xf7, 0x31, 0xd5, 0x19, 0x08, 0x24, 0xce, 0xed, 0xb2, 0xad, 0x8a, 0x25, 0xc0, 0xc7, - 0x48, 0x30, 0xc7, 0x27, 0xd3, 0x1d, 0xb6, 0x1d, 0xc9, 0x23, 0xe6, 0x42, 0x43, 0x99, 0x0a, 0xf8, - 0xe0, 0x89, 0xae, 0x4d, 0x36, 0x60, 0x73, 0x75, 0xff, 0x1d, 0x61, 0xb2, 0x46, 0x1c, 0xac, 0x8d, - 0x8b, 0x70, 0x4e, 0xa1, 0x8b, 0x3d, 0x5f, 0xe4, 0xc5, 0x17, 0x2d, 0xc7, 0x45, 0x70, 0x28, 0x48, - 0x2e, 0xce, 0x97, 0xf8, 0x19, 0x39, 0x5b, 0xdf, 0xc5, 0x9f, 0x61, 0xe2, 0xf4, 0x56, 0xa0, 0xb2, - 0x60, 0x01, 0x06, 0x3b, 0x67, 0x93, 0x4c, 0x8b, 0x2c, 0xe9, 0xc2, 0x56, 0xaf, 0x58, 0xf6, 0xea, - 0x34, 0x98, 0xc8, 0x07, 0x69, 0x00, 0xd8, 0x85, 0x9d, 0x3d, 0xf2, 0x94, 0xf1, 0x74, 0x4a, 0x46, - 0x50, 0x12, 0x17, 0x1c, 0xcf, 0xa1, 0x17, 0x60, 0xfb, 0x38, 0x42, 0x38, 0x9e, 0x0f, 0x1d, 0xe4, - 0xc7, 0xbc, 0x46, 0x12, 0x1c, 0xfa, 0xab, 0xbe, 0xd7, 0xa4, 0x5a, 0x99, 0x6f, 0xdf, 0x2e, 0x7e, - 0x82, 0x56, 0xf0, 0xd8, 0x52, 0x16, 0x01, 0x64, 0x97, 0xa3, 0xf6, 0x7a, 0xb5, 0xd9, 0x8e, 0xc5, - 0x18, 0x8c, 0x59, 0xaf, 0xc4, 0x54, 0x57, 0x6f, 0xd4, 0x55, 0xff, 0xf5, 0x0f, 0xd0, 0x05, 0x9c, - 0x0f, 0xf9, 0xe3, 0xb5, 0xca, 0x20, 0xe1, 0xaf, 0x13, 0xbd, 0x55, 0xc8, 0x04, 0xb6, 0x2e, 0x42, - 0x70, 0x37, 0x96, 0x0a, 0xfe, 0xb3, 0xee, 0x48, 0x58, 0x55, 0x38, 0x3f, 0x44, 0x17, 0x96, 0x1f, - 0xe1, 0xa3, 0xac, 0x4b, 0x0d, 0x96, 0xf5, 0x91, 0x9d, 0x50, 0x4d, 0x58, 0x11, 0xf0, 0x4e, 0xbd, - 0x87, 0x02, 0x32, 0x4a, 0x39, 0xd7, 0x50, 0xe2, 0x98, 0x50, 0x11, 0xab, 0x29, 0x55, 0xbb, 0xf9, - 0x55, 0x1f, 0x13, 0xbb, 0xe3, 0x1b, 0x15, 0x36, 0x47, 0x48, 0x95, 0xc3, 0x6d, 0x45, 0x65, 0xb3, - 0x26, 0x76, 0x84, 0x61, 0x6f, 0x46, 0x6b, 0xb4, 0x94, 0xf0, 0xc4, 0xe2, 0x86, 0x9f, 0xe0, 0x93, - 0x51, 0xcc, 0xdf, 0x3c, 0x61, 0x64, 0xb9, 0xd2, 0x28, 0x30, 0xe9, 0x50, 0x07, 0x62, 0x07, 0x1d, - 0x1b, 0xab, 0xcc, 0x8b, 0x3c, 0xa1, 0xd7, 0xce, 0x35, 0x0e, 0x06, 0x89, 0x97, 0xa4, 0x1b, 0xb5, - 0x15, 0xe6, 0x11, 0x4e, 0x91, 0x52, 0x30, 0x48, 0x3c, 0x46, 0x87, 0xa5, 0xdf, 0xe2, 0x99, 0x29, - 0xe2, 0x9d, 0xef, 0x95, 0xe0, 0x05, 0x9f, 0xe3, 0xb9, 0x4f, 0xe6, 0xd4, 0x7b, 0x40, 0x3c, 0xfd, - 0x60, 0x3c, 0x3f, 0x5b, 0xe4, 0xe9, 0xdc, 0xcc, 0x2c, 0x86, 0x2a, 0x38, 0x77, 0x23, 0xc5, 0x13, - 0x7a, 0x6a, 0xb1, 0x6e, 0xc9, 0xcf, 0xe5, 0x66, 0x28, 0xc7, 0xe7, 0x78, 0xba, 0x3b, 0xcd, 0xf0, - 0x80, 0x8a, 0x0c, 0xf6, 0x22, 0x90, 0xf9, 0x10, 0xac, 0x44, 0x80, 0xa6, 0x59, 0xf8, 0x3c, 0x39, - 0xd3, 0x33, 0xa7, 0x07, 0x8a, 0x2a, 0xfb, 0x99, 0x11, 0x52, 0x55, 0x5e, 0x1d, 0x5a, 0xbf, 0xe5, - 0x4a, 0x7b, 0x22, 0xed, 0x4a, 0x9b, 0xc0, 0x9d, 0xd7, 0xf4, 0x9e, 0x7d, 0x39, 0xe3, 0x25, 0xc8, - 0x0b, 0xb9, 0x1f, 0xb1, 0xf8, 0xe5, 0x8e, 0x01, 0xde, 0xc9, 0xd4, 0x6a, 0xfd, 0xc8, 0xb1, 0x6a, - 0x7d, 0xc1, 0x87, 0x7e, 0x50, 0x81, 0xa7, 0x3b, 0x0f, 0x25, 0x4b, 0x3d, 0x62, 0x51, 0x43, 0x20, - 0x70, 0x1c, 0xd3, 0xbb, 0x50, 0x28, 0x33, 0xbd, 0x6b, 0xfc, 0xa4, 0x7a, 0x97, 0xe4, 0x00, 0x9a, - 0x19, 0x26, 0x60, 0x6f, 0xd8, 0x8f, 0x92, 0xa8, 0x3b, 0x1b, 0x17, 0x07, 0x78, 0x14, 0xa4, 0x6b, - 0x24, 0x60, 0x5f, 0x49, 0xf3, 0x83, 0xde, 0x2a, 0xf0, 0x82, 0xfd, 0xac, 0x9a, 0x10, 0x74, 0x07, - 0xc2, 0x54, 0x45, 0xc3, 0x73, 0x64, 0xde, 0xb4, 0x2c, 0xd5, 0x87, 0xe0, 0x7f, 0xfc, 0x8d, 0x12, - 0xf3, 0x3f, 0x6e, 0xfb, 0x07, 0x9d, 0x16, 0xbe, 0x74, 0x32, 0xbc, 0xa6, 0x7f, 0x89, 0x4c, 0x24, - 0xa2, 0x96, 0x62, 0x49, 0xa0, 0x8d, 0x66, 0x31, 0x7f, 0xac, 0x12, 0x04, 0x12, 0x0a, 0x8a, 0xa1, - 0xfb, 0x2f, 0xf8, 0x57, 0x90, 0x98, 0xd3, 0xb0, 0xac, 0x6e, 0xd8, 0x96, 0xd5, 0xcb, 0x85, 0x3b, - 0xd3, 0xc7, 0xc2, 0xfa, 0x86, 0xdd, 0x05, 0xa6, 0xb0, 0x3d, 0xfa, 0x1e, 0x71, 0x77, 0x8b, 0xd8, - 0x0f, 0xad, 0x50, 0x75, 0x85, 0x45, 0x6b, 0x72, 0x89, 0x78, 0x61, 0xc0, 0x48, 0x4d, 0xf7, 0x57, - 0xca, 0xe4, 0x5c, 0xd6, 0xfb, 0xeb, 0x4e, 0x93, 0x4c, 0x75, 0x0c, 0xf5, 0xb9, 0xd8, 0x5d, 0x7e, - 0x53, 0xe1, 0xd6, 0xaa, 0x8b, 0x09, 0x05, 0x8b, 0x2b, 0xa6, 0x5e, 0xc7, 0xd7, 0xe4, 0x95, 0x7b, - 0xa5, 0x3c, 0xb8, 0x88, 0x52, 0xd5, 0xac, 0x19, 0x8c, 0xc0, 0x62, 0x3b, 0x84, 0x3c, 0xe5, 0xee, - 0xdf, 0x2d, 0x91, 0xc7, 0xfb, 0x5c, 0xf8, 0xc7, 0xea, 0xee, 0x31, 0x2f, 0xa4, 0x78, 0xc8, 0x47, - 0x55, 0xc7, 0x7d, 0x93, 0x20, 0xb0, 0xce, 0x0e, 0xde, 0x23, 0x55, 0xaf, 0x9b, 0x96, 0x8b, 0x1c, - 0x83, 0xf7, 0x5c, 0x2e, 0x36, 0xee, 0x9d, 0xaa, 0xf7, 0x4c, 0x0d, 0xae, 0xee, 0xd7, 0x2b, 0x64, - 0x94, 0x3f, 0xb0, 0x58, 0xa3, 0x0a, 0x10, 0xcf, 0x2f, 0x38, 0x58, 0x7a, 0x43, 0xad, 0x27, 0x71, - 0x00, 0x48, 0x36, 0xce, 0x16, 0x39, 0x8b, 0xfe, 0xd5, 0xc0, 0x6b, 0xad, 0xfa, 0x2d, 0xef, 0x48, - 0x2a, 0xde, 0x3c, 0xb7, 0xb4, 0x4c, 0x83, 0x7a, 0x76, 0xa3, 0x97, 0x04, 0xb2, 0xca, 0xe1, 0x75, - 0xa5, 0x54, 0x82, 0x20, 0x9e, 0xb7, 0x51, 0x5d, 0x57, 0x3a, 0x3e, 0x49, 0x10, 0xde, 0xd8, 0xea, - 0xf4, 0x98, 0x18, 0xc6, 0xcb, 0x7c, 0xb6, 0x59, 0x61, 0xd3, 0xe2, 0x5d, 0xa7, 0xb8, 0xcb, 0xce, - 0x48, 0xb7, 0xf7, 0xa9, 0x25, 0xb3, 0x1f, 0xb6, 0x9a, 0xe2, 0x45, 0x29, 0xa5, 0x4e, 0xd5, 0x53, - 0x78, 0xe8, 0x29, 0x81, 0x5c, 0x76, 0xbd, 0xa0, 0x45, 0xa7, 0xb6, 0xe6, 0x32, 0x66, 0x73, 0x59, - 0x4f, 0xe1, 0xa1, 0xa7, 0x84, 0xfb, 0xfb, 0x25, 0x72, 0x36, 0xe3, 0xe4, 0x9e, 0x07, 0x94, 0xed, - 0x51, 0xd1, 0xa8, 0x32, 0x08, 0x1b, 0x01, 0x65, 0x1c, 0x0e, 0x8a, 0x02, 0x67, 0x21, 0xb7, 0x1b, - 0xd3, 0x09, 0x91, 0xc5, 0x51, 0xa9, 0xc0, 0x0e, 0x96, 0xee, 0x47, 0xbd, 0x13, 0x3f, 0xd2, 0xf7, - 0x9d, 0x78, 0xaa, 0x98, 0xec, 0x29, 0xeb, 0xdc, 0x50, 0x4c, 0xb8, 0x7d, 0xce, 0x71, 0x98, 0x15, - 0x7c, 0x36, 0x15, 0xc1, 0x83, 0x0d, 0x49, 0x3d, 0x67, 0xcf, 0x5c, 0x0a, 0x18, 0xdb, 0x92, 0xf1, - 0xa4, 0xfd, 0x8b, 0xf6, 0x6b, 0xb7, 0xba, 0xcd, 0xcb, 0xab, 0xd6, 0x3b, 0x5e, 0x45, 0xb3, 0x9a, - 0x7f, 0x12, 0x53, 0x07, 0xab, 0x67, 0x19, 0xd5, 0xa4, 0xa7, 0xec, 0x6a, 0x14, 0x0c, 0x0c, 0xe9, - 0xbc, 0x20, 0x7a, 0x9f, 0x72, 0x4e, 0x82, 0xd7, 0x0c, 0x63, 0x63, 0x08, 0xa8, 0x1c, 0xa1, 0x6a, - 0x2d, 0x9e, 0x0a, 0xa4, 0x5d, 0xb3, 0xd7, 0x39, 0x18, 0x24, 0xde, 0xce, 0x5c, 0x3e, 0x3e, 0xe4, - 0xcc, 0xe5, 0x13, 0xb9, 0x51, 0x88, 0xbf, 0x48, 0x77, 0x45, 0x96, 0x76, 0x4d, 0xdc, 0x04, 0x45, - 0x27, 0xff, 0xf0, 0x76, 0x45, 0x7c, 0xe7, 0x0d, 0x2b, 0x4b, 0x27, 0x1d, 0x66, 0x2d, 0x00, 0x8e, - 0xc3, 0x24, 0xae, 0xac, 0x6a, 0xfc, 0x7c, 0x53, 0x3c, 0x89, 0xab, 0x7e, 0xfd, 0x9b, 0xc5, 0xb8, - 0x83, 0xdf, 0xa1, 0xb6, 0x37, 0x6b, 0xac, 0xf6, 0xc4, 0x3c, 0x2a, 0x31, 0xee, 0x99, 0x8d, 0x7b, - 0x58, 0x31, 0xee, 0xd9, 0xcc, 0xf3, 0x63, 0xdc, 0x33, 0xcb, 0x3d, 0x7a, 0x31, 0xee, 0x99, 0xcd, - 0xec, 0xa3, 0xcf, 0xfd, 0xe5, 0x4a, 0x9f, 0x6e, 0x31, 0xcd, 0xee, 0x25, 0x5c, 0x05, 0x0c, 0x19, - 0x8b, 0x4d, 0x79, 0x8a, 0xaf, 0x00, 0x0e, 0x03, 0x85, 0x75, 0x62, 0x23, 0x46, 0x9c, 0x37, 0x72, - 0xed, 0x84, 0x1f, 0x78, 0xd1, 0x76, 0xe5, 0x98, 0x17, 0x2c, 0x53, 0x81, 0xe3, 0x18, 0x91, 0xa3, - 0x94, 0xf5, 0xca, 0x49, 0x94, 0xf5, 0xa9, 0x6c, 0x45, 0x1d, 0xaf, 0x25, 0x1d, 0x50, 0x93, 0x1c, - 0x1f, 0xb1, 0xb2, 0x77, 0x45, 0x75, 0x2d, 0x69, 0xcb, 0x46, 0x43, 0x9a, 0x7e, 0x81, 0x6e, 0xab, - 0x27, 0xb7, 0xdf, 0xff, 0x5b, 0x99, 0x7c, 0xe2, 0x98, 0x49, 0xca, 0xa5, 0x93, 0xf5, 0x5d, 0x0c, - 0xe9, 0xd4, 0xf3, 0x6d, 0x6a, 0xe4, 0xdc, 0x6e, 0xb7, 0xd5, 0x3a, 0x62, 0x87, 0xf4, 0x7e, 0x53, - 0x52, 0x08, 0x8d, 0x43, 0x3d, 0x2f, 0xb9, 0x9e, 0x41, 0x03, 0x99, 0x25, 0xd1, 0x77, 0x16, 0xee, - 0xb0, 0xcc, 0x78, 0x4d, 0x7d, 0x85, 0x94, 0x7d, 0x82, 0x8a, 0xf6, 0x9d, 0xdd, 0xec, 0xa1, 0x80, - 0x8c, 0x52, 0xa8, 0x7f, 0xb0, 0x97, 0x29, 0x55, 0xb3, 0x52, 0xfa, 0x07, 0x98, 0x48, 0xb0, 0x69, - 0xa9, 0x81, 0x70, 0xc6, 0x3b, 0xa4, 0x8a, 0x00, 0x4b, 0xff, 0x21, 0x19, 0x70, 0x05, 0x44, 0x19, - 0xc8, 0x4b, 0x69, 0x02, 0xe8, 0x2d, 0xe3, 0xfe, 0x5e, 0x09, 0x05, 0x62, 0xc6, 0x13, 0x4c, 0xd6, - 0xcb, 0xc5, 0x46, 0x10, 0x7b, 0xef, 0xcb, 0xc5, 0xcc, 0x37, 0x67, 0xd3, 0xf2, 0x0f, 0x15, 0xeb, - 0x20, 0x38, 0x4b, 0xf7, 0x10, 0x97, 0x37, 0x14, 0x05, 0xbe, 0x36, 0xd6, 0x0c, 0x0e, 0x83, 0x38, - 0x8c, 0x0a, 0x3c, 0x14, 0xda, 0x13, 0x58, 0xa5, 0xb7, 0xcb, 0x55, 0xce, 0x04, 0x24, 0x37, 0xf7, - 0xaf, 0x96, 0xc9, 0xb4, 0xac, 0x8f, 0xaa, 0x48, 0x4c, 0xa2, 0x0c, 0x4b, 0xcc, 0xbf, 0x67, 0x89, - 0xf9, 0x4b, 0xc5, 0x6e, 0xb0, 0xb0, 0x46, 0xf5, 0x15, 0xef, 0x5f, 0x4c, 0x89, 0xf7, 0xcb, 0x83, - 0x30, 0xcd, 0xf5, 0x2c, 0x9c, 0xb1, 0xe8, 0x1f, 0xa1, 0xbc, 0xa8, 0x59, 0xdd, 0xe9, 0x23, 0xc6, - 0xbf, 0x5e, 0x4e, 0x75, 0x83, 0x89, 0xef, 0xaf, 0x92, 0x91, 0x7d, 0x2f, 0x6a, 0x8a, 0x63, 0x94, - 0x77, 0x06, 0xfc, 0x14, 0xd4, 0x94, 0x89, 0x9a, 0x5c, 0x08, 0xbf, 0xaa, 0x1e, 0x70, 0xa0, 0xa0, - 0xdc, 0x90, 0x50, 0x56, 0xa9, 0xf3, 0x36, 0x3e, 0xf0, 0x10, 0x76, 0x54, 0xc4, 0xcf, 0xb3, 0xfc, - 0x71, 0x07, 0x84, 0x50, 0x0e, 0x8e, 0x5d, 0x1d, 0x82, 0x41, 0xd0, 0x2f, 0xf8, 0xa4, 0xaa, 0xaa, - 0x1e, 0x62, 0xf0, 0xe1, 0xf7, 0x2b, 0xe4, 0x6c, 0xc6, 0x54, 0x71, 0x7e, 0xd4, 0x1a, 0xb5, 0xcf, - 0x0c, 0x3c, 0xd7, 0x3e, 0xe6, 0xb8, 0xfd, 0x28, 0x53, 0x96, 0x9b, 0x62, 0x6e, 0x9c, 0xa0, 0x7a, - 0xaa, 0x51, 0xa7, 0xab, 0x47, 0x50, 0x7e, 0xf5, 0x58, 0xed, 0x29, 0x0d, 0x3e, 0x56, 0xa3, 0xda, - 0x39, 0xc4, 0x6f, 0xfc, 0x13, 0x23, 0xe4, 0x5c, 0xd6, 0x2d, 0x39, 0xe7, 0x27, 0x4b, 0xa9, 0xcc, - 0xca, 0x9f, 0x1b, 0xfc, 0xaa, 0x1d, 0x4f, 0xb7, 0x2c, 0x6e, 0xcf, 0x2f, 0xda, 0xb9, 0x96, 0x73, - 0x47, 0x5b, 0xd4, 0xce, 0xc2, 0xb8, 0x23, 0x9e, 0x24, 0x5b, 0xca, 0x83, 0x77, 0x4f, 0xd0, 0x14, - 0x91, 0x67, 0x3b, 0x4e, 0x85, 0x71, 0x4b, 0x70, 0x7e, 0x18, 0xb7, 0x6c, 0xc3, 0xc2, 0x1e, 0x66, - 0x58, 0x56, 0xfd, 0x1a, 0xe2, 0x14, 0x08, 0x70, 0x4f, 0x32, 0x5a, 0x3d, 0xc4, 0x69, 0xf0, 0xd7, - 0x4b, 0x24, 0x75, 0x94, 0xaf, 0x2c, 0xf2, 0x52, 0x5f, 0x8b, 0x9c, 0x52, 0x50, 0xa5, 0xcb, 0x4f, - 0xa7, 0xfc, 0x05, 0x0a, 0x03, 0x86, 0x51, 0xcf, 0xc4, 0x55, 0xfa, 0x3d, 0x13, 0x87, 0xa6, 0x5a, - 0xcb, 0x3f, 0xf4, 0xa5, 0x7d, 0xac, 0x84, 0xf7, 0x26, 0x02, 0x81, 0xe3, 0xdc, 0x6f, 0x57, 0xc8, - 0x18, 0x37, 0x42, 0x87, 0xb8, 0x2d, 0xd7, 0x84, 0x3d, 0x58, 0xe8, 0xbe, 0x1a, 0x6f, 0xcd, 0x22, - 0x1a, 0x8c, 0x7c, 0x42, 0xa9, 0xbe, 0x69, 0x1b, 0xd2, 0x59, 0xb4, 0x7a, 0xbf, 0x90, 0x8a, 0x62, - 0x23, 0x9c, 0x87, 0x31, 0x16, 0xfb, 0x84, 0xc4, 0xec, 0xc5, 0x20, 0xe4, 0x21, 0x72, 0x86, 0xbd, - 0x51, 0xa8, 0x1d, 0x75, 0x55, 0x8c, 0xb7, 0x46, 0x27, 0x2b, 0x52, 0x08, 0x30, 0x78, 0x2f, 0xbc, - 0x45, 0xaa, 0x8a, 0x38, 0x4f, 0xef, 0x9e, 0x32, 0xa7, 0xe4, 0x9f, 0x22, 0xb3, 0xa9, 0xba, 0x06, - 0x52, 0xdb, 0xbf, 0x45, 0x95, 0x89, 0x9e, 0x17, 0x2e, 0x31, 0xef, 0xdc, 0xb9, 0x56, 0x86, 0xf7, - 0x41, 0x7c, 0xe0, 0x93, 0xf8, 0x2d, 0xf4, 0x93, 0xf0, 0x19, 0x58, 0xc8, 0xac, 0x4d, 0x66, 0x41, - 0x2c, 0x67, 0x67, 0x41, 0x64, 0xcf, 0xa4, 0xf0, 0xb6, 0x9f, 0x86, 0x06, 0xb4, 0x61, 0x6b, 0x40, - 0xcf, 0x17, 0x99, 0x06, 0x7d, 0x54, 0x9f, 0x7f, 0x5d, 0x22, 0x0e, 0x27, 0x48, 0xbf, 0x1c, 0xc6, - 0xbd, 0x39, 0x86, 0xce, 0xae, 0xe7, 0x8d, 0xc2, 0x80, 0x41, 0x35, 0x60, 0x56, 0x68, 0xf5, 0xe2, - 0x4e, 0xb1, 0x67, 0xbd, 0x2b, 0x05, 0x9e, 0xf5, 0xfe, 0x8d, 0x0a, 0x49, 0x1f, 0x7b, 0x3b, 0x1f, - 0x90, 0x29, 0xbc, 0x62, 0xb3, 0x13, 0xb4, 0x82, 0x24, 0xf0, 0xe3, 0x62, 0x47, 0x0a, 0x2b, 0x46, - 0x09, 0xe1, 0x0f, 0x34, 0x20, 0x60, 0x71, 0xc4, 0x58, 0xad, 0x4e, 0x44, 0x2d, 0x85, 0x96, 0xbf, - 0xc7, 0xf4, 0x0e, 0x95, 0x43, 0xa2, 0xa6, 0xa0, 0x60, 0x50, 0x64, 0xc4, 0x57, 0x55, 0x4e, 0x23, - 0xbe, 0x6a, 0x64, 0xc0, 0xf8, 0xaa, 0xd1, 0x42, 0xf1, 0x55, 0x40, 0xce, 0x4b, 0x37, 0x1e, 0xfe, - 0xc6, 0x6b, 0x6a, 0x3c, 0xed, 0x99, 0x88, 0x8a, 0x5b, 0xc0, 0xab, 0x47, 0x90, 0x49, 0x01, 0x7d, - 0x4a, 0xba, 0x5d, 0x72, 0xb6, 0xee, 0x47, 0x01, 0xcb, 0x4a, 0xd3, 0xd4, 0x2b, 0xf0, 0xcb, 0x78, - 0xc1, 0xdf, 0x5e, 0xfc, 0x03, 0xde, 0x20, 0x32, 0xee, 0xf6, 0xcb, 0xc5, 0xae, 0x59, 0xba, 0x7f, - 0xbe, 0x4c, 0xc6, 0x45, 0x78, 0xc9, 0x10, 0x37, 0x92, 0xeb, 0x96, 0x7d, 0xf7, 0x72, 0xde, 0xca, - 0x65, 0xcd, 0xe9, 0x6b, 0xd9, 0xd5, 0x53, 0x96, 0xdd, 0x2b, 0xc5, 0xd8, 0x1d, 0x6f, 0xd3, 0xfd, - 0x7a, 0x99, 0xee, 0xf6, 0x76, 0x58, 0xcd, 0xf0, 0x86, 0xe3, 0x0b, 0x64, 0x3c, 0x16, 0xb1, 0x27, - 0x85, 0x1e, 0x52, 0x4f, 0x7f, 0x52, 0xfd, 0x44, 0xb8, 0x88, 0x36, 0x91, 0xec, 0x32, 0xc3, 0x5b, - 0x2a, 0xa7, 0x11, 0xde, 0xe2, 0x7e, 0x9b, 0x89, 0x54, 0x73, 0x00, 0x4f, 0x63, 0x4f, 0x78, 0xcf, - 0x96, 0xbe, 0xaf, 0x16, 0x9a, 0x0a, 0xa2, 0x7d, 0x7d, 0xf6, 0x86, 0x6f, 0x96, 0xc8, 0xa4, 0x20, - 0x3c, 0x8d, 0x1e, 0xfc, 0x90, 0xdd, 0x83, 0x17, 0x0a, 0xf5, 0xa0, 0x4f, 0xd3, 0xff, 0x66, 0x59, - 0x35, 0xbd, 0x26, 0x5e, 0x54, 0xcc, 0xcd, 0x83, 0x37, 0xd1, 0x89, 0xc2, 0x24, 0x6c, 0x84, 0x2d, - 0xb1, 0xcb, 0x3f, 0xa9, 0x23, 0x92, 0x39, 0xfc, 0x81, 0xf1, 0x3f, 0x28, 0x6a, 0x16, 0x69, 0x8b, - 0xef, 0x3f, 0xf2, 0x2d, 0x2a, 0xeb, 0x3d, 0xc7, 0x1d, 0xf9, 0x5e, 0x2e, 0xc2, 0x44, 0x38, 0xff, - 0xa0, 0xef, 0x44, 0xea, 0xf8, 0x62, 0xc5, 0x09, 0x0c, 0xae, 0x32, 0xf4, 0x8d, 0xd5, 0x30, 0x6a, - 0x3b, 0x35, 0x6f, 0x08, 0x38, 0x28, 0x0a, 0xf7, 0x2d, 0x26, 0x63, 0xd9, 0xf0, 0x0c, 0x16, 0x34, - 0xfc, 0x53, 0x63, 0x6a, 0x60, 0x99, 0x93, 0xe4, 0x06, 0x46, 0x04, 0x45, 0xca, 0x0e, 0x2c, 0x26, - 0xd0, 0xb0, 0x09, 0x66, 0xf0, 0x10, 0x2d, 0x0f, 0x9c, 0x8d, 0xe3, 0xf7, 0x78, 0xc2, 0xdf, 0x2a, - 0x2c, 0x23, 0x07, 0xf0, 0x7d, 0xb3, 0xbc, 0x1a, 0x2c, 0x97, 0xc0, 0x46, 0x2d, 0x9d, 0xbb, 0x70, - 0x45, 0x22, 0x40, 0xd3, 0xd0, 0x02, 0x5c, 0x5d, 0xb7, 0x9f, 0xdb, 0x94, 0xea, 0xba, 0x1c, 0x12, - 0x43, 0x5f, 0xa7, 0xfa, 0x8b, 0xca, 0xde, 0x5c, 0xe3, 0x49, 0x78, 0xab, 0x5c, 0x7f, 0x59, 0xd3, - 0x60, 0x30, 0x69, 0xa8, 0x5a, 0x77, 0xb6, 0xa9, 0x22, 0x1d, 0x6b, 0xdd, 0x9d, 0x56, 0xd0, 0xc0, - 0xa2, 0xfc, 0x96, 0xc1, 0xe3, 0x78, 0xac, 0xbd, 0xda, 0x8b, 0x86, 0xac, 0x32, 0xce, 0x36, 0x46, - 0x13, 0xb2, 0x2c, 0xd5, 0xf2, 0x3e, 0x92, 0x48, 0xee, 0x75, 0x41, 0xba, 0xe0, 0xeb, 0x36, 0xfa, - 0x01, 0x03, 0x71, 0xa1, 0x20, 0x40, 0x90, 0x66, 0x81, 0x87, 0xe5, 0x2d, 0xf3, 0xb5, 0x99, 0x9a, - 0x08, 0xf8, 0x54, 0x87, 0xe5, 0xd6, 0x5b, 0x34, 0x35, 0x48, 0x51, 0x53, 0x69, 0x3f, 0x6f, 0x42, - 0xc4, 0x15, 0x64, 0x3c, 0x70, 0x8b, 0x45, 0x7a, 0xdc, 0x27, 0x31, 0xdc, 0x73, 0xb3, 0x0f, 0x0d, - 0xf4, 0x2d, 0x8d, 0x59, 0x2c, 0xe5, 0x48, 0x1a, 0xc1, 0x9f, 0x3a, 0x4c, 0xc3, 0xc0, 0x81, 0x45, - 0xf9, 0xf1, 0x4e, 0x1a, 0xbe, 0x8a, 0x85, 0x8d, 0x4d, 0xd5, 0xf9, 0x0a, 0x99, 0x32, 0xdb, 0x28, - 0xc4, 0xe4, 0x6b, 0xc5, 0x5f, 0xf0, 0x11, 0x9b, 0xb3, 0x6a, 0xb9, 0x89, 0x03, 0x8b, 0xb7, 0xdb, - 0x20, 0xb3, 0xa9, 0x17, 0x44, 0xd5, 0x53, 0xb4, 0xa5, 0x87, 0xf5, 0x14, 0x2d, 0xa6, 0xa9, 0x19, - 0xdd, 0xf6, 0x82, 0xfc, 0x3c, 0xf0, 0x45, 0xde, 0x72, 0x75, 0xde, 0x24, 0x63, 0xfe, 0xee, 0x2e, - 0x1d, 0x6c, 0xb1, 0xe6, 0x9e, 0x52, 0x0f, 0x93, 0x33, 0x28, 0xae, 0x24, 0x56, 0x19, 0xff, 0x09, - 0x82, 0xd8, 0xfd, 0xb7, 0xd4, 0xba, 0xda, 0x0e, 0x5b, 0xf2, 0xcc, 0x23, 0xa7, 0x25, 0xcb, 0x3d, - 0x19, 0xe9, 0x5f, 0xcc, 0xc8, 0x48, 0xef, 0x68, 0x86, 0x19, 0xf9, 0xe8, 0x55, 0x6f, 0x2a, 0x85, - 0x7a, 0x33, 0x32, 0x48, 0x6f, 0xbe, 0x56, 0x22, 0x22, 0x1c, 0xa2, 0xc0, 0xb6, 0xd4, 0x94, 0x59, - 0xa4, 0xad, 0x5c, 0x00, 0x17, 0x8a, 0xc4, 0xf4, 0x8b, 0x0c, 0x00, 0x6a, 0x2a, 0x59, 0xf7, 0xfe, - 0x2d, 0xae, 0x68, 0x7a, 0x4f, 0x72, 0xf4, 0x96, 0x7c, 0xc1, 0x3f, 0xa7, 0x5d, 0x03, 0xe5, 0x19, - 0x62, 0x49, 0x96, 0x91, 0xb1, 0x4a, 0x37, 0x63, 0x26, 0x59, 0x96, 0x08, 0xd0, 0x34, 0x18, 0xcc, - 0x10, 0x77, 0x77, 0x18, 0x79, 0x2a, 0x36, 0xa2, 0xce, 0xc1, 0x20, 0xf1, 0xee, 0xff, 0x9c, 0x23, - 0x56, 0xd7, 0xac, 0xd4, 0x36, 0xa5, 0x87, 0x9e, 0xda, 0x86, 0x72, 0xf7, 0x0f, 0x3a, 0xc9, 0xd1, - 0x6a, 0x10, 0x15, 0x4b, 0x33, 0xb6, 0x26, 0xa8, 0x7b, 0xb9, 0x4b, 0x0c, 0x28, 0x8e, 0x7d, 0x12, - 0x15, 0x55, 0x1e, 0x89, 0x44, 0x45, 0x23, 0xff, 0x4f, 0x12, 0x15, 0x51, 0x0b, 0x61, 0x8f, 0x3f, - 0x6d, 0x2e, 0xee, 0x70, 0xe5, 0x1c, 0x5f, 0x65, 0xbc, 0x83, 0xce, 0x2f, 0xeb, 0x08, 0x04, 0x48, - 0x76, 0x98, 0x06, 0x87, 0x1b, 0x0b, 0x22, 0xf7, 0xcf, 0x6b, 0x45, 0xdc, 0x28, 0xbd, 0x69, 0x70, - 0x44, 0x00, 0x8c, 0xe0, 0x25, 0x13, 0x13, 0x8d, 0x7f, 0xfc, 0xc4, 0x44, 0x2a, 0x9d, 0xd0, 0xc4, - 0xc3, 0x4a, 0x27, 0x64, 0xa5, 0x65, 0xaa, 0x0e, 0x23, 0x2d, 0x13, 0x95, 0x6d, 0x8f, 0x75, 0xb2, - 0xb2, 0x9a, 0x89, 0xc4, 0x40, 0x9f, 0x3f, 0x41, 0x96, 0x37, 0xab, 0x6a, 0x76, 0xb5, 0x26, 0x93, - 0x0c, 0xb2, 0x2b, 0x96, 0xf9, 0x9d, 0x26, 0x3f, 0x7e, 0x7e, 0xa7, 0x61, 0x67, 0x10, 0xd2, 0xd9, - 0x9e, 0xa6, 0x87, 0x92, 0xed, 0x69, 0xe6, 0x21, 0x66, 0x7b, 0x32, 0xf2, 0x34, 0xcd, 0x3e, 0xdc, - 0x3c, 0x4d, 0xfb, 0x64, 0xb2, 0x19, 0xde, 0x6b, 0xdf, 0xf3, 0xa2, 0xe6, 0x52, 0x6d, 0x43, 0xa4, - 0x05, 0xca, 0xb9, 0x7f, 0xbf, 0xaa, 0x0b, 0x58, 0x35, 0x70, 0x7f, 0xa1, 0x46, 0x82, 0xc9, 0x5a, - 0x64, 0xac, 0x3a, 0xf3, 0x31, 0x33, 0x56, 0x59, 0x79, 0x9f, 0x9c, 0x61, 0xe4, 0x7d, 0xfa, 0x80, - 0xdd, 0xc2, 0xdd, 0x0d, 0xf6, 0xb6, 0xbc, 0xce, 0xfc, 0xd9, 0x22, 0x35, 0xac, 0x48, 0xf2, 0xde, - 0x1a, 0x14, 0x0a, 0x34, 0xd3, 0xde, 0xcc, 0x52, 0xe7, 0x4e, 0x3b, 0xb3, 0xd4, 0x63, 0x43, 0xcc, - 0x2c, 0x75, 0x7e, 0x18, 0x99, 0xa5, 0xfe, 0x0c, 0x79, 0xfa, 0xf8, 0xfe, 0xeb, 0x64, 0xa1, 0x35, - 0x6d, 0x52, 0xa7, 0x92, 0x85, 0x32, 0xdd, 0xc2, 0xa0, 0x32, 0x02, 0x47, 0xcb, 0xc7, 0x05, 0x8e, - 0xba, 0xff, 0xa4, 0x44, 0x1e, 0xef, 0x93, 0x74, 0xa2, 0x70, 0x24, 0x78, 0x87, 0xcc, 0x76, 0xec, - 0xa2, 0x85, 0xef, 0x6c, 0x58, 0x49, 0x2e, 0x54, 0x54, 0x57, 0x0a, 0x01, 0x69, 0xf6, 0xcb, 0xcf, - 0x7f, 0xe7, 0xfb, 0x4f, 0xff, 0xc0, 0x77, 0xe9, 0xdf, 0xef, 0xd0, 0xbf, 0x1f, 0xfb, 0x83, 0xa7, - 0x4b, 0xdf, 0xa1, 0x7f, 0xdf, 0xa5, 0x7f, 0xbf, 0x4f, 0xff, 0xbe, 0xf6, 0x87, 0x4f, 0xff, 0xc0, - 0x0f, 0x97, 0x0f, 0x2f, 0xff, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe4, 0xf3, 0xf0, 0xa8, 0xba, - 0xb1, 0x00, 0x00, + // 9873 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x8c, 0x24, 0xc7, + 0x75, 0x98, 0x66, 0x66, 0xbf, 0xa6, 0xf6, 0xf3, 0xfa, 0x8e, 0xc7, 0xe5, 0x4a, 0xfc, 0x6a, 0x91, + 0x14, 0x79, 0xe4, 0xed, 0xf1, 0x8e, 0xa4, 0x49, 0x4a, 0x8a, 0xc4, 0xfd, 0xbc, 0x5b, 0xdf, 0xee, + 0xdd, 0xf0, 0xcd, 0xde, 0x9d, 0x64, 0x31, 0x32, 0x7b, 0x67, 0x7a, 0x77, 0x5b, 0x37, 0x3b, 0x3d, + 0xec, 0xee, 0xd9, 0xbb, 0xa5, 0x62, 0xc0, 0x71, 0x1c, 0x07, 0x81, 0x0d, 0x47, 0x46, 0x62, 0x24, + 0x40, 0x12, 0xc4, 0x09, 0x90, 0x20, 0x89, 0x11, 0xc7, 0x72, 0x14, 0x5b, 0x4a, 0x0c, 0x23, 0x40, + 0x1c, 0x41, 0xf9, 0x70, 0x20, 0x03, 0x41, 0xec, 0xd8, 0x80, 0x62, 0xd9, 0x08, 0xf2, 0x23, 0x7f, + 0x02, 0x24, 0x7f, 0x72, 0x30, 0x92, 0xd4, 0xab, 0xef, 0xea, 0xe9, 0xd9, 0xee, 0x59, 0xde, 0xac, + 0xcf, 0x86, 0x7f, 0x2c, 0xb0, 0xf3, 0xde, 0xab, 0x57, 0x1f, 0x5d, 0xf5, 0xea, 0xbd, 0x57, 0xaf, + 0x5e, 0x91, 0x57, 0xee, 0xbe, 0x15, 0x2f, 0x06, 0xe1, 0xa5, 0xbb, 0xdd, 0x1d, 0x3f, 0x6a, 0xfb, + 0x89, 0x1f, 0x5f, 0xea, 0xdc, 0xdd, 0xbb, 0xe4, 0x75, 0x82, 0x4b, 0x87, 0x97, 0x2f, 0xed, 0xf9, + 0x6d, 0x3f, 0xf2, 0x12, 0xbf, 0xb9, 0xd8, 0x89, 0xc2, 0x24, 0x74, 0x3e, 0xc1, 0xa9, 0x17, 0x35, + 0xf5, 0x22, 0xa5, 0x5e, 0xa4, 0xd4, 0x8b, 0x87, 0x97, 0x17, 0x2e, 0xee, 0x05, 0xc9, 0x7e, 0x77, + 0x67, 0xb1, 0x11, 0x1e, 0x5c, 0xda, 0x0b, 0xf7, 0xc2, 0x4b, 0xac, 0xd0, 0x4e, 0x77, 0x97, 0xfd, + 0x62, 0x3f, 0xd8, 0x7f, 0x9c, 0xd9, 0xc2, 0x95, 0xfe, 0x55, 0x47, 0x7e, 0x1c, 0x76, 0xa3, 0x86, + 0x9f, 0x6e, 0xc0, 0xc2, 0x1b, 0xfd, 0xcb, 0x74, 0xdb, 0x87, 0x7e, 0x14, 0x07, 0x61, 0xdb, 0x6f, + 0xf6, 0x14, 0xbb, 0x98, 0x5d, 0x2c, 0xea, 0xb6, 0x93, 0xe0, 0xa0, 0xb7, 0x96, 0xcb, 0xd9, 0xe4, + 0xdd, 0x24, 0x68, 0x5d, 0x0a, 0xda, 0x49, 0x9c, 0x44, 0xe9, 0x22, 0xee, 0x6f, 0x95, 0xc8, 0x33, + 0x4b, 0x77, 0xea, 0x6b, 0x2d, 0x2f, 0x4e, 0x82, 0xc6, 0x72, 0x2b, 0x6c, 0xdc, 0xad, 0x27, 0x61, + 0xe4, 0xdf, 0x0e, 0x5b, 0xdd, 0x03, 0xbf, 0xce, 0x7a, 0xe3, 0xbc, 0x42, 0x26, 0x0e, 0xd9, 0xef, + 0x8d, 0xd5, 0xf9, 0xd2, 0x33, 0xa5, 0x17, 0xab, 0xcb, 0x73, 0xdf, 0xf9, 0xde, 0xd3, 0x1f, 0xfb, + 0xfd, 0xef, 0x3d, 0x3d, 0x71, 0x5b, 0xc0, 0x41, 0x51, 0x38, 0x2f, 0x90, 0xb1, 0xdd, 0x78, 0xfb, + 0xa8, 0xe3, 0xcf, 0x97, 0x19, 0xed, 0x8c, 0xa0, 0x1d, 0x5b, 0xaf, 0x23, 0x14, 0x04, 0xd6, 0xb9, + 0x44, 0xaa, 0x1d, 0x2f, 0x4a, 0x82, 0x84, 0xf6, 0x7d, 0xbe, 0x42, 0x49, 0x47, 0x97, 0xcf, 0x08, + 0xd2, 0x6a, 0x4d, 0x22, 0x40, 0xd3, 0x60, 0x33, 0x22, 0xdf, 0x6b, 0xde, 0x6c, 0xb7, 0x8e, 0xe6, + 0x47, 0x28, 0xfd, 0x84, 0x6e, 0x06, 0x08, 0x38, 0x28, 0x0a, 0xf7, 0x9b, 0x65, 0x32, 0xb1, 0xb4, + 0xbb, 0x1b, 0xb4, 0x83, 0xe4, 0xc8, 0x79, 0x9f, 0x4c, 0xb5, 0xc3, 0xa6, 0x2f, 0x7f, 0xb3, 0x5e, + 0x4c, 0x5e, 0xb9, 0xb0, 0x78, 0xdc, 0xbc, 0x58, 0xbc, 0x61, 0x94, 0x58, 0x9e, 0xa3, 0xd5, 0x4c, + 0x99, 0x10, 0xb0, 0x38, 0x3a, 0xef, 0x91, 0xc9, 0x4e, 0xd8, 0x54, 0x15, 0x94, 0x59, 0x05, 0x2f, + 0x1d, 0x5f, 0x41, 0x4d, 0x17, 0x58, 0x9e, 0xa5, 0xfc, 0x27, 0x0d, 0x00, 0x98, 0xec, 0x9c, 0x16, + 0x99, 0xc5, 0x9f, 0xf4, 0xb3, 0xab, 0x1a, 0x2a, 0xac, 0x86, 0x8b, 0xf9, 0x35, 0x18, 0x85, 0x96, + 0xcf, 0xd2, 0x5a, 0x66, 0x53, 0x40, 0x48, 0xb3, 0x76, 0x3f, 0x24, 0x33, 0x4b, 0x49, 0xe2, 0x35, + 0xf6, 0xfd, 0x26, 0xff, 0xbe, 0xce, 0xeb, 0x64, 0xa4, 0xed, 0x1d, 0xf8, 0xe2, 0xeb, 0x3f, 0x23, + 0x86, 0x7d, 0xe4, 0x06, 0x85, 0x3d, 0xf8, 0xde, 0xd3, 0x73, 0xb7, 0xda, 0xc1, 0x07, 0x5d, 0x31, + 0x67, 0x10, 0x06, 0x8c, 0xda, 0xb9, 0x42, 0x48, 0xd3, 0x3f, 0x0c, 0x1a, 0x7e, 0xcd, 0x4b, 0xf6, + 0xc5, 0x6c, 0x70, 0x44, 0x59, 0xb2, 0xaa, 0x30, 0x60, 0x50, 0xb9, 0x3f, 0x56, 0x22, 0xd5, 0xa5, + 0xc3, 0x30, 0x68, 0xd2, 0x56, 0xc6, 0x4e, 0x97, 0xf6, 0x3b, 0xf2, 0x77, 0xfd, 0x48, 0x81, 0x68, + 0x13, 0x2a, 0xb4, 0xdf, 0x57, 0x72, 0xfa, 0x6d, 0x17, 0x5a, 0x6b, 0x27, 0xd1, 0xd1, 0xf2, 0xe3, + 0xa2, 0xea, 0xd9, 0x14, 0x16, 0xd2, 0x75, 0xb8, 0x3f, 0x53, 0x26, 0x8f, 0x2d, 0x7d, 0xd8, 0x8d, + 0xfc, 0xd5, 0x20, 0xbe, 0x9b, 0x5e, 0x0a, 0x4d, 0x0a, 0xbb, 0xa1, 0x07, 0x43, 0xcd, 0xc1, 0x55, + 0x01, 0x07, 0x45, 0xe1, 0x5c, 0x24, 0xe3, 0xf8, 0xff, 0x2d, 0xd8, 0x10, 0xbd, 0x3f, 0x2b, 0x88, + 0x27, 0x57, 0xbd, 0xc4, 0x5b, 0xe5, 0x28, 0x90, 0x34, 0xce, 0x16, 0x99, 0x6c, 0xd0, 0x51, 0x0f, + 0xda, 0x7b, 0x5b, 0x74, 0x6a, 0xb1, 0x2f, 0x5c, 0x5d, 0x7e, 0x19, 0xc9, 0x57, 0x34, 0x98, 0x8e, + 0xf7, 0x3c, 0x6f, 0x9b, 0x60, 0x61, 0xe0, 0xc0, 0x2c, 0xef, 0xb8, 0x6a, 0x21, 0x8e, 0x30, 0x4e, + 0x24, 0x63, 0x11, 0xbe, 0x68, 0xac, 0xa9, 0x51, 0xb6, 0xa6, 0xa6, 0xfa, 0xac, 0xa7, 0x7f, 0x5c, + 0x12, 0x63, 0xb2, 0x1e, 0xb4, 0x6c, 0xf1, 0x40, 0x3f, 0x73, 0xec, 0x37, 0x22, 0x3f, 0x31, 0x46, + 0x45, 0x7d, 0xe6, 0xba, 0xc2, 0x80, 0x41, 0x85, 0x8b, 0x3f, 0xde, 0xf7, 0x22, 0x36, 0x5b, 0xc4, + 0xd8, 0xa8, 0xc5, 0x5f, 0x97, 0x08, 0xd0, 0x34, 0xd6, 0xe2, 0xaf, 0xe4, 0x2e, 0xfe, 0x7f, 0x51, + 0x22, 0xe3, 0xcb, 0x41, 0xbb, 0x49, 0x87, 0xc2, 0xf9, 0x02, 0x99, 0x38, 0xf0, 0x13, 0xaf, 0x49, + 0x87, 0x4b, 0xac, 0xfb, 0x17, 0x8f, 0x9f, 0x3c, 0x37, 0x77, 0xbe, 0xe2, 0x37, 0x92, 0x2d, 0x5a, + 0x46, 0x77, 0x43, 0xc3, 0x40, 0x71, 0x73, 0x6e, 0x91, 0xb1, 0xc4, 0x8b, 0xf6, 0xfc, 0x44, 0x2c, + 0xf7, 0x8b, 0x45, 0xf8, 0x02, 0x4e, 0x35, 0xbf, 0xdd, 0xf0, 0xb5, 0x60, 0xdc, 0x66, 0x4c, 0x40, + 0x30, 0x73, 0x1b, 0x64, 0x6a, 0xc5, 0xeb, 0x78, 0x3b, 0x41, 0x8b, 0xca, 0x3d, 0x3f, 0x76, 0x3e, + 0x45, 0x2a, 0x5e, 0xb3, 0xc9, 0x26, 0x7e, 0x75, 0xf9, 0x31, 0x5a, 0xa0, 0xb2, 0xd4, 0x6c, 0xd2, + 0x69, 0x40, 0x14, 0xd5, 0x11, 0x20, 0x85, 0x73, 0x81, 0x8c, 0x34, 0xa3, 0xb0, 0x43, 0x5b, 0x83, + 0x94, 0xe7, 0x71, 0x85, 0xae, 0xd2, 0xdf, 0x29, 0x52, 0x46, 0xe3, 0xfe, 0x9b, 0x32, 0x71, 0x56, + 0xfc, 0xce, 0xfe, 0x7a, 0xdd, 0xfa, 0x96, 0x74, 0x3e, 0x1c, 0x84, 0x54, 0x08, 0x84, 0x51, 0x2c, + 0x2a, 0x64, 0xf3, 0x61, 0x4b, 0xc0, 0x40, 0x61, 0x9d, 0x67, 0xc8, 0x48, 0x47, 0x2f, 0xeb, 0x29, + 0x29, 0x12, 0xd8, 0x82, 0x66, 0x18, 0xa4, 0xe8, 0xc6, 0x7e, 0x24, 0xe6, 0xb1, 0xa2, 0xb8, 0x45, + 0x61, 0xc0, 0x30, 0x7a, 0xe6, 0xe0, 0x9c, 0x12, 0xb3, 0x34, 0x35, 0x73, 0x10, 0x03, 0x06, 0x95, + 0xf3, 0xc3, 0x74, 0xe6, 0xb0, 0x5f, 0x74, 0x20, 0xd9, 0x94, 0xcd, 0x15, 0x06, 0x9b, 0x61, 0xc3, + 0x6b, 0xa5, 0x07, 0x7f, 0x9a, 0xcd, 0x34, 0xc9, 0x08, 0x34, 0x4f, 0x6b, 0xa6, 0x8d, 0xe5, 0xce, + 0xb4, 0xbf, 0x51, 0xa2, 0xe3, 0x48, 0x67, 0x9a, 0x1f, 0x9d, 0xc2, 0x96, 0x39, 0xd8, 0x22, 0xf8, + 0x5d, 0x6c, 0x5a, 0x78, 0xd0, 0xa1, 0xaa, 0x45, 0x3b, 0x59, 0x09, 0xe9, 0x6a, 0x60, 0xdb, 0xe8, + 0xa7, 0xc9, 0x48, 0x82, 0x55, 0xf1, 0x66, 0xbd, 0x20, 0x3f, 0x0b, 0x56, 0x40, 0x67, 0xca, 0xf9, + 0xde, 0x12, 0xac, 0x09, 0xac, 0x8c, 0xf3, 0x36, 0x19, 0x8b, 0x13, 0x2f, 0xe9, 0xc6, 0xa2, 0xa1, + 0xcf, 0xca, 0x86, 0xd6, 0x19, 0x94, 0x96, 0x9f, 0x55, 0xc5, 0x38, 0x08, 0x44, 0x01, 0xe7, 0x25, + 0x32, 0x7e, 0xe0, 0xc7, 0xb1, 0xb7, 0x27, 0x05, 0xdb, 0xac, 0x28, 0x3b, 0xbe, 0xc5, 0xc1, 0x20, + 0xf1, 0xce, 0x27, 0xc9, 0xa8, 0x1f, 0x45, 0x61, 0x24, 0x66, 0xc4, 0xb4, 0x20, 0x1c, 0x5d, 0x43, + 0x20, 0x70, 0x9c, 0xfb, 0x9b, 0x25, 0x32, 0xab, 0xda, 0xca, 0xeb, 0x1a, 0xe2, 0x52, 0x6f, 0x12, + 0xd2, 0x90, 0x1d, 0x8b, 0xd9, 0x02, 0x9b, 0xbc, 0xf2, 0xea, 0xf1, 0xbc, 0x7b, 0x07, 0x52, 0xd7, + 0xa1, 0x40, 0x31, 0x18, 0x7c, 0xdd, 0xef, 0x94, 0xc8, 0xd9, 0x54, 0x9f, 0x36, 0x83, 0x38, 0x71, + 0xfe, 0x6c, 0x4f, 0xbf, 0x2e, 0x1d, 0x53, 0xb7, 0xa1, 0x51, 0x2e, 0x62, 0x71, 0xd6, 0x3d, 0x35, + 0x51, 0x24, 0xc4, 0xe8, 0x1c, 0x90, 0xd1, 0x20, 0xf1, 0x0f, 0x64, 0xbf, 0x2e, 0x16, 0xec, 0x17, + 0x6f, 0xa0, 0xfe, 0x3c, 0x1b, 0xc8, 0x03, 0x38, 0x2b, 0xf7, 0x7f, 0xd1, 0x7d, 0x9c, 0xf6, 0x72, + 0x37, 0xd8, 0xdb, 0xf2, 0x3a, 0x43, 0xfc, 0x30, 0x75, 0x2a, 0xf3, 0x90, 0x2b, 0x6f, 0xfa, 0xe5, + 0xbc, 0xa6, 0x8b, 0x06, 0x2d, 0xe2, 0xe6, 0xc9, 0xb5, 0x02, 0x25, 0x97, 0x10, 0x04, 0x8c, 0xd9, + 0xc2, 0x9b, 0xa4, 0xaa, 0x08, 0x9c, 0x39, 0x52, 0xb9, 0xeb, 0x73, 0x95, 0xb1, 0x0a, 0xf8, 0xaf, + 0x73, 0x8e, 0x8c, 0x1e, 0x7a, 0xad, 0xae, 0x58, 0xad, 0xc0, 0x7f, 0x7c, 0xba, 0xfc, 0x56, 0xc9, + 0xfd, 0xd5, 0x12, 0x39, 0xa7, 0x2a, 0xb9, 0xee, 0x1f, 0xd5, 0xfd, 0x16, 0x6d, 0x72, 0x18, 0x39, + 0x3f, 0x4e, 0x11, 0xad, 0x0c, 0x39, 0x24, 0x46, 0xe3, 0x24, 0x12, 0xec, 0x13, 0xa2, 0xe1, 0xe7, + 0xb2, 0xb0, 0x90, 0x59, 0x9b, 0xf3, 0x24, 0xef, 0x0b, 0x5f, 0xbc, 0x93, 0x82, 0x41, 0x85, 0x36, + 0x94, 0x75, 0x0c, 0x9b, 0x3f, 0xad, 0x9a, 0x7f, 0x1a, 0x33, 0x6f, 0xd3, 0x9e, 0x79, 0x9f, 0x2a, + 0xf8, 0xf9, 0xfa, 0xcc, 0xb9, 0xbf, 0x43, 0xd5, 0x36, 0x45, 0x63, 0x89, 0xe3, 0x47, 0x64, 0xf8, + 0x07, 0xeb, 0x2e, 0xfd, 0x2c, 0xdb, 0x21, 0xee, 0xa7, 0xd9, 0xdd, 0x75, 0x2e, 0x93, 0xc9, 0xa6, + 0xbf, 0xeb, 0x75, 0x5b, 0x89, 0x52, 0x17, 0x47, 0xb9, 0x1d, 0xb1, 0xaa, 0xc1, 0x60, 0xd2, 0xb8, + 0xbf, 0x51, 0x65, 0xab, 0x32, 0xf1, 0x02, 0x6a, 0x06, 0xe2, 0x06, 0x6d, 0x68, 0xf5, 0x53, 0xa6, + 0x56, 0x2f, 0x34, 0x78, 0x2a, 0x89, 0x83, 0x03, 0x14, 0xd9, 0x65, 0x5b, 0x12, 0x6f, 0x20, 0x10, + 0x38, 0xce, 0x79, 0x9e, 0x8c, 0x53, 0xd3, 0xf9, 0xc0, 0x6b, 0x37, 0x69, 0x1b, 0x50, 0x65, 0x98, + 0x44, 0xa9, 0xbe, 0xc2, 0x41, 0x20, 0x71, 0xce, 0x27, 0xc8, 0x08, 0xd5, 0x6f, 0x62, 0x2a, 0xd4, + 0x91, 0x66, 0x02, 0x6b, 0x5a, 0xa2, 0xbf, 0x81, 0x41, 0x51, 0x15, 0xb8, 0x17, 0x46, 0x77, 0xa9, + 0xc2, 0xb6, 0x1a, 0x44, 0x6c, 0x5f, 0x37, 0x54, 0x81, 0x3b, 0x0a, 0x03, 0x06, 0x95, 0x53, 0x23, + 0xa3, 0x9d, 0x30, 0x4a, 0x62, 0xba, 0x4d, 0xe3, 0x70, 0xbe, 0x9c, 0x3b, 0x7b, 0x78, 0xbf, 0x6b, + 0xb4, 0x8c, 0xee, 0x0a, 0xfe, 0xa2, 0x43, 0xca, 0x18, 0x39, 0x2b, 0xa4, 0xe2, 0xb7, 0x0f, 0xe7, + 0xc7, 0x19, 0xbf, 0xe7, 0x8e, 0xe7, 0xb7, 0xd6, 0x3e, 0xbc, 0xed, 0x45, 0x7a, 0x15, 0xd1, 0xdf, + 0x80, 0xa5, 0x9d, 0x06, 0xa9, 0x4a, 0x47, 0x40, 0x3c, 0x3f, 0x51, 0x64, 0x82, 0x81, 0x20, 0x07, + 0xff, 0x83, 0x6e, 0x10, 0xf9, 0x07, 0x54, 0xb8, 0xc6, 0x5a, 0x1f, 0x96, 0xd8, 0x18, 0x34, 0x5f, + 0x5a, 0xc9, 0x14, 0x57, 0x1f, 0xb6, 0xc2, 0x2e, 0xa5, 0x9e, 0xaf, 0xb2, 0x26, 0xe7, 0x18, 0x9c, + 0xb7, 0x75, 0x89, 0xe5, 0x73, 0x82, 0xfd, 0x94, 0x01, 0x8c, 0xc1, 0x62, 0x4a, 0x8d, 0xda, 0xe9, + 0x56, 0x70, 0xe8, 0xb7, 0xe9, 0xbe, 0x5c, 0x8b, 0xc2, 0x1d, 0x7f, 0x9e, 0xb0, 0xde, 0x7c, 0x32, + 0xcf, 0xf8, 0xa2, 0xa4, 0xcb, 0x67, 0x28, 0xef, 0xe9, 0x4d, 0xb3, 0x34, 0xd8, 0xcc, 0xa8, 0x26, + 0x37, 0x83, 0xba, 0x4a, 0xa0, 0xd9, 0x4f, 0x16, 0x67, 0xef, 0x50, 0xf6, 0x33, 0x60, 0x15, 0x87, + 0x14, 0x3b, 0x67, 0x9b, 0x54, 0x5b, 0xc1, 0xae, 0xdf, 0x38, 0x6a, 0x50, 0xed, 0x72, 0x8a, 0xf1, + 0xce, 0x59, 0x72, 0x9b, 0x92, 0x9c, 0xeb, 0x87, 0xea, 0x27, 0x68, 0x46, 0xce, 0x6d, 0x72, 0x3e, + 0xf1, 0xa3, 0x83, 0xa0, 0xed, 0xe1, 0xa6, 0x2d, 0x94, 0x17, 0x66, 0xe1, 0x4e, 0xb3, 0x59, 0xfb, + 0x94, 0x18, 0xd8, 0xf3, 0xdb, 0x99, 0x54, 0xd0, 0xa7, 0xb4, 0x73, 0x93, 0xcc, 0xb2, 0xf5, 0x54, + 0xeb, 0xb6, 0x5a, 0xb5, 0xb0, 0x15, 0x34, 0x8e, 0xe6, 0x67, 0x18, 0xc3, 0xe7, 0xa5, 0xdd, 0xba, + 0x61, 0xa3, 0x51, 0xaf, 0xd7, 0xbf, 0x20, 0x5d, 0x1a, 0x9d, 0x06, 0x54, 0xab, 0xed, 0x46, 0x54, + 0xe9, 0xc7, 0xb9, 0xef, 0xdf, 0x4f, 0xe6, 0x67, 0x8b, 0xd8, 0x29, 0x75, 0xbb, 0x10, 0x77, 0x1a, + 0xa4, 0x80, 0x90, 0x66, 0x8d, 0xa2, 0x22, 0x4e, 0xe8, 0xe8, 0xcf, 0xcf, 0x31, 0xc5, 0x54, 0xad, + 0xaf, 0x3a, 0x02, 0x81, 0xe3, 0x98, 0xd9, 0x87, 0xff, 0xdc, 0x44, 0xd9, 0x7b, 0x86, 0x11, 0x6a, + 0xb3, 0x4f, 0x22, 0x40, 0xd3, 0xe0, 0x86, 0x95, 0x24, 0x47, 0xf3, 0x0e, 0x23, 0x55, 0x4b, 0x6d, + 0x7b, 0xfb, 0x8b, 0x80, 0x70, 0x77, 0x87, 0xcc, 0xa8, 0x65, 0xcd, 0x46, 0xc7, 0x79, 0x9a, 0x8c, + 0xa2, 0xe4, 0x92, 0xd6, 0x4b, 0x15, 0x9b, 0x80, 0x02, 0x8d, 0x2e, 0x71, 0x06, 0x67, 0x4d, 0x08, + 0x3e, 0xf4, 0x97, 0x8f, 0x68, 0xaf, 0x99, 0x58, 0xab, 0x18, 0x4d, 0x90, 0x08, 0xd0, 0x34, 0xee, + 0xff, 0xe5, 0x9b, 0xa2, 0x96, 0x1d, 0x05, 0xe4, 0x26, 0x55, 0xd4, 0xf7, 0xc3, 0x38, 0x41, 0x6a, + 0x56, 0xc7, 0xa8, 0xde, 0x05, 0xaf, 0x09, 0x38, 0x28, 0x0a, 0xe7, 0x33, 0x64, 0xba, 0x61, 0x56, + 0x20, 0x44, 0xf9, 0x63, 0xa2, 0x88, 0x5d, 0x3b, 0xd8, 0xb4, 0xce, 0x5b, 0x64, 0x82, 0xb9, 0xf2, + 0x1a, 0x61, 0x4b, 0xe8, 0xcb, 0x72, 0x67, 0x9a, 0xa8, 0x09, 0xf8, 0x03, 0xe3, 0x7f, 0x50, 0xd4, + 0x68, 0x75, 0x60, 0x13, 0x36, 0x6a, 0x42, 0xdc, 0x2a, 0xab, 0xe3, 0x1a, 0x83, 0x82, 0xc0, 0xba, + 0xbf, 0x58, 0x36, 0x46, 0x19, 0x95, 0x3e, 0xdf, 0xf9, 0x21, 0x32, 0x7e, 0xcf, 0xa3, 0x4a, 0x6b, + 0x7b, 0x4f, 0xec, 0xa0, 0xaf, 0x15, 0x94, 0xbd, 0xac, 0xf8, 0x1d, 0x5e, 0x94, 0xef, 0x13, 0xe2, + 0x07, 0x48, 0x86, 0xc8, 0x3b, 0xea, 0xb6, 0xdb, 0xc8, 0xbb, 0x3c, 0x38, 0x6f, 0xe0, 0x45, 0x39, + 0x6f, 0xf1, 0x03, 0x24, 0x43, 0x67, 0x97, 0x10, 0xb9, 0xfa, 0xfc, 0xa6, 0x70, 0xa1, 0xfd, 0xc0, + 0x20, 0xec, 0xb7, 0x55, 0xe9, 0xe5, 0x19, 0xdc, 0x99, 0xf4, 0x6f, 0x30, 0x38, 0xbb, 0x5d, 0xa6, + 0x88, 0xf4, 0x36, 0x8b, 0x4a, 0x54, 0x3a, 0xb9, 0xbd, 0x88, 0xd2, 0x2c, 0x25, 0x62, 0xe8, 0x5e, + 0x2e, 0xa8, 0x50, 0x6d, 0x07, 0x07, 0xbe, 0xb9, 0x5a, 0x04, 0x17, 0xd0, 0x0c, 0xdd, 0x6f, 0x55, + 0xc8, 0x7c, 0xbf, 0xf6, 0xe2, 0x9c, 0xf4, 0xef, 0x07, 0xd4, 0x1a, 0x69, 0xf2, 0x99, 0x6b, 0xcc, + 0xc9, 0x35, 0x01, 0x07, 0x45, 0x81, 0x93, 0x23, 0x0e, 0xf6, 0xda, 0x5e, 0x4b, 0xcc, 0x5f, 0x35, + 0x39, 0xea, 0x0c, 0x0a, 0x02, 0x8b, 0x74, 0x54, 0xea, 0xc6, 0xc2, 0x85, 0x6b, 0x4c, 0x22, 0x60, + 0x50, 0x10, 0x58, 0xd3, 0xfc, 0x1b, 0xc9, 0x31, 0xff, 0xac, 0x31, 0x1a, 0x7d, 0xc8, 0x63, 0x44, + 0x77, 0x1d, 0x82, 0x6e, 0xce, 0x78, 0x9f, 0xb1, 0x1f, 0x1b, 0x9c, 0xbd, 0xd2, 0x4a, 0xd6, 0x15, + 0x1b, 0x30, 0x58, 0x3a, 0x6f, 0x90, 0x49, 0xb5, 0x42, 0xa9, 0xf5, 0x3f, 0x6e, 0x3b, 0xfe, 0xb4, + 0xb8, 0x5a, 0x05, 0x93, 0xce, 0xfd, 0x4a, 0x7a, 0xca, 0x88, 0x85, 0x61, 0x8c, 0x70, 0xa9, 0xe8, + 0x08, 0x97, 0x8f, 0x1f, 0x61, 0xf7, 0x3f, 0x57, 0xd0, 0x76, 0x36, 0x2a, 0xeb, 0xc6, 0x05, 0x84, + 0xda, 0xbb, 0x28, 0xe1, 0x69, 0xc3, 0xc4, 0xb2, 0x7c, 0x65, 0x90, 0x75, 0x63, 0xee, 0x07, 0xb8, + 0x1c, 0x38, 0x27, 0x67, 0x9f, 0xee, 0xd0, 0x5e, 0xcc, 0x2c, 0x49, 0x5f, 0x2c, 0xc7, 0xc1, 0xd8, + 0x6a, 0x2d, 0x9c, 0xb2, 0x31, 0x36, 0x5c, 0x5e, 0x8b, 0x66, 0x8e, 0xdb, 0x13, 0x6a, 0x07, 0xf2, + 0xe4, 0x40, 0x35, 0x07, 0x55, 0x88, 0x23, 0xe0, 0x38, 0x2a, 0x4b, 0xa7, 0xa8, 0x86, 0x85, 0x53, + 0x65, 0x05, 0x15, 0x20, 0x36, 0xf9, 0x46, 0xb5, 0xa6, 0x04, 0x06, 0x0e, 0x2c, 0x4a, 0xad, 0x28, + 0x8f, 0x1d, 0xa3, 0x28, 0xd3, 0x2f, 0xc4, 0xfe, 0x51, 0xb3, 0x42, 0x7d, 0xa1, 0x0d, 0x0e, 0x06, + 0x89, 0x4f, 0x4f, 0xa2, 0x89, 0x82, 0x93, 0xe8, 0x02, 0x99, 0x59, 0xf5, 0xfc, 0x83, 0xb0, 0xbd, + 0xd6, 0x6e, 0x76, 0xc2, 0x80, 0x36, 0x6c, 0x9e, 0x8c, 0xb0, 0x2d, 0x85, 0xaf, 0xf8, 0x11, 0xe4, + 0x00, 0x23, 0xa8, 0xec, 0xba, 0xff, 0x8f, 0xee, 0x6b, 0xab, 0xd4, 0x3e, 0x4d, 0xfc, 0x9b, 0x1d, + 0xe6, 0x7e, 0x70, 0xd6, 0x89, 0xb3, 0x17, 0x79, 0x0d, 0xbf, 0xe6, 0x47, 0x41, 0xd8, 0xa4, 0x3b, + 0x7e, 0xd8, 0x66, 0x0e, 0x77, 0xdc, 0x23, 0xd1, 0x9b, 0xe8, 0x5c, 0xed, 0xc1, 0x42, 0x46, 0x09, + 0xa7, 0x49, 0xa6, 0x3b, 0x91, 0x6f, 0xf9, 0x4b, 0x4a, 0xf9, 0xfa, 0x79, 0xcd, 0x2c, 0xc2, 0xd5, + 0x47, 0x0b, 0x04, 0x36, 0x53, 0xe7, 0x1d, 0x32, 0x17, 0x46, 0x9d, 0x7d, 0xaf, 0xbd, 0xea, 0x77, + 0xfc, 0x76, 0x13, 0x75, 0x66, 0xe1, 0x14, 0x3b, 0x47, 0xcb, 0xce, 0xdd, 0x4c, 0xe1, 0xa0, 0x87, + 0xda, 0xfd, 0x79, 0x6a, 0x2f, 0xae, 0x86, 0xf7, 0xda, 0xf7, 0xbc, 0xa8, 0xb9, 0x54, 0xdb, 0xe0, + 0x8a, 0x30, 0x73, 0x32, 0x4a, 0xe7, 0x66, 0xa9, 0xaf, 0x73, 0xf3, 0x4b, 0x64, 0x62, 0x37, 0xf0, + 0x5b, 0x4d, 0xf4, 0x42, 0xf2, 0xee, 0x5d, 0x2e, 0xe2, 0xd1, 0x58, 0xc7, 0x32, 0xd2, 0x2b, 0xc0, + 0x7d, 0xab, 0xeb, 0x82, 0x0d, 0x28, 0x86, 0x4e, 0x97, 0xcc, 0x49, 0x4d, 0x5f, 0x62, 0xc5, 0xea, + 0x78, 0xad, 0x98, 0x21, 0x61, 0x57, 0xc3, 0xc6, 0x03, 0x52, 0x0c, 0xa1, 0xa7, 0x0a, 0xb4, 0xd0, + 0x0e, 0x70, 0x77, 0x18, 0x61, 0x73, 0x85, 0x59, 0x68, 0xcc, 0x84, 0x64, 0x50, 0xf7, 0x1f, 0x94, + 0xc8, 0xe3, 0x3d, 0xa3, 0x25, 0xec, 0xeb, 0x2f, 0x48, 0xc3, 0x96, 0x9f, 0xce, 0xe4, 0xb4, 0x32, + 0x73, 0xcc, 0x8b, 0x19, 0xb9, 0xe5, 0x02, 0x46, 0xee, 0x4d, 0x72, 0x6e, 0xed, 0xa0, 0x93, 0x1c, + 0x51, 0x13, 0xd1, 0x6a, 0xe4, 0x9b, 0x64, 0xec, 0xc0, 0x6f, 0x06, 0xdd, 0x03, 0xf1, 0x59, 0x9f, + 0x96, 0x82, 0x74, 0x8b, 0x41, 0xa9, 0x96, 0x34, 0x8d, 0x67, 0x9f, 0x74, 0x01, 0x72, 0x00, 0x08, + 0x72, 0xf7, 0xfb, 0x25, 0x32, 0x2b, 0x17, 0xd4, 0x52, 0xb3, 0x49, 0xc7, 0x2d, 0x76, 0x16, 0x48, + 0x39, 0xe8, 0x08, 0x46, 0x44, 0x30, 0x2a, 0x53, 0xa5, 0x89, 0x42, 0xa9, 0x06, 0x53, 0xe5, 0xae, + 0x7c, 0x3d, 0x39, 0x06, 0x3c, 0x1a, 0x60, 0xd6, 0xc7, 0xb6, 0xe4, 0x01, 0x9a, 0x9d, 0xd4, 0x2c, + 0x99, 0xa8, 0xae, 0xd8, 0x8e, 0xe5, 0x6b, 0x02, 0x0e, 0x8a, 0x02, 0xdd, 0xf9, 0x78, 0x4a, 0xc9, + 0x4e, 0x59, 0xf8, 0xb6, 0xcb, 0xa6, 0xdc, 0x0d, 0x01, 0x03, 0x85, 0x75, 0x7f, 0xaa, 0x44, 0xa6, + 0x64, 0x1f, 0x0b, 0x2a, 0xb9, 0xb8, 0x48, 0xb4, 0x82, 0xab, 0x17, 0x09, 0x2a, 0xa9, 0x0c, 0x63, + 0xe9, 0xa6, 0x95, 0x41, 0x74, 0x53, 0xf7, 0x5b, 0x54, 0xe7, 0x94, 0xcd, 0xa9, 0x77, 0x77, 0x62, + 0x3f, 0x71, 0xbe, 0x4c, 0xaa, 0x1e, 0x1f, 0x7c, 0x5f, 0xce, 0xb3, 0x8b, 0x79, 0x16, 0xba, 0xf5, + 0xcd, 0xb4, 0x62, 0xb0, 0x24, 0xf9, 0x80, 0x66, 0xe9, 0x1c, 0x92, 0x33, 0xed, 0x30, 0x61, 0xfb, + 0x81, 0xc2, 0x17, 0xf3, 0x88, 0xa6, 0xeb, 0x79, 0x42, 0xd4, 0x73, 0xe6, 0x46, 0x9a, 0x1f, 0xf4, + 0x56, 0x41, 0xed, 0x3e, 0xe1, 0xc5, 0xa8, 0xb0, 0xba, 0x2e, 0x14, 0xab, 0xab, 0xbf, 0x13, 0xc3, + 0xfd, 0xb5, 0x12, 0xa9, 0x4a, 0xb2, 0x61, 0xfa, 0xc4, 0xef, 0x90, 0xf1, 0x98, 0x7d, 0x1a, 0x39, + 0x4c, 0xaf, 0x14, 0x6b, 0x3a, 0xff, 0x9e, 0x7a, 0xf3, 0xe3, 0xbf, 0x63, 0x90, 0xdc, 0x98, 0x1b, + 0x52, 0x75, 0xe0, 0xd1, 0x73, 0x43, 0xaa, 0xa6, 0xf5, 0x71, 0x43, 0xfe, 0xc3, 0x12, 0x19, 0xe3, + 0xce, 0xa1, 0x62, 0x1e, 0x36, 0xc3, 0x97, 0xac, 0x39, 0xde, 0x46, 0xa0, 0x70, 0x2d, 0xd3, 0x91, + 0xae, 0xb2, 0x7f, 0xd6, 0xa3, 0xf0, 0x40, 0x6c, 0x04, 0x17, 0x8a, 0x38, 0xa7, 0xb8, 0xe0, 0xe3, + 0xd2, 0xe4, 0xb6, 0x64, 0x00, 0x9a, 0x97, 0xfb, 0xab, 0x15, 0x5c, 0xf5, 0x9a, 0xd4, 0xda, 0xd6, + 0x4a, 0xa7, 0xb1, 0xad, 0x95, 0x87, 0xbf, 0xad, 0x7d, 0x40, 0x66, 0x1b, 0x86, 0x4f, 0x5e, 0x6f, + 0xa6, 0x57, 0x0a, 0xba, 0x9b, 0x0d, 0x47, 0x3e, 0x77, 0x86, 0xac, 0xd8, 0xec, 0x20, 0xcd, 0xdf, + 0xf1, 0xc9, 0x14, 0x3f, 0x50, 0x14, 0xf5, 0x8d, 0xe4, 0xce, 0x59, 0xee, 0x77, 0xe1, 0x25, 0x54, + 0x65, 0x2c, 0xe8, 0xa4, 0x6e, 0x30, 0x02, 0x8b, 0xad, 0xfb, 0xd7, 0x46, 0xc9, 0xe8, 0xda, 0x21, + 0xd5, 0x65, 0x86, 0xb8, 0xca, 0x0f, 0xc8, 0x4c, 0xd0, 0x3e, 0x0c, 0x5b, 0x87, 0x7e, 0x93, 0xe3, + 0x4f, 0xb6, 0xa3, 0x9d, 0x17, 0x95, 0xcc, 0x6c, 0x58, 0xcc, 0x20, 0xc5, 0x7c, 0x18, 0xf6, 0xe4, + 0xbb, 0xd4, 0x94, 0x65, 0x33, 0x42, 0x18, 0x93, 0x39, 0x4e, 0x52, 0x36, 0xa0, 0x62, 0xe5, 0x68, + 0xab, 0x97, 0xfb, 0x67, 0x05, 0x23, 0xe7, 0x2e, 0x99, 0xd9, 0x0d, 0x22, 0x6a, 0x71, 0x50, 0x83, + 0x90, 0x5a, 0x01, 0x07, 0x9d, 0x93, 0x18, 0x92, 0x6a, 0x48, 0xd6, 0x2d, 0x56, 0x90, 0x62, 0x4d, + 0x8d, 0xa4, 0x69, 0xb4, 0x63, 0x74, 0x5d, 0xe3, 0x83, 0xd7, 0xa5, 0x7c, 0x49, 0x9b, 0x26, 0x27, + 0xb0, 0x19, 0xa3, 0x30, 0x6a, 0x30, 0xc3, 0x67, 0x82, 0x6d, 0xe9, 0x4a, 0x18, 0x71, 0x8b, 0x87, + 0xe3, 0x50, 0xa6, 0xb1, 0xf3, 0xe3, 0xaa, 0x2d, 0xd3, 0xf4, 0x29, 0xb1, 0xfb, 0x0d, 0xdc, 0x80, + 0x70, 0x14, 0x4f, 0x43, 0x76, 0x5f, 0xb3, 0x65, 0xf7, 0x27, 0x0b, 0x7c, 0xdc, 0x3e, 0x72, 0xfb, + 0x7d, 0x32, 0x69, 0x7c, 0x7b, 0x74, 0x14, 0x36, 0xe4, 0x51, 0xa7, 0x10, 0xe0, 0x4a, 0x81, 0x50, + 0x67, 0xa0, 0xa0, 0x69, 0x70, 0x60, 0x50, 0xf1, 0x4a, 0x47, 0x44, 0xa0, 0x5a, 0x06, 0x0c, 0xe3, + 0xbe, 0x46, 0xc8, 0xda, 0x7d, 0xbf, 0xb1, 0xd4, 0x60, 0x07, 0xf1, 0xc6, 0xb9, 0x49, 0xa9, 0xff, + 0xb9, 0x89, 0xfb, 0x1e, 0xdd, 0x0c, 0xef, 0xe3, 0xce, 0x2e, 0xcd, 0x34, 0xba, 0x44, 0x7c, 0x06, + 0x60, 0xad, 0x9a, 0xd0, 0x93, 0x94, 0x93, 0x81, 0xc0, 0xb2, 0x63, 0xf4, 0xfb, 0x9e, 0x58, 0xb0, + 0x86, 0xc9, 0xbb, 0x86, 0x40, 0xe0, 0x38, 0xf7, 0xeb, 0x25, 0x32, 0xb3, 0xbe, 0x62, 0xe9, 0xc9, + 0x8b, 0x84, 0x70, 0x7d, 0xf3, 0xce, 0x9d, 0x1b, 0xd2, 0x8f, 0xca, 0x9d, 0x5d, 0x0a, 0x0a, 0x06, + 0x85, 0xf3, 0x04, 0xa9, 0xb4, 0xba, 0x6d, 0xa1, 0x06, 0x8e, 0xa3, 0x7f, 0x76, 0xb3, 0xdb, 0x06, + 0x84, 0x19, 0x81, 0x0d, 0x95, 0xc2, 0x81, 0x0d, 0xf9, 0xa1, 0x7d, 0x3f, 0x5b, 0x21, 0x73, 0xeb, + 0x2d, 0xff, 0xbe, 0xd5, 0x6a, 0x5a, 0x55, 0x33, 0x0a, 0xe8, 0xe4, 0x49, 0xbb, 0x49, 0x56, 0x19, + 0x14, 0x04, 0xb6, 0x70, 0xac, 0x85, 0x15, 0x67, 0x52, 0x19, 0x72, 0x9c, 0x49, 0x6e, 0x9f, 0x9d, + 0x5d, 0x32, 0x1e, 0xf2, 0xef, 0x4f, 0xa5, 0x18, 0x4e, 0xf4, 0xcf, 0x1c, 0xdf, 0x98, 0xf4, 0xf8, + 0x2c, 0x8a, 0xd9, 0xc3, 0x0f, 0xbd, 0x95, 0xb0, 0x14, 0x50, 0x90, 0xcc, 0x17, 0x3e, 0x4d, 0xa6, + 0x4c, 0xca, 0x81, 0x4e, 0xbf, 0xff, 0x42, 0x89, 0x9c, 0x5d, 0xc7, 0x10, 0xd2, 0x54, 0x30, 0xcc, + 0x1b, 0xd4, 0x86, 0xa3, 0x4b, 0x35, 0xb6, 0x22, 0xc4, 0xac, 0x50, 0x38, 0x81, 0x02, 0x93, 0xce, + 0x28, 0x76, 0xeb, 0xd6, 0xc6, 0x6a, 0x56, 0x04, 0x9d, 0x40, 0x81, 0x49, 0xe7, 0xfe, 0xc7, 0x12, + 0x79, 0xf2, 0xea, 0xca, 0x5a, 0x0d, 0xc5, 0x48, 0x9c, 0xd0, 0x85, 0xd9, 0x13, 0xc4, 0x47, 0xa7, + 0x40, 0xa7, 0x69, 0x34, 0x45, 0x4d, 0x81, 0xda, 0x2a, 0x6b, 0x85, 0xc0, 0x3e, 0x2a, 0x91, 0xac, + 0x54, 0x9f, 0x3c, 0x7b, 0x35, 0xa0, 0x73, 0xa6, 0x13, 0xa6, 0xe3, 0xee, 0x22, 0x0a, 0x8b, 0x31, + 0x1e, 0xeb, 0x28, 0x1d, 0x77, 0x07, 0x0a, 0x03, 0x06, 0x15, 0xaf, 0xf9, 0x30, 0x40, 0x01, 0x2b, + 0x3a, 0x65, 0xd4, 0xcc, 0xe1, 0xa0, 0x28, 0xb0, 0x63, 0xcd, 0x20, 0x62, 0xba, 0xc8, 0x91, 0x58, + 0xc1, 0xaa, 0x63, 0xab, 0x12, 0x01, 0x9a, 0xc6, 0xfd, 0x5b, 0x25, 0xf2, 0xd8, 0xd5, 0x56, 0x97, + 0x0e, 0x7b, 0xb4, 0x1b, 0x5b, 0x8d, 0x7d, 0x8d, 0x54, 0x7d, 0xa9, 0x37, 0x8b, 0xb6, 0xaa, 0x3d, + 0x49, 0x29, 0xd4, 0x3c, 0xe8, 0x4f, 0xd1, 0x15, 0x88, 0x31, 0x1b, 0x2c, 0x22, 0xea, 0x5f, 0x96, + 0xc9, 0xf4, 0xb5, 0xed, 0xed, 0xda, 0x55, 0x3f, 0x11, 0x32, 0x38, 0xdf, 0xd1, 0x53, 0x33, 0xac, + 0xdc, 0xc9, 0x2b, 0x8b, 0x7d, 0x56, 0x1d, 0xc6, 0x58, 0x2f, 0xf2, 0x18, 0xeb, 0xc5, 0x8d, 0x76, + 0x72, 0x33, 0xaa, 0x27, 0x11, 0x1e, 0x43, 0x64, 0x59, 0xc5, 0x72, 0x9f, 0xa8, 0xf4, 0xdb, 0x27, + 0xe8, 0x60, 0x8d, 0xc5, 0x8d, 0x7d, 0x5f, 0x19, 0xed, 0x1f, 0x57, 0x6a, 0x08, 0x83, 0x52, 0x9b, + 0xb9, 0x7a, 0x0b, 0x36, 0xf8, 0x0f, 0x10, 0xa4, 0x54, 0x60, 0x4d, 0xee, 0x27, 0x49, 0xe7, 0x1a, + 0xed, 0x2c, 0x9d, 0xfa, 0x42, 0x4a, 0xe4, 0x68, 0x81, 0x38, 0x18, 0xbc, 0x80, 0x5e, 0x58, 0x1a, + 0x16, 0x83, 0xc9, 0xd1, 0xad, 0x13, 0xa2, 0x71, 0x0f, 0xc9, 0xb4, 0x71, 0xff, 0x7c, 0x99, 0x8c, + 0x5f, 0xa3, 0xdb, 0x5c, 0x8b, 0xb2, 0x5c, 0x27, 0x23, 0x3e, 0xdd, 0x1e, 0x8b, 0x29, 0xb0, 0x7a, + 0x23, 0xe5, 0x9e, 0x2a, 0xfc, 0x0d, 0xac, 0xbc, 0x03, 0x64, 0x1c, 0xdb, 0x7d, 0x55, 0x05, 0x66, + 0xbe, 0x9c, 0x3f, 0x0a, 0x6a, 0x4a, 0xf0, 0x5d, 0x58, 0x80, 0x40, 0x32, 0x62, 0x3e, 0x9d, 0x46, + 0xa7, 0x8e, 0xc2, 0x2d, 0x29, 0x16, 0x7b, 0xbd, 0xbd, 0x52, 0xe3, 0xe4, 0x82, 0x2f, 0xf7, 0xe9, + 0x48, 0x20, 0x68, 0x76, 0xee, 0x5b, 0xe4, 0x1c, 0x3b, 0x15, 0xa4, 0xd3, 0xcd, 0x5a, 0x33, 0xb9, + 0x93, 0xd3, 0xfd, 0xbb, 0x65, 0x72, 0x66, 0xa3, 0xbe, 0x52, 0xb7, 0xbd, 0x71, 0x6f, 0x91, 0x29, + 0xbe, 0x3d, 0xe3, 0xa4, 0xf3, 0x5a, 0xa2, 0xbc, 0x72, 0x63, 0x6f, 0x1b, 0x38, 0xb0, 0x28, 0xf1, + 0xb8, 0x35, 0xf8, 0xa0, 0x9d, 0x8e, 0x0f, 0xda, 0x78, 0xf7, 0x06, 0x20, 0x1c, 0xd1, 0xb8, 0xd3, + 0x73, 0x11, 0xa7, 0xd0, 0x6a, 0xb7, 0xff, 0x1c, 0x35, 0x15, 0xe2, 0x46, 0x1c, 0xd0, 0x05, 0x40, + 0xd7, 0xbf, 0xd7, 0x90, 0xd3, 0x57, 0xeb, 0xfe, 0xd8, 0x54, 0x85, 0x85, 0x14, 0xb5, 0x21, 0x6f, + 0x47, 0x0b, 0x6b, 0x0b, 0xf9, 0x11, 0x9a, 0x5f, 0x21, 0x55, 0x15, 0x49, 0x23, 0x03, 0xa0, 0x4a, + 0xd9, 0x01, 0x50, 0x05, 0x04, 0x8e, 0xf4, 0x91, 0x56, 0x32, 0x7d, 0xa4, 0xff, 0x84, 0x6a, 0xbe, + 0x2a, 0x68, 0x80, 0xce, 0xc3, 0x2a, 0x15, 0xbc, 0x09, 0x3b, 0x86, 0x12, 0x93, 0xfa, 0xf9, 0x9c, + 0x99, 0xc8, 0x57, 0x02, 0x9f, 0x2b, 0x35, 0x59, 0x16, 0x34, 0x1b, 0x67, 0x93, 0x8c, 0x77, 0x22, + 0xbf, 0x9e, 0xb0, 0x30, 0xdf, 0x01, 0x38, 0xb2, 0x59, 0x5d, 0xe3, 0x25, 0x41, 0xb2, 0x70, 0x7f, + 0xb9, 0x44, 0xc8, 0x66, 0x70, 0x40, 0x37, 0x17, 0xaf, 0xbd, 0xe7, 0x0f, 0xd1, 0x8a, 0xbc, 0x41, + 0x46, 0xe2, 0x0e, 0x5d, 0xda, 0x85, 0x8e, 0x8e, 0x74, 0x8b, 0xea, 0xb4, 0x8c, 0xfe, 0x0c, 0xf8, + 0x0b, 0x18, 0x1f, 0xf7, 0x17, 0x08, 0x99, 0xd1, 0x64, 0xa8, 0xc6, 0x3b, 0x17, 0xad, 0xb8, 0xd6, + 0x27, 0x52, 0x71, 0xad, 0x55, 0x46, 0x6d, 0x84, 0xb2, 0x26, 0xa4, 0x72, 0xe0, 0xdd, 0x17, 0x56, + 0xc3, 0x1b, 0x45, 0x1b, 0x84, 0x35, 0x2d, 0x6e, 0x79, 0xf7, 0xb9, 0x1a, 0xf5, 0xb2, 0x9c, 0x40, + 0x14, 0xf2, 0x80, 0x1f, 0x10, 0xb1, 0x15, 0x88, 0x66, 0xca, 0x8f, 0xfd, 0x57, 0xfd, 0x9b, 0x09, + 0x45, 0xac, 0x8e, 0xd5, 0x1a, 0xb4, 0x85, 0xab, 0x6f, 0xc0, 0x5a, 0x83, 0x76, 0xba, 0xd6, 0xa0, + 0x5d, 0xa0, 0xd6, 0xa0, 0x8d, 0xe1, 0x6f, 0xe3, 0xc2, 0x43, 0xce, 0xc2, 0xaf, 0x26, 0xaf, 0xbc, + 0x3d, 0x50, 0xd5, 0xc2, 0xd5, 0xce, 0xab, 0xbf, 0x24, 0x75, 0x47, 0x01, 0xcd, 0x6d, 0x82, 0xac, + 0xda, 0xf9, 0x39, 0x6a, 0x6b, 0x88, 0xff, 0x31, 0xd2, 0x89, 0x1a, 0x9d, 0x62, 0x97, 0x7a, 0xe7, + 0x24, 0xad, 0x11, 0x2c, 0x78, 0xa3, 0x7e, 0x40, 0x8a, 0x18, 0x1b, 0x99, 0xdb, 0xb6, 0x54, 0x7b, + 0x9c, 0x6f, 0x96, 0xc8, 0x39, 0xfa, 0x9d, 0x78, 0x8d, 0x1c, 0x06, 0x78, 0xa0, 0x28, 0x42, 0xcc, + 0xd6, 0x07, 0x9d, 0x27, 0x3d, 0x8c, 0x78, 0x73, 0x3f, 0x2b, 0x8f, 0x2d, 0xb3, 0x48, 0x72, 0x1b, + 0x9d, 0xd9, 0xc2, 0x85, 0x26, 0x99, 0x90, 0x13, 0x33, 0x43, 0x6b, 0x5f, 0x36, 0x37, 0xe3, 0xe3, + 0x57, 0xa0, 0x74, 0xa0, 0x2d, 0xbe, 0xdb, 0xf5, 0xda, 0x09, 0x5e, 0x19, 0xd0, 0x3a, 0x3e, 0xab, + 0x45, 0x4c, 0xc4, 0x21, 0xd6, 0xb2, 0x4f, 0xa6, 0xcc, 0x39, 0x37, 0xc4, 0x9a, 0x42, 0x72, 0x36, + 0x63, 0x3e, 0x0d, 0xb1, 0xc2, 0x2e, 0x79, 0xa2, 0xef, 0xbc, 0x18, 0x5e, 0xb5, 0x78, 0x28, 0x60, + 0x08, 0xcc, 0xd3, 0x70, 0xcc, 0x6c, 0xd9, 0x8e, 0x99, 0x17, 0x8b, 0x2e, 0x9d, 0x3e, 0xde, 0x99, + 0x5d, 0xb3, 0xfd, 0xb8, 0x13, 0x38, 0xdb, 0x64, 0xac, 0x85, 0x10, 0x79, 0x1a, 0xf4, 0xca, 0x20, + 0x8b, 0x53, 0x2b, 0x17, 0x0c, 0x1e, 0x83, 0xe0, 0xe5, 0xfe, 0x4a, 0x89, 0x8c, 0x9c, 0xc6, 0xf0, + 0xd4, 0xec, 0xe1, 0xe9, 0xa7, 0xa2, 0x8a, 0xbb, 0x9e, 0x8b, 0xe0, 0xdd, 0x5b, 0xbb, 0x4f, 0xad, + 0xd9, 0x98, 0xa9, 0x92, 0x99, 0x23, 0xf4, 0xf3, 0x65, 0x32, 0x89, 0x15, 0x49, 0x3f, 0xd1, 0x67, + 0xd0, 0x6f, 0xb8, 0xe3, 0xb7, 0xa4, 0x3b, 0x39, 0x6d, 0x76, 0x6d, 0x9a, 0x48, 0xb0, 0x69, 0xb1, + 0xf0, 0xae, 0xe9, 0x6d, 0x17, 0x2a, 0x91, 0x2a, 0x6c, 0xb9, 0xe2, 0xc1, 0xa6, 0x45, 0xcd, 0xff, + 0x9e, 0x97, 0x34, 0xf6, 0x85, 0x49, 0xa6, 0x9a, 0x7b, 0x07, 0x81, 0xc0, 0x71, 0xce, 0x12, 0x99, + 0x95, 0x33, 0xf6, 0x36, 0x1f, 0x3a, 0xa1, 0x2e, 0xaa, 0x7b, 0x7a, 0x60, 0xa3, 0x21, 0x4d, 0xef, + 0x7c, 0x9a, 0xcc, 0xe0, 0xe0, 0x84, 0xdd, 0x44, 0x06, 0x2b, 0x8c, 0xb2, 0x60, 0x05, 0x16, 0x1c, + 0xba, 0x6d, 0x61, 0x20, 0x45, 0xe9, 0xfe, 0x30, 0x39, 0xbb, 0x19, 0x7a, 0xcd, 0x65, 0xaf, 0xe5, + 0xb5, 0x1b, 0x7e, 0xb4, 0xd1, 0xde, 0xcb, 0x3d, 0xd7, 0x35, 0xcf, 0x5e, 0xcb, 0x79, 0x67, 0xaf, + 0x6e, 0x44, 0x1c, 0xb3, 0x02, 0x11, 0x66, 0xf3, 0x1e, 0x19, 0x0f, 0x78, 0x55, 0x62, 0xd6, 0x5e, + 0xce, 0x73, 0x2a, 0xf5, 0xb4, 0xd1, 0x08, 0x1b, 0xe1, 0x00, 0x90, 0x2c, 0xd1, 0x92, 0xc8, 0xf2, + 0x42, 0xe5, 0x1b, 0x6b, 0xee, 0x5f, 0x2e, 0x91, 0xd9, 0x1b, 0xa9, 0xcb, 0x60, 0x18, 0x03, 0xe6, + 0x47, 0x19, 0x2e, 0xb5, 0x3a, 0x83, 0x82, 0xc0, 0x3e, 0x74, 0x33, 0xfd, 0x27, 0xcb, 0xa4, 0xca, + 0x62, 0x36, 0x3b, 0x5e, 0x63, 0x98, 0x4a, 0xe9, 0x96, 0xa5, 0x94, 0xe6, 0x18, 0x89, 0xaa, 0x41, + 0xfd, 0x74, 0x52, 0xbc, 0x0e, 0x28, 0x2e, 0x47, 0x15, 0xb2, 0x0f, 0x35, 0x43, 0x7e, 0x8f, 0x66, + 0xc6, 0xbe, 0x4b, 0x25, 0x2f, 0x4e, 0xb1, 0xd3, 0x50, 0x45, 0xfb, 0xe8, 0x9d, 0x86, 0xaa, 0xa6, + 0xf5, 0x91, 0x4a, 0x35, 0xa3, 0xf5, 0x4c, 0x6c, 0x7f, 0x9e, 0x05, 0xe0, 0x79, 0xad, 0xe0, 0x43, + 0x5f, 0x5d, 0x32, 0x7c, 0x5a, 0xc4, 0xd3, 0x09, 0xe8, 0x03, 0x26, 0x60, 0xc4, 0x2f, 0x7e, 0x77, + 0x54, 0x17, 0x71, 0xaf, 0xd1, 0x99, 0x6a, 0x8f, 0x9d, 0xf3, 0x06, 0x19, 0xed, 0xec, 0x7b, 0xb1, + 0x9f, 0x8a, 0xec, 0x18, 0xad, 0x21, 0x90, 0x72, 0x9b, 0x51, 0x05, 0x18, 0x04, 0x38, 0xb5, 0xfb, + 0x87, 0x54, 0xd6, 0x63, 0x2c, 0xc4, 0x10, 0xe7, 0xd8, 0x35, 0x6b, 0x8e, 0xbd, 0x90, 0x7f, 0xe3, + 0xbc, 0xef, 0xf4, 0xaa, 0xa5, 0xa6, 0xd7, 0x8b, 0x05, 0x78, 0x1d, 0x3f, 0xb3, 0x0e, 0xc8, 0x24, + 0xbb, 0xd1, 0x2e, 0x42, 0x5a, 0x5e, 0xb3, 0x0c, 0xa8, 0xa7, 0x53, 0x06, 0xd4, 0xac, 0x41, 0x6a, + 0x98, 0x51, 0x2f, 0x91, 0x71, 0x11, 0x42, 0x91, 0x8e, 0x3a, 0x14, 0xb4, 0x20, 0xf1, 0xee, 0x2f, + 0x55, 0x88, 0x75, 0x83, 0xde, 0xf9, 0x76, 0x89, 0x50, 0xa5, 0x85, 0x5d, 0x79, 0x68, 0xae, 0x76, + 0xd1, 0x5f, 0x86, 0x2e, 0xad, 0x66, 0xb7, 0x45, 0xff, 0xdb, 0xd8, 0x6b, 0x87, 0x0a, 0x8c, 0xbe, + 0x9d, 0x2e, 0xf3, 0xae, 0x16, 0xbe, 0xb8, 0xaf, 0xce, 0x50, 0xaf, 0xd0, 0xb6, 0x2c, 0xc2, 0x40, + 0xb5, 0xc0, 0x80, 0xad, 0x72, 0x7e, 0xbb, 0x44, 0x2e, 0xf1, 0x3b, 0xe4, 0xc5, 0x7b, 0x52, 0xc8, + 0xf0, 0xac, 0x49, 0xa6, 0x9a, 0x1d, 0x06, 0x39, 0x2e, 0xbf, 0x29, 0x06, 0xf9, 0x52, 0x6d, 0xb0, + 0x5a, 0x61, 0xd0, 0x66, 0xba, 0xff, 0xba, 0x42, 0xd7, 0x2f, 0x1d, 0x4f, 0x7d, 0x7f, 0xf4, 0x0d, + 0x6b, 0x9a, 0x3c, 0x9b, 0x9a, 0x26, 0x67, 0x2c, 0xe2, 0x87, 0x73, 0x75, 0x34, 0x21, 0x67, 0xf0, + 0x9c, 0xf2, 0x9a, 0xef, 0x45, 0xc9, 0x8e, 0xef, 0xb1, 0x03, 0x4b, 0xb1, 0x08, 0x06, 0x3a, 0x04, + 0x55, 0x71, 0x39, 0x9b, 0x69, 0x6e, 0xd0, 0x5b, 0x81, 0x73, 0x8f, 0x38, 0xec, 0x74, 0x34, 0xf2, + 0xa8, 0xd2, 0xc5, 0x3a, 0x13, 0x08, 0x87, 0xec, 0x80, 0xd5, 0x2e, 0x88, 0x6a, 0x9d, 0xcd, 0x1e, + 0x76, 0x90, 0x51, 0x85, 0x71, 0x04, 0x3e, 0x5a, 0xf4, 0x08, 0x7c, 0x2c, 0x27, 0xe0, 0xf7, 0x27, + 0x4a, 0xe4, 0x2c, 0x7e, 0x18, 0x3b, 0x38, 0x34, 0x76, 0x42, 0x32, 0x8b, 0x3d, 0x68, 0xf9, 0x89, + 0x84, 0x89, 0x15, 0x96, 0xa3, 0x4b, 0xdb, 0x7c, 0xb4, 0xc6, 0x76, 0xdd, 0x66, 0x06, 0x69, 0xee, + 0xee, 0x2f, 0x95, 0x08, 0x8b, 0x3e, 0x3b, 0x8d, 0x7d, 0xec, 0xaa, 0xbd, 0x8f, 0xb9, 0xf9, 0x42, + 0xa3, 0xcf, 0x16, 0xf6, 0x3a, 0x99, 0x43, 0x6c, 0x2d, 0x0a, 0xef, 0x1f, 0x49, 0xe5, 0x3a, 0xdf, + 0x37, 0xfb, 0x97, 0x4a, 0x5c, 0xdc, 0x29, 0xad, 0xf8, 0x1e, 0x06, 0x98, 0xe9, 0xdf, 0xb8, 0x90, + 0xa5, 0x12, 0xb8, 0x58, 0x5c, 0xa0, 0xb1, 0xf5, 0x6f, 0x44, 0x98, 0xa5, 0x18, 0x42, 0x6f, 0x1d, + 0xee, 0xdf, 0x2b, 0x91, 0xc7, 0x4d, 0x42, 0xe3, 0x9a, 0x59, 0x9e, 0x43, 0x74, 0x95, 0x4c, 0x84, + 0x1d, 0xcc, 0x18, 0xa3, 0x2c, 0x80, 0x17, 0xe5, 0x88, 0xdf, 0x14, 0x70, 0xba, 0x72, 0xcf, 0x99, + 0xdc, 0x25, 0x1c, 0x54, 0x49, 0xcc, 0x44, 0xc1, 0x2c, 0xd1, 0x58, 0x5c, 0x10, 0x64, 0x99, 0x28, + 0xd8, 0x31, 0x00, 0x5d, 0xe4, 0x1c, 0xe3, 0xfe, 0x95, 0x12, 0x1f, 0x65, 0xb3, 0xe9, 0xce, 0x57, + 0xc9, 0xdc, 0x01, 0x1a, 0x0b, 0x6b, 0xf7, 0x3b, 0xb8, 0x85, 0xb0, 0xe3, 0xcf, 0x52, 0x11, 0xc1, + 0xd9, 0xa7, 0xbb, 0xcb, 0xf3, 0xa2, 0xf5, 0x73, 0x5b, 0x29, 0xb6, 0xd0, 0x53, 0x91, 0xfb, 0x3b, + 0x62, 0xae, 0x32, 0xad, 0x85, 0x2e, 0xb6, 0x4e, 0xd8, 0x5c, 0xd9, 0x58, 0x05, 0x31, 0x56, 0x6a, + 0xb1, 0xd5, 0x38, 0x18, 0x24, 0x1e, 0xcf, 0xe5, 0x7c, 0x6a, 0xaa, 0x45, 0x54, 0x61, 0x51, 0xc7, + 0x96, 0x4a, 0x49, 0x58, 0x53, 0x18, 0x30, 0xa8, 0xb0, 0x4c, 0x27, 0x0a, 0x0f, 0x83, 0x26, 0x0b, + 0xf7, 0xae, 0xd8, 0x65, 0x6a, 0x0a, 0x03, 0x06, 0x15, 0x9a, 0x68, 0xdd, 0x76, 0xcc, 0x05, 0xb8, + 0xb7, 0x23, 0x12, 0x28, 0x4c, 0x68, 0x13, 0xed, 0x96, 0x89, 0x04, 0x9b, 0xd6, 0xfd, 0xcd, 0x2a, + 0x21, 0x5a, 0x45, 0x40, 0x0f, 0xe1, 0x44, 0xc3, 0xa3, 0x0a, 0x12, 0xcf, 0x8e, 0x53, 0xc9, 0xbf, + 0x17, 0xa3, 0x0b, 0x2f, 0xae, 0x88, 0x82, 0xdc, 0xb7, 0xf5, 0xaa, 0x9c, 0x20, 0x12, 0x9c, 0xeb, + 0xcf, 0x52, 0x35, 0x3b, 0x5f, 0x2b, 0x91, 0x49, 0xaf, 0x85, 0x77, 0x67, 0x13, 0xd6, 0xa3, 0x72, + 0x11, 0x67, 0xa5, 0xd1, 0x92, 0x25, 0x5d, 0x96, 0x37, 0xe6, 0x35, 0x79, 0xaa, 0x65, 0x60, 0x72, + 0xdb, 0x63, 0x36, 0xc1, 0x79, 0x55, 0xaa, 0x96, 0xfc, 0xa3, 0x2c, 0xa4, 0x55, 0xcb, 0x2a, 0x13, + 0x0d, 0x86, 0x56, 0x89, 0x37, 0x4c, 0x8c, 0xd8, 0xf7, 0x91, 0x22, 0x77, 0x53, 0xad, 0x4d, 0x33, + 0x2f, 0x4d, 0x00, 0x9e, 0x45, 0xe9, 0x48, 0xd8, 0xd1, 0x22, 0x17, 0x3f, 0x0d, 0xdd, 0x2d, 0x27, + 0x0a, 0x36, 0x21, 0xb3, 0x4d, 0x7b, 0x93, 0x10, 0xa1, 0x4d, 0x97, 0xf3, 0x6b, 0x48, 0xed, 0x2e, + 0x7a, 0x5b, 0x48, 0x21, 0x20, 0x5d, 0x05, 0xed, 0x11, 0x8b, 0x44, 0xde, 0x68, 0xef, 0x86, 0x22, + 0xba, 0xe9, 0x95, 0x02, 0xdf, 0xfc, 0x28, 0xa6, 0xe2, 0x19, 0xcb, 0xe8, 0x6d, 0xe0, 0x86, 0xe0, + 0x02, 0x8a, 0x1f, 0xba, 0x89, 0xd8, 0xad, 0x0a, 0xbc, 0x8b, 0x5b, 0x19, 0xe0, 0x82, 0x09, 0xbb, + 0x93, 0xa1, 0x37, 0x5f, 0xf6, 0x93, 0x8a, 0x2b, 0xce, 0x8b, 0xea, 0xf5, 0xe2, 0xaa, 0x6c, 0xbc, + 0xd1, 0xbe, 0x15, 0xfb, 0xec, 0xfe, 0x6d, 0x75, 0xf9, 0x39, 0x7d, 0xa1, 0x96, 0xc3, 0x33, 0xb3, + 0x23, 0x59, 0x25, 0x71, 0x0f, 0x16, 0xbf, 0x65, 0xd2, 0xa5, 0x79, 0x52, 0xa4, 0xa1, 0x76, 0x8a, + 0x26, 0x3d, 0xd8, 0xb7, 0x6d, 0x66, 0x90, 0xe6, 0xbe, 0x10, 0x90, 0x69, 0x6b, 0xc5, 0x0e, 0xd1, + 0xd9, 0xd9, 0x22, 0x73, 0xe9, 0x25, 0x39, 0x44, 0x1f, 0xe7, 0x1f, 0x8c, 0x90, 0x19, 0x7b, 0x62, + 0x60, 0x04, 0xc3, 0x01, 0x4b, 0x89, 0xa4, 0x13, 0xb1, 0xa8, 0xf9, 0xbf, 0x25, 0x11, 0xa0, 0x69, + 0x58, 0x4a, 0x1a, 0x56, 0xdc, 0x88, 0x39, 0xd1, 0x29, 0x69, 0x14, 0x06, 0x0c, 0x2a, 0x54, 0xd8, + 0x76, 0xc2, 0x30, 0x51, 0x82, 0x5b, 0xcd, 0x99, 0x65, 0x06, 0x05, 0x81, 0x45, 0x81, 0x7d, 0x17, + 0x3b, 0xd4, 0xb2, 0xfd, 0x5d, 0x4a, 0x60, 0x5f, 0x37, 0x91, 0x60, 0xd3, 0xe2, 0x06, 0x14, 0xc6, + 0x6c, 0x12, 0x0a, 0xb5, 0x50, 0xc7, 0xf0, 0xd4, 0xf9, 0x2d, 0x23, 0x89, 0x77, 0xbe, 0x48, 0x1e, + 0x57, 0x97, 0x82, 0x80, 0xfb, 0x0f, 0x65, 0x8d, 0x63, 0x96, 0x6d, 0xf7, 0xf8, 0x4a, 0x36, 0x19, + 0xf4, 0x2b, 0x8f, 0x47, 0xbc, 0x42, 0xa5, 0x93, 0x1c, 0xc7, 0xed, 0x23, 0xde, 0xeb, 0x16, 0x16, + 0x52, 0xd4, 0x54, 0x9f, 0x98, 0x43, 0x08, 0x53, 0xa5, 0x24, 0x07, 0x7e, 0xb9, 0x49, 0xed, 0xcc, + 0xd7, 0x53, 0x78, 0xe8, 0x29, 0x81, 0xae, 0x43, 0xae, 0x5b, 0xa0, 0x05, 0xc3, 0xbe, 0x83, 0x88, + 0x46, 0x54, 0x8b, 0xe0, 0xa6, 0x8d, 0x86, 0x34, 0x3d, 0x9e, 0x91, 0x7b, 0x11, 0xfd, 0xe8, 0x09, + 0x55, 0x11, 0xba, 0x11, 0xbf, 0xd9, 0x6e, 0x9c, 0x91, 0x2f, 0x19, 0x38, 0xb0, 0x28, 0xdd, 0x0f, + 0xc9, 0xd9, 0x8c, 0xa0, 0x67, 0x9c, 0x38, 0x74, 0x82, 0xca, 0x3e, 0xa5, 0xa2, 0x71, 0xf0, 0xa6, + 0x8b, 0xe8, 0x8d, 0x41, 0x85, 0xb3, 0x93, 0x39, 0x4e, 0x8d, 0xfc, 0x68, 0x6a, 0x76, 0xae, 0x4b, + 0x04, 0x68, 0x1a, 0xf7, 0x7f, 0xd0, 0x5d, 0x5b, 0xbb, 0x19, 0x0a, 0xc4, 0x60, 0xd0, 0x6e, 0xca, + 0x94, 0x7f, 0x46, 0xaa, 0x2d, 0xd5, 0xcd, 0xab, 0x06, 0x0e, 0x2c, 0x4a, 0x6c, 0x5b, 0x5b, 0x3a, + 0x4d, 0xd2, 0xb1, 0x3f, 0xca, 0x9b, 0x02, 0x9a, 0x06, 0x7d, 0x7c, 0xb1, 0xdf, 0xda, 0xdd, 0x0c, + 0xda, 0x77, 0xc5, 0xc4, 0x56, 0x52, 0xb9, 0x2e, 0xe0, 0xa0, 0x28, 0x9c, 0x77, 0x48, 0xa5, 0x1b, + 0x34, 0xc5, 0x54, 0x5e, 0x94, 0x7a, 0x27, 0x5d, 0x4d, 0x54, 0x62, 0x3e, 0x9d, 0x9d, 0xc7, 0x10, + 0xcd, 0xc8, 0x78, 0x11, 0x17, 0x1f, 0x16, 0xcd, 0xf2, 0x1f, 0x8f, 0x0d, 0xe8, 0x3f, 0xa6, 0xdf, + 0x4c, 0xf4, 0x59, 0xce, 0xe4, 0x8a, 0xfe, 0x66, 0x57, 0x15, 0x06, 0x0c, 0x2a, 0x34, 0x46, 0x1b, + 0xd4, 0x00, 0x93, 0xd6, 0x1a, 0x8f, 0xc8, 0x9d, 0xf8, 0x08, 0xc6, 0xe8, 0x4a, 0x9a, 0x1b, 0xf4, + 0x56, 0xe0, 0x74, 0xc8, 0x99, 0x26, 0xae, 0x23, 0xab, 0xd6, 0xea, 0x09, 0xe2, 0x80, 0xb1, 0xc6, + 0xd5, 0x34, 0x27, 0xe8, 0x65, 0xee, 0x7c, 0x99, 0x2c, 0x48, 0x60, 0xef, 0xb5, 0x3f, 0xb6, 0x5c, + 0x2a, 0xcb, 0x4f, 0x51, 0x6e, 0x0b, 0xab, 0x7d, 0xa9, 0xe0, 0x18, 0x0e, 0xce, 0x7b, 0x64, 0x8c, + 0x9d, 0x38, 0xc4, 0xf3, 0x93, 0x6c, 0xb7, 0x7b, 0xbd, 0xa8, 0xc3, 0x6d, 0x91, 0x9d, 0x5b, 0x88, + 0x40, 0x46, 0x7d, 0x8a, 0xc3, 0x80, 0x20, 0x78, 0xd2, 0xf1, 0x9a, 0xf4, 0xda, 0xed, 0x30, 0xf1, + 0xb8, 0x12, 0x36, 0x55, 0x44, 0x8f, 0x34, 0xaa, 0x58, 0xd2, 0x65, 0x79, 0x3d, 0x2a, 0x3a, 0xca, + 0xc0, 0x80, 0x59, 0x05, 0x6e, 0xe3, 0xe1, 0x3d, 0x14, 0x98, 0xd2, 0xe9, 0x1e, 0xcf, 0x4f, 0x17, + 0xd9, 0xc6, 0x6f, 0x5a, 0x85, 0x0c, 0x09, 0x66, 0x33, 0x83, 0x34, 0x77, 0x0c, 0xd3, 0x35, 0xfc, + 0xa8, 0x33, 0x3a, 0x4c, 0x57, 0xfb, 0x51, 0x4d, 0xb7, 0x29, 0xbb, 0x52, 0xca, 0x43, 0xf3, 0x98, + 0x24, 0x98, 0x4d, 0x5d, 0x29, 0xd5, 0x28, 0x30, 0xe9, 0x16, 0xde, 0x26, 0x93, 0xc6, 0x80, 0x0f, + 0x12, 0x0f, 0xba, 0xf0, 0x39, 0xba, 0xfb, 0xa7, 0x06, 0x72, 0xa0, 0x78, 0xd2, 0xff, 0x59, 0x26, + 0xb3, 0x19, 0x27, 0x19, 0x77, 0x03, 0x16, 0x31, 0x6d, 0x89, 0xbc, 0xeb, 0x14, 0x06, 0x0c, 0x63, + 0x0b, 0xae, 0x72, 0x01, 0xc1, 0x25, 0xa5, 0x68, 0xa5, 0xaf, 0x14, 0x15, 0xc2, 0x6a, 0xe4, 0xe4, + 0xc2, 0xca, 0xde, 0x1d, 0x46, 0x0b, 0xed, 0x0e, 0x0f, 0x41, 0xc0, 0x59, 0x1b, 0xcc, 0x78, 0x81, + 0x0d, 0xe6, 0x41, 0x89, 0xcc, 0xd8, 0x33, 0xaf, 0xc0, 0x88, 0x3f, 0xaa, 0x03, 0xb8, 0xc8, 0x0c, + 0xb1, 0x24, 0x0a, 0x5b, 0x2d, 0x3f, 0x12, 0x91, 0x62, 0x33, 0xc2, 0xae, 0x12, 0x50, 0x30, 0x28, + 0xdc, 0x9f, 0x2b, 0x93, 0x39, 0x1d, 0x36, 0x2c, 0x52, 0x9f, 0x0e, 0xef, 0x68, 0x60, 0xdb, 0x3a, + 0x1a, 0xc8, 0xcb, 0x68, 0x9a, 0x6a, 0x57, 0xdf, 0x63, 0x82, 0xf7, 0x52, 0xc7, 0x04, 0xaf, 0x0f, + 0xc8, 0xf7, 0xf8, 0x23, 0x83, 0x7f, 0x5a, 0x26, 0x8f, 0xa5, 0x8b, 0xac, 0xb4, 0xbc, 0xe0, 0x60, + 0x88, 0xe3, 0xf4, 0x45, 0x6b, 0x9c, 0xde, 0x1c, 0xac, 0x3f, 0xac, 0x71, 0x7d, 0x07, 0xcb, 0x4b, + 0x0d, 0xd6, 0xdb, 0x27, 0x61, 0x7e, 0xfc, 0x88, 0xfd, 0xa7, 0x12, 0x79, 0x22, 0xb3, 0xdc, 0x69, + 0xb8, 0x40, 0xbf, 0x60, 0xbb, 0x40, 0x5f, 0x3b, 0x41, 0xf7, 0xfa, 0xf8, 0x44, 0xff, 0x5b, 0xb9, + 0x4f, 0xb7, 0x98, 0xb7, 0xec, 0x26, 0xdd, 0x7e, 0x1b, 0x74, 0x93, 0x8a, 0x31, 0x36, 0x52, 0x1e, + 0xf2, 0x5d, 0x64, 0xfb, 0xa7, 0x06, 0xd3, 0xb5, 0xbf, 0x90, 0x66, 0xa1, 0xd1, 0x60, 0x72, 0xb0, + 0x73, 0x6a, 0x95, 0x87, 0x94, 0x53, 0x8b, 0xca, 0x98, 0x43, 0x65, 0xa5, 0xa7, 0x9d, 0x70, 0x86, + 0xfd, 0x6e, 0x50, 0x51, 0x35, 0x09, 0x75, 0x5a, 0x1e, 0x22, 0x31, 0x92, 0xbb, 0xe0, 0xac, 0x0f, + 0x68, 0xc6, 0x5b, 0xf0, 0x3b, 0x93, 0xca, 0x63, 0xa9, 0x78, 0xba, 0xdf, 0xa8, 0x90, 0x8f, 0x1f, + 0x33, 0xed, 0xe8, 0x26, 0x61, 0x9d, 0x7c, 0xbe, 0x9c, 0x76, 0x4f, 0x2d, 0x64, 0x16, 0xb6, 0xfc, + 0x55, 0xa9, 0x8f, 0x55, 0xfe, 0xc8, 0x1f, 0xeb, 0x67, 0x4d, 0x67, 0x22, 0x0f, 0x75, 0xbc, 0x7a, + 0xe2, 0x85, 0xf5, 0xf0, 0xbc, 0x8b, 0xa7, 0xe8, 0xf8, 0xc0, 0x34, 0xd6, 0xcf, 0x66, 0x76, 0xca, + 0x0a, 0xb0, 0xc0, 0x2b, 0x66, 0x08, 0x34, 0xee, 0xa2, 0xe8, 0x2b, 0x66, 0x12, 0x01, 0x9a, 0xc6, + 0x8a, 0xa3, 0x28, 0xe7, 0xc6, 0x51, 0xfc, 0xbb, 0x12, 0x39, 0x97, 0x6e, 0xc4, 0x69, 0x48, 0x9d, + 0xba, 0x2d, 0x75, 0x16, 0x07, 0xfb, 0xf6, 0x7d, 0x04, 0xce, 0xcf, 0x4c, 0x91, 0xf3, 0x3d, 0x9b, + 0x15, 0x1f, 0xc6, 0x1f, 0x2d, 0x91, 0x33, 0x7b, 0xcc, 0xbe, 0x30, 0x6e, 0xfc, 0x88, 0x8e, 0xe5, + 0x5c, 0x93, 0x3a, 0xf6, 0xa2, 0x10, 0xb7, 0x96, 0x7a, 0x48, 0xa0, 0xb7, 0x32, 0xe7, 0xa7, 0xe8, + 0x50, 0x7b, 0xf7, 0xe2, 0x9e, 0x3c, 0xfa, 0x62, 0x1e, 0x7d, 0x2e, 0xc7, 0x95, 0x97, 0x93, 0x81, + 0x7f, 0x79, 0x1e, 0x63, 0x45, 0xb3, 0xa8, 0x20, 0xb3, 0x56, 0xaa, 0x04, 0xf0, 0xec, 0x62, 0xa8, + 0xf6, 0x15, 0xba, 0xbb, 0x96, 0x75, 0xff, 0x80, 0xcb, 0x24, 0x89, 0x01, 0xc5, 0xd1, 0x79, 0x9f, + 0x54, 0xf7, 0xe4, 0x25, 0x1f, 0x21, 0xf4, 0x72, 0x76, 0x96, 0xcc, 0x3b, 0x41, 0x3c, 0xca, 0x5d, + 0xa1, 0x40, 0x33, 0x75, 0xae, 0x91, 0x4a, 0x7b, 0x37, 0x16, 0xf7, 0x75, 0xf3, 0xe2, 0x68, 0xec, + 0xa8, 0x25, 0x7e, 0x03, 0x91, 0x02, 0x01, 0x59, 0x20, 0xa7, 0x68, 0xa7, 0x29, 0x7c, 0xd8, 0x39, + 0x9c, 0x60, 0x79, 0xb5, 0x97, 0x13, 0x05, 0x02, 0xb2, 0x60, 0x01, 0x7b, 0x78, 0x5f, 0x41, 0x38, + 0xa8, 0x73, 0x2e, 0x73, 0xf7, 0xdc, 0xca, 0xe0, 0xa9, 0xe8, 0x18, 0x18, 0x38, 0x23, 0xf4, 0x4c, + 0x37, 0x58, 0xea, 0x68, 0xe1, 0x3f, 0xc8, 0x4b, 0x28, 0xdc, 0x93, 0x66, 0x9a, 0x1f, 0xa4, 0x71, + 0x38, 0x08, 0x5e, 0x8c, 0xab, 0xdf, 0xd9, 0xdf, 0x8d, 0x85, 0x7f, 0x20, 0x8f, 0x6b, 0x4f, 0x12, + 0x70, 0xc1, 0x95, 0xc1, 0x41, 0xf0, 0x72, 0x56, 0x49, 0x79, 0xb7, 0x21, 0xf2, 0x3f, 0xe6, 0x58, + 0xb4, 0xf6, 0x75, 0xd2, 0xe5, 0x31, 0x8c, 0xa0, 0x5b, 0x5f, 0x01, 0x5a, 0x9e, 0xea, 0x23, 0xe3, + 0xbb, 0xfc, 0x82, 0xa0, 0xc8, 0xf5, 0x78, 0x39, 0xef, 0x16, 0x63, 0xcf, 0x6d, 0x42, 0x7e, 0x93, + 0x41, 0x20, 0x40, 0xb2, 0xa3, 0xfb, 0x30, 0xd9, 0x55, 0x57, 0x1e, 0x45, 0xb2, 0xc7, 0xc5, 0xc1, + 0xae, 0x48, 0x0a, 0xeb, 0x59, 0x41, 0xc1, 0xe0, 0x88, 0x73, 0xde, 0x93, 0xd9, 0xef, 0x59, 0xa2, + 0xc7, 0xdc, 0x39, 0x9f, 0x99, 0x2c, 0x9f, 0xcf, 0x79, 0x85, 0x02, 0xcd, 0xd4, 0xe9, 0x92, 0xe9, + 0xc3, 0xb8, 0xb3, 0xef, 0xcb, 0xa5, 0xcf, 0xb2, 0x3f, 0x4e, 0x5e, 0xf9, 0x6c, 0x4e, 0x4a, 0x4f, + 0x51, 0x24, 0x88, 0x92, 0xae, 0xd7, 0xea, 0x91, 0x60, 0x2c, 0x8d, 0xd2, 0x6d, 0x93, 0x2d, 0xd8, + 0xb5, 0xe0, 0x27, 0xf9, 0xa0, 0x1b, 0xee, 0x1c, 0x25, 0xbe, 0xc8, 0x0e, 0x99, 0xf3, 0x49, 0xde, + 0xe5, 0xc4, 0xbd, 0x9f, 0x44, 0x20, 0x40, 0xb2, 0x53, 0x43, 0xc6, 0xa4, 0xf1, 0x5c, 0xe1, 0x21, + 0xeb, 0xe9, 0x83, 0x1e, 0x32, 0x26, 0x7d, 0x35, 0x53, 0xf7, 0x77, 0x46, 0x7b, 0x37, 0x38, 0xa6, + 0x7f, 0xfe, 0x74, 0xef, 0x71, 0xe6, 0x3b, 0x83, 0xdb, 0x57, 0x0f, 0xf1, 0x60, 0x93, 0xee, 0x0f, + 0xe7, 0x3b, 0x99, 0xbb, 0x97, 0xd8, 0x21, 0x06, 0x35, 0xd3, 0xf8, 0xd0, 0xa8, 0x5c, 0xa3, 0xd9, + 0x78, 0xe8, 0x53, 0x67, 0x5a, 0xe5, 0xab, 0x7c, 0x64, 0x95, 0xef, 0x0e, 0x1d, 0x6f, 0xd4, 0x52, + 0x74, 0xb2, 0x8b, 0x01, 0xf3, 0x43, 0xb0, 0xbd, 0x66, 0x45, 0xb0, 0x00, 0xc5, 0x0c, 0x07, 0xee, + 0xc9, 0x74, 0x27, 0xc0, 0x67, 0x68, 0x91, 0x24, 0x95, 0xfb, 0x02, 0xd6, 0xc5, 0x48, 0x3c, 0x59, + 0x3b, 0x8e, 0xf8, 0x41, 0x1e, 0x01, 0x1c, 0x5f, 0xd9, 0x69, 0xaa, 0x90, 0xff, 0xa8, 0x94, 0xa1, + 0xf0, 0x70, 0xa5, 0xff, 0xb3, 0xb6, 0xd2, 0xff, 0x42, 0x5a, 0xe9, 0xef, 0x31, 0xd1, 0x2d, 0x7d, + 0xbf, 0x78, 0xa2, 0xc0, 0xa2, 0xd9, 0x38, 0xdc, 0xff, 0x53, 0x22, 0x95, 0x5a, 0xd8, 0x1c, 0xa2, + 0x13, 0xe0, 0xaa, 0xe5, 0x04, 0x78, 0x3e, 0xf7, 0xd9, 0x9b, 0xbe, 0x26, 0xff, 0xcd, 0x94, 0xc9, + 0xff, 0xa9, 0x7c, 0x56, 0xc7, 0x1b, 0xf8, 0xdf, 0xac, 0x10, 0xf3, 0xe1, 0x1e, 0xe7, 0x37, 0x4e, + 0x12, 0xd5, 0x58, 0x29, 0xf6, 0x96, 0x8f, 0xa8, 0x83, 0xc5, 0x00, 0xc9, 0x2b, 0x4f, 0x7f, 0x6c, + 0x83, 0x1b, 0xef, 0xf8, 0xc1, 0xde, 0x7e, 0xe2, 0x37, 0xd3, 0x1d, 0x3b, 0xbd, 0xe0, 0xc6, 0xff, + 0x5e, 0x22, 0xb3, 0xa9, 0xda, 0x9d, 0x83, 0xac, 0x5b, 0x13, 0x27, 0xb5, 0xea, 0xcf, 0xe4, 0xde, + 0xb3, 0x58, 0x24, 0x44, 0x79, 0xa2, 0xa5, 0xed, 0xcd, 0xf4, 0x10, 0xe5, 0xaa, 0x8e, 0xc1, 0xa0, + 0x40, 0x2f, 0x7e, 0x12, 0x76, 0xc2, 0x56, 0xb8, 0x77, 0x74, 0xdd, 0x97, 0x97, 0xf2, 0x95, 0x17, + 0x7f, 0x5b, 0xa3, 0xc0, 0xa4, 0xc3, 0x44, 0x4f, 0xe9, 0x77, 0x9f, 0xfe, 0x74, 0xa2, 0xfe, 0xf1, + 0x99, 0xa8, 0xbf, 0x55, 0x22, 0x73, 0x58, 0x3b, 0x0b, 0xe1, 0x90, 0x21, 0x88, 0x2a, 0xe3, 0x76, + 0xe9, 0x98, 0x8c, 0xdb, 0x78, 0x87, 0x23, 0x69, 0x86, 0x5d, 0x99, 0x05, 0xc6, 0x90, 0x62, 0x08, + 0x05, 0x81, 0x15, 0x74, 0xb4, 0x4d, 0xe2, 0x7e, 0x86, 0x49, 0x47, 0xa1, 0x20, 0xb0, 0x32, 0x21, + 0xf7, 0x48, 0x76, 0x42, 0x6e, 0x9e, 0x34, 0x47, 0x84, 0x0e, 0x88, 0x9d, 0xd9, 0x48, 0x9a, 0x23, + 0x63, 0x0a, 0x34, 0x8d, 0xfb, 0xcf, 0x2b, 0x64, 0x0a, 0x23, 0xe8, 0x54, 0x78, 0xf1, 0xeb, 0x56, + 0x78, 0xf1, 0x33, 0xa9, 0xf0, 0xe2, 0x39, 0x93, 0xf6, 0xe1, 0x44, 0x17, 0x8b, 0xf4, 0x4a, 0x2c, + 0x65, 0xfc, 0x49, 0x23, 0x8b, 0xad, 0xf4, 0x4a, 0x8a, 0x13, 0xd8, 0x8c, 0xff, 0x44, 0x45, 0x14, + 0xff, 0x61, 0x89, 0xcc, 0xd0, 0x6f, 0x81, 0x53, 0xf4, 0x4f, 0xd2, 0x7c, 0x34, 0x93, 0x32, 0x8d, + 0x1d, 0x93, 0x94, 0xe9, 0x17, 0x4b, 0x04, 0x03, 0x3f, 0x4f, 0xc3, 0x9b, 0xb6, 0x6e, 0x7b, 0xd3, + 0x9e, 0xcd, 0x15, 0xbe, 0x7d, 0x1c, 0x68, 0xbf, 0x52, 0x21, 0xd3, 0xd8, 0xe4, 0x70, 0x4f, 0x7e, + 0x30, 0x6b, 0x70, 0x4a, 0x05, 0x06, 0x07, 0x13, 0x34, 0x84, 0xad, 0x56, 0x78, 0x2f, 0xfd, 0xf1, + 0xd6, 0x19, 0x14, 0x04, 0x16, 0xdd, 0x94, 0x1d, 0x4c, 0x22, 0x13, 0x76, 0xe3, 0xf4, 0x75, 0xaf, + 0x9a, 0x80, 0x83, 0xa2, 0xa0, 0x2b, 0x7e, 0x2a, 0x0e, 0xa8, 0x0d, 0x20, 0x63, 0x0b, 0x46, 0x58, + 0x6c, 0x01, 0xcf, 0x7d, 0x67, 0xc0, 0xc1, 0xa2, 0xa2, 0xaa, 0x66, 0x95, 0xfd, 0x66, 0x6b, 0xe8, + 0x04, 0x59, 0xc2, 0x79, 0x62, 0x26, 0xc9, 0x01, 0x34, 0x33, 0x3c, 0x06, 0x48, 0x64, 0x18, 0x44, + 0x2c, 0x8e, 0x0d, 0x95, 0x72, 0xaa, 0x02, 0x24, 0x30, 0x07, 0x96, 0xfa, 0xdf, 0x79, 0x19, 0x53, + 0xbe, 0x06, 0xad, 0x4d, 0x7c, 0x7d, 0x42, 0x04, 0x92, 0x88, 0x1c, 0xae, 0x02, 0x08, 0x1a, 0x8f, + 0x7b, 0x3e, 0xbb, 0x6c, 0xca, 0xdf, 0x20, 0x98, 0x60, 0xd4, 0x6c, 0xcf, 0xdf, 0x54, 0x50, 0x30, + 0x28, 0xdc, 0xd7, 0xd8, 0xde, 0x3d, 0x60, 0xf8, 0xf9, 0x77, 0xcb, 0xc4, 0xa9, 0xb1, 0x70, 0x0b, + 0xeb, 0x99, 0x86, 0x7d, 0x32, 0x13, 0x53, 0x63, 0xb5, 0xdd, 0xbd, 0x2f, 0x58, 0x15, 0x0b, 0xf8, + 0xaf, 0xaf, 0x99, 0x65, 0xf8, 0x05, 0x4b, 0x1b, 0x06, 0x29, 0xbe, 0x38, 0x24, 0x51, 0xb7, 0xbd, + 0x14, 0xe3, 0x7b, 0x6f, 0xe2, 0xa1, 0x05, 0x36, 0x24, 0x20, 0x81, 0xa0, 0xf1, 0x38, 0x07, 0xd8, + 0x8f, 0x1b, 0x54, 0x1a, 0x85, 0x61, 0x22, 0x67, 0x0d, 0xcb, 0xba, 0x6d, 0xc0, 0xc1, 0xa2, 0xc2, + 0x84, 0xd5, 0x71, 0xb7, 0xd3, 0x69, 0xb1, 0xd3, 0x1d, 0xaf, 0x75, 0x35, 0x0a, 0xbb, 0x1d, 0x1e, + 0x71, 0x2b, 0x12, 0x56, 0xd7, 0x7b, 0xb0, 0x90, 0x51, 0x02, 0x17, 0xfd, 0x6e, 0xcc, 0xfe, 0x17, + 0x17, 0x48, 0xb9, 0x8f, 0xa9, 0xce, 0x40, 0x20, 0x71, 0x6e, 0x97, 0x6d, 0x55, 0x2c, 0x01, 0x3e, + 0x46, 0x82, 0x39, 0x3e, 0x99, 0xee, 0xb0, 0xed, 0x48, 0x1e, 0x31, 0x17, 0x1a, 0xca, 0x54, 0xc0, + 0x07, 0x4f, 0x74, 0x6d, 0xb2, 0x01, 0x9b, 0xab, 0xfb, 0x1f, 0x08, 0x93, 0x35, 0xe2, 0x60, 0x6d, + 0x5c, 0x84, 0x73, 0x0a, 0x5d, 0xec, 0xb9, 0x22, 0x2f, 0xbe, 0x68, 0x39, 0x2e, 0x82, 0x43, 0x41, + 0x72, 0x71, 0xbe, 0xc4, 0xcf, 0xc8, 0xd9, 0xfa, 0x2e, 0xfe, 0x0c, 0x13, 0xa7, 0xb7, 0x02, 0x95, + 0x05, 0x0b, 0x30, 0xd8, 0x39, 0x9b, 0x64, 0x5a, 0x64, 0x49, 0x17, 0xb6, 0x7a, 0xc5, 0xb2, 0x57, + 0xa7, 0xc1, 0x44, 0x3e, 0x48, 0x03, 0xc0, 0x2e, 0xec, 0xec, 0x91, 0x27, 0x8d, 0xa7, 0x53, 0x32, + 0x82, 0x92, 0xb8, 0xe0, 0x78, 0x16, 0xbd, 0x00, 0xdb, 0xc7, 0x11, 0xc2, 0xf1, 0x7c, 0xe8, 0x20, + 0x3f, 0xe6, 0x35, 0x92, 0xe0, 0xd0, 0x5f, 0xf5, 0xbd, 0x26, 0xd5, 0xca, 0x7c, 0xfb, 0x76, 0xf1, + 0x13, 0xb4, 0x82, 0xc7, 0x96, 0xb2, 0x08, 0x20, 0xbb, 0x1c, 0xb5, 0xd7, 0xab, 0xcd, 0x76, 0x2c, + 0xc6, 0x60, 0xcc, 0x7a, 0x25, 0xa6, 0xba, 0x7a, 0xa3, 0xae, 0xfa, 0xaf, 0x7f, 0x80, 0x2e, 0xe0, + 0x7c, 0xc0, 0x1f, 0xaf, 0x55, 0x06, 0x09, 0x7f, 0x9d, 0xe8, 0xcd, 0x42, 0x26, 0xb0, 0x75, 0x11, + 0x82, 0xbb, 0xb1, 0x54, 0xf0, 0x9f, 0x75, 0x47, 0xc2, 0xaa, 0xc2, 0xf9, 0x41, 0xba, 0xb0, 0xfc, + 0x08, 0x1f, 0x65, 0x5d, 0x6a, 0xb0, 0xac, 0x8f, 0xec, 0x84, 0x6a, 0xc2, 0x8a, 0x80, 0x77, 0xea, + 0x3d, 0x14, 0x90, 0x51, 0xca, 0xb9, 0x86, 0x12, 0xc7, 0x84, 0x8a, 0x58, 0x4d, 0xa9, 0xda, 0xcd, + 0xaf, 0xfa, 0x98, 0xd8, 0x1d, 0xdf, 0xa8, 0xb0, 0x39, 0x42, 0xaa, 0x1c, 0x6e, 0x2b, 0x2a, 0x9b, + 0x35, 0xb1, 0x23, 0x0c, 0x7b, 0x33, 0x5a, 0xa3, 0xa5, 0x84, 0x27, 0x16, 0x37, 0xfc, 0x04, 0x9f, + 0x8c, 0x62, 0xfe, 0xe6, 0x09, 0x23, 0xcb, 0x95, 0x46, 0x81, 0x49, 0x87, 0x3a, 0x10, 0x3b, 0xe8, + 0xd8, 0x58, 0x65, 0x5e, 0xe4, 0x09, 0xbd, 0x76, 0xae, 0x71, 0x30, 0x48, 0xbc, 0x24, 0xdd, 0xa8, + 0xad, 0x30, 0x8f, 0x70, 0x8a, 0x94, 0x82, 0x41, 0xe2, 0x31, 0x3a, 0x2c, 0xfd, 0x16, 0xcf, 0x4c, + 0x11, 0xef, 0x7c, 0xaf, 0x04, 0x2f, 0xf8, 0x1c, 0xcf, 0x7d, 0x32, 0xa7, 0xde, 0x03, 0xe2, 0xe9, + 0x07, 0xe3, 0xf9, 0xd9, 0x22, 0x4f, 0xe7, 0x66, 0x66, 0x31, 0x54, 0xc1, 0xb9, 0x1b, 0x29, 0x9e, + 0xd0, 0x53, 0x8b, 0x75, 0x4b, 0x7e, 0x2e, 0x37, 0x43, 0x39, 0x3e, 0xc7, 0xd3, 0xdd, 0x69, 0x86, + 0x07, 0x54, 0x64, 0xb0, 0x17, 0x81, 0xcc, 0x87, 0x60, 0x25, 0x02, 0x34, 0xcd, 0xc2, 0xe7, 0xc9, + 0x99, 0x9e, 0x39, 0x3d, 0x50, 0x54, 0xd9, 0x4f, 0x8f, 0x90, 0xaa, 0xf2, 0xea, 0xd0, 0xfa, 0x2d, + 0x57, 0xda, 0x13, 0x69, 0x57, 0xda, 0x04, 0xee, 0xbc, 0xa6, 0xf7, 0xec, 0xcb, 0x19, 0x2f, 0x41, + 0x5e, 0xc8, 0xfd, 0x88, 0xc5, 0x2f, 0x77, 0x0c, 0xf0, 0x4e, 0xa6, 0x56, 0xeb, 0x47, 0x8e, 0x55, + 0xeb, 0x0b, 0x3e, 0xf4, 0x83, 0x0a, 0x3c, 0xdd, 0x79, 0x28, 0x59, 0xea, 0x11, 0x8b, 0x1a, 0x02, + 0x81, 0xe3, 0x98, 0xde, 0x85, 0x42, 0x99, 0xe9, 0x5d, 0xe3, 0x27, 0xd5, 0xbb, 0x24, 0x07, 0xd0, + 0xcc, 0x30, 0x01, 0x7b, 0xc3, 0x7e, 0x94, 0x44, 0xdd, 0xd9, 0xb8, 0x38, 0xc0, 0xa3, 0x20, 0x5d, + 0x23, 0x01, 0xfb, 0x4a, 0x9a, 0x1f, 0xf4, 0x56, 0x81, 0x17, 0xec, 0x67, 0xd5, 0x84, 0xa0, 0x3b, + 0x10, 0xa6, 0x2a, 0x1a, 0x9e, 0x23, 0xf3, 0xa6, 0x65, 0xa9, 0x3e, 0x04, 0xff, 0xe3, 0xaf, 0x97, + 0x98, 0xff, 0x71, 0xdb, 0x3f, 0xe8, 0xb4, 0xf0, 0xa5, 0x93, 0xe1, 0x35, 0xfd, 0x4b, 0x64, 0x22, + 0x11, 0xb5, 0x14, 0x4b, 0x02, 0x6d, 0x34, 0x8b, 0xf9, 0x63, 0x95, 0x20, 0x90, 0x50, 0x50, 0x0c, + 0xdd, 0x7f, 0xc5, 0xbf, 0x82, 0xc4, 0x9c, 0x86, 0x65, 0x75, 0xc3, 0xb6, 0xac, 0x5e, 0x2a, 0xdc, + 0x99, 0x3e, 0x16, 0xd6, 0x37, 0xec, 0x2e, 0x30, 0x85, 0xed, 0xd1, 0xf7, 0x88, 0xbb, 0x5b, 0xc4, + 0x7e, 0x68, 0x85, 0xaa, 0x2b, 0x2c, 0x5a, 0x93, 0x4b, 0xc4, 0x0b, 0x03, 0x46, 0x6a, 0xba, 0xbf, + 0x5c, 0x26, 0xe7, 0xb2, 0xde, 0x5f, 0x77, 0x9a, 0x64, 0xaa, 0x63, 0xa8, 0xcf, 0xc5, 0xee, 0xf2, + 0x9b, 0x0a, 0xb7, 0x56, 0x5d, 0x4c, 0x28, 0x58, 0x5c, 0x31, 0xf5, 0x3a, 0xbe, 0x26, 0xaf, 0xdc, + 0x2b, 0xe5, 0xc1, 0x45, 0x94, 0xaa, 0x66, 0xcd, 0x60, 0x04, 0x16, 0xdb, 0x21, 0xe4, 0x29, 0x77, + 0xff, 0x7e, 0x89, 0x3c, 0xde, 0xe7, 0xc2, 0x3f, 0x56, 0x77, 0x8f, 0x79, 0x21, 0xc5, 0x43, 0x3e, + 0xaa, 0x3a, 0xee, 0x9b, 0x04, 0x81, 0x75, 0x76, 0xf0, 0x1e, 0xa9, 0x7a, 0xdd, 0xb4, 0x5c, 0xe4, + 0x18, 0xbc, 0xe7, 0x72, 0xb1, 0x71, 0xef, 0x54, 0xbd, 0x67, 0x6a, 0x70, 0x75, 0xbf, 0x5e, 0x21, + 0xa3, 0xfc, 0x81, 0xc5, 0x1a, 0x55, 0x80, 0x78, 0x7e, 0xc1, 0xc1, 0xd2, 0x1b, 0x6a, 0x3d, 0x89, + 0x03, 0x40, 0xb2, 0x71, 0xb6, 0xc8, 0x59, 0xf4, 0xaf, 0x06, 0x5e, 0x6b, 0xd5, 0x6f, 0x79, 0x47, + 0x52, 0xf1, 0xe6, 0xb9, 0xa5, 0x65, 0x1a, 0xd4, 0xb3, 0x1b, 0xbd, 0x24, 0x90, 0x55, 0x0e, 0xaf, + 0x2b, 0xa5, 0x12, 0x04, 0xf1, 0xbc, 0x8d, 0xea, 0xba, 0xd2, 0xf1, 0x49, 0x82, 0xf0, 0xc6, 0x56, + 0xa7, 0xc7, 0xc4, 0x30, 0x5e, 0xe6, 0xb3, 0xcd, 0x0a, 0x9b, 0x16, 0xef, 0x3a, 0xc5, 0x5d, 0x76, + 0x46, 0xba, 0xbd, 0x4f, 0x2d, 0x99, 0xfd, 0xb0, 0xd5, 0x14, 0x2f, 0x4a, 0x29, 0x75, 0xaa, 0x9e, + 0xc2, 0x43, 0x4f, 0x09, 0xe4, 0xb2, 0xeb, 0x05, 0x2d, 0x3a, 0xb5, 0x35, 0x97, 0x31, 0x9b, 0xcb, + 0x7a, 0x0a, 0x0f, 0x3d, 0x25, 0xdc, 0xdf, 0x2b, 0x91, 0xb3, 0x19, 0x27, 0xf7, 0x3c, 0xa0, 0x6c, + 0x8f, 0x8a, 0x46, 0x95, 0x41, 0xd8, 0x08, 0x28, 0xe3, 0x70, 0x50, 0x14, 0x38, 0x0b, 0xb9, 0xdd, + 0x98, 0x4e, 0x88, 0x2c, 0x8e, 0x4a, 0x05, 0x76, 0xb0, 0x74, 0x3f, 0xea, 0x9d, 0xf8, 0x91, 0xbe, + 0xef, 0xc4, 0x53, 0xc5, 0x64, 0x4f, 0x59, 0xe7, 0x86, 0x62, 0xc2, 0xed, 0x73, 0x8e, 0xc3, 0xac, + 0xe0, 0xb3, 0xa9, 0x08, 0x1e, 0x6c, 0x48, 0xea, 0x39, 0x7b, 0xe6, 0x52, 0xc0, 0xd8, 0x96, 0x8c, + 0x27, 0xed, 0x5f, 0xb0, 0x5f, 0xbb, 0xd5, 0x6d, 0x5e, 0x5e, 0xb5, 0xde, 0xf1, 0x2a, 0x9a, 0xd5, + 0xfc, 0x93, 0x98, 0x3a, 0x58, 0x3d, 0xcb, 0xa8, 0x26, 0x3d, 0x65, 0x57, 0xa3, 0x60, 0x60, 0x48, + 0xe7, 0x79, 0xd1, 0xfb, 0x94, 0x73, 0x12, 0xbc, 0x66, 0x18, 0x1b, 0x43, 0x40, 0xe5, 0x08, 0x55, + 0x6b, 0xf1, 0x54, 0x20, 0xed, 0x9a, 0xbd, 0xce, 0xc1, 0x20, 0xf1, 0x76, 0xe6, 0xf2, 0xf1, 0x21, + 0x67, 0x2e, 0x9f, 0xc8, 0x8d, 0x42, 0xfc, 0x05, 0xba, 0x2b, 0xb2, 0xb4, 0x6b, 0xe2, 0x26, 0x28, + 0x3a, 0xf9, 0x87, 0xb7, 0x2b, 0xe2, 0x3b, 0x6f, 0x58, 0x59, 0x3a, 0xe9, 0x30, 0x6b, 0x01, 0x70, + 0x1c, 0x26, 0x71, 0x65, 0x55, 0xe3, 0xe7, 0x9b, 0xe2, 0x49, 0x5c, 0xf5, 0xeb, 0xdf, 0x2c, 0xc6, + 0x1d, 0xfc, 0x0e, 0xb5, 0xbd, 0x59, 0x63, 0xb5, 0x27, 0xe6, 0x51, 0x89, 0x71, 0xcf, 0x6c, 0xdc, + 0xc3, 0x8a, 0x71, 0xcf, 0x66, 0x7e, 0xbc, 0x0a, 0xfa, 0x5f, 0x2a, 0xe4, 0xa9, 0xcc, 0x72, 0xfa, + 0x58, 0x67, 0xdd, 0x3a, 0xd6, 0xb9, 0x92, 0x3a, 0xd6, 0x71, 0x8f, 0x2f, 0xfd, 0xa7, 0x07, 0x3d, + 0x7f, 0x74, 0x07, 0x3d, 0x78, 0x7f, 0x21, 0xf3, 0xeb, 0x3c, 0x7a, 0xf7, 0x17, 0x32, 0x9b, 0xd9, + 0x47, 0x57, 0xff, 0xab, 0x95, 0x3e, 0xdd, 0x62, 0x5a, 0xfb, 0x8b, 0x28, 0xe1, 0x18, 0x32, 0x16, + 0x0a, 0xd7, 0x14, 0x97, 0x6e, 0x1c, 0x06, 0x0a, 0xeb, 0xc4, 0x46, 0xfc, 0x3f, 0x6f, 0xe4, 0xda, + 0x09, 0x17, 0xef, 0xa2, 0xed, 0xa6, 0x33, 0x2f, 0xcf, 0xa6, 0x2e, 0x05, 0x60, 0xb4, 0x95, 0x32, + 0xc4, 0x2a, 0x27, 0x31, 0xc4, 0xa6, 0xb2, 0x8d, 0x30, 0xbc, 0x72, 0x76, 0x10, 0xb4, 0xd9, 0x03, + 0x65, 0xb6, 0xc6, 0xa3, 0xae, 0x9c, 0x6d, 0xd9, 0x68, 0x48, 0xd3, 0x2f, 0x50, 0x95, 0xe9, 0xe4, + 0xbe, 0x99, 0xef, 0x57, 0xc8, 0xc7, 0x8f, 0x11, 0x40, 0x7c, 0xe7, 0xb1, 0xbe, 0x8b, 0xb1, 0xf3, + 0xf4, 0x7c, 0x9b, 0x1a, 0x39, 0xb7, 0xdb, 0x6d, 0xb5, 0x8e, 0x58, 0x00, 0x86, 0xdf, 0x94, 0x14, + 0x42, 0x9b, 0x54, 0x4f, 0x87, 0xae, 0x67, 0xd0, 0x40, 0x66, 0x49, 0xf4, 0x8b, 0x86, 0x3b, 0x2c, + 0xeb, 0x61, 0x53, 0x5f, 0x0f, 0x66, 0x9f, 0xa0, 0xa2, 0xd7, 0xea, 0xcd, 0x1e, 0x0a, 0xc8, 0x28, + 0x85, 0xba, 0x25, 0x7b, 0x75, 0x54, 0x35, 0x2b, 0xa5, 0x5b, 0x82, 0x89, 0x04, 0x9b, 0x96, 0x1a, + 0x7f, 0x67, 0xbc, 0x43, 0xaa, 0xe4, 0xb1, 0xd4, 0x2e, 0x92, 0x01, 0x57, 0x2e, 0x95, 0xf3, 0x63, + 0x29, 0x4d, 0x00, 0xbd, 0x65, 0x9c, 0x8e, 0xe5, 0xce, 0xe2, 0x59, 0x8e, 0x3f, 0x7b, 0x82, 0x19, + 0x5c, 0xd8, 0xc1, 0xe5, 0xfe, 0x6e, 0x09, 0xb7, 0xd7, 0x8c, 0x07, 0xbd, 0xac, 0x77, 0xb0, 0x8d, + 0x2b, 0x11, 0xbd, 0xef, 0x60, 0x33, 0x4f, 0xaf, 0x4d, 0xcb, 0xa7, 0x46, 0xac, 0x43, 0x2a, 0x2d, + 0x4d, 0x56, 0x5c, 0x05, 0x52, 0x14, 0xf8, 0x76, 0x5d, 0x33, 0x38, 0x0c, 0xe2, 0x30, 0x2a, 0xf0, + 0xec, 0x6c, 0x4f, 0x98, 0x9e, 0x16, 0x97, 0xab, 0x9c, 0x09, 0x48, 0x6e, 0xee, 0x5f, 0x2f, 0x93, + 0x69, 0x59, 0x1f, 0x55, 0xb8, 0x99, 0x0c, 0x1b, 0x96, 0xd2, 0xf0, 0xae, 0xa5, 0x34, 0x5c, 0x2a, + 0x76, 0x1f, 0x8a, 0x35, 0xaa, 0xaf, 0xb2, 0xf0, 0xc5, 0x94, 0xb2, 0x70, 0x79, 0x10, 0xa6, 0xb9, + 0x7e, 0xaa, 0x33, 0x16, 0xfd, 0x23, 0x94, 0x65, 0x37, 0xab, 0x3b, 0x7d, 0x36, 0x8e, 0xaf, 0x97, + 0x53, 0xdd, 0x60, 0x1b, 0xc6, 0x57, 0xc9, 0xc8, 0xbe, 0x17, 0x35, 0xc5, 0xa1, 0xdc, 0xdb, 0x03, + 0x7e, 0x0a, 0x6a, 0x18, 0x47, 0x4d, 0x2e, 0xf6, 0x5f, 0x51, 0xcf, 0x81, 0x50, 0x50, 0x6e, 0x80, + 0x31, 0xab, 0xd4, 0x79, 0x0b, 0x9f, 0x0b, 0x09, 0x3b, 0x2a, 0x7e, 0xec, 0x19, 0xfe, 0x54, 0x08, + 0x42, 0x28, 0x07, 0xc7, 0xae, 0x0e, 0xc1, 0x20, 0xe8, 0x17, 0x7c, 0x52, 0x55, 0x55, 0x0f, 0x31, + 0x94, 0x95, 0x8a, 0xf5, 0xb3, 0x19, 0x53, 0xc5, 0xf9, 0x11, 0x6b, 0xd4, 0x3e, 0x33, 0xf0, 0x5c, + 0xfb, 0x88, 0xe3, 0xf6, 0x23, 0xcc, 0xf4, 0x6a, 0x8a, 0xb9, 0x71, 0x82, 0xea, 0xa9, 0x7d, 0x96, + 0xae, 0x1e, 0x41, 0xf9, 0xd5, 0x63, 0xb5, 0xa7, 0x34, 0xf8, 0x58, 0x8d, 0x6a, 0xe7, 0x10, 0xbf, + 0xf1, 0x8f, 0x8f, 0x90, 0x73, 0x59, 0x77, 0x2e, 0x9d, 0x9f, 0x28, 0xa5, 0xf2, 0x74, 0x7f, 0x6e, + 0xf0, 0x8b, 0x9b, 0x3c, 0x79, 0xb7, 0xc8, 0xc5, 0xb0, 0x68, 0x67, 0xee, 0xce, 0x1d, 0x6d, 0x51, + 0x3b, 0xbb, 0x14, 0x10, 0xf1, 0x94, 0xeb, 0x52, 0x1e, 0xbc, 0x73, 0x82, 0xa6, 0x88, 0xac, 0xed, + 0x71, 0xea, 0x52, 0x80, 0x04, 0xe7, 0x5f, 0x0a, 0x90, 0x6d, 0x58, 0xd8, 0xc3, 0x7c, 0xdd, 0xaa, + 0x5f, 0x43, 0x9c, 0x02, 0x01, 0xee, 0x49, 0x46, 0xab, 0x87, 0x38, 0x0d, 0xfe, 0x66, 0x89, 0xa4, + 0x02, 0x43, 0x94, 0x7f, 0xa7, 0xd4, 0xd7, 0xbf, 0x43, 0x29, 0xa8, 0x16, 0xe1, 0xa7, 0x13, 0x48, + 0x03, 0x85, 0x01, 0xc3, 0xa8, 0x47, 0x07, 0x2b, 0xfd, 0x1e, 0x1d, 0x44, 0xc3, 0xbf, 0xe5, 0x1f, + 0xfa, 0xd2, 0xdb, 0xa2, 0x84, 0xf7, 0x26, 0x02, 0x81, 0xe3, 0xdc, 0x6f, 0x57, 0xc8, 0x18, 0x77, + 0x69, 0x0c, 0x71, 0x5b, 0xae, 0x09, 0xef, 0x42, 0xa1, 0xdb, 0x8f, 0xbc, 0x35, 0x8b, 0xe8, 0x7e, + 0xe0, 0x13, 0x4a, 0xf5, 0x4d, 0x7b, 0x24, 0x9c, 0x45, 0xab, 0xf7, 0x0b, 0x29, 0xe3, 0x99, 0x70, + 0x1e, 0xc6, 0x58, 0xec, 0x13, 0x12, 0xb3, 0xf7, 0xa7, 0x90, 0x87, 0xc8, 0x40, 0xf7, 0x7a, 0xa1, + 0x76, 0xd4, 0x55, 0x31, 0xde, 0x1a, 0x9d, 0xfa, 0x4a, 0x21, 0xc0, 0xe0, 0xbd, 0xf0, 0x26, 0xa9, + 0x2a, 0xe2, 0x3c, 0x4d, 0x7f, 0xca, 0x9c, 0x92, 0x7f, 0x86, 0xcc, 0xa6, 0xea, 0x1a, 0xc8, 0x50, + 0xf8, 0x16, 0x55, 0x26, 0x7a, 0xde, 0x4b, 0xc5, 0x2c, 0x86, 0xe7, 0x5a, 0x19, 0xbe, 0x2c, 0xf1, + 0x81, 0x4f, 0xe2, 0x05, 0x53, 0x56, 0x42, 0x16, 0x16, 0x32, 0x6b, 0x93, 0x39, 0x35, 0xcb, 0xd9, + 0x39, 0x35, 0xd9, 0xa3, 0x3b, 0xbc, 0xed, 0xa7, 0xa1, 0x01, 0x6d, 0xd8, 0x1a, 0xd0, 0x73, 0x45, + 0xa6, 0x41, 0x1f, 0xd5, 0xe7, 0xdf, 0x96, 0x88, 0xc3, 0x09, 0xd2, 0xef, 0xd0, 0x71, 0xdf, 0xa0, + 0xa1, 0xb3, 0xeb, 0x79, 0xa3, 0x30, 0x60, 0x50, 0x0d, 0x98, 0x63, 0x5c, 0xbd, 0xdf, 0x54, 0xec, + 0x91, 0xf8, 0x4a, 0x81, 0x47, 0xe2, 0x7f, 0xbd, 0x42, 0xd2, 0x41, 0x14, 0xce, 0xfb, 0x64, 0x0a, + 0x2f, 0x6c, 0xed, 0x04, 0x2d, 0x6a, 0xaa, 0xf8, 0x71, 0xb1, 0x03, 0xaa, 0x15, 0xa3, 0x84, 0xf0, + 0x2e, 0x1b, 0x10, 0xb0, 0x38, 0x62, 0xe4, 0x5f, 0x27, 0xa2, 0x96, 0x42, 0xcb, 0xdf, 0x63, 0x7a, + 0x87, 0xca, 0x48, 0x52, 0x53, 0x50, 0x30, 0x28, 0x32, 0xa2, 0xf5, 0x2a, 0xa7, 0x11, 0xad, 0x37, + 0x32, 0x60, 0xb4, 0xde, 0x68, 0xa1, 0x68, 0x3d, 0x20, 0xe7, 0xa5, 0x53, 0x18, 0x7f, 0xe3, 0xa5, + 0x47, 0x9e, 0x44, 0x4f, 0xc4, 0x58, 0x2e, 0xe0, 0x45, 0x36, 0xc8, 0xa4, 0x80, 0x3e, 0x25, 0xdd, + 0x2e, 0x39, 0x5b, 0xf7, 0xa3, 0x80, 0xe5, 0x38, 0x6a, 0xea, 0x15, 0xf8, 0x65, 0x4c, 0x17, 0x61, + 0x2f, 0xfe, 0x01, 0xef, 0xa3, 0x19, 0x99, 0x22, 0xe4, 0x62, 0xd7, 0x2c, 0xdd, 0xbf, 0x58, 0x26, + 0xe3, 0x22, 0x58, 0x69, 0x88, 0x1b, 0xc9, 0x75, 0xcb, 0xbe, 0x7b, 0x29, 0x6f, 0xe5, 0xb2, 0xe6, + 0xf4, 0xb5, 0xec, 0xea, 0x29, 0xcb, 0xee, 0xe5, 0x62, 0xec, 0x8e, 0xb7, 0xe9, 0x7e, 0xad, 0x4c, + 0x77, 0x7b, 0x3b, 0x48, 0x6b, 0x78, 0xc3, 0xf1, 0x05, 0x32, 0x1e, 0x8b, 0x48, 0xa6, 0x42, 0xcf, + 0xf2, 0xa7, 0x3f, 0xa9, 0x7e, 0x70, 0x5e, 0xc4, 0x2e, 0x49, 0x76, 0x99, 0xc1, 0x52, 0x95, 0xd3, + 0x08, 0x96, 0x72, 0xbf, 0xcd, 0x44, 0xaa, 0x39, 0x80, 0xa7, 0xb1, 0x27, 0xbc, 0x6b, 0x4b, 0xdf, + 0x57, 0x0a, 0x4d, 0x05, 0xd1, 0xbe, 0x3e, 0x7b, 0xc3, 0x37, 0x4b, 0x64, 0x52, 0x10, 0x9e, 0x46, + 0x0f, 0x7e, 0xd0, 0xee, 0xc1, 0xf3, 0x85, 0x7a, 0xd0, 0xa7, 0xe9, 0x7f, 0xbb, 0xac, 0x9a, 0x5e, + 0x13, 0xef, 0x73, 0xe6, 0x66, 0x55, 0x9c, 0xe8, 0x44, 0x61, 0x12, 0x36, 0xc2, 0x96, 0xd8, 0xe5, + 0x3f, 0xa1, 0xe3, 0xdb, 0x39, 0xfc, 0x81, 0xf1, 0x3f, 0x28, 0x6a, 0x16, 0xb7, 0x8d, 0xaf, 0x89, + 0xf2, 0x2d, 0x2a, 0xeb, 0x75, 0xd0, 0x1d, 0xf9, 0xfa, 0x32, 0xc2, 0xc4, 0x99, 0xc1, 0xa0, 0xaf, + 0x8e, 0xea, 0x68, 0x75, 0xc5, 0x09, 0x0c, 0xae, 0x32, 0x90, 0x92, 0xd5, 0x30, 0x6a, 0xbb, 0x51, + 0x6f, 0x08, 0x38, 0x28, 0x0a, 0xf7, 0x4d, 0x26, 0x63, 0xd9, 0xf0, 0x0c, 0x16, 0x82, 0xfe, 0x93, + 0x63, 0x6a, 0x60, 0x99, 0x93, 0xe4, 0x06, 0xc6, 0x97, 0x45, 0xca, 0x0e, 0x2c, 0x26, 0xd0, 0xb0, + 0x09, 0x66, 0x28, 0x1a, 0x2d, 0x0f, 0x9c, 0x8d, 0xe3, 0xf7, 0xf8, 0xde, 0xdf, 0x2c, 0x2c, 0x23, + 0x07, 0xf0, 0xb6, 0xb3, 0x2c, 0x2d, 0x2c, 0x33, 0xc5, 0x46, 0x2d, 0x9d, 0x09, 0x73, 0x45, 0x22, + 0x40, 0xd3, 0xd0, 0x02, 0x5c, 0x5d, 0xb7, 0x1f, 0x6f, 0x95, 0xea, 0xba, 0x1c, 0x12, 0x43, 0x5f, + 0xa7, 0xfa, 0x8b, 0xca, 0x05, 0x5e, 0xe3, 0x29, 0x9d, 0xab, 0x5c, 0x7f, 0x59, 0xd3, 0x60, 0x30, + 0x69, 0xa8, 0x5a, 0x77, 0xb6, 0xa9, 0xe2, 0x66, 0x6b, 0xdd, 0x9d, 0x56, 0xd0, 0xc0, 0xa2, 0xfc, + 0xce, 0xca, 0xe3, 0x18, 0x24, 0xb1, 0xda, 0x8b, 0x86, 0xac, 0x32, 0xce, 0x36, 0xc6, 0xa6, 0xb2, + 0x9c, 0xe7, 0xf2, 0x76, 0x9b, 0x48, 0x15, 0x77, 0x41, 0x3a, 0xfd, 0xeb, 0x36, 0xfa, 0x01, 0x03, + 0x71, 0xa1, 0x20, 0x40, 0x90, 0x66, 0x81, 0xa1, 0x17, 0x2d, 0xf3, 0xed, 0xa2, 0x9a, 0x08, 0x1f, + 0x56, 0xa1, 0x17, 0xd6, 0xcb, 0x46, 0x35, 0x48, 0x51, 0x53, 0x69, 0x3f, 0x6f, 0x42, 0xc4, 0x85, + 0x76, 0x3c, 0xbe, 0x8d, 0x45, 0xb2, 0xe5, 0x4f, 0x60, 0xf0, 0xf0, 0x66, 0x1f, 0x1a, 0xe8, 0x5b, + 0x1a, 0x73, 0xa2, 0xca, 0x91, 0x34, 0x42, 0x89, 0x75, 0xd0, 0x8f, 0x81, 0x03, 0x8b, 0xf2, 0xa3, + 0x9d, 0x6d, 0x7c, 0x15, 0x0b, 0x1b, 0x9b, 0xaa, 0xf3, 0x15, 0x32, 0x65, 0xb6, 0x51, 0x88, 0xc9, + 0x57, 0x8b, 0xbf, 0x07, 0x25, 0x36, 0x67, 0xd5, 0x72, 0x13, 0x07, 0x16, 0x6f, 0xb7, 0x41, 0x66, + 0x53, 0xef, 0xd1, 0xaa, 0x87, 0x8d, 0x4b, 0x0f, 0xeb, 0x61, 0x63, 0x4c, 0x7a, 0x34, 0xba, 0xed, + 0x05, 0xf9, 0xaf, 0x0a, 0x14, 0x79, 0x19, 0xd8, 0x79, 0x83, 0x8c, 0xf9, 0xbb, 0xbb, 0x74, 0xb0, + 0xc5, 0x9a, 0x7b, 0x52, 0x3d, 0x73, 0xcf, 0xa0, 0xb8, 0x92, 0x58, 0x65, 0xfc, 0x27, 0x08, 0x62, + 0xf7, 0xdf, 0x53, 0xeb, 0x6a, 0x3b, 0x6c, 0xc9, 0x53, 0x96, 0x9c, 0x96, 0x2c, 0xf7, 0xbc, 0x6f, + 0xf0, 0x42, 0xc6, 0xfb, 0x06, 0x8e, 0x66, 0x98, 0xf1, 0xba, 0x81, 0xea, 0x4d, 0xa5, 0x50, 0x6f, + 0x46, 0x06, 0xe9, 0xcd, 0xd7, 0x4a, 0x44, 0x04, 0xd7, 0x14, 0xd8, 0x96, 0x9a, 0x32, 0x27, 0xb9, + 0x95, 0x59, 0xe2, 0x42, 0x91, 0x1b, 0x22, 0x22, 0x9f, 0x84, 0x9a, 0x4a, 0x56, 0x16, 0x09, 0x8b, + 0x2b, 0x9a, 0xde, 0x93, 0x1c, 0xbd, 0xc5, 0x14, 0xbe, 0xfc, 0x76, 0x0d, 0x94, 0xb5, 0x8a, 0xa5, + 0xec, 0x46, 0xc6, 0x2a, 0x79, 0x91, 0x99, 0xb2, 0x5b, 0x22, 0x40, 0xd3, 0xe0, 0x61, 0x76, 0xdc, + 0xdd, 0x61, 0xe4, 0xa9, 0x48, 0x9b, 0x3a, 0x07, 0x83, 0xc4, 0xbb, 0xff, 0x7b, 0x8e, 0x58, 0x5d, + 0xb3, 0x12, 0x25, 0x95, 0x1e, 0x7a, 0xa2, 0x24, 0xca, 0xdd, 0x3f, 0xe8, 0x24, 0x47, 0xab, 0x41, + 0x54, 0x2c, 0x69, 0xdd, 0x9a, 0xa0, 0xee, 0xe5, 0x2e, 0x31, 0xa0, 0x38, 0xf6, 0x49, 0x7b, 0x55, + 0x79, 0x24, 0xd2, 0x5e, 0x8d, 0xfc, 0x91, 0xa4, 0xbd, 0xa2, 0x16, 0xc2, 0x1e, 0x7f, 0x28, 0x5f, + 0xdc, 0x08, 0xcc, 0x39, 0xbe, 0xca, 0x78, 0x55, 0x9f, 0x5f, 0xfd, 0x12, 0x08, 0x90, 0xec, 0x30, + 0xa9, 0x12, 0x37, 0x16, 0x44, 0x26, 0xa9, 0x57, 0x8b, 0xb8, 0x51, 0x7a, 0x93, 0x2a, 0x89, 0x70, + 0x2a, 0xc1, 0x4b, 0xa6, 0xb9, 0x1a, 0xff, 0xe8, 0x69, 0xae, 0x54, 0x72, 0xaa, 0x89, 0x87, 0x95, + 0x9c, 0xca, 0x4a, 0xf2, 0x55, 0x1d, 0x46, 0x92, 0x2f, 0x2a, 0xdb, 0x1e, 0xeb, 0x64, 0xe5, 0xc8, + 0x13, 0x69, 0xa6, 0x3e, 0x7f, 0x82, 0x9c, 0x81, 0x56, 0xd5, 0xec, 0xa2, 0x56, 0x26, 0x19, 0x64, + 0x57, 0x2c, 0xb3, 0x85, 0x4d, 0x7e, 0xf4, 0x6c, 0x61, 0xc3, 0xce, 0x47, 0xa5, 0x73, 0x87, 0x4d, + 0x0f, 0x25, 0x77, 0xd8, 0xcc, 0x43, 0xcc, 0x1d, 0x66, 0x64, 0xfd, 0x9a, 0x7d, 0xb8, 0x59, 0xbf, + 0xf6, 0xc9, 0x64, 0x33, 0xbc, 0xd7, 0xbe, 0xe7, 0x45, 0xcd, 0xa5, 0xda, 0x86, 0x48, 0x32, 0x95, + 0x93, 0xcd, 0x61, 0x55, 0x17, 0xb0, 0x6a, 0xe0, 0xfe, 0x42, 0x8d, 0x04, 0x93, 0xb5, 0xc8, 0x7f, + 0x76, 0xe6, 0x23, 0xe6, 0x3f, 0xb3, 0xb2, 0x88, 0x39, 0xc3, 0xc8, 0x22, 0xf6, 0x3e, 0xbb, 0xd3, + 0xbd, 0x1b, 0xec, 0x6d, 0x79, 0x9d, 0xf9, 0xb3, 0x45, 0x6a, 0x58, 0x91, 0xe4, 0xbd, 0x35, 0x28, + 0x14, 0x68, 0xa6, 0xbd, 0x79, 0xca, 0xce, 0x9d, 0x76, 0x9e, 0xb2, 0xc7, 0x86, 0x98, 0xa7, 0xec, + 0xfc, 0x30, 0xf2, 0x94, 0xfd, 0x39, 0xf2, 0xd4, 0xf1, 0xfd, 0xd7, 0xa9, 0x67, 0x6b, 0xda, 0xa4, + 0x4e, 0xa5, 0x9e, 0x65, 0xba, 0x85, 0x41, 0x65, 0x84, 0x21, 0x97, 0x8f, 0x0b, 0x43, 0x76, 0xff, + 0x59, 0x89, 0x3c, 0xde, 0x27, 0x85, 0x49, 0xe1, 0x7b, 0x05, 0x1d, 0x32, 0xdb, 0xb1, 0x8b, 0x16, + 0xbe, 0x01, 0x64, 0xa5, 0x4c, 0x51, 0x71, 0x64, 0x29, 0x04, 0xa4, 0xd9, 0x2f, 0x3f, 0xf7, 0x9d, + 0xef, 0x3f, 0xf5, 0xb1, 0xef, 0xd2, 0xbf, 0xdf, 0xa6, 0x7f, 0x3f, 0xfa, 0xfb, 0x4f, 0x95, 0xbe, + 0x43, 0xff, 0xbe, 0x4b, 0xff, 0x7e, 0x8f, 0xfe, 0x7d, 0xed, 0x0f, 0x9e, 0xfa, 0xd8, 0x0f, 0x95, + 0x0f, 0x2f, 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc5, 0x01, 0x0d, 0x02, 0x08, 0xb4, 0x00, + 0x00, } diff --git a/pkg/api/v1/generated.proto b/pkg/api/v1/generated.proto index c39e809c85a6..b9578c41fdb8 100644 --- a/pkg/api/v1/generated.proto +++ b/pkg/api/v1/generated.proto @@ -2460,6 +2460,27 @@ message ReplicationController { optional ReplicationControllerStatus status = 3; } +// ReplicationControllerCondition describes the state of a replication controller at a certain point. +message ReplicationControllerCondition { + // Type of replication controller condition. + optional string type = 1; + + // Status of the condition, one of True, False, Unknown. + optional string status = 2; + + // Last time we probed the condition. + optional k8s.io.kubernetes.pkg.api.unversioned.Time lastProbeTime = 3; + + // The last time the condition transitioned from one status to another. + optional k8s.io.kubernetes.pkg.api.unversioned.Time lastTransitionTime = 4; + + // The reason for the condition's last transition. + optional string reason = 5; + + // A human readable message indicating details about the transition. + optional string message = 6; +} + // ReplicationControllerList is a collection of replication controllers. message ReplicationControllerList { // Standard list metadata. @@ -2515,6 +2536,9 @@ message ReplicationControllerStatus { // ObservedGeneration reflects the generation of the most recently observed replication controller. optional int64 observedGeneration = 3; + + // Represents the latest available observations of a replication controller's current state. + repeated ReplicationControllerCondition conditions = 6; } // ResourceFieldSelector represents container resources (cpu, memory) and their output format diff --git a/pkg/api/v1/types.generated.go b/pkg/api/v1/types.generated.go index dcb19f31d776..56fc8e719109 100644 --- a/pkg/api/v1/types.generated.go +++ b/pkg/api/v1/types.generated.go @@ -31373,16 +31373,17 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep2382 := !z.EncBinary() yy2arr2382 := z.EncBasicHandle().StructToArray - var yyq2382 [5]bool + var yyq2382 [6]bool _, _, _ = yysep2382, yyq2382, yy2arr2382 const yyr2382 bool = false yyq2382[1] = x.FullyLabeledReplicas != 0 yyq2382[2] = x.ReadyReplicas != 0 yyq2382[3] = x.AvailableReplicas != 0 yyq2382[4] = x.ObservedGeneration != 0 + yyq2382[5] = len(x.Conditions) != 0 var yynn2382 int if yyr2382 || yy2arr2382 { - r.EncodeArrayStart(5) + r.EncodeArrayStart(6) } else { yynn2382 = 1 for _, b := range yyq2382 { @@ -31512,6 +31513,39 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } + if yyr2382 || yy2arr2382 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2382[5] { + if x.Conditions == nil { + r.EncodeNil() + } else { + yym2399 := z.EncBinary() + _ = yym2399 + if false { + } else { + h.encSliceReplicationControllerCondition(([]ReplicationControllerCondition)(x.Conditions), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2382[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("conditions")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Conditions == nil { + r.EncodeNil() + } else { + yym2400 := z.EncBinary() + _ = yym2400 + if false { + } else { + h.encSliceReplicationControllerCondition(([]ReplicationControllerCondition)(x.Conditions), e) + } + } + } + } if yyr2382 || yy2arr2382 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { @@ -31525,25 +31559,25 @@ func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2398 := z.DecBinary() - _ = yym2398 + yym2401 := z.DecBinary() + _ = yym2401 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2399 := r.ContainerType() - if yyct2399 == codecSelferValueTypeMap1234 { - yyl2399 := r.ReadMapStart() - if yyl2399 == 0 { + yyct2402 := r.ContainerType() + if yyct2402 == codecSelferValueTypeMap1234 { + yyl2402 := r.ReadMapStart() + if yyl2402 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2399, d) + x.codecDecodeSelfFromMap(yyl2402, d) } - } else if yyct2399 == codecSelferValueTypeArray1234 { - yyl2399 := r.ReadArrayStart() - if yyl2399 == 0 { + } else if yyct2402 == codecSelferValueTypeArray1234 { + yyl2402 := r.ReadArrayStart() + if yyl2402 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2399, d) + x.codecDecodeSelfFromArray(yyl2402, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31555,12 +31589,12 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2400Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2400Slc - var yyhl2400 bool = l >= 0 - for yyj2400 := 0; ; yyj2400++ { - if yyhl2400 { - if yyj2400 >= l { + var yys2403Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2403Slc + var yyhl2403 bool = l >= 0 + for yyj2403 := 0; ; yyj2403++ { + if yyhl2403 { + if yyj2403 >= l { break } } else { @@ -31569,10 +31603,10 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2400Slc = r.DecodeBytes(yys2400Slc, true, true) - yys2400 := string(yys2400Slc) + yys2403Slc = r.DecodeBytes(yys2403Slc, true, true) + yys2403 := string(yys2403Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2400 { + switch yys2403 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -31603,10 +31637,22 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 } else { x.ObservedGeneration = int64(r.DecodeInt(64)) } + case "conditions": + if r.TryDecodeAsNil() { + x.Conditions = nil + } else { + yyv2409 := &x.Conditions + yym2410 := z.DecBinary() + _ = yym2410 + if false { + } else { + h.decSliceReplicationControllerCondition((*[]ReplicationControllerCondition)(yyv2409), d) + } + } default: - z.DecStructFieldNotFound(-1, yys2400) - } // end switch yys2400 - } // end for yyj2400 + z.DecStructFieldNotFound(-1, yys2403) + } // end switch yys2403 + } // end for yyj2403 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31614,16 +31660,16 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2406 int - var yyb2406 bool - var yyhl2406 bool = l >= 0 - yyj2406++ - if yyhl2406 { - yyb2406 = yyj2406 > l + var yyj2411 int + var yyb2411 bool + var yyhl2411 bool = l >= 0 + yyj2411++ + if yyhl2411 { + yyb2411 = yyj2411 > l } else { - yyb2406 = r.CheckBreak() + yyb2411 = r.CheckBreak() } - if yyb2406 { + if yyb2411 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31633,13 +31679,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Replicas = int32(r.DecodeInt(32)) } - yyj2406++ - if yyhl2406 { - yyb2406 = yyj2406 > l + yyj2411++ + if yyhl2411 { + yyb2411 = yyj2411 > l } else { - yyb2406 = r.CheckBreak() + yyb2411 = r.CheckBreak() } - if yyb2406 { + if yyb2411 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31649,13 +31695,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.FullyLabeledReplicas = int32(r.DecodeInt(32)) } - yyj2406++ - if yyhl2406 { - yyb2406 = yyj2406 > l + yyj2411++ + if yyhl2411 { + yyb2411 = yyj2411 > l } else { - yyb2406 = r.CheckBreak() + yyb2411 = r.CheckBreak() } - if yyb2406 { + if yyb2411 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31665,13 +31711,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.ReadyReplicas = int32(r.DecodeInt(32)) } - yyj2406++ - if yyhl2406 { - yyb2406 = yyj2406 > l + yyj2411++ + if yyhl2411 { + yyb2411 = yyj2411 > l } else { - yyb2406 = r.CheckBreak() + yyb2411 = r.CheckBreak() } - if yyb2406 { + if yyb2411 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31681,13 +31727,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.AvailableReplicas = int32(r.DecodeInt(32)) } - yyj2406++ - if yyhl2406 { - yyb2406 = yyj2406 > l + yyj2411++ + if yyhl2411 { + yyb2411 = yyj2411 > l } else { - yyb2406 = r.CheckBreak() + yyb2411 = r.CheckBreak() } - if yyb2406 { + if yyb2411 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31697,159 +31743,247 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.ObservedGeneration = int64(r.DecodeInt(64)) } + yyj2411++ + if yyhl2411 { + yyb2411 = yyj2411 > l + } else { + yyb2411 = r.CheckBreak() + } + if yyb2411 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Conditions = nil + } else { + yyv2417 := &x.Conditions + yym2418 := z.DecBinary() + _ = yym2418 + if false { + } else { + h.decSliceReplicationControllerCondition((*[]ReplicationControllerCondition)(yyv2417), d) + } + } for { - yyj2406++ - if yyhl2406 { - yyb2406 = yyj2406 > l + yyj2411++ + if yyhl2411 { + yyb2411 = yyj2411 > l } else { - yyb2406 = r.CheckBreak() + yyb2411 = r.CheckBreak() } - if yyb2406 { + if yyb2411 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2406-1, "") + z.DecStructFieldNotFound(yyj2411-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { +func (x ReplicationControllerConditionType) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym2419 := z.EncBinary() + _ = yym2419 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *ReplicationControllerConditionType) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2420 := z.DecBinary() + _ = yym2420 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *ReplicationControllerCondition) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r if x == nil { r.EncodeNil() } else { - yym2412 := z.EncBinary() - _ = yym2412 + yym2421 := z.EncBinary() + _ = yym2421 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2413 := !z.EncBinary() - yy2arr2413 := z.EncBasicHandle().StructToArray - var yyq2413 [5]bool - _, _, _ = yysep2413, yyq2413, yy2arr2413 - const yyr2413 bool = false - yyq2413[0] = x.Kind != "" - yyq2413[1] = x.APIVersion != "" - yyq2413[2] = true - yyq2413[3] = true - yyq2413[4] = true - var yynn2413 int - if yyr2413 || yy2arr2413 { - r.EncodeArrayStart(5) + yysep2422 := !z.EncBinary() + yy2arr2422 := z.EncBasicHandle().StructToArray + var yyq2422 [6]bool + _, _, _ = yysep2422, yyq2422, yy2arr2422 + const yyr2422 bool = false + yyq2422[2] = true + yyq2422[3] = true + yyq2422[4] = x.Reason != "" + yyq2422[5] = x.Message != "" + var yynn2422 int + if yyr2422 || yy2arr2422 { + r.EncodeArrayStart(6) } else { - yynn2413 = 0 - for _, b := range yyq2413 { + yynn2422 = 2 + for _, b := range yyq2422 { if b { - yynn2413++ + yynn2422++ } } - r.EncodeMapStart(yynn2413) - yynn2413 = 0 + r.EncodeMapStart(yynn2422) + yynn2422 = 0 + } + if yyr2422 || yy2arr2422 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + x.Type.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("type")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Type.CodecEncodeSelf(e) + } + if yyr2422 || yy2arr2422 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + x.Status.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Status.CodecEncodeSelf(e) } - if yyr2413 || yy2arr2413 { + if yyr2422 || yy2arr2422 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2413[0] { - yym2415 := z.EncBinary() - _ = yym2415 + if yyq2422[2] { + yy2426 := &x.LastProbeTime + yym2427 := z.EncBinary() + _ = yym2427 if false { + } else if z.HasExtensions() && z.EncExt(yy2426) { + } else if yym2427 { + z.EncBinaryMarshal(yy2426) + } else if !yym2427 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2426) } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + z.EncFallback(yy2426) } } else { - r.EncodeString(codecSelferC_UTF81234, "") + r.EncodeNil() } } else { - if yyq2413[0] { + if yyq2422[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) + r.EncodeString(codecSelferC_UTF81234, string("lastProbeTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2416 := z.EncBinary() - _ = yym2416 + yy2428 := &x.LastProbeTime + yym2429 := z.EncBinary() + _ = yym2429 if false { + } else if z.HasExtensions() && z.EncExt(yy2428) { + } else if yym2429 { + z.EncBinaryMarshal(yy2428) + } else if !yym2429 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2428) } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + z.EncFallback(yy2428) } } } - if yyr2413 || yy2arr2413 { + if yyr2422 || yy2arr2422 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2413[1] { - yym2418 := z.EncBinary() - _ = yym2418 + if yyq2422[3] { + yy2431 := &x.LastTransitionTime + yym2432 := z.EncBinary() + _ = yym2432 if false { + } else if z.HasExtensions() && z.EncExt(yy2431) { + } else if yym2432 { + z.EncBinaryMarshal(yy2431) + } else if !yym2432 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2431) } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + z.EncFallback(yy2431) } } else { - r.EncodeString(codecSelferC_UTF81234, "") + r.EncodeNil() } } else { - if yyq2413[1] { + if yyq2422[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2419 := z.EncBinary() - _ = yym2419 + yy2433 := &x.LastTransitionTime + yym2434 := z.EncBinary() + _ = yym2434 if false { + } else if z.HasExtensions() && z.EncExt(yy2433) { + } else if yym2434 { + z.EncBinaryMarshal(yy2433) + } else if !yym2434 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2433) } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + z.EncFallback(yy2433) } } } - if yyr2413 || yy2arr2413 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2413[2] { - yy2421 := &x.ObjectMeta - yy2421.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2413[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2422 := &x.ObjectMeta - yy2422.CodecEncodeSelf(e) - } - } - if yyr2413 || yy2arr2413 { + if yyr2422 || yy2arr2422 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2413[3] { - yy2424 := &x.Spec - yy2424.CodecEncodeSelf(e) + if yyq2422[4] { + yym2436 := z.EncBinary() + _ = yym2436 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } } else { - r.EncodeNil() + r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2413[3] { + if yyq2422[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) + r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2425 := &x.Spec - yy2425.CodecEncodeSelf(e) + yym2437 := z.EncBinary() + _ = yym2437 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } } } - if yyr2413 || yy2arr2413 { + if yyr2422 || yy2arr2422 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2413[4] { - yy2427 := &x.Status - yy2427.CodecEncodeSelf(e) + if yyq2422[5] { + yym2439 := z.EncBinary() + _ = yym2439 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } } else { - r.EncodeNil() + r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2413[4] { + if yyq2422[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) + r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2428 := &x.Status - yy2428.CodecEncodeSelf(e) + yym2440 := z.EncBinary() + _ = yym2440 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } } } - if yyr2413 || yy2arr2413 { + if yyr2422 || yy2arr2422 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31858,29 +31992,29 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *ReplicationControllerCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2429 := z.DecBinary() - _ = yym2429 + yym2441 := z.DecBinary() + _ = yym2441 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2430 := r.ContainerType() - if yyct2430 == codecSelferValueTypeMap1234 { - yyl2430 := r.ReadMapStart() - if yyl2430 == 0 { + yyct2442 := r.ContainerType() + if yyct2442 == codecSelferValueTypeMap1234 { + yyl2442 := r.ReadMapStart() + if yyl2442 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2430, d) + x.codecDecodeSelfFromMap(yyl2442, d) } - } else if yyct2430 == codecSelferValueTypeArray1234 { - yyl2430 := r.ReadArrayStart() - if yyl2430 == 0 { + } else if yyct2442 == codecSelferValueTypeArray1234 { + yyl2442 := r.ReadArrayStart() + if yyl2442 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2430, d) + x.codecDecodeSelfFromArray(yyl2442, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31888,16 +32022,16 @@ func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *ReplicationControllerCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2431Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2431Slc - var yyhl2431 bool = l >= 0 - for yyj2431 := 0; ; yyj2431++ { - if yyhl2431 { - if yyj2431 >= l { + var yys2443Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2443Slc + var yyhl2443 bool = l >= 0 + for yyj2443 := 0; ; yyj2443++ { + if yyhl2443 { + if yyj2443 >= l { break } } else { @@ -31906,194 +32040,256 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2431Slc = r.DecodeBytes(yys2431Slc, true, true) - yys2431 := string(yys2431Slc) + yys2443Slc = r.DecodeBytes(yys2443Slc, true, true) + yys2443 := string(yys2443Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2431 { - case "kind": + switch yys2443 { + case "type": if r.TryDecodeAsNil() { - x.Kind = "" + x.Type = "" } else { - x.Kind = string(r.DecodeString()) + x.Type = ReplicationControllerConditionType(r.DecodeString()) } - case "apiVersion": + case "status": if r.TryDecodeAsNil() { - x.APIVersion = "" + x.Status = "" } else { - x.APIVersion = string(r.DecodeString()) + x.Status = ConditionStatus(r.DecodeString()) } - case "metadata": + case "lastProbeTime": if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} + x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv2434 := &x.ObjectMeta - yyv2434.CodecDecodeSelf(d) + yyv2446 := &x.LastProbeTime + yym2447 := z.DecBinary() + _ = yym2447 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2446) { + } else if yym2447 { + z.DecBinaryUnmarshal(yyv2446) + } else if !yym2447 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2446) + } else { + z.DecFallback(yyv2446, false) + } } - case "spec": + case "lastTransitionTime": if r.TryDecodeAsNil() { - x.Spec = ReplicationControllerSpec{} + x.LastTransitionTime = pkg2_unversioned.Time{} + } else { + yyv2448 := &x.LastTransitionTime + yym2449 := z.DecBinary() + _ = yym2449 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2448) { + } else if yym2449 { + z.DecBinaryUnmarshal(yyv2448) + } else if !yym2449 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2448) + } else { + z.DecFallback(yyv2448, false) + } + } + case "reason": + if r.TryDecodeAsNil() { + x.Reason = "" } else { - yyv2435 := &x.Spec - yyv2435.CodecDecodeSelf(d) + x.Reason = string(r.DecodeString()) } - case "status": + case "message": if r.TryDecodeAsNil() { - x.Status = ReplicationControllerStatus{} + x.Message = "" } else { - yyv2436 := &x.Status - yyv2436.CodecDecodeSelf(d) + x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2431) - } // end switch yys2431 - } // end for yyj2431 + z.DecStructFieldNotFound(-1, yys2443) + } // end switch yys2443 + } // end for yyj2443 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *ReplicationControllerCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2437 int - var yyb2437 bool - var yyhl2437 bool = l >= 0 - yyj2437++ - if yyhl2437 { - yyb2437 = yyj2437 > l + var yyj2452 int + var yyb2452 bool + var yyhl2452 bool = l >= 0 + yyj2452++ + if yyhl2452 { + yyb2452 = yyj2452 > l } else { - yyb2437 = r.CheckBreak() + yyb2452 = r.CheckBreak() } - if yyb2437 { + if yyb2452 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Kind = "" + x.Type = "" } else { - x.Kind = string(r.DecodeString()) + x.Type = ReplicationControllerConditionType(r.DecodeString()) } - yyj2437++ - if yyhl2437 { - yyb2437 = yyj2437 > l + yyj2452++ + if yyhl2452 { + yyb2452 = yyj2452 > l } else { - yyb2437 = r.CheckBreak() + yyb2452 = r.CheckBreak() } - if yyb2437 { + if yyb2452 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.APIVersion = "" + x.Status = "" } else { - x.APIVersion = string(r.DecodeString()) + x.Status = ConditionStatus(r.DecodeString()) } - yyj2437++ - if yyhl2437 { - yyb2437 = yyj2437 > l + yyj2452++ + if yyhl2452 { + yyb2452 = yyj2452 > l } else { - yyb2437 = r.CheckBreak() + yyb2452 = r.CheckBreak() } - if yyb2437 { + if yyb2452 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} + x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv2440 := &x.ObjectMeta - yyv2440.CodecDecodeSelf(d) + yyv2455 := &x.LastProbeTime + yym2456 := z.DecBinary() + _ = yym2456 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2455) { + } else if yym2456 { + z.DecBinaryUnmarshal(yyv2455) + } else if !yym2456 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2455) + } else { + z.DecFallback(yyv2455, false) + } } - yyj2437++ - if yyhl2437 { - yyb2437 = yyj2437 > l + yyj2452++ + if yyhl2452 { + yyb2452 = yyj2452 > l } else { - yyb2437 = r.CheckBreak() + yyb2452 = r.CheckBreak() } - if yyb2437 { + if yyb2452 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Spec = ReplicationControllerSpec{} + x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv2441 := &x.Spec - yyv2441.CodecDecodeSelf(d) + yyv2457 := &x.LastTransitionTime + yym2458 := z.DecBinary() + _ = yym2458 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2457) { + } else if yym2458 { + z.DecBinaryUnmarshal(yyv2457) + } else if !yym2458 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2457) + } else { + z.DecFallback(yyv2457, false) + } } - yyj2437++ - if yyhl2437 { - yyb2437 = yyj2437 > l + yyj2452++ + if yyhl2452 { + yyb2452 = yyj2452 > l } else { - yyb2437 = r.CheckBreak() + yyb2452 = r.CheckBreak() } - if yyb2437 { + if yyb2452 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Status = ReplicationControllerStatus{} + x.Reason = "" + } else { + x.Reason = string(r.DecodeString()) + } + yyj2452++ + if yyhl2452 { + yyb2452 = yyj2452 > l + } else { + yyb2452 = r.CheckBreak() + } + if yyb2452 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Message = "" } else { - yyv2442 := &x.Status - yyv2442.CodecDecodeSelf(d) + x.Message = string(r.DecodeString()) } for { - yyj2437++ - if yyhl2437 { - yyb2437 = yyj2437 > l + yyj2452++ + if yyhl2452 { + yyb2452 = yyj2452 > l } else { - yyb2437 = r.CheckBreak() + yyb2452 = r.CheckBreak() } - if yyb2437 { + if yyb2452 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2437-1, "") + z.DecStructFieldNotFound(yyj2452-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r if x == nil { r.EncodeNil() } else { - yym2443 := z.EncBinary() - _ = yym2443 + yym2461 := z.EncBinary() + _ = yym2461 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2444 := !z.EncBinary() - yy2arr2444 := z.EncBasicHandle().StructToArray - var yyq2444 [4]bool - _, _, _ = yysep2444, yyq2444, yy2arr2444 - const yyr2444 bool = false - yyq2444[0] = x.Kind != "" - yyq2444[1] = x.APIVersion != "" - yyq2444[2] = true - var yynn2444 int - if yyr2444 || yy2arr2444 { - r.EncodeArrayStart(4) + 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 { + r.EncodeArrayStart(5) } else { - yynn2444 = 1 - for _, b := range yyq2444 { + yynn2462 = 0 + for _, b := range yyq2462 { if b { - yynn2444++ + yynn2462++ } } - r.EncodeMapStart(yynn2444) - yynn2444 = 0 + r.EncodeMapStart(yynn2462) + yynn2462 = 0 } - if yyr2444 || yy2arr2444 { + if yyr2462 || yy2arr2462 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2444[0] { - yym2446 := z.EncBinary() - _ = yym2446 + if yyq2462[0] { + yym2464 := z.EncBinary() + _ = yym2464 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32102,23 +32298,23 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2444[0] { + if yyq2462[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2447 := z.EncBinary() - _ = yym2447 + yym2465 := z.EncBinary() + _ = yym2465 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2444 || yy2arr2444 { + if yyr2462 || yy2arr2462 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2444[1] { - yym2449 := z.EncBinary() - _ = yym2449 + if yyq2462[1] { + yym2467 := z.EncBinary() + _ = yym2467 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32127,75 +32323,70 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2444[1] { + if yyq2462[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2450 := z.EncBinary() - _ = yym2450 + yym2468 := z.EncBinary() + _ = yym2468 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2444 || yy2arr2444 { + if yyr2462 || yy2arr2462 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2444[2] { - yy2452 := &x.ListMeta - yym2453 := z.EncBinary() - _ = yym2453 - if false { - } else if z.HasExtensions() && z.EncExt(yy2452) { - } else { - z.EncFallback(yy2452) - } + if yyq2462[2] { + yy2470 := &x.ObjectMeta + yy2470.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2444[2] { + if yyq2462[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2454 := &x.ListMeta - yym2455 := z.EncBinary() - _ = yym2455 - if false { - } else if z.HasExtensions() && z.EncExt(yy2454) { - } else { - z.EncFallback(yy2454) - } + yy2471 := &x.ObjectMeta + yy2471.CodecEncodeSelf(e) } } - if yyr2444 || yy2arr2444 { + if yyr2462 || yy2arr2462 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Items == nil { - r.EncodeNil() + if yyq2462[3] { + yy2473 := &x.Spec + yy2473.CodecEncodeSelf(e) } else { - yym2457 := z.EncBinary() - _ = yym2457 - if false { - } else { - h.encSliceReplicationController(([]ReplicationController)(x.Items), e) - } + r.EncodeNil() } } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("items")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Items == nil { - r.EncodeNil() + if yyq2462[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("spec")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2474 := &x.Spec + yy2474.CodecEncodeSelf(e) + } + } + if yyr2462 || yy2arr2462 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2462[4] { + yy2476 := &x.Status + yy2476.CodecEncodeSelf(e) } else { - yym2458 := z.EncBinary() - _ = yym2458 - if false { - } else { - h.encSliceReplicationController(([]ReplicationController)(x.Items), e) - } + r.EncodeNil() + } + } else { + if yyq2462[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2477 := &x.Status + yy2477.CodecEncodeSelf(e) } } - if yyr2444 || yy2arr2444 { + if yyr2462 || yy2arr2462 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32204,29 +32395,29 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2459 := z.DecBinary() - _ = yym2459 + yym2478 := z.DecBinary() + _ = yym2478 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2460 := r.ContainerType() - if yyct2460 == codecSelferValueTypeMap1234 { - yyl2460 := r.ReadMapStart() - if yyl2460 == 0 { + yyct2479 := r.ContainerType() + if yyct2479 == codecSelferValueTypeMap1234 { + yyl2479 := r.ReadMapStart() + if yyl2479 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2460, d) + x.codecDecodeSelfFromMap(yyl2479, d) } - } else if yyct2460 == codecSelferValueTypeArray1234 { - yyl2460 := r.ReadArrayStart() - if yyl2460 == 0 { + } else if yyct2479 == codecSelferValueTypeArray1234 { + yyl2479 := r.ReadArrayStart() + if yyl2479 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2460, d) + x.codecDecodeSelfFromArray(yyl2479, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32234,16 +32425,16 @@ func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2461Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2461Slc - var yyhl2461 bool = l >= 0 - for yyj2461 := 0; ; yyj2461++ { - if yyhl2461 { - if yyj2461 >= l { + var yys2480Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2480Slc + var yyhl2480 bool = l >= 0 + for yyj2480 := 0; ; yyj2480++ { + if yyhl2480 { + if yyj2480 >= l { break } } else { @@ -32252,10 +32443,10 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2461Slc = r.DecodeBytes(yys2461Slc, true, true) - yys2461 := string(yys2461Slc) + yys2480Slc = r.DecodeBytes(yys2480Slc, true, true) + yys2480 := string(yys2480Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2461 { + switch yys2480 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32270,33 +32461,379 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D } case "metadata": if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} + x.ObjectMeta = ObjectMeta{} } else { - yyv2464 := &x.ListMeta - yym2465 := z.DecBinary() - _ = yym2465 - if false { - } else if z.HasExtensions() && z.DecExt(yyv2464) { - } else { - z.DecFallback(yyv2464, false) - } + yyv2483 := &x.ObjectMeta + yyv2483.CodecDecodeSelf(d) } - case "items": + case "spec": if r.TryDecodeAsNil() { - x.Items = nil + x.Spec = ReplicationControllerSpec{} } else { - yyv2466 := &x.Items - yym2467 := z.DecBinary() - _ = yym2467 + yyv2484 := &x.Spec + yyv2484.CodecDecodeSelf(d) + } + case "status": + if r.TryDecodeAsNil() { + x.Status = ReplicationControllerStatus{} + } else { + yyv2485 := &x.Status + yyv2485.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys2480) + } // end switch yys2480 + } // end for yyj2480 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ReplicationController) 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 + } else { + yyb2486 = r.CheckBreak() + } + if yyb2486 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj2486++ + if yyhl2486 { + yyb2486 = yyj2486 > l + } else { + yyb2486 = r.CheckBreak() + } + if yyb2486 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj2486++ + if yyhl2486 { + yyb2486 = yyj2486 > l + } else { + yyb2486 = r.CheckBreak() + } + if yyb2486 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv2489 := &x.ObjectMeta + yyv2489.CodecDecodeSelf(d) + } + yyj2486++ + if yyhl2486 { + yyb2486 = yyj2486 > l + } else { + yyb2486 = r.CheckBreak() + } + if yyb2486 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Spec = ReplicationControllerSpec{} + } else { + yyv2490 := &x.Spec + yyv2490.CodecDecodeSelf(d) + } + yyj2486++ + if yyhl2486 { + yyb2486 = yyj2486 > l + } else { + yyb2486 = r.CheckBreak() + } + if yyb2486 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Status = ReplicationControllerStatus{} + } else { + yyv2491 := &x.Status + yyv2491.CodecDecodeSelf(d) + } + for { + yyj2486++ + if yyhl2486 { + yyb2486 = yyj2486 > l + } else { + yyb2486 = r.CheckBreak() + } + if yyb2486 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2486-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2492 := z.EncBinary() + _ = yym2492 + 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 { + r.EncodeArrayStart(4) + } else { + yynn2493 = 1 + for _, b := range yyq2493 { + if b { + yynn2493++ + } + } + r.EncodeMapStart(yynn2493) + yynn2493 = 0 + } + if yyr2493 || yy2arr2493 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2493[0] { + yym2495 := z.EncBinary() + _ = yym2495 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2493[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2496 := z.EncBinary() + _ = yym2496 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2493 || yy2arr2493 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2493[1] { + yym2498 := z.EncBinary() + _ = yym2498 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2493[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2499 := z.EncBinary() + _ = yym2499 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr2493 || yy2arr2493 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2493[2] { + yy2501 := &x.ListMeta + yym2502 := z.EncBinary() + _ = yym2502 + if false { + } else if z.HasExtensions() && z.EncExt(yy2501) { + } else { + z.EncFallback(yy2501) + } + } else { + r.EncodeNil() + } + } else { + if yyq2493[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2503 := &x.ListMeta + yym2504 := z.EncBinary() + _ = yym2504 + if false { + } else if z.HasExtensions() && z.EncExt(yy2503) { + } else { + z.EncFallback(yy2503) + } + } + } + if yyr2493 || yy2arr2493 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym2506 := z.EncBinary() + _ = yym2506 + if false { + } else { + h.encSliceReplicationController(([]ReplicationController)(x.Items), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("items")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym2507 := z.EncBinary() + _ = yym2507 + if false { + } else { + h.encSliceReplicationController(([]ReplicationController)(x.Items), e) + } + } + } + if yyr2493 || yy2arr2493 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2508 := z.DecBinary() + _ = yym2508 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2509 := r.ContainerType() + if yyct2509 == codecSelferValueTypeMap1234 { + yyl2509 := r.ReadMapStart() + if yyl2509 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2509, d) + } + } else if yyct2509 == codecSelferValueTypeArray1234 { + yyl2509 := r.ReadArrayStart() + if yyl2509 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2509, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ReplicationControllerList) 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 { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2510Slc = r.DecodeBytes(yys2510Slc, true, true) + yys2510 := string(yys2510Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2510 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv2513 := &x.ListMeta + yym2514 := z.DecBinary() + _ = yym2514 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2513) { + } else { + z.DecFallback(yyv2513, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv2515 := &x.Items + yym2516 := z.DecBinary() + _ = yym2516 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2466), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2515), d) } } default: - z.DecStructFieldNotFound(-1, yys2461) - } // end switch yys2461 - } // end for yyj2461 + z.DecStructFieldNotFound(-1, yys2510) + } // end switch yys2510 + } // end for yyj2510 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32304,16 +32841,16 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2468 int - var yyb2468 bool - var yyhl2468 bool = l >= 0 - yyj2468++ - if yyhl2468 { - yyb2468 = yyj2468 > l + var yyj2517 int + var yyb2517 bool + var yyhl2517 bool = l >= 0 + yyj2517++ + if yyhl2517 { + yyb2517 = yyj2517 > l } else { - yyb2468 = r.CheckBreak() + yyb2517 = r.CheckBreak() } - if yyb2468 { + if yyb2517 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32323,13 +32860,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj2468++ - if yyhl2468 { - yyb2468 = yyj2468 > l + yyj2517++ + if yyhl2517 { + yyb2517 = yyj2517 > l } else { - yyb2468 = r.CheckBreak() + yyb2517 = r.CheckBreak() } - if yyb2468 { + if yyb2517 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32339,13 +32876,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj2468++ - if yyhl2468 { - yyb2468 = yyj2468 > l + yyj2517++ + if yyhl2517 { + yyb2517 = yyj2517 > l } else { - yyb2468 = r.CheckBreak() + yyb2517 = r.CheckBreak() } - if yyb2468 { + if yyb2517 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32353,22 +32890,22 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2471 := &x.ListMeta - yym2472 := z.DecBinary() - _ = yym2472 + yyv2520 := &x.ListMeta + yym2521 := z.DecBinary() + _ = yym2521 if false { - } else if z.HasExtensions() && z.DecExt(yyv2471) { + } else if z.HasExtensions() && z.DecExt(yyv2520) { } else { - z.DecFallback(yyv2471, false) + z.DecFallback(yyv2520, false) } } - yyj2468++ - if yyhl2468 { - yyb2468 = yyj2468 > l + yyj2517++ + if yyhl2517 { + yyb2517 = yyj2517 > l } else { - yyb2468 = r.CheckBreak() + yyb2517 = r.CheckBreak() } - if yyb2468 { + if yyb2517 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32376,26 +32913,26 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2473 := &x.Items - yym2474 := z.DecBinary() - _ = yym2474 + yyv2522 := &x.Items + yym2523 := z.DecBinary() + _ = yym2523 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2473), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2522), d) } } for { - yyj2468++ - if yyhl2468 { - yyb2468 = yyj2468 > l + yyj2517++ + if yyhl2517 { + yyb2517 = yyj2517 > l } else { - yyb2468 = r.CheckBreak() + yyb2517 = r.CheckBreak() } - if yyb2468 { + if yyb2517 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2468-1, "") + z.DecStructFieldNotFound(yyj2517-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32404,8 +32941,8 @@ func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2475 := z.EncBinary() - _ = yym2475 + yym2524 := z.EncBinary() + _ = yym2524 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -32417,8 +32954,8 @@ func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2476 := z.DecBinary() - _ = yym2476 + yym2525 := z.DecBinary() + _ = yym2525 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -32430,8 +32967,8 @@ func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2477 := z.EncBinary() - _ = yym2477 + yym2526 := z.EncBinary() + _ = yym2526 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -32443,8 +32980,8 @@ func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2478 := z.DecBinary() - _ = yym2478 + yym2527 := z.DecBinary() + _ = yym2527 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -32459,48 +32996,48 @@ func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2479 := z.EncBinary() - _ = yym2479 + yym2528 := z.EncBinary() + _ = yym2528 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2480 := !z.EncBinary() - yy2arr2480 := z.EncBasicHandle().StructToArray - var yyq2480 [1]bool - _, _, _ = yysep2480, yyq2480, yy2arr2480 - const yyr2480 bool = false - yyq2480[0] = true - var yynn2480 int - if yyr2480 || yy2arr2480 { + yysep2529 := !z.EncBinary() + yy2arr2529 := z.EncBasicHandle().StructToArray + var yyq2529 [1]bool + _, _, _ = yysep2529, yyq2529, yy2arr2529 + const yyr2529 bool = false + yyq2529[0] = true + var yynn2529 int + if yyr2529 || yy2arr2529 { r.EncodeArrayStart(1) } else { - yynn2480 = 0 - for _, b := range yyq2480 { + yynn2529 = 0 + for _, b := range yyq2529 { if b { - yynn2480++ + yynn2529++ } } - r.EncodeMapStart(yynn2480) - yynn2480 = 0 + r.EncodeMapStart(yynn2529) + yynn2529 = 0 } - if yyr2480 || yy2arr2480 { + if yyr2529 || yy2arr2529 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2480[0] { - yy2482 := &x.LoadBalancer - yy2482.CodecEncodeSelf(e) + if yyq2529[0] { + yy2531 := &x.LoadBalancer + yy2531.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2480[0] { + if yyq2529[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancer")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2483 := &x.LoadBalancer - yy2483.CodecEncodeSelf(e) + yy2532 := &x.LoadBalancer + yy2532.CodecEncodeSelf(e) } } - if yyr2480 || yy2arr2480 { + if yyr2529 || yy2arr2529 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32513,25 +33050,25 @@ func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2484 := z.DecBinary() - _ = yym2484 + yym2533 := z.DecBinary() + _ = yym2533 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2485 := r.ContainerType() - if yyct2485 == codecSelferValueTypeMap1234 { - yyl2485 := r.ReadMapStart() - if yyl2485 == 0 { + yyct2534 := r.ContainerType() + if yyct2534 == codecSelferValueTypeMap1234 { + yyl2534 := r.ReadMapStart() + if yyl2534 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2485, d) + x.codecDecodeSelfFromMap(yyl2534, d) } - } else if yyct2485 == codecSelferValueTypeArray1234 { - yyl2485 := r.ReadArrayStart() - if yyl2485 == 0 { + } else if yyct2534 == codecSelferValueTypeArray1234 { + yyl2534 := r.ReadArrayStart() + if yyl2534 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2485, d) + x.codecDecodeSelfFromArray(yyl2534, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32543,12 +33080,12 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2486Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2486Slc - var yyhl2486 bool = l >= 0 - for yyj2486 := 0; ; yyj2486++ { - if yyhl2486 { - if yyj2486 >= l { + var yys2535Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2535Slc + var yyhl2535 bool = l >= 0 + for yyj2535 := 0; ; yyj2535++ { + if yyhl2535 { + if yyj2535 >= l { break } } else { @@ -32557,21 +33094,21 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2486Slc = r.DecodeBytes(yys2486Slc, true, true) - yys2486 := string(yys2486Slc) + yys2535Slc = r.DecodeBytes(yys2535Slc, true, true) + yys2535 := string(yys2535Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2486 { + switch yys2535 { case "loadBalancer": if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2487 := &x.LoadBalancer - yyv2487.CodecDecodeSelf(d) + yyv2536 := &x.LoadBalancer + yyv2536.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2486) - } // end switch yys2486 - } // end for yyj2486 + z.DecStructFieldNotFound(-1, yys2535) + } // end switch yys2535 + } // end for yyj2535 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32579,16 +33116,16 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2488 int - var yyb2488 bool - var yyhl2488 bool = l >= 0 - yyj2488++ - if yyhl2488 { - yyb2488 = yyj2488 > l + var yyj2537 int + var yyb2537 bool + var yyhl2537 bool = l >= 0 + yyj2537++ + if yyhl2537 { + yyb2537 = yyj2537 > l } else { - yyb2488 = r.CheckBreak() + yyb2537 = r.CheckBreak() } - if yyb2488 { + if yyb2537 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32596,21 +33133,21 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2489 := &x.LoadBalancer - yyv2489.CodecDecodeSelf(d) + yyv2538 := &x.LoadBalancer + yyv2538.CodecDecodeSelf(d) } for { - yyj2488++ - if yyhl2488 { - yyb2488 = yyj2488 > l + yyj2537++ + if yyhl2537 { + yyb2537 = yyj2537 > l } else { - yyb2488 = r.CheckBreak() + yyb2537 = r.CheckBreak() } - if yyb2488 { + if yyb2537 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2488-1, "") + z.DecStructFieldNotFound(yyj2537-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32622,38 +33159,38 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2490 := z.EncBinary() - _ = yym2490 + yym2539 := z.EncBinary() + _ = yym2539 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2491 := !z.EncBinary() - yy2arr2491 := z.EncBasicHandle().StructToArray - var yyq2491 [1]bool - _, _, _ = yysep2491, yyq2491, yy2arr2491 - const yyr2491 bool = false - yyq2491[0] = len(x.Ingress) != 0 - var yynn2491 int - if yyr2491 || yy2arr2491 { + yysep2540 := !z.EncBinary() + yy2arr2540 := z.EncBasicHandle().StructToArray + var yyq2540 [1]bool + _, _, _ = yysep2540, yyq2540, yy2arr2540 + const yyr2540 bool = false + yyq2540[0] = len(x.Ingress) != 0 + var yynn2540 int + if yyr2540 || yy2arr2540 { r.EncodeArrayStart(1) } else { - yynn2491 = 0 - for _, b := range yyq2491 { + yynn2540 = 0 + for _, b := range yyq2540 { if b { - yynn2491++ + yynn2540++ } } - r.EncodeMapStart(yynn2491) - yynn2491 = 0 + r.EncodeMapStart(yynn2540) + yynn2540 = 0 } - if yyr2491 || yy2arr2491 { + if yyr2540 || yy2arr2540 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2491[0] { + if yyq2540[0] { if x.Ingress == nil { r.EncodeNil() } else { - yym2493 := z.EncBinary() - _ = yym2493 + yym2542 := z.EncBinary() + _ = yym2542 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -32663,15 +33200,15 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2491[0] { + if yyq2540[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym2494 := z.EncBinary() - _ = yym2494 + yym2543 := z.EncBinary() + _ = yym2543 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -32679,7 +33216,7 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2491 || yy2arr2491 { + if yyr2540 || yy2arr2540 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32692,25 +33229,25 @@ func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2495 := z.DecBinary() - _ = yym2495 + yym2544 := z.DecBinary() + _ = yym2544 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2496 := r.ContainerType() - if yyct2496 == codecSelferValueTypeMap1234 { - yyl2496 := r.ReadMapStart() - if yyl2496 == 0 { + yyct2545 := r.ContainerType() + if yyct2545 == codecSelferValueTypeMap1234 { + yyl2545 := r.ReadMapStart() + if yyl2545 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2496, d) + x.codecDecodeSelfFromMap(yyl2545, d) } - } else if yyct2496 == codecSelferValueTypeArray1234 { - yyl2496 := r.ReadArrayStart() - if yyl2496 == 0 { + } else if yyct2545 == codecSelferValueTypeArray1234 { + yyl2545 := r.ReadArrayStart() + if yyl2545 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2496, d) + x.codecDecodeSelfFromArray(yyl2545, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32722,12 +33259,12 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2497Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2497Slc - var yyhl2497 bool = l >= 0 - for yyj2497 := 0; ; yyj2497++ { - if yyhl2497 { - if yyj2497 >= l { + var yys2546Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2546Slc + var yyhl2546 bool = l >= 0 + for yyj2546 := 0; ; yyj2546++ { + if yyhl2546 { + if yyj2546 >= l { break } } else { @@ -32736,26 +33273,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2497Slc = r.DecodeBytes(yys2497Slc, true, true) - yys2497 := string(yys2497Slc) + yys2546Slc = r.DecodeBytes(yys2546Slc, true, true) + yys2546 := string(yys2546Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2497 { + switch yys2546 { case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2498 := &x.Ingress - yym2499 := z.DecBinary() - _ = yym2499 + yyv2547 := &x.Ingress + yym2548 := z.DecBinary() + _ = yym2548 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2498), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2547), d) } } default: - z.DecStructFieldNotFound(-1, yys2497) - } // end switch yys2497 - } // end for yyj2497 + z.DecStructFieldNotFound(-1, yys2546) + } // end switch yys2546 + } // end for yyj2546 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32763,16 +33300,16 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode 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 yyj2549 int + var yyb2549 bool + var yyhl2549 bool = l >= 0 + yyj2549++ + if yyhl2549 { + yyb2549 = yyj2549 > l } else { - yyb2500 = r.CheckBreak() + yyb2549 = r.CheckBreak() } - if yyb2500 { + if yyb2549 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32780,26 +33317,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2501 := &x.Ingress - yym2502 := z.DecBinary() - _ = yym2502 + yyv2550 := &x.Ingress + yym2551 := z.DecBinary() + _ = yym2551 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2501), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2550), d) } } for { - yyj2500++ - if yyhl2500 { - yyb2500 = yyj2500 > l + yyj2549++ + if yyhl2549 { + yyb2549 = yyj2549 > l } else { - yyb2500 = r.CheckBreak() + yyb2549 = r.CheckBreak() } - if yyb2500 { + if yyb2549 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2500-1, "") + z.DecStructFieldNotFound(yyj2549-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32811,36 +33348,36 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2503 := z.EncBinary() - _ = yym2503 + yym2552 := z.EncBinary() + _ = yym2552 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2504 := !z.EncBinary() - yy2arr2504 := z.EncBasicHandle().StructToArray - var yyq2504 [2]bool - _, _, _ = yysep2504, yyq2504, yy2arr2504 - const yyr2504 bool = false - yyq2504[0] = x.IP != "" - yyq2504[1] = x.Hostname != "" - var yynn2504 int - if yyr2504 || yy2arr2504 { + yysep2553 := !z.EncBinary() + yy2arr2553 := z.EncBasicHandle().StructToArray + var yyq2553 [2]bool + _, _, _ = yysep2553, yyq2553, yy2arr2553 + const yyr2553 bool = false + yyq2553[0] = x.IP != "" + yyq2553[1] = x.Hostname != "" + var yynn2553 int + if yyr2553 || yy2arr2553 { r.EncodeArrayStart(2) } else { - yynn2504 = 0 - for _, b := range yyq2504 { + yynn2553 = 0 + for _, b := range yyq2553 { if b { - yynn2504++ + yynn2553++ } } - r.EncodeMapStart(yynn2504) - yynn2504 = 0 + r.EncodeMapStart(yynn2553) + yynn2553 = 0 } - if yyr2504 || yy2arr2504 { + if yyr2553 || yy2arr2553 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2504[0] { - yym2506 := z.EncBinary() - _ = yym2506 + if yyq2553[0] { + yym2555 := z.EncBinary() + _ = yym2555 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -32849,23 +33386,23 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2504[0] { + if yyq2553[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2507 := z.EncBinary() - _ = yym2507 + yym2556 := z.EncBinary() + _ = yym2556 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } } - if yyr2504 || yy2arr2504 { + if yyr2553 || yy2arr2553 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2504[1] { - yym2509 := z.EncBinary() - _ = yym2509 + if yyq2553[1] { + yym2558 := z.EncBinary() + _ = yym2558 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -32874,19 +33411,19 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2504[1] { + if yyq2553[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2510 := z.EncBinary() - _ = yym2510 + yym2559 := z.EncBinary() + _ = yym2559 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2504 || yy2arr2504 { + if yyr2553 || yy2arr2553 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32899,25 +33436,25 @@ func (x *LoadBalancerIngress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2511 := z.DecBinary() - _ = yym2511 + yym2560 := z.DecBinary() + _ = yym2560 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2512 := r.ContainerType() - if yyct2512 == codecSelferValueTypeMap1234 { - yyl2512 := r.ReadMapStart() - if yyl2512 == 0 { + yyct2561 := r.ContainerType() + if yyct2561 == codecSelferValueTypeMap1234 { + yyl2561 := r.ReadMapStart() + if yyl2561 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2512, d) + x.codecDecodeSelfFromMap(yyl2561, d) } - } else if yyct2512 == codecSelferValueTypeArray1234 { - yyl2512 := r.ReadArrayStart() - if yyl2512 == 0 { + } else if yyct2561 == codecSelferValueTypeArray1234 { + yyl2561 := r.ReadArrayStart() + if yyl2561 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2512, d) + x.codecDecodeSelfFromArray(yyl2561, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32929,12 +33466,12 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2513Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2513Slc - var yyhl2513 bool = l >= 0 - for yyj2513 := 0; ; yyj2513++ { - if yyhl2513 { - if yyj2513 >= 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 { @@ -32943,10 +33480,10 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2513Slc = r.DecodeBytes(yys2513Slc, true, true) - yys2513 := string(yys2513Slc) + yys2562Slc = r.DecodeBytes(yys2562Slc, true, true) + yys2562 := string(yys2562Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2513 { + switch yys2562 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -32960,9 +33497,9 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Hostname = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2513) - } // end switch yys2513 - } // end for yyj2513 + z.DecStructFieldNotFound(-1, yys2562) + } // end switch yys2562 + } // end for yyj2562 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32970,16 +33507,16 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2516 int - var yyb2516 bool - var yyhl2516 bool = l >= 0 - yyj2516++ - if yyhl2516 { - yyb2516 = yyj2516 > l + var yyj2565 int + var yyb2565 bool + var yyhl2565 bool = l >= 0 + yyj2565++ + if yyhl2565 { + yyb2565 = yyj2565 > l } else { - yyb2516 = r.CheckBreak() + yyb2565 = r.CheckBreak() } - if yyb2516 { + if yyb2565 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32989,13 +33526,13 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.IP = string(r.DecodeString()) } - yyj2516++ - if yyhl2516 { - yyb2516 = yyj2516 > l + yyj2565++ + if yyhl2565 { + yyb2565 = yyj2565 > l } else { - yyb2516 = r.CheckBreak() + yyb2565 = r.CheckBreak() } - if yyb2516 { + if yyb2565 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33006,17 +33543,17 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Hostname = string(r.DecodeString()) } for { - yyj2516++ - if yyhl2516 { - yyb2516 = yyj2516 > l + yyj2565++ + if yyhl2565 { + yyb2565 = yyj2565 > l } else { - yyb2516 = r.CheckBreak() + yyb2565 = r.CheckBreak() } - if yyb2516 { + if yyb2565 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2516-1, "") + z.DecStructFieldNotFound(yyj2565-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33028,45 +33565,45 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2519 := z.EncBinary() - _ = yym2519 + yym2568 := z.EncBinary() + _ = yym2568 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2520 := !z.EncBinary() - yy2arr2520 := z.EncBasicHandle().StructToArray - var yyq2520 [10]bool - _, _, _ = yysep2520, yyq2520, yy2arr2520 - const yyr2520 bool = false - yyq2520[1] = len(x.Selector) != 0 - yyq2520[2] = x.ClusterIP != "" - yyq2520[3] = x.Type != "" - yyq2520[4] = len(x.ExternalIPs) != 0 - yyq2520[5] = len(x.DeprecatedPublicIPs) != 0 - yyq2520[6] = x.SessionAffinity != "" - yyq2520[7] = x.LoadBalancerIP != "" - yyq2520[8] = len(x.LoadBalancerSourceRanges) != 0 - yyq2520[9] = x.ExternalName != "" - var yynn2520 int - if yyr2520 || yy2arr2520 { + yysep2569 := !z.EncBinary() + yy2arr2569 := z.EncBasicHandle().StructToArray + var yyq2569 [10]bool + _, _, _ = yysep2569, yyq2569, yy2arr2569 + const yyr2569 bool = false + yyq2569[1] = len(x.Selector) != 0 + yyq2569[2] = x.ClusterIP != "" + yyq2569[3] = x.Type != "" + yyq2569[4] = len(x.ExternalIPs) != 0 + yyq2569[5] = len(x.DeprecatedPublicIPs) != 0 + yyq2569[6] = x.SessionAffinity != "" + yyq2569[7] = x.LoadBalancerIP != "" + yyq2569[8] = len(x.LoadBalancerSourceRanges) != 0 + yyq2569[9] = x.ExternalName != "" + var yynn2569 int + if yyr2569 || yy2arr2569 { r.EncodeArrayStart(10) } else { - yynn2520 = 1 - for _, b := range yyq2520 { + yynn2569 = 1 + for _, b := range yyq2569 { if b { - yynn2520++ + yynn2569++ } } - r.EncodeMapStart(yynn2520) - yynn2520 = 0 + r.EncodeMapStart(yynn2569) + yynn2569 = 0 } - if yyr2520 || yy2arr2520 { + if yyr2569 || yy2arr2569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2522 := z.EncBinary() - _ = yym2522 + yym2571 := z.EncBinary() + _ = yym2571 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) @@ -33079,22 +33616,22 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2523 := z.EncBinary() - _ = yym2523 + yym2572 := z.EncBinary() + _ = yym2572 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) } } } - if yyr2520 || yy2arr2520 { + if yyr2569 || yy2arr2569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2520[1] { + if yyq2569[1] { if x.Selector == nil { r.EncodeNil() } else { - yym2525 := z.EncBinary() - _ = yym2525 + yym2574 := z.EncBinary() + _ = yym2574 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -33104,15 +33641,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2520[1] { + if yyq2569[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym2526 := z.EncBinary() - _ = yym2526 + yym2575 := z.EncBinary() + _ = yym2575 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -33120,11 +33657,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2520 || yy2arr2520 { + if yyr2569 || yy2arr2569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2520[2] { - yym2528 := z.EncBinary() - _ = yym2528 + if yyq2569[2] { + yym2577 := z.EncBinary() + _ = yym2577 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) @@ -33133,41 +33670,41 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2520[2] { + if yyq2569[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2529 := z.EncBinary() - _ = yym2529 + yym2578 := z.EncBinary() + _ = yym2578 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) } } } - if yyr2520 || yy2arr2520 { + if yyr2569 || yy2arr2569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2520[3] { + if yyq2569[3] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2520[3] { + if yyq2569[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr2520 || yy2arr2520 { + if yyr2569 || yy2arr2569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2520[4] { + if yyq2569[4] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2532 := z.EncBinary() - _ = yym2532 + yym2581 := z.EncBinary() + _ = yym2581 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -33177,15 +33714,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2520[4] { + if yyq2569[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2533 := z.EncBinary() - _ = yym2533 + yym2582 := z.EncBinary() + _ = yym2582 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -33193,14 +33730,14 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2520 || yy2arr2520 { + if yyr2569 || yy2arr2569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2520[5] { + if yyq2569[5] { if x.DeprecatedPublicIPs == nil { r.EncodeNil() } else { - yym2535 := z.EncBinary() - _ = yym2535 + yym2584 := z.EncBinary() + _ = yym2584 if false { } else { z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) @@ -33210,15 +33747,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2520[5] { + if yyq2569[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("deprecatedPublicIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DeprecatedPublicIPs == nil { r.EncodeNil() } else { - yym2536 := z.EncBinary() - _ = yym2536 + yym2585 := z.EncBinary() + _ = yym2585 if false { } else { z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) @@ -33226,26 +33763,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2520 || yy2arr2520 { + if yyr2569 || yy2arr2569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2520[6] { + if yyq2569[6] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2520[6] { + if yyq2569[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.SessionAffinity.CodecEncodeSelf(e) } } - if yyr2520 || yy2arr2520 { + if yyr2569 || yy2arr2569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2520[7] { - yym2539 := z.EncBinary() - _ = yym2539 + if yyq2569[7] { + yym2588 := z.EncBinary() + _ = yym2588 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -33254,26 +33791,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2520[7] { + if yyq2569[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2540 := z.EncBinary() - _ = yym2540 + yym2589 := z.EncBinary() + _ = yym2589 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) } } } - if yyr2520 || yy2arr2520 { + if yyr2569 || yy2arr2569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2520[8] { + if yyq2569[8] { if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2542 := z.EncBinary() - _ = yym2542 + yym2591 := z.EncBinary() + _ = yym2591 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -33283,15 +33820,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2520[8] { + if yyq2569[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerSourceRanges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2543 := z.EncBinary() - _ = yym2543 + yym2592 := z.EncBinary() + _ = yym2592 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -33299,11 +33836,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2520 || yy2arr2520 { + if yyr2569 || yy2arr2569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2520[9] { - yym2545 := z.EncBinary() - _ = yym2545 + if yyq2569[9] { + yym2594 := z.EncBinary() + _ = yym2594 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) @@ -33312,19 +33849,19 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2520[9] { + if yyq2569[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2546 := z.EncBinary() - _ = yym2546 + yym2595 := z.EncBinary() + _ = yym2595 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) } } } - if yyr2520 || yy2arr2520 { + if yyr2569 || yy2arr2569 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33337,25 +33874,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2547 := z.DecBinary() - _ = yym2547 + yym2596 := z.DecBinary() + _ = yym2596 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2548 := r.ContainerType() - if yyct2548 == codecSelferValueTypeMap1234 { - yyl2548 := r.ReadMapStart() - if yyl2548 == 0 { + yyct2597 := r.ContainerType() + if yyct2597 == codecSelferValueTypeMap1234 { + yyl2597 := r.ReadMapStart() + if yyl2597 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2548, d) + x.codecDecodeSelfFromMap(yyl2597, d) } - } else if yyct2548 == codecSelferValueTypeArray1234 { - yyl2548 := r.ReadArrayStart() - if yyl2548 == 0 { + } else if yyct2597 == codecSelferValueTypeArray1234 { + yyl2597 := r.ReadArrayStart() + if yyl2597 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2548, d) + x.codecDecodeSelfFromArray(yyl2597, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33367,12 +33904,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2549Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2549Slc - var yyhl2549 bool = l >= 0 - for yyj2549 := 0; ; yyj2549++ { - if yyhl2549 { - if yyj2549 >= l { + var yys2598Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2598Slc + var yyhl2598 bool = l >= 0 + for yyj2598 := 0; ; yyj2598++ { + if yyhl2598 { + if yyj2598 >= l { break } } else { @@ -33381,32 +33918,32 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2549Slc = r.DecodeBytes(yys2549Slc, true, true) - yys2549 := string(yys2549Slc) + yys2598Slc = r.DecodeBytes(yys2598Slc, true, true) + yys2598 := string(yys2598Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2549 { + switch yys2598 { case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2550 := &x.Ports - yym2551 := z.DecBinary() - _ = yym2551 + yyv2599 := &x.Ports + yym2600 := z.DecBinary() + _ = yym2600 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2550), d) + h.decSliceServicePort((*[]ServicePort)(yyv2599), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2552 := &x.Selector - yym2553 := z.DecBinary() - _ = yym2553 + yyv2601 := &x.Selector + yym2602 := z.DecBinary() + _ = yym2602 if false { } else { - z.F.DecMapStringStringX(yyv2552, false, d) + z.F.DecMapStringStringX(yyv2601, false, d) } } case "clusterIP": @@ -33425,24 +33962,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2556 := &x.ExternalIPs - yym2557 := z.DecBinary() - _ = yym2557 + yyv2605 := &x.ExternalIPs + yym2606 := z.DecBinary() + _ = yym2606 if false { } else { - z.F.DecSliceStringX(yyv2556, false, d) + z.F.DecSliceStringX(yyv2605, false, d) } } case "deprecatedPublicIPs": if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2558 := &x.DeprecatedPublicIPs - yym2559 := z.DecBinary() - _ = yym2559 + yyv2607 := &x.DeprecatedPublicIPs + yym2608 := z.DecBinary() + _ = yym2608 if false { } else { - z.F.DecSliceStringX(yyv2558, false, d) + z.F.DecSliceStringX(yyv2607, false, d) } } case "sessionAffinity": @@ -33461,12 +33998,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2562 := &x.LoadBalancerSourceRanges - yym2563 := z.DecBinary() - _ = yym2563 + yyv2611 := &x.LoadBalancerSourceRanges + yym2612 := z.DecBinary() + _ = yym2612 if false { } else { - z.F.DecSliceStringX(yyv2562, false, d) + z.F.DecSliceStringX(yyv2611, false, d) } } case "externalName": @@ -33476,9 +34013,9 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ExternalName = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2549) - } // end switch yys2549 - } // end for yyj2549 + z.DecStructFieldNotFound(-1, yys2598) + } // end switch yys2598 + } // end for yyj2598 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33486,16 +34023,16 @@ func (x *ServiceSpec) 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 yyj2614 int + var yyb2614 bool + var yyhl2614 bool = l >= 0 + yyj2614++ + if yyhl2614 { + yyb2614 = yyj2614 > l } else { - yyb2565 = r.CheckBreak() + yyb2614 = r.CheckBreak() } - if yyb2565 { + if yyb2614 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33503,21 +34040,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2566 := &x.Ports - yym2567 := z.DecBinary() - _ = yym2567 + yyv2615 := &x.Ports + yym2616 := z.DecBinary() + _ = yym2616 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2566), d) + h.decSliceServicePort((*[]ServicePort)(yyv2615), d) } } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2614++ + if yyhl2614 { + yyb2614 = yyj2614 > l } else { - yyb2565 = r.CheckBreak() + yyb2614 = r.CheckBreak() } - if yyb2565 { + if yyb2614 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33525,21 +34062,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2568 := &x.Selector - yym2569 := z.DecBinary() - _ = yym2569 + yyv2617 := &x.Selector + yym2618 := z.DecBinary() + _ = yym2618 if false { } else { - z.F.DecMapStringStringX(yyv2568, false, d) + z.F.DecMapStringStringX(yyv2617, false, d) } } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2614++ + if yyhl2614 { + yyb2614 = yyj2614 > l } else { - yyb2565 = r.CheckBreak() + yyb2614 = r.CheckBreak() } - if yyb2565 { + if yyb2614 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33549,13 +34086,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2614++ + if yyhl2614 { + yyb2614 = yyj2614 > l } else { - yyb2565 = r.CheckBreak() + yyb2614 = r.CheckBreak() } - if yyb2565 { + if yyb2614 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33565,13 +34102,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2614++ + if yyhl2614 { + yyb2614 = yyj2614 > l } else { - yyb2565 = r.CheckBreak() + yyb2614 = r.CheckBreak() } - if yyb2565 { + if yyb2614 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33579,21 +34116,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2572 := &x.ExternalIPs - yym2573 := z.DecBinary() - _ = yym2573 + yyv2621 := &x.ExternalIPs + yym2622 := z.DecBinary() + _ = yym2622 if false { } else { - z.F.DecSliceStringX(yyv2572, false, d) + z.F.DecSliceStringX(yyv2621, false, d) } } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2614++ + if yyhl2614 { + yyb2614 = yyj2614 > l } else { - yyb2565 = r.CheckBreak() + yyb2614 = r.CheckBreak() } - if yyb2565 { + if yyb2614 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33601,21 +34138,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2574 := &x.DeprecatedPublicIPs - yym2575 := z.DecBinary() - _ = yym2575 + yyv2623 := &x.DeprecatedPublicIPs + yym2624 := z.DecBinary() + _ = yym2624 if false { } else { - z.F.DecSliceStringX(yyv2574, false, d) + z.F.DecSliceStringX(yyv2623, false, d) } } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2614++ + if yyhl2614 { + yyb2614 = yyj2614 > l } else { - yyb2565 = r.CheckBreak() + yyb2614 = r.CheckBreak() } - if yyb2565 { + if yyb2614 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33625,13 +34162,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2614++ + if yyhl2614 { + yyb2614 = yyj2614 > l } else { - yyb2565 = r.CheckBreak() + yyb2614 = r.CheckBreak() } - if yyb2565 { + if yyb2614 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33641,13 +34178,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2614++ + if yyhl2614 { + yyb2614 = yyj2614 > l } else { - yyb2565 = r.CheckBreak() + yyb2614 = r.CheckBreak() } - if yyb2565 { + if yyb2614 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33655,21 +34192,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2578 := &x.LoadBalancerSourceRanges - yym2579 := z.DecBinary() - _ = yym2579 + yyv2627 := &x.LoadBalancerSourceRanges + yym2628 := z.DecBinary() + _ = yym2628 if false { } else { - z.F.DecSliceStringX(yyv2578, false, d) + z.F.DecSliceStringX(yyv2627, false, d) } } - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2614++ + if yyhl2614 { + yyb2614 = yyj2614 > l } else { - yyb2565 = r.CheckBreak() + yyb2614 = r.CheckBreak() } - if yyb2565 { + if yyb2614 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33680,17 +34217,17 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ExternalName = string(r.DecodeString()) } for { - yyj2565++ - if yyhl2565 { - yyb2565 = yyj2565 > l + yyj2614++ + if yyhl2614 { + yyb2614 = yyj2614 > l } else { - yyb2565 = r.CheckBreak() + yyb2614 = r.CheckBreak() } - if yyb2565 { + if yyb2614 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2565-1, "") + z.DecStructFieldNotFound(yyj2614-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33702,38 +34239,38 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2581 := z.EncBinary() - _ = yym2581 + yym2630 := z.EncBinary() + _ = yym2630 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2582 := !z.EncBinary() - yy2arr2582 := z.EncBasicHandle().StructToArray - var yyq2582 [5]bool - _, _, _ = yysep2582, yyq2582, yy2arr2582 - const yyr2582 bool = false - yyq2582[0] = x.Name != "" - yyq2582[1] = x.Protocol != "" - yyq2582[3] = true - yyq2582[4] = x.NodePort != 0 - var yynn2582 int - if yyr2582 || yy2arr2582 { + yysep2631 := !z.EncBinary() + yy2arr2631 := z.EncBasicHandle().StructToArray + var yyq2631 [5]bool + _, _, _ = yysep2631, yyq2631, yy2arr2631 + const yyr2631 bool = false + yyq2631[0] = x.Name != "" + yyq2631[1] = x.Protocol != "" + yyq2631[3] = true + yyq2631[4] = x.NodePort != 0 + var yynn2631 int + if yyr2631 || yy2arr2631 { r.EncodeArrayStart(5) } else { - yynn2582 = 1 - for _, b := range yyq2582 { + yynn2631 = 1 + for _, b := range yyq2631 { if b { - yynn2582++ + yynn2631++ } } - r.EncodeMapStart(yynn2582) - yynn2582 = 0 + r.EncodeMapStart(yynn2631) + yynn2631 = 0 } - if yyr2582 || yy2arr2582 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2582[0] { - yym2584 := z.EncBinary() - _ = yym2584 + if yyq2631[0] { + yym2633 := z.EncBinary() + _ = yym2633 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -33742,37 +34279,37 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2582[0] { + if yyq2631[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2585 := z.EncBinary() - _ = yym2585 + yym2634 := z.EncBinary() + _ = yym2634 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2582 || yy2arr2582 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2582[1] { + if yyq2631[1] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2582[1] { + if yyq2631[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2582 || yy2arr2582 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2588 := z.EncBinary() - _ = yym2588 + yym2637 := z.EncBinary() + _ = yym2637 if false { } else { r.EncodeInt(int64(x.Port)) @@ -33781,51 +34318,51 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2589 := z.EncBinary() - _ = yym2589 + yym2638 := z.EncBinary() + _ = yym2638 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2582 || yy2arr2582 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2582[3] { - yy2591 := &x.TargetPort - yym2592 := z.EncBinary() - _ = yym2592 + if yyq2631[3] { + yy2640 := &x.TargetPort + yym2641 := z.EncBinary() + _ = yym2641 if false { - } else if z.HasExtensions() && z.EncExt(yy2591) { - } else if !yym2592 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2591) + } else if z.HasExtensions() && z.EncExt(yy2640) { + } else if !yym2641 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2640) } else { - z.EncFallback(yy2591) + z.EncFallback(yy2640) } } else { r.EncodeNil() } } else { - if yyq2582[3] { + if yyq2631[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2593 := &x.TargetPort - yym2594 := z.EncBinary() - _ = yym2594 + yy2642 := &x.TargetPort + yym2643 := z.EncBinary() + _ = yym2643 if false { - } else if z.HasExtensions() && z.EncExt(yy2593) { - } else if !yym2594 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2593) + } else if z.HasExtensions() && z.EncExt(yy2642) { + } else if !yym2643 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2642) } else { - z.EncFallback(yy2593) + z.EncFallback(yy2642) } } } - if yyr2582 || yy2arr2582 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2582[4] { - yym2596 := z.EncBinary() - _ = yym2596 + if yyq2631[4] { + yym2645 := z.EncBinary() + _ = yym2645 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -33834,19 +34371,19 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2582[4] { + if yyq2631[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2597 := z.EncBinary() - _ = yym2597 + yym2646 := z.EncBinary() + _ = yym2646 if false { } else { r.EncodeInt(int64(x.NodePort)) } } } - if yyr2582 || yy2arr2582 { + if yyr2631 || yy2arr2631 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33859,25 +34396,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2598 := z.DecBinary() - _ = yym2598 + yym2647 := z.DecBinary() + _ = yym2647 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2599 := r.ContainerType() - if yyct2599 == codecSelferValueTypeMap1234 { - yyl2599 := r.ReadMapStart() - if yyl2599 == 0 { + yyct2648 := r.ContainerType() + if yyct2648 == codecSelferValueTypeMap1234 { + yyl2648 := r.ReadMapStart() + if yyl2648 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2599, d) + x.codecDecodeSelfFromMap(yyl2648, d) } - } else if yyct2599 == codecSelferValueTypeArray1234 { - yyl2599 := r.ReadArrayStart() - if yyl2599 == 0 { + } else if yyct2648 == codecSelferValueTypeArray1234 { + yyl2648 := r.ReadArrayStart() + if yyl2648 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2599, d) + x.codecDecodeSelfFromArray(yyl2648, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33889,12 +34426,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2600Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2600Slc - var yyhl2600 bool = l >= 0 - for yyj2600 := 0; ; yyj2600++ { - if yyhl2600 { - if yyj2600 >= l { + var yys2649Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2649Slc + var yyhl2649 bool = l >= 0 + for yyj2649 := 0; ; yyj2649++ { + if yyhl2649 { + if yyj2649 >= l { break } } else { @@ -33903,10 +34440,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2600Slc = r.DecodeBytes(yys2600Slc, true, true) - yys2600 := string(yys2600Slc) + yys2649Slc = r.DecodeBytes(yys2649Slc, true, true) + yys2649 := string(yys2649Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2600 { + switch yys2649 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -33929,15 +34466,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2604 := &x.TargetPort - yym2605 := z.DecBinary() - _ = yym2605 + yyv2653 := &x.TargetPort + yym2654 := z.DecBinary() + _ = yym2654 if false { - } else if z.HasExtensions() && z.DecExt(yyv2604) { - } else if !yym2605 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2604) + } else if z.HasExtensions() && z.DecExt(yyv2653) { + } else if !yym2654 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2653) } else { - z.DecFallback(yyv2604, false) + z.DecFallback(yyv2653, false) } } case "nodePort": @@ -33947,9 +34484,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2600) - } // end switch yys2600 - } // end for yyj2600 + z.DecStructFieldNotFound(-1, yys2649) + } // end switch yys2649 + } // end for yyj2649 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33957,16 +34494,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2607 int - var yyb2607 bool - var yyhl2607 bool = l >= 0 - yyj2607++ - if yyhl2607 { - yyb2607 = yyj2607 > l + var yyj2656 int + var yyb2656 bool + var yyhl2656 bool = l >= 0 + yyj2656++ + if yyhl2656 { + yyb2656 = yyj2656 > l } else { - yyb2607 = r.CheckBreak() + yyb2656 = r.CheckBreak() } - if yyb2607 { + if yyb2656 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33976,13 +34513,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2607++ - if yyhl2607 { - yyb2607 = yyj2607 > l + yyj2656++ + if yyhl2656 { + yyb2656 = yyj2656 > l } else { - yyb2607 = r.CheckBreak() + yyb2656 = r.CheckBreak() } - if yyb2607 { + if yyb2656 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33992,13 +34529,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2607++ - if yyhl2607 { - yyb2607 = yyj2607 > l + yyj2656++ + if yyhl2656 { + yyb2656 = yyj2656 > l } else { - yyb2607 = r.CheckBreak() + yyb2656 = r.CheckBreak() } - if yyb2607 { + if yyb2656 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34008,13 +34545,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2607++ - if yyhl2607 { - yyb2607 = yyj2607 > l + yyj2656++ + if yyhl2656 { + yyb2656 = yyj2656 > l } else { - yyb2607 = r.CheckBreak() + yyb2656 = r.CheckBreak() } - if yyb2607 { + if yyb2656 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34022,24 +34559,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2611 := &x.TargetPort - yym2612 := z.DecBinary() - _ = yym2612 + yyv2660 := &x.TargetPort + yym2661 := z.DecBinary() + _ = yym2661 if false { - } else if z.HasExtensions() && z.DecExt(yyv2611) { - } else if !yym2612 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2611) + } else if z.HasExtensions() && z.DecExt(yyv2660) { + } else if !yym2661 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2660) } else { - z.DecFallback(yyv2611, false) + z.DecFallback(yyv2660, false) } } - yyj2607++ - if yyhl2607 { - yyb2607 = yyj2607 > l + yyj2656++ + if yyhl2656 { + yyb2656 = yyj2656 > l } else { - yyb2607 = r.CheckBreak() + yyb2656 = r.CheckBreak() } - if yyb2607 { + if yyb2656 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34050,17 +34587,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj2607++ - if yyhl2607 { - yyb2607 = yyj2607 > l + yyj2656++ + if yyhl2656 { + yyb2656 = yyj2656 > l } else { - yyb2607 = r.CheckBreak() + yyb2656 = r.CheckBreak() } - if yyb2607 { + if yyb2656 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2607-1, "") + z.DecStructFieldNotFound(yyj2656-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34072,39 +34609,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2614 := z.EncBinary() - _ = yym2614 + yym2663 := z.EncBinary() + _ = yym2663 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2615 := !z.EncBinary() - yy2arr2615 := z.EncBasicHandle().StructToArray - var yyq2615 [5]bool - _, _, _ = yysep2615, yyq2615, yy2arr2615 - const yyr2615 bool = false - yyq2615[0] = x.Kind != "" - yyq2615[1] = x.APIVersion != "" - yyq2615[2] = true - yyq2615[3] = true - yyq2615[4] = true - var yynn2615 int - if yyr2615 || yy2arr2615 { + yysep2664 := !z.EncBinary() + yy2arr2664 := z.EncBasicHandle().StructToArray + var yyq2664 [5]bool + _, _, _ = yysep2664, yyq2664, yy2arr2664 + const yyr2664 bool = false + yyq2664[0] = x.Kind != "" + yyq2664[1] = x.APIVersion != "" + yyq2664[2] = true + yyq2664[3] = true + yyq2664[4] = true + var yynn2664 int + if yyr2664 || yy2arr2664 { r.EncodeArrayStart(5) } else { - yynn2615 = 0 - for _, b := range yyq2615 { + yynn2664 = 0 + for _, b := range yyq2664 { if b { - yynn2615++ + yynn2664++ } } - r.EncodeMapStart(yynn2615) - yynn2615 = 0 + r.EncodeMapStart(yynn2664) + yynn2664 = 0 } - if yyr2615 || yy2arr2615 { + if yyr2664 || yy2arr2664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2615[0] { - yym2617 := z.EncBinary() - _ = yym2617 + if yyq2664[0] { + yym2666 := z.EncBinary() + _ = yym2666 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34113,23 +34650,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2615[0] { + if yyq2664[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2618 := z.EncBinary() - _ = yym2618 + yym2667 := z.EncBinary() + _ = yym2667 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2615 || yy2arr2615 { + if yyr2664 || yy2arr2664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2615[1] { - yym2620 := z.EncBinary() - _ = yym2620 + if yyq2664[1] { + yym2669 := z.EncBinary() + _ = yym2669 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34138,70 +34675,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2615[1] { + if yyq2664[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2621 := z.EncBinary() - _ = yym2621 + yym2670 := z.EncBinary() + _ = yym2670 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2615 || yy2arr2615 { + if yyr2664 || yy2arr2664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2615[2] { - yy2623 := &x.ObjectMeta - yy2623.CodecEncodeSelf(e) + if yyq2664[2] { + yy2672 := &x.ObjectMeta + yy2672.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2615[2] { + if yyq2664[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2624 := &x.ObjectMeta - yy2624.CodecEncodeSelf(e) + yy2673 := &x.ObjectMeta + yy2673.CodecEncodeSelf(e) } } - if yyr2615 || yy2arr2615 { + if yyr2664 || yy2arr2664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2615[3] { - yy2626 := &x.Spec - yy2626.CodecEncodeSelf(e) + if yyq2664[3] { + yy2675 := &x.Spec + yy2675.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2615[3] { + if yyq2664[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2627 := &x.Spec - yy2627.CodecEncodeSelf(e) + yy2676 := &x.Spec + yy2676.CodecEncodeSelf(e) } } - if yyr2615 || yy2arr2615 { + if yyr2664 || yy2arr2664 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2615[4] { - yy2629 := &x.Status - yy2629.CodecEncodeSelf(e) + if yyq2664[4] { + yy2678 := &x.Status + yy2678.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2615[4] { + if yyq2664[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2630 := &x.Status - yy2630.CodecEncodeSelf(e) + yy2679 := &x.Status + yy2679.CodecEncodeSelf(e) } } - if yyr2615 || yy2arr2615 { + if yyr2664 || yy2arr2664 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34214,25 +34751,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2631 := z.DecBinary() - _ = yym2631 + yym2680 := z.DecBinary() + _ = yym2680 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2632 := r.ContainerType() - if yyct2632 == codecSelferValueTypeMap1234 { - yyl2632 := r.ReadMapStart() - if yyl2632 == 0 { + yyct2681 := r.ContainerType() + if yyct2681 == codecSelferValueTypeMap1234 { + yyl2681 := r.ReadMapStart() + if yyl2681 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2632, d) + x.codecDecodeSelfFromMap(yyl2681, d) } - } else if yyct2632 == codecSelferValueTypeArray1234 { - yyl2632 := r.ReadArrayStart() - if yyl2632 == 0 { + } else if yyct2681 == codecSelferValueTypeArray1234 { + yyl2681 := r.ReadArrayStart() + if yyl2681 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2632, d) + x.codecDecodeSelfFromArray(yyl2681, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34244,12 +34781,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2633Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2633Slc - var yyhl2633 bool = l >= 0 - for yyj2633 := 0; ; yyj2633++ { - if yyhl2633 { - if yyj2633 >= l { + var yys2682Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2682Slc + var yyhl2682 bool = l >= 0 + for yyj2682 := 0; ; yyj2682++ { + if yyhl2682 { + if yyj2682 >= l { break } } else { @@ -34258,10 +34795,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2633Slc = r.DecodeBytes(yys2633Slc, true, true) - yys2633 := string(yys2633Slc) + yys2682Slc = r.DecodeBytes(yys2682Slc, true, true) + yys2682 := string(yys2682Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2633 { + switch yys2682 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34278,27 +34815,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2636 := &x.ObjectMeta - yyv2636.CodecDecodeSelf(d) + yyv2685 := &x.ObjectMeta + yyv2685.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2637 := &x.Spec - yyv2637.CodecDecodeSelf(d) + yyv2686 := &x.Spec + yyv2686.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2638 := &x.Status - yyv2638.CodecDecodeSelf(d) + yyv2687 := &x.Status + yyv2687.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2633) - } // end switch yys2633 - } // end for yyj2633 + z.DecStructFieldNotFound(-1, yys2682) + } // end switch yys2682 + } // end for yyj2682 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34306,16 +34843,16 @@ func (x *Service) 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 yyj2688 int + var yyb2688 bool + var yyhl2688 bool = l >= 0 + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2639 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2639 { + if yyb2688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34325,13 +34862,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2639++ - if yyhl2639 { - yyb2639 = yyj2639 > l + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2639 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2639 { + if yyb2688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34341,13 +34878,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2639++ - if yyhl2639 { - yyb2639 = yyj2639 > l + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2639 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2639 { + if yyb2688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34355,16 +34892,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2642 := &x.ObjectMeta - yyv2642.CodecDecodeSelf(d) + yyv2691 := &x.ObjectMeta + yyv2691.CodecDecodeSelf(d) } - yyj2639++ - if yyhl2639 { - yyb2639 = yyj2639 > l + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2639 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2639 { + if yyb2688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34372,16 +34909,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2643 := &x.Spec - yyv2643.CodecDecodeSelf(d) + yyv2692 := &x.Spec + yyv2692.CodecDecodeSelf(d) } - yyj2639++ - if yyhl2639 { - yyb2639 = yyj2639 > l + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2639 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2639 { + if yyb2688 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34389,21 +34926,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2644 := &x.Status - yyv2644.CodecDecodeSelf(d) + yyv2693 := &x.Status + yyv2693.CodecDecodeSelf(d) } for { - yyj2639++ - if yyhl2639 { - yyb2639 = yyj2639 > l + yyj2688++ + if yyhl2688 { + yyb2688 = yyj2688 > l } else { - yyb2639 = r.CheckBreak() + yyb2688 = r.CheckBreak() } - if yyb2639 { + if yyb2688 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2639-1, "") + z.DecStructFieldNotFound(yyj2688-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34415,37 +34952,37 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2645 := z.EncBinary() - _ = yym2645 + yym2694 := z.EncBinary() + _ = yym2694 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2646 := !z.EncBinary() - yy2arr2646 := z.EncBasicHandle().StructToArray - var yyq2646 [4]bool - _, _, _ = yysep2646, yyq2646, yy2arr2646 - const yyr2646 bool = false - yyq2646[0] = x.Kind != "" - yyq2646[1] = x.APIVersion != "" - yyq2646[2] = true - var yynn2646 int - if yyr2646 || yy2arr2646 { + yysep2695 := !z.EncBinary() + yy2arr2695 := z.EncBasicHandle().StructToArray + var yyq2695 [4]bool + _, _, _ = yysep2695, yyq2695, yy2arr2695 + const yyr2695 bool = false + yyq2695[0] = x.Kind != "" + yyq2695[1] = x.APIVersion != "" + yyq2695[2] = true + var yynn2695 int + if yyr2695 || yy2arr2695 { r.EncodeArrayStart(4) } else { - yynn2646 = 1 - for _, b := range yyq2646 { + yynn2695 = 1 + for _, b := range yyq2695 { if b { - yynn2646++ + yynn2695++ } } - r.EncodeMapStart(yynn2646) - yynn2646 = 0 + r.EncodeMapStart(yynn2695) + yynn2695 = 0 } - if yyr2646 || yy2arr2646 { + if yyr2695 || yy2arr2695 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2646[0] { - yym2648 := z.EncBinary() - _ = yym2648 + if yyq2695[0] { + yym2697 := z.EncBinary() + _ = yym2697 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34454,23 +34991,23 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2646[0] { + if yyq2695[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2649 := z.EncBinary() - _ = yym2649 + yym2698 := z.EncBinary() + _ = yym2698 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2646 || yy2arr2646 { + if yyr2695 || yy2arr2695 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2646[1] { - yym2651 := z.EncBinary() - _ = yym2651 + if yyq2695[1] { + yym2700 := z.EncBinary() + _ = yym2700 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34479,54 +35016,54 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2646[1] { + if yyq2695[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2652 := z.EncBinary() - _ = yym2652 + yym2701 := z.EncBinary() + _ = yym2701 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2646 || yy2arr2646 { + if yyr2695 || yy2arr2695 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2646[2] { - yy2654 := &x.ListMeta - yym2655 := z.EncBinary() - _ = yym2655 + if yyq2695[2] { + yy2703 := &x.ListMeta + yym2704 := z.EncBinary() + _ = yym2704 if false { - } else if z.HasExtensions() && z.EncExt(yy2654) { + } else if z.HasExtensions() && z.EncExt(yy2703) { } else { - z.EncFallback(yy2654) + z.EncFallback(yy2703) } } else { r.EncodeNil() } } else { - if yyq2646[2] { + if yyq2695[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2656 := &x.ListMeta - yym2657 := z.EncBinary() - _ = yym2657 + yy2705 := &x.ListMeta + yym2706 := z.EncBinary() + _ = yym2706 if false { - } else if z.HasExtensions() && z.EncExt(yy2656) { + } else if z.HasExtensions() && z.EncExt(yy2705) { } else { - z.EncFallback(yy2656) + z.EncFallback(yy2705) } } } - if yyr2646 || yy2arr2646 { + if yyr2695 || yy2arr2695 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2659 := z.EncBinary() - _ = yym2659 + yym2708 := z.EncBinary() + _ = yym2708 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -34539,15 +35076,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2660 := z.EncBinary() - _ = yym2660 + yym2709 := z.EncBinary() + _ = yym2709 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr2646 || yy2arr2646 { + if yyr2695 || yy2arr2695 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34560,25 +35097,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2661 := z.DecBinary() - _ = yym2661 + yym2710 := z.DecBinary() + _ = yym2710 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2662 := r.ContainerType() - if yyct2662 == codecSelferValueTypeMap1234 { - yyl2662 := r.ReadMapStart() - if yyl2662 == 0 { + yyct2711 := r.ContainerType() + if yyct2711 == codecSelferValueTypeMap1234 { + yyl2711 := r.ReadMapStart() + if yyl2711 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2662, d) + x.codecDecodeSelfFromMap(yyl2711, d) } - } else if yyct2662 == codecSelferValueTypeArray1234 { - yyl2662 := r.ReadArrayStart() - if yyl2662 == 0 { + } else if yyct2711 == codecSelferValueTypeArray1234 { + yyl2711 := r.ReadArrayStart() + if yyl2711 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2662, d) + x.codecDecodeSelfFromArray(yyl2711, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34590,12 +35127,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2663Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2663Slc - var yyhl2663 bool = l >= 0 - for yyj2663 := 0; ; yyj2663++ { - if yyhl2663 { - if yyj2663 >= l { + var yys2712Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2712Slc + var yyhl2712 bool = l >= 0 + for yyj2712 := 0; ; yyj2712++ { + if yyhl2712 { + if yyj2712 >= l { break } } else { @@ -34604,10 +35141,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2663Slc = r.DecodeBytes(yys2663Slc, true, true) - yys2663 := string(yys2663Slc) + yys2712Slc = r.DecodeBytes(yys2712Slc, true, true) + yys2712 := string(yys2712Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2663 { + switch yys2712 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34624,31 +35161,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2666 := &x.ListMeta - yym2667 := z.DecBinary() - _ = yym2667 + yyv2715 := &x.ListMeta + yym2716 := z.DecBinary() + _ = yym2716 if false { - } else if z.HasExtensions() && z.DecExt(yyv2666) { + } else if z.HasExtensions() && z.DecExt(yyv2715) { } else { - z.DecFallback(yyv2666, false) + z.DecFallback(yyv2715, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2668 := &x.Items - yym2669 := z.DecBinary() - _ = yym2669 + yyv2717 := &x.Items + yym2718 := z.DecBinary() + _ = yym2718 if false { } else { - h.decSliceService((*[]Service)(yyv2668), d) + h.decSliceService((*[]Service)(yyv2717), d) } } default: - z.DecStructFieldNotFound(-1, yys2663) - } // end switch yys2663 - } // end for yyj2663 + z.DecStructFieldNotFound(-1, yys2712) + } // end switch yys2712 + } // end for yyj2712 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34656,16 +35193,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2670 int - var yyb2670 bool - var yyhl2670 bool = l >= 0 - yyj2670++ - if yyhl2670 { - yyb2670 = yyj2670 > l + var yyj2719 int + var yyb2719 bool + var yyhl2719 bool = l >= 0 + yyj2719++ + if yyhl2719 { + yyb2719 = yyj2719 > l } else { - yyb2670 = r.CheckBreak() + yyb2719 = r.CheckBreak() } - if yyb2670 { + if yyb2719 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34675,13 +35212,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2670++ - if yyhl2670 { - yyb2670 = yyj2670 > l + yyj2719++ + if yyhl2719 { + yyb2719 = yyj2719 > l } else { - yyb2670 = r.CheckBreak() + yyb2719 = r.CheckBreak() } - if yyb2670 { + if yyb2719 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34691,13 +35228,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2670++ - if yyhl2670 { - yyb2670 = yyj2670 > l + yyj2719++ + if yyhl2719 { + yyb2719 = yyj2719 > l } else { - yyb2670 = r.CheckBreak() + yyb2719 = r.CheckBreak() } - if yyb2670 { + if yyb2719 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34705,22 +35242,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2673 := &x.ListMeta - yym2674 := z.DecBinary() - _ = yym2674 + yyv2722 := &x.ListMeta + yym2723 := z.DecBinary() + _ = yym2723 if false { - } else if z.HasExtensions() && z.DecExt(yyv2673) { + } else if z.HasExtensions() && z.DecExt(yyv2722) { } else { - z.DecFallback(yyv2673, false) + z.DecFallback(yyv2722, false) } } - yyj2670++ - if yyhl2670 { - yyb2670 = yyj2670 > l + yyj2719++ + if yyhl2719 { + yyb2719 = yyj2719 > l } else { - yyb2670 = r.CheckBreak() + yyb2719 = r.CheckBreak() } - if yyb2670 { + if yyb2719 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34728,26 +35265,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2675 := &x.Items - yym2676 := z.DecBinary() - _ = yym2676 + yyv2724 := &x.Items + yym2725 := z.DecBinary() + _ = yym2725 if false { } else { - h.decSliceService((*[]Service)(yyv2675), d) + h.decSliceService((*[]Service)(yyv2724), d) } } for { - yyj2670++ - if yyhl2670 { - yyb2670 = yyj2670 > l + yyj2719++ + if yyhl2719 { + yyb2719 = yyj2719 > l } else { - yyb2670 = r.CheckBreak() + yyb2719 = r.CheckBreak() } - if yyb2670 { + if yyb2719 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2670-1, "") + z.DecStructFieldNotFound(yyj2719-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34759,39 +35296,39 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2677 := z.EncBinary() - _ = yym2677 + yym2726 := z.EncBinary() + _ = yym2726 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2678 := !z.EncBinary() - yy2arr2678 := z.EncBasicHandle().StructToArray - var yyq2678 [5]bool - _, _, _ = yysep2678, yyq2678, yy2arr2678 - const yyr2678 bool = false - yyq2678[0] = x.Kind != "" - yyq2678[1] = x.APIVersion != "" - yyq2678[2] = true - yyq2678[3] = len(x.Secrets) != 0 - yyq2678[4] = len(x.ImagePullSecrets) != 0 - var yynn2678 int - if yyr2678 || yy2arr2678 { + yysep2727 := !z.EncBinary() + yy2arr2727 := z.EncBasicHandle().StructToArray + var yyq2727 [5]bool + _, _, _ = yysep2727, yyq2727, yy2arr2727 + const yyr2727 bool = false + yyq2727[0] = x.Kind != "" + yyq2727[1] = x.APIVersion != "" + yyq2727[2] = true + yyq2727[3] = len(x.Secrets) != 0 + yyq2727[4] = len(x.ImagePullSecrets) != 0 + var yynn2727 int + if yyr2727 || yy2arr2727 { r.EncodeArrayStart(5) } else { - yynn2678 = 0 - for _, b := range yyq2678 { + yynn2727 = 0 + for _, b := range yyq2727 { if b { - yynn2678++ + yynn2727++ } } - r.EncodeMapStart(yynn2678) - yynn2678 = 0 + r.EncodeMapStart(yynn2727) + yynn2727 = 0 } - if yyr2678 || yy2arr2678 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2678[0] { - yym2680 := z.EncBinary() - _ = yym2680 + if yyq2727[0] { + yym2729 := z.EncBinary() + _ = yym2729 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34800,23 +35337,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2678[0] { + if yyq2727[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2681 := z.EncBinary() - _ = yym2681 + yym2730 := z.EncBinary() + _ = yym2730 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2678 || yy2arr2678 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2678[1] { - yym2683 := z.EncBinary() - _ = yym2683 + if yyq2727[1] { + yym2732 := z.EncBinary() + _ = yym2732 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34825,43 +35362,43 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2678[1] { + if yyq2727[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2684 := z.EncBinary() - _ = yym2684 + yym2733 := z.EncBinary() + _ = yym2733 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2678 || yy2arr2678 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2678[2] { - yy2686 := &x.ObjectMeta - yy2686.CodecEncodeSelf(e) + if yyq2727[2] { + yy2735 := &x.ObjectMeta + yy2735.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2678[2] { + if yyq2727[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2687 := &x.ObjectMeta - yy2687.CodecEncodeSelf(e) + yy2736 := &x.ObjectMeta + yy2736.CodecEncodeSelf(e) } } - if yyr2678 || yy2arr2678 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2678[3] { + if yyq2727[3] { if x.Secrets == nil { r.EncodeNil() } else { - yym2689 := z.EncBinary() - _ = yym2689 + yym2738 := z.EncBinary() + _ = yym2738 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -34871,15 +35408,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2678[3] { + if yyq2727[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2690 := z.EncBinary() - _ = yym2690 + yym2739 := z.EncBinary() + _ = yym2739 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -34887,14 +35424,14 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2678 || yy2arr2678 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2678[4] { + if yyq2727[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2692 := z.EncBinary() - _ = yym2692 + yym2741 := z.EncBinary() + _ = yym2741 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -34904,15 +35441,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2678[4] { + if yyq2727[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2693 := z.EncBinary() - _ = yym2693 + yym2742 := z.EncBinary() + _ = yym2742 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -34920,7 +35457,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2678 || yy2arr2678 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34933,25 +35470,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2694 := z.DecBinary() - _ = yym2694 + yym2743 := z.DecBinary() + _ = yym2743 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2695 := r.ContainerType() - if yyct2695 == codecSelferValueTypeMap1234 { - yyl2695 := r.ReadMapStart() - if yyl2695 == 0 { + yyct2744 := r.ContainerType() + if yyct2744 == codecSelferValueTypeMap1234 { + yyl2744 := r.ReadMapStart() + if yyl2744 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2695, d) + x.codecDecodeSelfFromMap(yyl2744, d) } - } else if yyct2695 == codecSelferValueTypeArray1234 { - yyl2695 := r.ReadArrayStart() - if yyl2695 == 0 { + } else if yyct2744 == codecSelferValueTypeArray1234 { + yyl2744 := r.ReadArrayStart() + if yyl2744 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2695, d) + x.codecDecodeSelfFromArray(yyl2744, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34963,12 +35500,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2696Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2696Slc - var yyhl2696 bool = l >= 0 - for yyj2696 := 0; ; yyj2696++ { - if yyhl2696 { - if yyj2696 >= l { + var yys2745Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2745Slc + var yyhl2745 bool = l >= 0 + for yyj2745 := 0; ; yyj2745++ { + if yyhl2745 { + if yyj2745 >= l { break } } else { @@ -34977,10 +35514,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2696Slc = r.DecodeBytes(yys2696Slc, true, true) - yys2696 := string(yys2696Slc) + yys2745Slc = r.DecodeBytes(yys2745Slc, true, true) + yys2745 := string(yys2745Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2696 { + switch yys2745 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34997,37 +35534,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2699 := &x.ObjectMeta - yyv2699.CodecDecodeSelf(d) + yyv2748 := &x.ObjectMeta + yyv2748.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2700 := &x.Secrets - yym2701 := z.DecBinary() - _ = yym2701 + yyv2749 := &x.Secrets + yym2750 := z.DecBinary() + _ = yym2750 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2700), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2749), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2702 := &x.ImagePullSecrets - yym2703 := z.DecBinary() - _ = yym2703 + yyv2751 := &x.ImagePullSecrets + yym2752 := z.DecBinary() + _ = yym2752 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2702), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2751), d) } } default: - z.DecStructFieldNotFound(-1, yys2696) - } // end switch yys2696 - } // end for yyj2696 + z.DecStructFieldNotFound(-1, yys2745) + } // end switch yys2745 + } // end for yyj2745 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35035,16 +35572,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2704 int - var yyb2704 bool - var yyhl2704 bool = l >= 0 - yyj2704++ - if yyhl2704 { - yyb2704 = yyj2704 > l + var yyj2753 int + var yyb2753 bool + var yyhl2753 bool = l >= 0 + yyj2753++ + if yyhl2753 { + yyb2753 = yyj2753 > l } else { - yyb2704 = r.CheckBreak() + yyb2753 = r.CheckBreak() } - if yyb2704 { + if yyb2753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35054,13 +35591,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2704++ - if yyhl2704 { - yyb2704 = yyj2704 > l + yyj2753++ + if yyhl2753 { + yyb2753 = yyj2753 > l } else { - yyb2704 = r.CheckBreak() + yyb2753 = r.CheckBreak() } - if yyb2704 { + if yyb2753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35070,13 +35607,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2704++ - if yyhl2704 { - yyb2704 = yyj2704 > l + yyj2753++ + if yyhl2753 { + yyb2753 = yyj2753 > l } else { - yyb2704 = r.CheckBreak() + yyb2753 = r.CheckBreak() } - if yyb2704 { + if yyb2753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35084,16 +35621,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2707 := &x.ObjectMeta - yyv2707.CodecDecodeSelf(d) + yyv2756 := &x.ObjectMeta + yyv2756.CodecDecodeSelf(d) } - yyj2704++ - if yyhl2704 { - yyb2704 = yyj2704 > l + yyj2753++ + if yyhl2753 { + yyb2753 = yyj2753 > l } else { - yyb2704 = r.CheckBreak() + yyb2753 = r.CheckBreak() } - if yyb2704 { + if yyb2753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35101,21 +35638,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2708 := &x.Secrets - yym2709 := z.DecBinary() - _ = yym2709 + yyv2757 := &x.Secrets + yym2758 := z.DecBinary() + _ = yym2758 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2708), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2757), d) } } - yyj2704++ - if yyhl2704 { - yyb2704 = yyj2704 > l + yyj2753++ + if yyhl2753 { + yyb2753 = yyj2753 > l } else { - yyb2704 = r.CheckBreak() + yyb2753 = r.CheckBreak() } - if yyb2704 { + if yyb2753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35123,26 +35660,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2710 := &x.ImagePullSecrets - yym2711 := z.DecBinary() - _ = yym2711 + yyv2759 := &x.ImagePullSecrets + yym2760 := z.DecBinary() + _ = yym2760 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2710), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2759), d) } } for { - yyj2704++ - if yyhl2704 { - yyb2704 = yyj2704 > l + yyj2753++ + if yyhl2753 { + yyb2753 = yyj2753 > l } else { - yyb2704 = r.CheckBreak() + yyb2753 = r.CheckBreak() } - if yyb2704 { + if yyb2753 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2704-1, "") + z.DecStructFieldNotFound(yyj2753-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35154,37 +35691,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2712 := z.EncBinary() - _ = yym2712 + yym2761 := z.EncBinary() + _ = yym2761 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2713 := !z.EncBinary() - yy2arr2713 := z.EncBasicHandle().StructToArray - var yyq2713 [4]bool - _, _, _ = yysep2713, yyq2713, yy2arr2713 - const yyr2713 bool = false - yyq2713[0] = x.Kind != "" - yyq2713[1] = x.APIVersion != "" - yyq2713[2] = true - var yynn2713 int - if yyr2713 || yy2arr2713 { + yysep2762 := !z.EncBinary() + yy2arr2762 := z.EncBasicHandle().StructToArray + var yyq2762 [4]bool + _, _, _ = yysep2762, yyq2762, yy2arr2762 + const yyr2762 bool = false + yyq2762[0] = x.Kind != "" + yyq2762[1] = x.APIVersion != "" + yyq2762[2] = true + var yynn2762 int + if yyr2762 || yy2arr2762 { r.EncodeArrayStart(4) } else { - yynn2713 = 1 - for _, b := range yyq2713 { + yynn2762 = 1 + for _, b := range yyq2762 { if b { - yynn2713++ + yynn2762++ } } - r.EncodeMapStart(yynn2713) - yynn2713 = 0 + r.EncodeMapStart(yynn2762) + yynn2762 = 0 } - if yyr2713 || yy2arr2713 { + if yyr2762 || yy2arr2762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2713[0] { - yym2715 := z.EncBinary() - _ = yym2715 + if yyq2762[0] { + yym2764 := z.EncBinary() + _ = yym2764 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35193,23 +35730,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2713[0] { + if yyq2762[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2716 := z.EncBinary() - _ = yym2716 + yym2765 := z.EncBinary() + _ = yym2765 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2713 || yy2arr2713 { + if yyr2762 || yy2arr2762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2713[1] { - yym2718 := z.EncBinary() - _ = yym2718 + if yyq2762[1] { + yym2767 := z.EncBinary() + _ = yym2767 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35218,54 +35755,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2713[1] { + if yyq2762[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2719 := z.EncBinary() - _ = yym2719 + yym2768 := z.EncBinary() + _ = yym2768 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2713 || yy2arr2713 { + if yyr2762 || yy2arr2762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2713[2] { - yy2721 := &x.ListMeta - yym2722 := z.EncBinary() - _ = yym2722 + if yyq2762[2] { + yy2770 := &x.ListMeta + yym2771 := z.EncBinary() + _ = yym2771 if false { - } else if z.HasExtensions() && z.EncExt(yy2721) { + } else if z.HasExtensions() && z.EncExt(yy2770) { } else { - z.EncFallback(yy2721) + z.EncFallback(yy2770) } } else { r.EncodeNil() } } else { - if yyq2713[2] { + if yyq2762[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2723 := &x.ListMeta - yym2724 := z.EncBinary() - _ = yym2724 + yy2772 := &x.ListMeta + yym2773 := z.EncBinary() + _ = yym2773 if false { - } else if z.HasExtensions() && z.EncExt(yy2723) { + } else if z.HasExtensions() && z.EncExt(yy2772) { } else { - z.EncFallback(yy2723) + z.EncFallback(yy2772) } } } - if yyr2713 || yy2arr2713 { + if yyr2762 || yy2arr2762 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2726 := z.EncBinary() - _ = yym2726 + yym2775 := z.EncBinary() + _ = yym2775 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -35278,15 +35815,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2727 := z.EncBinary() - _ = yym2727 + yym2776 := z.EncBinary() + _ = yym2776 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2713 || yy2arr2713 { + if yyr2762 || yy2arr2762 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35299,25 +35836,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2728 := z.DecBinary() - _ = yym2728 + yym2777 := z.DecBinary() + _ = yym2777 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2729 := r.ContainerType() - if yyct2729 == codecSelferValueTypeMap1234 { - yyl2729 := r.ReadMapStart() - if yyl2729 == 0 { + yyct2778 := r.ContainerType() + if yyct2778 == codecSelferValueTypeMap1234 { + yyl2778 := r.ReadMapStart() + if yyl2778 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2729, d) + x.codecDecodeSelfFromMap(yyl2778, d) } - } else if yyct2729 == codecSelferValueTypeArray1234 { - yyl2729 := r.ReadArrayStart() - if yyl2729 == 0 { + } else if yyct2778 == codecSelferValueTypeArray1234 { + yyl2778 := r.ReadArrayStart() + if yyl2778 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2729, d) + x.codecDecodeSelfFromArray(yyl2778, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35329,12 +35866,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2730Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2730Slc - var yyhl2730 bool = l >= 0 - for yyj2730 := 0; ; yyj2730++ { - if yyhl2730 { - if yyj2730 >= 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 { @@ -35343,10 +35880,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2730Slc = r.DecodeBytes(yys2730Slc, true, true) - yys2730 := string(yys2730Slc) + yys2779Slc = r.DecodeBytes(yys2779Slc, true, true) + yys2779 := string(yys2779Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2730 { + switch yys2779 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35363,31 +35900,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2733 := &x.ListMeta - yym2734 := z.DecBinary() - _ = yym2734 + yyv2782 := &x.ListMeta + yym2783 := z.DecBinary() + _ = yym2783 if false { - } else if z.HasExtensions() && z.DecExt(yyv2733) { + } else if z.HasExtensions() && z.DecExt(yyv2782) { } else { - z.DecFallback(yyv2733, false) + z.DecFallback(yyv2782, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2735 := &x.Items - yym2736 := z.DecBinary() - _ = yym2736 + yyv2784 := &x.Items + yym2785 := z.DecBinary() + _ = yym2785 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2735), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2784), d) } } default: - z.DecStructFieldNotFound(-1, yys2730) - } // end switch yys2730 - } // end for yyj2730 + z.DecStructFieldNotFound(-1, yys2779) + } // end switch yys2779 + } // end for yyj2779 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35395,16 +35932,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode 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 yyj2786 int + var yyb2786 bool + var yyhl2786 bool = l >= 0 + yyj2786++ + if yyhl2786 { + yyb2786 = yyj2786 > l } else { - yyb2737 = r.CheckBreak() + yyb2786 = r.CheckBreak() } - if yyb2737 { + if yyb2786 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35414,13 +35951,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2737++ - if yyhl2737 { - yyb2737 = yyj2737 > l + yyj2786++ + if yyhl2786 { + yyb2786 = yyj2786 > l } else { - yyb2737 = r.CheckBreak() + yyb2786 = r.CheckBreak() } - if yyb2737 { + if yyb2786 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35430,13 +35967,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2737++ - if yyhl2737 { - yyb2737 = yyj2737 > l + yyj2786++ + if yyhl2786 { + yyb2786 = yyj2786 > l } else { - yyb2737 = r.CheckBreak() + yyb2786 = r.CheckBreak() } - if yyb2737 { + if yyb2786 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35444,22 +35981,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2740 := &x.ListMeta - yym2741 := z.DecBinary() - _ = yym2741 + yyv2789 := &x.ListMeta + yym2790 := z.DecBinary() + _ = yym2790 if false { - } else if z.HasExtensions() && z.DecExt(yyv2740) { + } else if z.HasExtensions() && z.DecExt(yyv2789) { } else { - z.DecFallback(yyv2740, false) + z.DecFallback(yyv2789, false) } } - yyj2737++ - if yyhl2737 { - yyb2737 = yyj2737 > l + yyj2786++ + if yyhl2786 { + yyb2786 = yyj2786 > l } else { - yyb2737 = r.CheckBreak() + yyb2786 = r.CheckBreak() } - if yyb2737 { + if yyb2786 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35467,26 +36004,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2742 := &x.Items - yym2743 := z.DecBinary() - _ = yym2743 + yyv2791 := &x.Items + yym2792 := z.DecBinary() + _ = yym2792 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2742), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2791), d) } } for { - yyj2737++ - if yyhl2737 { - yyb2737 = yyj2737 > l + yyj2786++ + if yyhl2786 { + yyb2786 = yyj2786 > l } else { - yyb2737 = r.CheckBreak() + yyb2786 = r.CheckBreak() } - if yyb2737 { + if yyb2786 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2737-1, "") + z.DecStructFieldNotFound(yyj2786-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35498,37 +36035,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2744 := z.EncBinary() - _ = yym2744 + yym2793 := z.EncBinary() + _ = yym2793 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2745 := !z.EncBinary() - yy2arr2745 := z.EncBasicHandle().StructToArray - var yyq2745 [4]bool - _, _, _ = yysep2745, yyq2745, yy2arr2745 - const yyr2745 bool = false - yyq2745[0] = x.Kind != "" - yyq2745[1] = x.APIVersion != "" - yyq2745[2] = true - var yynn2745 int - if yyr2745 || yy2arr2745 { + yysep2794 := !z.EncBinary() + yy2arr2794 := z.EncBasicHandle().StructToArray + var yyq2794 [4]bool + _, _, _ = yysep2794, yyq2794, yy2arr2794 + const yyr2794 bool = false + yyq2794[0] = x.Kind != "" + yyq2794[1] = x.APIVersion != "" + yyq2794[2] = true + var yynn2794 int + if yyr2794 || yy2arr2794 { r.EncodeArrayStart(4) } else { - yynn2745 = 1 - for _, b := range yyq2745 { + yynn2794 = 1 + for _, b := range yyq2794 { if b { - yynn2745++ + yynn2794++ } } - r.EncodeMapStart(yynn2745) - yynn2745 = 0 + r.EncodeMapStart(yynn2794) + yynn2794 = 0 } - if yyr2745 || yy2arr2745 { + if yyr2794 || yy2arr2794 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2745[0] { - yym2747 := z.EncBinary() - _ = yym2747 + if yyq2794[0] { + yym2796 := z.EncBinary() + _ = yym2796 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35537,23 +36074,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2745[0] { + if yyq2794[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2748 := z.EncBinary() - _ = yym2748 + yym2797 := z.EncBinary() + _ = yym2797 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2745 || yy2arr2745 { + if yyr2794 || yy2arr2794 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2745[1] { - yym2750 := z.EncBinary() - _ = yym2750 + if yyq2794[1] { + yym2799 := z.EncBinary() + _ = yym2799 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35562,42 +36099,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2745[1] { + if yyq2794[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2751 := z.EncBinary() - _ = yym2751 + yym2800 := z.EncBinary() + _ = yym2800 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2745 || yy2arr2745 { + if yyr2794 || yy2arr2794 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2745[2] { - yy2753 := &x.ObjectMeta - yy2753.CodecEncodeSelf(e) + if yyq2794[2] { + yy2802 := &x.ObjectMeta + yy2802.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2745[2] { + if yyq2794[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2754 := &x.ObjectMeta - yy2754.CodecEncodeSelf(e) + yy2803 := &x.ObjectMeta + yy2803.CodecEncodeSelf(e) } } - if yyr2745 || yy2arr2745 { + if yyr2794 || yy2arr2794 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2756 := z.EncBinary() - _ = yym2756 + yym2805 := z.EncBinary() + _ = yym2805 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -35610,15 +36147,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2757 := z.EncBinary() - _ = yym2757 + yym2806 := z.EncBinary() + _ = yym2806 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2745 || yy2arr2745 { + if yyr2794 || yy2arr2794 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35631,25 +36168,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2758 := z.DecBinary() - _ = yym2758 + yym2807 := z.DecBinary() + _ = yym2807 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2759 := r.ContainerType() - if yyct2759 == codecSelferValueTypeMap1234 { - yyl2759 := r.ReadMapStart() - if yyl2759 == 0 { + yyct2808 := r.ContainerType() + if yyct2808 == codecSelferValueTypeMap1234 { + yyl2808 := r.ReadMapStart() + if yyl2808 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2759, d) + x.codecDecodeSelfFromMap(yyl2808, d) } - } else if yyct2759 == codecSelferValueTypeArray1234 { - yyl2759 := r.ReadArrayStart() - if yyl2759 == 0 { + } else if yyct2808 == codecSelferValueTypeArray1234 { + yyl2808 := r.ReadArrayStart() + if yyl2808 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2759, d) + x.codecDecodeSelfFromArray(yyl2808, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35661,12 +36198,12 @@ func (x *Endpoints) 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 yys2809Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2809Slc + var yyhl2809 bool = l >= 0 + for yyj2809 := 0; ; yyj2809++ { + if yyhl2809 { + if yyj2809 >= l { break } } else { @@ -35675,10 +36212,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2760Slc = r.DecodeBytes(yys2760Slc, true, true) - yys2760 := string(yys2760Slc) + yys2809Slc = r.DecodeBytes(yys2809Slc, true, true) + yys2809 := string(yys2809Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2760 { + switch yys2809 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35695,25 +36232,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2763 := &x.ObjectMeta - yyv2763.CodecDecodeSelf(d) + yyv2812 := &x.ObjectMeta + yyv2812.CodecDecodeSelf(d) } case "subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2764 := &x.Subsets - yym2765 := z.DecBinary() - _ = yym2765 + yyv2813 := &x.Subsets + yym2814 := z.DecBinary() + _ = yym2814 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2764), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2813), d) } } default: - z.DecStructFieldNotFound(-1, yys2760) - } // end switch yys2760 - } // end for yyj2760 + z.DecStructFieldNotFound(-1, yys2809) + } // end switch yys2809 + } // end for yyj2809 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35721,16 +36258,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2766 int - var yyb2766 bool - var yyhl2766 bool = l >= 0 - yyj2766++ - if yyhl2766 { - yyb2766 = yyj2766 > l + var yyj2815 int + var yyb2815 bool + var yyhl2815 bool = l >= 0 + yyj2815++ + if yyhl2815 { + yyb2815 = yyj2815 > l } else { - yyb2766 = r.CheckBreak() + yyb2815 = r.CheckBreak() } - if yyb2766 { + if yyb2815 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35740,13 +36277,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2766++ - if yyhl2766 { - yyb2766 = yyj2766 > l + yyj2815++ + if yyhl2815 { + yyb2815 = yyj2815 > l } else { - yyb2766 = r.CheckBreak() + yyb2815 = r.CheckBreak() } - if yyb2766 { + if yyb2815 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35756,13 +36293,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2766++ - if yyhl2766 { - yyb2766 = yyj2766 > l + yyj2815++ + if yyhl2815 { + yyb2815 = yyj2815 > l } else { - yyb2766 = r.CheckBreak() + yyb2815 = r.CheckBreak() } - if yyb2766 { + if yyb2815 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35770,16 +36307,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2769 := &x.ObjectMeta - yyv2769.CodecDecodeSelf(d) + yyv2818 := &x.ObjectMeta + yyv2818.CodecDecodeSelf(d) } - yyj2766++ - if yyhl2766 { - yyb2766 = yyj2766 > l + yyj2815++ + if yyhl2815 { + yyb2815 = yyj2815 > l } else { - yyb2766 = r.CheckBreak() + yyb2815 = r.CheckBreak() } - if yyb2766 { + if yyb2815 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35787,26 +36324,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2770 := &x.Subsets - yym2771 := z.DecBinary() - _ = yym2771 + yyv2819 := &x.Subsets + yym2820 := z.DecBinary() + _ = yym2820 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2770), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2819), d) } } for { - yyj2766++ - if yyhl2766 { - yyb2766 = yyj2766 > l + yyj2815++ + if yyhl2815 { + yyb2815 = yyj2815 > l } else { - yyb2766 = r.CheckBreak() + yyb2815 = r.CheckBreak() } - if yyb2766 { + if yyb2815 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2766-1, "") + z.DecStructFieldNotFound(yyj2815-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35818,40 +36355,40 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2772 := z.EncBinary() - _ = yym2772 + yym2821 := z.EncBinary() + _ = yym2821 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2773 := !z.EncBinary() - yy2arr2773 := z.EncBasicHandle().StructToArray - var yyq2773 [3]bool - _, _, _ = yysep2773, yyq2773, yy2arr2773 - const yyr2773 bool = false - yyq2773[0] = len(x.Addresses) != 0 - yyq2773[1] = len(x.NotReadyAddresses) != 0 - yyq2773[2] = len(x.Ports) != 0 - var yynn2773 int - if yyr2773 || yy2arr2773 { + yysep2822 := !z.EncBinary() + yy2arr2822 := z.EncBasicHandle().StructToArray + var yyq2822 [3]bool + _, _, _ = yysep2822, yyq2822, yy2arr2822 + const yyr2822 bool = false + yyq2822[0] = len(x.Addresses) != 0 + yyq2822[1] = len(x.NotReadyAddresses) != 0 + yyq2822[2] = len(x.Ports) != 0 + var yynn2822 int + if yyr2822 || yy2arr2822 { r.EncodeArrayStart(3) } else { - yynn2773 = 0 - for _, b := range yyq2773 { + yynn2822 = 0 + for _, b := range yyq2822 { if b { - yynn2773++ + yynn2822++ } } - r.EncodeMapStart(yynn2773) - yynn2773 = 0 + r.EncodeMapStart(yynn2822) + yynn2822 = 0 } - if yyr2773 || yy2arr2773 { + if yyr2822 || yy2arr2822 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2773[0] { + if yyq2822[0] { if x.Addresses == nil { r.EncodeNil() } else { - yym2775 := z.EncBinary() - _ = yym2775 + yym2824 := z.EncBinary() + _ = yym2824 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -35861,15 +36398,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2773[0] { + if yyq2822[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2776 := z.EncBinary() - _ = yym2776 + yym2825 := z.EncBinary() + _ = yym2825 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -35877,14 +36414,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2773 || yy2arr2773 { + if yyr2822 || yy2arr2822 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2773[1] { + if yyq2822[1] { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2778 := z.EncBinary() - _ = yym2778 + yym2827 := z.EncBinary() + _ = yym2827 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -35894,15 +36431,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2773[1] { + if yyq2822[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("notReadyAddresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2779 := z.EncBinary() - _ = yym2779 + yym2828 := z.EncBinary() + _ = yym2828 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -35910,14 +36447,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2773 || yy2arr2773 { + if yyr2822 || yy2arr2822 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2773[2] { + if yyq2822[2] { if x.Ports == nil { r.EncodeNil() } else { - yym2781 := z.EncBinary() - _ = yym2781 + yym2830 := z.EncBinary() + _ = yym2830 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -35927,15 +36464,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2773[2] { + if yyq2822[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym2782 := z.EncBinary() - _ = yym2782 + yym2831 := z.EncBinary() + _ = yym2831 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -35943,7 +36480,7 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2773 || yy2arr2773 { + if yyr2822 || yy2arr2822 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35956,25 +36493,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2783 := z.DecBinary() - _ = yym2783 + yym2832 := z.DecBinary() + _ = yym2832 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2784 := r.ContainerType() - if yyct2784 == codecSelferValueTypeMap1234 { - yyl2784 := r.ReadMapStart() - if yyl2784 == 0 { + yyct2833 := r.ContainerType() + if yyct2833 == codecSelferValueTypeMap1234 { + yyl2833 := r.ReadMapStart() + if yyl2833 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2784, d) + x.codecDecodeSelfFromMap(yyl2833, d) } - } else if yyct2784 == codecSelferValueTypeArray1234 { - yyl2784 := r.ReadArrayStart() - if yyl2784 == 0 { + } else if yyct2833 == codecSelferValueTypeArray1234 { + yyl2833 := r.ReadArrayStart() + if yyl2833 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2784, d) + x.codecDecodeSelfFromArray(yyl2833, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35986,12 +36523,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2785Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2785Slc - var yyhl2785 bool = l >= 0 - for yyj2785 := 0; ; yyj2785++ { - if yyhl2785 { - if yyj2785 >= l { + var yys2834Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2834Slc + var yyhl2834 bool = l >= 0 + for yyj2834 := 0; ; yyj2834++ { + if yyhl2834 { + if yyj2834 >= l { break } } else { @@ -36000,50 +36537,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2785Slc = r.DecodeBytes(yys2785Slc, true, true) - yys2785 := string(yys2785Slc) + yys2834Slc = r.DecodeBytes(yys2834Slc, true, true) + yys2834 := string(yys2834Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2785 { + switch yys2834 { case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2786 := &x.Addresses - yym2787 := z.DecBinary() - _ = yym2787 + yyv2835 := &x.Addresses + yym2836 := z.DecBinary() + _ = yym2836 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2786), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2835), d) } } case "notReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2788 := &x.NotReadyAddresses - yym2789 := z.DecBinary() - _ = yym2789 + yyv2837 := &x.NotReadyAddresses + yym2838 := z.DecBinary() + _ = yym2838 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2788), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2837), d) } } case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2790 := &x.Ports - yym2791 := z.DecBinary() - _ = yym2791 + yyv2839 := &x.Ports + yym2840 := z.DecBinary() + _ = yym2840 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2790), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2839), d) } } default: - z.DecStructFieldNotFound(-1, yys2785) - } // end switch yys2785 - } // end for yyj2785 + z.DecStructFieldNotFound(-1, yys2834) + } // end switch yys2834 + } // end for yyj2834 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36051,16 +36588,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2792 int - var yyb2792 bool - var yyhl2792 bool = l >= 0 - yyj2792++ - if yyhl2792 { - yyb2792 = yyj2792 > l + var yyj2841 int + var yyb2841 bool + var yyhl2841 bool = l >= 0 + yyj2841++ + if yyhl2841 { + yyb2841 = yyj2841 > l } else { - yyb2792 = r.CheckBreak() + yyb2841 = r.CheckBreak() } - if yyb2792 { + if yyb2841 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36068,21 +36605,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2793 := &x.Addresses - yym2794 := z.DecBinary() - _ = yym2794 + yyv2842 := &x.Addresses + yym2843 := z.DecBinary() + _ = yym2843 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2793), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2842), d) } } - yyj2792++ - if yyhl2792 { - yyb2792 = yyj2792 > l + yyj2841++ + if yyhl2841 { + yyb2841 = yyj2841 > l } else { - yyb2792 = r.CheckBreak() + yyb2841 = r.CheckBreak() } - if yyb2792 { + if yyb2841 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36090,21 +36627,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2795 := &x.NotReadyAddresses - yym2796 := z.DecBinary() - _ = yym2796 + yyv2844 := &x.NotReadyAddresses + yym2845 := z.DecBinary() + _ = yym2845 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2795), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2844), d) } } - yyj2792++ - if yyhl2792 { - yyb2792 = yyj2792 > l + yyj2841++ + if yyhl2841 { + yyb2841 = yyj2841 > l } else { - yyb2792 = r.CheckBreak() + yyb2841 = r.CheckBreak() } - if yyb2792 { + if yyb2841 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36112,26 +36649,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2797 := &x.Ports - yym2798 := z.DecBinary() - _ = yym2798 + yyv2846 := &x.Ports + yym2847 := z.DecBinary() + _ = yym2847 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2797), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2846), d) } } for { - yyj2792++ - if yyhl2792 { - yyb2792 = yyj2792 > l + yyj2841++ + if yyhl2841 { + yyb2841 = yyj2841 > l } else { - yyb2792 = r.CheckBreak() + yyb2841 = r.CheckBreak() } - if yyb2792 { + if yyb2841 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2792-1, "") + z.DecStructFieldNotFound(yyj2841-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36143,36 +36680,36 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2799 := z.EncBinary() - _ = yym2799 + yym2848 := z.EncBinary() + _ = yym2848 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2800 := !z.EncBinary() - yy2arr2800 := z.EncBasicHandle().StructToArray - var yyq2800 [4]bool - _, _, _ = yysep2800, yyq2800, yy2arr2800 - const yyr2800 bool = false - yyq2800[1] = x.Hostname != "" - yyq2800[2] = x.NodeName != nil - yyq2800[3] = x.TargetRef != nil - var yynn2800 int - if yyr2800 || yy2arr2800 { + yysep2849 := !z.EncBinary() + yy2arr2849 := z.EncBasicHandle().StructToArray + var yyq2849 [4]bool + _, _, _ = yysep2849, yyq2849, yy2arr2849 + const yyr2849 bool = false + yyq2849[1] = x.Hostname != "" + yyq2849[2] = x.NodeName != nil + yyq2849[3] = x.TargetRef != nil + var yynn2849 int + if yyr2849 || yy2arr2849 { r.EncodeArrayStart(4) } else { - yynn2800 = 1 - for _, b := range yyq2800 { + yynn2849 = 1 + for _, b := range yyq2849 { if b { - yynn2800++ + yynn2849++ } } - r.EncodeMapStart(yynn2800) - yynn2800 = 0 + r.EncodeMapStart(yynn2849) + yynn2849 = 0 } - if yyr2800 || yy2arr2800 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2802 := z.EncBinary() - _ = yym2802 + yym2851 := z.EncBinary() + _ = yym2851 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -36181,18 +36718,18 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2803 := z.EncBinary() - _ = yym2803 + yym2852 := z.EncBinary() + _ = yym2852 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2800 || yy2arr2800 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2800[1] { - yym2805 := z.EncBinary() - _ = yym2805 + if yyq2849[1] { + yym2854 := z.EncBinary() + _ = yym2854 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -36201,56 +36738,56 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2800[1] { + if yyq2849[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2806 := z.EncBinary() - _ = yym2806 + yym2855 := z.EncBinary() + _ = yym2855 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2800 || yy2arr2800 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2800[2] { + if yyq2849[2] { if x.NodeName == nil { r.EncodeNil() } else { - yy2808 := *x.NodeName - yym2809 := z.EncBinary() - _ = yym2809 + yy2857 := *x.NodeName + yym2858 := z.EncBinary() + _ = yym2858 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2808)) + r.EncodeString(codecSelferC_UTF81234, string(yy2857)) } } } else { r.EncodeNil() } } else { - if yyq2800[2] { + if yyq2849[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeName == nil { r.EncodeNil() } else { - yy2810 := *x.NodeName - yym2811 := z.EncBinary() - _ = yym2811 + yy2859 := *x.NodeName + yym2860 := z.EncBinary() + _ = yym2860 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2810)) + r.EncodeString(codecSelferC_UTF81234, string(yy2859)) } } } } - if yyr2800 || yy2arr2800 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2800[3] { + if yyq2849[3] { if x.TargetRef == nil { r.EncodeNil() } else { @@ -36260,7 +36797,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2800[3] { + if yyq2849[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -36271,7 +36808,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2800 || yy2arr2800 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36284,25 +36821,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2813 := z.DecBinary() - _ = yym2813 + yym2862 := z.DecBinary() + _ = yym2862 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2814 := r.ContainerType() - if yyct2814 == codecSelferValueTypeMap1234 { - yyl2814 := r.ReadMapStart() - if yyl2814 == 0 { + yyct2863 := r.ContainerType() + if yyct2863 == codecSelferValueTypeMap1234 { + yyl2863 := r.ReadMapStart() + if yyl2863 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2814, d) + x.codecDecodeSelfFromMap(yyl2863, d) } - } else if yyct2814 == codecSelferValueTypeArray1234 { - yyl2814 := r.ReadArrayStart() - if yyl2814 == 0 { + } else if yyct2863 == codecSelferValueTypeArray1234 { + yyl2863 := r.ReadArrayStart() + if yyl2863 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2814, d) + x.codecDecodeSelfFromArray(yyl2863, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36314,12 +36851,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2815Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2815Slc - var yyhl2815 bool = l >= 0 - for yyj2815 := 0; ; yyj2815++ { - if yyhl2815 { - if yyj2815 >= l { + var yys2864Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2864Slc + var yyhl2864 bool = l >= 0 + for yyj2864 := 0; ; yyj2864++ { + if yyhl2864 { + if yyj2864 >= l { break } } else { @@ -36328,10 +36865,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2815Slc = r.DecodeBytes(yys2815Slc, true, true) - yys2815 := string(yys2815Slc) + yys2864Slc = r.DecodeBytes(yys2864Slc, true, true) + yys2864 := string(yys2864Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2815 { + switch yys2864 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -36353,8 +36890,8 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.NodeName == nil { x.NodeName = new(string) } - yym2819 := z.DecBinary() - _ = yym2819 + yym2868 := z.DecBinary() + _ = yym2868 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() @@ -36372,9 +36909,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2815) - } // end switch yys2815 - } // end for yyj2815 + z.DecStructFieldNotFound(-1, yys2864) + } // end switch yys2864 + } // end for yyj2864 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36382,16 +36919,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2821 int - var yyb2821 bool - var yyhl2821 bool = l >= 0 - yyj2821++ - if yyhl2821 { - yyb2821 = yyj2821 > l + var yyj2870 int + var yyb2870 bool + var yyhl2870 bool = l >= 0 + yyj2870++ + if yyhl2870 { + yyb2870 = yyj2870 > l } else { - yyb2821 = r.CheckBreak() + yyb2870 = r.CheckBreak() } - if yyb2821 { + if yyb2870 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36401,13 +36938,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2821++ - if yyhl2821 { - yyb2821 = yyj2821 > l + yyj2870++ + if yyhl2870 { + yyb2870 = yyj2870 > l } else { - yyb2821 = r.CheckBreak() + yyb2870 = r.CheckBreak() } - if yyb2821 { + if yyb2870 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36417,13 +36954,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Hostname = string(r.DecodeString()) } - yyj2821++ - if yyhl2821 { - yyb2821 = yyj2821 > l + yyj2870++ + if yyhl2870 { + yyb2870 = yyj2870 > l } else { - yyb2821 = r.CheckBreak() + yyb2870 = r.CheckBreak() } - if yyb2821 { + if yyb2870 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36436,20 +36973,20 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.NodeName == nil { x.NodeName = new(string) } - yym2825 := z.DecBinary() - _ = yym2825 + yym2874 := z.DecBinary() + _ = yym2874 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() } } - yyj2821++ - if yyhl2821 { - yyb2821 = yyj2821 > l + yyj2870++ + if yyhl2870 { + yyb2870 = yyj2870 > l } else { - yyb2821 = r.CheckBreak() + yyb2870 = r.CheckBreak() } - if yyb2821 { + if yyb2870 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36465,17 +37002,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2821++ - if yyhl2821 { - yyb2821 = yyj2821 > l + yyj2870++ + if yyhl2870 { + yyb2870 = yyj2870 > l } else { - yyb2821 = r.CheckBreak() + yyb2870 = r.CheckBreak() } - if yyb2821 { + if yyb2870 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2821-1, "") + z.DecStructFieldNotFound(yyj2870-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36487,36 +37024,36 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2827 := z.EncBinary() - _ = yym2827 + yym2876 := z.EncBinary() + _ = yym2876 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2828 := !z.EncBinary() - yy2arr2828 := z.EncBasicHandle().StructToArray - var yyq2828 [3]bool - _, _, _ = yysep2828, yyq2828, yy2arr2828 - const yyr2828 bool = false - yyq2828[0] = x.Name != "" - yyq2828[2] = x.Protocol != "" - var yynn2828 int - if yyr2828 || yy2arr2828 { + yysep2877 := !z.EncBinary() + yy2arr2877 := z.EncBasicHandle().StructToArray + var yyq2877 [3]bool + _, _, _ = yysep2877, yyq2877, yy2arr2877 + const yyr2877 bool = false + yyq2877[0] = x.Name != "" + yyq2877[2] = x.Protocol != "" + var yynn2877 int + if yyr2877 || yy2arr2877 { r.EncodeArrayStart(3) } else { - yynn2828 = 1 - for _, b := range yyq2828 { + yynn2877 = 1 + for _, b := range yyq2877 { if b { - yynn2828++ + yynn2877++ } } - r.EncodeMapStart(yynn2828) - yynn2828 = 0 + r.EncodeMapStart(yynn2877) + yynn2877 = 0 } - if yyr2828 || yy2arr2828 { + if yyr2877 || yy2arr2877 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2828[0] { - yym2830 := z.EncBinary() - _ = yym2830 + if yyq2877[0] { + yym2879 := z.EncBinary() + _ = yym2879 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -36525,22 +37062,22 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2828[0] { + if yyq2877[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2831 := z.EncBinary() - _ = yym2831 + yym2880 := z.EncBinary() + _ = yym2880 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2828 || yy2arr2828 { + if yyr2877 || yy2arr2877 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2833 := z.EncBinary() - _ = yym2833 + yym2882 := z.EncBinary() + _ = yym2882 if false { } else { r.EncodeInt(int64(x.Port)) @@ -36549,29 +37086,29 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2834 := z.EncBinary() - _ = yym2834 + yym2883 := z.EncBinary() + _ = yym2883 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2828 || yy2arr2828 { + if yyr2877 || yy2arr2877 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2828[2] { + if yyq2877[2] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2828[2] { + if yyq2877[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2828 || yy2arr2828 { + if yyr2877 || yy2arr2877 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36584,25 +37121,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2836 := z.DecBinary() - _ = yym2836 + yym2885 := z.DecBinary() + _ = yym2885 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2837 := r.ContainerType() - if yyct2837 == codecSelferValueTypeMap1234 { - yyl2837 := r.ReadMapStart() - if yyl2837 == 0 { + yyct2886 := r.ContainerType() + if yyct2886 == codecSelferValueTypeMap1234 { + yyl2886 := r.ReadMapStart() + if yyl2886 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2837, d) + x.codecDecodeSelfFromMap(yyl2886, d) } - } else if yyct2837 == codecSelferValueTypeArray1234 { - yyl2837 := r.ReadArrayStart() - if yyl2837 == 0 { + } else if yyct2886 == codecSelferValueTypeArray1234 { + yyl2886 := r.ReadArrayStart() + if yyl2886 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2837, d) + x.codecDecodeSelfFromArray(yyl2886, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36614,12 +37151,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2838Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2838Slc - var yyhl2838 bool = l >= 0 - for yyj2838 := 0; ; yyj2838++ { - if yyhl2838 { - if yyj2838 >= l { + var yys2887Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2887Slc + var yyhl2887 bool = l >= 0 + for yyj2887 := 0; ; yyj2887++ { + if yyhl2887 { + if yyj2887 >= l { break } } else { @@ -36628,10 +37165,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2838Slc = r.DecodeBytes(yys2838Slc, true, true) - yys2838 := string(yys2838Slc) + yys2887Slc = r.DecodeBytes(yys2887Slc, true, true) + yys2887 := string(yys2887Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2838 { + switch yys2887 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -36651,9 +37188,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2838) - } // end switch yys2838 - } // end for yyj2838 + z.DecStructFieldNotFound(-1, yys2887) + } // end switch yys2887 + } // end for yyj2887 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36661,16 +37198,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2842 int - var yyb2842 bool - var yyhl2842 bool = l >= 0 - yyj2842++ - if yyhl2842 { - yyb2842 = yyj2842 > l + var yyj2891 int + var yyb2891 bool + var yyhl2891 bool = l >= 0 + yyj2891++ + if yyhl2891 { + yyb2891 = yyj2891 > l } else { - yyb2842 = r.CheckBreak() + yyb2891 = r.CheckBreak() } - if yyb2842 { + if yyb2891 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36680,13 +37217,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2842++ - if yyhl2842 { - yyb2842 = yyj2842 > l + yyj2891++ + if yyhl2891 { + yyb2891 = yyj2891 > l } else { - yyb2842 = r.CheckBreak() + yyb2891 = r.CheckBreak() } - if yyb2842 { + if yyb2891 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36696,13 +37233,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2842++ - if yyhl2842 { - yyb2842 = yyj2842 > l + yyj2891++ + if yyhl2891 { + yyb2891 = yyj2891 > l } else { - yyb2842 = r.CheckBreak() + yyb2891 = r.CheckBreak() } - if yyb2842 { + if yyb2891 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36713,17 +37250,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2842++ - if yyhl2842 { - yyb2842 = yyj2842 > l + yyj2891++ + if yyhl2891 { + yyb2891 = yyj2891 > l } else { - yyb2842 = r.CheckBreak() + yyb2891 = r.CheckBreak() } - if yyb2842 { + if yyb2891 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2842-1, "") + z.DecStructFieldNotFound(yyj2891-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36735,37 +37272,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2846 := z.EncBinary() - _ = yym2846 + yym2895 := z.EncBinary() + _ = yym2895 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2847 := !z.EncBinary() - yy2arr2847 := z.EncBasicHandle().StructToArray - var yyq2847 [4]bool - _, _, _ = yysep2847, yyq2847, yy2arr2847 - const yyr2847 bool = false - yyq2847[0] = x.Kind != "" - yyq2847[1] = x.APIVersion != "" - yyq2847[2] = true - var yynn2847 int - if yyr2847 || yy2arr2847 { + yysep2896 := !z.EncBinary() + yy2arr2896 := z.EncBasicHandle().StructToArray + var yyq2896 [4]bool + _, _, _ = yysep2896, yyq2896, yy2arr2896 + const yyr2896 bool = false + yyq2896[0] = x.Kind != "" + yyq2896[1] = x.APIVersion != "" + yyq2896[2] = true + var yynn2896 int + if yyr2896 || yy2arr2896 { r.EncodeArrayStart(4) } else { - yynn2847 = 1 - for _, b := range yyq2847 { + yynn2896 = 1 + for _, b := range yyq2896 { if b { - yynn2847++ + yynn2896++ } } - r.EncodeMapStart(yynn2847) - yynn2847 = 0 + r.EncodeMapStart(yynn2896) + yynn2896 = 0 } - if yyr2847 || yy2arr2847 { + if yyr2896 || yy2arr2896 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2847[0] { - yym2849 := z.EncBinary() - _ = yym2849 + if yyq2896[0] { + yym2898 := z.EncBinary() + _ = yym2898 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -36774,23 +37311,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2847[0] { + if yyq2896[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2850 := z.EncBinary() - _ = yym2850 + yym2899 := z.EncBinary() + _ = yym2899 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2847 || yy2arr2847 { + if yyr2896 || yy2arr2896 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2847[1] { - yym2852 := z.EncBinary() - _ = yym2852 + if yyq2896[1] { + yym2901 := z.EncBinary() + _ = yym2901 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -36799,54 +37336,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2847[1] { + if yyq2896[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2853 := z.EncBinary() - _ = yym2853 + yym2902 := z.EncBinary() + _ = yym2902 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2847 || yy2arr2847 { + if yyr2896 || yy2arr2896 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2847[2] { - yy2855 := &x.ListMeta - yym2856 := z.EncBinary() - _ = yym2856 + if yyq2896[2] { + yy2904 := &x.ListMeta + yym2905 := z.EncBinary() + _ = yym2905 if false { - } else if z.HasExtensions() && z.EncExt(yy2855) { + } else if z.HasExtensions() && z.EncExt(yy2904) { } else { - z.EncFallback(yy2855) + z.EncFallback(yy2904) } } else { r.EncodeNil() } } else { - if yyq2847[2] { + if yyq2896[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2857 := &x.ListMeta - yym2858 := z.EncBinary() - _ = yym2858 + yy2906 := &x.ListMeta + yym2907 := z.EncBinary() + _ = yym2907 if false { - } else if z.HasExtensions() && z.EncExt(yy2857) { + } else if z.HasExtensions() && z.EncExt(yy2906) { } else { - z.EncFallback(yy2857) + z.EncFallback(yy2906) } } } - if yyr2847 || yy2arr2847 { + if yyr2896 || yy2arr2896 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2860 := z.EncBinary() - _ = yym2860 + yym2909 := z.EncBinary() + _ = yym2909 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -36859,15 +37396,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2861 := z.EncBinary() - _ = yym2861 + yym2910 := z.EncBinary() + _ = yym2910 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2847 || yy2arr2847 { + if yyr2896 || yy2arr2896 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36880,25 +37417,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2862 := z.DecBinary() - _ = yym2862 + yym2911 := z.DecBinary() + _ = yym2911 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2863 := r.ContainerType() - if yyct2863 == codecSelferValueTypeMap1234 { - yyl2863 := r.ReadMapStart() - if yyl2863 == 0 { + yyct2912 := r.ContainerType() + if yyct2912 == codecSelferValueTypeMap1234 { + yyl2912 := r.ReadMapStart() + if yyl2912 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2863, d) + x.codecDecodeSelfFromMap(yyl2912, d) } - } else if yyct2863 == codecSelferValueTypeArray1234 { - yyl2863 := r.ReadArrayStart() - if yyl2863 == 0 { + } else if yyct2912 == codecSelferValueTypeArray1234 { + yyl2912 := r.ReadArrayStart() + if yyl2912 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2863, d) + x.codecDecodeSelfFromArray(yyl2912, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36910,12 +37447,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2864Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2864Slc - var yyhl2864 bool = l >= 0 - for yyj2864 := 0; ; yyj2864++ { - if yyhl2864 { - if yyj2864 >= l { + var yys2913Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2913Slc + var yyhl2913 bool = l >= 0 + for yyj2913 := 0; ; yyj2913++ { + if yyhl2913 { + if yyj2913 >= l { break } } else { @@ -36924,10 +37461,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2864Slc = r.DecodeBytes(yys2864Slc, true, true) - yys2864 := string(yys2864Slc) + yys2913Slc = r.DecodeBytes(yys2913Slc, true, true) + yys2913 := string(yys2913Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2864 { + switch yys2913 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36944,31 +37481,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2867 := &x.ListMeta - yym2868 := z.DecBinary() - _ = yym2868 + yyv2916 := &x.ListMeta + yym2917 := z.DecBinary() + _ = yym2917 if false { - } else if z.HasExtensions() && z.DecExt(yyv2867) { + } else if z.HasExtensions() && z.DecExt(yyv2916) { } else { - z.DecFallback(yyv2867, false) + z.DecFallback(yyv2916, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2869 := &x.Items - yym2870 := z.DecBinary() - _ = yym2870 + yyv2918 := &x.Items + yym2919 := z.DecBinary() + _ = yym2919 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2869), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2918), d) } } default: - z.DecStructFieldNotFound(-1, yys2864) - } // end switch yys2864 - } // end for yyj2864 + z.DecStructFieldNotFound(-1, yys2913) + } // end switch yys2913 + } // end for yyj2913 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36976,16 +37513,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2871 int - var yyb2871 bool - var yyhl2871 bool = l >= 0 - yyj2871++ - if yyhl2871 { - yyb2871 = yyj2871 > l + var yyj2920 int + var yyb2920 bool + var yyhl2920 bool = l >= 0 + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2871 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2871 { + if yyb2920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36995,13 +37532,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2871++ - if yyhl2871 { - yyb2871 = yyj2871 > l + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2871 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2871 { + if yyb2920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37011,13 +37548,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2871++ - if yyhl2871 { - yyb2871 = yyj2871 > l + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2871 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2871 { + if yyb2920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37025,22 +37562,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2874 := &x.ListMeta - yym2875 := z.DecBinary() - _ = yym2875 + yyv2923 := &x.ListMeta + yym2924 := z.DecBinary() + _ = yym2924 if false { - } else if z.HasExtensions() && z.DecExt(yyv2874) { + } else if z.HasExtensions() && z.DecExt(yyv2923) { } else { - z.DecFallback(yyv2874, false) + z.DecFallback(yyv2923, false) } } - yyj2871++ - if yyhl2871 { - yyb2871 = yyj2871 > l + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2871 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2871 { + if yyb2920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37048,26 +37585,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2876 := &x.Items - yym2877 := z.DecBinary() - _ = yym2877 + yyv2925 := &x.Items + yym2926 := z.DecBinary() + _ = yym2926 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2876), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2925), d) } } for { - yyj2871++ - if yyhl2871 { - yyb2871 = yyj2871 > l + yyj2920++ + if yyhl2920 { + yyb2920 = yyj2920 > l } else { - yyb2871 = r.CheckBreak() + yyb2920 = r.CheckBreak() } - if yyb2871 { + if yyb2920 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2871-1, "") + z.DecStructFieldNotFound(yyj2920-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37079,38 +37616,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2878 := z.EncBinary() - _ = yym2878 + yym2927 := z.EncBinary() + _ = yym2927 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2879 := !z.EncBinary() - yy2arr2879 := z.EncBasicHandle().StructToArray - var yyq2879 [4]bool - _, _, _ = yysep2879, yyq2879, yy2arr2879 - const yyr2879 bool = false - yyq2879[0] = x.PodCIDR != "" - yyq2879[1] = x.ExternalID != "" - yyq2879[2] = x.ProviderID != "" - yyq2879[3] = x.Unschedulable != false - var yynn2879 int - if yyr2879 || yy2arr2879 { + yysep2928 := !z.EncBinary() + yy2arr2928 := z.EncBasicHandle().StructToArray + var yyq2928 [4]bool + _, _, _ = yysep2928, yyq2928, yy2arr2928 + const yyr2928 bool = false + yyq2928[0] = x.PodCIDR != "" + yyq2928[1] = x.ExternalID != "" + yyq2928[2] = x.ProviderID != "" + yyq2928[3] = x.Unschedulable != false + var yynn2928 int + if yyr2928 || yy2arr2928 { r.EncodeArrayStart(4) } else { - yynn2879 = 0 - for _, b := range yyq2879 { + yynn2928 = 0 + for _, b := range yyq2928 { if b { - yynn2879++ + yynn2928++ } } - r.EncodeMapStart(yynn2879) - yynn2879 = 0 + r.EncodeMapStart(yynn2928) + yynn2928 = 0 } - if yyr2879 || yy2arr2879 { + if yyr2928 || yy2arr2928 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2879[0] { - yym2881 := z.EncBinary() - _ = yym2881 + if yyq2928[0] { + yym2930 := z.EncBinary() + _ = yym2930 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -37119,23 +37656,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2879[0] { + if yyq2928[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2882 := z.EncBinary() - _ = yym2882 + yym2931 := z.EncBinary() + _ = yym2931 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2879 || yy2arr2879 { + if yyr2928 || yy2arr2928 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2879[1] { - yym2884 := z.EncBinary() - _ = yym2884 + if yyq2928[1] { + yym2933 := z.EncBinary() + _ = yym2933 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -37144,23 +37681,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2879[1] { + if yyq2928[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2885 := z.EncBinary() - _ = yym2885 + yym2934 := z.EncBinary() + _ = yym2934 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2879 || yy2arr2879 { + if yyr2928 || yy2arr2928 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2879[2] { - yym2887 := z.EncBinary() - _ = yym2887 + if yyq2928[2] { + yym2936 := z.EncBinary() + _ = yym2936 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -37169,23 +37706,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2879[2] { + if yyq2928[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2888 := z.EncBinary() - _ = yym2888 + yym2937 := z.EncBinary() + _ = yym2937 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2879 || yy2arr2879 { + if yyr2928 || yy2arr2928 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2879[3] { - yym2890 := z.EncBinary() - _ = yym2890 + if yyq2928[3] { + yym2939 := z.EncBinary() + _ = yym2939 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -37194,19 +37731,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2879[3] { + if yyq2928[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2891 := z.EncBinary() - _ = yym2891 + yym2940 := z.EncBinary() + _ = yym2940 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2879 || yy2arr2879 { + if yyr2928 || yy2arr2928 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37219,25 +37756,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2892 := z.DecBinary() - _ = yym2892 + yym2941 := z.DecBinary() + _ = yym2941 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2893 := r.ContainerType() - if yyct2893 == codecSelferValueTypeMap1234 { - yyl2893 := r.ReadMapStart() - if yyl2893 == 0 { + yyct2942 := r.ContainerType() + if yyct2942 == codecSelferValueTypeMap1234 { + yyl2942 := r.ReadMapStart() + if yyl2942 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2893, d) + x.codecDecodeSelfFromMap(yyl2942, d) } - } else if yyct2893 == codecSelferValueTypeArray1234 { - yyl2893 := r.ReadArrayStart() - if yyl2893 == 0 { + } else if yyct2942 == codecSelferValueTypeArray1234 { + yyl2942 := r.ReadArrayStart() + if yyl2942 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2893, d) + x.codecDecodeSelfFromArray(yyl2942, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37249,12 +37786,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2894Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2894Slc - var yyhl2894 bool = l >= 0 - for yyj2894 := 0; ; yyj2894++ { - if yyhl2894 { - if yyj2894 >= l { + var yys2943Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2943Slc + var yyhl2943 bool = l >= 0 + for yyj2943 := 0; ; yyj2943++ { + if yyhl2943 { + if yyj2943 >= l { break } } else { @@ -37263,10 +37800,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2894Slc = r.DecodeBytes(yys2894Slc, true, true) - yys2894 := string(yys2894Slc) + yys2943Slc = r.DecodeBytes(yys2943Slc, true, true) + yys2943 := string(yys2943Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2894 { + switch yys2943 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -37292,9 +37829,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2894) - } // end switch yys2894 - } // end for yyj2894 + z.DecStructFieldNotFound(-1, yys2943) + } // end switch yys2943 + } // end for yyj2943 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37302,16 +37839,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2899 int - var yyb2899 bool - var yyhl2899 bool = l >= 0 - yyj2899++ - if yyhl2899 { - yyb2899 = yyj2899 > l + var yyj2948 int + var yyb2948 bool + var yyhl2948 bool = l >= 0 + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2899 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2899 { + if yyb2948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37321,13 +37858,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2899++ - if yyhl2899 { - yyb2899 = yyj2899 > l + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2899 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2899 { + if yyb2948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37337,13 +37874,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2899++ - if yyhl2899 { - yyb2899 = yyj2899 > l + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2899 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2899 { + if yyb2948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37353,13 +37890,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2899++ - if yyhl2899 { - yyb2899 = yyj2899 > l + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2899 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2899 { + if yyb2948 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37370,17 +37907,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2899++ - if yyhl2899 { - yyb2899 = yyj2899 > l + yyj2948++ + if yyhl2948 { + yyb2948 = yyj2948 > l } else { - yyb2899 = r.CheckBreak() + yyb2948 = r.CheckBreak() } - if yyb2899 { + if yyb2948 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2899-1, "") + z.DecStructFieldNotFound(yyj2948-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37392,33 +37929,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2904 := z.EncBinary() - _ = yym2904 + yym2953 := z.EncBinary() + _ = yym2953 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2905 := !z.EncBinary() - yy2arr2905 := z.EncBasicHandle().StructToArray - var yyq2905 [1]bool - _, _, _ = yysep2905, yyq2905, yy2arr2905 - const yyr2905 bool = false - var yynn2905 int - if yyr2905 || yy2arr2905 { + yysep2954 := !z.EncBinary() + yy2arr2954 := z.EncBasicHandle().StructToArray + var yyq2954 [1]bool + _, _, _ = yysep2954, yyq2954, yy2arr2954 + const yyr2954 bool = false + var yynn2954 int + if yyr2954 || yy2arr2954 { r.EncodeArrayStart(1) } else { - yynn2905 = 1 - for _, b := range yyq2905 { + yynn2954 = 1 + for _, b := range yyq2954 { if b { - yynn2905++ + yynn2954++ } } - r.EncodeMapStart(yynn2905) - yynn2905 = 0 + r.EncodeMapStart(yynn2954) + yynn2954 = 0 } - if yyr2905 || yy2arr2905 { + if yyr2954 || yy2arr2954 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2907 := z.EncBinary() - _ = yym2907 + yym2956 := z.EncBinary() + _ = yym2956 if false { } else { r.EncodeInt(int64(x.Port)) @@ -37427,14 +37964,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2908 := z.EncBinary() - _ = yym2908 + yym2957 := z.EncBinary() + _ = yym2957 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2905 || yy2arr2905 { + if yyr2954 || yy2arr2954 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37447,25 +37984,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2909 := z.DecBinary() - _ = yym2909 + yym2958 := z.DecBinary() + _ = yym2958 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2910 := r.ContainerType() - if yyct2910 == codecSelferValueTypeMap1234 { - yyl2910 := r.ReadMapStart() - if yyl2910 == 0 { + yyct2959 := r.ContainerType() + if yyct2959 == codecSelferValueTypeMap1234 { + yyl2959 := r.ReadMapStart() + if yyl2959 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2910, d) + x.codecDecodeSelfFromMap(yyl2959, d) } - } else if yyct2910 == codecSelferValueTypeArray1234 { - yyl2910 := r.ReadArrayStart() - if yyl2910 == 0 { + } else if yyct2959 == codecSelferValueTypeArray1234 { + yyl2959 := r.ReadArrayStart() + if yyl2959 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2910, d) + x.codecDecodeSelfFromArray(yyl2959, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37477,12 +38014,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2911Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2911Slc - var yyhl2911 bool = l >= 0 - for yyj2911 := 0; ; yyj2911++ { - if yyhl2911 { - if yyj2911 >= l { + var yys2960Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2960Slc + var yyhl2960 bool = l >= 0 + for yyj2960 := 0; ; yyj2960++ { + if yyhl2960 { + if yyj2960 >= l { break } } else { @@ -37491,10 +38028,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2911Slc = r.DecodeBytes(yys2911Slc, true, true) - yys2911 := string(yys2911Slc) + yys2960Slc = r.DecodeBytes(yys2960Slc, true, true) + yys2960 := string(yys2960Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2911 { + switch yys2960 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -37502,9 +38039,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2911) - } // end switch yys2911 - } // end for yyj2911 + z.DecStructFieldNotFound(-1, yys2960) + } // end switch yys2960 + } // end for yyj2960 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37512,16 +38049,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2913 int - var yyb2913 bool - var yyhl2913 bool = l >= 0 - yyj2913++ - if yyhl2913 { - yyb2913 = yyj2913 > l + var yyj2962 int + var yyb2962 bool + var yyhl2962 bool = l >= 0 + yyj2962++ + if yyhl2962 { + yyb2962 = yyj2962 > l } else { - yyb2913 = r.CheckBreak() + yyb2962 = r.CheckBreak() } - if yyb2913 { + if yyb2962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37532,17 +38069,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2913++ - if yyhl2913 { - yyb2913 = yyj2913 > l + yyj2962++ + if yyhl2962 { + yyb2962 = yyj2962 > l } else { - yyb2913 = r.CheckBreak() + yyb2962 = r.CheckBreak() } - if yyb2913 { + if yyb2962 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2913-1, "") + z.DecStructFieldNotFound(yyj2962-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37554,48 +38091,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2915 := z.EncBinary() - _ = yym2915 + yym2964 := z.EncBinary() + _ = yym2964 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2916 := !z.EncBinary() - yy2arr2916 := z.EncBasicHandle().StructToArray - var yyq2916 [1]bool - _, _, _ = yysep2916, yyq2916, yy2arr2916 - const yyr2916 bool = false - yyq2916[0] = true - var yynn2916 int - if yyr2916 || yy2arr2916 { + yysep2965 := !z.EncBinary() + yy2arr2965 := z.EncBasicHandle().StructToArray + var yyq2965 [1]bool + _, _, _ = yysep2965, yyq2965, yy2arr2965 + const yyr2965 bool = false + yyq2965[0] = true + var yynn2965 int + if yyr2965 || yy2arr2965 { r.EncodeArrayStart(1) } else { - yynn2916 = 0 - for _, b := range yyq2916 { + yynn2965 = 0 + for _, b := range yyq2965 { if b { - yynn2916++ + yynn2965++ } } - r.EncodeMapStart(yynn2916) - yynn2916 = 0 + r.EncodeMapStart(yynn2965) + yynn2965 = 0 } - if yyr2916 || yy2arr2916 { + if yyr2965 || yy2arr2965 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2916[0] { - yy2918 := &x.KubeletEndpoint - yy2918.CodecEncodeSelf(e) + if yyq2965[0] { + yy2967 := &x.KubeletEndpoint + yy2967.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2916[0] { + if yyq2965[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2919 := &x.KubeletEndpoint - yy2919.CodecEncodeSelf(e) + yy2968 := &x.KubeletEndpoint + yy2968.CodecEncodeSelf(e) } } - if yyr2916 || yy2arr2916 { + if yyr2965 || yy2arr2965 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37608,25 +38145,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2920 := z.DecBinary() - _ = yym2920 + yym2969 := z.DecBinary() + _ = yym2969 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2921 := r.ContainerType() - if yyct2921 == codecSelferValueTypeMap1234 { - yyl2921 := r.ReadMapStart() - if yyl2921 == 0 { + yyct2970 := r.ContainerType() + if yyct2970 == codecSelferValueTypeMap1234 { + yyl2970 := r.ReadMapStart() + if yyl2970 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2921, d) + x.codecDecodeSelfFromMap(yyl2970, d) } - } else if yyct2921 == codecSelferValueTypeArray1234 { - yyl2921 := r.ReadArrayStart() - if yyl2921 == 0 { + } else if yyct2970 == codecSelferValueTypeArray1234 { + yyl2970 := r.ReadArrayStart() + if yyl2970 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2921, d) + x.codecDecodeSelfFromArray(yyl2970, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37638,12 +38175,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2922Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2922Slc - var yyhl2922 bool = l >= 0 - for yyj2922 := 0; ; yyj2922++ { - if yyhl2922 { - if yyj2922 >= l { + var yys2971Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2971Slc + var yyhl2971 bool = l >= 0 + for yyj2971 := 0; ; yyj2971++ { + if yyhl2971 { + if yyj2971 >= l { break } } else { @@ -37652,21 +38189,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2922Slc = r.DecodeBytes(yys2922Slc, true, true) - yys2922 := string(yys2922Slc) + yys2971Slc = r.DecodeBytes(yys2971Slc, true, true) + yys2971 := string(yys2971Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2922 { + switch yys2971 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2923 := &x.KubeletEndpoint - yyv2923.CodecDecodeSelf(d) + yyv2972 := &x.KubeletEndpoint + yyv2972.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2922) - } // end switch yys2922 - } // end for yyj2922 + z.DecStructFieldNotFound(-1, yys2971) + } // end switch yys2971 + } // end for yyj2971 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37674,16 +38211,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2924 int - var yyb2924 bool - var yyhl2924 bool = l >= 0 - yyj2924++ - if yyhl2924 { - yyb2924 = yyj2924 > l + var yyj2973 int + var yyb2973 bool + var yyhl2973 bool = l >= 0 + yyj2973++ + if yyhl2973 { + yyb2973 = yyj2973 > l } else { - yyb2924 = r.CheckBreak() + yyb2973 = r.CheckBreak() } - if yyb2924 { + if yyb2973 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37691,21 +38228,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2925 := &x.KubeletEndpoint - yyv2925.CodecDecodeSelf(d) + yyv2974 := &x.KubeletEndpoint + yyv2974.CodecDecodeSelf(d) } for { - yyj2924++ - if yyhl2924 { - yyb2924 = yyj2924 > l + yyj2973++ + if yyhl2973 { + yyb2973 = yyj2973 > l } else { - yyb2924 = r.CheckBreak() + yyb2973 = r.CheckBreak() } - if yyb2924 { + if yyb2973 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2924-1, "") + z.DecStructFieldNotFound(yyj2973-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37717,33 +38254,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2926 := z.EncBinary() - _ = yym2926 + yym2975 := z.EncBinary() + _ = yym2975 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2927 := !z.EncBinary() - yy2arr2927 := z.EncBasicHandle().StructToArray - var yyq2927 [10]bool - _, _, _ = yysep2927, yyq2927, yy2arr2927 - const yyr2927 bool = false - var yynn2927 int - if yyr2927 || yy2arr2927 { + yysep2976 := !z.EncBinary() + yy2arr2976 := z.EncBasicHandle().StructToArray + var yyq2976 [10]bool + _, _, _ = yysep2976, yyq2976, yy2arr2976 + const yyr2976 bool = false + var yynn2976 int + if yyr2976 || yy2arr2976 { r.EncodeArrayStart(10) } else { - yynn2927 = 10 - for _, b := range yyq2927 { + yynn2976 = 10 + for _, b := range yyq2976 { if b { - yynn2927++ + yynn2976++ } } - r.EncodeMapStart(yynn2927) - yynn2927 = 0 + r.EncodeMapStart(yynn2976) + yynn2976 = 0 } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2929 := z.EncBinary() - _ = yym2929 + yym2978 := z.EncBinary() + _ = yym2978 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -37752,17 +38289,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2930 := z.EncBinary() - _ = yym2930 + yym2979 := z.EncBinary() + _ = yym2979 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2932 := z.EncBinary() - _ = yym2932 + yym2981 := z.EncBinary() + _ = yym2981 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -37771,17 +38308,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2933 := z.EncBinary() - _ = yym2933 + yym2982 := z.EncBinary() + _ = yym2982 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2935 := z.EncBinary() - _ = yym2935 + yym2984 := z.EncBinary() + _ = yym2984 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -37790,17 +38327,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2936 := z.EncBinary() - _ = yym2936 + yym2985 := z.EncBinary() + _ = yym2985 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2938 := z.EncBinary() - _ = yym2938 + yym2987 := z.EncBinary() + _ = yym2987 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -37809,17 +38346,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2939 := z.EncBinary() - _ = yym2939 + yym2988 := z.EncBinary() + _ = yym2988 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2941 := z.EncBinary() - _ = yym2941 + yym2990 := z.EncBinary() + _ = yym2990 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -37828,17 +38365,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2942 := z.EncBinary() - _ = yym2942 + yym2991 := z.EncBinary() + _ = yym2991 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2944 := z.EncBinary() - _ = yym2944 + yym2993 := z.EncBinary() + _ = yym2993 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -37847,17 +38384,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2945 := z.EncBinary() - _ = yym2945 + yym2994 := z.EncBinary() + _ = yym2994 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2947 := z.EncBinary() - _ = yym2947 + yym2996 := z.EncBinary() + _ = yym2996 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -37866,17 +38403,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2948 := z.EncBinary() - _ = yym2948 + yym2997 := z.EncBinary() + _ = yym2997 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2950 := z.EncBinary() - _ = yym2950 + yym2999 := z.EncBinary() + _ = yym2999 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -37885,17 +38422,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2951 := z.EncBinary() - _ = yym2951 + yym3000 := z.EncBinary() + _ = yym3000 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2953 := z.EncBinary() - _ = yym2953 + yym3002 := z.EncBinary() + _ = yym3002 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) @@ -37904,17 +38441,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operatingSystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2954 := z.EncBinary() - _ = yym2954 + yym3003 := z.EncBinary() + _ = yym3003 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) } } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2956 := z.EncBinary() - _ = yym2956 + yym3005 := z.EncBinary() + _ = yym3005 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) @@ -37923,14 +38460,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("architecture")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2957 := z.EncBinary() - _ = yym2957 + yym3006 := z.EncBinary() + _ = yym3006 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) } } - if yyr2927 || yy2arr2927 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37943,25 +38480,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2958 := z.DecBinary() - _ = yym2958 + yym3007 := z.DecBinary() + _ = yym3007 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2959 := r.ContainerType() - if yyct2959 == codecSelferValueTypeMap1234 { - yyl2959 := r.ReadMapStart() - if yyl2959 == 0 { + yyct3008 := r.ContainerType() + if yyct3008 == codecSelferValueTypeMap1234 { + yyl3008 := r.ReadMapStart() + if yyl3008 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2959, d) + x.codecDecodeSelfFromMap(yyl3008, d) } - } else if yyct2959 == codecSelferValueTypeArray1234 { - yyl2959 := r.ReadArrayStart() - if yyl2959 == 0 { + } else if yyct3008 == codecSelferValueTypeArray1234 { + yyl3008 := r.ReadArrayStart() + if yyl3008 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2959, d) + x.codecDecodeSelfFromArray(yyl3008, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37973,12 +38510,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2960Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2960Slc - var yyhl2960 bool = l >= 0 - for yyj2960 := 0; ; yyj2960++ { - if yyhl2960 { - if yyj2960 >= l { + var yys3009Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3009Slc + var yyhl3009 bool = l >= 0 + for yyj3009 := 0; ; yyj3009++ { + if yyhl3009 { + if yyj3009 >= l { break } } else { @@ -37987,10 +38524,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2960Slc = r.DecodeBytes(yys2960Slc, true, true) - yys2960 := string(yys2960Slc) + yys3009Slc = r.DecodeBytes(yys3009Slc, true, true) + yys3009 := string(yys3009Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2960 { + switch yys3009 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -38052,9 +38589,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2960) - } // end switch yys2960 - } // end for yyj2960 + z.DecStructFieldNotFound(-1, yys3009) + } // end switch yys3009 + } // end for yyj3009 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38062,16 +38599,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2971 int - var yyb2971 bool - var yyhl2971 bool = l >= 0 - yyj2971++ - if yyhl2971 { - yyb2971 = yyj2971 > l + var yyj3020 int + var yyb3020 bool + var yyhl3020 bool = l >= 0 + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb2971 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb2971 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38081,13 +38618,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2971++ - if yyhl2971 { - yyb2971 = yyj2971 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb2971 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb2971 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38097,13 +38634,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2971++ - if yyhl2971 { - yyb2971 = yyj2971 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb2971 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb2971 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38113,13 +38650,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2971++ - if yyhl2971 { - yyb2971 = yyj2971 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb2971 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb2971 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38129,13 +38666,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2971++ - if yyhl2971 { - yyb2971 = yyj2971 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb2971 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb2971 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38145,13 +38682,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj2971++ - if yyhl2971 { - yyb2971 = yyj2971 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb2971 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb2971 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38161,13 +38698,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2971++ - if yyhl2971 { - yyb2971 = yyj2971 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb2971 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb2971 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38177,13 +38714,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2971++ - if yyhl2971 { - yyb2971 = yyj2971 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb2971 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb2971 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38193,13 +38730,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeProxyVersion = string(r.DecodeString()) } - yyj2971++ - if yyhl2971 { - yyb2971 = yyj2971 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb2971 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb2971 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38209,13 +38746,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OperatingSystem = string(r.DecodeString()) } - yyj2971++ - if yyhl2971 { - yyb2971 = yyj2971 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb2971 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb2971 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38226,17 +38763,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } for { - yyj2971++ - if yyhl2971 { - yyb2971 = yyj2971 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb2971 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb2971 { + if yyb3020 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2971-1, "") + z.DecStructFieldNotFound(yyj3020-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38248,42 +38785,42 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2982 := z.EncBinary() - _ = yym2982 + yym3031 := z.EncBinary() + _ = yym3031 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2983 := !z.EncBinary() - yy2arr2983 := z.EncBasicHandle().StructToArray - var yyq2983 [10]bool - _, _, _ = yysep2983, yyq2983, yy2arr2983 - const yyr2983 bool = false - yyq2983[0] = len(x.Capacity) != 0 - yyq2983[1] = len(x.Allocatable) != 0 - yyq2983[2] = x.Phase != "" - yyq2983[3] = len(x.Conditions) != 0 - yyq2983[4] = len(x.Addresses) != 0 - yyq2983[5] = true - yyq2983[6] = true - yyq2983[7] = len(x.Images) != 0 - yyq2983[8] = len(x.VolumesInUse) != 0 - yyq2983[9] = len(x.VolumesAttached) != 0 - var yynn2983 int - if yyr2983 || yy2arr2983 { + yysep3032 := !z.EncBinary() + yy2arr3032 := z.EncBasicHandle().StructToArray + var yyq3032 [10]bool + _, _, _ = yysep3032, yyq3032, yy2arr3032 + const yyr3032 bool = false + yyq3032[0] = len(x.Capacity) != 0 + yyq3032[1] = len(x.Allocatable) != 0 + yyq3032[2] = x.Phase != "" + yyq3032[3] = len(x.Conditions) != 0 + yyq3032[4] = len(x.Addresses) != 0 + yyq3032[5] = true + yyq3032[6] = true + yyq3032[7] = len(x.Images) != 0 + yyq3032[8] = len(x.VolumesInUse) != 0 + yyq3032[9] = len(x.VolumesAttached) != 0 + var yynn3032 int + if yyr3032 || yy2arr3032 { r.EncodeArrayStart(10) } else { - yynn2983 = 0 - for _, b := range yyq2983 { + yynn3032 = 0 + for _, b := range yyq3032 { if b { - yynn2983++ + yynn3032++ } } - r.EncodeMapStart(yynn2983) - yynn2983 = 0 + r.EncodeMapStart(yynn3032) + yynn3032 = 0 } - if yyr2983 || yy2arr2983 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[0] { + if yyq3032[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -38293,7 +38830,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2983[0] { + if yyq3032[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -38304,9 +38841,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2983 || yy2arr2983 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[1] { + if yyq3032[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -38316,7 +38853,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2983[1] { + if yyq3032[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -38327,29 +38864,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2983 || yy2arr2983 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[2] { + if yyq3032[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2983[2] { + if yyq3032[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2983 || yy2arr2983 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[3] { + if yyq3032[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym2988 := z.EncBinary() - _ = yym2988 + yym3037 := z.EncBinary() + _ = yym3037 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -38359,15 +38896,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2983[3] { + if yyq3032[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2989 := z.EncBinary() - _ = yym2989 + yym3038 := z.EncBinary() + _ = yym3038 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -38375,14 +38912,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2983 || yy2arr2983 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[4] { + if yyq3032[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym2991 := z.EncBinary() - _ = yym2991 + yym3040 := z.EncBinary() + _ = yym3040 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -38392,15 +38929,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2983[4] { + if yyq3032[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2992 := z.EncBinary() - _ = yym2992 + yym3041 := z.EncBinary() + _ = yym3041 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -38408,48 +38945,48 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2983 || yy2arr2983 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[5] { - yy2994 := &x.DaemonEndpoints - yy2994.CodecEncodeSelf(e) + if yyq3032[5] { + yy3043 := &x.DaemonEndpoints + yy3043.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2983[5] { + if yyq3032[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2995 := &x.DaemonEndpoints - yy2995.CodecEncodeSelf(e) + yy3044 := &x.DaemonEndpoints + yy3044.CodecEncodeSelf(e) } } - if yyr2983 || yy2arr2983 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[6] { - yy2997 := &x.NodeInfo - yy2997.CodecEncodeSelf(e) + if yyq3032[6] { + yy3046 := &x.NodeInfo + yy3046.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2983[6] { + if yyq3032[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2998 := &x.NodeInfo - yy2998.CodecEncodeSelf(e) + yy3047 := &x.NodeInfo + yy3047.CodecEncodeSelf(e) } } - if yyr2983 || yy2arr2983 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[7] { + if yyq3032[7] { if x.Images == nil { r.EncodeNil() } else { - yym3000 := z.EncBinary() - _ = yym3000 + yym3049 := z.EncBinary() + _ = yym3049 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -38459,15 +38996,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2983[7] { + if yyq3032[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("images")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Images == nil { r.EncodeNil() } else { - yym3001 := z.EncBinary() - _ = yym3001 + yym3050 := z.EncBinary() + _ = yym3050 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -38475,14 +39012,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2983 || yy2arr2983 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[8] { + if yyq3032[8] { if x.VolumesInUse == nil { r.EncodeNil() } else { - yym3003 := z.EncBinary() - _ = yym3003 + yym3052 := z.EncBinary() + _ = yym3052 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -38492,15 +39029,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2983[8] { + if yyq3032[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesInUse")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesInUse == nil { r.EncodeNil() } else { - yym3004 := z.EncBinary() - _ = yym3004 + yym3053 := z.EncBinary() + _ = yym3053 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -38508,14 +39045,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2983 || yy2arr2983 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2983[9] { + if yyq3032[9] { if x.VolumesAttached == nil { r.EncodeNil() } else { - yym3006 := z.EncBinary() - _ = yym3006 + yym3055 := z.EncBinary() + _ = yym3055 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -38525,15 +39062,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2983[9] { + if yyq3032[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesAttached")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesAttached == nil { r.EncodeNil() } else { - yym3007 := z.EncBinary() - _ = yym3007 + yym3056 := z.EncBinary() + _ = yym3056 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -38541,7 +39078,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2983 || yy2arr2983 { + if yyr3032 || yy2arr3032 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38554,25 +39091,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3008 := z.DecBinary() - _ = yym3008 + yym3057 := z.DecBinary() + _ = yym3057 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3009 := r.ContainerType() - if yyct3009 == codecSelferValueTypeMap1234 { - yyl3009 := r.ReadMapStart() - if yyl3009 == 0 { + yyct3058 := r.ContainerType() + if yyct3058 == codecSelferValueTypeMap1234 { + yyl3058 := r.ReadMapStart() + if yyl3058 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3009, d) + x.codecDecodeSelfFromMap(yyl3058, d) } - } else if yyct3009 == codecSelferValueTypeArray1234 { - yyl3009 := r.ReadArrayStart() - if yyl3009 == 0 { + } else if yyct3058 == codecSelferValueTypeArray1234 { + yyl3058 := r.ReadArrayStart() + if yyl3058 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3009, d) + x.codecDecodeSelfFromArray(yyl3058, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38584,12 +39121,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3010Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3010Slc - var yyhl3010 bool = l >= 0 - for yyj3010 := 0; ; yyj3010++ { - if yyhl3010 { - if yyj3010 >= l { + var yys3059Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3059Slc + var yyhl3059 bool = l >= 0 + for yyj3059 := 0; ; yyj3059++ { + if yyhl3059 { + if yyj3059 >= l { break } } else { @@ -38598,23 +39135,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3010Slc = r.DecodeBytes(yys3010Slc, true, true) - yys3010 := string(yys3010Slc) + yys3059Slc = r.DecodeBytes(yys3059Slc, true, true) + yys3059 := string(yys3059Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3010 { + switch yys3059 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3011 := &x.Capacity - yyv3011.CodecDecodeSelf(d) + yyv3060 := &x.Capacity + yyv3060.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv3012 := &x.Allocatable - yyv3012.CodecDecodeSelf(d) + yyv3061 := &x.Allocatable + yyv3061.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -38626,80 +39163,80 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3014 := &x.Conditions - yym3015 := z.DecBinary() - _ = yym3015 + yyv3063 := &x.Conditions + yym3064 := z.DecBinary() + _ = yym3064 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv3014), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv3063), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv3016 := &x.Addresses - yym3017 := z.DecBinary() - _ = yym3017 + yyv3065 := &x.Addresses + yym3066 := z.DecBinary() + _ = yym3066 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv3016), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv3065), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv3018 := &x.DaemonEndpoints - yyv3018.CodecDecodeSelf(d) + yyv3067 := &x.DaemonEndpoints + yyv3067.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv3019 := &x.NodeInfo - yyv3019.CodecDecodeSelf(d) + yyv3068 := &x.NodeInfo + yyv3068.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv3020 := &x.Images - yym3021 := z.DecBinary() - _ = yym3021 + yyv3069 := &x.Images + yym3070 := z.DecBinary() + _ = yym3070 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv3020), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv3069), d) } } case "volumesInUse": if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv3022 := &x.VolumesInUse - yym3023 := z.DecBinary() - _ = yym3023 + yyv3071 := &x.VolumesInUse + yym3072 := z.DecBinary() + _ = yym3072 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3022), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3071), d) } } case "volumesAttached": if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv3024 := &x.VolumesAttached - yym3025 := z.DecBinary() - _ = yym3025 + yyv3073 := &x.VolumesAttached + yym3074 := z.DecBinary() + _ = yym3074 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3024), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3073), d) } } default: - z.DecStructFieldNotFound(-1, yys3010) - } // end switch yys3010 - } // end for yyj3010 + z.DecStructFieldNotFound(-1, yys3059) + } // end switch yys3059 + } // end for yyj3059 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38707,16 +39244,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3026 int - var yyb3026 bool - var yyhl3026 bool = l >= 0 - yyj3026++ - if yyhl3026 { - yyb3026 = yyj3026 > l + var yyj3075 int + var yyb3075 bool + var yyhl3075 bool = l >= 0 + yyj3075++ + if yyhl3075 { + yyb3075 = yyj3075 > l } else { - yyb3026 = r.CheckBreak() + yyb3075 = r.CheckBreak() } - if yyb3026 { + if yyb3075 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38724,16 +39261,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3027 := &x.Capacity - yyv3027.CodecDecodeSelf(d) + yyv3076 := &x.Capacity + yyv3076.CodecDecodeSelf(d) } - yyj3026++ - if yyhl3026 { - yyb3026 = yyj3026 > l + yyj3075++ + if yyhl3075 { + yyb3075 = yyj3075 > l } else { - yyb3026 = r.CheckBreak() + yyb3075 = r.CheckBreak() } - if yyb3026 { + if yyb3075 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38741,16 +39278,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv3028 := &x.Allocatable - yyv3028.CodecDecodeSelf(d) + yyv3077 := &x.Allocatable + yyv3077.CodecDecodeSelf(d) } - yyj3026++ - if yyhl3026 { - yyb3026 = yyj3026 > l + yyj3075++ + if yyhl3075 { + yyb3075 = yyj3075 > l } else { - yyb3026 = r.CheckBreak() + yyb3075 = r.CheckBreak() } - if yyb3026 { + if yyb3075 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38760,13 +39297,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj3026++ - if yyhl3026 { - yyb3026 = yyj3026 > l + yyj3075++ + if yyhl3075 { + yyb3075 = yyj3075 > l } else { - yyb3026 = r.CheckBreak() + yyb3075 = r.CheckBreak() } - if yyb3026 { + if yyb3075 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38774,21 +39311,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3030 := &x.Conditions - yym3031 := z.DecBinary() - _ = yym3031 + yyv3079 := &x.Conditions + yym3080 := z.DecBinary() + _ = yym3080 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv3030), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv3079), d) } } - yyj3026++ - if yyhl3026 { - yyb3026 = yyj3026 > l + yyj3075++ + if yyhl3075 { + yyb3075 = yyj3075 > l } else { - yyb3026 = r.CheckBreak() + yyb3075 = r.CheckBreak() } - if yyb3026 { + if yyb3075 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38796,21 +39333,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv3032 := &x.Addresses - yym3033 := z.DecBinary() - _ = yym3033 + yyv3081 := &x.Addresses + yym3082 := z.DecBinary() + _ = yym3082 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv3032), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv3081), d) } } - yyj3026++ - if yyhl3026 { - yyb3026 = yyj3026 > l + yyj3075++ + if yyhl3075 { + yyb3075 = yyj3075 > l } else { - yyb3026 = r.CheckBreak() + yyb3075 = r.CheckBreak() } - if yyb3026 { + if yyb3075 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38818,16 +39355,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv3034 := &x.DaemonEndpoints - yyv3034.CodecDecodeSelf(d) + yyv3083 := &x.DaemonEndpoints + yyv3083.CodecDecodeSelf(d) } - yyj3026++ - if yyhl3026 { - yyb3026 = yyj3026 > l + yyj3075++ + if yyhl3075 { + yyb3075 = yyj3075 > l } else { - yyb3026 = r.CheckBreak() + yyb3075 = r.CheckBreak() } - if yyb3026 { + if yyb3075 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38835,16 +39372,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv3035 := &x.NodeInfo - yyv3035.CodecDecodeSelf(d) + yyv3084 := &x.NodeInfo + yyv3084.CodecDecodeSelf(d) } - yyj3026++ - if yyhl3026 { - yyb3026 = yyj3026 > l + yyj3075++ + if yyhl3075 { + yyb3075 = yyj3075 > l } else { - yyb3026 = r.CheckBreak() + yyb3075 = r.CheckBreak() } - if yyb3026 { + if yyb3075 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38852,21 +39389,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv3036 := &x.Images - yym3037 := z.DecBinary() - _ = yym3037 + yyv3085 := &x.Images + yym3086 := z.DecBinary() + _ = yym3086 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv3036), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv3085), d) } } - yyj3026++ - if yyhl3026 { - yyb3026 = yyj3026 > l + yyj3075++ + if yyhl3075 { + yyb3075 = yyj3075 > l } else { - yyb3026 = r.CheckBreak() + yyb3075 = r.CheckBreak() } - if yyb3026 { + if yyb3075 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38874,21 +39411,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv3038 := &x.VolumesInUse - yym3039 := z.DecBinary() - _ = yym3039 + yyv3087 := &x.VolumesInUse + yym3088 := z.DecBinary() + _ = yym3088 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3038), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3087), d) } } - yyj3026++ - if yyhl3026 { - yyb3026 = yyj3026 > l + yyj3075++ + if yyhl3075 { + yyb3075 = yyj3075 > l } else { - yyb3026 = r.CheckBreak() + yyb3075 = r.CheckBreak() } - if yyb3026 { + if yyb3075 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38896,26 +39433,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv3040 := &x.VolumesAttached - yym3041 := z.DecBinary() - _ = yym3041 + yyv3089 := &x.VolumesAttached + yym3090 := z.DecBinary() + _ = yym3090 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3040), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3089), d) } } for { - yyj3026++ - if yyhl3026 { - yyb3026 = yyj3026 > l + yyj3075++ + if yyhl3075 { + yyb3075 = yyj3075 > l } else { - yyb3026 = r.CheckBreak() + yyb3075 = r.CheckBreak() } - if yyb3026 { + if yyb3075 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3026-1, "") + z.DecStructFieldNotFound(yyj3075-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38924,8 +39461,8 @@ func (x UniqueVolumeName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3042 := z.EncBinary() - _ = yym3042 + yym3091 := z.EncBinary() + _ = yym3091 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38937,8 +39474,8 @@ func (x *UniqueVolumeName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3043 := z.DecBinary() - _ = yym3043 + yym3092 := z.DecBinary() + _ = yym3092 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -38953,30 +39490,30 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3044 := z.EncBinary() - _ = yym3044 + yym3093 := z.EncBinary() + _ = yym3093 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3045 := !z.EncBinary() - yy2arr3045 := z.EncBasicHandle().StructToArray - var yyq3045 [2]bool - _, _, _ = yysep3045, yyq3045, yy2arr3045 - const yyr3045 bool = false - var yynn3045 int - if yyr3045 || yy2arr3045 { + yysep3094 := !z.EncBinary() + yy2arr3094 := z.EncBasicHandle().StructToArray + var yyq3094 [2]bool + _, _, _ = yysep3094, yyq3094, yy2arr3094 + const yyr3094 bool = false + var yynn3094 int + if yyr3094 || yy2arr3094 { r.EncodeArrayStart(2) } else { - yynn3045 = 2 - for _, b := range yyq3045 { + yynn3094 = 2 + for _, b := range yyq3094 { if b { - yynn3045++ + yynn3094++ } } - r.EncodeMapStart(yynn3045) - yynn3045 = 0 + r.EncodeMapStart(yynn3094) + yynn3094 = 0 } - if yyr3045 || yy2arr3045 { + if yyr3094 || yy2arr3094 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Name.CodecEncodeSelf(e) } else { @@ -38985,10 +39522,10 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Name.CodecEncodeSelf(e) } - if yyr3045 || yy2arr3045 { + if yyr3094 || yy2arr3094 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3048 := z.EncBinary() - _ = yym3048 + yym3097 := z.EncBinary() + _ = yym3097 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) @@ -38997,14 +39534,14 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("devicePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3049 := z.EncBinary() - _ = yym3049 + yym3098 := z.EncBinary() + _ = yym3098 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) } } - if yyr3045 || yy2arr3045 { + if yyr3094 || yy2arr3094 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39017,25 +39554,25 @@ func (x *AttachedVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3050 := z.DecBinary() - _ = yym3050 + yym3099 := z.DecBinary() + _ = yym3099 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3051 := r.ContainerType() - if yyct3051 == codecSelferValueTypeMap1234 { - yyl3051 := r.ReadMapStart() - if yyl3051 == 0 { + yyct3100 := r.ContainerType() + if yyct3100 == codecSelferValueTypeMap1234 { + yyl3100 := r.ReadMapStart() + if yyl3100 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3051, d) + x.codecDecodeSelfFromMap(yyl3100, d) } - } else if yyct3051 == codecSelferValueTypeArray1234 { - yyl3051 := r.ReadArrayStart() - if yyl3051 == 0 { + } else if yyct3100 == codecSelferValueTypeArray1234 { + yyl3100 := r.ReadArrayStart() + if yyl3100 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3051, d) + x.codecDecodeSelfFromArray(yyl3100, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39047,12 +39584,12 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3052Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3052Slc - var yyhl3052 bool = l >= 0 - for yyj3052 := 0; ; yyj3052++ { - if yyhl3052 { - if yyj3052 >= l { + var yys3101Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3101Slc + var yyhl3101 bool = l >= 0 + for yyj3101 := 0; ; yyj3101++ { + if yyhl3101 { + if yyj3101 >= l { break } } else { @@ -39061,10 +39598,10 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3052Slc = r.DecodeBytes(yys3052Slc, true, true) - yys3052 := string(yys3052Slc) + yys3101Slc = r.DecodeBytes(yys3101Slc, true, true) + yys3101 := string(yys3101Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3052 { + switch yys3101 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -39078,9 +39615,9 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3052) - } // end switch yys3052 - } // end for yyj3052 + z.DecStructFieldNotFound(-1, yys3101) + } // end switch yys3101 + } // end for yyj3101 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39088,16 +39625,16 @@ func (x *AttachedVolume) 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 yyj3104 int + var yyb3104 bool + var yyhl3104 bool = l >= 0 + yyj3104++ + if yyhl3104 { + yyb3104 = yyj3104 > l } else { - yyb3055 = r.CheckBreak() + yyb3104 = r.CheckBreak() } - if yyb3055 { + if yyb3104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39107,13 +39644,13 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = UniqueVolumeName(r.DecodeString()) } - yyj3055++ - if yyhl3055 { - yyb3055 = yyj3055 > l + yyj3104++ + if yyhl3104 { + yyb3104 = yyj3104 > l } else { - yyb3055 = r.CheckBreak() + yyb3104 = r.CheckBreak() } - if yyb3055 { + if yyb3104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39124,17 +39661,17 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } for { - yyj3055++ - if yyhl3055 { - yyb3055 = yyj3055 > l + yyj3104++ + if yyhl3104 { + yyb3104 = yyj3104 > l } else { - yyb3055 = r.CheckBreak() + yyb3104 = r.CheckBreak() } - if yyb3055 { + if yyb3104 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3055-1, "") + z.DecStructFieldNotFound(yyj3104-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39146,38 +39683,38 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3058 := z.EncBinary() - _ = yym3058 + yym3107 := z.EncBinary() + _ = yym3107 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3059 := !z.EncBinary() - yy2arr3059 := z.EncBasicHandle().StructToArray - var yyq3059 [1]bool - _, _, _ = yysep3059, yyq3059, yy2arr3059 - const yyr3059 bool = false - yyq3059[0] = len(x.PreferAvoidPods) != 0 - var yynn3059 int - if yyr3059 || yy2arr3059 { + yysep3108 := !z.EncBinary() + yy2arr3108 := z.EncBasicHandle().StructToArray + var yyq3108 [1]bool + _, _, _ = yysep3108, yyq3108, yy2arr3108 + const yyr3108 bool = false + yyq3108[0] = len(x.PreferAvoidPods) != 0 + var yynn3108 int + if yyr3108 || yy2arr3108 { r.EncodeArrayStart(1) } else { - yynn3059 = 0 - for _, b := range yyq3059 { + yynn3108 = 0 + for _, b := range yyq3108 { if b { - yynn3059++ + yynn3108++ } } - r.EncodeMapStart(yynn3059) - yynn3059 = 0 + r.EncodeMapStart(yynn3108) + yynn3108 = 0 } - if yyr3059 || yy2arr3059 { + if yyr3108 || yy2arr3108 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3059[0] { + if yyq3108[0] { if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym3061 := z.EncBinary() - _ = yym3061 + yym3110 := z.EncBinary() + _ = yym3110 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -39187,15 +39724,15 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3059[0] { + if yyq3108[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym3062 := z.EncBinary() - _ = yym3062 + yym3111 := z.EncBinary() + _ = yym3111 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -39203,7 +39740,7 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3059 || yy2arr3059 { + if yyr3108 || yy2arr3108 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39216,25 +39753,25 @@ func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3063 := z.DecBinary() - _ = yym3063 + yym3112 := z.DecBinary() + _ = yym3112 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3064 := r.ContainerType() - if yyct3064 == codecSelferValueTypeMap1234 { - yyl3064 := r.ReadMapStart() - if yyl3064 == 0 { + yyct3113 := r.ContainerType() + if yyct3113 == codecSelferValueTypeMap1234 { + yyl3113 := r.ReadMapStart() + if yyl3113 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3064, d) + x.codecDecodeSelfFromMap(yyl3113, d) } - } else if yyct3064 == codecSelferValueTypeArray1234 { - yyl3064 := r.ReadArrayStart() - if yyl3064 == 0 { + } else if yyct3113 == codecSelferValueTypeArray1234 { + yyl3113 := r.ReadArrayStart() + if yyl3113 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3064, d) + x.codecDecodeSelfFromArray(yyl3113, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39246,12 +39783,12 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3065Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3065Slc - var yyhl3065 bool = l >= 0 - for yyj3065 := 0; ; yyj3065++ { - if yyhl3065 { - if yyj3065 >= l { + var yys3114Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3114Slc + var yyhl3114 bool = l >= 0 + for yyj3114 := 0; ; yyj3114++ { + if yyhl3114 { + if yyj3114 >= l { break } } else { @@ -39260,26 +39797,26 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3065Slc = r.DecodeBytes(yys3065Slc, true, true) - yys3065 := string(yys3065Slc) + yys3114Slc = r.DecodeBytes(yys3114Slc, true, true) + yys3114 := string(yys3114Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3065 { + switch yys3114 { case "preferAvoidPods": if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv3066 := &x.PreferAvoidPods - yym3067 := z.DecBinary() - _ = yym3067 + yyv3115 := &x.PreferAvoidPods + yym3116 := z.DecBinary() + _ = yym3116 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3066), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3115), d) } } default: - z.DecStructFieldNotFound(-1, yys3065) - } // end switch yys3065 - } // end for yyj3065 + z.DecStructFieldNotFound(-1, yys3114) + } // end switch yys3114 + } // end for yyj3114 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39287,16 +39824,16 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3068 int - var yyb3068 bool - var yyhl3068 bool = l >= 0 - yyj3068++ - if yyhl3068 { - yyb3068 = yyj3068 > l + var yyj3117 int + var yyb3117 bool + var yyhl3117 bool = l >= 0 + yyj3117++ + if yyhl3117 { + yyb3117 = yyj3117 > l } else { - yyb3068 = r.CheckBreak() + yyb3117 = r.CheckBreak() } - if yyb3068 { + if yyb3117 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39304,26 +39841,26 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv3069 := &x.PreferAvoidPods - yym3070 := z.DecBinary() - _ = yym3070 + yyv3118 := &x.PreferAvoidPods + yym3119 := z.DecBinary() + _ = yym3119 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3069), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3118), d) } } for { - yyj3068++ - if yyhl3068 { - yyb3068 = yyj3068 > l + yyj3117++ + if yyhl3117 { + yyb3117 = yyj3117 > l } else { - yyb3068 = r.CheckBreak() + yyb3117 = r.CheckBreak() } - if yyb3068 { + if yyb3117 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3068-1, "") + z.DecStructFieldNotFound(yyj3117-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39335,85 +39872,85 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3071 := z.EncBinary() - _ = yym3071 + yym3120 := z.EncBinary() + _ = yym3120 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3072 := !z.EncBinary() - yy2arr3072 := z.EncBasicHandle().StructToArray - var yyq3072 [4]bool - _, _, _ = yysep3072, yyq3072, yy2arr3072 - const yyr3072 bool = false - yyq3072[1] = true - yyq3072[2] = x.Reason != "" - yyq3072[3] = x.Message != "" - var yynn3072 int - if yyr3072 || yy2arr3072 { + yysep3121 := !z.EncBinary() + yy2arr3121 := z.EncBasicHandle().StructToArray + var yyq3121 [4]bool + _, _, _ = yysep3121, yyq3121, yy2arr3121 + const yyr3121 bool = false + yyq3121[1] = true + yyq3121[2] = x.Reason != "" + yyq3121[3] = x.Message != "" + var yynn3121 int + if yyr3121 || yy2arr3121 { r.EncodeArrayStart(4) } else { - yynn3072 = 1 - for _, b := range yyq3072 { + yynn3121 = 1 + for _, b := range yyq3121 { if b { - yynn3072++ + yynn3121++ } } - r.EncodeMapStart(yynn3072) - yynn3072 = 0 + r.EncodeMapStart(yynn3121) + yynn3121 = 0 } - if yyr3072 || yy2arr3072 { + if yyr3121 || yy2arr3121 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3074 := &x.PodSignature - yy3074.CodecEncodeSelf(e) + yy3123 := &x.PodSignature + yy3123.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSignature")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3075 := &x.PodSignature - yy3075.CodecEncodeSelf(e) + yy3124 := &x.PodSignature + yy3124.CodecEncodeSelf(e) } - if yyr3072 || yy2arr3072 { + if yyr3121 || yy2arr3121 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3072[1] { - yy3077 := &x.EvictionTime - yym3078 := z.EncBinary() - _ = yym3078 + if yyq3121[1] { + yy3126 := &x.EvictionTime + yym3127 := z.EncBinary() + _ = yym3127 if false { - } else if z.HasExtensions() && z.EncExt(yy3077) { - } else if yym3078 { - z.EncBinaryMarshal(yy3077) - } else if !yym3078 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3077) + } else if z.HasExtensions() && z.EncExt(yy3126) { + } else if yym3127 { + z.EncBinaryMarshal(yy3126) + } else if !yym3127 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3126) } else { - z.EncFallback(yy3077) + z.EncFallback(yy3126) } } else { r.EncodeNil() } } else { - if yyq3072[1] { + if yyq3121[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3079 := &x.EvictionTime - yym3080 := z.EncBinary() - _ = yym3080 + yy3128 := &x.EvictionTime + yym3129 := z.EncBinary() + _ = yym3129 if false { - } else if z.HasExtensions() && z.EncExt(yy3079) { - } else if yym3080 { - z.EncBinaryMarshal(yy3079) - } else if !yym3080 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3079) + } else if z.HasExtensions() && z.EncExt(yy3128) { + } else if yym3129 { + z.EncBinaryMarshal(yy3128) + } else if !yym3129 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3128) } else { - z.EncFallback(yy3079) + z.EncFallback(yy3128) } } } - if yyr3072 || yy2arr3072 { + if yyr3121 || yy2arr3121 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3072[2] { - yym3082 := z.EncBinary() - _ = yym3082 + if yyq3121[2] { + yym3131 := z.EncBinary() + _ = yym3131 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -39422,23 +39959,23 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3072[2] { + if yyq3121[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3083 := z.EncBinary() - _ = yym3083 + yym3132 := z.EncBinary() + _ = yym3132 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3072 || yy2arr3072 { + if yyr3121 || yy2arr3121 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3072[3] { - yym3085 := z.EncBinary() - _ = yym3085 + if yyq3121[3] { + yym3134 := z.EncBinary() + _ = yym3134 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -39447,19 +39984,19 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3072[3] { + if yyq3121[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3086 := z.EncBinary() - _ = yym3086 + yym3135 := z.EncBinary() + _ = yym3135 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3072 || yy2arr3072 { + if yyr3121 || yy2arr3121 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39472,25 +40009,25 @@ func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3087 := z.DecBinary() - _ = yym3087 + yym3136 := z.DecBinary() + _ = yym3136 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3088 := r.ContainerType() - if yyct3088 == codecSelferValueTypeMap1234 { - yyl3088 := r.ReadMapStart() - if yyl3088 == 0 { + yyct3137 := r.ContainerType() + if yyct3137 == codecSelferValueTypeMap1234 { + yyl3137 := r.ReadMapStart() + if yyl3137 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3088, d) + x.codecDecodeSelfFromMap(yyl3137, d) } - } else if yyct3088 == codecSelferValueTypeArray1234 { - yyl3088 := r.ReadArrayStart() - if yyl3088 == 0 { + } else if yyct3137 == codecSelferValueTypeArray1234 { + yyl3137 := r.ReadArrayStart() + if yyl3137 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3088, d) + x.codecDecodeSelfFromArray(yyl3137, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39502,12 +40039,12 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3089Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3089Slc - var yyhl3089 bool = l >= 0 - for yyj3089 := 0; ; yyj3089++ { - if yyhl3089 { - if yyj3089 >= l { + var yys3138Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3138Slc + var yyhl3138 bool = l >= 0 + for yyj3138 := 0; ; yyj3138++ { + if yyhl3138 { + if yyj3138 >= l { break } } else { @@ -39516,32 +40053,32 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3089Slc = r.DecodeBytes(yys3089Slc, true, true) - yys3089 := string(yys3089Slc) + yys3138Slc = r.DecodeBytes(yys3138Slc, true, true) + yys3138 := string(yys3138Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3089 { + switch yys3138 { case "podSignature": if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv3090 := &x.PodSignature - yyv3090.CodecDecodeSelf(d) + yyv3139 := &x.PodSignature + yyv3139.CodecDecodeSelf(d) } case "evictionTime": if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv3091 := &x.EvictionTime - yym3092 := z.DecBinary() - _ = yym3092 + yyv3140 := &x.EvictionTime + yym3141 := z.DecBinary() + _ = yym3141 if false { - } else if z.HasExtensions() && z.DecExt(yyv3091) { - } else if yym3092 { - z.DecBinaryUnmarshal(yyv3091) - } else if !yym3092 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3091) + } else if z.HasExtensions() && z.DecExt(yyv3140) { + } else if yym3141 { + z.DecBinaryUnmarshal(yyv3140) + } else if !yym3141 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3140) } else { - z.DecFallback(yyv3091, false) + z.DecFallback(yyv3140, false) } } case "reason": @@ -39557,9 +40094,9 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3089) - } // end switch yys3089 - } // end for yyj3089 + z.DecStructFieldNotFound(-1, yys3138) + } // end switch yys3138 + } // end for yyj3138 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39567,16 +40104,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3095 int - var yyb3095 bool - var yyhl3095 bool = l >= 0 - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + var yyj3144 int + var yyb3144 bool + var yyhl3144 bool = l >= 0 + yyj3144++ + if yyhl3144 { + yyb3144 = yyj3144 > l } else { - yyb3095 = r.CheckBreak() + yyb3144 = r.CheckBreak() } - if yyb3095 { + if yyb3144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39584,16 +40121,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv3096 := &x.PodSignature - yyv3096.CodecDecodeSelf(d) + yyv3145 := &x.PodSignature + yyv3145.CodecDecodeSelf(d) } - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + yyj3144++ + if yyhl3144 { + yyb3144 = yyj3144 > l } else { - yyb3095 = r.CheckBreak() + yyb3144 = r.CheckBreak() } - if yyb3095 { + if yyb3144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39601,26 +40138,26 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.EvictionTime = pkg2_unversioned.Time{} } else { - yyv3097 := &x.EvictionTime - yym3098 := z.DecBinary() - _ = yym3098 + yyv3146 := &x.EvictionTime + yym3147 := z.DecBinary() + _ = yym3147 if false { - } else if z.HasExtensions() && z.DecExt(yyv3097) { - } else if yym3098 { - z.DecBinaryUnmarshal(yyv3097) - } else if !yym3098 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3097) + } else if z.HasExtensions() && z.DecExt(yyv3146) { + } else if yym3147 { + z.DecBinaryUnmarshal(yyv3146) + } else if !yym3147 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3146) } else { - z.DecFallback(yyv3097, false) + z.DecFallback(yyv3146, false) } } - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + yyj3144++ + if yyhl3144 { + yyb3144 = yyj3144 > l } else { - yyb3095 = r.CheckBreak() + yyb3144 = r.CheckBreak() } - if yyb3095 { + if yyb3144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39630,13 +40167,13 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Reason = string(r.DecodeString()) } - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + yyj3144++ + if yyhl3144 { + yyb3144 = yyj3144 > l } else { - yyb3095 = r.CheckBreak() + yyb3144 = r.CheckBreak() } - if yyb3095 { + if yyb3144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39647,17 +40184,17 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Message = string(r.DecodeString()) } for { - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + yyj3144++ + if yyhl3144 { + yyb3144 = yyj3144 > l } else { - yyb3095 = r.CheckBreak() + yyb3144 = r.CheckBreak() } - if yyb3095 { + if yyb3144 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3095-1, "") + z.DecStructFieldNotFound(yyj3144-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39669,33 +40206,33 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3101 := z.EncBinary() - _ = yym3101 + yym3150 := z.EncBinary() + _ = yym3150 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3102 := !z.EncBinary() - yy2arr3102 := z.EncBasicHandle().StructToArray - var yyq3102 [1]bool - _, _, _ = yysep3102, yyq3102, yy2arr3102 - const yyr3102 bool = false - yyq3102[0] = x.PodController != nil - var yynn3102 int - if yyr3102 || yy2arr3102 { + yysep3151 := !z.EncBinary() + yy2arr3151 := z.EncBasicHandle().StructToArray + var yyq3151 [1]bool + _, _, _ = yysep3151, yyq3151, yy2arr3151 + const yyr3151 bool = false + yyq3151[0] = x.PodController != nil + var yynn3151 int + if yyr3151 || yy2arr3151 { r.EncodeArrayStart(1) } else { - yynn3102 = 0 - for _, b := range yyq3102 { + yynn3151 = 0 + for _, b := range yyq3151 { if b { - yynn3102++ + yynn3151++ } } - r.EncodeMapStart(yynn3102) - yynn3102 = 0 + r.EncodeMapStart(yynn3151) + yynn3151 = 0 } - if yyr3102 || yy2arr3102 { + if yyr3151 || yy2arr3151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3102[0] { + if yyq3151[0] { if x.PodController == nil { r.EncodeNil() } else { @@ -39705,7 +40242,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3102[0] { + if yyq3151[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podController")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39716,7 +40253,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3102 || yy2arr3102 { + if yyr3151 || yy2arr3151 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39729,25 +40266,25 @@ func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3104 := z.DecBinary() - _ = yym3104 + yym3153 := z.DecBinary() + _ = yym3153 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3105 := r.ContainerType() - if yyct3105 == codecSelferValueTypeMap1234 { - yyl3105 := r.ReadMapStart() - if yyl3105 == 0 { + yyct3154 := r.ContainerType() + if yyct3154 == codecSelferValueTypeMap1234 { + yyl3154 := r.ReadMapStart() + if yyl3154 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3105, d) + x.codecDecodeSelfFromMap(yyl3154, d) } - } else if yyct3105 == codecSelferValueTypeArray1234 { - yyl3105 := r.ReadArrayStart() - if yyl3105 == 0 { + } else if yyct3154 == codecSelferValueTypeArray1234 { + yyl3154 := r.ReadArrayStart() + if yyl3154 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3105, d) + x.codecDecodeSelfFromArray(yyl3154, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39759,12 +40296,12 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3106Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3106Slc - var yyhl3106 bool = l >= 0 - for yyj3106 := 0; ; yyj3106++ { - if yyhl3106 { - if yyj3106 >= l { + var yys3155Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3155Slc + var yyhl3155 bool = l >= 0 + for yyj3155 := 0; ; yyj3155++ { + if yyhl3155 { + if yyj3155 >= l { break } } else { @@ -39773,10 +40310,10 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3106Slc = r.DecodeBytes(yys3106Slc, true, true) - yys3106 := string(yys3106Slc) + yys3155Slc = r.DecodeBytes(yys3155Slc, true, true) + yys3155 := string(yys3155Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3106 { + switch yys3155 { case "podController": if r.TryDecodeAsNil() { if x.PodController != nil { @@ -39789,9 +40326,9 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3106) - } // end switch yys3106 - } // end for yyj3106 + z.DecStructFieldNotFound(-1, yys3155) + } // end switch yys3155 + } // end for yyj3155 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39799,16 +40336,16 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3108 int - var yyb3108 bool - var yyhl3108 bool = l >= 0 - yyj3108++ - if yyhl3108 { - yyb3108 = yyj3108 > l + var yyj3157 int + var yyb3157 bool + var yyhl3157 bool = l >= 0 + yyj3157++ + if yyhl3157 { + yyb3157 = yyj3157 > l } else { - yyb3108 = r.CheckBreak() + yyb3157 = r.CheckBreak() } - if yyb3108 { + if yyb3157 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39824,17 +40361,17 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PodController.CodecDecodeSelf(d) } for { - yyj3108++ - if yyhl3108 { - yyb3108 = yyj3108 > l + yyj3157++ + if yyhl3157 { + yyb3157 = yyj3157 > l } else { - yyb3108 = r.CheckBreak() + yyb3157 = r.CheckBreak() } - if yyb3108 { + if yyb3157 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3108-1, "") + z.DecStructFieldNotFound(yyj3157-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39846,37 +40383,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3110 := z.EncBinary() - _ = yym3110 + yym3159 := z.EncBinary() + _ = yym3159 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3111 := !z.EncBinary() - yy2arr3111 := z.EncBasicHandle().StructToArray - var yyq3111 [2]bool - _, _, _ = yysep3111, yyq3111, yy2arr3111 - const yyr3111 bool = false - yyq3111[1] = x.SizeBytes != 0 - var yynn3111 int - if yyr3111 || yy2arr3111 { + yysep3160 := !z.EncBinary() + yy2arr3160 := z.EncBasicHandle().StructToArray + var yyq3160 [2]bool + _, _, _ = yysep3160, yyq3160, yy2arr3160 + const yyr3160 bool = false + yyq3160[1] = x.SizeBytes != 0 + var yynn3160 int + if yyr3160 || yy2arr3160 { r.EncodeArrayStart(2) } else { - yynn3111 = 1 - for _, b := range yyq3111 { + yynn3160 = 1 + for _, b := range yyq3160 { if b { - yynn3111++ + yynn3160++ } } - r.EncodeMapStart(yynn3111) - yynn3111 = 0 + r.EncodeMapStart(yynn3160) + yynn3160 = 0 } - if yyr3111 || yy2arr3111 { + if yyr3160 || yy2arr3160 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Names == nil { r.EncodeNil() } else { - yym3113 := z.EncBinary() - _ = yym3113 + yym3162 := z.EncBinary() + _ = yym3162 if false { } else { z.F.EncSliceStringV(x.Names, false, e) @@ -39889,19 +40426,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.Names == nil { r.EncodeNil() } else { - yym3114 := z.EncBinary() - _ = yym3114 + yym3163 := z.EncBinary() + _ = yym3163 if false { } else { z.F.EncSliceStringV(x.Names, false, e) } } } - if yyr3111 || yy2arr3111 { + if yyr3160 || yy2arr3160 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3111[1] { - yym3116 := z.EncBinary() - _ = yym3116 + if yyq3160[1] { + yym3165 := z.EncBinary() + _ = yym3165 if false { } else { r.EncodeInt(int64(x.SizeBytes)) @@ -39910,19 +40447,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3111[1] { + if yyq3160[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sizeBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3117 := z.EncBinary() - _ = yym3117 + yym3166 := z.EncBinary() + _ = yym3166 if false { } else { r.EncodeInt(int64(x.SizeBytes)) } } } - if yyr3111 || yy2arr3111 { + if yyr3160 || yy2arr3160 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39935,25 +40472,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3118 := z.DecBinary() - _ = yym3118 + yym3167 := z.DecBinary() + _ = yym3167 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3119 := r.ContainerType() - if yyct3119 == codecSelferValueTypeMap1234 { - yyl3119 := r.ReadMapStart() - if yyl3119 == 0 { + yyct3168 := r.ContainerType() + if yyct3168 == codecSelferValueTypeMap1234 { + yyl3168 := r.ReadMapStart() + if yyl3168 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3119, d) + x.codecDecodeSelfFromMap(yyl3168, d) } - } else if yyct3119 == codecSelferValueTypeArray1234 { - yyl3119 := r.ReadArrayStart() - if yyl3119 == 0 { + } else if yyct3168 == codecSelferValueTypeArray1234 { + yyl3168 := r.ReadArrayStart() + if yyl3168 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3119, d) + x.codecDecodeSelfFromArray(yyl3168, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39965,12 +40502,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3120Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3120Slc - var yyhl3120 bool = l >= 0 - for yyj3120 := 0; ; yyj3120++ { - if yyhl3120 { - if yyj3120 >= l { + var yys3169Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3169Slc + var yyhl3169 bool = l >= 0 + for yyj3169 := 0; ; yyj3169++ { + if yyhl3169 { + if yyj3169 >= l { break } } else { @@ -39979,20 +40516,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3120Slc = r.DecodeBytes(yys3120Slc, true, true) - yys3120 := string(yys3120Slc) + yys3169Slc = r.DecodeBytes(yys3169Slc, true, true) + yys3169 := string(yys3169Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3120 { + switch yys3169 { case "names": if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3121 := &x.Names - yym3122 := z.DecBinary() - _ = yym3122 + yyv3170 := &x.Names + yym3171 := z.DecBinary() + _ = yym3171 if false { } else { - z.F.DecSliceStringX(yyv3121, false, d) + z.F.DecSliceStringX(yyv3170, false, d) } } case "sizeBytes": @@ -40002,9 +40539,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys3120) - } // end switch yys3120 - } // end for yyj3120 + z.DecStructFieldNotFound(-1, yys3169) + } // end switch yys3169 + } // end for yyj3169 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40012,16 +40549,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3124 int - var yyb3124 bool - var yyhl3124 bool = l >= 0 - yyj3124++ - if yyhl3124 { - yyb3124 = yyj3124 > l + var yyj3173 int + var yyb3173 bool + var yyhl3173 bool = l >= 0 + yyj3173++ + if yyhl3173 { + yyb3173 = yyj3173 > l } else { - yyb3124 = r.CheckBreak() + yyb3173 = r.CheckBreak() } - if yyb3124 { + if yyb3173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40029,21 +40566,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3125 := &x.Names - yym3126 := z.DecBinary() - _ = yym3126 + yyv3174 := &x.Names + yym3175 := z.DecBinary() + _ = yym3175 if false { } else { - z.F.DecSliceStringX(yyv3125, false, d) + z.F.DecSliceStringX(yyv3174, false, d) } } - yyj3124++ - if yyhl3124 { - yyb3124 = yyj3124 > l + yyj3173++ + if yyhl3173 { + yyb3173 = yyj3173 > l } else { - yyb3124 = r.CheckBreak() + yyb3173 = r.CheckBreak() } - if yyb3124 { + if yyb3173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40054,17 +40591,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } for { - yyj3124++ - if yyhl3124 { - yyb3124 = yyj3124 > l + yyj3173++ + if yyhl3173 { + yyb3173 = yyj3173 > l } else { - yyb3124 = r.CheckBreak() + yyb3173 = r.CheckBreak() } - if yyb3124 { + if yyb3173 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3124-1, "") + z.DecStructFieldNotFound(yyj3173-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40073,8 +40610,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3128 := z.EncBinary() - _ = yym3128 + yym3177 := z.EncBinary() + _ = yym3177 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40086,8 +40623,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3129 := z.DecBinary() - _ = yym3129 + yym3178 := z.DecBinary() + _ = yym3178 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40099,8 +40636,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3130 := z.EncBinary() - _ = yym3130 + yym3179 := z.EncBinary() + _ = yym3179 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40112,8 +40649,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3131 := z.DecBinary() - _ = yym3131 + yym3180 := z.DecBinary() + _ = yym3180 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40128,34 +40665,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3132 := z.EncBinary() - _ = yym3132 + yym3181 := z.EncBinary() + _ = yym3181 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3133 := !z.EncBinary() - yy2arr3133 := z.EncBasicHandle().StructToArray - var yyq3133 [6]bool - _, _, _ = yysep3133, yyq3133, yy2arr3133 - const yyr3133 bool = false - yyq3133[2] = true - yyq3133[3] = true - yyq3133[4] = x.Reason != "" - yyq3133[5] = x.Message != "" - var yynn3133 int - if yyr3133 || yy2arr3133 { + yysep3182 := !z.EncBinary() + yy2arr3182 := z.EncBasicHandle().StructToArray + var yyq3182 [6]bool + _, _, _ = yysep3182, yyq3182, yy2arr3182 + const yyr3182 bool = false + yyq3182[2] = true + yyq3182[3] = true + yyq3182[4] = x.Reason != "" + yyq3182[5] = x.Message != "" + var yynn3182 int + if yyr3182 || yy2arr3182 { r.EncodeArrayStart(6) } else { - yynn3133 = 2 - for _, b := range yyq3133 { + yynn3182 = 2 + for _, b := range yyq3182 { if b { - yynn3133++ + yynn3182++ } } - r.EncodeMapStart(yynn3133) - yynn3133 = 0 + r.EncodeMapStart(yynn3182) + yynn3182 = 0 } - if yyr3133 || yy2arr3133 { + if yyr3182 || yy2arr3182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -40164,7 +40701,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3133 || yy2arr3133 { + if yyr3182 || yy2arr3182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -40173,85 +40710,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3133 || yy2arr3133 { + if yyr3182 || yy2arr3182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3133[2] { - yy3137 := &x.LastHeartbeatTime - yym3138 := z.EncBinary() - _ = yym3138 + if yyq3182[2] { + yy3186 := &x.LastHeartbeatTime + yym3187 := z.EncBinary() + _ = yym3187 if false { - } else if z.HasExtensions() && z.EncExt(yy3137) { - } else if yym3138 { - z.EncBinaryMarshal(yy3137) - } else if !yym3138 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3137) + } else if z.HasExtensions() && z.EncExt(yy3186) { + } else if yym3187 { + z.EncBinaryMarshal(yy3186) + } else if !yym3187 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3186) } else { - z.EncFallback(yy3137) + z.EncFallback(yy3186) } } else { r.EncodeNil() } } else { - if yyq3133[2] { + if yyq3182[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3139 := &x.LastHeartbeatTime - yym3140 := z.EncBinary() - _ = yym3140 + yy3188 := &x.LastHeartbeatTime + yym3189 := z.EncBinary() + _ = yym3189 if false { - } else if z.HasExtensions() && z.EncExt(yy3139) { - } else if yym3140 { - z.EncBinaryMarshal(yy3139) - } else if !yym3140 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3139) + } else if z.HasExtensions() && z.EncExt(yy3188) { + } else if yym3189 { + z.EncBinaryMarshal(yy3188) + } else if !yym3189 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3188) } else { - z.EncFallback(yy3139) + z.EncFallback(yy3188) } } } - if yyr3133 || yy2arr3133 { + if yyr3182 || yy2arr3182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3133[3] { - yy3142 := &x.LastTransitionTime - yym3143 := z.EncBinary() - _ = yym3143 + if yyq3182[3] { + yy3191 := &x.LastTransitionTime + yym3192 := z.EncBinary() + _ = yym3192 if false { - } else if z.HasExtensions() && z.EncExt(yy3142) { - } else if yym3143 { - z.EncBinaryMarshal(yy3142) - } else if !yym3143 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3142) + } else if z.HasExtensions() && z.EncExt(yy3191) { + } else if yym3192 { + z.EncBinaryMarshal(yy3191) + } else if !yym3192 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3191) } else { - z.EncFallback(yy3142) + z.EncFallback(yy3191) } } else { r.EncodeNil() } } else { - if yyq3133[3] { + if yyq3182[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3144 := &x.LastTransitionTime - yym3145 := z.EncBinary() - _ = yym3145 + yy3193 := &x.LastTransitionTime + yym3194 := z.EncBinary() + _ = yym3194 if false { - } else if z.HasExtensions() && z.EncExt(yy3144) { - } else if yym3145 { - z.EncBinaryMarshal(yy3144) - } else if !yym3145 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3144) + } else if z.HasExtensions() && z.EncExt(yy3193) { + } else if yym3194 { + z.EncBinaryMarshal(yy3193) + } else if !yym3194 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3193) } else { - z.EncFallback(yy3144) + z.EncFallback(yy3193) } } } - if yyr3133 || yy2arr3133 { + if yyr3182 || yy2arr3182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3133[4] { - yym3147 := z.EncBinary() - _ = yym3147 + if yyq3182[4] { + yym3196 := z.EncBinary() + _ = yym3196 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -40260,23 +40797,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3133[4] { + if yyq3182[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3148 := z.EncBinary() - _ = yym3148 + yym3197 := z.EncBinary() + _ = yym3197 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3133 || yy2arr3133 { + if yyr3182 || yy2arr3182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3133[5] { - yym3150 := z.EncBinary() - _ = yym3150 + if yyq3182[5] { + yym3199 := z.EncBinary() + _ = yym3199 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -40285,19 +40822,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3133[5] { + if yyq3182[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3151 := z.EncBinary() - _ = yym3151 + yym3200 := z.EncBinary() + _ = yym3200 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3133 || yy2arr3133 { + if yyr3182 || yy2arr3182 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40310,25 +40847,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3152 := z.DecBinary() - _ = yym3152 + yym3201 := z.DecBinary() + _ = yym3201 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3153 := r.ContainerType() - if yyct3153 == codecSelferValueTypeMap1234 { - yyl3153 := r.ReadMapStart() - if yyl3153 == 0 { + yyct3202 := r.ContainerType() + if yyct3202 == codecSelferValueTypeMap1234 { + yyl3202 := r.ReadMapStart() + if yyl3202 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3153, d) + x.codecDecodeSelfFromMap(yyl3202, d) } - } else if yyct3153 == codecSelferValueTypeArray1234 { - yyl3153 := r.ReadArrayStart() - if yyl3153 == 0 { + } else if yyct3202 == codecSelferValueTypeArray1234 { + yyl3202 := r.ReadArrayStart() + if yyl3202 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3153, d) + x.codecDecodeSelfFromArray(yyl3202, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40340,12 +40877,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3154Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3154Slc - var yyhl3154 bool = l >= 0 - for yyj3154 := 0; ; yyj3154++ { - if yyhl3154 { - if yyj3154 >= 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 { @@ -40354,10 +40891,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3154Slc = r.DecodeBytes(yys3154Slc, true, true) - yys3154 := string(yys3154Slc) + yys3203Slc = r.DecodeBytes(yys3203Slc, true, true) + yys3203 := string(yys3203Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3154 { + switch yys3203 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -40374,34 +40911,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3157 := &x.LastHeartbeatTime - yym3158 := z.DecBinary() - _ = yym3158 + yyv3206 := &x.LastHeartbeatTime + yym3207 := z.DecBinary() + _ = yym3207 if false { - } else if z.HasExtensions() && z.DecExt(yyv3157) { - } else if yym3158 { - z.DecBinaryUnmarshal(yyv3157) - } else if !yym3158 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3157) + } else if z.HasExtensions() && z.DecExt(yyv3206) { + } else if yym3207 { + z.DecBinaryUnmarshal(yyv3206) + } else if !yym3207 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3206) } else { - z.DecFallback(yyv3157, false) + z.DecFallback(yyv3206, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3159 := &x.LastTransitionTime - yym3160 := z.DecBinary() - _ = yym3160 + yyv3208 := &x.LastTransitionTime + yym3209 := z.DecBinary() + _ = yym3209 if false { - } else if z.HasExtensions() && z.DecExt(yyv3159) { - } else if yym3160 { - z.DecBinaryUnmarshal(yyv3159) - } else if !yym3160 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3159) + } else if z.HasExtensions() && z.DecExt(yyv3208) { + } else if yym3209 { + z.DecBinaryUnmarshal(yyv3208) + } else if !yym3209 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3208) } else { - z.DecFallback(yyv3159, false) + z.DecFallback(yyv3208, false) } } case "reason": @@ -40417,9 +40954,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3154) - } // end switch yys3154 - } // end for yyj3154 + z.DecStructFieldNotFound(-1, yys3203) + } // end switch yys3203 + } // end for yyj3203 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40427,16 +40964,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3163 int - var yyb3163 bool - var yyhl3163 bool = l >= 0 - yyj3163++ - if yyhl3163 { - yyb3163 = yyj3163 > l + var yyj3212 int + var yyb3212 bool + var yyhl3212 bool = l >= 0 + yyj3212++ + if yyhl3212 { + yyb3212 = yyj3212 > l } else { - yyb3163 = r.CheckBreak() + yyb3212 = r.CheckBreak() } - if yyb3163 { + if yyb3212 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40446,13 +40983,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj3163++ - if yyhl3163 { - yyb3163 = yyj3163 > l + yyj3212++ + if yyhl3212 { + yyb3212 = yyj3212 > l } else { - yyb3163 = r.CheckBreak() + yyb3212 = r.CheckBreak() } - if yyb3163 { + if yyb3212 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40462,13 +40999,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3163++ - if yyhl3163 { - yyb3163 = yyj3163 > l + yyj3212++ + if yyhl3212 { + yyb3212 = yyj3212 > l } else { - yyb3163 = r.CheckBreak() + yyb3212 = r.CheckBreak() } - if yyb3163 { + if yyb3212 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40476,26 +41013,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv3166 := &x.LastHeartbeatTime - yym3167 := z.DecBinary() - _ = yym3167 + yyv3215 := &x.LastHeartbeatTime + yym3216 := z.DecBinary() + _ = yym3216 if false { - } else if z.HasExtensions() && z.DecExt(yyv3166) { - } else if yym3167 { - z.DecBinaryUnmarshal(yyv3166) - } else if !yym3167 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3166) + } else if z.HasExtensions() && z.DecExt(yyv3215) { + } else if yym3216 { + z.DecBinaryUnmarshal(yyv3215) + } else if !yym3216 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3215) } else { - z.DecFallback(yyv3166, false) + z.DecFallback(yyv3215, false) } } - yyj3163++ - if yyhl3163 { - yyb3163 = yyj3163 > l + yyj3212++ + if yyhl3212 { + yyb3212 = yyj3212 > l } else { - yyb3163 = r.CheckBreak() + yyb3212 = r.CheckBreak() } - if yyb3163 { + if yyb3212 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40503,26 +41040,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv3168 := &x.LastTransitionTime - yym3169 := z.DecBinary() - _ = yym3169 + yyv3217 := &x.LastTransitionTime + yym3218 := z.DecBinary() + _ = yym3218 if false { - } else if z.HasExtensions() && z.DecExt(yyv3168) { - } else if yym3169 { - z.DecBinaryUnmarshal(yyv3168) - } else if !yym3169 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3168) + } else if z.HasExtensions() && z.DecExt(yyv3217) { + } else if yym3218 { + z.DecBinaryUnmarshal(yyv3217) + } else if !yym3218 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3217) } else { - z.DecFallback(yyv3168, false) + z.DecFallback(yyv3217, false) } } - yyj3163++ - if yyhl3163 { - yyb3163 = yyj3163 > l + yyj3212++ + if yyhl3212 { + yyb3212 = yyj3212 > l } else { - yyb3163 = r.CheckBreak() + yyb3212 = r.CheckBreak() } - if yyb3163 { + if yyb3212 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40532,13 +41069,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3163++ - if yyhl3163 { - yyb3163 = yyj3163 > l + yyj3212++ + if yyhl3212 { + yyb3212 = yyj3212 > l } else { - yyb3163 = r.CheckBreak() + yyb3212 = r.CheckBreak() } - if yyb3163 { + if yyb3212 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40549,17 +41086,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj3163++ - if yyhl3163 { - yyb3163 = yyj3163 > l + yyj3212++ + if yyhl3212 { + yyb3212 = yyj3212 > l } else { - yyb3163 = r.CheckBreak() + yyb3212 = r.CheckBreak() } - if yyb3163 { + if yyb3212 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3163-1, "") + z.DecStructFieldNotFound(yyj3212-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40568,8 +41105,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3172 := z.EncBinary() - _ = yym3172 + yym3221 := z.EncBinary() + _ = yym3221 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40581,8 +41118,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3173 := z.DecBinary() - _ = yym3173 + yym3222 := z.DecBinary() + _ = yym3222 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40597,30 +41134,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3174 := z.EncBinary() - _ = yym3174 + yym3223 := z.EncBinary() + _ = yym3223 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3175 := !z.EncBinary() - yy2arr3175 := z.EncBasicHandle().StructToArray - var yyq3175 [2]bool - _, _, _ = yysep3175, yyq3175, yy2arr3175 - const yyr3175 bool = false - var yynn3175 int - if yyr3175 || yy2arr3175 { + yysep3224 := !z.EncBinary() + yy2arr3224 := z.EncBasicHandle().StructToArray + var yyq3224 [2]bool + _, _, _ = yysep3224, yyq3224, yy2arr3224 + const yyr3224 bool = false + var yynn3224 int + if yyr3224 || yy2arr3224 { r.EncodeArrayStart(2) } else { - yynn3175 = 2 - for _, b := range yyq3175 { + yynn3224 = 2 + for _, b := range yyq3224 { if b { - yynn3175++ + yynn3224++ } } - r.EncodeMapStart(yynn3175) - yynn3175 = 0 + r.EncodeMapStart(yynn3224) + yynn3224 = 0 } - if yyr3175 || yy2arr3175 { + if yyr3224 || yy2arr3224 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -40629,10 +41166,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3175 || yy2arr3175 { + if yyr3224 || yy2arr3224 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3178 := z.EncBinary() - _ = yym3178 + yym3227 := z.EncBinary() + _ = yym3227 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -40641,14 +41178,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3179 := z.EncBinary() - _ = yym3179 + yym3228 := z.EncBinary() + _ = yym3228 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr3175 || yy2arr3175 { + if yyr3224 || yy2arr3224 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40661,25 +41198,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3180 := z.DecBinary() - _ = yym3180 + yym3229 := z.DecBinary() + _ = yym3229 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3181 := r.ContainerType() - if yyct3181 == codecSelferValueTypeMap1234 { - yyl3181 := r.ReadMapStart() - if yyl3181 == 0 { + yyct3230 := r.ContainerType() + if yyct3230 == codecSelferValueTypeMap1234 { + yyl3230 := r.ReadMapStart() + if yyl3230 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3181, d) + x.codecDecodeSelfFromMap(yyl3230, d) } - } else if yyct3181 == codecSelferValueTypeArray1234 { - yyl3181 := r.ReadArrayStart() - if yyl3181 == 0 { + } else if yyct3230 == codecSelferValueTypeArray1234 { + yyl3230 := r.ReadArrayStart() + if yyl3230 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3181, d) + x.codecDecodeSelfFromArray(yyl3230, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40691,12 +41228,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3182Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3182Slc - var yyhl3182 bool = l >= 0 - for yyj3182 := 0; ; yyj3182++ { - if yyhl3182 { - if yyj3182 >= l { + var yys3231Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3231Slc + var yyhl3231 bool = l >= 0 + for yyj3231 := 0; ; yyj3231++ { + if yyhl3231 { + if yyj3231 >= l { break } } else { @@ -40705,10 +41242,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3182Slc = r.DecodeBytes(yys3182Slc, true, true) - yys3182 := string(yys3182Slc) + yys3231Slc = r.DecodeBytes(yys3231Slc, true, true) + yys3231 := string(yys3231Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3182 { + switch yys3231 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -40722,9 +41259,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3182) - } // end switch yys3182 - } // end for yyj3182 + z.DecStructFieldNotFound(-1, yys3231) + } // end switch yys3231 + } // end for yyj3231 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40732,16 +41269,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3185 int - var yyb3185 bool - var yyhl3185 bool = l >= 0 - yyj3185++ - if yyhl3185 { - yyb3185 = yyj3185 > l + var yyj3234 int + var yyb3234 bool + var yyhl3234 bool = l >= 0 + yyj3234++ + if yyhl3234 { + yyb3234 = yyj3234 > l } else { - yyb3185 = r.CheckBreak() + yyb3234 = r.CheckBreak() } - if yyb3185 { + if yyb3234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40751,13 +41288,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj3185++ - if yyhl3185 { - yyb3185 = yyj3185 > l + yyj3234++ + if yyhl3234 { + yyb3234 = yyj3234 > l } else { - yyb3185 = r.CheckBreak() + yyb3234 = r.CheckBreak() } - if yyb3185 { + if yyb3234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40768,17 +41305,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj3185++ - if yyhl3185 { - yyb3185 = yyj3185 > l + yyj3234++ + if yyhl3234 { + yyb3234 = yyj3234 > l } else { - yyb3185 = r.CheckBreak() + yyb3234 = r.CheckBreak() } - if yyb3185 { + if yyb3234 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3185-1, "") + z.DecStructFieldNotFound(yyj3234-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40787,8 +41324,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3188 := z.EncBinary() - _ = yym3188 + yym3237 := z.EncBinary() + _ = yym3237 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40800,8 +41337,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3189 := z.DecBinary() - _ = yym3189 + yym3238 := z.DecBinary() + _ = yym3238 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40816,8 +41353,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3190 := z.EncBinary() - _ = yym3190 + yym3239 := z.EncBinary() + _ = yym3239 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40830,8 +41367,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3191 := z.DecBinary() - _ = yym3191 + yym3240 := z.DecBinary() + _ = yym3240 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40846,39 +41383,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3192 := z.EncBinary() - _ = yym3192 + yym3241 := z.EncBinary() + _ = yym3241 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3193 := !z.EncBinary() - yy2arr3193 := z.EncBasicHandle().StructToArray - var yyq3193 [5]bool - _, _, _ = yysep3193, yyq3193, yy2arr3193 - const yyr3193 bool = false - yyq3193[0] = x.Kind != "" - yyq3193[1] = x.APIVersion != "" - yyq3193[2] = true - yyq3193[3] = true - yyq3193[4] = true - var yynn3193 int - if yyr3193 || yy2arr3193 { + yysep3242 := !z.EncBinary() + yy2arr3242 := z.EncBasicHandle().StructToArray + var yyq3242 [5]bool + _, _, _ = yysep3242, yyq3242, yy2arr3242 + const yyr3242 bool = false + yyq3242[0] = x.Kind != "" + yyq3242[1] = x.APIVersion != "" + yyq3242[2] = true + yyq3242[3] = true + yyq3242[4] = true + var yynn3242 int + if yyr3242 || yy2arr3242 { r.EncodeArrayStart(5) } else { - yynn3193 = 0 - for _, b := range yyq3193 { + yynn3242 = 0 + for _, b := range yyq3242 { if b { - yynn3193++ + yynn3242++ } } - r.EncodeMapStart(yynn3193) - yynn3193 = 0 + r.EncodeMapStart(yynn3242) + yynn3242 = 0 } - if yyr3193 || yy2arr3193 { + if yyr3242 || yy2arr3242 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3193[0] { - yym3195 := z.EncBinary() - _ = yym3195 + if yyq3242[0] { + yym3244 := z.EncBinary() + _ = yym3244 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40887,23 +41424,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3193[0] { + if yyq3242[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3196 := z.EncBinary() - _ = yym3196 + yym3245 := z.EncBinary() + _ = yym3245 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3193 || yy2arr3193 { + if yyr3242 || yy2arr3242 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3193[1] { - yym3198 := z.EncBinary() - _ = yym3198 + if yyq3242[1] { + yym3247 := z.EncBinary() + _ = yym3247 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40912,70 +41449,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3193[1] { + if yyq3242[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3199 := z.EncBinary() - _ = yym3199 + yym3248 := z.EncBinary() + _ = yym3248 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3193 || yy2arr3193 { + if yyr3242 || yy2arr3242 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3193[2] { - yy3201 := &x.ObjectMeta - yy3201.CodecEncodeSelf(e) + if yyq3242[2] { + yy3250 := &x.ObjectMeta + yy3250.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3193[2] { + if yyq3242[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3202 := &x.ObjectMeta - yy3202.CodecEncodeSelf(e) + yy3251 := &x.ObjectMeta + yy3251.CodecEncodeSelf(e) } } - if yyr3193 || yy2arr3193 { + if yyr3242 || yy2arr3242 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3193[3] { - yy3204 := &x.Spec - yy3204.CodecEncodeSelf(e) + if yyq3242[3] { + yy3253 := &x.Spec + yy3253.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3193[3] { + if yyq3242[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3205 := &x.Spec - yy3205.CodecEncodeSelf(e) + yy3254 := &x.Spec + yy3254.CodecEncodeSelf(e) } } - if yyr3193 || yy2arr3193 { + if yyr3242 || yy2arr3242 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3193[4] { - yy3207 := &x.Status - yy3207.CodecEncodeSelf(e) + if yyq3242[4] { + yy3256 := &x.Status + yy3256.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3193[4] { + if yyq3242[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3208 := &x.Status - yy3208.CodecEncodeSelf(e) + yy3257 := &x.Status + yy3257.CodecEncodeSelf(e) } } - if yyr3193 || yy2arr3193 { + if yyr3242 || yy2arr3242 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40988,25 +41525,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3209 := z.DecBinary() - _ = yym3209 + yym3258 := z.DecBinary() + _ = yym3258 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3210 := r.ContainerType() - if yyct3210 == codecSelferValueTypeMap1234 { - yyl3210 := r.ReadMapStart() - if yyl3210 == 0 { + yyct3259 := r.ContainerType() + if yyct3259 == codecSelferValueTypeMap1234 { + yyl3259 := r.ReadMapStart() + if yyl3259 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3210, d) + x.codecDecodeSelfFromMap(yyl3259, d) } - } else if yyct3210 == codecSelferValueTypeArray1234 { - yyl3210 := r.ReadArrayStart() - if yyl3210 == 0 { + } else if yyct3259 == codecSelferValueTypeArray1234 { + yyl3259 := r.ReadArrayStart() + if yyl3259 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3210, d) + x.codecDecodeSelfFromArray(yyl3259, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41018,12 +41555,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3211Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3211Slc - var yyhl3211 bool = l >= 0 - for yyj3211 := 0; ; yyj3211++ { - if yyhl3211 { - if yyj3211 >= l { + var yys3260Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3260Slc + var yyhl3260 bool = l >= 0 + for yyj3260 := 0; ; yyj3260++ { + if yyhl3260 { + if yyj3260 >= l { break } } else { @@ -41032,10 +41569,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3211Slc = r.DecodeBytes(yys3211Slc, true, true) - yys3211 := string(yys3211Slc) + yys3260Slc = r.DecodeBytes(yys3260Slc, true, true) + yys3260 := string(yys3260Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3211 { + switch yys3260 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41052,27 +41589,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3214 := &x.ObjectMeta - yyv3214.CodecDecodeSelf(d) + yyv3263 := &x.ObjectMeta + yyv3263.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3215 := &x.Spec - yyv3215.CodecDecodeSelf(d) + yyv3264 := &x.Spec + yyv3264.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3216 := &x.Status - yyv3216.CodecDecodeSelf(d) + yyv3265 := &x.Status + yyv3265.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3211) - } // end switch yys3211 - } // end for yyj3211 + z.DecStructFieldNotFound(-1, yys3260) + } // end switch yys3260 + } // end for yyj3260 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41080,16 +41617,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3217 int - var yyb3217 bool - var yyhl3217 bool = l >= 0 - yyj3217++ - if yyhl3217 { - yyb3217 = yyj3217 > l + var yyj3266 int + var yyb3266 bool + var yyhl3266 bool = l >= 0 + yyj3266++ + if yyhl3266 { + yyb3266 = yyj3266 > l } else { - yyb3217 = r.CheckBreak() + yyb3266 = r.CheckBreak() } - if yyb3217 { + if yyb3266 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41099,13 +41636,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3217++ - if yyhl3217 { - yyb3217 = yyj3217 > l + yyj3266++ + if yyhl3266 { + yyb3266 = yyj3266 > l } else { - yyb3217 = r.CheckBreak() + yyb3266 = r.CheckBreak() } - if yyb3217 { + if yyb3266 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41115,13 +41652,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3217++ - if yyhl3217 { - yyb3217 = yyj3217 > l + yyj3266++ + if yyhl3266 { + yyb3266 = yyj3266 > l } else { - yyb3217 = r.CheckBreak() + yyb3266 = r.CheckBreak() } - if yyb3217 { + if yyb3266 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41129,16 +41666,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3220 := &x.ObjectMeta - yyv3220.CodecDecodeSelf(d) + yyv3269 := &x.ObjectMeta + yyv3269.CodecDecodeSelf(d) } - yyj3217++ - if yyhl3217 { - yyb3217 = yyj3217 > l + yyj3266++ + if yyhl3266 { + yyb3266 = yyj3266 > l } else { - yyb3217 = r.CheckBreak() + yyb3266 = r.CheckBreak() } - if yyb3217 { + if yyb3266 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41146,16 +41683,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3221 := &x.Spec - yyv3221.CodecDecodeSelf(d) + yyv3270 := &x.Spec + yyv3270.CodecDecodeSelf(d) } - yyj3217++ - if yyhl3217 { - yyb3217 = yyj3217 > l + yyj3266++ + if yyhl3266 { + yyb3266 = yyj3266 > l } else { - yyb3217 = r.CheckBreak() + yyb3266 = r.CheckBreak() } - if yyb3217 { + if yyb3266 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41163,21 +41700,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3222 := &x.Status - yyv3222.CodecDecodeSelf(d) + yyv3271 := &x.Status + yyv3271.CodecDecodeSelf(d) } for { - yyj3217++ - if yyhl3217 { - yyb3217 = yyj3217 > l + yyj3266++ + if yyhl3266 { + yyb3266 = yyj3266 > l } else { - yyb3217 = r.CheckBreak() + yyb3266 = r.CheckBreak() } - if yyb3217 { + if yyb3266 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3217-1, "") + z.DecStructFieldNotFound(yyj3266-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41189,37 +41726,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3223 := z.EncBinary() - _ = yym3223 + yym3272 := z.EncBinary() + _ = yym3272 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3224 := !z.EncBinary() - yy2arr3224 := z.EncBasicHandle().StructToArray - var yyq3224 [4]bool - _, _, _ = yysep3224, yyq3224, yy2arr3224 - const yyr3224 bool = false - yyq3224[0] = x.Kind != "" - yyq3224[1] = x.APIVersion != "" - yyq3224[2] = true - var yynn3224 int - if yyr3224 || yy2arr3224 { + yysep3273 := !z.EncBinary() + yy2arr3273 := z.EncBasicHandle().StructToArray + var yyq3273 [4]bool + _, _, _ = yysep3273, yyq3273, yy2arr3273 + const yyr3273 bool = false + yyq3273[0] = x.Kind != "" + yyq3273[1] = x.APIVersion != "" + yyq3273[2] = true + var yynn3273 int + if yyr3273 || yy2arr3273 { r.EncodeArrayStart(4) } else { - yynn3224 = 1 - for _, b := range yyq3224 { + yynn3273 = 1 + for _, b := range yyq3273 { if b { - yynn3224++ + yynn3273++ } } - r.EncodeMapStart(yynn3224) - yynn3224 = 0 + r.EncodeMapStart(yynn3273) + yynn3273 = 0 } - if yyr3224 || yy2arr3224 { + if yyr3273 || yy2arr3273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3224[0] { - yym3226 := z.EncBinary() - _ = yym3226 + if yyq3273[0] { + yym3275 := z.EncBinary() + _ = yym3275 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41228,23 +41765,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3224[0] { + if yyq3273[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3227 := z.EncBinary() - _ = yym3227 + yym3276 := z.EncBinary() + _ = yym3276 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3224 || yy2arr3224 { + if yyr3273 || yy2arr3273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3224[1] { - yym3229 := z.EncBinary() - _ = yym3229 + if yyq3273[1] { + yym3278 := z.EncBinary() + _ = yym3278 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41253,54 +41790,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3224[1] { + if yyq3273[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3230 := z.EncBinary() - _ = yym3230 + yym3279 := z.EncBinary() + _ = yym3279 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3224 || yy2arr3224 { + if yyr3273 || yy2arr3273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3224[2] { - yy3232 := &x.ListMeta - yym3233 := z.EncBinary() - _ = yym3233 + if yyq3273[2] { + yy3281 := &x.ListMeta + yym3282 := z.EncBinary() + _ = yym3282 if false { - } else if z.HasExtensions() && z.EncExt(yy3232) { + } else if z.HasExtensions() && z.EncExt(yy3281) { } else { - z.EncFallback(yy3232) + z.EncFallback(yy3281) } } else { r.EncodeNil() } } else { - if yyq3224[2] { + if yyq3273[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3234 := &x.ListMeta - yym3235 := z.EncBinary() - _ = yym3235 + yy3283 := &x.ListMeta + yym3284 := z.EncBinary() + _ = yym3284 if false { - } else if z.HasExtensions() && z.EncExt(yy3234) { + } else if z.HasExtensions() && z.EncExt(yy3283) { } else { - z.EncFallback(yy3234) + z.EncFallback(yy3283) } } } - if yyr3224 || yy2arr3224 { + if yyr3273 || yy2arr3273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3237 := z.EncBinary() - _ = yym3237 + yym3286 := z.EncBinary() + _ = yym3286 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -41313,15 +41850,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3238 := z.EncBinary() - _ = yym3238 + yym3287 := z.EncBinary() + _ = yym3287 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr3224 || yy2arr3224 { + if yyr3273 || yy2arr3273 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41334,25 +41871,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3239 := z.DecBinary() - _ = yym3239 + yym3288 := z.DecBinary() + _ = yym3288 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3240 := r.ContainerType() - if yyct3240 == codecSelferValueTypeMap1234 { - yyl3240 := r.ReadMapStart() - if yyl3240 == 0 { + yyct3289 := r.ContainerType() + if yyct3289 == codecSelferValueTypeMap1234 { + yyl3289 := r.ReadMapStart() + if yyl3289 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3240, d) + x.codecDecodeSelfFromMap(yyl3289, d) } - } else if yyct3240 == codecSelferValueTypeArray1234 { - yyl3240 := r.ReadArrayStart() - if yyl3240 == 0 { + } else if yyct3289 == codecSelferValueTypeArray1234 { + yyl3289 := r.ReadArrayStart() + if yyl3289 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3240, d) + x.codecDecodeSelfFromArray(yyl3289, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41364,12 +41901,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3241Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3241Slc - var yyhl3241 bool = l >= 0 - for yyj3241 := 0; ; yyj3241++ { - if yyhl3241 { - if yyj3241 >= l { + var yys3290Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3290Slc + var yyhl3290 bool = l >= 0 + for yyj3290 := 0; ; yyj3290++ { + if yyhl3290 { + if yyj3290 >= l { break } } else { @@ -41378,10 +41915,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3241Slc = r.DecodeBytes(yys3241Slc, true, true) - yys3241 := string(yys3241Slc) + yys3290Slc = r.DecodeBytes(yys3290Slc, true, true) + yys3290 := string(yys3290Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3241 { + switch yys3290 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41398,31 +41935,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3244 := &x.ListMeta - yym3245 := z.DecBinary() - _ = yym3245 + yyv3293 := &x.ListMeta + yym3294 := z.DecBinary() + _ = yym3294 if false { - } else if z.HasExtensions() && z.DecExt(yyv3244) { + } else if z.HasExtensions() && z.DecExt(yyv3293) { } else { - z.DecFallback(yyv3244, false) + z.DecFallback(yyv3293, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3246 := &x.Items - yym3247 := z.DecBinary() - _ = yym3247 + yyv3295 := &x.Items + yym3296 := z.DecBinary() + _ = yym3296 if false { } else { - h.decSliceNode((*[]Node)(yyv3246), d) + h.decSliceNode((*[]Node)(yyv3295), d) } } default: - z.DecStructFieldNotFound(-1, yys3241) - } // end switch yys3241 - } // end for yyj3241 + z.DecStructFieldNotFound(-1, yys3290) + } // end switch yys3290 + } // end for yyj3290 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41430,16 +41967,16 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3248 int - var yyb3248 bool - var yyhl3248 bool = l >= 0 - yyj3248++ - if yyhl3248 { - yyb3248 = yyj3248 > l + var yyj3297 int + var yyb3297 bool + var yyhl3297 bool = l >= 0 + yyj3297++ + if yyhl3297 { + yyb3297 = yyj3297 > l } else { - yyb3248 = r.CheckBreak() + yyb3297 = r.CheckBreak() } - if yyb3248 { + if yyb3297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41449,13 +41986,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3248++ - if yyhl3248 { - yyb3248 = yyj3248 > l + yyj3297++ + if yyhl3297 { + yyb3297 = yyj3297 > l } else { - yyb3248 = r.CheckBreak() + yyb3297 = r.CheckBreak() } - if yyb3248 { + if yyb3297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41465,13 +42002,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3248++ - if yyhl3248 { - yyb3248 = yyj3248 > l + yyj3297++ + if yyhl3297 { + yyb3297 = yyj3297 > l } else { - yyb3248 = r.CheckBreak() + yyb3297 = r.CheckBreak() } - if yyb3248 { + if yyb3297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41479,22 +42016,22 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3251 := &x.ListMeta - yym3252 := z.DecBinary() - _ = yym3252 + yyv3300 := &x.ListMeta + yym3301 := z.DecBinary() + _ = yym3301 if false { - } else if z.HasExtensions() && z.DecExt(yyv3251) { + } else if z.HasExtensions() && z.DecExt(yyv3300) { } else { - z.DecFallback(yyv3251, false) + z.DecFallback(yyv3300, false) } } - yyj3248++ - if yyhl3248 { - yyb3248 = yyj3248 > l + yyj3297++ + if yyhl3297 { + yyb3297 = yyj3297 > l } else { - yyb3248 = r.CheckBreak() + yyb3297 = r.CheckBreak() } - if yyb3248 { + if yyb3297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41502,26 +42039,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3253 := &x.Items - yym3254 := z.DecBinary() - _ = yym3254 + yyv3302 := &x.Items + yym3303 := z.DecBinary() + _ = yym3303 if false { } else { - h.decSliceNode((*[]Node)(yyv3253), d) + h.decSliceNode((*[]Node)(yyv3302), d) } } for { - yyj3248++ - if yyhl3248 { - yyb3248 = yyj3248 > l + yyj3297++ + if yyhl3297 { + yyb3297 = yyj3297 > l } else { - yyb3248 = r.CheckBreak() + yyb3297 = r.CheckBreak() } - if yyb3248 { + if yyb3297 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3248-1, "") + z.DecStructFieldNotFound(yyj3297-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41530,8 +42067,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3255 := z.EncBinary() - _ = yym3255 + yym3304 := z.EncBinary() + _ = yym3304 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41543,8 +42080,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3256 := z.DecBinary() - _ = yym3256 + yym3305 := z.DecBinary() + _ = yym3305 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41559,38 +42096,38 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3257 := z.EncBinary() - _ = yym3257 + yym3306 := z.EncBinary() + _ = yym3306 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3258 := !z.EncBinary() - yy2arr3258 := z.EncBasicHandle().StructToArray - var yyq3258 [1]bool - _, _, _ = yysep3258, yyq3258, yy2arr3258 - const yyr3258 bool = false - yyq3258[0] = len(x.Finalizers) != 0 - var yynn3258 int - if yyr3258 || yy2arr3258 { + yysep3307 := !z.EncBinary() + yy2arr3307 := z.EncBasicHandle().StructToArray + var yyq3307 [1]bool + _, _, _ = yysep3307, yyq3307, yy2arr3307 + const yyr3307 bool = false + yyq3307[0] = len(x.Finalizers) != 0 + var yynn3307 int + if yyr3307 || yy2arr3307 { r.EncodeArrayStart(1) } else { - yynn3258 = 0 - for _, b := range yyq3258 { + yynn3307 = 0 + for _, b := range yyq3307 { if b { - yynn3258++ + yynn3307++ } } - r.EncodeMapStart(yynn3258) - yynn3258 = 0 + r.EncodeMapStart(yynn3307) + yynn3307 = 0 } - if yyr3258 || yy2arr3258 { + if yyr3307 || yy2arr3307 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3258[0] { + if yyq3307[0] { if x.Finalizers == nil { r.EncodeNil() } else { - yym3260 := z.EncBinary() - _ = yym3260 + yym3309 := z.EncBinary() + _ = yym3309 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -41600,15 +42137,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3258[0] { + if yyq3307[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("finalizers")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym3261 := z.EncBinary() - _ = yym3261 + yym3310 := z.EncBinary() + _ = yym3310 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -41616,7 +42153,7 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3258 || yy2arr3258 { + if yyr3307 || yy2arr3307 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41629,25 +42166,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3262 := z.DecBinary() - _ = yym3262 + yym3311 := z.DecBinary() + _ = yym3311 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3263 := r.ContainerType() - if yyct3263 == codecSelferValueTypeMap1234 { - yyl3263 := r.ReadMapStart() - if yyl3263 == 0 { + yyct3312 := r.ContainerType() + if yyct3312 == codecSelferValueTypeMap1234 { + yyl3312 := r.ReadMapStart() + if yyl3312 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3263, d) + x.codecDecodeSelfFromMap(yyl3312, d) } - } else if yyct3263 == codecSelferValueTypeArray1234 { - yyl3263 := r.ReadArrayStart() - if yyl3263 == 0 { + } else if yyct3312 == codecSelferValueTypeArray1234 { + yyl3312 := r.ReadArrayStart() + if yyl3312 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3263, d) + x.codecDecodeSelfFromArray(yyl3312, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41659,12 +42196,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3264Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3264Slc - var yyhl3264 bool = l >= 0 - for yyj3264 := 0; ; yyj3264++ { - if yyhl3264 { - if yyj3264 >= l { + var yys3313Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3313Slc + var yyhl3313 bool = l >= 0 + for yyj3313 := 0; ; yyj3313++ { + if yyhl3313 { + if yyj3313 >= l { break } } else { @@ -41673,26 +42210,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3264Slc = r.DecodeBytes(yys3264Slc, true, true) - yys3264 := string(yys3264Slc) + yys3313Slc = r.DecodeBytes(yys3313Slc, true, true) + yys3313 := string(yys3313Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3264 { + switch yys3313 { case "finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3265 := &x.Finalizers - yym3266 := z.DecBinary() - _ = yym3266 + yyv3314 := &x.Finalizers + yym3315 := z.DecBinary() + _ = yym3315 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3265), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3314), d) } } default: - z.DecStructFieldNotFound(-1, yys3264) - } // end switch yys3264 - } // end for yyj3264 + z.DecStructFieldNotFound(-1, yys3313) + } // end switch yys3313 + } // end for yyj3313 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41700,16 +42237,16 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3267 int - var yyb3267 bool - var yyhl3267 bool = l >= 0 - yyj3267++ - if yyhl3267 { - yyb3267 = yyj3267 > l + var yyj3316 int + var yyb3316 bool + var yyhl3316 bool = l >= 0 + yyj3316++ + if yyhl3316 { + yyb3316 = yyj3316 > l } else { - yyb3267 = r.CheckBreak() + yyb3316 = r.CheckBreak() } - if yyb3267 { + if yyb3316 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41717,26 +42254,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3268 := &x.Finalizers - yym3269 := z.DecBinary() - _ = yym3269 + yyv3317 := &x.Finalizers + yym3318 := z.DecBinary() + _ = yym3318 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3268), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3317), d) } } for { - yyj3267++ - if yyhl3267 { - yyb3267 = yyj3267 > l + yyj3316++ + if yyhl3316 { + yyb3316 = yyj3316 > l } else { - yyb3267 = r.CheckBreak() + yyb3316 = r.CheckBreak() } - if yyb3267 { + if yyb3316 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3267-1, "") + z.DecStructFieldNotFound(yyj3316-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41748,46 +42285,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3270 := z.EncBinary() - _ = yym3270 + yym3319 := z.EncBinary() + _ = yym3319 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3271 := !z.EncBinary() - yy2arr3271 := z.EncBasicHandle().StructToArray - var yyq3271 [1]bool - _, _, _ = yysep3271, yyq3271, yy2arr3271 - const yyr3271 bool = false - yyq3271[0] = x.Phase != "" - var yynn3271 int - if yyr3271 || yy2arr3271 { + yysep3320 := !z.EncBinary() + yy2arr3320 := z.EncBasicHandle().StructToArray + var yyq3320 [1]bool + _, _, _ = yysep3320, yyq3320, yy2arr3320 + const yyr3320 bool = false + yyq3320[0] = x.Phase != "" + var yynn3320 int + if yyr3320 || yy2arr3320 { r.EncodeArrayStart(1) } else { - yynn3271 = 0 - for _, b := range yyq3271 { + yynn3320 = 0 + for _, b := range yyq3320 { if b { - yynn3271++ + yynn3320++ } } - r.EncodeMapStart(yynn3271) - yynn3271 = 0 + r.EncodeMapStart(yynn3320) + yynn3320 = 0 } - if yyr3271 || yy2arr3271 { + if yyr3320 || yy2arr3320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3271[0] { + if yyq3320[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3271[0] { + if yyq3320[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr3271 || yy2arr3271 { + if yyr3320 || yy2arr3320 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41800,25 +42337,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3273 := z.DecBinary() - _ = yym3273 + yym3322 := z.DecBinary() + _ = yym3322 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3274 := r.ContainerType() - if yyct3274 == codecSelferValueTypeMap1234 { - yyl3274 := r.ReadMapStart() - if yyl3274 == 0 { + yyct3323 := r.ContainerType() + if yyct3323 == codecSelferValueTypeMap1234 { + yyl3323 := r.ReadMapStart() + if yyl3323 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3274, d) + x.codecDecodeSelfFromMap(yyl3323, d) } - } else if yyct3274 == codecSelferValueTypeArray1234 { - yyl3274 := r.ReadArrayStart() - if yyl3274 == 0 { + } else if yyct3323 == codecSelferValueTypeArray1234 { + yyl3323 := r.ReadArrayStart() + if yyl3323 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3274, d) + x.codecDecodeSelfFromArray(yyl3323, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41830,12 +42367,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3275Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3275Slc - var yyhl3275 bool = l >= 0 - for yyj3275 := 0; ; yyj3275++ { - if yyhl3275 { - if yyj3275 >= l { + var yys3324Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3324Slc + var yyhl3324 bool = l >= 0 + for yyj3324 := 0; ; yyj3324++ { + if yyhl3324 { + if yyj3324 >= l { break } } else { @@ -41844,10 +42381,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3275Slc = r.DecodeBytes(yys3275Slc, true, true) - yys3275 := string(yys3275Slc) + yys3324Slc = r.DecodeBytes(yys3324Slc, true, true) + yys3324 := string(yys3324Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3275 { + switch yys3324 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -41855,9 +42392,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3275) - } // end switch yys3275 - } // end for yyj3275 + z.DecStructFieldNotFound(-1, yys3324) + } // end switch yys3324 + } // end for yyj3324 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41865,16 +42402,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3277 int - var yyb3277 bool - var yyhl3277 bool = l >= 0 - yyj3277++ - if yyhl3277 { - yyb3277 = yyj3277 > l + var yyj3326 int + var yyb3326 bool + var yyhl3326 bool = l >= 0 + yyj3326++ + if yyhl3326 { + yyb3326 = yyj3326 > l } else { - yyb3277 = r.CheckBreak() + yyb3326 = r.CheckBreak() } - if yyb3277 { + if yyb3326 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41885,17 +42422,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj3277++ - if yyhl3277 { - yyb3277 = yyj3277 > l + yyj3326++ + if yyhl3326 { + yyb3326 = yyj3326 > l } else { - yyb3277 = r.CheckBreak() + yyb3326 = r.CheckBreak() } - if yyb3277 { + if yyb3326 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3277-1, "") + z.DecStructFieldNotFound(yyj3326-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41904,8 +42441,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3279 := z.EncBinary() - _ = yym3279 + yym3328 := z.EncBinary() + _ = yym3328 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41917,8 +42454,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3280 := z.DecBinary() - _ = yym3280 + yym3329 := z.DecBinary() + _ = yym3329 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41933,39 +42470,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3281 := z.EncBinary() - _ = yym3281 + yym3330 := z.EncBinary() + _ = yym3330 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3282 := !z.EncBinary() - yy2arr3282 := z.EncBasicHandle().StructToArray - var yyq3282 [5]bool - _, _, _ = yysep3282, yyq3282, yy2arr3282 - const yyr3282 bool = false - yyq3282[0] = x.Kind != "" - yyq3282[1] = x.APIVersion != "" - yyq3282[2] = true - yyq3282[3] = true - yyq3282[4] = true - var yynn3282 int - if yyr3282 || yy2arr3282 { + yysep3331 := !z.EncBinary() + yy2arr3331 := z.EncBasicHandle().StructToArray + var yyq3331 [5]bool + _, _, _ = yysep3331, yyq3331, yy2arr3331 + const yyr3331 bool = false + yyq3331[0] = x.Kind != "" + yyq3331[1] = x.APIVersion != "" + yyq3331[2] = true + yyq3331[3] = true + yyq3331[4] = true + var yynn3331 int + if yyr3331 || yy2arr3331 { r.EncodeArrayStart(5) } else { - yynn3282 = 0 - for _, b := range yyq3282 { + yynn3331 = 0 + for _, b := range yyq3331 { if b { - yynn3282++ + yynn3331++ } } - r.EncodeMapStart(yynn3282) - yynn3282 = 0 + r.EncodeMapStart(yynn3331) + yynn3331 = 0 } - if yyr3282 || yy2arr3282 { + if yyr3331 || yy2arr3331 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3282[0] { - yym3284 := z.EncBinary() - _ = yym3284 + if yyq3331[0] { + yym3333 := z.EncBinary() + _ = yym3333 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41974,23 +42511,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3282[0] { + if yyq3331[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3285 := z.EncBinary() - _ = yym3285 + yym3334 := z.EncBinary() + _ = yym3334 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3282 || yy2arr3282 { + if yyr3331 || yy2arr3331 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3282[1] { - yym3287 := z.EncBinary() - _ = yym3287 + if yyq3331[1] { + yym3336 := z.EncBinary() + _ = yym3336 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41999,70 +42536,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3282[1] { + if yyq3331[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3288 := z.EncBinary() - _ = yym3288 + yym3337 := z.EncBinary() + _ = yym3337 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3282 || yy2arr3282 { + if yyr3331 || yy2arr3331 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3282[2] { - yy3290 := &x.ObjectMeta - yy3290.CodecEncodeSelf(e) + if yyq3331[2] { + yy3339 := &x.ObjectMeta + yy3339.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3282[2] { + if yyq3331[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3291 := &x.ObjectMeta - yy3291.CodecEncodeSelf(e) + yy3340 := &x.ObjectMeta + yy3340.CodecEncodeSelf(e) } } - if yyr3282 || yy2arr3282 { + if yyr3331 || yy2arr3331 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3282[3] { - yy3293 := &x.Spec - yy3293.CodecEncodeSelf(e) + if yyq3331[3] { + yy3342 := &x.Spec + yy3342.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3282[3] { + if yyq3331[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3294 := &x.Spec - yy3294.CodecEncodeSelf(e) + yy3343 := &x.Spec + yy3343.CodecEncodeSelf(e) } } - if yyr3282 || yy2arr3282 { + if yyr3331 || yy2arr3331 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3282[4] { - yy3296 := &x.Status - yy3296.CodecEncodeSelf(e) + if yyq3331[4] { + yy3345 := &x.Status + yy3345.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3282[4] { + if yyq3331[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3297 := &x.Status - yy3297.CodecEncodeSelf(e) + yy3346 := &x.Status + yy3346.CodecEncodeSelf(e) } } - if yyr3282 || yy2arr3282 { + if yyr3331 || yy2arr3331 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42075,25 +42612,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3298 := z.DecBinary() - _ = yym3298 + yym3347 := z.DecBinary() + _ = yym3347 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3299 := r.ContainerType() - if yyct3299 == codecSelferValueTypeMap1234 { - yyl3299 := r.ReadMapStart() - if yyl3299 == 0 { + yyct3348 := r.ContainerType() + if yyct3348 == codecSelferValueTypeMap1234 { + yyl3348 := r.ReadMapStart() + if yyl3348 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3299, d) + x.codecDecodeSelfFromMap(yyl3348, d) } - } else if yyct3299 == codecSelferValueTypeArray1234 { - yyl3299 := r.ReadArrayStart() - if yyl3299 == 0 { + } else if yyct3348 == codecSelferValueTypeArray1234 { + yyl3348 := r.ReadArrayStart() + if yyl3348 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3299, d) + x.codecDecodeSelfFromArray(yyl3348, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42105,12 +42642,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3300Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3300Slc - var yyhl3300 bool = l >= 0 - for yyj3300 := 0; ; yyj3300++ { - if yyhl3300 { - if yyj3300 >= l { + var yys3349Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3349Slc + var yyhl3349 bool = l >= 0 + for yyj3349 := 0; ; yyj3349++ { + if yyhl3349 { + if yyj3349 >= l { break } } else { @@ -42119,10 +42656,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3300Slc = r.DecodeBytes(yys3300Slc, true, true) - yys3300 := string(yys3300Slc) + yys3349Slc = r.DecodeBytes(yys3349Slc, true, true) + yys3349 := string(yys3349Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3300 { + switch yys3349 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42139,27 +42676,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3303 := &x.ObjectMeta - yyv3303.CodecDecodeSelf(d) + yyv3352 := &x.ObjectMeta + yyv3352.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3304 := &x.Spec - yyv3304.CodecDecodeSelf(d) + yyv3353 := &x.Spec + yyv3353.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3305 := &x.Status - yyv3305.CodecDecodeSelf(d) + yyv3354 := &x.Status + yyv3354.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3300) - } // end switch yys3300 - } // end for yyj3300 + z.DecStructFieldNotFound(-1, yys3349) + } // end switch yys3349 + } // end for yyj3349 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42167,16 +42704,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3306 int - var yyb3306 bool - var yyhl3306 bool = l >= 0 - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l + var yyj3355 int + var yyb3355 bool + var yyhl3355 bool = l >= 0 + yyj3355++ + if yyhl3355 { + yyb3355 = yyj3355 > l } else { - yyb3306 = r.CheckBreak() + yyb3355 = r.CheckBreak() } - if yyb3306 { + if yyb3355 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42186,13 +42723,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l + yyj3355++ + if yyhl3355 { + yyb3355 = yyj3355 > l } else { - yyb3306 = r.CheckBreak() + yyb3355 = r.CheckBreak() } - if yyb3306 { + if yyb3355 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42202,13 +42739,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l + yyj3355++ + if yyhl3355 { + yyb3355 = yyj3355 > l } else { - yyb3306 = r.CheckBreak() + yyb3355 = r.CheckBreak() } - if yyb3306 { + if yyb3355 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42216,16 +42753,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3309 := &x.ObjectMeta - yyv3309.CodecDecodeSelf(d) + yyv3358 := &x.ObjectMeta + yyv3358.CodecDecodeSelf(d) } - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l + yyj3355++ + if yyhl3355 { + yyb3355 = yyj3355 > l } else { - yyb3306 = r.CheckBreak() + yyb3355 = r.CheckBreak() } - if yyb3306 { + if yyb3355 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42233,16 +42770,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3310 := &x.Spec - yyv3310.CodecDecodeSelf(d) + yyv3359 := &x.Spec + yyv3359.CodecDecodeSelf(d) } - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l + yyj3355++ + if yyhl3355 { + yyb3355 = yyj3355 > l } else { - yyb3306 = r.CheckBreak() + yyb3355 = r.CheckBreak() } - if yyb3306 { + if yyb3355 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42250,21 +42787,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3311 := &x.Status - yyv3311.CodecDecodeSelf(d) + yyv3360 := &x.Status + yyv3360.CodecDecodeSelf(d) } for { - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l + yyj3355++ + if yyhl3355 { + yyb3355 = yyj3355 > l } else { - yyb3306 = r.CheckBreak() + yyb3355 = r.CheckBreak() } - if yyb3306 { + if yyb3355 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3306-1, "") + z.DecStructFieldNotFound(yyj3355-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42276,37 +42813,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3312 := z.EncBinary() - _ = yym3312 + yym3361 := z.EncBinary() + _ = yym3361 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3313 := !z.EncBinary() - yy2arr3313 := z.EncBasicHandle().StructToArray - var yyq3313 [4]bool - _, _, _ = yysep3313, yyq3313, yy2arr3313 - const yyr3313 bool = false - yyq3313[0] = x.Kind != "" - yyq3313[1] = x.APIVersion != "" - yyq3313[2] = true - var yynn3313 int - if yyr3313 || yy2arr3313 { + yysep3362 := !z.EncBinary() + yy2arr3362 := z.EncBasicHandle().StructToArray + var yyq3362 [4]bool + _, _, _ = yysep3362, yyq3362, yy2arr3362 + const yyr3362 bool = false + yyq3362[0] = x.Kind != "" + yyq3362[1] = x.APIVersion != "" + yyq3362[2] = true + var yynn3362 int + if yyr3362 || yy2arr3362 { r.EncodeArrayStart(4) } else { - yynn3313 = 1 - for _, b := range yyq3313 { + yynn3362 = 1 + for _, b := range yyq3362 { if b { - yynn3313++ + yynn3362++ } } - r.EncodeMapStart(yynn3313) - yynn3313 = 0 + r.EncodeMapStart(yynn3362) + yynn3362 = 0 } - if yyr3313 || yy2arr3313 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3313[0] { - yym3315 := z.EncBinary() - _ = yym3315 + if yyq3362[0] { + yym3364 := z.EncBinary() + _ = yym3364 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42315,23 +42852,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3313[0] { + if yyq3362[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3316 := z.EncBinary() - _ = yym3316 + yym3365 := z.EncBinary() + _ = yym3365 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3313 || yy2arr3313 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3313[1] { - yym3318 := z.EncBinary() - _ = yym3318 + if yyq3362[1] { + yym3367 := z.EncBinary() + _ = yym3367 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42340,54 +42877,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3313[1] { + if yyq3362[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3319 := z.EncBinary() - _ = yym3319 + yym3368 := z.EncBinary() + _ = yym3368 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3313 || yy2arr3313 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3313[2] { - yy3321 := &x.ListMeta - yym3322 := z.EncBinary() - _ = yym3322 + if yyq3362[2] { + yy3370 := &x.ListMeta + yym3371 := z.EncBinary() + _ = yym3371 if false { - } else if z.HasExtensions() && z.EncExt(yy3321) { + } else if z.HasExtensions() && z.EncExt(yy3370) { } else { - z.EncFallback(yy3321) + z.EncFallback(yy3370) } } else { r.EncodeNil() } } else { - if yyq3313[2] { + if yyq3362[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3323 := &x.ListMeta - yym3324 := z.EncBinary() - _ = yym3324 + yy3372 := &x.ListMeta + yym3373 := z.EncBinary() + _ = yym3373 if false { - } else if z.HasExtensions() && z.EncExt(yy3323) { + } else if z.HasExtensions() && z.EncExt(yy3372) { } else { - z.EncFallback(yy3323) + z.EncFallback(yy3372) } } } - if yyr3313 || yy2arr3313 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3326 := z.EncBinary() - _ = yym3326 + yym3375 := z.EncBinary() + _ = yym3375 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -42400,15 +42937,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3327 := z.EncBinary() - _ = yym3327 + yym3376 := z.EncBinary() + _ = yym3376 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr3313 || yy2arr3313 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42421,25 +42958,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3328 := z.DecBinary() - _ = yym3328 + yym3377 := z.DecBinary() + _ = yym3377 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3329 := r.ContainerType() - if yyct3329 == codecSelferValueTypeMap1234 { - yyl3329 := r.ReadMapStart() - if yyl3329 == 0 { + yyct3378 := r.ContainerType() + if yyct3378 == codecSelferValueTypeMap1234 { + yyl3378 := r.ReadMapStart() + if yyl3378 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3329, d) + x.codecDecodeSelfFromMap(yyl3378, d) } - } else if yyct3329 == codecSelferValueTypeArray1234 { - yyl3329 := r.ReadArrayStart() - if yyl3329 == 0 { + } else if yyct3378 == codecSelferValueTypeArray1234 { + yyl3378 := r.ReadArrayStart() + if yyl3378 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3329, d) + x.codecDecodeSelfFromArray(yyl3378, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42451,12 +42988,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3330Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3330Slc - var yyhl3330 bool = l >= 0 - for yyj3330 := 0; ; yyj3330++ { - if yyhl3330 { - if yyj3330 >= l { + var yys3379Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3379Slc + var yyhl3379 bool = l >= 0 + for yyj3379 := 0; ; yyj3379++ { + if yyhl3379 { + if yyj3379 >= l { break } } else { @@ -42465,10 +43002,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3330Slc = r.DecodeBytes(yys3330Slc, true, true) - yys3330 := string(yys3330Slc) + yys3379Slc = r.DecodeBytes(yys3379Slc, true, true) + yys3379 := string(yys3379Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3330 { + switch yys3379 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42485,31 +43022,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3333 := &x.ListMeta - yym3334 := z.DecBinary() - _ = yym3334 + yyv3382 := &x.ListMeta + yym3383 := z.DecBinary() + _ = yym3383 if false { - } else if z.HasExtensions() && z.DecExt(yyv3333) { + } else if z.HasExtensions() && z.DecExt(yyv3382) { } else { - z.DecFallback(yyv3333, false) + z.DecFallback(yyv3382, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3335 := &x.Items - yym3336 := z.DecBinary() - _ = yym3336 + yyv3384 := &x.Items + yym3385 := z.DecBinary() + _ = yym3385 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3335), d) + h.decSliceNamespace((*[]Namespace)(yyv3384), d) } } default: - z.DecStructFieldNotFound(-1, yys3330) - } // end switch yys3330 - } // end for yyj3330 + z.DecStructFieldNotFound(-1, yys3379) + } // end switch yys3379 + } // end for yyj3379 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42517,16 +43054,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3337 int - var yyb3337 bool - var yyhl3337 bool = l >= 0 - yyj3337++ - if yyhl3337 { - yyb3337 = yyj3337 > l + var yyj3386 int + var yyb3386 bool + var yyhl3386 bool = l >= 0 + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3337 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3337 { + if yyb3386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42536,13 +43073,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3337++ - if yyhl3337 { - yyb3337 = yyj3337 > l + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3337 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3337 { + if yyb3386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42552,13 +43089,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3337++ - if yyhl3337 { - yyb3337 = yyj3337 > l + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3337 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3337 { + if yyb3386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42566,22 +43103,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3340 := &x.ListMeta - yym3341 := z.DecBinary() - _ = yym3341 + yyv3389 := &x.ListMeta + yym3390 := z.DecBinary() + _ = yym3390 if false { - } else if z.HasExtensions() && z.DecExt(yyv3340) { + } else if z.HasExtensions() && z.DecExt(yyv3389) { } else { - z.DecFallback(yyv3340, false) + z.DecFallback(yyv3389, false) } } - yyj3337++ - if yyhl3337 { - yyb3337 = yyj3337 > l + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3337 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3337 { + if yyb3386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42589,26 +43126,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3342 := &x.Items - yym3343 := z.DecBinary() - _ = yym3343 + yyv3391 := &x.Items + yym3392 := z.DecBinary() + _ = yym3392 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3342), d) + h.decSliceNamespace((*[]Namespace)(yyv3391), d) } } for { - yyj3337++ - if yyhl3337 { - yyb3337 = yyj3337 > l + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3337 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3337 { + if yyb3386 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3337-1, "") + z.DecStructFieldNotFound(yyj3386-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42620,37 +43157,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3344 := z.EncBinary() - _ = yym3344 + yym3393 := z.EncBinary() + _ = yym3393 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3345 := !z.EncBinary() - yy2arr3345 := z.EncBasicHandle().StructToArray - var yyq3345 [4]bool - _, _, _ = yysep3345, yyq3345, yy2arr3345 - const yyr3345 bool = false - yyq3345[0] = x.Kind != "" - yyq3345[1] = x.APIVersion != "" - yyq3345[2] = true - var yynn3345 int - if yyr3345 || yy2arr3345 { + yysep3394 := !z.EncBinary() + yy2arr3394 := z.EncBasicHandle().StructToArray + var yyq3394 [4]bool + _, _, _ = yysep3394, yyq3394, yy2arr3394 + const yyr3394 bool = false + yyq3394[0] = x.Kind != "" + yyq3394[1] = x.APIVersion != "" + yyq3394[2] = true + var yynn3394 int + if yyr3394 || yy2arr3394 { r.EncodeArrayStart(4) } else { - yynn3345 = 1 - for _, b := range yyq3345 { + yynn3394 = 1 + for _, b := range yyq3394 { if b { - yynn3345++ + yynn3394++ } } - r.EncodeMapStart(yynn3345) - yynn3345 = 0 + r.EncodeMapStart(yynn3394) + yynn3394 = 0 } - if yyr3345 || yy2arr3345 { + if yyr3394 || yy2arr3394 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3345[0] { - yym3347 := z.EncBinary() - _ = yym3347 + if yyq3394[0] { + yym3396 := z.EncBinary() + _ = yym3396 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42659,23 +43196,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3345[0] { + if yyq3394[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3348 := z.EncBinary() - _ = yym3348 + yym3397 := z.EncBinary() + _ = yym3397 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3345 || yy2arr3345 { + if yyr3394 || yy2arr3394 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3345[1] { - yym3350 := z.EncBinary() - _ = yym3350 + if yyq3394[1] { + yym3399 := z.EncBinary() + _ = yym3399 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42684,47 +43221,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3345[1] { + if yyq3394[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3351 := z.EncBinary() - _ = yym3351 + yym3400 := z.EncBinary() + _ = yym3400 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3345 || yy2arr3345 { + if yyr3394 || yy2arr3394 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3345[2] { - yy3353 := &x.ObjectMeta - yy3353.CodecEncodeSelf(e) + if yyq3394[2] { + yy3402 := &x.ObjectMeta + yy3402.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3345[2] { + if yyq3394[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3354 := &x.ObjectMeta - yy3354.CodecEncodeSelf(e) + yy3403 := &x.ObjectMeta + yy3403.CodecEncodeSelf(e) } } - if yyr3345 || yy2arr3345 { + if yyr3394 || yy2arr3394 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3356 := &x.Target - yy3356.CodecEncodeSelf(e) + yy3405 := &x.Target + yy3405.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3357 := &x.Target - yy3357.CodecEncodeSelf(e) + yy3406 := &x.Target + yy3406.CodecEncodeSelf(e) } - if yyr3345 || yy2arr3345 { + if yyr3394 || yy2arr3394 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42737,25 +43274,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3358 := z.DecBinary() - _ = yym3358 + yym3407 := z.DecBinary() + _ = yym3407 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3359 := r.ContainerType() - if yyct3359 == codecSelferValueTypeMap1234 { - yyl3359 := r.ReadMapStart() - if yyl3359 == 0 { + yyct3408 := r.ContainerType() + if yyct3408 == codecSelferValueTypeMap1234 { + yyl3408 := r.ReadMapStart() + if yyl3408 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3359, d) + x.codecDecodeSelfFromMap(yyl3408, d) } - } else if yyct3359 == codecSelferValueTypeArray1234 { - yyl3359 := r.ReadArrayStart() - if yyl3359 == 0 { + } else if yyct3408 == codecSelferValueTypeArray1234 { + yyl3408 := r.ReadArrayStart() + if yyl3408 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3359, d) + x.codecDecodeSelfFromArray(yyl3408, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42767,12 +43304,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3360Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3360Slc - var yyhl3360 bool = l >= 0 - for yyj3360 := 0; ; yyj3360++ { - if yyhl3360 { - if yyj3360 >= l { + var yys3409Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3409Slc + var yyhl3409 bool = l >= 0 + for yyj3409 := 0; ; yyj3409++ { + if yyhl3409 { + if yyj3409 >= l { break } } else { @@ -42781,10 +43318,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3360Slc = r.DecodeBytes(yys3360Slc, true, true) - yys3360 := string(yys3360Slc) + yys3409Slc = r.DecodeBytes(yys3409Slc, true, true) + yys3409 := string(yys3409Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3360 { + switch yys3409 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42801,20 +43338,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3363 := &x.ObjectMeta - yyv3363.CodecDecodeSelf(d) + yyv3412 := &x.ObjectMeta + yyv3412.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3364 := &x.Target - yyv3364.CodecDecodeSelf(d) + yyv3413 := &x.Target + yyv3413.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3360) - } // end switch yys3360 - } // end for yyj3360 + z.DecStructFieldNotFound(-1, yys3409) + } // end switch yys3409 + } // end for yyj3409 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42822,16 +43359,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3365 int - var yyb3365 bool - var yyhl3365 bool = l >= 0 - yyj3365++ - if yyhl3365 { - yyb3365 = yyj3365 > l + var yyj3414 int + var yyb3414 bool + var yyhl3414 bool = l >= 0 + yyj3414++ + if yyhl3414 { + yyb3414 = yyj3414 > l } else { - yyb3365 = r.CheckBreak() + yyb3414 = r.CheckBreak() } - if yyb3365 { + if yyb3414 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42841,13 +43378,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3365++ - if yyhl3365 { - yyb3365 = yyj3365 > l + yyj3414++ + if yyhl3414 { + yyb3414 = yyj3414 > l } else { - yyb3365 = r.CheckBreak() + yyb3414 = r.CheckBreak() } - if yyb3365 { + if yyb3414 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42857,13 +43394,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3365++ - if yyhl3365 { - yyb3365 = yyj3365 > l + yyj3414++ + if yyhl3414 { + yyb3414 = yyj3414 > l } else { - yyb3365 = r.CheckBreak() + yyb3414 = r.CheckBreak() } - if yyb3365 { + if yyb3414 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42871,16 +43408,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3368 := &x.ObjectMeta - yyv3368.CodecDecodeSelf(d) + yyv3417 := &x.ObjectMeta + yyv3417.CodecDecodeSelf(d) } - yyj3365++ - if yyhl3365 { - yyb3365 = yyj3365 > l + yyj3414++ + if yyhl3414 { + yyb3414 = yyj3414 > l } else { - yyb3365 = r.CheckBreak() + yyb3414 = r.CheckBreak() } - if yyb3365 { + if yyb3414 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42888,21 +43425,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3369 := &x.Target - yyv3369.CodecDecodeSelf(d) + yyv3418 := &x.Target + yyv3418.CodecDecodeSelf(d) } for { - yyj3365++ - if yyhl3365 { - yyb3365 = yyj3365 > l + yyj3414++ + if yyhl3414 { + yyb3414 = yyj3414 > l } else { - yyb3365 = r.CheckBreak() + yyb3414 = r.CheckBreak() } - if yyb3365 { + if yyb3414 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3365-1, "") + z.DecStructFieldNotFound(yyj3414-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42914,68 +43451,68 @@ func (x *Preconditions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3370 := z.EncBinary() - _ = yym3370 + yym3419 := z.EncBinary() + _ = yym3419 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3371 := !z.EncBinary() - yy2arr3371 := z.EncBasicHandle().StructToArray - var yyq3371 [1]bool - _, _, _ = yysep3371, yyq3371, yy2arr3371 - const yyr3371 bool = false - yyq3371[0] = x.UID != nil - var yynn3371 int - if yyr3371 || yy2arr3371 { + yysep3420 := !z.EncBinary() + yy2arr3420 := z.EncBasicHandle().StructToArray + var yyq3420 [1]bool + _, _, _ = yysep3420, yyq3420, yy2arr3420 + const yyr3420 bool = false + yyq3420[0] = x.UID != nil + var yynn3420 int + if yyr3420 || yy2arr3420 { r.EncodeArrayStart(1) } else { - yynn3371 = 0 - for _, b := range yyq3371 { + yynn3420 = 0 + for _, b := range yyq3420 { if b { - yynn3371++ + yynn3420++ } } - r.EncodeMapStart(yynn3371) - yynn3371 = 0 + r.EncodeMapStart(yynn3420) + yynn3420 = 0 } - if yyr3371 || yy2arr3371 { + if yyr3420 || yy2arr3420 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3371[0] { + if yyq3420[0] { if x.UID == nil { r.EncodeNil() } else { - yy3373 := *x.UID - yym3374 := z.EncBinary() - _ = yym3374 + yy3422 := *x.UID + yym3423 := z.EncBinary() + _ = yym3423 if false { - } else if z.HasExtensions() && z.EncExt(yy3373) { + } else if z.HasExtensions() && z.EncExt(yy3422) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3373)) + r.EncodeString(codecSelferC_UTF81234, string(yy3422)) } } } else { r.EncodeNil() } } else { - if yyq3371[0] { + if yyq3420[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.UID == nil { r.EncodeNil() } else { - yy3375 := *x.UID - yym3376 := z.EncBinary() - _ = yym3376 + yy3424 := *x.UID + yym3425 := z.EncBinary() + _ = yym3425 if false { - } else if z.HasExtensions() && z.EncExt(yy3375) { + } else if z.HasExtensions() && z.EncExt(yy3424) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3375)) + r.EncodeString(codecSelferC_UTF81234, string(yy3424)) } } } } - if yyr3371 || yy2arr3371 { + if yyr3420 || yy2arr3420 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42988,25 +43525,25 @@ func (x *Preconditions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3377 := z.DecBinary() - _ = yym3377 + yym3426 := z.DecBinary() + _ = yym3426 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3378 := r.ContainerType() - if yyct3378 == codecSelferValueTypeMap1234 { - yyl3378 := r.ReadMapStart() - if yyl3378 == 0 { + yyct3427 := r.ContainerType() + if yyct3427 == codecSelferValueTypeMap1234 { + yyl3427 := r.ReadMapStart() + if yyl3427 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3378, d) + x.codecDecodeSelfFromMap(yyl3427, d) } - } else if yyct3378 == codecSelferValueTypeArray1234 { - yyl3378 := r.ReadArrayStart() - if yyl3378 == 0 { + } else if yyct3427 == codecSelferValueTypeArray1234 { + yyl3427 := r.ReadArrayStart() + if yyl3427 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3378, d) + x.codecDecodeSelfFromArray(yyl3427, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43018,12 +43555,12 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3379Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3379Slc - var yyhl3379 bool = l >= 0 - for yyj3379 := 0; ; yyj3379++ { - if yyhl3379 { - if yyj3379 >= l { + var yys3428Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3428Slc + var yyhl3428 bool = l >= 0 + for yyj3428 := 0; ; yyj3428++ { + if yyhl3428 { + if yyj3428 >= l { break } } else { @@ -43032,10 +43569,10 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3379Slc = r.DecodeBytes(yys3379Slc, true, true) - yys3379 := string(yys3379Slc) + yys3428Slc = r.DecodeBytes(yys3428Slc, true, true) + yys3428 := string(yys3428Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3379 { + switch yys3428 { case "uid": if r.TryDecodeAsNil() { if x.UID != nil { @@ -43045,8 +43582,8 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3381 := z.DecBinary() - _ = yym3381 + yym3430 := z.DecBinary() + _ = yym3430 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -43054,9 +43591,9 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3379) - } // end switch yys3379 - } // end for yyj3379 + z.DecStructFieldNotFound(-1, yys3428) + } // end switch yys3428 + } // end for yyj3428 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43064,16 +43601,16 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3382 int - var yyb3382 bool - var yyhl3382 bool = l >= 0 - yyj3382++ - if yyhl3382 { - yyb3382 = yyj3382 > l + var yyj3431 int + var yyb3431 bool + var yyhl3431 bool = l >= 0 + yyj3431++ + if yyhl3431 { + yyb3431 = yyj3431 > l } else { - yyb3382 = r.CheckBreak() + yyb3431 = r.CheckBreak() } - if yyb3382 { + if yyb3431 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43086,8 +43623,8 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3384 := z.DecBinary() - _ = yym3384 + yym3433 := z.DecBinary() + _ = yym3433 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -43095,17 +43632,17 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3382++ - if yyhl3382 { - yyb3382 = yyj3382 > l + yyj3431++ + if yyhl3431 { + yyb3431 = yyj3431 > l } else { - yyb3382 = r.CheckBreak() + yyb3431 = r.CheckBreak() } - if yyb3382 { + if yyb3431 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3382-1, "") + z.DecStructFieldNotFound(yyj3431-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43117,39 +43654,39 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3385 := z.EncBinary() - _ = yym3385 + yym3434 := z.EncBinary() + _ = yym3434 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3386 := !z.EncBinary() - yy2arr3386 := z.EncBasicHandle().StructToArray - var yyq3386 [5]bool - _, _, _ = yysep3386, yyq3386, yy2arr3386 - const yyr3386 bool = false - yyq3386[0] = x.Kind != "" - yyq3386[1] = x.APIVersion != "" - yyq3386[2] = x.GracePeriodSeconds != nil - yyq3386[3] = x.Preconditions != nil - yyq3386[4] = x.OrphanDependents != nil - var yynn3386 int - if yyr3386 || yy2arr3386 { + yysep3435 := !z.EncBinary() + yy2arr3435 := z.EncBasicHandle().StructToArray + var yyq3435 [5]bool + _, _, _ = yysep3435, yyq3435, yy2arr3435 + const yyr3435 bool = false + yyq3435[0] = x.Kind != "" + yyq3435[1] = x.APIVersion != "" + yyq3435[2] = x.GracePeriodSeconds != nil + yyq3435[3] = x.Preconditions != nil + yyq3435[4] = x.OrphanDependents != nil + var yynn3435 int + if yyr3435 || yy2arr3435 { r.EncodeArrayStart(5) } else { - yynn3386 = 0 - for _, b := range yyq3386 { + yynn3435 = 0 + for _, b := range yyq3435 { if b { - yynn3386++ + yynn3435++ } } - r.EncodeMapStart(yynn3386) - yynn3386 = 0 + r.EncodeMapStart(yynn3435) + yynn3435 = 0 } - if yyr3386 || yy2arr3386 { + if yyr3435 || yy2arr3435 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3386[0] { - yym3388 := z.EncBinary() - _ = yym3388 + if yyq3435[0] { + yym3437 := z.EncBinary() + _ = yym3437 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43158,23 +43695,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3386[0] { + if yyq3435[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3389 := z.EncBinary() - _ = yym3389 + yym3438 := z.EncBinary() + _ = yym3438 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3386 || yy2arr3386 { + if yyr3435 || yy2arr3435 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3386[1] { - yym3391 := z.EncBinary() - _ = yym3391 + if yyq3435[1] { + yym3440 := z.EncBinary() + _ = yym3440 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43183,56 +43720,56 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3386[1] { + if yyq3435[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3392 := z.EncBinary() - _ = yym3392 + yym3441 := z.EncBinary() + _ = yym3441 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3386 || yy2arr3386 { + if yyr3435 || yy2arr3435 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3386[2] { + if yyq3435[2] { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3394 := *x.GracePeriodSeconds - yym3395 := z.EncBinary() - _ = yym3395 + yy3443 := *x.GracePeriodSeconds + yym3444 := z.EncBinary() + _ = yym3444 if false { } else { - r.EncodeInt(int64(yy3394)) + r.EncodeInt(int64(yy3443)) } } } else { r.EncodeNil() } } else { - if yyq3386[2] { + if yyq3435[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3396 := *x.GracePeriodSeconds - yym3397 := z.EncBinary() - _ = yym3397 + yy3445 := *x.GracePeriodSeconds + yym3446 := z.EncBinary() + _ = yym3446 if false { } else { - r.EncodeInt(int64(yy3396)) + r.EncodeInt(int64(yy3445)) } } } } - if yyr3386 || yy2arr3386 { + if yyr3435 || yy2arr3435 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3386[3] { + if yyq3435[3] { if x.Preconditions == nil { r.EncodeNil() } else { @@ -43242,7 +43779,7 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3386[3] { + if yyq3435[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preconditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -43253,42 +43790,42 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3386 || yy2arr3386 { + if yyr3435 || yy2arr3435 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3386[4] { + if yyq3435[4] { if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3400 := *x.OrphanDependents - yym3401 := z.EncBinary() - _ = yym3401 + yy3449 := *x.OrphanDependents + yym3450 := z.EncBinary() + _ = yym3450 if false { } else { - r.EncodeBool(bool(yy3400)) + r.EncodeBool(bool(yy3449)) } } } else { r.EncodeNil() } } else { - if yyq3386[4] { + if yyq3435[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("orphanDependents")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3402 := *x.OrphanDependents - yym3403 := z.EncBinary() - _ = yym3403 + yy3451 := *x.OrphanDependents + yym3452 := z.EncBinary() + _ = yym3452 if false { } else { - r.EncodeBool(bool(yy3402)) + r.EncodeBool(bool(yy3451)) } } } } - if yyr3386 || yy2arr3386 { + if yyr3435 || yy2arr3435 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43301,25 +43838,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3404 := z.DecBinary() - _ = yym3404 + yym3453 := z.DecBinary() + _ = yym3453 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3405 := r.ContainerType() - if yyct3405 == codecSelferValueTypeMap1234 { - yyl3405 := r.ReadMapStart() - if yyl3405 == 0 { + yyct3454 := r.ContainerType() + if yyct3454 == codecSelferValueTypeMap1234 { + yyl3454 := r.ReadMapStart() + if yyl3454 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3405, d) + x.codecDecodeSelfFromMap(yyl3454, d) } - } else if yyct3405 == codecSelferValueTypeArray1234 { - yyl3405 := r.ReadArrayStart() - if yyl3405 == 0 { + } else if yyct3454 == codecSelferValueTypeArray1234 { + yyl3454 := r.ReadArrayStart() + if yyl3454 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3405, d) + x.codecDecodeSelfFromArray(yyl3454, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43331,12 +43868,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3406Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3406Slc - var yyhl3406 bool = l >= 0 - for yyj3406 := 0; ; yyj3406++ { - if yyhl3406 { - if yyj3406 >= l { + var yys3455Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3455Slc + var yyhl3455 bool = l >= 0 + for yyj3455 := 0; ; yyj3455++ { + if yyhl3455 { + if yyj3455 >= l { break } } else { @@ -43345,10 +43882,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3406Slc = r.DecodeBytes(yys3406Slc, true, true) - yys3406 := string(yys3406Slc) + yys3455Slc = r.DecodeBytes(yys3455Slc, true, true) + yys3455 := string(yys3455Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3406 { + switch yys3455 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43370,8 +43907,8 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3410 := z.DecBinary() - _ = yym3410 + yym3459 := z.DecBinary() + _ = yym3459 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -43397,17 +43934,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3413 := z.DecBinary() - _ = yym3413 + yym3462 := z.DecBinary() + _ = yym3462 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3406) - } // end switch yys3406 - } // end for yyj3406 + z.DecStructFieldNotFound(-1, yys3455) + } // end switch yys3455 + } // end for yyj3455 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43415,16 +43952,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3414 int - var yyb3414 bool - var yyhl3414 bool = l >= 0 - yyj3414++ - if yyhl3414 { - yyb3414 = yyj3414 > l + var yyj3463 int + var yyb3463 bool + var yyhl3463 bool = l >= 0 + yyj3463++ + if yyhl3463 { + yyb3463 = yyj3463 > l } else { - yyb3414 = r.CheckBreak() + yyb3463 = r.CheckBreak() } - if yyb3414 { + if yyb3463 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43434,13 +43971,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3414++ - if yyhl3414 { - yyb3414 = yyj3414 > l + yyj3463++ + if yyhl3463 { + yyb3463 = yyj3463 > l } else { - yyb3414 = r.CheckBreak() + yyb3463 = r.CheckBreak() } - if yyb3414 { + if yyb3463 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43450,13 +43987,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3414++ - if yyhl3414 { - yyb3414 = yyj3414 > l + yyj3463++ + if yyhl3463 { + yyb3463 = yyj3463 > l } else { - yyb3414 = r.CheckBreak() + yyb3463 = r.CheckBreak() } - if yyb3414 { + if yyb3463 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43469,20 +44006,20 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3418 := z.DecBinary() - _ = yym3418 + yym3467 := z.DecBinary() + _ = yym3467 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj3414++ - if yyhl3414 { - yyb3414 = yyj3414 > l + yyj3463++ + if yyhl3463 { + yyb3463 = yyj3463 > l } else { - yyb3414 = r.CheckBreak() + yyb3463 = r.CheckBreak() } - if yyb3414 { + if yyb3463 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43497,13 +44034,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Preconditions.CodecDecodeSelf(d) } - yyj3414++ - if yyhl3414 { - yyb3414 = yyj3414 > l + yyj3463++ + if yyhl3463 { + yyb3463 = yyj3463 > l } else { - yyb3414 = r.CheckBreak() + yyb3463 = r.CheckBreak() } - if yyb3414 { + if yyb3463 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43516,25 +44053,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3421 := z.DecBinary() - _ = yym3421 + yym3470 := z.DecBinary() + _ = yym3470 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } for { - yyj3414++ - if yyhl3414 { - yyb3414 = yyj3414 > l + yyj3463++ + if yyhl3463 { + yyb3463 = yyj3463 > l } else { - yyb3414 = r.CheckBreak() + yyb3463 = r.CheckBreak() } - if yyb3414 { + if yyb3463 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3414-1, "") + z.DecStructFieldNotFound(yyj3463-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43546,36 +44083,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3422 := z.EncBinary() - _ = yym3422 + yym3471 := z.EncBinary() + _ = yym3471 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3423 := !z.EncBinary() - yy2arr3423 := z.EncBasicHandle().StructToArray - var yyq3423 [4]bool - _, _, _ = yysep3423, yyq3423, yy2arr3423 - const yyr3423 bool = false - yyq3423[0] = x.Kind != "" - yyq3423[1] = x.APIVersion != "" - var yynn3423 int - if yyr3423 || yy2arr3423 { + yysep3472 := !z.EncBinary() + yy2arr3472 := z.EncBasicHandle().StructToArray + var yyq3472 [4]bool + _, _, _ = yysep3472, yyq3472, yy2arr3472 + const yyr3472 bool = false + yyq3472[0] = x.Kind != "" + yyq3472[1] = x.APIVersion != "" + var yynn3472 int + if yyr3472 || yy2arr3472 { r.EncodeArrayStart(4) } else { - yynn3423 = 2 - for _, b := range yyq3423 { + yynn3472 = 2 + for _, b := range yyq3472 { if b { - yynn3423++ + yynn3472++ } } - r.EncodeMapStart(yynn3423) - yynn3423 = 0 + r.EncodeMapStart(yynn3472) + yynn3472 = 0 } - if yyr3423 || yy2arr3423 { + if yyr3472 || yy2arr3472 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3423[0] { - yym3425 := z.EncBinary() - _ = yym3425 + if yyq3472[0] { + yym3474 := z.EncBinary() + _ = yym3474 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43584,23 +44121,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3423[0] { + if yyq3472[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3426 := z.EncBinary() - _ = yym3426 + yym3475 := z.EncBinary() + _ = yym3475 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3423 || yy2arr3423 { + if yyr3472 || yy2arr3472 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3423[1] { - yym3428 := z.EncBinary() - _ = yym3428 + if yyq3472[1] { + yym3477 := z.EncBinary() + _ = yym3477 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43609,22 +44146,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3423[1] { + if yyq3472[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3429 := z.EncBinary() - _ = yym3429 + yym3478 := z.EncBinary() + _ = yym3478 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3423 || yy2arr3423 { + if yyr3472 || yy2arr3472 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3431 := z.EncBinary() - _ = yym3431 + yym3480 := z.EncBinary() + _ = yym3480 if false { } else { r.EncodeBool(bool(x.Export)) @@ -43633,17 +44170,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3432 := z.EncBinary() - _ = yym3432 + yym3481 := z.EncBinary() + _ = yym3481 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr3423 || yy2arr3423 { + if yyr3472 || yy2arr3472 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3434 := z.EncBinary() - _ = yym3434 + yym3483 := z.EncBinary() + _ = yym3483 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -43652,14 +44189,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3435 := z.EncBinary() - _ = yym3435 + yym3484 := z.EncBinary() + _ = yym3484 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr3423 || yy2arr3423 { + if yyr3472 || yy2arr3472 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43672,25 +44209,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3436 := z.DecBinary() - _ = yym3436 + yym3485 := z.DecBinary() + _ = yym3485 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3437 := r.ContainerType() - if yyct3437 == codecSelferValueTypeMap1234 { - yyl3437 := r.ReadMapStart() - if yyl3437 == 0 { + yyct3486 := r.ContainerType() + if yyct3486 == codecSelferValueTypeMap1234 { + yyl3486 := r.ReadMapStart() + if yyl3486 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3437, d) + x.codecDecodeSelfFromMap(yyl3486, d) } - } else if yyct3437 == codecSelferValueTypeArray1234 { - yyl3437 := r.ReadArrayStart() - if yyl3437 == 0 { + } else if yyct3486 == codecSelferValueTypeArray1234 { + yyl3486 := r.ReadArrayStart() + if yyl3486 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3437, d) + x.codecDecodeSelfFromArray(yyl3486, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43702,12 +44239,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3438Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3438Slc - var yyhl3438 bool = l >= 0 - for yyj3438 := 0; ; yyj3438++ { - if yyhl3438 { - if yyj3438 >= l { + var yys3487Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3487Slc + var yyhl3487 bool = l >= 0 + for yyj3487 := 0; ; yyj3487++ { + if yyhl3487 { + if yyj3487 >= l { break } } else { @@ -43716,10 +44253,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3438Slc = r.DecodeBytes(yys3438Slc, true, true) - yys3438 := string(yys3438Slc) + yys3487Slc = r.DecodeBytes(yys3487Slc, true, true) + yys3487 := string(yys3487Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3438 { + switch yys3487 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43745,9 +44282,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys3438) - } // end switch yys3438 - } // end for yyj3438 + z.DecStructFieldNotFound(-1, yys3487) + } // end switch yys3487 + } // end for yyj3487 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43755,16 +44292,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3443 int - var yyb3443 bool - var yyhl3443 bool = l >= 0 - yyj3443++ - if yyhl3443 { - yyb3443 = yyj3443 > l + var yyj3492 int + var yyb3492 bool + var yyhl3492 bool = l >= 0 + yyj3492++ + if yyhl3492 { + yyb3492 = yyj3492 > l } else { - yyb3443 = r.CheckBreak() + yyb3492 = r.CheckBreak() } - if yyb3443 { + if yyb3492 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43774,13 +44311,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3443++ - if yyhl3443 { - yyb3443 = yyj3443 > l + yyj3492++ + if yyhl3492 { + yyb3492 = yyj3492 > l } else { - yyb3443 = r.CheckBreak() + yyb3492 = r.CheckBreak() } - if yyb3443 { + if yyb3492 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43790,13 +44327,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3443++ - if yyhl3443 { - yyb3443 = yyj3443 > l + yyj3492++ + if yyhl3492 { + yyb3492 = yyj3492 > l } else { - yyb3443 = r.CheckBreak() + yyb3492 = r.CheckBreak() } - if yyb3443 { + if yyb3492 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43806,13 +44343,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj3443++ - if yyhl3443 { - yyb3443 = yyj3443 > l + yyj3492++ + if yyhl3492 { + yyb3492 = yyj3492 > l } else { - yyb3443 = r.CheckBreak() + yyb3492 = r.CheckBreak() } - if yyb3443 { + if yyb3492 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43823,17 +44360,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj3443++ - if yyhl3443 { - yyb3443 = yyj3443 > l + yyj3492++ + if yyhl3492 { + yyb3492 = yyj3492 > l } else { - yyb3443 = r.CheckBreak() + yyb3492 = r.CheckBreak() } - if yyb3443 { + if yyb3492 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3443-1, "") + z.DecStructFieldNotFound(yyj3492-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43845,41 +44382,41 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3448 := z.EncBinary() - _ = yym3448 + yym3497 := z.EncBinary() + _ = yym3497 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3449 := !z.EncBinary() - yy2arr3449 := z.EncBasicHandle().StructToArray - var yyq3449 [7]bool - _, _, _ = yysep3449, yyq3449, yy2arr3449 - const yyr3449 bool = false - yyq3449[0] = x.Kind != "" - yyq3449[1] = x.APIVersion != "" - yyq3449[2] = x.LabelSelector != "" - yyq3449[3] = x.FieldSelector != "" - yyq3449[4] = x.Watch != false - yyq3449[5] = x.ResourceVersion != "" - yyq3449[6] = x.TimeoutSeconds != nil - var yynn3449 int - if yyr3449 || yy2arr3449 { + yysep3498 := !z.EncBinary() + yy2arr3498 := z.EncBasicHandle().StructToArray + var yyq3498 [7]bool + _, _, _ = yysep3498, yyq3498, yy2arr3498 + const yyr3498 bool = false + yyq3498[0] = x.Kind != "" + yyq3498[1] = x.APIVersion != "" + yyq3498[2] = x.LabelSelector != "" + yyq3498[3] = x.FieldSelector != "" + yyq3498[4] = x.Watch != false + yyq3498[5] = x.ResourceVersion != "" + yyq3498[6] = x.TimeoutSeconds != nil + var yynn3498 int + if yyr3498 || yy2arr3498 { r.EncodeArrayStart(7) } else { - yynn3449 = 0 - for _, b := range yyq3449 { + yynn3498 = 0 + for _, b := range yyq3498 { if b { - yynn3449++ + yynn3498++ } } - r.EncodeMapStart(yynn3449) - yynn3449 = 0 + r.EncodeMapStart(yynn3498) + yynn3498 = 0 } - if yyr3449 || yy2arr3449 { + if yyr3498 || yy2arr3498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3449[0] { - yym3451 := z.EncBinary() - _ = yym3451 + if yyq3498[0] { + yym3500 := z.EncBinary() + _ = yym3500 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43888,23 +44425,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3449[0] { + if yyq3498[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3452 := z.EncBinary() - _ = yym3452 + yym3501 := z.EncBinary() + _ = yym3501 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3449 || yy2arr3449 { + if yyr3498 || yy2arr3498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3449[1] { - yym3454 := z.EncBinary() - _ = yym3454 + if yyq3498[1] { + yym3503 := z.EncBinary() + _ = yym3503 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43913,23 +44450,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3449[1] { + if yyq3498[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3455 := z.EncBinary() - _ = yym3455 + yym3504 := z.EncBinary() + _ = yym3504 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3449 || yy2arr3449 { + if yyr3498 || yy2arr3498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3449[2] { - yym3457 := z.EncBinary() - _ = yym3457 + if yyq3498[2] { + yym3506 := z.EncBinary() + _ = yym3506 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) @@ -43938,23 +44475,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3449[2] { + if yyq3498[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3458 := z.EncBinary() - _ = yym3458 + yym3507 := z.EncBinary() + _ = yym3507 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) } } } - if yyr3449 || yy2arr3449 { + if yyr3498 || yy2arr3498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3449[3] { - yym3460 := z.EncBinary() - _ = yym3460 + if yyq3498[3] { + yym3509 := z.EncBinary() + _ = yym3509 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) @@ -43963,23 +44500,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3449[3] { + if yyq3498[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3461 := z.EncBinary() - _ = yym3461 + yym3510 := z.EncBinary() + _ = yym3510 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) } } } - if yyr3449 || yy2arr3449 { + if yyr3498 || yy2arr3498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3449[4] { - yym3463 := z.EncBinary() - _ = yym3463 + if yyq3498[4] { + yym3512 := z.EncBinary() + _ = yym3512 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -43988,23 +44525,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3449[4] { + if yyq3498[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3464 := z.EncBinary() - _ = yym3464 + yym3513 := z.EncBinary() + _ = yym3513 if false { } else { r.EncodeBool(bool(x.Watch)) } } } - if yyr3449 || yy2arr3449 { + if yyr3498 || yy2arr3498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3449[5] { - yym3466 := z.EncBinary() - _ = yym3466 + if yyq3498[5] { + yym3515 := z.EncBinary() + _ = yym3515 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -44013,54 +44550,54 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3449[5] { + if yyq3498[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3467 := z.EncBinary() - _ = yym3467 + yym3516 := z.EncBinary() + _ = yym3516 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3449 || yy2arr3449 { + if yyr3498 || yy2arr3498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3449[6] { + if yyq3498[6] { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3469 := *x.TimeoutSeconds - yym3470 := z.EncBinary() - _ = yym3470 + yy3518 := *x.TimeoutSeconds + yym3519 := z.EncBinary() + _ = yym3519 if false { } else { - r.EncodeInt(int64(yy3469)) + r.EncodeInt(int64(yy3518)) } } } else { r.EncodeNil() } } else { - if yyq3449[6] { + if yyq3498[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3471 := *x.TimeoutSeconds - yym3472 := z.EncBinary() - _ = yym3472 + yy3520 := *x.TimeoutSeconds + yym3521 := z.EncBinary() + _ = yym3521 if false { } else { - r.EncodeInt(int64(yy3471)) + r.EncodeInt(int64(yy3520)) } } } } - if yyr3449 || yy2arr3449 { + if yyr3498 || yy2arr3498 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44073,25 +44610,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3473 := z.DecBinary() - _ = yym3473 + yym3522 := z.DecBinary() + _ = yym3522 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3474 := r.ContainerType() - if yyct3474 == codecSelferValueTypeMap1234 { - yyl3474 := r.ReadMapStart() - if yyl3474 == 0 { + yyct3523 := r.ContainerType() + if yyct3523 == codecSelferValueTypeMap1234 { + yyl3523 := r.ReadMapStart() + if yyl3523 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3474, d) + x.codecDecodeSelfFromMap(yyl3523, d) } - } else if yyct3474 == codecSelferValueTypeArray1234 { - yyl3474 := r.ReadArrayStart() - if yyl3474 == 0 { + } else if yyct3523 == codecSelferValueTypeArray1234 { + yyl3523 := r.ReadArrayStart() + if yyl3523 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3474, d) + x.codecDecodeSelfFromArray(yyl3523, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44103,12 +44640,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3475Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3475Slc - var yyhl3475 bool = l >= 0 - for yyj3475 := 0; ; yyj3475++ { - if yyhl3475 { - if yyj3475 >= l { + var yys3524Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3524Slc + var yyhl3524 bool = l >= 0 + for yyj3524 := 0; ; yyj3524++ { + if yyhl3524 { + if yyj3524 >= l { break } } else { @@ -44117,10 +44654,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3475Slc = r.DecodeBytes(yys3475Slc, true, true) - yys3475 := string(yys3475Slc) + yys3524Slc = r.DecodeBytes(yys3524Slc, true, true) + yys3524 := string(yys3524Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3475 { + switch yys3524 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44166,17 +44703,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3483 := z.DecBinary() - _ = yym3483 + yym3532 := z.DecBinary() + _ = yym3532 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3475) - } // end switch yys3475 - } // end for yyj3475 + z.DecStructFieldNotFound(-1, yys3524) + } // end switch yys3524 + } // end for yyj3524 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44184,16 +44721,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3484 int - var yyb3484 bool - var yyhl3484 bool = l >= 0 - yyj3484++ - if yyhl3484 { - yyb3484 = yyj3484 > l + var yyj3533 int + var yyb3533 bool + var yyhl3533 bool = l >= 0 + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3484 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3484 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44203,13 +44740,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3484++ - if yyhl3484 { - yyb3484 = yyj3484 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3484 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3484 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44219,13 +44756,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3484++ - if yyhl3484 { - yyb3484 = yyj3484 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3484 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3484 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44235,13 +44772,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LabelSelector = string(r.DecodeString()) } - yyj3484++ - if yyhl3484 { - yyb3484 = yyj3484 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3484 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3484 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44251,13 +44788,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FieldSelector = string(r.DecodeString()) } - yyj3484++ - if yyhl3484 { - yyb3484 = yyj3484 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3484 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3484 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44267,13 +44804,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3484++ - if yyhl3484 { - yyb3484 = yyj3484 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3484 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3484 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44283,13 +44820,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3484++ - if yyhl3484 { - yyb3484 = yyj3484 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3484 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3484 { + if yyb3533 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44302,25 +44839,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3492 := z.DecBinary() - _ = yym3492 + yym3541 := z.DecBinary() + _ = yym3541 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3484++ - if yyhl3484 { - yyb3484 = yyj3484 > l + yyj3533++ + if yyhl3533 { + yyb3533 = yyj3533 > l } else { - yyb3484 = r.CheckBreak() + yyb3533 = r.CheckBreak() } - if yyb3484 { + if yyb3533 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3484-1, "") + z.DecStructFieldNotFound(yyj3533-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44332,44 +44869,44 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3493 := z.EncBinary() - _ = yym3493 + yym3542 := z.EncBinary() + _ = yym3542 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3494 := !z.EncBinary() - yy2arr3494 := z.EncBasicHandle().StructToArray - var yyq3494 [10]bool - _, _, _ = yysep3494, yyq3494, yy2arr3494 - const yyr3494 bool = false - yyq3494[0] = x.Kind != "" - yyq3494[1] = x.APIVersion != "" - yyq3494[2] = x.Container != "" - yyq3494[3] = x.Follow != false - yyq3494[4] = x.Previous != false - yyq3494[5] = x.SinceSeconds != nil - yyq3494[6] = x.SinceTime != nil - yyq3494[7] = x.Timestamps != false - yyq3494[8] = x.TailLines != nil - yyq3494[9] = x.LimitBytes != nil - var yynn3494 int - if yyr3494 || yy2arr3494 { + yysep3543 := !z.EncBinary() + yy2arr3543 := z.EncBasicHandle().StructToArray + var yyq3543 [10]bool + _, _, _ = yysep3543, yyq3543, yy2arr3543 + const yyr3543 bool = false + yyq3543[0] = x.Kind != "" + yyq3543[1] = x.APIVersion != "" + yyq3543[2] = x.Container != "" + yyq3543[3] = x.Follow != false + yyq3543[4] = x.Previous != false + yyq3543[5] = x.SinceSeconds != nil + yyq3543[6] = x.SinceTime != nil + yyq3543[7] = x.Timestamps != false + yyq3543[8] = x.TailLines != nil + yyq3543[9] = x.LimitBytes != nil + var yynn3543 int + if yyr3543 || yy2arr3543 { r.EncodeArrayStart(10) } else { - yynn3494 = 0 - for _, b := range yyq3494 { + yynn3543 = 0 + for _, b := range yyq3543 { if b { - yynn3494++ + yynn3543++ } } - r.EncodeMapStart(yynn3494) - yynn3494 = 0 + r.EncodeMapStart(yynn3543) + yynn3543 = 0 } - if yyr3494 || yy2arr3494 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3494[0] { - yym3496 := z.EncBinary() - _ = yym3496 + if yyq3543[0] { + yym3545 := z.EncBinary() + _ = yym3545 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44378,23 +44915,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3494[0] { + if yyq3543[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3497 := z.EncBinary() - _ = yym3497 + yym3546 := z.EncBinary() + _ = yym3546 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3494 || yy2arr3494 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3494[1] { - yym3499 := z.EncBinary() - _ = yym3499 + if yyq3543[1] { + yym3548 := z.EncBinary() + _ = yym3548 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44403,23 +44940,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3494[1] { + if yyq3543[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3500 := z.EncBinary() - _ = yym3500 + yym3549 := z.EncBinary() + _ = yym3549 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3494 || yy2arr3494 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3494[2] { - yym3502 := z.EncBinary() - _ = yym3502 + if yyq3543[2] { + yym3551 := z.EncBinary() + _ = yym3551 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -44428,23 +44965,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3494[2] { + if yyq3543[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3503 := z.EncBinary() - _ = yym3503 + yym3552 := z.EncBinary() + _ = yym3552 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3494 || yy2arr3494 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3494[3] { - yym3505 := z.EncBinary() - _ = yym3505 + if yyq3543[3] { + yym3554 := z.EncBinary() + _ = yym3554 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -44453,23 +44990,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3494[3] { + if yyq3543[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3506 := z.EncBinary() - _ = yym3506 + yym3555 := z.EncBinary() + _ = yym3555 if false { } else { r.EncodeBool(bool(x.Follow)) } } } - if yyr3494 || yy2arr3494 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3494[4] { - yym3508 := z.EncBinary() - _ = yym3508 + if yyq3543[4] { + yym3557 := z.EncBinary() + _ = yym3557 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -44478,66 +45015,66 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3494[4] { + if yyq3543[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3509 := z.EncBinary() - _ = yym3509 + yym3558 := z.EncBinary() + _ = yym3558 if false { } else { r.EncodeBool(bool(x.Previous)) } } } - if yyr3494 || yy2arr3494 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3494[5] { + if yyq3543[5] { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3511 := *x.SinceSeconds - yym3512 := z.EncBinary() - _ = yym3512 + yy3560 := *x.SinceSeconds + yym3561 := z.EncBinary() + _ = yym3561 if false { } else { - r.EncodeInt(int64(yy3511)) + r.EncodeInt(int64(yy3560)) } } } else { r.EncodeNil() } } else { - if yyq3494[5] { + if yyq3543[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3513 := *x.SinceSeconds - yym3514 := z.EncBinary() - _ = yym3514 + yy3562 := *x.SinceSeconds + yym3563 := z.EncBinary() + _ = yym3563 if false { } else { - r.EncodeInt(int64(yy3513)) + r.EncodeInt(int64(yy3562)) } } } } - if yyr3494 || yy2arr3494 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3494[6] { + if yyq3543[6] { if x.SinceTime == nil { r.EncodeNil() } else { - yym3516 := z.EncBinary() - _ = yym3516 + yym3565 := z.EncBinary() + _ = yym3565 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3516 { + } else if yym3565 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3516 && z.IsJSONHandle() { + } else if !yym3565 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -44547,20 +45084,20 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3494[6] { + if yyq3543[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3517 := z.EncBinary() - _ = yym3517 + yym3566 := z.EncBinary() + _ = yym3566 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3517 { + } else if yym3566 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3517 && z.IsJSONHandle() { + } else if !yym3566 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -44568,11 +45105,11 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3494 || yy2arr3494 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3494[7] { - yym3519 := z.EncBinary() - _ = yym3519 + if yyq3543[7] { + yym3568 := z.EncBinary() + _ = yym3568 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -44581,89 +45118,89 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3494[7] { + if yyq3543[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3520 := z.EncBinary() - _ = yym3520 + yym3569 := z.EncBinary() + _ = yym3569 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } } - if yyr3494 || yy2arr3494 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3494[8] { + if yyq3543[8] { if x.TailLines == nil { r.EncodeNil() } else { - yy3522 := *x.TailLines - yym3523 := z.EncBinary() - _ = yym3523 + yy3571 := *x.TailLines + yym3572 := z.EncBinary() + _ = yym3572 if false { } else { - r.EncodeInt(int64(yy3522)) + r.EncodeInt(int64(yy3571)) } } } else { r.EncodeNil() } } else { - if yyq3494[8] { + if yyq3543[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tailLines")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3524 := *x.TailLines - yym3525 := z.EncBinary() - _ = yym3525 + yy3573 := *x.TailLines + yym3574 := z.EncBinary() + _ = yym3574 if false { } else { - r.EncodeInt(int64(yy3524)) + r.EncodeInt(int64(yy3573)) } } } } - if yyr3494 || yy2arr3494 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3494[9] { + if yyq3543[9] { if x.LimitBytes == nil { r.EncodeNil() } else { - yy3527 := *x.LimitBytes - yym3528 := z.EncBinary() - _ = yym3528 + yy3576 := *x.LimitBytes + yym3577 := z.EncBinary() + _ = yym3577 if false { } else { - r.EncodeInt(int64(yy3527)) + r.EncodeInt(int64(yy3576)) } } } else { r.EncodeNil() } } else { - if yyq3494[9] { + if yyq3543[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limitBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3529 := *x.LimitBytes - yym3530 := z.EncBinary() - _ = yym3530 + yy3578 := *x.LimitBytes + yym3579 := z.EncBinary() + _ = yym3579 if false { } else { - r.EncodeInt(int64(yy3529)) + r.EncodeInt(int64(yy3578)) } } } } - if yyr3494 || yy2arr3494 { + if yyr3543 || yy2arr3543 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44676,25 +45213,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3531 := z.DecBinary() - _ = yym3531 + yym3580 := z.DecBinary() + _ = yym3580 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3532 := r.ContainerType() - if yyct3532 == codecSelferValueTypeMap1234 { - yyl3532 := r.ReadMapStart() - if yyl3532 == 0 { + yyct3581 := r.ContainerType() + if yyct3581 == codecSelferValueTypeMap1234 { + yyl3581 := r.ReadMapStart() + if yyl3581 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3532, d) + x.codecDecodeSelfFromMap(yyl3581, d) } - } else if yyct3532 == codecSelferValueTypeArray1234 { - yyl3532 := r.ReadArrayStart() - if yyl3532 == 0 { + } else if yyct3581 == codecSelferValueTypeArray1234 { + yyl3581 := r.ReadArrayStart() + if yyl3581 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3532, d) + x.codecDecodeSelfFromArray(yyl3581, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44706,12 +45243,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3533Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3533Slc - var yyhl3533 bool = l >= 0 - for yyj3533 := 0; ; yyj3533++ { - if yyhl3533 { - if yyj3533 >= l { + var yys3582Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3582Slc + var yyhl3582 bool = l >= 0 + for yyj3582 := 0; ; yyj3582++ { + if yyhl3582 { + if yyj3582 >= l { break } } else { @@ -44720,10 +45257,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3533Slc = r.DecodeBytes(yys3533Slc, true, true) - yys3533 := string(yys3533Slc) + yys3582Slc = r.DecodeBytes(yys3582Slc, true, true) + yys3582 := string(yys3582Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3533 { + switch yys3582 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44763,8 +45300,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3540 := z.DecBinary() - _ = yym3540 + yym3589 := z.DecBinary() + _ = yym3589 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -44779,13 +45316,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3542 := z.DecBinary() - _ = yym3542 + yym3591 := z.DecBinary() + _ = yym3591 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3542 { + } else if yym3591 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3542 && z.IsJSONHandle() { + } else if !yym3591 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -44806,8 +45343,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3545 := z.DecBinary() - _ = yym3545 + yym3594 := z.DecBinary() + _ = yym3594 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -44822,17 +45359,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3547 := z.DecBinary() - _ = yym3547 + yym3596 := z.DecBinary() + _ = yym3596 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3533) - } // end switch yys3533 - } // end for yyj3533 + z.DecStructFieldNotFound(-1, yys3582) + } // end switch yys3582 + } // end for yyj3582 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44840,16 +45377,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3548 int - var yyb3548 bool - var yyhl3548 bool = l >= 0 - yyj3548++ - if yyhl3548 { - yyb3548 = yyj3548 > l + var yyj3597 int + var yyb3597 bool + var yyhl3597 bool = l >= 0 + yyj3597++ + if yyhl3597 { + yyb3597 = yyj3597 > l } else { - yyb3548 = r.CheckBreak() + yyb3597 = r.CheckBreak() } - if yyb3548 { + if yyb3597 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44859,13 +45396,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3548++ - if yyhl3548 { - yyb3548 = yyj3548 > l + yyj3597++ + if yyhl3597 { + yyb3597 = yyj3597 > l } else { - yyb3548 = r.CheckBreak() + yyb3597 = r.CheckBreak() } - if yyb3548 { + if yyb3597 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44875,13 +45412,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3548++ - if yyhl3548 { - yyb3548 = yyj3548 > l + yyj3597++ + if yyhl3597 { + yyb3597 = yyj3597 > l } else { - yyb3548 = r.CheckBreak() + yyb3597 = r.CheckBreak() } - if yyb3548 { + if yyb3597 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44891,13 +45428,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3548++ - if yyhl3548 { - yyb3548 = yyj3548 > l + yyj3597++ + if yyhl3597 { + yyb3597 = yyj3597 > l } else { - yyb3548 = r.CheckBreak() + yyb3597 = r.CheckBreak() } - if yyb3548 { + if yyb3597 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44907,13 +45444,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3548++ - if yyhl3548 { - yyb3548 = yyj3548 > l + yyj3597++ + if yyhl3597 { + yyb3597 = yyj3597 > l } else { - yyb3548 = r.CheckBreak() + yyb3597 = r.CheckBreak() } - if yyb3548 { + if yyb3597 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44923,13 +45460,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3548++ - if yyhl3548 { - yyb3548 = yyj3548 > l + yyj3597++ + if yyhl3597 { + yyb3597 = yyj3597 > l } else { - yyb3548 = r.CheckBreak() + yyb3597 = r.CheckBreak() } - if yyb3548 { + if yyb3597 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44942,20 +45479,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3555 := z.DecBinary() - _ = yym3555 + yym3604 := z.DecBinary() + _ = yym3604 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3548++ - if yyhl3548 { - yyb3548 = yyj3548 > l + yyj3597++ + if yyhl3597 { + yyb3597 = yyj3597 > l } else { - yyb3548 = r.CheckBreak() + yyb3597 = r.CheckBreak() } - if yyb3548 { + if yyb3597 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44968,25 +45505,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3557 := z.DecBinary() - _ = yym3557 + yym3606 := z.DecBinary() + _ = yym3606 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3557 { + } else if yym3606 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3557 && z.IsJSONHandle() { + } else if !yym3606 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3548++ - if yyhl3548 { - yyb3548 = yyj3548 > l + yyj3597++ + if yyhl3597 { + yyb3597 = yyj3597 > l } else { - yyb3548 = r.CheckBreak() + yyb3597 = r.CheckBreak() } - if yyb3548 { + if yyb3597 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44996,13 +45533,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3548++ - if yyhl3548 { - yyb3548 = yyj3548 > l + yyj3597++ + if yyhl3597 { + yyb3597 = yyj3597 > l } else { - yyb3548 = r.CheckBreak() + yyb3597 = r.CheckBreak() } - if yyb3548 { + if yyb3597 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45015,20 +45552,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3560 := z.DecBinary() - _ = yym3560 + yym3609 := z.DecBinary() + _ = yym3609 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3548++ - if yyhl3548 { - yyb3548 = yyj3548 > l + yyj3597++ + if yyhl3597 { + yyb3597 = yyj3597 > l } else { - yyb3548 = r.CheckBreak() + yyb3597 = r.CheckBreak() } - if yyb3548 { + if yyb3597 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45041,25 +45578,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3562 := z.DecBinary() - _ = yym3562 + yym3611 := z.DecBinary() + _ = yym3611 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3548++ - if yyhl3548 { - yyb3548 = yyj3548 > l + yyj3597++ + if yyhl3597 { + yyb3597 = yyj3597 > l } else { - yyb3548 = r.CheckBreak() + yyb3597 = r.CheckBreak() } - if yyb3548 { + if yyb3597 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3548-1, "") + z.DecStructFieldNotFound(yyj3597-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45071,41 +45608,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3563 := z.EncBinary() - _ = yym3563 + yym3612 := z.EncBinary() + _ = yym3612 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3564 := !z.EncBinary() - yy2arr3564 := z.EncBasicHandle().StructToArray - var yyq3564 [7]bool - _, _, _ = yysep3564, yyq3564, yy2arr3564 - const yyr3564 bool = false - yyq3564[0] = x.Kind != "" - yyq3564[1] = x.APIVersion != "" - yyq3564[2] = x.Stdin != false - yyq3564[3] = x.Stdout != false - yyq3564[4] = x.Stderr != false - yyq3564[5] = x.TTY != false - yyq3564[6] = x.Container != "" - var yynn3564 int - if yyr3564 || yy2arr3564 { + yysep3613 := !z.EncBinary() + yy2arr3613 := z.EncBasicHandle().StructToArray + var yyq3613 [7]bool + _, _, _ = yysep3613, yyq3613, yy2arr3613 + const yyr3613 bool = false + yyq3613[0] = x.Kind != "" + yyq3613[1] = x.APIVersion != "" + yyq3613[2] = x.Stdin != false + yyq3613[3] = x.Stdout != false + yyq3613[4] = x.Stderr != false + yyq3613[5] = x.TTY != false + yyq3613[6] = x.Container != "" + var yynn3613 int + if yyr3613 || yy2arr3613 { r.EncodeArrayStart(7) } else { - yynn3564 = 0 - for _, b := range yyq3564 { + yynn3613 = 0 + for _, b := range yyq3613 { if b { - yynn3564++ + yynn3613++ } } - r.EncodeMapStart(yynn3564) - yynn3564 = 0 + r.EncodeMapStart(yynn3613) + yynn3613 = 0 } - if yyr3564 || yy2arr3564 { + if yyr3613 || yy2arr3613 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3564[0] { - yym3566 := z.EncBinary() - _ = yym3566 + if yyq3613[0] { + yym3615 := z.EncBinary() + _ = yym3615 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45114,23 +45651,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3564[0] { + if yyq3613[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3567 := z.EncBinary() - _ = yym3567 + yym3616 := z.EncBinary() + _ = yym3616 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3564 || yy2arr3564 { + if yyr3613 || yy2arr3613 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3564[1] { - yym3569 := z.EncBinary() - _ = yym3569 + if yyq3613[1] { + yym3618 := z.EncBinary() + _ = yym3618 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45139,23 +45676,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3564[1] { + if yyq3613[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3570 := z.EncBinary() - _ = yym3570 + yym3619 := z.EncBinary() + _ = yym3619 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3564 || yy2arr3564 { + if yyr3613 || yy2arr3613 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3564[2] { - yym3572 := z.EncBinary() - _ = yym3572 + if yyq3613[2] { + yym3621 := z.EncBinary() + _ = yym3621 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -45164,23 +45701,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3564[2] { + if yyq3613[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3573 := z.EncBinary() - _ = yym3573 + yym3622 := z.EncBinary() + _ = yym3622 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3564 || yy2arr3564 { + if yyr3613 || yy2arr3613 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3564[3] { - yym3575 := z.EncBinary() - _ = yym3575 + if yyq3613[3] { + yym3624 := z.EncBinary() + _ = yym3624 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -45189,23 +45726,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3564[3] { + if yyq3613[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3576 := z.EncBinary() - _ = yym3576 + yym3625 := z.EncBinary() + _ = yym3625 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3564 || yy2arr3564 { + if yyr3613 || yy2arr3613 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3564[4] { - yym3578 := z.EncBinary() - _ = yym3578 + if yyq3613[4] { + yym3627 := z.EncBinary() + _ = yym3627 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -45214,23 +45751,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3564[4] { + if yyq3613[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3579 := z.EncBinary() - _ = yym3579 + yym3628 := z.EncBinary() + _ = yym3628 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3564 || yy2arr3564 { + if yyr3613 || yy2arr3613 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3564[5] { - yym3581 := z.EncBinary() - _ = yym3581 + if yyq3613[5] { + yym3630 := z.EncBinary() + _ = yym3630 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -45239,23 +45776,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3564[5] { + if yyq3613[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3582 := z.EncBinary() - _ = yym3582 + yym3631 := z.EncBinary() + _ = yym3631 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3564 || yy2arr3564 { + if yyr3613 || yy2arr3613 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3564[6] { - yym3584 := z.EncBinary() - _ = yym3584 + if yyq3613[6] { + yym3633 := z.EncBinary() + _ = yym3633 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -45264,19 +45801,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3564[6] { + if yyq3613[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3585 := z.EncBinary() - _ = yym3585 + yym3634 := z.EncBinary() + _ = yym3634 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3564 || yy2arr3564 { + if yyr3613 || yy2arr3613 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45289,25 +45826,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3586 := z.DecBinary() - _ = yym3586 + yym3635 := z.DecBinary() + _ = yym3635 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3587 := r.ContainerType() - if yyct3587 == codecSelferValueTypeMap1234 { - yyl3587 := r.ReadMapStart() - if yyl3587 == 0 { + yyct3636 := r.ContainerType() + if yyct3636 == codecSelferValueTypeMap1234 { + yyl3636 := r.ReadMapStart() + if yyl3636 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3587, d) + x.codecDecodeSelfFromMap(yyl3636, d) } - } else if yyct3587 == codecSelferValueTypeArray1234 { - yyl3587 := r.ReadArrayStart() - if yyl3587 == 0 { + } else if yyct3636 == codecSelferValueTypeArray1234 { + yyl3636 := r.ReadArrayStart() + if yyl3636 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3587, d) + x.codecDecodeSelfFromArray(yyl3636, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45319,12 +45856,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3588Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3588Slc - var yyhl3588 bool = l >= 0 - for yyj3588 := 0; ; yyj3588++ { - if yyhl3588 { - if yyj3588 >= l { + var yys3637Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3637Slc + var yyhl3637 bool = l >= 0 + for yyj3637 := 0; ; yyj3637++ { + if yyhl3637 { + if yyj3637 >= l { break } } else { @@ -45333,10 +45870,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3588Slc = r.DecodeBytes(yys3588Slc, true, true) - yys3588 := string(yys3588Slc) + yys3637Slc = r.DecodeBytes(yys3637Slc, true, true) + yys3637 := string(yys3637Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3588 { + switch yys3637 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45380,9 +45917,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3588) - } // end switch yys3588 - } // end for yyj3588 + z.DecStructFieldNotFound(-1, yys3637) + } // end switch yys3637 + } // end for yyj3637 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45390,16 +45927,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3596 int - var yyb3596 bool - var yyhl3596 bool = l >= 0 - yyj3596++ - if yyhl3596 { - yyb3596 = yyj3596 > l + var yyj3645 int + var yyb3645 bool + var yyhl3645 bool = l >= 0 + yyj3645++ + if yyhl3645 { + yyb3645 = yyj3645 > l } else { - yyb3596 = r.CheckBreak() + yyb3645 = r.CheckBreak() } - if yyb3596 { + if yyb3645 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45409,13 +45946,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3596++ - if yyhl3596 { - yyb3596 = yyj3596 > l + yyj3645++ + if yyhl3645 { + yyb3645 = yyj3645 > l } else { - yyb3596 = r.CheckBreak() + yyb3645 = r.CheckBreak() } - if yyb3596 { + if yyb3645 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45425,13 +45962,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3596++ - if yyhl3596 { - yyb3596 = yyj3596 > l + yyj3645++ + if yyhl3645 { + yyb3645 = yyj3645 > l } else { - yyb3596 = r.CheckBreak() + yyb3645 = r.CheckBreak() } - if yyb3596 { + if yyb3645 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45441,13 +45978,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3596++ - if yyhl3596 { - yyb3596 = yyj3596 > l + yyj3645++ + if yyhl3645 { + yyb3645 = yyj3645 > l } else { - yyb3596 = r.CheckBreak() + yyb3645 = r.CheckBreak() } - if yyb3596 { + if yyb3645 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45457,13 +45994,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3596++ - if yyhl3596 { - yyb3596 = yyj3596 > l + yyj3645++ + if yyhl3645 { + yyb3645 = yyj3645 > l } else { - yyb3596 = r.CheckBreak() + yyb3645 = r.CheckBreak() } - if yyb3596 { + if yyb3645 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45473,13 +46010,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3596++ - if yyhl3596 { - yyb3596 = yyj3596 > l + yyj3645++ + if yyhl3645 { + yyb3645 = yyj3645 > l } else { - yyb3596 = r.CheckBreak() + yyb3645 = r.CheckBreak() } - if yyb3596 { + if yyb3645 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45489,13 +46026,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3596++ - if yyhl3596 { - yyb3596 = yyj3596 > l + yyj3645++ + if yyhl3645 { + yyb3645 = yyj3645 > l } else { - yyb3596 = r.CheckBreak() + yyb3645 = r.CheckBreak() } - if yyb3596 { + if yyb3645 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45506,17 +46043,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3596++ - if yyhl3596 { - yyb3596 = yyj3596 > l + yyj3645++ + if yyhl3645 { + yyb3645 = yyj3645 > l } else { - yyb3596 = r.CheckBreak() + yyb3645 = r.CheckBreak() } - if yyb3596 { + if yyb3645 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3596-1, "") + z.DecStructFieldNotFound(yyj3645-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45528,41 +46065,41 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3604 := z.EncBinary() - _ = yym3604 + yym3653 := z.EncBinary() + _ = yym3653 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3605 := !z.EncBinary() - yy2arr3605 := z.EncBasicHandle().StructToArray - var yyq3605 [8]bool - _, _, _ = yysep3605, yyq3605, yy2arr3605 - const yyr3605 bool = false - yyq3605[0] = x.Kind != "" - yyq3605[1] = x.APIVersion != "" - yyq3605[2] = x.Stdin != false - yyq3605[3] = x.Stdout != false - yyq3605[4] = x.Stderr != false - yyq3605[5] = x.TTY != false - yyq3605[6] = x.Container != "" - var yynn3605 int - if yyr3605 || yy2arr3605 { + yysep3654 := !z.EncBinary() + yy2arr3654 := z.EncBasicHandle().StructToArray + var yyq3654 [8]bool + _, _, _ = yysep3654, yyq3654, yy2arr3654 + const yyr3654 bool = false + yyq3654[0] = x.Kind != "" + yyq3654[1] = x.APIVersion != "" + yyq3654[2] = x.Stdin != false + yyq3654[3] = x.Stdout != false + yyq3654[4] = x.Stderr != false + yyq3654[5] = x.TTY != false + yyq3654[6] = x.Container != "" + var yynn3654 int + if yyr3654 || yy2arr3654 { r.EncodeArrayStart(8) } else { - yynn3605 = 1 - for _, b := range yyq3605 { + yynn3654 = 1 + for _, b := range yyq3654 { if b { - yynn3605++ + yynn3654++ } } - r.EncodeMapStart(yynn3605) - yynn3605 = 0 + r.EncodeMapStart(yynn3654) + yynn3654 = 0 } - if yyr3605 || yy2arr3605 { + if yyr3654 || yy2arr3654 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3605[0] { - yym3607 := z.EncBinary() - _ = yym3607 + if yyq3654[0] { + yym3656 := z.EncBinary() + _ = yym3656 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45571,23 +46108,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3605[0] { + if yyq3654[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3608 := z.EncBinary() - _ = yym3608 + yym3657 := z.EncBinary() + _ = yym3657 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3605 || yy2arr3605 { + if yyr3654 || yy2arr3654 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3605[1] { - yym3610 := z.EncBinary() - _ = yym3610 + if yyq3654[1] { + yym3659 := z.EncBinary() + _ = yym3659 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45596,23 +46133,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3605[1] { + if yyq3654[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3611 := z.EncBinary() - _ = yym3611 + yym3660 := z.EncBinary() + _ = yym3660 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3605 || yy2arr3605 { + if yyr3654 || yy2arr3654 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3605[2] { - yym3613 := z.EncBinary() - _ = yym3613 + if yyq3654[2] { + yym3662 := z.EncBinary() + _ = yym3662 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -45621,23 +46158,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3605[2] { + if yyq3654[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3614 := z.EncBinary() - _ = yym3614 + yym3663 := z.EncBinary() + _ = yym3663 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3605 || yy2arr3605 { + if yyr3654 || yy2arr3654 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3605[3] { - yym3616 := z.EncBinary() - _ = yym3616 + if yyq3654[3] { + yym3665 := z.EncBinary() + _ = yym3665 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -45646,23 +46183,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3605[3] { + if yyq3654[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3617 := z.EncBinary() - _ = yym3617 + yym3666 := z.EncBinary() + _ = yym3666 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3605 || yy2arr3605 { + if yyr3654 || yy2arr3654 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3605[4] { - yym3619 := z.EncBinary() - _ = yym3619 + if yyq3654[4] { + yym3668 := z.EncBinary() + _ = yym3668 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -45671,23 +46208,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3605[4] { + if yyq3654[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3620 := z.EncBinary() - _ = yym3620 + yym3669 := z.EncBinary() + _ = yym3669 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3605 || yy2arr3605 { + if yyr3654 || yy2arr3654 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3605[5] { - yym3622 := z.EncBinary() - _ = yym3622 + if yyq3654[5] { + yym3671 := z.EncBinary() + _ = yym3671 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -45696,23 +46233,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3605[5] { + if yyq3654[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3623 := z.EncBinary() - _ = yym3623 + yym3672 := z.EncBinary() + _ = yym3672 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3605 || yy2arr3605 { + if yyr3654 || yy2arr3654 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3605[6] { - yym3625 := z.EncBinary() - _ = yym3625 + if yyq3654[6] { + yym3674 := z.EncBinary() + _ = yym3674 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -45721,25 +46258,25 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3605[6] { + if yyq3654[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3626 := z.EncBinary() - _ = yym3626 + yym3675 := z.EncBinary() + _ = yym3675 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3605 || yy2arr3605 { + if yyr3654 || yy2arr3654 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3628 := z.EncBinary() - _ = yym3628 + yym3677 := z.EncBinary() + _ = yym3677 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -45752,15 +46289,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3629 := z.EncBinary() - _ = yym3629 + yym3678 := z.EncBinary() + _ = yym3678 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3605 || yy2arr3605 { + if yyr3654 || yy2arr3654 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45773,25 +46310,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3630 := z.DecBinary() - _ = yym3630 + yym3679 := z.DecBinary() + _ = yym3679 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3631 := r.ContainerType() - if yyct3631 == codecSelferValueTypeMap1234 { - yyl3631 := r.ReadMapStart() - if yyl3631 == 0 { + yyct3680 := r.ContainerType() + if yyct3680 == codecSelferValueTypeMap1234 { + yyl3680 := r.ReadMapStart() + if yyl3680 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3631, d) + x.codecDecodeSelfFromMap(yyl3680, d) } - } else if yyct3631 == codecSelferValueTypeArray1234 { - yyl3631 := r.ReadArrayStart() - if yyl3631 == 0 { + } else if yyct3680 == codecSelferValueTypeArray1234 { + yyl3680 := r.ReadArrayStart() + if yyl3680 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3631, d) + x.codecDecodeSelfFromArray(yyl3680, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45803,12 +46340,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3632Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3632Slc - var yyhl3632 bool = l >= 0 - for yyj3632 := 0; ; yyj3632++ { - if yyhl3632 { - if yyj3632 >= l { + var yys3681Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3681Slc + var yyhl3681 bool = l >= 0 + for yyj3681 := 0; ; yyj3681++ { + if yyhl3681 { + if yyj3681 >= l { break } } else { @@ -45817,10 +46354,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3632Slc = r.DecodeBytes(yys3632Slc, true, true) - yys3632 := string(yys3632Slc) + yys3681Slc = r.DecodeBytes(yys3681Slc, true, true) + yys3681 := string(yys3681Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3632 { + switch yys3681 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45867,18 +46404,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3640 := &x.Command - yym3641 := z.DecBinary() - _ = yym3641 + yyv3689 := &x.Command + yym3690 := z.DecBinary() + _ = yym3690 if false { } else { - z.F.DecSliceStringX(yyv3640, false, d) + z.F.DecSliceStringX(yyv3689, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3632) - } // end switch yys3632 - } // end for yyj3632 + z.DecStructFieldNotFound(-1, yys3681) + } // end switch yys3681 + } // end for yyj3681 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45886,16 +46423,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3642 int - var yyb3642 bool - var yyhl3642 bool = l >= 0 - yyj3642++ - if yyhl3642 { - yyb3642 = yyj3642 > l + var yyj3691 int + var yyb3691 bool + var yyhl3691 bool = l >= 0 + yyj3691++ + if yyhl3691 { + yyb3691 = yyj3691 > l } else { - yyb3642 = r.CheckBreak() + yyb3691 = r.CheckBreak() } - if yyb3642 { + if yyb3691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45905,13 +46442,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3642++ - if yyhl3642 { - yyb3642 = yyj3642 > l + yyj3691++ + if yyhl3691 { + yyb3691 = yyj3691 > l } else { - yyb3642 = r.CheckBreak() + yyb3691 = r.CheckBreak() } - if yyb3642 { + if yyb3691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45921,13 +46458,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3642++ - if yyhl3642 { - yyb3642 = yyj3642 > l + yyj3691++ + if yyhl3691 { + yyb3691 = yyj3691 > l } else { - yyb3642 = r.CheckBreak() + yyb3691 = r.CheckBreak() } - if yyb3642 { + if yyb3691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45937,13 +46474,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3642++ - if yyhl3642 { - yyb3642 = yyj3642 > l + yyj3691++ + if yyhl3691 { + yyb3691 = yyj3691 > l } else { - yyb3642 = r.CheckBreak() + yyb3691 = r.CheckBreak() } - if yyb3642 { + if yyb3691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45953,13 +46490,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3642++ - if yyhl3642 { - yyb3642 = yyj3642 > l + yyj3691++ + if yyhl3691 { + yyb3691 = yyj3691 > l } else { - yyb3642 = r.CheckBreak() + yyb3691 = r.CheckBreak() } - if yyb3642 { + if yyb3691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45969,13 +46506,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3642++ - if yyhl3642 { - yyb3642 = yyj3642 > l + yyj3691++ + if yyhl3691 { + yyb3691 = yyj3691 > l } else { - yyb3642 = r.CheckBreak() + yyb3691 = r.CheckBreak() } - if yyb3642 { + if yyb3691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45985,13 +46522,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3642++ - if yyhl3642 { - yyb3642 = yyj3642 > l + yyj3691++ + if yyhl3691 { + yyb3691 = yyj3691 > l } else { - yyb3642 = r.CheckBreak() + yyb3691 = r.CheckBreak() } - if yyb3642 { + if yyb3691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46001,13 +46538,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3642++ - if yyhl3642 { - yyb3642 = yyj3642 > l + yyj3691++ + if yyhl3691 { + yyb3691 = yyj3691 > l } else { - yyb3642 = r.CheckBreak() + yyb3691 = r.CheckBreak() } - if yyb3642 { + if yyb3691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46015,26 +46552,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3650 := &x.Command - yym3651 := z.DecBinary() - _ = yym3651 + yyv3699 := &x.Command + yym3700 := z.DecBinary() + _ = yym3700 if false { } else { - z.F.DecSliceStringX(yyv3650, false, d) + z.F.DecSliceStringX(yyv3699, false, d) } } for { - yyj3642++ - if yyhl3642 { - yyb3642 = yyj3642 > l + yyj3691++ + if yyhl3691 { + yyb3691 = yyj3691 > l } else { - yyb3642 = r.CheckBreak() + yyb3691 = r.CheckBreak() } - if yyb3642 { + if yyb3691 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3642-1, "") + z.DecStructFieldNotFound(yyj3691-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46046,37 +46583,37 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3652 := z.EncBinary() - _ = yym3652 + yym3701 := z.EncBinary() + _ = yym3701 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3653 := !z.EncBinary() - yy2arr3653 := z.EncBasicHandle().StructToArray - var yyq3653 [3]bool - _, _, _ = yysep3653, yyq3653, yy2arr3653 - const yyr3653 bool = false - yyq3653[0] = x.Kind != "" - yyq3653[1] = x.APIVersion != "" - yyq3653[2] = x.Path != "" - var yynn3653 int - if yyr3653 || yy2arr3653 { + yysep3702 := !z.EncBinary() + yy2arr3702 := z.EncBasicHandle().StructToArray + var yyq3702 [3]bool + _, _, _ = yysep3702, yyq3702, yy2arr3702 + const yyr3702 bool = false + yyq3702[0] = x.Kind != "" + yyq3702[1] = x.APIVersion != "" + yyq3702[2] = x.Path != "" + var yynn3702 int + if yyr3702 || yy2arr3702 { r.EncodeArrayStart(3) } else { - yynn3653 = 0 - for _, b := range yyq3653 { + yynn3702 = 0 + for _, b := range yyq3702 { if b { - yynn3653++ + yynn3702++ } } - r.EncodeMapStart(yynn3653) - yynn3653 = 0 + r.EncodeMapStart(yynn3702) + yynn3702 = 0 } - if yyr3653 || yy2arr3653 { + if yyr3702 || yy2arr3702 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3653[0] { - yym3655 := z.EncBinary() - _ = yym3655 + if yyq3702[0] { + yym3704 := z.EncBinary() + _ = yym3704 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46085,23 +46622,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3653[0] { + if yyq3702[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3656 := z.EncBinary() - _ = yym3656 + yym3705 := z.EncBinary() + _ = yym3705 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3653 || yy2arr3653 { + if yyr3702 || yy2arr3702 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3653[1] { - yym3658 := z.EncBinary() - _ = yym3658 + if yyq3702[1] { + yym3707 := z.EncBinary() + _ = yym3707 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46110,23 +46647,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3653[1] { + if yyq3702[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3659 := z.EncBinary() - _ = yym3659 + yym3708 := z.EncBinary() + _ = yym3708 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3653 || yy2arr3653 { + if yyr3702 || yy2arr3702 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3653[2] { - yym3661 := z.EncBinary() - _ = yym3661 + if yyq3702[2] { + yym3710 := z.EncBinary() + _ = yym3710 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -46135,19 +46672,19 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3653[2] { + if yyq3702[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3662 := z.EncBinary() - _ = yym3662 + yym3711 := z.EncBinary() + _ = yym3711 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3653 || yy2arr3653 { + if yyr3702 || yy2arr3702 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46160,25 +46697,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3663 := z.DecBinary() - _ = yym3663 + yym3712 := z.DecBinary() + _ = yym3712 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3664 := r.ContainerType() - if yyct3664 == codecSelferValueTypeMap1234 { - yyl3664 := r.ReadMapStart() - if yyl3664 == 0 { + yyct3713 := r.ContainerType() + if yyct3713 == codecSelferValueTypeMap1234 { + yyl3713 := r.ReadMapStart() + if yyl3713 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3664, d) + x.codecDecodeSelfFromMap(yyl3713, d) } - } else if yyct3664 == codecSelferValueTypeArray1234 { - yyl3664 := r.ReadArrayStart() - if yyl3664 == 0 { + } else if yyct3713 == codecSelferValueTypeArray1234 { + yyl3713 := r.ReadArrayStart() + if yyl3713 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3664, d) + x.codecDecodeSelfFromArray(yyl3713, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46190,12 +46727,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3665Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3665Slc - var yyhl3665 bool = l >= 0 - for yyj3665 := 0; ; yyj3665++ { - if yyhl3665 { - if yyj3665 >= l { + var yys3714Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3714Slc + var yyhl3714 bool = l >= 0 + for yyj3714 := 0; ; yyj3714++ { + if yyhl3714 { + if yyj3714 >= l { break } } else { @@ -46204,10 +46741,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3665Slc = r.DecodeBytes(yys3665Slc, true, true) - yys3665 := string(yys3665Slc) + yys3714Slc = r.DecodeBytes(yys3714Slc, true, true) + yys3714 := string(yys3714Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3665 { + switch yys3714 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46227,9 +46764,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3665) - } // end switch yys3665 - } // end for yyj3665 + z.DecStructFieldNotFound(-1, yys3714) + } // end switch yys3714 + } // end for yyj3714 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46237,16 +46774,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3669 int - var yyb3669 bool - var yyhl3669 bool = l >= 0 - yyj3669++ - if yyhl3669 { - yyb3669 = yyj3669 > l + var yyj3718 int + var yyb3718 bool + var yyhl3718 bool = l >= 0 + yyj3718++ + if yyhl3718 { + yyb3718 = yyj3718 > l } else { - yyb3669 = r.CheckBreak() + yyb3718 = r.CheckBreak() } - if yyb3669 { + if yyb3718 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46256,13 +46793,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3669++ - if yyhl3669 { - yyb3669 = yyj3669 > l + yyj3718++ + if yyhl3718 { + yyb3718 = yyj3718 > l } else { - yyb3669 = r.CheckBreak() + yyb3718 = r.CheckBreak() } - if yyb3669 { + if yyb3718 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46272,13 +46809,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3669++ - if yyhl3669 { - yyb3669 = yyj3669 > l + yyj3718++ + if yyhl3718 { + yyb3718 = yyj3718 > l } else { - yyb3669 = r.CheckBreak() + yyb3718 = r.CheckBreak() } - if yyb3669 { + if yyb3718 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46289,17 +46826,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3669++ - if yyhl3669 { - yyb3669 = yyj3669 > l + yyj3718++ + if yyhl3718 { + yyb3718 = yyj3718 > l } else { - yyb3669 = r.CheckBreak() + yyb3718 = r.CheckBreak() } - if yyb3669 { + if yyb3718 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3669-1, "") + z.DecStructFieldNotFound(yyj3718-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46311,37 +46848,37 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3673 := z.EncBinary() - _ = yym3673 + yym3722 := z.EncBinary() + _ = yym3722 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3674 := !z.EncBinary() - yy2arr3674 := z.EncBasicHandle().StructToArray - var yyq3674 [3]bool - _, _, _ = yysep3674, yyq3674, yy2arr3674 - const yyr3674 bool = false - yyq3674[0] = x.Kind != "" - yyq3674[1] = x.APIVersion != "" - yyq3674[2] = x.Path != "" - var yynn3674 int - if yyr3674 || yy2arr3674 { + yysep3723 := !z.EncBinary() + yy2arr3723 := z.EncBasicHandle().StructToArray + var yyq3723 [3]bool + _, _, _ = yysep3723, yyq3723, yy2arr3723 + const yyr3723 bool = false + yyq3723[0] = x.Kind != "" + yyq3723[1] = x.APIVersion != "" + yyq3723[2] = x.Path != "" + var yynn3723 int + if yyr3723 || yy2arr3723 { r.EncodeArrayStart(3) } else { - yynn3674 = 0 - for _, b := range yyq3674 { + yynn3723 = 0 + for _, b := range yyq3723 { if b { - yynn3674++ + yynn3723++ } } - r.EncodeMapStart(yynn3674) - yynn3674 = 0 + r.EncodeMapStart(yynn3723) + yynn3723 = 0 } - if yyr3674 || yy2arr3674 { + if yyr3723 || yy2arr3723 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3674[0] { - yym3676 := z.EncBinary() - _ = yym3676 + if yyq3723[0] { + yym3725 := z.EncBinary() + _ = yym3725 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46350,23 +46887,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3674[0] { + if yyq3723[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3677 := z.EncBinary() - _ = yym3677 + yym3726 := z.EncBinary() + _ = yym3726 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3674 || yy2arr3674 { + if yyr3723 || yy2arr3723 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3674[1] { - yym3679 := z.EncBinary() - _ = yym3679 + if yyq3723[1] { + yym3728 := z.EncBinary() + _ = yym3728 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46375,23 +46912,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3674[1] { + if yyq3723[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3680 := z.EncBinary() - _ = yym3680 + yym3729 := z.EncBinary() + _ = yym3729 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3674 || yy2arr3674 { + if yyr3723 || yy2arr3723 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3674[2] { - yym3682 := z.EncBinary() - _ = yym3682 + if yyq3723[2] { + yym3731 := z.EncBinary() + _ = yym3731 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -46400,19 +46937,19 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3674[2] { + if yyq3723[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3683 := z.EncBinary() - _ = yym3683 + yym3732 := z.EncBinary() + _ = yym3732 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3674 || yy2arr3674 { + if yyr3723 || yy2arr3723 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46425,25 +46962,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3684 := z.DecBinary() - _ = yym3684 + yym3733 := z.DecBinary() + _ = yym3733 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3685 := r.ContainerType() - if yyct3685 == codecSelferValueTypeMap1234 { - yyl3685 := r.ReadMapStart() - if yyl3685 == 0 { + yyct3734 := r.ContainerType() + if yyct3734 == codecSelferValueTypeMap1234 { + yyl3734 := r.ReadMapStart() + if yyl3734 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3685, d) + x.codecDecodeSelfFromMap(yyl3734, d) } - } else if yyct3685 == codecSelferValueTypeArray1234 { - yyl3685 := r.ReadArrayStart() - if yyl3685 == 0 { + } else if yyct3734 == codecSelferValueTypeArray1234 { + yyl3734 := r.ReadArrayStart() + if yyl3734 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3685, d) + x.codecDecodeSelfFromArray(yyl3734, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46455,12 +46992,12 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3686Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3686Slc - var yyhl3686 bool = l >= 0 - for yyj3686 := 0; ; yyj3686++ { - if yyhl3686 { - if yyj3686 >= l { + var yys3735Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3735Slc + var yyhl3735 bool = l >= 0 + for yyj3735 := 0; ; yyj3735++ { + if yyhl3735 { + if yyj3735 >= l { break } } else { @@ -46469,10 +47006,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3686Slc = r.DecodeBytes(yys3686Slc, true, true) - yys3686 := string(yys3686Slc) + yys3735Slc = r.DecodeBytes(yys3735Slc, true, true) + yys3735 := string(yys3735Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3686 { + switch yys3735 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46492,9 +47029,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3686) - } // end switch yys3686 - } // end for yyj3686 + z.DecStructFieldNotFound(-1, yys3735) + } // end switch yys3735 + } // end for yyj3735 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46502,16 +47039,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3690 int - var yyb3690 bool - var yyhl3690 bool = l >= 0 - yyj3690++ - if yyhl3690 { - yyb3690 = yyj3690 > l + var yyj3739 int + var yyb3739 bool + var yyhl3739 bool = l >= 0 + yyj3739++ + if yyhl3739 { + yyb3739 = yyj3739 > l } else { - yyb3690 = r.CheckBreak() + yyb3739 = r.CheckBreak() } - if yyb3690 { + if yyb3739 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46521,13 +47058,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3690++ - if yyhl3690 { - yyb3690 = yyj3690 > l + yyj3739++ + if yyhl3739 { + yyb3739 = yyj3739 > l } else { - yyb3690 = r.CheckBreak() + yyb3739 = r.CheckBreak() } - if yyb3690 { + if yyb3739 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46537,13 +47074,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3690++ - if yyhl3690 { - yyb3690 = yyj3690 > l + yyj3739++ + if yyhl3739 { + yyb3739 = yyj3739 > l } else { - yyb3690 = r.CheckBreak() + yyb3739 = r.CheckBreak() } - if yyb3690 { + if yyb3739 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46554,17 +47091,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3690++ - if yyhl3690 { - yyb3690 = yyj3690 > l + yyj3739++ + if yyhl3739 { + yyb3739 = yyj3739 > l } else { - yyb3690 = r.CheckBreak() + yyb3739 = r.CheckBreak() } - if yyb3690 { + if yyb3739 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3690-1, "") + z.DecStructFieldNotFound(yyj3739-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46576,37 +47113,37 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3694 := z.EncBinary() - _ = yym3694 + yym3743 := z.EncBinary() + _ = yym3743 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3695 := !z.EncBinary() - yy2arr3695 := z.EncBasicHandle().StructToArray - var yyq3695 [3]bool - _, _, _ = yysep3695, yyq3695, yy2arr3695 - const yyr3695 bool = false - yyq3695[0] = x.Kind != "" - yyq3695[1] = x.APIVersion != "" - yyq3695[2] = x.Path != "" - var yynn3695 int - if yyr3695 || yy2arr3695 { + yysep3744 := !z.EncBinary() + yy2arr3744 := z.EncBasicHandle().StructToArray + var yyq3744 [3]bool + _, _, _ = yysep3744, yyq3744, yy2arr3744 + const yyr3744 bool = false + yyq3744[0] = x.Kind != "" + yyq3744[1] = x.APIVersion != "" + yyq3744[2] = x.Path != "" + var yynn3744 int + if yyr3744 || yy2arr3744 { r.EncodeArrayStart(3) } else { - yynn3695 = 0 - for _, b := range yyq3695 { + yynn3744 = 0 + for _, b := range yyq3744 { if b { - yynn3695++ + yynn3744++ } } - r.EncodeMapStart(yynn3695) - yynn3695 = 0 + r.EncodeMapStart(yynn3744) + yynn3744 = 0 } - if yyr3695 || yy2arr3695 { + if yyr3744 || yy2arr3744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3695[0] { - yym3697 := z.EncBinary() - _ = yym3697 + if yyq3744[0] { + yym3746 := z.EncBinary() + _ = yym3746 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46615,23 +47152,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3695[0] { + if yyq3744[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3698 := z.EncBinary() - _ = yym3698 + yym3747 := z.EncBinary() + _ = yym3747 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3695 || yy2arr3695 { + if yyr3744 || yy2arr3744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3695[1] { - yym3700 := z.EncBinary() - _ = yym3700 + if yyq3744[1] { + yym3749 := z.EncBinary() + _ = yym3749 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46640,23 +47177,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3695[1] { + if yyq3744[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3701 := z.EncBinary() - _ = yym3701 + yym3750 := z.EncBinary() + _ = yym3750 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3695 || yy2arr3695 { + if yyr3744 || yy2arr3744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3695[2] { - yym3703 := z.EncBinary() - _ = yym3703 + if yyq3744[2] { + yym3752 := z.EncBinary() + _ = yym3752 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -46665,19 +47202,19 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3695[2] { + if yyq3744[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3704 := z.EncBinary() - _ = yym3704 + yym3753 := z.EncBinary() + _ = yym3753 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3695 || yy2arr3695 { + if yyr3744 || yy2arr3744 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46690,25 +47227,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3705 := z.DecBinary() - _ = yym3705 + yym3754 := z.DecBinary() + _ = yym3754 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3706 := r.ContainerType() - if yyct3706 == codecSelferValueTypeMap1234 { - yyl3706 := r.ReadMapStart() - if yyl3706 == 0 { + yyct3755 := r.ContainerType() + if yyct3755 == codecSelferValueTypeMap1234 { + yyl3755 := r.ReadMapStart() + if yyl3755 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3706, d) + x.codecDecodeSelfFromMap(yyl3755, d) } - } else if yyct3706 == codecSelferValueTypeArray1234 { - yyl3706 := r.ReadArrayStart() - if yyl3706 == 0 { + } else if yyct3755 == codecSelferValueTypeArray1234 { + yyl3755 := r.ReadArrayStart() + if yyl3755 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3706, d) + x.codecDecodeSelfFromArray(yyl3755, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46720,12 +47257,12 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3707Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3707Slc - var yyhl3707 bool = l >= 0 - for yyj3707 := 0; ; yyj3707++ { - if yyhl3707 { - if yyj3707 >= l { + var yys3756Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3756Slc + var yyhl3756 bool = l >= 0 + for yyj3756 := 0; ; yyj3756++ { + if yyhl3756 { + if yyj3756 >= l { break } } else { @@ -46734,10 +47271,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3707Slc = r.DecodeBytes(yys3707Slc, true, true) - yys3707 := string(yys3707Slc) + yys3756Slc = r.DecodeBytes(yys3756Slc, true, true) + yys3756 := string(yys3756Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3707 { + switch yys3756 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46757,9 +47294,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3707) - } // end switch yys3707 - } // end for yyj3707 + z.DecStructFieldNotFound(-1, yys3756) + } // end switch yys3756 + } // end for yyj3756 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46767,16 +47304,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3711 int - var yyb3711 bool - var yyhl3711 bool = l >= 0 - yyj3711++ - if yyhl3711 { - yyb3711 = yyj3711 > l + var yyj3760 int + var yyb3760 bool + var yyhl3760 bool = l >= 0 + yyj3760++ + if yyhl3760 { + yyb3760 = yyj3760 > l } else { - yyb3711 = r.CheckBreak() + yyb3760 = r.CheckBreak() } - if yyb3711 { + if yyb3760 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46786,13 +47323,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3711++ - if yyhl3711 { - yyb3711 = yyj3711 > l + yyj3760++ + if yyhl3760 { + yyb3760 = yyj3760 > l } else { - yyb3711 = r.CheckBreak() + yyb3760 = r.CheckBreak() } - if yyb3711 { + if yyb3760 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46802,13 +47339,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3711++ - if yyhl3711 { - yyb3711 = yyj3711 > l + yyj3760++ + if yyhl3760 { + yyb3760 = yyj3760 > l } else { - yyb3711 = r.CheckBreak() + yyb3760 = r.CheckBreak() } - if yyb3711 { + if yyb3760 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46819,17 +47356,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3711++ - if yyhl3711 { - yyb3711 = yyj3711 > l + yyj3760++ + if yyhl3760 { + yyb3760 = yyj3760 > l } else { - yyb3711 = r.CheckBreak() + yyb3760 = r.CheckBreak() } - if yyb3711 { + if yyb3760 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3711-1, "") + z.DecStructFieldNotFound(yyj3760-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46841,34 +47378,34 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3715 := z.EncBinary() - _ = yym3715 + yym3764 := z.EncBinary() + _ = yym3764 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3716 := !z.EncBinary() - yy2arr3716 := z.EncBasicHandle().StructToArray - var yyq3716 [5]bool - _, _, _ = yysep3716, yyq3716, yy2arr3716 - const yyr3716 bool = false - yyq3716[4] = x.Controller != nil - var yynn3716 int - if yyr3716 || yy2arr3716 { + yysep3765 := !z.EncBinary() + yy2arr3765 := z.EncBasicHandle().StructToArray + var yyq3765 [5]bool + _, _, _ = yysep3765, yyq3765, yy2arr3765 + const yyr3765 bool = false + yyq3765[4] = x.Controller != nil + var yynn3765 int + if yyr3765 || yy2arr3765 { r.EncodeArrayStart(5) } else { - yynn3716 = 4 - for _, b := range yyq3716 { + yynn3765 = 4 + for _, b := range yyq3765 { if b { - yynn3716++ + yynn3765++ } } - r.EncodeMapStart(yynn3716) - yynn3716 = 0 + r.EncodeMapStart(yynn3765) + yynn3765 = 0 } - if yyr3716 || yy2arr3716 { + if yyr3765 || yy2arr3765 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3718 := z.EncBinary() - _ = yym3718 + yym3767 := z.EncBinary() + _ = yym3767 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46877,17 +47414,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3719 := z.EncBinary() - _ = yym3719 + yym3768 := z.EncBinary() + _ = yym3768 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr3716 || yy2arr3716 { + if yyr3765 || yy2arr3765 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3721 := z.EncBinary() - _ = yym3721 + yym3770 := z.EncBinary() + _ = yym3770 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46896,17 +47433,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3722 := z.EncBinary() - _ = yym3722 + yym3771 := z.EncBinary() + _ = yym3771 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } - if yyr3716 || yy2arr3716 { + if yyr3765 || yy2arr3765 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3724 := z.EncBinary() - _ = yym3724 + yym3773 := z.EncBinary() + _ = yym3773 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -46915,17 +47452,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3725 := z.EncBinary() - _ = yym3725 + yym3774 := z.EncBinary() + _ = yym3774 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3716 || yy2arr3716 { + if yyr3765 || yy2arr3765 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3727 := z.EncBinary() - _ = yym3727 + yym3776 := z.EncBinary() + _ = yym3776 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -46935,50 +47472,50 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3728 := z.EncBinary() - _ = yym3728 + yym3777 := z.EncBinary() + _ = yym3777 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.UID)) } } - if yyr3716 || yy2arr3716 { + if yyr3765 || yy2arr3765 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3716[4] { + if yyq3765[4] { if x.Controller == nil { r.EncodeNil() } else { - yy3730 := *x.Controller - yym3731 := z.EncBinary() - _ = yym3731 + yy3779 := *x.Controller + yym3780 := z.EncBinary() + _ = yym3780 if false { } else { - r.EncodeBool(bool(yy3730)) + r.EncodeBool(bool(yy3779)) } } } else { r.EncodeNil() } } else { - if yyq3716[4] { + if yyq3765[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controller")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Controller == nil { r.EncodeNil() } else { - yy3732 := *x.Controller - yym3733 := z.EncBinary() - _ = yym3733 + yy3781 := *x.Controller + yym3782 := z.EncBinary() + _ = yym3782 if false { } else { - r.EncodeBool(bool(yy3732)) + r.EncodeBool(bool(yy3781)) } } } } - if yyr3716 || yy2arr3716 { + if yyr3765 || yy2arr3765 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46991,25 +47528,25 @@ func (x *OwnerReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3734 := z.DecBinary() - _ = yym3734 + yym3783 := z.DecBinary() + _ = yym3783 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3735 := r.ContainerType() - if yyct3735 == codecSelferValueTypeMap1234 { - yyl3735 := r.ReadMapStart() - if yyl3735 == 0 { + yyct3784 := r.ContainerType() + if yyct3784 == codecSelferValueTypeMap1234 { + yyl3784 := r.ReadMapStart() + if yyl3784 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3735, d) + x.codecDecodeSelfFromMap(yyl3784, d) } - } else if yyct3735 == codecSelferValueTypeArray1234 { - yyl3735 := r.ReadArrayStart() - if yyl3735 == 0 { + } else if yyct3784 == codecSelferValueTypeArray1234 { + yyl3784 := r.ReadArrayStart() + if yyl3784 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3735, d) + x.codecDecodeSelfFromArray(yyl3784, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47021,12 +47558,12 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3736Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3736Slc - var yyhl3736 bool = l >= 0 - for yyj3736 := 0; ; yyj3736++ { - if yyhl3736 { - if yyj3736 >= l { + var yys3785Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3785Slc + var yyhl3785 bool = l >= 0 + for yyj3785 := 0; ; yyj3785++ { + if yyhl3785 { + if yyj3785 >= l { break } } else { @@ -47035,10 +47572,10 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3736Slc = r.DecodeBytes(yys3736Slc, true, true) - yys3736 := string(yys3736Slc) + yys3785Slc = r.DecodeBytes(yys3785Slc, true, true) + yys3785 := string(yys3785Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3736 { + switch yys3785 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -47072,17 +47609,17 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3742 := z.DecBinary() - _ = yym3742 + yym3791 := z.DecBinary() + _ = yym3791 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3736) - } // end switch yys3736 - } // end for yyj3736 + z.DecStructFieldNotFound(-1, yys3785) + } // end switch yys3785 + } // end for yyj3785 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47090,16 +47627,16 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3743 int - var yyb3743 bool - var yyhl3743 bool = l >= 0 - yyj3743++ - if yyhl3743 { - yyb3743 = yyj3743 > l + var yyj3792 int + var yyb3792 bool + var yyhl3792 bool = l >= 0 + yyj3792++ + if yyhl3792 { + yyb3792 = yyj3792 > l } else { - yyb3743 = r.CheckBreak() + yyb3792 = r.CheckBreak() } - if yyb3743 { + if yyb3792 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47109,13 +47646,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3743++ - if yyhl3743 { - yyb3743 = yyj3743 > l + yyj3792++ + if yyhl3792 { + yyb3792 = yyj3792 > l } else { - yyb3743 = r.CheckBreak() + yyb3792 = r.CheckBreak() } - if yyb3743 { + if yyb3792 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47125,13 +47662,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3743++ - if yyhl3743 { - yyb3743 = yyj3743 > l + yyj3792++ + if yyhl3792 { + yyb3792 = yyj3792 > l } else { - yyb3743 = r.CheckBreak() + yyb3792 = r.CheckBreak() } - if yyb3743 { + if yyb3792 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47141,13 +47678,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj3743++ - if yyhl3743 { - yyb3743 = yyj3743 > l + yyj3792++ + if yyhl3792 { + yyb3792 = yyj3792 > l } else { - yyb3743 = r.CheckBreak() + yyb3792 = r.CheckBreak() } - if yyb3743 { + if yyb3792 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47157,13 +47694,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3743++ - if yyhl3743 { - yyb3743 = yyj3743 > l + yyj3792++ + if yyhl3792 { + yyb3792 = yyj3792 > l } else { - yyb3743 = r.CheckBreak() + yyb3792 = r.CheckBreak() } - if yyb3743 { + if yyb3792 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47176,25 +47713,25 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3749 := z.DecBinary() - _ = yym3749 + yym3798 := z.DecBinary() + _ = yym3798 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } for { - yyj3743++ - if yyhl3743 { - yyb3743 = yyj3743 > l + yyj3792++ + if yyhl3792 { + yyb3792 = yyj3792 > l } else { - yyb3743 = r.CheckBreak() + yyb3792 = r.CheckBreak() } - if yyb3743 { + if yyb3792 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3743-1, "") + z.DecStructFieldNotFound(yyj3792-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47206,41 +47743,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3750 := z.EncBinary() - _ = yym3750 + yym3799 := z.EncBinary() + _ = yym3799 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3751 := !z.EncBinary() - yy2arr3751 := z.EncBasicHandle().StructToArray - var yyq3751 [7]bool - _, _, _ = yysep3751, yyq3751, yy2arr3751 - const yyr3751 bool = false - yyq3751[0] = x.Kind != "" - yyq3751[1] = x.Namespace != "" - yyq3751[2] = x.Name != "" - yyq3751[3] = x.UID != "" - yyq3751[4] = x.APIVersion != "" - yyq3751[5] = x.ResourceVersion != "" - yyq3751[6] = x.FieldPath != "" - var yynn3751 int - if yyr3751 || yy2arr3751 { + yysep3800 := !z.EncBinary() + yy2arr3800 := z.EncBasicHandle().StructToArray + var yyq3800 [7]bool + _, _, _ = yysep3800, yyq3800, yy2arr3800 + const yyr3800 bool = false + yyq3800[0] = x.Kind != "" + yyq3800[1] = x.Namespace != "" + yyq3800[2] = x.Name != "" + yyq3800[3] = x.UID != "" + yyq3800[4] = x.APIVersion != "" + yyq3800[5] = x.ResourceVersion != "" + yyq3800[6] = x.FieldPath != "" + var yynn3800 int + if yyr3800 || yy2arr3800 { r.EncodeArrayStart(7) } else { - yynn3751 = 0 - for _, b := range yyq3751 { + yynn3800 = 0 + for _, b := range yyq3800 { if b { - yynn3751++ + yynn3800++ } } - r.EncodeMapStart(yynn3751) - yynn3751 = 0 + r.EncodeMapStart(yynn3800) + yynn3800 = 0 } - if yyr3751 || yy2arr3751 { + if yyr3800 || yy2arr3800 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3751[0] { - yym3753 := z.EncBinary() - _ = yym3753 + if yyq3800[0] { + yym3802 := z.EncBinary() + _ = yym3802 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47249,23 +47786,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3751[0] { + if yyq3800[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3754 := z.EncBinary() - _ = yym3754 + yym3803 := z.EncBinary() + _ = yym3803 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3751 || yy2arr3751 { + if yyr3800 || yy2arr3800 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3751[1] { - yym3756 := z.EncBinary() - _ = yym3756 + if yyq3800[1] { + yym3805 := z.EncBinary() + _ = yym3805 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -47274,23 +47811,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3751[1] { + if yyq3800[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3757 := z.EncBinary() - _ = yym3757 + yym3806 := z.EncBinary() + _ = yym3806 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3751 || yy2arr3751 { + if yyr3800 || yy2arr3800 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3751[2] { - yym3759 := z.EncBinary() - _ = yym3759 + if yyq3800[2] { + yym3808 := z.EncBinary() + _ = yym3808 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -47299,23 +47836,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3751[2] { + if yyq3800[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3760 := z.EncBinary() - _ = yym3760 + yym3809 := z.EncBinary() + _ = yym3809 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3751 || yy2arr3751 { + if yyr3800 || yy2arr3800 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3751[3] { - yym3762 := z.EncBinary() - _ = yym3762 + if yyq3800[3] { + yym3811 := z.EncBinary() + _ = yym3811 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -47325,12 +47862,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3751[3] { + if yyq3800[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3763 := z.EncBinary() - _ = yym3763 + yym3812 := z.EncBinary() + _ = yym3812 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -47338,11 +47875,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3751 || yy2arr3751 { + if yyr3800 || yy2arr3800 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3751[4] { - yym3765 := z.EncBinary() - _ = yym3765 + if yyq3800[4] { + yym3814 := z.EncBinary() + _ = yym3814 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47351,23 +47888,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3751[4] { + if yyq3800[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3766 := z.EncBinary() - _ = yym3766 + yym3815 := z.EncBinary() + _ = yym3815 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3751 || yy2arr3751 { + if yyr3800 || yy2arr3800 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3751[5] { - yym3768 := z.EncBinary() - _ = yym3768 + if yyq3800[5] { + yym3817 := z.EncBinary() + _ = yym3817 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -47376,23 +47913,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3751[5] { + if yyq3800[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3769 := z.EncBinary() - _ = yym3769 + yym3818 := z.EncBinary() + _ = yym3818 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3751 || yy2arr3751 { + if yyr3800 || yy2arr3800 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3751[6] { - yym3771 := z.EncBinary() - _ = yym3771 + if yyq3800[6] { + yym3820 := z.EncBinary() + _ = yym3820 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -47401,19 +47938,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3751[6] { + if yyq3800[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3772 := z.EncBinary() - _ = yym3772 + yym3821 := z.EncBinary() + _ = yym3821 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3751 || yy2arr3751 { + if yyr3800 || yy2arr3800 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47426,25 +47963,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3773 := z.DecBinary() - _ = yym3773 + yym3822 := z.DecBinary() + _ = yym3822 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3774 := r.ContainerType() - if yyct3774 == codecSelferValueTypeMap1234 { - yyl3774 := r.ReadMapStart() - if yyl3774 == 0 { + yyct3823 := r.ContainerType() + if yyct3823 == codecSelferValueTypeMap1234 { + yyl3823 := r.ReadMapStart() + if yyl3823 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3774, d) + x.codecDecodeSelfFromMap(yyl3823, d) } - } else if yyct3774 == codecSelferValueTypeArray1234 { - yyl3774 := r.ReadArrayStart() - if yyl3774 == 0 { + } else if yyct3823 == codecSelferValueTypeArray1234 { + yyl3823 := r.ReadArrayStart() + if yyl3823 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3774, d) + x.codecDecodeSelfFromArray(yyl3823, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47456,12 +47993,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3775Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3775Slc - var yyhl3775 bool = l >= 0 - for yyj3775 := 0; ; yyj3775++ { - if yyhl3775 { - if yyj3775 >= l { + var yys3824Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3824Slc + var yyhl3824 bool = l >= 0 + for yyj3824 := 0; ; yyj3824++ { + if yyhl3824 { + if yyj3824 >= l { break } } else { @@ -47470,10 +48007,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3775Slc = r.DecodeBytes(yys3775Slc, true, true) - yys3775 := string(yys3775Slc) + yys3824Slc = r.DecodeBytes(yys3824Slc, true, true) + yys3824 := string(yys3824Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3775 { + switch yys3824 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47517,9 +48054,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3775) - } // end switch yys3775 - } // end for yyj3775 + z.DecStructFieldNotFound(-1, yys3824) + } // end switch yys3824 + } // end for yyj3824 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47527,16 +48064,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3783 int - var yyb3783 bool - var yyhl3783 bool = l >= 0 - yyj3783++ - if yyhl3783 { - yyb3783 = yyj3783 > l + var yyj3832 int + var yyb3832 bool + var yyhl3832 bool = l >= 0 + yyj3832++ + if yyhl3832 { + yyb3832 = yyj3832 > l } else { - yyb3783 = r.CheckBreak() + yyb3832 = r.CheckBreak() } - if yyb3783 { + if yyb3832 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47546,13 +48083,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3783++ - if yyhl3783 { - yyb3783 = yyj3783 > l + yyj3832++ + if yyhl3832 { + yyb3832 = yyj3832 > l } else { - yyb3783 = r.CheckBreak() + yyb3832 = r.CheckBreak() } - if yyb3783 { + if yyb3832 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47562,13 +48099,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3783++ - if yyhl3783 { - yyb3783 = yyj3783 > l + yyj3832++ + if yyhl3832 { + yyb3832 = yyj3832 > l } else { - yyb3783 = r.CheckBreak() + yyb3832 = r.CheckBreak() } - if yyb3783 { + if yyb3832 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47578,13 +48115,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3783++ - if yyhl3783 { - yyb3783 = yyj3783 > l + yyj3832++ + if yyhl3832 { + yyb3832 = yyj3832 > l } else { - yyb3783 = r.CheckBreak() + yyb3832 = r.CheckBreak() } - if yyb3783 { + if yyb3832 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47594,13 +48131,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3783++ - if yyhl3783 { - yyb3783 = yyj3783 > l + yyj3832++ + if yyhl3832 { + yyb3832 = yyj3832 > l } else { - yyb3783 = r.CheckBreak() + yyb3832 = r.CheckBreak() } - if yyb3783 { + if yyb3832 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47610,13 +48147,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3783++ - if yyhl3783 { - yyb3783 = yyj3783 > l + yyj3832++ + if yyhl3832 { + yyb3832 = yyj3832 > l } else { - yyb3783 = r.CheckBreak() + yyb3832 = r.CheckBreak() } - if yyb3783 { + if yyb3832 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47626,13 +48163,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3783++ - if yyhl3783 { - yyb3783 = yyj3783 > l + yyj3832++ + if yyhl3832 { + yyb3832 = yyj3832 > l } else { - yyb3783 = r.CheckBreak() + yyb3832 = r.CheckBreak() } - if yyb3783 { + if yyb3832 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47643,17 +48180,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3783++ - if yyhl3783 { - yyb3783 = yyj3783 > l + yyj3832++ + if yyhl3832 { + yyb3832 = yyj3832 > l } else { - yyb3783 = r.CheckBreak() + yyb3832 = r.CheckBreak() } - if yyb3783 { + if yyb3832 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3783-1, "") + z.DecStructFieldNotFound(yyj3832-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47665,35 +48202,35 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3791 := z.EncBinary() - _ = yym3791 + yym3840 := z.EncBinary() + _ = yym3840 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3792 := !z.EncBinary() - yy2arr3792 := z.EncBasicHandle().StructToArray - var yyq3792 [1]bool - _, _, _ = yysep3792, yyq3792, yy2arr3792 - const yyr3792 bool = false - yyq3792[0] = x.Name != "" - var yynn3792 int - if yyr3792 || yy2arr3792 { + yysep3841 := !z.EncBinary() + yy2arr3841 := z.EncBasicHandle().StructToArray + var yyq3841 [1]bool + _, _, _ = yysep3841, yyq3841, yy2arr3841 + const yyr3841 bool = false + yyq3841[0] = x.Name != "" + var yynn3841 int + if yyr3841 || yy2arr3841 { r.EncodeArrayStart(1) } else { - yynn3792 = 0 - for _, b := range yyq3792 { + yynn3841 = 0 + for _, b := range yyq3841 { if b { - yynn3792++ + yynn3841++ } } - r.EncodeMapStart(yynn3792) - yynn3792 = 0 + r.EncodeMapStart(yynn3841) + yynn3841 = 0 } - if yyr3792 || yy2arr3792 { + if yyr3841 || yy2arr3841 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3792[0] { - yym3794 := z.EncBinary() - _ = yym3794 + if yyq3841[0] { + yym3843 := z.EncBinary() + _ = yym3843 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -47702,19 +48239,19 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3792[0] { + if yyq3841[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3795 := z.EncBinary() - _ = yym3795 + yym3844 := z.EncBinary() + _ = yym3844 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3792 || yy2arr3792 { + if yyr3841 || yy2arr3841 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47727,25 +48264,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3796 := z.DecBinary() - _ = yym3796 + yym3845 := z.DecBinary() + _ = yym3845 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3797 := r.ContainerType() - if yyct3797 == codecSelferValueTypeMap1234 { - yyl3797 := r.ReadMapStart() - if yyl3797 == 0 { + yyct3846 := r.ContainerType() + if yyct3846 == codecSelferValueTypeMap1234 { + yyl3846 := r.ReadMapStart() + if yyl3846 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3797, d) + x.codecDecodeSelfFromMap(yyl3846, d) } - } else if yyct3797 == codecSelferValueTypeArray1234 { - yyl3797 := r.ReadArrayStart() - if yyl3797 == 0 { + } else if yyct3846 == codecSelferValueTypeArray1234 { + yyl3846 := r.ReadArrayStart() + if yyl3846 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3797, d) + x.codecDecodeSelfFromArray(yyl3846, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47757,12 +48294,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3798Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3798Slc - var yyhl3798 bool = l >= 0 - for yyj3798 := 0; ; yyj3798++ { - if yyhl3798 { - if yyj3798 >= l { + var yys3847Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3847Slc + var yyhl3847 bool = l >= 0 + for yyj3847 := 0; ; yyj3847++ { + if yyhl3847 { + if yyj3847 >= l { break } } else { @@ -47771,10 +48308,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3798Slc = r.DecodeBytes(yys3798Slc, true, true) - yys3798 := string(yys3798Slc) + yys3847Slc = r.DecodeBytes(yys3847Slc, true, true) + yys3847 := string(yys3847Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3798 { + switch yys3847 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -47782,9 +48319,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3798) - } // end switch yys3798 - } // end for yyj3798 + z.DecStructFieldNotFound(-1, yys3847) + } // end switch yys3847 + } // end for yyj3847 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47792,16 +48329,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3800 int - var yyb3800 bool - var yyhl3800 bool = l >= 0 - yyj3800++ - if yyhl3800 { - yyb3800 = yyj3800 > l + var yyj3849 int + var yyb3849 bool + var yyhl3849 bool = l >= 0 + yyj3849++ + if yyhl3849 { + yyb3849 = yyj3849 > l } else { - yyb3800 = r.CheckBreak() + yyb3849 = r.CheckBreak() } - if yyb3800 { + if yyb3849 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47812,17 +48349,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj3800++ - if yyhl3800 { - yyb3800 = yyj3800 > l + yyj3849++ + if yyhl3849 { + yyb3849 = yyj3849 > l } else { - yyb3800 = r.CheckBreak() + yyb3849 = r.CheckBreak() } - if yyb3800 { + if yyb3849 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3800-1, "") + z.DecStructFieldNotFound(yyj3849-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47834,37 +48371,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3802 := z.EncBinary() - _ = yym3802 + yym3851 := z.EncBinary() + _ = yym3851 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3803 := !z.EncBinary() - yy2arr3803 := z.EncBasicHandle().StructToArray - var yyq3803 [3]bool - _, _, _ = yysep3803, yyq3803, yy2arr3803 - const yyr3803 bool = false - yyq3803[0] = x.Kind != "" - yyq3803[1] = x.APIVersion != "" - yyq3803[2] = true - var yynn3803 int - if yyr3803 || yy2arr3803 { + yysep3852 := !z.EncBinary() + yy2arr3852 := z.EncBasicHandle().StructToArray + var yyq3852 [3]bool + _, _, _ = yysep3852, yyq3852, yy2arr3852 + const yyr3852 bool = false + yyq3852[0] = x.Kind != "" + yyq3852[1] = x.APIVersion != "" + yyq3852[2] = true + var yynn3852 int + if yyr3852 || yy2arr3852 { r.EncodeArrayStart(3) } else { - yynn3803 = 0 - for _, b := range yyq3803 { + yynn3852 = 0 + for _, b := range yyq3852 { if b { - yynn3803++ + yynn3852++ } } - r.EncodeMapStart(yynn3803) - yynn3803 = 0 + r.EncodeMapStart(yynn3852) + yynn3852 = 0 } - if yyr3803 || yy2arr3803 { + if yyr3852 || yy2arr3852 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3803[0] { - yym3805 := z.EncBinary() - _ = yym3805 + if yyq3852[0] { + yym3854 := z.EncBinary() + _ = yym3854 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47873,23 +48410,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3803[0] { + if yyq3852[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3806 := z.EncBinary() - _ = yym3806 + yym3855 := z.EncBinary() + _ = yym3855 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3803 || yy2arr3803 { + if yyr3852 || yy2arr3852 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3803[1] { - yym3808 := z.EncBinary() - _ = yym3808 + if yyq3852[1] { + yym3857 := z.EncBinary() + _ = yym3857 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47898,36 +48435,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3803[1] { + if yyq3852[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3809 := z.EncBinary() - _ = yym3809 + yym3858 := z.EncBinary() + _ = yym3858 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3803 || yy2arr3803 { + if yyr3852 || yy2arr3852 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3803[2] { - yy3811 := &x.Reference - yy3811.CodecEncodeSelf(e) + if yyq3852[2] { + yy3860 := &x.Reference + yy3860.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3803[2] { + if yyq3852[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3812 := &x.Reference - yy3812.CodecEncodeSelf(e) + yy3861 := &x.Reference + yy3861.CodecEncodeSelf(e) } } - if yyr3803 || yy2arr3803 { + if yyr3852 || yy2arr3852 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47940,25 +48477,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3813 := z.DecBinary() - _ = yym3813 + yym3862 := z.DecBinary() + _ = yym3862 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3814 := r.ContainerType() - if yyct3814 == codecSelferValueTypeMap1234 { - yyl3814 := r.ReadMapStart() - if yyl3814 == 0 { + yyct3863 := r.ContainerType() + if yyct3863 == codecSelferValueTypeMap1234 { + yyl3863 := r.ReadMapStart() + if yyl3863 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3814, d) + x.codecDecodeSelfFromMap(yyl3863, d) } - } else if yyct3814 == codecSelferValueTypeArray1234 { - yyl3814 := r.ReadArrayStart() - if yyl3814 == 0 { + } else if yyct3863 == codecSelferValueTypeArray1234 { + yyl3863 := r.ReadArrayStart() + if yyl3863 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3814, d) + x.codecDecodeSelfFromArray(yyl3863, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47970,12 +48507,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3815Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3815Slc - var yyhl3815 bool = l >= 0 - for yyj3815 := 0; ; yyj3815++ { - if yyhl3815 { - if yyj3815 >= l { + var yys3864Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3864Slc + var yyhl3864 bool = l >= 0 + for yyj3864 := 0; ; yyj3864++ { + if yyhl3864 { + if yyj3864 >= l { break } } else { @@ -47984,10 +48521,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3815Slc = r.DecodeBytes(yys3815Slc, true, true) - yys3815 := string(yys3815Slc) + yys3864Slc = r.DecodeBytes(yys3864Slc, true, true) + yys3864 := string(yys3864Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3815 { + switch yys3864 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48004,13 +48541,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3818 := &x.Reference - yyv3818.CodecDecodeSelf(d) + yyv3867 := &x.Reference + yyv3867.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3815) - } // end switch yys3815 - } // end for yyj3815 + z.DecStructFieldNotFound(-1, yys3864) + } // end switch yys3864 + } // end for yyj3864 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48018,16 +48555,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3819 int - var yyb3819 bool - var yyhl3819 bool = l >= 0 - yyj3819++ - if yyhl3819 { - yyb3819 = yyj3819 > l + var yyj3868 int + var yyb3868 bool + var yyhl3868 bool = l >= 0 + yyj3868++ + if yyhl3868 { + yyb3868 = yyj3868 > l } else { - yyb3819 = r.CheckBreak() + yyb3868 = r.CheckBreak() } - if yyb3819 { + if yyb3868 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48037,13 +48574,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3819++ - if yyhl3819 { - yyb3819 = yyj3819 > l + yyj3868++ + if yyhl3868 { + yyb3868 = yyj3868 > l } else { - yyb3819 = r.CheckBreak() + yyb3868 = r.CheckBreak() } - if yyb3819 { + if yyb3868 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48053,13 +48590,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3819++ - if yyhl3819 { - yyb3819 = yyj3819 > l + yyj3868++ + if yyhl3868 { + yyb3868 = yyj3868 > l } else { - yyb3819 = r.CheckBreak() + yyb3868 = r.CheckBreak() } - if yyb3819 { + if yyb3868 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48067,21 +48604,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3822 := &x.Reference - yyv3822.CodecDecodeSelf(d) + yyv3871 := &x.Reference + yyv3871.CodecDecodeSelf(d) } for { - yyj3819++ - if yyhl3819 { - yyb3819 = yyj3819 > l + yyj3868++ + if yyhl3868 { + yyb3868 = yyj3868 > l } else { - yyb3819 = r.CheckBreak() + yyb3868 = r.CheckBreak() } - if yyb3819 { + if yyb3868 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3819-1, "") + z.DecStructFieldNotFound(yyj3868-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48093,36 +48630,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3823 := z.EncBinary() - _ = yym3823 + yym3872 := z.EncBinary() + _ = yym3872 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3824 := !z.EncBinary() - yy2arr3824 := z.EncBasicHandle().StructToArray - var yyq3824 [2]bool - _, _, _ = yysep3824, yyq3824, yy2arr3824 - const yyr3824 bool = false - yyq3824[0] = x.Component != "" - yyq3824[1] = x.Host != "" - var yynn3824 int - if yyr3824 || yy2arr3824 { + yysep3873 := !z.EncBinary() + yy2arr3873 := z.EncBasicHandle().StructToArray + var yyq3873 [2]bool + _, _, _ = yysep3873, yyq3873, yy2arr3873 + const yyr3873 bool = false + yyq3873[0] = x.Component != "" + yyq3873[1] = x.Host != "" + var yynn3873 int + if yyr3873 || yy2arr3873 { r.EncodeArrayStart(2) } else { - yynn3824 = 0 - for _, b := range yyq3824 { + yynn3873 = 0 + for _, b := range yyq3873 { if b { - yynn3824++ + yynn3873++ } } - r.EncodeMapStart(yynn3824) - yynn3824 = 0 + r.EncodeMapStart(yynn3873) + yynn3873 = 0 } - if yyr3824 || yy2arr3824 { + if yyr3873 || yy2arr3873 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3824[0] { - yym3826 := z.EncBinary() - _ = yym3826 + if yyq3873[0] { + yym3875 := z.EncBinary() + _ = yym3875 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -48131,23 +48668,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3824[0] { + if yyq3873[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3827 := z.EncBinary() - _ = yym3827 + yym3876 := z.EncBinary() + _ = yym3876 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr3824 || yy2arr3824 { + if yyr3873 || yy2arr3873 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3824[1] { - yym3829 := z.EncBinary() - _ = yym3829 + if yyq3873[1] { + yym3878 := z.EncBinary() + _ = yym3878 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -48156,19 +48693,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3824[1] { + if yyq3873[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3830 := z.EncBinary() - _ = yym3830 + yym3879 := z.EncBinary() + _ = yym3879 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3824 || yy2arr3824 { + if yyr3873 || yy2arr3873 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48181,25 +48718,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3831 := z.DecBinary() - _ = yym3831 + yym3880 := z.DecBinary() + _ = yym3880 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3832 := r.ContainerType() - if yyct3832 == codecSelferValueTypeMap1234 { - yyl3832 := r.ReadMapStart() - if yyl3832 == 0 { + yyct3881 := r.ContainerType() + if yyct3881 == codecSelferValueTypeMap1234 { + yyl3881 := r.ReadMapStart() + if yyl3881 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3832, d) + x.codecDecodeSelfFromMap(yyl3881, d) } - } else if yyct3832 == codecSelferValueTypeArray1234 { - yyl3832 := r.ReadArrayStart() - if yyl3832 == 0 { + } else if yyct3881 == codecSelferValueTypeArray1234 { + yyl3881 := r.ReadArrayStart() + if yyl3881 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3832, d) + x.codecDecodeSelfFromArray(yyl3881, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48211,12 +48748,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3833Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3833Slc - var yyhl3833 bool = l >= 0 - for yyj3833 := 0; ; yyj3833++ { - if yyhl3833 { - if yyj3833 >= l { + var yys3882Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3882Slc + var yyhl3882 bool = l >= 0 + for yyj3882 := 0; ; yyj3882++ { + if yyhl3882 { + if yyj3882 >= l { break } } else { @@ -48225,10 +48762,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3833Slc = r.DecodeBytes(yys3833Slc, true, true) - yys3833 := string(yys3833Slc) + yys3882Slc = r.DecodeBytes(yys3882Slc, true, true) + yys3882 := string(yys3882Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3833 { + switch yys3882 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -48242,9 +48779,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3833) - } // end switch yys3833 - } // end for yyj3833 + z.DecStructFieldNotFound(-1, yys3882) + } // end switch yys3882 + } // end for yyj3882 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48252,16 +48789,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3836 int - var yyb3836 bool - var yyhl3836 bool = l >= 0 - yyj3836++ - if yyhl3836 { - yyb3836 = yyj3836 > l + var yyj3885 int + var yyb3885 bool + var yyhl3885 bool = l >= 0 + yyj3885++ + if yyhl3885 { + yyb3885 = yyj3885 > l } else { - yyb3836 = r.CheckBreak() + yyb3885 = r.CheckBreak() } - if yyb3836 { + if yyb3885 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48271,13 +48808,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3836++ - if yyhl3836 { - yyb3836 = yyj3836 > l + yyj3885++ + if yyhl3885 { + yyb3885 = yyj3885 > l } else { - yyb3836 = r.CheckBreak() + yyb3885 = r.CheckBreak() } - if yyb3836 { + if yyb3885 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48288,17 +48825,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3836++ - if yyhl3836 { - yyb3836 = yyj3836 > l + yyj3885++ + if yyhl3885 { + yyb3885 = yyj3885 > l } else { - yyb3836 = r.CheckBreak() + yyb3885 = r.CheckBreak() } - if yyb3836 { + if yyb3885 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3836-1, "") + z.DecStructFieldNotFound(yyj3885-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48310,43 +48847,43 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3839 := z.EncBinary() - _ = yym3839 + yym3888 := z.EncBinary() + _ = yym3888 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3840 := !z.EncBinary() - yy2arr3840 := z.EncBasicHandle().StructToArray - var yyq3840 [11]bool - _, _, _ = yysep3840, yyq3840, yy2arr3840 - const yyr3840 bool = false - yyq3840[0] = x.Kind != "" - yyq3840[1] = x.APIVersion != "" - yyq3840[4] = x.Reason != "" - yyq3840[5] = x.Message != "" - yyq3840[6] = true - yyq3840[7] = true - yyq3840[8] = true - yyq3840[9] = x.Count != 0 - yyq3840[10] = x.Type != "" - var yynn3840 int - if yyr3840 || yy2arr3840 { + yysep3889 := !z.EncBinary() + yy2arr3889 := z.EncBasicHandle().StructToArray + var yyq3889 [11]bool + _, _, _ = yysep3889, yyq3889, yy2arr3889 + const yyr3889 bool = false + yyq3889[0] = x.Kind != "" + yyq3889[1] = x.APIVersion != "" + yyq3889[4] = x.Reason != "" + yyq3889[5] = x.Message != "" + yyq3889[6] = true + yyq3889[7] = true + yyq3889[8] = true + yyq3889[9] = x.Count != 0 + yyq3889[10] = x.Type != "" + var yynn3889 int + if yyr3889 || yy2arr3889 { r.EncodeArrayStart(11) } else { - yynn3840 = 2 - for _, b := range yyq3840 { + yynn3889 = 2 + for _, b := range yyq3889 { if b { - yynn3840++ + yynn3889++ } } - r.EncodeMapStart(yynn3840) - yynn3840 = 0 + r.EncodeMapStart(yynn3889) + yynn3889 = 0 } - if yyr3840 || yy2arr3840 { + if yyr3889 || yy2arr3889 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[0] { - yym3842 := z.EncBinary() - _ = yym3842 + if yyq3889[0] { + yym3891 := z.EncBinary() + _ = yym3891 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48355,23 +48892,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3840[0] { + if yyq3889[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3843 := z.EncBinary() - _ = yym3843 + yym3892 := z.EncBinary() + _ = yym3892 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3840 || yy2arr3840 { + if yyr3889 || yy2arr3889 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[1] { - yym3845 := z.EncBinary() - _ = yym3845 + if yyq3889[1] { + yym3894 := z.EncBinary() + _ = yym3894 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48380,45 +48917,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3840[1] { + if yyq3889[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3846 := z.EncBinary() - _ = yym3846 + yym3895 := z.EncBinary() + _ = yym3895 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3840 || yy2arr3840 { + if yyr3889 || yy2arr3889 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3848 := &x.ObjectMeta - yy3848.CodecEncodeSelf(e) + yy3897 := &x.ObjectMeta + yy3897.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3849 := &x.ObjectMeta - yy3849.CodecEncodeSelf(e) + yy3898 := &x.ObjectMeta + yy3898.CodecEncodeSelf(e) } - if yyr3840 || yy2arr3840 { + if yyr3889 || yy2arr3889 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3851 := &x.InvolvedObject - yy3851.CodecEncodeSelf(e) + yy3900 := &x.InvolvedObject + yy3900.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3852 := &x.InvolvedObject - yy3852.CodecEncodeSelf(e) + yy3901 := &x.InvolvedObject + yy3901.CodecEncodeSelf(e) } - if yyr3840 || yy2arr3840 { + if yyr3889 || yy2arr3889 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[4] { - yym3854 := z.EncBinary() - _ = yym3854 + if yyq3889[4] { + yym3903 := z.EncBinary() + _ = yym3903 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -48427,23 +48964,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3840[4] { + if yyq3889[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3855 := z.EncBinary() - _ = yym3855 + yym3904 := z.EncBinary() + _ = yym3904 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3840 || yy2arr3840 { + if yyr3889 || yy2arr3889 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[5] { - yym3857 := z.EncBinary() - _ = yym3857 + if yyq3889[5] { + yym3906 := z.EncBinary() + _ = yym3906 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -48452,114 +48989,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3840[5] { + if yyq3889[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3858 := z.EncBinary() - _ = yym3858 + yym3907 := z.EncBinary() + _ = yym3907 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3840 || yy2arr3840 { + if yyr3889 || yy2arr3889 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[6] { - yy3860 := &x.Source - yy3860.CodecEncodeSelf(e) + if yyq3889[6] { + yy3909 := &x.Source + yy3909.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3840[6] { + if yyq3889[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3861 := &x.Source - yy3861.CodecEncodeSelf(e) + yy3910 := &x.Source + yy3910.CodecEncodeSelf(e) } } - if yyr3840 || yy2arr3840 { + if yyr3889 || yy2arr3889 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[7] { - yy3863 := &x.FirstTimestamp - yym3864 := z.EncBinary() - _ = yym3864 + if yyq3889[7] { + yy3912 := &x.FirstTimestamp + yym3913 := z.EncBinary() + _ = yym3913 if false { - } else if z.HasExtensions() && z.EncExt(yy3863) { - } else if yym3864 { - z.EncBinaryMarshal(yy3863) - } else if !yym3864 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3863) + } else if z.HasExtensions() && z.EncExt(yy3912) { + } else if yym3913 { + z.EncBinaryMarshal(yy3912) + } else if !yym3913 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3912) } else { - z.EncFallback(yy3863) + z.EncFallback(yy3912) } } else { r.EncodeNil() } } else { - if yyq3840[7] { + if yyq3889[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3865 := &x.FirstTimestamp - yym3866 := z.EncBinary() - _ = yym3866 + yy3914 := &x.FirstTimestamp + yym3915 := z.EncBinary() + _ = yym3915 if false { - } else if z.HasExtensions() && z.EncExt(yy3865) { - } else if yym3866 { - z.EncBinaryMarshal(yy3865) - } else if !yym3866 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3865) + } else if z.HasExtensions() && z.EncExt(yy3914) { + } else if yym3915 { + z.EncBinaryMarshal(yy3914) + } else if !yym3915 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3914) } else { - z.EncFallback(yy3865) + z.EncFallback(yy3914) } } } - if yyr3840 || yy2arr3840 { + if yyr3889 || yy2arr3889 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[8] { - yy3868 := &x.LastTimestamp - yym3869 := z.EncBinary() - _ = yym3869 + if yyq3889[8] { + yy3917 := &x.LastTimestamp + yym3918 := z.EncBinary() + _ = yym3918 if false { - } else if z.HasExtensions() && z.EncExt(yy3868) { - } else if yym3869 { - z.EncBinaryMarshal(yy3868) - } else if !yym3869 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3868) + } else if z.HasExtensions() && z.EncExt(yy3917) { + } else if yym3918 { + z.EncBinaryMarshal(yy3917) + } else if !yym3918 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3917) } else { - z.EncFallback(yy3868) + z.EncFallback(yy3917) } } else { r.EncodeNil() } } else { - if yyq3840[8] { + if yyq3889[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3870 := &x.LastTimestamp - yym3871 := z.EncBinary() - _ = yym3871 + yy3919 := &x.LastTimestamp + yym3920 := z.EncBinary() + _ = yym3920 if false { - } else if z.HasExtensions() && z.EncExt(yy3870) { - } else if yym3871 { - z.EncBinaryMarshal(yy3870) - } else if !yym3871 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3870) + } else if z.HasExtensions() && z.EncExt(yy3919) { + } else if yym3920 { + z.EncBinaryMarshal(yy3919) + } else if !yym3920 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3919) } else { - z.EncFallback(yy3870) + z.EncFallback(yy3919) } } } - if yyr3840 || yy2arr3840 { + if yyr3889 || yy2arr3889 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[9] { - yym3873 := z.EncBinary() - _ = yym3873 + if yyq3889[9] { + yym3922 := z.EncBinary() + _ = yym3922 if false { } else { r.EncodeInt(int64(x.Count)) @@ -48568,23 +49105,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3840[9] { + if yyq3889[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3874 := z.EncBinary() - _ = yym3874 + yym3923 := z.EncBinary() + _ = yym3923 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3840 || yy2arr3840 { + if yyr3889 || yy2arr3889 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[10] { - yym3876 := z.EncBinary() - _ = yym3876 + if yyq3889[10] { + yym3925 := z.EncBinary() + _ = yym3925 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -48593,19 +49130,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3840[10] { + if yyq3889[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3877 := z.EncBinary() - _ = yym3877 + yym3926 := z.EncBinary() + _ = yym3926 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3840 || yy2arr3840 { + if yyr3889 || yy2arr3889 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48618,25 +49155,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3878 := z.DecBinary() - _ = yym3878 + yym3927 := z.DecBinary() + _ = yym3927 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3879 := r.ContainerType() - if yyct3879 == codecSelferValueTypeMap1234 { - yyl3879 := r.ReadMapStart() - if yyl3879 == 0 { + yyct3928 := r.ContainerType() + if yyct3928 == codecSelferValueTypeMap1234 { + yyl3928 := r.ReadMapStart() + if yyl3928 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3879, d) + x.codecDecodeSelfFromMap(yyl3928, d) } - } else if yyct3879 == codecSelferValueTypeArray1234 { - yyl3879 := r.ReadArrayStart() - if yyl3879 == 0 { + } else if yyct3928 == codecSelferValueTypeArray1234 { + yyl3928 := r.ReadArrayStart() + if yyl3928 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3879, d) + x.codecDecodeSelfFromArray(yyl3928, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48648,12 +49185,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3880Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3880Slc - var yyhl3880 bool = l >= 0 - for yyj3880 := 0; ; yyj3880++ { - if yyhl3880 { - if yyj3880 >= l { + var yys3929Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3929Slc + var yyhl3929 bool = l >= 0 + for yyj3929 := 0; ; yyj3929++ { + if yyhl3929 { + if yyj3929 >= l { break } } else { @@ -48662,10 +49199,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3880Slc = r.DecodeBytes(yys3880Slc, true, true) - yys3880 := string(yys3880Slc) + yys3929Slc = r.DecodeBytes(yys3929Slc, true, true) + yys3929 := string(yys3929Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3880 { + switch yys3929 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48682,15 +49219,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3883 := &x.ObjectMeta - yyv3883.CodecDecodeSelf(d) + yyv3932 := &x.ObjectMeta + yyv3932.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3884 := &x.InvolvedObject - yyv3884.CodecDecodeSelf(d) + yyv3933 := &x.InvolvedObject + yyv3933.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -48708,41 +49245,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3887 := &x.Source - yyv3887.CodecDecodeSelf(d) + yyv3936 := &x.Source + yyv3936.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3888 := &x.FirstTimestamp - yym3889 := z.DecBinary() - _ = yym3889 + yyv3937 := &x.FirstTimestamp + yym3938 := z.DecBinary() + _ = yym3938 if false { - } else if z.HasExtensions() && z.DecExt(yyv3888) { - } else if yym3889 { - z.DecBinaryUnmarshal(yyv3888) - } else if !yym3889 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3888) + } else if z.HasExtensions() && z.DecExt(yyv3937) { + } else if yym3938 { + z.DecBinaryUnmarshal(yyv3937) + } else if !yym3938 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3937) } else { - z.DecFallback(yyv3888, false) + z.DecFallback(yyv3937, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3890 := &x.LastTimestamp - yym3891 := z.DecBinary() - _ = yym3891 + yyv3939 := &x.LastTimestamp + yym3940 := z.DecBinary() + _ = yym3940 if false { - } else if z.HasExtensions() && z.DecExt(yyv3890) { - } else if yym3891 { - z.DecBinaryUnmarshal(yyv3890) - } else if !yym3891 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3890) + } else if z.HasExtensions() && z.DecExt(yyv3939) { + } else if yym3940 { + z.DecBinaryUnmarshal(yyv3939) + } else if !yym3940 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3939) } else { - z.DecFallback(yyv3890, false) + z.DecFallback(yyv3939, false) } } case "count": @@ -48758,9 +49295,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3880) - } // end switch yys3880 - } // end for yyj3880 + z.DecStructFieldNotFound(-1, yys3929) + } // end switch yys3929 + } // end for yyj3929 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48768,16 +49305,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3894 int - var yyb3894 bool - var yyhl3894 bool = l >= 0 - yyj3894++ - if yyhl3894 { - yyb3894 = yyj3894 > l + var yyj3943 int + var yyb3943 bool + var yyhl3943 bool = l >= 0 + yyj3943++ + if yyhl3943 { + yyb3943 = yyj3943 > l } else { - yyb3894 = r.CheckBreak() + yyb3943 = r.CheckBreak() } - if yyb3894 { + if yyb3943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48787,13 +49324,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3894++ - if yyhl3894 { - yyb3894 = yyj3894 > l + yyj3943++ + if yyhl3943 { + yyb3943 = yyj3943 > l } else { - yyb3894 = r.CheckBreak() + yyb3943 = r.CheckBreak() } - if yyb3894 { + if yyb3943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48803,13 +49340,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3894++ - if yyhl3894 { - yyb3894 = yyj3894 > l + yyj3943++ + if yyhl3943 { + yyb3943 = yyj3943 > l } else { - yyb3894 = r.CheckBreak() + yyb3943 = r.CheckBreak() } - if yyb3894 { + if yyb3943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48817,16 +49354,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3897 := &x.ObjectMeta - yyv3897.CodecDecodeSelf(d) + yyv3946 := &x.ObjectMeta + yyv3946.CodecDecodeSelf(d) } - yyj3894++ - if yyhl3894 { - yyb3894 = yyj3894 > l + yyj3943++ + if yyhl3943 { + yyb3943 = yyj3943 > l } else { - yyb3894 = r.CheckBreak() + yyb3943 = r.CheckBreak() } - if yyb3894 { + if yyb3943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48834,16 +49371,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3898 := &x.InvolvedObject - yyv3898.CodecDecodeSelf(d) + yyv3947 := &x.InvolvedObject + yyv3947.CodecDecodeSelf(d) } - yyj3894++ - if yyhl3894 { - yyb3894 = yyj3894 > l + yyj3943++ + if yyhl3943 { + yyb3943 = yyj3943 > l } else { - yyb3894 = r.CheckBreak() + yyb3943 = r.CheckBreak() } - if yyb3894 { + if yyb3943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48853,13 +49390,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3894++ - if yyhl3894 { - yyb3894 = yyj3894 > l + yyj3943++ + if yyhl3943 { + yyb3943 = yyj3943 > l } else { - yyb3894 = r.CheckBreak() + yyb3943 = r.CheckBreak() } - if yyb3894 { + if yyb3943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48869,13 +49406,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3894++ - if yyhl3894 { - yyb3894 = yyj3894 > l + yyj3943++ + if yyhl3943 { + yyb3943 = yyj3943 > l } else { - yyb3894 = r.CheckBreak() + yyb3943 = r.CheckBreak() } - if yyb3894 { + if yyb3943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48883,16 +49420,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3901 := &x.Source - yyv3901.CodecDecodeSelf(d) + yyv3950 := &x.Source + yyv3950.CodecDecodeSelf(d) } - yyj3894++ - if yyhl3894 { - yyb3894 = yyj3894 > l + yyj3943++ + if yyhl3943 { + yyb3943 = yyj3943 > l } else { - yyb3894 = r.CheckBreak() + yyb3943 = r.CheckBreak() } - if yyb3894 { + if yyb3943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48900,26 +49437,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3902 := &x.FirstTimestamp - yym3903 := z.DecBinary() - _ = yym3903 + yyv3951 := &x.FirstTimestamp + yym3952 := z.DecBinary() + _ = yym3952 if false { - } else if z.HasExtensions() && z.DecExt(yyv3902) { - } else if yym3903 { - z.DecBinaryUnmarshal(yyv3902) - } else if !yym3903 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3902) + } else if z.HasExtensions() && z.DecExt(yyv3951) { + } else if yym3952 { + z.DecBinaryUnmarshal(yyv3951) + } else if !yym3952 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3951) } else { - z.DecFallback(yyv3902, false) + z.DecFallback(yyv3951, false) } } - yyj3894++ - if yyhl3894 { - yyb3894 = yyj3894 > l + yyj3943++ + if yyhl3943 { + yyb3943 = yyj3943 > l } else { - yyb3894 = r.CheckBreak() + yyb3943 = r.CheckBreak() } - if yyb3894 { + if yyb3943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48927,26 +49464,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3904 := &x.LastTimestamp - yym3905 := z.DecBinary() - _ = yym3905 + yyv3953 := &x.LastTimestamp + yym3954 := z.DecBinary() + _ = yym3954 if false { - } else if z.HasExtensions() && z.DecExt(yyv3904) { - } else if yym3905 { - z.DecBinaryUnmarshal(yyv3904) - } else if !yym3905 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3904) + } else if z.HasExtensions() && z.DecExt(yyv3953) { + } else if yym3954 { + z.DecBinaryUnmarshal(yyv3953) + } else if !yym3954 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3953) } else { - z.DecFallback(yyv3904, false) + z.DecFallback(yyv3953, false) } } - yyj3894++ - if yyhl3894 { - yyb3894 = yyj3894 > l + yyj3943++ + if yyhl3943 { + yyb3943 = yyj3943 > l } else { - yyb3894 = r.CheckBreak() + yyb3943 = r.CheckBreak() } - if yyb3894 { + if yyb3943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48956,13 +49493,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3894++ - if yyhl3894 { - yyb3894 = yyj3894 > l + yyj3943++ + if yyhl3943 { + yyb3943 = yyj3943 > l } else { - yyb3894 = r.CheckBreak() + yyb3943 = r.CheckBreak() } - if yyb3894 { + if yyb3943 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48973,17 +49510,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3894++ - if yyhl3894 { - yyb3894 = yyj3894 > l + yyj3943++ + if yyhl3943 { + yyb3943 = yyj3943 > l } else { - yyb3894 = r.CheckBreak() + yyb3943 = r.CheckBreak() } - if yyb3894 { + if yyb3943 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3894-1, "") + z.DecStructFieldNotFound(yyj3943-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48995,37 +49532,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3908 := z.EncBinary() - _ = yym3908 + yym3957 := z.EncBinary() + _ = yym3957 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3909 := !z.EncBinary() - yy2arr3909 := z.EncBasicHandle().StructToArray - var yyq3909 [4]bool - _, _, _ = yysep3909, yyq3909, yy2arr3909 - const yyr3909 bool = false - yyq3909[0] = x.Kind != "" - yyq3909[1] = x.APIVersion != "" - yyq3909[2] = true - var yynn3909 int - if yyr3909 || yy2arr3909 { + yysep3958 := !z.EncBinary() + yy2arr3958 := z.EncBasicHandle().StructToArray + var yyq3958 [4]bool + _, _, _ = yysep3958, yyq3958, yy2arr3958 + const yyr3958 bool = false + yyq3958[0] = x.Kind != "" + yyq3958[1] = x.APIVersion != "" + yyq3958[2] = true + var yynn3958 int + if yyr3958 || yy2arr3958 { r.EncodeArrayStart(4) } else { - yynn3909 = 1 - for _, b := range yyq3909 { + yynn3958 = 1 + for _, b := range yyq3958 { if b { - yynn3909++ + yynn3958++ } } - r.EncodeMapStart(yynn3909) - yynn3909 = 0 + r.EncodeMapStart(yynn3958) + yynn3958 = 0 } - if yyr3909 || yy2arr3909 { + if yyr3958 || yy2arr3958 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3909[0] { - yym3911 := z.EncBinary() - _ = yym3911 + if yyq3958[0] { + yym3960 := z.EncBinary() + _ = yym3960 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49034,23 +49571,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3909[0] { + if yyq3958[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3912 := z.EncBinary() - _ = yym3912 + yym3961 := z.EncBinary() + _ = yym3961 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3909 || yy2arr3909 { + if yyr3958 || yy2arr3958 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3909[1] { - yym3914 := z.EncBinary() - _ = yym3914 + if yyq3958[1] { + yym3963 := z.EncBinary() + _ = yym3963 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49059,54 +49596,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3909[1] { + if yyq3958[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3915 := z.EncBinary() - _ = yym3915 + yym3964 := z.EncBinary() + _ = yym3964 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3909 || yy2arr3909 { + if yyr3958 || yy2arr3958 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3909[2] { - yy3917 := &x.ListMeta - yym3918 := z.EncBinary() - _ = yym3918 + if yyq3958[2] { + yy3966 := &x.ListMeta + yym3967 := z.EncBinary() + _ = yym3967 if false { - } else if z.HasExtensions() && z.EncExt(yy3917) { + } else if z.HasExtensions() && z.EncExt(yy3966) { } else { - z.EncFallback(yy3917) + z.EncFallback(yy3966) } } else { r.EncodeNil() } } else { - if yyq3909[2] { + if yyq3958[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3919 := &x.ListMeta - yym3920 := z.EncBinary() - _ = yym3920 + yy3968 := &x.ListMeta + yym3969 := z.EncBinary() + _ = yym3969 if false { - } else if z.HasExtensions() && z.EncExt(yy3919) { + } else if z.HasExtensions() && z.EncExt(yy3968) { } else { - z.EncFallback(yy3919) + z.EncFallback(yy3968) } } } - if yyr3909 || yy2arr3909 { + if yyr3958 || yy2arr3958 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3922 := z.EncBinary() - _ = yym3922 + yym3971 := z.EncBinary() + _ = yym3971 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -49119,15 +49656,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3923 := z.EncBinary() - _ = yym3923 + yym3972 := z.EncBinary() + _ = yym3972 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3909 || yy2arr3909 { + if yyr3958 || yy2arr3958 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49140,25 +49677,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3924 := z.DecBinary() - _ = yym3924 + yym3973 := z.DecBinary() + _ = yym3973 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3925 := r.ContainerType() - if yyct3925 == codecSelferValueTypeMap1234 { - yyl3925 := r.ReadMapStart() - if yyl3925 == 0 { + yyct3974 := r.ContainerType() + if yyct3974 == codecSelferValueTypeMap1234 { + yyl3974 := r.ReadMapStart() + if yyl3974 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3925, d) + x.codecDecodeSelfFromMap(yyl3974, d) } - } else if yyct3925 == codecSelferValueTypeArray1234 { - yyl3925 := r.ReadArrayStart() - if yyl3925 == 0 { + } else if yyct3974 == codecSelferValueTypeArray1234 { + yyl3974 := r.ReadArrayStart() + if yyl3974 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3925, d) + x.codecDecodeSelfFromArray(yyl3974, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49170,12 +49707,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3926Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3926Slc - var yyhl3926 bool = l >= 0 - for yyj3926 := 0; ; yyj3926++ { - if yyhl3926 { - if yyj3926 >= l { + var yys3975Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3975Slc + var yyhl3975 bool = l >= 0 + for yyj3975 := 0; ; yyj3975++ { + if yyhl3975 { + if yyj3975 >= l { break } } else { @@ -49184,10 +49721,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3926Slc = r.DecodeBytes(yys3926Slc, true, true) - yys3926 := string(yys3926Slc) + yys3975Slc = r.DecodeBytes(yys3975Slc, true, true) + yys3975 := string(yys3975Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3926 { + switch yys3975 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49204,31 +49741,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3929 := &x.ListMeta - yym3930 := z.DecBinary() - _ = yym3930 + yyv3978 := &x.ListMeta + yym3979 := z.DecBinary() + _ = yym3979 if false { - } else if z.HasExtensions() && z.DecExt(yyv3929) { + } else if z.HasExtensions() && z.DecExt(yyv3978) { } else { - z.DecFallback(yyv3929, false) + z.DecFallback(yyv3978, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3931 := &x.Items - yym3932 := z.DecBinary() - _ = yym3932 + yyv3980 := &x.Items + yym3981 := z.DecBinary() + _ = yym3981 if false { } else { - h.decSliceEvent((*[]Event)(yyv3931), d) + h.decSliceEvent((*[]Event)(yyv3980), d) } } default: - z.DecStructFieldNotFound(-1, yys3926) - } // end switch yys3926 - } // end for yyj3926 + z.DecStructFieldNotFound(-1, yys3975) + } // end switch yys3975 + } // end for yyj3975 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49236,16 +49773,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3933 int - var yyb3933 bool - var yyhl3933 bool = l >= 0 - yyj3933++ - if yyhl3933 { - yyb3933 = yyj3933 > l + var yyj3982 int + var yyb3982 bool + var yyhl3982 bool = l >= 0 + yyj3982++ + if yyhl3982 { + yyb3982 = yyj3982 > l } else { - yyb3933 = r.CheckBreak() + yyb3982 = r.CheckBreak() } - if yyb3933 { + if yyb3982 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49255,13 +49792,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3933++ - if yyhl3933 { - yyb3933 = yyj3933 > l + yyj3982++ + if yyhl3982 { + yyb3982 = yyj3982 > l } else { - yyb3933 = r.CheckBreak() + yyb3982 = r.CheckBreak() } - if yyb3933 { + if yyb3982 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49271,13 +49808,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3933++ - if yyhl3933 { - yyb3933 = yyj3933 > l + yyj3982++ + if yyhl3982 { + yyb3982 = yyj3982 > l } else { - yyb3933 = r.CheckBreak() + yyb3982 = r.CheckBreak() } - if yyb3933 { + if yyb3982 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49285,22 +49822,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3936 := &x.ListMeta - yym3937 := z.DecBinary() - _ = yym3937 + yyv3985 := &x.ListMeta + yym3986 := z.DecBinary() + _ = yym3986 if false { - } else if z.HasExtensions() && z.DecExt(yyv3936) { + } else if z.HasExtensions() && z.DecExt(yyv3985) { } else { - z.DecFallback(yyv3936, false) + z.DecFallback(yyv3985, false) } } - yyj3933++ - if yyhl3933 { - yyb3933 = yyj3933 > l + yyj3982++ + if yyhl3982 { + yyb3982 = yyj3982 > l } else { - yyb3933 = r.CheckBreak() + yyb3982 = r.CheckBreak() } - if yyb3933 { + if yyb3982 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49308,26 +49845,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3938 := &x.Items - yym3939 := z.DecBinary() - _ = yym3939 + yyv3987 := &x.Items + yym3988 := z.DecBinary() + _ = yym3988 if false { } else { - h.decSliceEvent((*[]Event)(yyv3938), d) + h.decSliceEvent((*[]Event)(yyv3987), d) } } for { - yyj3933++ - if yyhl3933 { - yyb3933 = yyj3933 > l + yyj3982++ + if yyhl3982 { + yyb3982 = yyj3982 > l } else { - yyb3933 = r.CheckBreak() + yyb3982 = r.CheckBreak() } - if yyb3933 { + if yyb3982 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3933-1, "") + z.DecStructFieldNotFound(yyj3982-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49339,37 +49876,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3940 := z.EncBinary() - _ = yym3940 + yym3989 := z.EncBinary() + _ = yym3989 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3941 := !z.EncBinary() - yy2arr3941 := z.EncBasicHandle().StructToArray - var yyq3941 [4]bool - _, _, _ = yysep3941, yyq3941, yy2arr3941 - const yyr3941 bool = false - yyq3941[0] = x.Kind != "" - yyq3941[1] = x.APIVersion != "" - yyq3941[2] = true - var yynn3941 int - if yyr3941 || yy2arr3941 { + yysep3990 := !z.EncBinary() + yy2arr3990 := z.EncBasicHandle().StructToArray + var yyq3990 [4]bool + _, _, _ = yysep3990, yyq3990, yy2arr3990 + const yyr3990 bool = false + yyq3990[0] = x.Kind != "" + yyq3990[1] = x.APIVersion != "" + yyq3990[2] = true + var yynn3990 int + if yyr3990 || yy2arr3990 { r.EncodeArrayStart(4) } else { - yynn3941 = 1 - for _, b := range yyq3941 { + yynn3990 = 1 + for _, b := range yyq3990 { if b { - yynn3941++ + yynn3990++ } } - r.EncodeMapStart(yynn3941) - yynn3941 = 0 + r.EncodeMapStart(yynn3990) + yynn3990 = 0 } - if yyr3941 || yy2arr3941 { + if yyr3990 || yy2arr3990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3941[0] { - yym3943 := z.EncBinary() - _ = yym3943 + if yyq3990[0] { + yym3992 := z.EncBinary() + _ = yym3992 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49378,23 +49915,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3941[0] { + if yyq3990[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3944 := z.EncBinary() - _ = yym3944 + yym3993 := z.EncBinary() + _ = yym3993 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3941 || yy2arr3941 { + if yyr3990 || yy2arr3990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3941[1] { - yym3946 := z.EncBinary() - _ = yym3946 + if yyq3990[1] { + yym3995 := z.EncBinary() + _ = yym3995 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49403,54 +49940,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3941[1] { + if yyq3990[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3947 := z.EncBinary() - _ = yym3947 + yym3996 := z.EncBinary() + _ = yym3996 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3941 || yy2arr3941 { + if yyr3990 || yy2arr3990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3941[2] { - yy3949 := &x.ListMeta - yym3950 := z.EncBinary() - _ = yym3950 + if yyq3990[2] { + yy3998 := &x.ListMeta + yym3999 := z.EncBinary() + _ = yym3999 if false { - } else if z.HasExtensions() && z.EncExt(yy3949) { + } else if z.HasExtensions() && z.EncExt(yy3998) { } else { - z.EncFallback(yy3949) + z.EncFallback(yy3998) } } else { r.EncodeNil() } } else { - if yyq3941[2] { + if yyq3990[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3951 := &x.ListMeta - yym3952 := z.EncBinary() - _ = yym3952 + yy4000 := &x.ListMeta + yym4001 := z.EncBinary() + _ = yym4001 if false { - } else if z.HasExtensions() && z.EncExt(yy3951) { + } else if z.HasExtensions() && z.EncExt(yy4000) { } else { - z.EncFallback(yy3951) + z.EncFallback(yy4000) } } } - if yyr3941 || yy2arr3941 { + if yyr3990 || yy2arr3990 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3954 := z.EncBinary() - _ = yym3954 + yym4003 := z.EncBinary() + _ = yym4003 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) @@ -49463,15 +50000,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3955 := z.EncBinary() - _ = yym3955 + yym4004 := z.EncBinary() + _ = yym4004 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) } } } - if yyr3941 || yy2arr3941 { + if yyr3990 || yy2arr3990 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49484,25 +50021,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3956 := z.DecBinary() - _ = yym3956 + yym4005 := z.DecBinary() + _ = yym4005 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3957 := r.ContainerType() - if yyct3957 == codecSelferValueTypeMap1234 { - yyl3957 := r.ReadMapStart() - if yyl3957 == 0 { + yyct4006 := r.ContainerType() + if yyct4006 == codecSelferValueTypeMap1234 { + yyl4006 := r.ReadMapStart() + if yyl4006 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3957, d) + x.codecDecodeSelfFromMap(yyl4006, d) } - } else if yyct3957 == codecSelferValueTypeArray1234 { - yyl3957 := r.ReadArrayStart() - if yyl3957 == 0 { + } else if yyct4006 == codecSelferValueTypeArray1234 { + yyl4006 := r.ReadArrayStart() + if yyl4006 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3957, d) + x.codecDecodeSelfFromArray(yyl4006, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49514,12 +50051,12 @@ func (x *List) 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 yys4007Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4007Slc + var yyhl4007 bool = l >= 0 + for yyj4007 := 0; ; yyj4007++ { + if yyhl4007 { + if yyj4007 >= l { break } } else { @@ -49528,10 +50065,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3958Slc = r.DecodeBytes(yys3958Slc, true, true) - yys3958 := string(yys3958Slc) + yys4007Slc = r.DecodeBytes(yys4007Slc, true, true) + yys4007 := string(yys4007Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3958 { + switch yys4007 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49548,31 +50085,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3961 := &x.ListMeta - yym3962 := z.DecBinary() - _ = yym3962 + yyv4010 := &x.ListMeta + yym4011 := z.DecBinary() + _ = yym4011 if false { - } else if z.HasExtensions() && z.DecExt(yyv3961) { + } else if z.HasExtensions() && z.DecExt(yyv4010) { } else { - z.DecFallback(yyv3961, false) + z.DecFallback(yyv4010, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3963 := &x.Items - yym3964 := z.DecBinary() - _ = yym3964 + yyv4012 := &x.Items + yym4013 := z.DecBinary() + _ = yym4013 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3963), d) + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv4012), d) } } default: - z.DecStructFieldNotFound(-1, yys3958) - } // end switch yys3958 - } // end for yyj3958 + z.DecStructFieldNotFound(-1, yys4007) + } // end switch yys4007 + } // end for yyj4007 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49580,16 +50117,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3965 int - var yyb3965 bool - var yyhl3965 bool = l >= 0 - yyj3965++ - if yyhl3965 { - yyb3965 = yyj3965 > l + var yyj4014 int + var yyb4014 bool + var yyhl4014 bool = l >= 0 + yyj4014++ + if yyhl4014 { + yyb4014 = yyj4014 > l } else { - yyb3965 = r.CheckBreak() + yyb4014 = r.CheckBreak() } - if yyb3965 { + if yyb4014 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49599,13 +50136,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3965++ - if yyhl3965 { - yyb3965 = yyj3965 > l + yyj4014++ + if yyhl4014 { + yyb4014 = yyj4014 > l } else { - yyb3965 = r.CheckBreak() + yyb4014 = r.CheckBreak() } - if yyb3965 { + if yyb4014 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49615,13 +50152,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3965++ - if yyhl3965 { - yyb3965 = yyj3965 > l + yyj4014++ + if yyhl4014 { + yyb4014 = yyj4014 > l } else { - yyb3965 = r.CheckBreak() + yyb4014 = r.CheckBreak() } - if yyb3965 { + if yyb4014 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49629,22 +50166,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3968 := &x.ListMeta - yym3969 := z.DecBinary() - _ = yym3969 + yyv4017 := &x.ListMeta + yym4018 := z.DecBinary() + _ = yym4018 if false { - } else if z.HasExtensions() && z.DecExt(yyv3968) { + } else if z.HasExtensions() && z.DecExt(yyv4017) { } else { - z.DecFallback(yyv3968, false) + z.DecFallback(yyv4017, false) } } - yyj3965++ - if yyhl3965 { - yyb3965 = yyj3965 > l + yyj4014++ + if yyhl4014 { + yyb4014 = yyj4014 > l } else { - yyb3965 = r.CheckBreak() + yyb4014 = r.CheckBreak() } - if yyb3965 { + if yyb4014 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49652,26 +50189,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3970 := &x.Items - yym3971 := z.DecBinary() - _ = yym3971 + yyv4019 := &x.Items + yym4020 := z.DecBinary() + _ = yym4020 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3970), d) + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv4019), d) } } for { - yyj3965++ - if yyhl3965 { - yyb3965 = yyj3965 > l + yyj4014++ + if yyhl4014 { + yyb4014 = yyj4014 > l } else { - yyb3965 = r.CheckBreak() + yyb4014 = r.CheckBreak() } - if yyb3965 { + if yyb4014 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3965-1, "") + z.DecStructFieldNotFound(yyj4014-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49680,8 +50217,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3972 := z.EncBinary() - _ = yym3972 + yym4021 := z.EncBinary() + _ = yym4021 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -49693,8 +50230,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3973 := z.DecBinary() - _ = yym3973 + yym4022 := z.DecBinary() + _ = yym4022 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -49709,53 +50246,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3974 := z.EncBinary() - _ = yym3974 + yym4023 := z.EncBinary() + _ = yym4023 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3975 := !z.EncBinary() - yy2arr3975 := z.EncBasicHandle().StructToArray - var yyq3975 [6]bool - _, _, _ = yysep3975, yyq3975, yy2arr3975 - const yyr3975 bool = false - yyq3975[0] = x.Type != "" - yyq3975[1] = len(x.Max) != 0 - yyq3975[2] = len(x.Min) != 0 - yyq3975[3] = len(x.Default) != 0 - yyq3975[4] = len(x.DefaultRequest) != 0 - yyq3975[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3975 int - if yyr3975 || yy2arr3975 { + yysep4024 := !z.EncBinary() + yy2arr4024 := z.EncBasicHandle().StructToArray + var yyq4024 [6]bool + _, _, _ = yysep4024, yyq4024, yy2arr4024 + const yyr4024 bool = false + yyq4024[0] = x.Type != "" + yyq4024[1] = len(x.Max) != 0 + yyq4024[2] = len(x.Min) != 0 + yyq4024[3] = len(x.Default) != 0 + yyq4024[4] = len(x.DefaultRequest) != 0 + yyq4024[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn4024 int + if yyr4024 || yy2arr4024 { r.EncodeArrayStart(6) } else { - yynn3975 = 0 - for _, b := range yyq3975 { + yynn4024 = 0 + for _, b := range yyq4024 { if b { - yynn3975++ + yynn4024++ } } - r.EncodeMapStart(yynn3975) - yynn3975 = 0 + r.EncodeMapStart(yynn4024) + yynn4024 = 0 } - if yyr3975 || yy2arr3975 { + if yyr4024 || yy2arr4024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3975[0] { + if yyq4024[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3975[0] { + if yyq4024[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3975 || yy2arr3975 { + if yyr4024 || yy2arr4024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3975[1] { + if yyq4024[1] { if x.Max == nil { r.EncodeNil() } else { @@ -49765,7 +50302,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3975[1] { + if yyq4024[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49776,9 +50313,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3975 || yy2arr3975 { + if yyr4024 || yy2arr4024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3975[2] { + if yyq4024[2] { if x.Min == nil { r.EncodeNil() } else { @@ -49788,7 +50325,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3975[2] { + if yyq4024[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49799,9 +50336,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3975 || yy2arr3975 { + if yyr4024 || yy2arr4024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3975[3] { + if yyq4024[3] { if x.Default == nil { r.EncodeNil() } else { @@ -49811,7 +50348,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3975[3] { + if yyq4024[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49822,9 +50359,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3975 || yy2arr3975 { + if yyr4024 || yy2arr4024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3975[4] { + if yyq4024[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -49834,7 +50371,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3975[4] { + if yyq4024[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49845,9 +50382,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3975 || yy2arr3975 { + if yyr4024 || yy2arr4024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3975[5] { + if yyq4024[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -49857,7 +50394,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3975[5] { + if yyq4024[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -49868,7 +50405,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3975 || yy2arr3975 { + if yyr4024 || yy2arr4024 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49881,25 +50418,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3982 := z.DecBinary() - _ = yym3982 + yym4031 := z.DecBinary() + _ = yym4031 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3983 := r.ContainerType() - if yyct3983 == codecSelferValueTypeMap1234 { - yyl3983 := r.ReadMapStart() - if yyl3983 == 0 { + yyct4032 := r.ContainerType() + if yyct4032 == codecSelferValueTypeMap1234 { + yyl4032 := r.ReadMapStart() + if yyl4032 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3983, d) + x.codecDecodeSelfFromMap(yyl4032, d) } - } else if yyct3983 == codecSelferValueTypeArray1234 { - yyl3983 := r.ReadArrayStart() - if yyl3983 == 0 { + } else if yyct4032 == codecSelferValueTypeArray1234 { + yyl4032 := r.ReadArrayStart() + if yyl4032 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3983, d) + x.codecDecodeSelfFromArray(yyl4032, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49911,12 +50448,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3984Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3984Slc - var yyhl3984 bool = l >= 0 - for yyj3984 := 0; ; yyj3984++ { - if yyhl3984 { - if yyj3984 >= l { + var yys4033Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4033Slc + var yyhl4033 bool = l >= 0 + for yyj4033 := 0; ; yyj4033++ { + if yyhl4033 { + if yyj4033 >= l { break } } else { @@ -49925,10 +50462,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3984Slc = r.DecodeBytes(yys3984Slc, true, true) - yys3984 := string(yys3984Slc) + yys4033Slc = r.DecodeBytes(yys4033Slc, true, true) + yys4033 := string(yys4033Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3984 { + switch yys4033 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -49939,41 +50476,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3986 := &x.Max - yyv3986.CodecDecodeSelf(d) + yyv4035 := &x.Max + yyv4035.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3987 := &x.Min - yyv3987.CodecDecodeSelf(d) + yyv4036 := &x.Min + yyv4036.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3988 := &x.Default - yyv3988.CodecDecodeSelf(d) + yyv4037 := &x.Default + yyv4037.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3989 := &x.DefaultRequest - yyv3989.CodecDecodeSelf(d) + yyv4038 := &x.DefaultRequest + yyv4038.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3990 := &x.MaxLimitRequestRatio - yyv3990.CodecDecodeSelf(d) + yyv4039 := &x.MaxLimitRequestRatio + yyv4039.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3984) - } // end switch yys3984 - } // end for yyj3984 + z.DecStructFieldNotFound(-1, yys4033) + } // end switch yys4033 + } // end for yyj4033 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49981,16 +50518,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3991 int - var yyb3991 bool - var yyhl3991 bool = l >= 0 - yyj3991++ - if yyhl3991 { - yyb3991 = yyj3991 > l + var yyj4040 int + var yyb4040 bool + var yyhl4040 bool = l >= 0 + yyj4040++ + if yyhl4040 { + yyb4040 = yyj4040 > l } else { - yyb3991 = r.CheckBreak() + yyb4040 = r.CheckBreak() } - if yyb3991 { + if yyb4040 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50000,13 +50537,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3991++ - if yyhl3991 { - yyb3991 = yyj3991 > l + yyj4040++ + if yyhl4040 { + yyb4040 = yyj4040 > l } else { - yyb3991 = r.CheckBreak() + yyb4040 = r.CheckBreak() } - if yyb3991 { + if yyb4040 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50014,16 +50551,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3993 := &x.Max - yyv3993.CodecDecodeSelf(d) + yyv4042 := &x.Max + yyv4042.CodecDecodeSelf(d) } - yyj3991++ - if yyhl3991 { - yyb3991 = yyj3991 > l + yyj4040++ + if yyhl4040 { + yyb4040 = yyj4040 > l } else { - yyb3991 = r.CheckBreak() + yyb4040 = r.CheckBreak() } - if yyb3991 { + if yyb4040 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50031,16 +50568,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3994 := &x.Min - yyv3994.CodecDecodeSelf(d) + yyv4043 := &x.Min + yyv4043.CodecDecodeSelf(d) } - yyj3991++ - if yyhl3991 { - yyb3991 = yyj3991 > l + yyj4040++ + if yyhl4040 { + yyb4040 = yyj4040 > l } else { - yyb3991 = r.CheckBreak() + yyb4040 = r.CheckBreak() } - if yyb3991 { + if yyb4040 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50048,16 +50585,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3995 := &x.Default - yyv3995.CodecDecodeSelf(d) + yyv4044 := &x.Default + yyv4044.CodecDecodeSelf(d) } - yyj3991++ - if yyhl3991 { - yyb3991 = yyj3991 > l + yyj4040++ + if yyhl4040 { + yyb4040 = yyj4040 > l } else { - yyb3991 = r.CheckBreak() + yyb4040 = r.CheckBreak() } - if yyb3991 { + if yyb4040 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50065,16 +50602,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3996 := &x.DefaultRequest - yyv3996.CodecDecodeSelf(d) + yyv4045 := &x.DefaultRequest + yyv4045.CodecDecodeSelf(d) } - yyj3991++ - if yyhl3991 { - yyb3991 = yyj3991 > l + yyj4040++ + if yyhl4040 { + yyb4040 = yyj4040 > l } else { - yyb3991 = r.CheckBreak() + yyb4040 = r.CheckBreak() } - if yyb3991 { + if yyb4040 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50082,21 +50619,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3997 := &x.MaxLimitRequestRatio - yyv3997.CodecDecodeSelf(d) + yyv4046 := &x.MaxLimitRequestRatio + yyv4046.CodecDecodeSelf(d) } for { - yyj3991++ - if yyhl3991 { - yyb3991 = yyj3991 > l + yyj4040++ + if yyhl4040 { + yyb4040 = yyj4040 > l } else { - yyb3991 = r.CheckBreak() + yyb4040 = r.CheckBreak() } - if yyb3991 { + if yyb4040 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3991-1, "") + z.DecStructFieldNotFound(yyj4040-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50108,36 +50645,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3998 := z.EncBinary() - _ = yym3998 + yym4047 := z.EncBinary() + _ = yym4047 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3999 := !z.EncBinary() - yy2arr3999 := z.EncBasicHandle().StructToArray - var yyq3999 [1]bool - _, _, _ = yysep3999, yyq3999, yy2arr3999 - const yyr3999 bool = false - var yynn3999 int - if yyr3999 || yy2arr3999 { + yysep4048 := !z.EncBinary() + yy2arr4048 := z.EncBasicHandle().StructToArray + var yyq4048 [1]bool + _, _, _ = yysep4048, yyq4048, yy2arr4048 + const yyr4048 bool = false + var yynn4048 int + if yyr4048 || yy2arr4048 { r.EncodeArrayStart(1) } else { - yynn3999 = 1 - for _, b := range yyq3999 { + yynn4048 = 1 + for _, b := range yyq4048 { if b { - yynn3999++ + yynn4048++ } } - r.EncodeMapStart(yynn3999) - yynn3999 = 0 + r.EncodeMapStart(yynn4048) + yynn4048 = 0 } - if yyr3999 || yy2arr3999 { + if yyr4048 || yy2arr4048 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym4001 := z.EncBinary() - _ = yym4001 + yym4050 := z.EncBinary() + _ = yym4050 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -50150,15 +50687,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym4002 := z.EncBinary() - _ = yym4002 + yym4051 := z.EncBinary() + _ = yym4051 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3999 || yy2arr3999 { + if yyr4048 || yy2arr4048 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50171,25 +50708,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4003 := z.DecBinary() - _ = yym4003 + yym4052 := z.DecBinary() + _ = yym4052 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4004 := r.ContainerType() - if yyct4004 == codecSelferValueTypeMap1234 { - yyl4004 := r.ReadMapStart() - if yyl4004 == 0 { + yyct4053 := r.ContainerType() + if yyct4053 == codecSelferValueTypeMap1234 { + yyl4053 := r.ReadMapStart() + if yyl4053 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4004, d) + x.codecDecodeSelfFromMap(yyl4053, d) } - } else if yyct4004 == codecSelferValueTypeArray1234 { - yyl4004 := r.ReadArrayStart() - if yyl4004 == 0 { + } else if yyct4053 == codecSelferValueTypeArray1234 { + yyl4053 := r.ReadArrayStart() + if yyl4053 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4004, d) + x.codecDecodeSelfFromArray(yyl4053, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50201,12 +50738,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4005Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4005Slc - var yyhl4005 bool = l >= 0 - for yyj4005 := 0; ; yyj4005++ { - if yyhl4005 { - if yyj4005 >= l { + var yys4054Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4054Slc + var yyhl4054 bool = l >= 0 + for yyj4054 := 0; ; yyj4054++ { + if yyhl4054 { + if yyj4054 >= l { break } } else { @@ -50215,26 +50752,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4005Slc = r.DecodeBytes(yys4005Slc, true, true) - yys4005 := string(yys4005Slc) + yys4054Slc = r.DecodeBytes(yys4054Slc, true, true) + yys4054 := string(yys4054Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4005 { + switch yys4054 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv4006 := &x.Limits - yym4007 := z.DecBinary() - _ = yym4007 + yyv4055 := &x.Limits + yym4056 := z.DecBinary() + _ = yym4056 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4006), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4055), d) } } default: - z.DecStructFieldNotFound(-1, yys4005) - } // end switch yys4005 - } // end for yyj4005 + z.DecStructFieldNotFound(-1, yys4054) + } // end switch yys4054 + } // end for yyj4054 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50242,16 +50779,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4008 int - var yyb4008 bool - var yyhl4008 bool = l >= 0 - yyj4008++ - if yyhl4008 { - yyb4008 = yyj4008 > l + var yyj4057 int + var yyb4057 bool + var yyhl4057 bool = l >= 0 + yyj4057++ + if yyhl4057 { + yyb4057 = yyj4057 > l } else { - yyb4008 = r.CheckBreak() + yyb4057 = r.CheckBreak() } - if yyb4008 { + if yyb4057 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50259,26 +50796,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv4009 := &x.Limits - yym4010 := z.DecBinary() - _ = yym4010 + yyv4058 := &x.Limits + yym4059 := z.DecBinary() + _ = yym4059 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4009), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4058), d) } } for { - yyj4008++ - if yyhl4008 { - yyb4008 = yyj4008 > l + yyj4057++ + if yyhl4057 { + yyb4057 = yyj4057 > l } else { - yyb4008 = r.CheckBreak() + yyb4057 = r.CheckBreak() } - if yyb4008 { + if yyb4057 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4008-1, "") + z.DecStructFieldNotFound(yyj4057-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50290,38 +50827,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4011 := z.EncBinary() - _ = yym4011 + yym4060 := z.EncBinary() + _ = yym4060 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4012 := !z.EncBinary() - yy2arr4012 := z.EncBasicHandle().StructToArray - var yyq4012 [4]bool - _, _, _ = yysep4012, yyq4012, yy2arr4012 - const yyr4012 bool = false - yyq4012[0] = x.Kind != "" - yyq4012[1] = x.APIVersion != "" - yyq4012[2] = true - yyq4012[3] = true - var yynn4012 int - if yyr4012 || yy2arr4012 { + 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 + yyq4061[3] = true + var yynn4061 int + if yyr4061 || yy2arr4061 { r.EncodeArrayStart(4) } else { - yynn4012 = 0 - for _, b := range yyq4012 { + yynn4061 = 0 + for _, b := range yyq4061 { if b { - yynn4012++ + yynn4061++ } } - r.EncodeMapStart(yynn4012) - yynn4012 = 0 + r.EncodeMapStart(yynn4061) + yynn4061 = 0 } - if yyr4012 || yy2arr4012 { + if yyr4061 || yy2arr4061 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4012[0] { - yym4014 := z.EncBinary() - _ = yym4014 + if yyq4061[0] { + yym4063 := z.EncBinary() + _ = yym4063 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50330,23 +50867,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4012[0] { + if yyq4061[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4015 := z.EncBinary() - _ = yym4015 + yym4064 := z.EncBinary() + _ = yym4064 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4012 || yy2arr4012 { + if yyr4061 || yy2arr4061 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4012[1] { - yym4017 := z.EncBinary() - _ = yym4017 + if yyq4061[1] { + yym4066 := z.EncBinary() + _ = yym4066 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50355,53 +50892,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4012[1] { + if yyq4061[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4018 := z.EncBinary() - _ = yym4018 + yym4067 := z.EncBinary() + _ = yym4067 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4012 || yy2arr4012 { + if yyr4061 || yy2arr4061 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4012[2] { - yy4020 := &x.ObjectMeta - yy4020.CodecEncodeSelf(e) + if yyq4061[2] { + yy4069 := &x.ObjectMeta + yy4069.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4012[2] { + if yyq4061[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4021 := &x.ObjectMeta - yy4021.CodecEncodeSelf(e) + yy4070 := &x.ObjectMeta + yy4070.CodecEncodeSelf(e) } } - if yyr4012 || yy2arr4012 { + if yyr4061 || yy2arr4061 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4012[3] { - yy4023 := &x.Spec - yy4023.CodecEncodeSelf(e) + if yyq4061[3] { + yy4072 := &x.Spec + yy4072.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4012[3] { + if yyq4061[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4024 := &x.Spec - yy4024.CodecEncodeSelf(e) + yy4073 := &x.Spec + yy4073.CodecEncodeSelf(e) } } - if yyr4012 || yy2arr4012 { + if yyr4061 || yy2arr4061 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50414,25 +50951,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4025 := z.DecBinary() - _ = yym4025 + yym4074 := z.DecBinary() + _ = yym4074 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4026 := r.ContainerType() - if yyct4026 == codecSelferValueTypeMap1234 { - yyl4026 := r.ReadMapStart() - if yyl4026 == 0 { + yyct4075 := r.ContainerType() + if yyct4075 == codecSelferValueTypeMap1234 { + yyl4075 := r.ReadMapStart() + if yyl4075 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4026, d) + x.codecDecodeSelfFromMap(yyl4075, d) } - } else if yyct4026 == codecSelferValueTypeArray1234 { - yyl4026 := r.ReadArrayStart() - if yyl4026 == 0 { + } else if yyct4075 == codecSelferValueTypeArray1234 { + yyl4075 := r.ReadArrayStart() + if yyl4075 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4026, d) + x.codecDecodeSelfFromArray(yyl4075, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50444,12 +50981,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4027Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4027Slc - var yyhl4027 bool = l >= 0 - for yyj4027 := 0; ; yyj4027++ { - if yyhl4027 { - if yyj4027 >= l { + var yys4076Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4076Slc + var yyhl4076 bool = l >= 0 + for yyj4076 := 0; ; yyj4076++ { + if yyhl4076 { + if yyj4076 >= l { break } } else { @@ -50458,10 +50995,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4027Slc = r.DecodeBytes(yys4027Slc, true, true) - yys4027 := string(yys4027Slc) + yys4076Slc = r.DecodeBytes(yys4076Slc, true, true) + yys4076 := string(yys4076Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4027 { + switch yys4076 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50478,20 +51015,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4030 := &x.ObjectMeta - yyv4030.CodecDecodeSelf(d) + yyv4079 := &x.ObjectMeta + yyv4079.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv4031 := &x.Spec - yyv4031.CodecDecodeSelf(d) + yyv4080 := &x.Spec + yyv4080.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4027) - } // end switch yys4027 - } // end for yyj4027 + z.DecStructFieldNotFound(-1, yys4076) + } // end switch yys4076 + } // end for yyj4076 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50499,16 +51036,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4032 int - var yyb4032 bool - var yyhl4032 bool = l >= 0 - yyj4032++ - if yyhl4032 { - yyb4032 = yyj4032 > l + var yyj4081 int + var yyb4081 bool + var yyhl4081 bool = l >= 0 + yyj4081++ + if yyhl4081 { + yyb4081 = yyj4081 > l } else { - yyb4032 = r.CheckBreak() + yyb4081 = r.CheckBreak() } - if yyb4032 { + if yyb4081 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50518,13 +51055,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4032++ - if yyhl4032 { - yyb4032 = yyj4032 > l + yyj4081++ + if yyhl4081 { + yyb4081 = yyj4081 > l } else { - yyb4032 = r.CheckBreak() + yyb4081 = r.CheckBreak() } - if yyb4032 { + if yyb4081 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50534,13 +51071,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4032++ - if yyhl4032 { - yyb4032 = yyj4032 > l + yyj4081++ + if yyhl4081 { + yyb4081 = yyj4081 > l } else { - yyb4032 = r.CheckBreak() + yyb4081 = r.CheckBreak() } - if yyb4032 { + if yyb4081 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50548,16 +51085,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4035 := &x.ObjectMeta - yyv4035.CodecDecodeSelf(d) + yyv4084 := &x.ObjectMeta + yyv4084.CodecDecodeSelf(d) } - yyj4032++ - if yyhl4032 { - yyb4032 = yyj4032 > l + yyj4081++ + if yyhl4081 { + yyb4081 = yyj4081 > l } else { - yyb4032 = r.CheckBreak() + yyb4081 = r.CheckBreak() } - if yyb4032 { + if yyb4081 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50565,21 +51102,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv4036 := &x.Spec - yyv4036.CodecDecodeSelf(d) + yyv4085 := &x.Spec + yyv4085.CodecDecodeSelf(d) } for { - yyj4032++ - if yyhl4032 { - yyb4032 = yyj4032 > l + yyj4081++ + if yyhl4081 { + yyb4081 = yyj4081 > l } else { - yyb4032 = r.CheckBreak() + yyb4081 = r.CheckBreak() } - if yyb4032 { + if yyb4081 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4032-1, "") + z.DecStructFieldNotFound(yyj4081-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50591,37 +51128,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4037 := z.EncBinary() - _ = yym4037 + yym4086 := z.EncBinary() + _ = yym4086 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4038 := !z.EncBinary() - yy2arr4038 := z.EncBasicHandle().StructToArray - var yyq4038 [4]bool - _, _, _ = yysep4038, yyq4038, yy2arr4038 - const yyr4038 bool = false - yyq4038[0] = x.Kind != "" - yyq4038[1] = x.APIVersion != "" - yyq4038[2] = true - var yynn4038 int - if yyr4038 || yy2arr4038 { + yysep4087 := !z.EncBinary() + yy2arr4087 := z.EncBasicHandle().StructToArray + var yyq4087 [4]bool + _, _, _ = yysep4087, yyq4087, yy2arr4087 + const yyr4087 bool = false + yyq4087[0] = x.Kind != "" + yyq4087[1] = x.APIVersion != "" + yyq4087[2] = true + var yynn4087 int + if yyr4087 || yy2arr4087 { r.EncodeArrayStart(4) } else { - yynn4038 = 1 - for _, b := range yyq4038 { + yynn4087 = 1 + for _, b := range yyq4087 { if b { - yynn4038++ + yynn4087++ } } - r.EncodeMapStart(yynn4038) - yynn4038 = 0 + r.EncodeMapStart(yynn4087) + yynn4087 = 0 } - if yyr4038 || yy2arr4038 { + if yyr4087 || yy2arr4087 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4038[0] { - yym4040 := z.EncBinary() - _ = yym4040 + if yyq4087[0] { + yym4089 := z.EncBinary() + _ = yym4089 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50630,23 +51167,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4038[0] { + if yyq4087[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4041 := z.EncBinary() - _ = yym4041 + yym4090 := z.EncBinary() + _ = yym4090 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4038 || yy2arr4038 { + if yyr4087 || yy2arr4087 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4038[1] { - yym4043 := z.EncBinary() - _ = yym4043 + if yyq4087[1] { + yym4092 := z.EncBinary() + _ = yym4092 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50655,54 +51192,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4038[1] { + if yyq4087[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4044 := z.EncBinary() - _ = yym4044 + yym4093 := z.EncBinary() + _ = yym4093 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4038 || yy2arr4038 { + if yyr4087 || yy2arr4087 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4038[2] { - yy4046 := &x.ListMeta - yym4047 := z.EncBinary() - _ = yym4047 + if yyq4087[2] { + yy4095 := &x.ListMeta + yym4096 := z.EncBinary() + _ = yym4096 if false { - } else if z.HasExtensions() && z.EncExt(yy4046) { + } else if z.HasExtensions() && z.EncExt(yy4095) { } else { - z.EncFallback(yy4046) + z.EncFallback(yy4095) } } else { r.EncodeNil() } } else { - if yyq4038[2] { + if yyq4087[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4048 := &x.ListMeta - yym4049 := z.EncBinary() - _ = yym4049 + yy4097 := &x.ListMeta + yym4098 := z.EncBinary() + _ = yym4098 if false { - } else if z.HasExtensions() && z.EncExt(yy4048) { + } else if z.HasExtensions() && z.EncExt(yy4097) { } else { - z.EncFallback(yy4048) + z.EncFallback(yy4097) } } } - if yyr4038 || yy2arr4038 { + if yyr4087 || yy2arr4087 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4051 := z.EncBinary() - _ = yym4051 + yym4100 := z.EncBinary() + _ = yym4100 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -50715,15 +51252,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4052 := z.EncBinary() - _ = yym4052 + yym4101 := z.EncBinary() + _ = yym4101 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr4038 || yy2arr4038 { + if yyr4087 || yy2arr4087 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50736,25 +51273,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4053 := z.DecBinary() - _ = yym4053 + yym4102 := z.DecBinary() + _ = yym4102 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4054 := r.ContainerType() - if yyct4054 == codecSelferValueTypeMap1234 { - yyl4054 := r.ReadMapStart() - if yyl4054 == 0 { + yyct4103 := r.ContainerType() + if yyct4103 == codecSelferValueTypeMap1234 { + yyl4103 := r.ReadMapStart() + if yyl4103 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4054, d) + x.codecDecodeSelfFromMap(yyl4103, d) } - } else if yyct4054 == codecSelferValueTypeArray1234 { - yyl4054 := r.ReadArrayStart() - if yyl4054 == 0 { + } else if yyct4103 == codecSelferValueTypeArray1234 { + yyl4103 := r.ReadArrayStart() + if yyl4103 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4054, d) + x.codecDecodeSelfFromArray(yyl4103, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50766,12 +51303,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4055Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4055Slc - var yyhl4055 bool = l >= 0 - for yyj4055 := 0; ; yyj4055++ { - if yyhl4055 { - if yyj4055 >= l { + var yys4104Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4104Slc + var yyhl4104 bool = l >= 0 + for yyj4104 := 0; ; yyj4104++ { + if yyhl4104 { + if yyj4104 >= l { break } } else { @@ -50780,10 +51317,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4055Slc = r.DecodeBytes(yys4055Slc, true, true) - yys4055 := string(yys4055Slc) + yys4104Slc = r.DecodeBytes(yys4104Slc, true, true) + yys4104 := string(yys4104Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4055 { + switch yys4104 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50800,31 +51337,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4058 := &x.ListMeta - yym4059 := z.DecBinary() - _ = yym4059 + yyv4107 := &x.ListMeta + yym4108 := z.DecBinary() + _ = yym4108 if false { - } else if z.HasExtensions() && z.DecExt(yyv4058) { + } else if z.HasExtensions() && z.DecExt(yyv4107) { } else { - z.DecFallback(yyv4058, false) + z.DecFallback(yyv4107, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4060 := &x.Items - yym4061 := z.DecBinary() - _ = yym4061 + yyv4109 := &x.Items + yym4110 := z.DecBinary() + _ = yym4110 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4060), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4109), d) } } default: - z.DecStructFieldNotFound(-1, yys4055) - } // end switch yys4055 - } // end for yyj4055 + z.DecStructFieldNotFound(-1, yys4104) + } // end switch yys4104 + } // end for yyj4104 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50832,16 +51369,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4062 int - var yyb4062 bool - var yyhl4062 bool = l >= 0 - yyj4062++ - if yyhl4062 { - yyb4062 = yyj4062 > l + var yyj4111 int + var yyb4111 bool + var yyhl4111 bool = l >= 0 + yyj4111++ + if yyhl4111 { + yyb4111 = yyj4111 > l } else { - yyb4062 = r.CheckBreak() + yyb4111 = r.CheckBreak() } - if yyb4062 { + if yyb4111 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50851,13 +51388,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4062++ - if yyhl4062 { - yyb4062 = yyj4062 > l + yyj4111++ + if yyhl4111 { + yyb4111 = yyj4111 > l } else { - yyb4062 = r.CheckBreak() + yyb4111 = r.CheckBreak() } - if yyb4062 { + if yyb4111 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50867,13 +51404,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4062++ - if yyhl4062 { - yyb4062 = yyj4062 > l + yyj4111++ + if yyhl4111 { + yyb4111 = yyj4111 > l } else { - yyb4062 = r.CheckBreak() + yyb4111 = r.CheckBreak() } - if yyb4062 { + if yyb4111 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50881,22 +51418,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4065 := &x.ListMeta - yym4066 := z.DecBinary() - _ = yym4066 + yyv4114 := &x.ListMeta + yym4115 := z.DecBinary() + _ = yym4115 if false { - } else if z.HasExtensions() && z.DecExt(yyv4065) { + } else if z.HasExtensions() && z.DecExt(yyv4114) { } else { - z.DecFallback(yyv4065, false) + z.DecFallback(yyv4114, false) } } - yyj4062++ - if yyhl4062 { - yyb4062 = yyj4062 > l + yyj4111++ + if yyhl4111 { + yyb4111 = yyj4111 > l } else { - yyb4062 = r.CheckBreak() + yyb4111 = r.CheckBreak() } - if yyb4062 { + if yyb4111 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50904,26 +51441,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4067 := &x.Items - yym4068 := z.DecBinary() - _ = yym4068 + yyv4116 := &x.Items + yym4117 := z.DecBinary() + _ = yym4117 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4067), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4116), d) } } for { - yyj4062++ - if yyhl4062 { - yyb4062 = yyj4062 > l + yyj4111++ + if yyhl4111 { + yyb4111 = yyj4111 > l } else { - yyb4062 = r.CheckBreak() + yyb4111 = r.CheckBreak() } - if yyb4062 { + if yyb4111 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4062-1, "") + z.DecStructFieldNotFound(yyj4111-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50932,8 +51469,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4069 := z.EncBinary() - _ = yym4069 + yym4118 := z.EncBinary() + _ = yym4118 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -50945,8 +51482,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4070 := z.DecBinary() - _ = yym4070 + yym4119 := z.DecBinary() + _ = yym4119 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -50961,34 +51498,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4071 := z.EncBinary() - _ = yym4071 + yym4120 := z.EncBinary() + _ = yym4120 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4072 := !z.EncBinary() - yy2arr4072 := z.EncBasicHandle().StructToArray - var yyq4072 [2]bool - _, _, _ = yysep4072, yyq4072, yy2arr4072 - const yyr4072 bool = false - yyq4072[0] = len(x.Hard) != 0 - yyq4072[1] = len(x.Scopes) != 0 - var yynn4072 int - if yyr4072 || yy2arr4072 { + yysep4121 := !z.EncBinary() + yy2arr4121 := z.EncBasicHandle().StructToArray + var yyq4121 [2]bool + _, _, _ = yysep4121, yyq4121, yy2arr4121 + const yyr4121 bool = false + yyq4121[0] = len(x.Hard) != 0 + yyq4121[1] = len(x.Scopes) != 0 + var yynn4121 int + if yyr4121 || yy2arr4121 { r.EncodeArrayStart(2) } else { - yynn4072 = 0 - for _, b := range yyq4072 { + yynn4121 = 0 + for _, b := range yyq4121 { if b { - yynn4072++ + yynn4121++ } } - r.EncodeMapStart(yynn4072) - yynn4072 = 0 + r.EncodeMapStart(yynn4121) + yynn4121 = 0 } - if yyr4072 || yy2arr4072 { + if yyr4121 || yy2arr4121 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4072[0] { + if yyq4121[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -50998,7 +51535,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4072[0] { + if yyq4121[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -51009,14 +51546,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4072 || yy2arr4072 { + if yyr4121 || yy2arr4121 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4072[1] { + if yyq4121[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym4075 := z.EncBinary() - _ = yym4075 + yym4124 := z.EncBinary() + _ = yym4124 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -51026,15 +51563,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4072[1] { + if yyq4121[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym4076 := z.EncBinary() - _ = yym4076 + yym4125 := z.EncBinary() + _ = yym4125 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -51042,7 +51579,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4072 || yy2arr4072 { + if yyr4121 || yy2arr4121 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51055,25 +51592,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4077 := z.DecBinary() - _ = yym4077 + yym4126 := z.DecBinary() + _ = yym4126 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4078 := r.ContainerType() - if yyct4078 == codecSelferValueTypeMap1234 { - yyl4078 := r.ReadMapStart() - if yyl4078 == 0 { + yyct4127 := r.ContainerType() + if yyct4127 == codecSelferValueTypeMap1234 { + yyl4127 := r.ReadMapStart() + if yyl4127 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4078, d) + x.codecDecodeSelfFromMap(yyl4127, d) } - } else if yyct4078 == codecSelferValueTypeArray1234 { - yyl4078 := r.ReadArrayStart() - if yyl4078 == 0 { + } else if yyct4127 == codecSelferValueTypeArray1234 { + yyl4127 := r.ReadArrayStart() + if yyl4127 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4078, d) + x.codecDecodeSelfFromArray(yyl4127, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51085,12 +51622,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4079Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4079Slc - var yyhl4079 bool = l >= 0 - for yyj4079 := 0; ; yyj4079++ { - if yyhl4079 { - if yyj4079 >= l { + var yys4128Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4128Slc + var yyhl4128 bool = l >= 0 + for yyj4128 := 0; ; yyj4128++ { + if yyhl4128 { + if yyj4128 >= l { break } } else { @@ -51099,33 +51636,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4079Slc = r.DecodeBytes(yys4079Slc, true, true) - yys4079 := string(yys4079Slc) + yys4128Slc = r.DecodeBytes(yys4128Slc, true, true) + yys4128 := string(yys4128Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4079 { + switch yys4128 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4080 := &x.Hard - yyv4080.CodecDecodeSelf(d) + yyv4129 := &x.Hard + yyv4129.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4081 := &x.Scopes - yym4082 := z.DecBinary() - _ = yym4082 + yyv4130 := &x.Scopes + yym4131 := z.DecBinary() + _ = yym4131 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4081), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4130), d) } } default: - z.DecStructFieldNotFound(-1, yys4079) - } // end switch yys4079 - } // end for yyj4079 + z.DecStructFieldNotFound(-1, yys4128) + } // end switch yys4128 + } // end for yyj4128 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51133,16 +51670,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4083 int - var yyb4083 bool - var yyhl4083 bool = l >= 0 - yyj4083++ - if yyhl4083 { - yyb4083 = yyj4083 > l + var yyj4132 int + var yyb4132 bool + var yyhl4132 bool = l >= 0 + yyj4132++ + if yyhl4132 { + yyb4132 = yyj4132 > l } else { - yyb4083 = r.CheckBreak() + yyb4132 = r.CheckBreak() } - if yyb4083 { + if yyb4132 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51150,16 +51687,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4084 := &x.Hard - yyv4084.CodecDecodeSelf(d) + yyv4133 := &x.Hard + yyv4133.CodecDecodeSelf(d) } - yyj4083++ - if yyhl4083 { - yyb4083 = yyj4083 > l + yyj4132++ + if yyhl4132 { + yyb4132 = yyj4132 > l } else { - yyb4083 = r.CheckBreak() + yyb4132 = r.CheckBreak() } - if yyb4083 { + if yyb4132 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51167,26 +51704,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4085 := &x.Scopes - yym4086 := z.DecBinary() - _ = yym4086 + yyv4134 := &x.Scopes + yym4135 := z.DecBinary() + _ = yym4135 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4085), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4134), d) } } for { - yyj4083++ - if yyhl4083 { - yyb4083 = yyj4083 > l + yyj4132++ + if yyhl4132 { + yyb4132 = yyj4132 > l } else { - yyb4083 = r.CheckBreak() + yyb4132 = r.CheckBreak() } - if yyb4083 { + if yyb4132 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4083-1, "") + z.DecStructFieldNotFound(yyj4132-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51198,34 +51735,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4087 := z.EncBinary() - _ = yym4087 + yym4136 := z.EncBinary() + _ = yym4136 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4088 := !z.EncBinary() - yy2arr4088 := z.EncBasicHandle().StructToArray - var yyq4088 [2]bool - _, _, _ = yysep4088, yyq4088, yy2arr4088 - const yyr4088 bool = false - yyq4088[0] = len(x.Hard) != 0 - yyq4088[1] = len(x.Used) != 0 - var yynn4088 int - if yyr4088 || yy2arr4088 { + yysep4137 := !z.EncBinary() + yy2arr4137 := z.EncBasicHandle().StructToArray + var yyq4137 [2]bool + _, _, _ = yysep4137, yyq4137, yy2arr4137 + const yyr4137 bool = false + yyq4137[0] = len(x.Hard) != 0 + yyq4137[1] = len(x.Used) != 0 + var yynn4137 int + if yyr4137 || yy2arr4137 { r.EncodeArrayStart(2) } else { - yynn4088 = 0 - for _, b := range yyq4088 { + yynn4137 = 0 + for _, b := range yyq4137 { if b { - yynn4088++ + yynn4137++ } } - r.EncodeMapStart(yynn4088) - yynn4088 = 0 + r.EncodeMapStart(yynn4137) + yynn4137 = 0 } - if yyr4088 || yy2arr4088 { + if yyr4137 || yy2arr4137 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4088[0] { + if yyq4137[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -51235,7 +51772,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4088[0] { + if yyq4137[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -51246,9 +51783,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4088 || yy2arr4088 { + if yyr4137 || yy2arr4137 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4088[1] { + if yyq4137[1] { if x.Used == nil { r.EncodeNil() } else { @@ -51258,7 +51795,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4088[1] { + if yyq4137[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -51269,7 +51806,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4088 || yy2arr4088 { + if yyr4137 || yy2arr4137 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51282,25 +51819,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4091 := z.DecBinary() - _ = yym4091 + yym4140 := z.DecBinary() + _ = yym4140 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4092 := r.ContainerType() - if yyct4092 == codecSelferValueTypeMap1234 { - yyl4092 := r.ReadMapStart() - if yyl4092 == 0 { + yyct4141 := r.ContainerType() + if yyct4141 == codecSelferValueTypeMap1234 { + yyl4141 := r.ReadMapStart() + if yyl4141 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4092, d) + x.codecDecodeSelfFromMap(yyl4141, d) } - } else if yyct4092 == codecSelferValueTypeArray1234 { - yyl4092 := r.ReadArrayStart() - if yyl4092 == 0 { + } else if yyct4141 == codecSelferValueTypeArray1234 { + yyl4141 := r.ReadArrayStart() + if yyl4141 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4092, d) + x.codecDecodeSelfFromArray(yyl4141, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51312,12 +51849,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4093Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4093Slc - var yyhl4093 bool = l >= 0 - for yyj4093 := 0; ; yyj4093++ { - if yyhl4093 { - if yyj4093 >= l { + var yys4142Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4142Slc + var yyhl4142 bool = l >= 0 + for yyj4142 := 0; ; yyj4142++ { + if yyhl4142 { + if yyj4142 >= l { break } } else { @@ -51326,28 +51863,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4093Slc = r.DecodeBytes(yys4093Slc, true, true) - yys4093 := string(yys4093Slc) + yys4142Slc = r.DecodeBytes(yys4142Slc, true, true) + yys4142 := string(yys4142Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4093 { + switch yys4142 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4094 := &x.Hard - yyv4094.CodecDecodeSelf(d) + yyv4143 := &x.Hard + yyv4143.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4095 := &x.Used - yyv4095.CodecDecodeSelf(d) + yyv4144 := &x.Used + yyv4144.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4093) - } // end switch yys4093 - } // end for yyj4093 + z.DecStructFieldNotFound(-1, yys4142) + } // end switch yys4142 + } // end for yyj4142 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51355,16 +51892,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4096 int - var yyb4096 bool - var yyhl4096 bool = l >= 0 - yyj4096++ - if yyhl4096 { - yyb4096 = yyj4096 > l + var yyj4145 int + var yyb4145 bool + var yyhl4145 bool = l >= 0 + yyj4145++ + if yyhl4145 { + yyb4145 = yyj4145 > l } else { - yyb4096 = r.CheckBreak() + yyb4145 = r.CheckBreak() } - if yyb4096 { + if yyb4145 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51372,16 +51909,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4097 := &x.Hard - yyv4097.CodecDecodeSelf(d) + yyv4146 := &x.Hard + yyv4146.CodecDecodeSelf(d) } - yyj4096++ - if yyhl4096 { - yyb4096 = yyj4096 > l + yyj4145++ + if yyhl4145 { + yyb4145 = yyj4145 > l } else { - yyb4096 = r.CheckBreak() + yyb4145 = r.CheckBreak() } - if yyb4096 { + if yyb4145 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51389,21 +51926,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4098 := &x.Used - yyv4098.CodecDecodeSelf(d) + yyv4147 := &x.Used + yyv4147.CodecDecodeSelf(d) } for { - yyj4096++ - if yyhl4096 { - yyb4096 = yyj4096 > l + yyj4145++ + if yyhl4145 { + yyb4145 = yyj4145 > l } else { - yyb4096 = r.CheckBreak() + yyb4145 = r.CheckBreak() } - if yyb4096 { + if yyb4145 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4096-1, "") + z.DecStructFieldNotFound(yyj4145-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51415,39 +51952,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4099 := z.EncBinary() - _ = yym4099 + yym4148 := z.EncBinary() + _ = yym4148 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4100 := !z.EncBinary() - yy2arr4100 := z.EncBasicHandle().StructToArray - var yyq4100 [5]bool - _, _, _ = yysep4100, yyq4100, yy2arr4100 - const yyr4100 bool = false - yyq4100[0] = x.Kind != "" - yyq4100[1] = x.APIVersion != "" - yyq4100[2] = true - yyq4100[3] = true - yyq4100[4] = true - var yynn4100 int - if yyr4100 || yy2arr4100 { + yysep4149 := !z.EncBinary() + yy2arr4149 := z.EncBasicHandle().StructToArray + var yyq4149 [5]bool + _, _, _ = yysep4149, yyq4149, yy2arr4149 + const yyr4149 bool = false + yyq4149[0] = x.Kind != "" + yyq4149[1] = x.APIVersion != "" + yyq4149[2] = true + yyq4149[3] = true + yyq4149[4] = true + var yynn4149 int + if yyr4149 || yy2arr4149 { r.EncodeArrayStart(5) } else { - yynn4100 = 0 - for _, b := range yyq4100 { + yynn4149 = 0 + for _, b := range yyq4149 { if b { - yynn4100++ + yynn4149++ } } - r.EncodeMapStart(yynn4100) - yynn4100 = 0 + r.EncodeMapStart(yynn4149) + yynn4149 = 0 } - if yyr4100 || yy2arr4100 { + if yyr4149 || yy2arr4149 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4100[0] { - yym4102 := z.EncBinary() - _ = yym4102 + if yyq4149[0] { + yym4151 := z.EncBinary() + _ = yym4151 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51456,23 +51993,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4100[0] { + if yyq4149[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4103 := z.EncBinary() - _ = yym4103 + yym4152 := z.EncBinary() + _ = yym4152 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4100 || yy2arr4100 { + if yyr4149 || yy2arr4149 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4100[1] { - yym4105 := z.EncBinary() - _ = yym4105 + if yyq4149[1] { + yym4154 := z.EncBinary() + _ = yym4154 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51481,70 +52018,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4100[1] { + if yyq4149[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4106 := z.EncBinary() - _ = yym4106 + yym4155 := z.EncBinary() + _ = yym4155 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4100 || yy2arr4100 { + if yyr4149 || yy2arr4149 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4100[2] { - yy4108 := &x.ObjectMeta - yy4108.CodecEncodeSelf(e) + if yyq4149[2] { + yy4157 := &x.ObjectMeta + yy4157.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4100[2] { + if yyq4149[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4109 := &x.ObjectMeta - yy4109.CodecEncodeSelf(e) + yy4158 := &x.ObjectMeta + yy4158.CodecEncodeSelf(e) } } - if yyr4100 || yy2arr4100 { + if yyr4149 || yy2arr4149 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4100[3] { - yy4111 := &x.Spec - yy4111.CodecEncodeSelf(e) + if yyq4149[3] { + yy4160 := &x.Spec + yy4160.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4100[3] { + if yyq4149[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4112 := &x.Spec - yy4112.CodecEncodeSelf(e) + yy4161 := &x.Spec + yy4161.CodecEncodeSelf(e) } } - if yyr4100 || yy2arr4100 { + if yyr4149 || yy2arr4149 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4100[4] { - yy4114 := &x.Status - yy4114.CodecEncodeSelf(e) + if yyq4149[4] { + yy4163 := &x.Status + yy4163.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4100[4] { + if yyq4149[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4115 := &x.Status - yy4115.CodecEncodeSelf(e) + yy4164 := &x.Status + yy4164.CodecEncodeSelf(e) } } - if yyr4100 || yy2arr4100 { + if yyr4149 || yy2arr4149 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51557,25 +52094,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4116 := z.DecBinary() - _ = yym4116 + yym4165 := z.DecBinary() + _ = yym4165 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4117 := r.ContainerType() - if yyct4117 == codecSelferValueTypeMap1234 { - yyl4117 := r.ReadMapStart() - if yyl4117 == 0 { + yyct4166 := r.ContainerType() + if yyct4166 == codecSelferValueTypeMap1234 { + yyl4166 := r.ReadMapStart() + if yyl4166 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4117, d) + x.codecDecodeSelfFromMap(yyl4166, d) } - } else if yyct4117 == codecSelferValueTypeArray1234 { - yyl4117 := r.ReadArrayStart() - if yyl4117 == 0 { + } else if yyct4166 == codecSelferValueTypeArray1234 { + yyl4166 := r.ReadArrayStart() + if yyl4166 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4117, d) + x.codecDecodeSelfFromArray(yyl4166, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51587,12 +52124,12 @@ func (x *ResourceQuota) 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 yys4167Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4167Slc + var yyhl4167 bool = l >= 0 + for yyj4167 := 0; ; yyj4167++ { + if yyhl4167 { + if yyj4167 >= l { break } } else { @@ -51601,10 +52138,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4118Slc = r.DecodeBytes(yys4118Slc, true, true) - yys4118 := string(yys4118Slc) + yys4167Slc = r.DecodeBytes(yys4167Slc, true, true) + yys4167 := string(yys4167Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4118 { + switch yys4167 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51621,27 +52158,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4121 := &x.ObjectMeta - yyv4121.CodecDecodeSelf(d) + yyv4170 := &x.ObjectMeta + yyv4170.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4122 := &x.Spec - yyv4122.CodecDecodeSelf(d) + yyv4171 := &x.Spec + yyv4171.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4123 := &x.Status - yyv4123.CodecDecodeSelf(d) + yyv4172 := &x.Status + yyv4172.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4118) - } // end switch yys4118 - } // end for yyj4118 + z.DecStructFieldNotFound(-1, yys4167) + } // end switch yys4167 + } // end for yyj4167 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51649,16 +52186,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4124 int - var yyb4124 bool - var yyhl4124 bool = l >= 0 - yyj4124++ - if yyhl4124 { - yyb4124 = yyj4124 > l + var yyj4173 int + var yyb4173 bool + var yyhl4173 bool = l >= 0 + yyj4173++ + if yyhl4173 { + yyb4173 = yyj4173 > l } else { - yyb4124 = r.CheckBreak() + yyb4173 = r.CheckBreak() } - if yyb4124 { + if yyb4173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51668,13 +52205,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4124++ - if yyhl4124 { - yyb4124 = yyj4124 > l + yyj4173++ + if yyhl4173 { + yyb4173 = yyj4173 > l } else { - yyb4124 = r.CheckBreak() + yyb4173 = r.CheckBreak() } - if yyb4124 { + if yyb4173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51684,13 +52221,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4124++ - if yyhl4124 { - yyb4124 = yyj4124 > l + yyj4173++ + if yyhl4173 { + yyb4173 = yyj4173 > l } else { - yyb4124 = r.CheckBreak() + yyb4173 = r.CheckBreak() } - if yyb4124 { + if yyb4173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51698,16 +52235,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4127 := &x.ObjectMeta - yyv4127.CodecDecodeSelf(d) + yyv4176 := &x.ObjectMeta + yyv4176.CodecDecodeSelf(d) } - yyj4124++ - if yyhl4124 { - yyb4124 = yyj4124 > l + yyj4173++ + if yyhl4173 { + yyb4173 = yyj4173 > l } else { - yyb4124 = r.CheckBreak() + yyb4173 = r.CheckBreak() } - if yyb4124 { + if yyb4173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51715,16 +52252,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4128 := &x.Spec - yyv4128.CodecDecodeSelf(d) + yyv4177 := &x.Spec + yyv4177.CodecDecodeSelf(d) } - yyj4124++ - if yyhl4124 { - yyb4124 = yyj4124 > l + yyj4173++ + if yyhl4173 { + yyb4173 = yyj4173 > l } else { - yyb4124 = r.CheckBreak() + yyb4173 = r.CheckBreak() } - if yyb4124 { + if yyb4173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51732,21 +52269,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4129 := &x.Status - yyv4129.CodecDecodeSelf(d) + yyv4178 := &x.Status + yyv4178.CodecDecodeSelf(d) } for { - yyj4124++ - if yyhl4124 { - yyb4124 = yyj4124 > l + yyj4173++ + if yyhl4173 { + yyb4173 = yyj4173 > l } else { - yyb4124 = r.CheckBreak() + yyb4173 = r.CheckBreak() } - if yyb4124 { + if yyb4173 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4124-1, "") + z.DecStructFieldNotFound(yyj4173-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51758,37 +52295,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4130 := z.EncBinary() - _ = yym4130 + yym4179 := z.EncBinary() + _ = yym4179 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4131 := !z.EncBinary() - yy2arr4131 := z.EncBasicHandle().StructToArray - var yyq4131 [4]bool - _, _, _ = yysep4131, yyq4131, yy2arr4131 - const yyr4131 bool = false - yyq4131[0] = x.Kind != "" - yyq4131[1] = x.APIVersion != "" - yyq4131[2] = true - var yynn4131 int - if yyr4131 || yy2arr4131 { + yysep4180 := !z.EncBinary() + yy2arr4180 := z.EncBasicHandle().StructToArray + var yyq4180 [4]bool + _, _, _ = yysep4180, yyq4180, yy2arr4180 + const yyr4180 bool = false + yyq4180[0] = x.Kind != "" + yyq4180[1] = x.APIVersion != "" + yyq4180[2] = true + var yynn4180 int + if yyr4180 || yy2arr4180 { r.EncodeArrayStart(4) } else { - yynn4131 = 1 - for _, b := range yyq4131 { + yynn4180 = 1 + for _, b := range yyq4180 { if b { - yynn4131++ + yynn4180++ } } - r.EncodeMapStart(yynn4131) - yynn4131 = 0 + r.EncodeMapStart(yynn4180) + yynn4180 = 0 } - if yyr4131 || yy2arr4131 { + if yyr4180 || yy2arr4180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4131[0] { - yym4133 := z.EncBinary() - _ = yym4133 + if yyq4180[0] { + yym4182 := z.EncBinary() + _ = yym4182 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51797,23 +52334,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4131[0] { + if yyq4180[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4134 := z.EncBinary() - _ = yym4134 + yym4183 := z.EncBinary() + _ = yym4183 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4131 || yy2arr4131 { + if yyr4180 || yy2arr4180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4131[1] { - yym4136 := z.EncBinary() - _ = yym4136 + if yyq4180[1] { + yym4185 := z.EncBinary() + _ = yym4185 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51822,54 +52359,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4131[1] { + if yyq4180[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4137 := z.EncBinary() - _ = yym4137 + yym4186 := z.EncBinary() + _ = yym4186 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4131 || yy2arr4131 { + if yyr4180 || yy2arr4180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4131[2] { - yy4139 := &x.ListMeta - yym4140 := z.EncBinary() - _ = yym4140 + if yyq4180[2] { + yy4188 := &x.ListMeta + yym4189 := z.EncBinary() + _ = yym4189 if false { - } else if z.HasExtensions() && z.EncExt(yy4139) { + } else if z.HasExtensions() && z.EncExt(yy4188) { } else { - z.EncFallback(yy4139) + z.EncFallback(yy4188) } } else { r.EncodeNil() } } else { - if yyq4131[2] { + if yyq4180[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4141 := &x.ListMeta - yym4142 := z.EncBinary() - _ = yym4142 + yy4190 := &x.ListMeta + yym4191 := z.EncBinary() + _ = yym4191 if false { - } else if z.HasExtensions() && z.EncExt(yy4141) { + } else if z.HasExtensions() && z.EncExt(yy4190) { } else { - z.EncFallback(yy4141) + z.EncFallback(yy4190) } } } - if yyr4131 || yy2arr4131 { + if yyr4180 || yy2arr4180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4144 := z.EncBinary() - _ = yym4144 + yym4193 := z.EncBinary() + _ = yym4193 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -51882,15 +52419,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4145 := z.EncBinary() - _ = yym4145 + yym4194 := z.EncBinary() + _ = yym4194 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr4131 || yy2arr4131 { + if yyr4180 || yy2arr4180 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51903,25 +52440,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4146 := z.DecBinary() - _ = yym4146 + yym4195 := z.DecBinary() + _ = yym4195 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4147 := r.ContainerType() - if yyct4147 == codecSelferValueTypeMap1234 { - yyl4147 := r.ReadMapStart() - if yyl4147 == 0 { + yyct4196 := r.ContainerType() + if yyct4196 == codecSelferValueTypeMap1234 { + yyl4196 := r.ReadMapStart() + if yyl4196 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4147, d) + x.codecDecodeSelfFromMap(yyl4196, d) } - } else if yyct4147 == codecSelferValueTypeArray1234 { - yyl4147 := r.ReadArrayStart() - if yyl4147 == 0 { + } else if yyct4196 == codecSelferValueTypeArray1234 { + yyl4196 := r.ReadArrayStart() + if yyl4196 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4147, d) + x.codecDecodeSelfFromArray(yyl4196, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51933,12 +52470,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4148Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4148Slc - var yyhl4148 bool = l >= 0 - for yyj4148 := 0; ; yyj4148++ { - if yyhl4148 { - if yyj4148 >= l { + var yys4197Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4197Slc + var yyhl4197 bool = l >= 0 + for yyj4197 := 0; ; yyj4197++ { + if yyhl4197 { + if yyj4197 >= l { break } } else { @@ -51947,10 +52484,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4148Slc = r.DecodeBytes(yys4148Slc, true, true) - yys4148 := string(yys4148Slc) + yys4197Slc = r.DecodeBytes(yys4197Slc, true, true) + yys4197 := string(yys4197Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4148 { + switch yys4197 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51967,31 +52504,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4151 := &x.ListMeta - yym4152 := z.DecBinary() - _ = yym4152 + yyv4200 := &x.ListMeta + yym4201 := z.DecBinary() + _ = yym4201 if false { - } else if z.HasExtensions() && z.DecExt(yyv4151) { + } else if z.HasExtensions() && z.DecExt(yyv4200) { } else { - z.DecFallback(yyv4151, false) + z.DecFallback(yyv4200, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4153 := &x.Items - yym4154 := z.DecBinary() - _ = yym4154 + yyv4202 := &x.Items + yym4203 := z.DecBinary() + _ = yym4203 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4153), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4202), d) } } default: - z.DecStructFieldNotFound(-1, yys4148) - } // end switch yys4148 - } // end for yyj4148 + z.DecStructFieldNotFound(-1, yys4197) + } // end switch yys4197 + } // end for yyj4197 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51999,16 +52536,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4155 int - var yyb4155 bool - var yyhl4155 bool = l >= 0 - yyj4155++ - if yyhl4155 { - yyb4155 = yyj4155 > l + var yyj4204 int + var yyb4204 bool + var yyhl4204 bool = l >= 0 + yyj4204++ + if yyhl4204 { + yyb4204 = yyj4204 > l } else { - yyb4155 = r.CheckBreak() + yyb4204 = r.CheckBreak() } - if yyb4155 { + if yyb4204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52018,13 +52555,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj4155++ - if yyhl4155 { - yyb4155 = yyj4155 > l + yyj4204++ + if yyhl4204 { + yyb4204 = yyj4204 > l } else { - yyb4155 = r.CheckBreak() + yyb4204 = r.CheckBreak() } - if yyb4155 { + if yyb4204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52034,13 +52571,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj4155++ - if yyhl4155 { - yyb4155 = yyj4155 > l + yyj4204++ + if yyhl4204 { + yyb4204 = yyj4204 > l } else { - yyb4155 = r.CheckBreak() + yyb4204 = r.CheckBreak() } - if yyb4155 { + if yyb4204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52048,22 +52585,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4158 := &x.ListMeta - yym4159 := z.DecBinary() - _ = yym4159 + yyv4207 := &x.ListMeta + yym4208 := z.DecBinary() + _ = yym4208 if false { - } else if z.HasExtensions() && z.DecExt(yyv4158) { + } else if z.HasExtensions() && z.DecExt(yyv4207) { } else { - z.DecFallback(yyv4158, false) + z.DecFallback(yyv4207, false) } } - yyj4155++ - if yyhl4155 { - yyb4155 = yyj4155 > l + yyj4204++ + if yyhl4204 { + yyb4204 = yyj4204 > l } else { - yyb4155 = r.CheckBreak() + yyb4204 = r.CheckBreak() } - if yyb4155 { + if yyb4204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52071,26 +52608,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4160 := &x.Items - yym4161 := z.DecBinary() - _ = yym4161 + yyv4209 := &x.Items + yym4210 := z.DecBinary() + _ = yym4210 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4160), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4209), d) } } for { - yyj4155++ - if yyhl4155 { - yyb4155 = yyj4155 > l + yyj4204++ + if yyhl4204 { + yyb4204 = yyj4204 > l } else { - yyb4155 = r.CheckBreak() + yyb4204 = r.CheckBreak() } - if yyb4155 { + if yyb4204 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4155-1, "") + z.DecStructFieldNotFound(yyj4204-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52102,40 +52639,40 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4162 := z.EncBinary() - _ = yym4162 + yym4211 := z.EncBinary() + _ = yym4211 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4163 := !z.EncBinary() - yy2arr4163 := z.EncBasicHandle().StructToArray - var yyq4163 [6]bool - _, _, _ = yysep4163, yyq4163, yy2arr4163 - const yyr4163 bool = false - yyq4163[0] = x.Kind != "" - yyq4163[1] = x.APIVersion != "" - yyq4163[2] = true - yyq4163[3] = len(x.Data) != 0 - yyq4163[4] = len(x.StringData) != 0 - yyq4163[5] = x.Type != "" - var yynn4163 int - if yyr4163 || yy2arr4163 { + yysep4212 := !z.EncBinary() + yy2arr4212 := z.EncBasicHandle().StructToArray + var yyq4212 [6]bool + _, _, _ = yysep4212, yyq4212, yy2arr4212 + const yyr4212 bool = false + yyq4212[0] = x.Kind != "" + yyq4212[1] = x.APIVersion != "" + yyq4212[2] = true + yyq4212[3] = len(x.Data) != 0 + yyq4212[4] = len(x.StringData) != 0 + yyq4212[5] = x.Type != "" + var yynn4212 int + if yyr4212 || yy2arr4212 { r.EncodeArrayStart(6) } else { - yynn4163 = 0 - for _, b := range yyq4163 { + yynn4212 = 0 + for _, b := range yyq4212 { if b { - yynn4163++ + yynn4212++ } } - r.EncodeMapStart(yynn4163) - yynn4163 = 0 + r.EncodeMapStart(yynn4212) + yynn4212 = 0 } - if yyr4163 || yy2arr4163 { + if yyr4212 || yy2arr4212 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4163[0] { - yym4165 := z.EncBinary() - _ = yym4165 + if yyq4212[0] { + yym4214 := z.EncBinary() + _ = yym4214 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52144,23 +52681,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4163[0] { + if yyq4212[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4166 := z.EncBinary() - _ = yym4166 + yym4215 := z.EncBinary() + _ = yym4215 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4163 || yy2arr4163 { + if yyr4212 || yy2arr4212 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4163[1] { - yym4168 := z.EncBinary() - _ = yym4168 + if yyq4212[1] { + yym4217 := z.EncBinary() + _ = yym4217 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52169,43 +52706,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4163[1] { + if yyq4212[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4169 := z.EncBinary() - _ = yym4169 + yym4218 := z.EncBinary() + _ = yym4218 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4163 || yy2arr4163 { + if yyr4212 || yy2arr4212 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4163[2] { - yy4171 := &x.ObjectMeta - yy4171.CodecEncodeSelf(e) + if yyq4212[2] { + yy4220 := &x.ObjectMeta + yy4220.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4163[2] { + if yyq4212[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4172 := &x.ObjectMeta - yy4172.CodecEncodeSelf(e) + yy4221 := &x.ObjectMeta + yy4221.CodecEncodeSelf(e) } } - if yyr4163 || yy2arr4163 { + if yyr4212 || yy2arr4212 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4163[3] { + if yyq4212[3] { if x.Data == nil { r.EncodeNil() } else { - yym4174 := z.EncBinary() - _ = yym4174 + yym4223 := z.EncBinary() + _ = yym4223 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -52215,15 +52752,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4163[3] { + if yyq4212[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4175 := z.EncBinary() - _ = yym4175 + yym4224 := z.EncBinary() + _ = yym4224 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -52231,14 +52768,14 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4163 || yy2arr4163 { + if yyr4212 || yy2arr4212 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4163[4] { + if yyq4212[4] { if x.StringData == nil { r.EncodeNil() } else { - yym4177 := z.EncBinary() - _ = yym4177 + yym4226 := z.EncBinary() + _ = yym4226 if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) @@ -52248,15 +52785,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4163[4] { + if yyq4212[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stringData")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StringData == nil { r.EncodeNil() } else { - yym4178 := z.EncBinary() - _ = yym4178 + yym4227 := z.EncBinary() + _ = yym4227 if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) @@ -52264,22 +52801,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4163 || yy2arr4163 { + if yyr4212 || yy2arr4212 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4163[5] { + if yyq4212[5] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4163[5] { + if yyq4212[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4163 || yy2arr4163 { + if yyr4212 || yy2arr4212 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52292,25 +52829,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4180 := z.DecBinary() - _ = yym4180 + yym4229 := z.DecBinary() + _ = yym4229 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4181 := r.ContainerType() - if yyct4181 == codecSelferValueTypeMap1234 { - yyl4181 := r.ReadMapStart() - if yyl4181 == 0 { + yyct4230 := r.ContainerType() + if yyct4230 == codecSelferValueTypeMap1234 { + yyl4230 := r.ReadMapStart() + if yyl4230 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4181, d) + x.codecDecodeSelfFromMap(yyl4230, d) } - } else if yyct4181 == codecSelferValueTypeArray1234 { - yyl4181 := r.ReadArrayStart() - if yyl4181 == 0 { + } else if yyct4230 == codecSelferValueTypeArray1234 { + yyl4230 := r.ReadArrayStart() + if yyl4230 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4181, d) + x.codecDecodeSelfFromArray(yyl4230, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52322,12 +52859,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4182Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4182Slc - var yyhl4182 bool = l >= 0 - for yyj4182 := 0; ; yyj4182++ { - if yyhl4182 { - if yyj4182 >= l { + var yys4231Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4231Slc + var yyhl4231 bool = l >= 0 + for yyj4231 := 0; ; yyj4231++ { + if yyhl4231 { + if yyj4231 >= l { break } } else { @@ -52336,10 +52873,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4182Slc = r.DecodeBytes(yys4182Slc, true, true) - yys4182 := string(yys4182Slc) + yys4231Slc = r.DecodeBytes(yys4231Slc, true, true) + yys4231 := string(yys4231Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4182 { + switch yys4231 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52356,31 +52893,31 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4185 := &x.ObjectMeta - yyv4185.CodecDecodeSelf(d) + yyv4234 := &x.ObjectMeta + yyv4234.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4186 := &x.Data - yym4187 := z.DecBinary() - _ = yym4187 + yyv4235 := &x.Data + yym4236 := z.DecBinary() + _ = yym4236 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4186), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4235), d) } } case "stringData": if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4188 := &x.StringData - yym4189 := z.DecBinary() - _ = yym4189 + yyv4237 := &x.StringData + yym4238 := z.DecBinary() + _ = yym4238 if false { } else { - z.F.DecMapStringStringX(yyv4188, false, d) + z.F.DecMapStringStringX(yyv4237, false, d) } } case "type": @@ -52390,9 +52927,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4182) - } // end switch yys4182 - } // end for yyj4182 + z.DecStructFieldNotFound(-1, yys4231) + } // end switch yys4231 + } // end for yyj4231 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52400,16 +52937,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4191 int - var yyb4191 bool - var yyhl4191 bool = l >= 0 - yyj4191++ - if yyhl4191 { - yyb4191 = yyj4191 > l + var yyj4240 int + var yyb4240 bool + var yyhl4240 bool = l >= 0 + yyj4240++ + if yyhl4240 { + yyb4240 = yyj4240 > l } else { - yyb4191 = r.CheckBreak() + yyb4240 = r.CheckBreak() } - if yyb4191 { + if yyb4240 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52419,13 +52956,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4191++ - if yyhl4191 { - yyb4191 = yyj4191 > l + yyj4240++ + if yyhl4240 { + yyb4240 = yyj4240 > l } else { - yyb4191 = r.CheckBreak() + yyb4240 = r.CheckBreak() } - if yyb4191 { + if yyb4240 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52435,13 +52972,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4191++ - if yyhl4191 { - yyb4191 = yyj4191 > l + yyj4240++ + if yyhl4240 { + yyb4240 = yyj4240 > l } else { - yyb4191 = r.CheckBreak() + yyb4240 = r.CheckBreak() } - if yyb4191 { + if yyb4240 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52449,16 +52986,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4194 := &x.ObjectMeta - yyv4194.CodecDecodeSelf(d) + yyv4243 := &x.ObjectMeta + yyv4243.CodecDecodeSelf(d) } - yyj4191++ - if yyhl4191 { - yyb4191 = yyj4191 > l + yyj4240++ + if yyhl4240 { + yyb4240 = yyj4240 > l } else { - yyb4191 = r.CheckBreak() + yyb4240 = r.CheckBreak() } - if yyb4191 { + if yyb4240 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52466,21 +53003,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4195 := &x.Data - yym4196 := z.DecBinary() - _ = yym4196 + yyv4244 := &x.Data + yym4245 := z.DecBinary() + _ = yym4245 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4195), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4244), d) } } - yyj4191++ - if yyhl4191 { - yyb4191 = yyj4191 > l + yyj4240++ + if yyhl4240 { + yyb4240 = yyj4240 > l } else { - yyb4191 = r.CheckBreak() + yyb4240 = r.CheckBreak() } - if yyb4191 { + if yyb4240 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52488,21 +53025,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4197 := &x.StringData - yym4198 := z.DecBinary() - _ = yym4198 + yyv4246 := &x.StringData + yym4247 := z.DecBinary() + _ = yym4247 if false { } else { - z.F.DecMapStringStringX(yyv4197, false, d) + z.F.DecMapStringStringX(yyv4246, false, d) } } - yyj4191++ - if yyhl4191 { - yyb4191 = yyj4191 > l + yyj4240++ + if yyhl4240 { + yyb4240 = yyj4240 > l } else { - yyb4191 = r.CheckBreak() + yyb4240 = r.CheckBreak() } - if yyb4191 { + if yyb4240 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52513,17 +53050,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj4191++ - if yyhl4191 { - yyb4191 = yyj4191 > l + yyj4240++ + if yyhl4240 { + yyb4240 = yyj4240 > l } else { - yyb4191 = r.CheckBreak() + yyb4240 = r.CheckBreak() } - if yyb4191 { + if yyb4240 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4191-1, "") + z.DecStructFieldNotFound(yyj4240-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52532,8 +53069,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4200 := z.EncBinary() - _ = yym4200 + yym4249 := z.EncBinary() + _ = yym4249 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -52545,8 +53082,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4201 := z.DecBinary() - _ = yym4201 + yym4250 := z.DecBinary() + _ = yym4250 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -52561,37 +53098,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4202 := z.EncBinary() - _ = yym4202 + yym4251 := z.EncBinary() + _ = yym4251 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4203 := !z.EncBinary() - yy2arr4203 := z.EncBasicHandle().StructToArray - var yyq4203 [4]bool - _, _, _ = yysep4203, yyq4203, yy2arr4203 - const yyr4203 bool = false - yyq4203[0] = x.Kind != "" - yyq4203[1] = x.APIVersion != "" - yyq4203[2] = true - var yynn4203 int - if yyr4203 || yy2arr4203 { + yysep4252 := !z.EncBinary() + yy2arr4252 := z.EncBasicHandle().StructToArray + var yyq4252 [4]bool + _, _, _ = yysep4252, yyq4252, yy2arr4252 + const yyr4252 bool = false + yyq4252[0] = x.Kind != "" + yyq4252[1] = x.APIVersion != "" + yyq4252[2] = true + var yynn4252 int + if yyr4252 || yy2arr4252 { r.EncodeArrayStart(4) } else { - yynn4203 = 1 - for _, b := range yyq4203 { + yynn4252 = 1 + for _, b := range yyq4252 { if b { - yynn4203++ + yynn4252++ } } - r.EncodeMapStart(yynn4203) - yynn4203 = 0 + r.EncodeMapStart(yynn4252) + yynn4252 = 0 } - if yyr4203 || yy2arr4203 { + if yyr4252 || yy2arr4252 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4203[0] { - yym4205 := z.EncBinary() - _ = yym4205 + if yyq4252[0] { + yym4254 := z.EncBinary() + _ = yym4254 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52600,23 +53137,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4203[0] { + if yyq4252[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4206 := z.EncBinary() - _ = yym4206 + yym4255 := z.EncBinary() + _ = yym4255 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4203 || yy2arr4203 { + if yyr4252 || yy2arr4252 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4203[1] { - yym4208 := z.EncBinary() - _ = yym4208 + if yyq4252[1] { + yym4257 := z.EncBinary() + _ = yym4257 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52625,54 +53162,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4203[1] { + if yyq4252[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4209 := z.EncBinary() - _ = yym4209 + yym4258 := z.EncBinary() + _ = yym4258 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4203 || yy2arr4203 { + if yyr4252 || yy2arr4252 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4203[2] { - yy4211 := &x.ListMeta - yym4212 := z.EncBinary() - _ = yym4212 + if yyq4252[2] { + yy4260 := &x.ListMeta + yym4261 := z.EncBinary() + _ = yym4261 if false { - } else if z.HasExtensions() && z.EncExt(yy4211) { + } else if z.HasExtensions() && z.EncExt(yy4260) { } else { - z.EncFallback(yy4211) + z.EncFallback(yy4260) } } else { r.EncodeNil() } } else { - if yyq4203[2] { + if yyq4252[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4213 := &x.ListMeta - yym4214 := z.EncBinary() - _ = yym4214 + yy4262 := &x.ListMeta + yym4263 := z.EncBinary() + _ = yym4263 if false { - } else if z.HasExtensions() && z.EncExt(yy4213) { + } else if z.HasExtensions() && z.EncExt(yy4262) { } else { - z.EncFallback(yy4213) + z.EncFallback(yy4262) } } } - if yyr4203 || yy2arr4203 { + if yyr4252 || yy2arr4252 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4216 := z.EncBinary() - _ = yym4216 + yym4265 := z.EncBinary() + _ = yym4265 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -52685,15 +53222,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4217 := z.EncBinary() - _ = yym4217 + yym4266 := z.EncBinary() + _ = yym4266 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4203 || yy2arr4203 { + if yyr4252 || yy2arr4252 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52706,25 +53243,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4218 := z.DecBinary() - _ = yym4218 + yym4267 := z.DecBinary() + _ = yym4267 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4219 := r.ContainerType() - if yyct4219 == codecSelferValueTypeMap1234 { - yyl4219 := r.ReadMapStart() - if yyl4219 == 0 { + yyct4268 := r.ContainerType() + if yyct4268 == codecSelferValueTypeMap1234 { + yyl4268 := r.ReadMapStart() + if yyl4268 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4219, d) + x.codecDecodeSelfFromMap(yyl4268, d) } - } else if yyct4219 == codecSelferValueTypeArray1234 { - yyl4219 := r.ReadArrayStart() - if yyl4219 == 0 { + } else if yyct4268 == codecSelferValueTypeArray1234 { + yyl4268 := r.ReadArrayStart() + if yyl4268 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4219, d) + x.codecDecodeSelfFromArray(yyl4268, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52736,12 +53273,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4220Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4220Slc - var yyhl4220 bool = l >= 0 - for yyj4220 := 0; ; yyj4220++ { - if yyhl4220 { - if yyj4220 >= 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 { @@ -52750,10 +53287,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4220Slc = r.DecodeBytes(yys4220Slc, true, true) - yys4220 := string(yys4220Slc) + yys4269Slc = r.DecodeBytes(yys4269Slc, true, true) + yys4269 := string(yys4269Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4220 { + switch yys4269 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52770,31 +53307,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4223 := &x.ListMeta - yym4224 := z.DecBinary() - _ = yym4224 + yyv4272 := &x.ListMeta + yym4273 := z.DecBinary() + _ = yym4273 if false { - } else if z.HasExtensions() && z.DecExt(yyv4223) { + } else if z.HasExtensions() && z.DecExt(yyv4272) { } else { - z.DecFallback(yyv4223, false) + z.DecFallback(yyv4272, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4225 := &x.Items - yym4226 := z.DecBinary() - _ = yym4226 + yyv4274 := &x.Items + yym4275 := z.DecBinary() + _ = yym4275 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4225), d) + h.decSliceSecret((*[]Secret)(yyv4274), d) } } default: - z.DecStructFieldNotFound(-1, yys4220) - } // end switch yys4220 - } // end for yyj4220 + z.DecStructFieldNotFound(-1, yys4269) + } // end switch yys4269 + } // end for yyj4269 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52802,16 +53339,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4227 int - var yyb4227 bool - var yyhl4227 bool = l >= 0 - yyj4227++ - if yyhl4227 { - yyb4227 = yyj4227 > l + var yyj4276 int + var yyb4276 bool + var yyhl4276 bool = l >= 0 + yyj4276++ + if yyhl4276 { + yyb4276 = yyj4276 > l } else { - yyb4227 = r.CheckBreak() + yyb4276 = r.CheckBreak() } - if yyb4227 { + if yyb4276 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52821,13 +53358,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4227++ - if yyhl4227 { - yyb4227 = yyj4227 > l + yyj4276++ + if yyhl4276 { + yyb4276 = yyj4276 > l } else { - yyb4227 = r.CheckBreak() + yyb4276 = r.CheckBreak() } - if yyb4227 { + if yyb4276 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52837,13 +53374,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4227++ - if yyhl4227 { - yyb4227 = yyj4227 > l + yyj4276++ + if yyhl4276 { + yyb4276 = yyj4276 > l } else { - yyb4227 = r.CheckBreak() + yyb4276 = r.CheckBreak() } - if yyb4227 { + if yyb4276 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52851,22 +53388,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4230 := &x.ListMeta - yym4231 := z.DecBinary() - _ = yym4231 + yyv4279 := &x.ListMeta + yym4280 := z.DecBinary() + _ = yym4280 if false { - } else if z.HasExtensions() && z.DecExt(yyv4230) { + } else if z.HasExtensions() && z.DecExt(yyv4279) { } else { - z.DecFallback(yyv4230, false) + z.DecFallback(yyv4279, false) } } - yyj4227++ - if yyhl4227 { - yyb4227 = yyj4227 > l + yyj4276++ + if yyhl4276 { + yyb4276 = yyj4276 > l } else { - yyb4227 = r.CheckBreak() + yyb4276 = r.CheckBreak() } - if yyb4227 { + if yyb4276 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52874,26 +53411,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4232 := &x.Items - yym4233 := z.DecBinary() - _ = yym4233 + yyv4281 := &x.Items + yym4282 := z.DecBinary() + _ = yym4282 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4232), d) + h.decSliceSecret((*[]Secret)(yyv4281), d) } } for { - yyj4227++ - if yyhl4227 { - yyb4227 = yyj4227 > l + yyj4276++ + if yyhl4276 { + yyb4276 = yyj4276 > l } else { - yyb4227 = r.CheckBreak() + yyb4276 = r.CheckBreak() } - if yyb4227 { + if yyb4276 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4227-1, "") + z.DecStructFieldNotFound(yyj4276-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52905,38 +53442,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4234 := z.EncBinary() - _ = yym4234 + yym4283 := z.EncBinary() + _ = yym4283 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4235 := !z.EncBinary() - yy2arr4235 := z.EncBasicHandle().StructToArray - var yyq4235 [4]bool - _, _, _ = yysep4235, yyq4235, yy2arr4235 - const yyr4235 bool = false - yyq4235[0] = x.Kind != "" - yyq4235[1] = x.APIVersion != "" - yyq4235[2] = true - yyq4235[3] = len(x.Data) != 0 - var yynn4235 int - if yyr4235 || yy2arr4235 { + yysep4284 := !z.EncBinary() + yy2arr4284 := z.EncBasicHandle().StructToArray + var yyq4284 [4]bool + _, _, _ = yysep4284, yyq4284, yy2arr4284 + const yyr4284 bool = false + yyq4284[0] = x.Kind != "" + yyq4284[1] = x.APIVersion != "" + yyq4284[2] = true + yyq4284[3] = len(x.Data) != 0 + var yynn4284 int + if yyr4284 || yy2arr4284 { r.EncodeArrayStart(4) } else { - yynn4235 = 0 - for _, b := range yyq4235 { + yynn4284 = 0 + for _, b := range yyq4284 { if b { - yynn4235++ + yynn4284++ } } - r.EncodeMapStart(yynn4235) - yynn4235 = 0 + r.EncodeMapStart(yynn4284) + yynn4284 = 0 } - if yyr4235 || yy2arr4235 { + if yyr4284 || yy2arr4284 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4235[0] { - yym4237 := z.EncBinary() - _ = yym4237 + if yyq4284[0] { + yym4286 := z.EncBinary() + _ = yym4286 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52945,23 +53482,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4235[0] { + if yyq4284[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4238 := z.EncBinary() - _ = yym4238 + yym4287 := z.EncBinary() + _ = yym4287 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4235 || yy2arr4235 { + if yyr4284 || yy2arr4284 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4235[1] { - yym4240 := z.EncBinary() - _ = yym4240 + if yyq4284[1] { + yym4289 := z.EncBinary() + _ = yym4289 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52970,43 +53507,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4235[1] { + if yyq4284[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4241 := z.EncBinary() - _ = yym4241 + yym4290 := z.EncBinary() + _ = yym4290 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4235 || yy2arr4235 { + if yyr4284 || yy2arr4284 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4235[2] { - yy4243 := &x.ObjectMeta - yy4243.CodecEncodeSelf(e) + if yyq4284[2] { + yy4292 := &x.ObjectMeta + yy4292.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4235[2] { + if yyq4284[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4244 := &x.ObjectMeta - yy4244.CodecEncodeSelf(e) + yy4293 := &x.ObjectMeta + yy4293.CodecEncodeSelf(e) } } - if yyr4235 || yy2arr4235 { + if yyr4284 || yy2arr4284 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4235[3] { + if yyq4284[3] { if x.Data == nil { r.EncodeNil() } else { - yym4246 := z.EncBinary() - _ = yym4246 + yym4295 := z.EncBinary() + _ = yym4295 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -53016,15 +53553,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4235[3] { + if yyq4284[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4247 := z.EncBinary() - _ = yym4247 + yym4296 := z.EncBinary() + _ = yym4296 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -53032,7 +53569,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4235 || yy2arr4235 { + if yyr4284 || yy2arr4284 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53045,25 +53582,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4248 := z.DecBinary() - _ = yym4248 + yym4297 := z.DecBinary() + _ = yym4297 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4249 := r.ContainerType() - if yyct4249 == codecSelferValueTypeMap1234 { - yyl4249 := r.ReadMapStart() - if yyl4249 == 0 { + yyct4298 := r.ContainerType() + if yyct4298 == codecSelferValueTypeMap1234 { + yyl4298 := r.ReadMapStart() + if yyl4298 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4249, d) + x.codecDecodeSelfFromMap(yyl4298, d) } - } else if yyct4249 == codecSelferValueTypeArray1234 { - yyl4249 := r.ReadArrayStart() - if yyl4249 == 0 { + } else if yyct4298 == codecSelferValueTypeArray1234 { + yyl4298 := r.ReadArrayStart() + if yyl4298 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4249, d) + x.codecDecodeSelfFromArray(yyl4298, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53075,12 +53612,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4250Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4250Slc - var yyhl4250 bool = l >= 0 - for yyj4250 := 0; ; yyj4250++ { - if yyhl4250 { - if yyj4250 >= l { + var yys4299Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4299Slc + var yyhl4299 bool = l >= 0 + for yyj4299 := 0; ; yyj4299++ { + if yyhl4299 { + if yyj4299 >= l { break } } else { @@ -53089,10 +53626,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4250Slc = r.DecodeBytes(yys4250Slc, true, true) - yys4250 := string(yys4250Slc) + yys4299Slc = r.DecodeBytes(yys4299Slc, true, true) + yys4299 := string(yys4299Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4250 { + switch yys4299 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53109,25 +53646,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4253 := &x.ObjectMeta - yyv4253.CodecDecodeSelf(d) + yyv4302 := &x.ObjectMeta + yyv4302.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4254 := &x.Data - yym4255 := z.DecBinary() - _ = yym4255 + yyv4303 := &x.Data + yym4304 := z.DecBinary() + _ = yym4304 if false { } else { - z.F.DecMapStringStringX(yyv4254, false, d) + z.F.DecMapStringStringX(yyv4303, false, d) } } default: - z.DecStructFieldNotFound(-1, yys4250) - } // end switch yys4250 - } // end for yyj4250 + z.DecStructFieldNotFound(-1, yys4299) + } // end switch yys4299 + } // end for yyj4299 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53135,16 +53672,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4256 int - var yyb4256 bool - var yyhl4256 bool = l >= 0 - yyj4256++ - if yyhl4256 { - yyb4256 = yyj4256 > l + var yyj4305 int + var yyb4305 bool + var yyhl4305 bool = l >= 0 + yyj4305++ + if yyhl4305 { + yyb4305 = yyj4305 > l } else { - yyb4256 = r.CheckBreak() + yyb4305 = r.CheckBreak() } - if yyb4256 { + if yyb4305 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53154,13 +53691,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4256++ - if yyhl4256 { - yyb4256 = yyj4256 > l + yyj4305++ + if yyhl4305 { + yyb4305 = yyj4305 > l } else { - yyb4256 = r.CheckBreak() + yyb4305 = r.CheckBreak() } - if yyb4256 { + if yyb4305 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53170,13 +53707,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4256++ - if yyhl4256 { - yyb4256 = yyj4256 > l + yyj4305++ + if yyhl4305 { + yyb4305 = yyj4305 > l } else { - yyb4256 = r.CheckBreak() + yyb4305 = r.CheckBreak() } - if yyb4256 { + if yyb4305 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53184,16 +53721,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4259 := &x.ObjectMeta - yyv4259.CodecDecodeSelf(d) + yyv4308 := &x.ObjectMeta + yyv4308.CodecDecodeSelf(d) } - yyj4256++ - if yyhl4256 { - yyb4256 = yyj4256 > l + yyj4305++ + if yyhl4305 { + yyb4305 = yyj4305 > l } else { - yyb4256 = r.CheckBreak() + yyb4305 = r.CheckBreak() } - if yyb4256 { + if yyb4305 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53201,26 +53738,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4260 := &x.Data - yym4261 := z.DecBinary() - _ = yym4261 + yyv4309 := &x.Data + yym4310 := z.DecBinary() + _ = yym4310 if false { } else { - z.F.DecMapStringStringX(yyv4260, false, d) + z.F.DecMapStringStringX(yyv4309, false, d) } } for { - yyj4256++ - if yyhl4256 { - yyb4256 = yyj4256 > l + yyj4305++ + if yyhl4305 { + yyb4305 = yyj4305 > l } else { - yyb4256 = r.CheckBreak() + yyb4305 = r.CheckBreak() } - if yyb4256 { + if yyb4305 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4256-1, "") + z.DecStructFieldNotFound(yyj4305-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53232,37 +53769,37 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4262 := z.EncBinary() - _ = yym4262 + yym4311 := z.EncBinary() + _ = yym4311 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4263 := !z.EncBinary() - yy2arr4263 := z.EncBasicHandle().StructToArray - var yyq4263 [4]bool - _, _, _ = yysep4263, yyq4263, yy2arr4263 - const yyr4263 bool = false - yyq4263[0] = x.Kind != "" - yyq4263[1] = x.APIVersion != "" - yyq4263[2] = true - var yynn4263 int - if yyr4263 || yy2arr4263 { + yysep4312 := !z.EncBinary() + yy2arr4312 := z.EncBasicHandle().StructToArray + var yyq4312 [4]bool + _, _, _ = yysep4312, yyq4312, yy2arr4312 + const yyr4312 bool = false + yyq4312[0] = x.Kind != "" + yyq4312[1] = x.APIVersion != "" + yyq4312[2] = true + var yynn4312 int + if yyr4312 || yy2arr4312 { r.EncodeArrayStart(4) } else { - yynn4263 = 1 - for _, b := range yyq4263 { + yynn4312 = 1 + for _, b := range yyq4312 { if b { - yynn4263++ + yynn4312++ } } - r.EncodeMapStart(yynn4263) - yynn4263 = 0 + r.EncodeMapStart(yynn4312) + yynn4312 = 0 } - if yyr4263 || yy2arr4263 { + if yyr4312 || yy2arr4312 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4263[0] { - yym4265 := z.EncBinary() - _ = yym4265 + if yyq4312[0] { + yym4314 := z.EncBinary() + _ = yym4314 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53271,23 +53808,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4263[0] { + if yyq4312[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4266 := z.EncBinary() - _ = yym4266 + yym4315 := z.EncBinary() + _ = yym4315 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4263 || yy2arr4263 { + if yyr4312 || yy2arr4312 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4263[1] { - yym4268 := z.EncBinary() - _ = yym4268 + if yyq4312[1] { + yym4317 := z.EncBinary() + _ = yym4317 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53296,54 +53833,54 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4263[1] { + if yyq4312[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4269 := z.EncBinary() - _ = yym4269 + yym4318 := z.EncBinary() + _ = yym4318 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4263 || yy2arr4263 { + if yyr4312 || yy2arr4312 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4263[2] { - yy4271 := &x.ListMeta - yym4272 := z.EncBinary() - _ = yym4272 + if yyq4312[2] { + yy4320 := &x.ListMeta + yym4321 := z.EncBinary() + _ = yym4321 if false { - } else if z.HasExtensions() && z.EncExt(yy4271) { + } else if z.HasExtensions() && z.EncExt(yy4320) { } else { - z.EncFallback(yy4271) + z.EncFallback(yy4320) } } else { r.EncodeNil() } } else { - if yyq4263[2] { + if yyq4312[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4273 := &x.ListMeta - yym4274 := z.EncBinary() - _ = yym4274 + yy4322 := &x.ListMeta + yym4323 := z.EncBinary() + _ = yym4323 if false { - } else if z.HasExtensions() && z.EncExt(yy4273) { + } else if z.HasExtensions() && z.EncExt(yy4322) { } else { - z.EncFallback(yy4273) + z.EncFallback(yy4322) } } } - if yyr4263 || yy2arr4263 { + if yyr4312 || yy2arr4312 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4276 := z.EncBinary() - _ = yym4276 + yym4325 := z.EncBinary() + _ = yym4325 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -53356,15 +53893,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4277 := z.EncBinary() - _ = yym4277 + yym4326 := z.EncBinary() + _ = yym4326 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) } } } - if yyr4263 || yy2arr4263 { + if yyr4312 || yy2arr4312 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53377,25 +53914,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4278 := z.DecBinary() - _ = yym4278 + yym4327 := z.DecBinary() + _ = yym4327 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4279 := r.ContainerType() - if yyct4279 == codecSelferValueTypeMap1234 { - yyl4279 := r.ReadMapStart() - if yyl4279 == 0 { + yyct4328 := r.ContainerType() + if yyct4328 == codecSelferValueTypeMap1234 { + yyl4328 := r.ReadMapStart() + if yyl4328 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4279, d) + x.codecDecodeSelfFromMap(yyl4328, d) } - } else if yyct4279 == codecSelferValueTypeArray1234 { - yyl4279 := r.ReadArrayStart() - if yyl4279 == 0 { + } else if yyct4328 == codecSelferValueTypeArray1234 { + yyl4328 := r.ReadArrayStart() + if yyl4328 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4279, d) + x.codecDecodeSelfFromArray(yyl4328, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53407,12 +53944,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4280Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4280Slc - var yyhl4280 bool = l >= 0 - for yyj4280 := 0; ; yyj4280++ { - if yyhl4280 { - if yyj4280 >= l { + var yys4329Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4329Slc + var yyhl4329 bool = l >= 0 + for yyj4329 := 0; ; yyj4329++ { + if yyhl4329 { + if yyj4329 >= l { break } } else { @@ -53421,10 +53958,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4280Slc = r.DecodeBytes(yys4280Slc, true, true) - yys4280 := string(yys4280Slc) + yys4329Slc = r.DecodeBytes(yys4329Slc, true, true) + yys4329 := string(yys4329Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4280 { + switch yys4329 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53441,31 +53978,31 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4283 := &x.ListMeta - yym4284 := z.DecBinary() - _ = yym4284 + yyv4332 := &x.ListMeta + yym4333 := z.DecBinary() + _ = yym4333 if false { - } else if z.HasExtensions() && z.DecExt(yyv4283) { + } else if z.HasExtensions() && z.DecExt(yyv4332) { } else { - z.DecFallback(yyv4283, false) + z.DecFallback(yyv4332, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4285 := &x.Items - yym4286 := z.DecBinary() - _ = yym4286 + yyv4334 := &x.Items + yym4335 := z.DecBinary() + _ = yym4335 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4285), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4334), d) } } default: - z.DecStructFieldNotFound(-1, yys4280) - } // end switch yys4280 - } // end for yyj4280 + z.DecStructFieldNotFound(-1, yys4329) + } // end switch yys4329 + } // end for yyj4329 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53473,16 +54010,16 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4287 int - var yyb4287 bool - var yyhl4287 bool = l >= 0 - yyj4287++ - if yyhl4287 { - yyb4287 = yyj4287 > l + var yyj4336 int + var yyb4336 bool + var yyhl4336 bool = l >= 0 + yyj4336++ + if yyhl4336 { + yyb4336 = yyj4336 > l } else { - yyb4287 = r.CheckBreak() + yyb4336 = r.CheckBreak() } - if yyb4287 { + if yyb4336 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53492,13 +54029,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4287++ - if yyhl4287 { - yyb4287 = yyj4287 > l + yyj4336++ + if yyhl4336 { + yyb4336 = yyj4336 > l } else { - yyb4287 = r.CheckBreak() + yyb4336 = r.CheckBreak() } - if yyb4287 { + if yyb4336 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53508,13 +54045,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4287++ - if yyhl4287 { - yyb4287 = yyj4287 > l + yyj4336++ + if yyhl4336 { + yyb4336 = yyj4336 > l } else { - yyb4287 = r.CheckBreak() + yyb4336 = r.CheckBreak() } - if yyb4287 { + if yyb4336 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53522,22 +54059,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4290 := &x.ListMeta - yym4291 := z.DecBinary() - _ = yym4291 + yyv4339 := &x.ListMeta + yym4340 := z.DecBinary() + _ = yym4340 if false { - } else if z.HasExtensions() && z.DecExt(yyv4290) { + } else if z.HasExtensions() && z.DecExt(yyv4339) { } else { - z.DecFallback(yyv4290, false) + z.DecFallback(yyv4339, false) } } - yyj4287++ - if yyhl4287 { - yyb4287 = yyj4287 > l + yyj4336++ + if yyhl4336 { + yyb4336 = yyj4336 > l } else { - yyb4287 = r.CheckBreak() + yyb4336 = r.CheckBreak() } - if yyb4287 { + if yyb4336 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53545,26 +54082,26 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4292 := &x.Items - yym4293 := z.DecBinary() - _ = yym4293 + yyv4341 := &x.Items + yym4342 := z.DecBinary() + _ = yym4342 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4292), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4341), d) } } for { - yyj4287++ - if yyhl4287 { - yyb4287 = yyj4287 > l + yyj4336++ + if yyhl4336 { + yyb4336 = yyj4336 > l } else { - yyb4287 = r.CheckBreak() + yyb4336 = r.CheckBreak() } - if yyb4287 { + if yyb4336 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4287-1, "") + z.DecStructFieldNotFound(yyj4336-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53573,8 +54110,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4294 := z.EncBinary() - _ = yym4294 + yym4343 := z.EncBinary() + _ = yym4343 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -53586,8 +54123,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4295 := z.DecBinary() - _ = yym4295 + yym4344 := z.DecBinary() + _ = yym4344 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -53602,32 +54139,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4296 := z.EncBinary() - _ = yym4296 + yym4345 := z.EncBinary() + _ = yym4345 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4297 := !z.EncBinary() - yy2arr4297 := z.EncBasicHandle().StructToArray - var yyq4297 [4]bool - _, _, _ = yysep4297, yyq4297, yy2arr4297 - const yyr4297 bool = false - yyq4297[2] = x.Message != "" - yyq4297[3] = x.Error != "" - var yynn4297 int - if yyr4297 || yy2arr4297 { + yysep4346 := !z.EncBinary() + yy2arr4346 := z.EncBasicHandle().StructToArray + var yyq4346 [4]bool + _, _, _ = yysep4346, yyq4346, yy2arr4346 + const yyr4346 bool = false + yyq4346[2] = x.Message != "" + yyq4346[3] = x.Error != "" + var yynn4346 int + if yyr4346 || yy2arr4346 { r.EncodeArrayStart(4) } else { - yynn4297 = 2 - for _, b := range yyq4297 { + yynn4346 = 2 + for _, b := range yyq4346 { if b { - yynn4297++ + yynn4346++ } } - r.EncodeMapStart(yynn4297) - yynn4297 = 0 + r.EncodeMapStart(yynn4346) + yynn4346 = 0 } - if yyr4297 || yy2arr4297 { + if yyr4346 || yy2arr4346 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -53636,7 +54173,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr4297 || yy2arr4297 { + if yyr4346 || yy2arr4346 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -53645,11 +54182,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr4297 || yy2arr4297 { + if yyr4346 || yy2arr4346 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4297[2] { - yym4301 := z.EncBinary() - _ = yym4301 + if yyq4346[2] { + yym4350 := z.EncBinary() + _ = yym4350 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -53658,23 +54195,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4297[2] { + if yyq4346[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4302 := z.EncBinary() - _ = yym4302 + yym4351 := z.EncBinary() + _ = yym4351 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr4297 || yy2arr4297 { + if yyr4346 || yy2arr4346 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4297[3] { - yym4304 := z.EncBinary() - _ = yym4304 + if yyq4346[3] { + yym4353 := z.EncBinary() + _ = yym4353 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -53683,19 +54220,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4297[3] { + if yyq4346[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4305 := z.EncBinary() - _ = yym4305 + yym4354 := z.EncBinary() + _ = yym4354 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr4297 || yy2arr4297 { + if yyr4346 || yy2arr4346 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53708,25 +54245,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4306 := z.DecBinary() - _ = yym4306 + yym4355 := z.DecBinary() + _ = yym4355 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4307 := r.ContainerType() - if yyct4307 == codecSelferValueTypeMap1234 { - yyl4307 := r.ReadMapStart() - if yyl4307 == 0 { + yyct4356 := r.ContainerType() + if yyct4356 == codecSelferValueTypeMap1234 { + yyl4356 := r.ReadMapStart() + if yyl4356 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4307, d) + x.codecDecodeSelfFromMap(yyl4356, d) } - } else if yyct4307 == codecSelferValueTypeArray1234 { - yyl4307 := r.ReadArrayStart() - if yyl4307 == 0 { + } else if yyct4356 == codecSelferValueTypeArray1234 { + yyl4356 := r.ReadArrayStart() + if yyl4356 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4307, d) + x.codecDecodeSelfFromArray(yyl4356, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53738,12 +54275,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4308Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4308Slc - var yyhl4308 bool = l >= 0 - for yyj4308 := 0; ; yyj4308++ { - if yyhl4308 { - if yyj4308 >= l { + var yys4357Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4357Slc + var yyhl4357 bool = l >= 0 + for yyj4357 := 0; ; yyj4357++ { + if yyhl4357 { + if yyj4357 >= l { break } } else { @@ -53752,10 +54289,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4308Slc = r.DecodeBytes(yys4308Slc, true, true) - yys4308 := string(yys4308Slc) + yys4357Slc = r.DecodeBytes(yys4357Slc, true, true) + yys4357 := string(yys4357Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4308 { + switch yys4357 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -53781,9 +54318,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4308) - } // end switch yys4308 - } // end for yyj4308 + z.DecStructFieldNotFound(-1, yys4357) + } // end switch yys4357 + } // end for yyj4357 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53791,16 +54328,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4313 int - var yyb4313 bool - var yyhl4313 bool = l >= 0 - yyj4313++ - if yyhl4313 { - yyb4313 = yyj4313 > l + var yyj4362 int + var yyb4362 bool + var yyhl4362 bool = l >= 0 + yyj4362++ + if yyhl4362 { + yyb4362 = yyj4362 > l } else { - yyb4313 = r.CheckBreak() + yyb4362 = r.CheckBreak() } - if yyb4313 { + if yyb4362 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53810,13 +54347,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj4313++ - if yyhl4313 { - yyb4313 = yyj4313 > l + yyj4362++ + if yyhl4362 { + yyb4362 = yyj4362 > l } else { - yyb4313 = r.CheckBreak() + yyb4362 = r.CheckBreak() } - if yyb4313 { + if yyb4362 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53826,13 +54363,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj4313++ - if yyhl4313 { - yyb4313 = yyj4313 > l + yyj4362++ + if yyhl4362 { + yyb4362 = yyj4362 > l } else { - yyb4313 = r.CheckBreak() + yyb4362 = r.CheckBreak() } - if yyb4313 { + if yyb4362 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53842,13 +54379,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj4313++ - if yyhl4313 { - yyb4313 = yyj4313 > l + yyj4362++ + if yyhl4362 { + yyb4362 = yyj4362 > l } else { - yyb4313 = r.CheckBreak() + yyb4362 = r.CheckBreak() } - if yyb4313 { + if yyb4362 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53859,17 +54396,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj4313++ - if yyhl4313 { - yyb4313 = yyj4313 > l + yyj4362++ + if yyhl4362 { + yyb4362 = yyj4362 > l } else { - yyb4313 = r.CheckBreak() + yyb4362 = r.CheckBreak() } - if yyb4313 { + if yyb4362 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4313-1, "") + z.DecStructFieldNotFound(yyj4362-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53881,38 +54418,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4318 := z.EncBinary() - _ = yym4318 + yym4367 := z.EncBinary() + _ = yym4367 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4319 := !z.EncBinary() - yy2arr4319 := z.EncBasicHandle().StructToArray - var yyq4319 [4]bool - _, _, _ = yysep4319, yyq4319, yy2arr4319 - const yyr4319 bool = false - yyq4319[0] = x.Kind != "" - yyq4319[1] = x.APIVersion != "" - yyq4319[2] = true - yyq4319[3] = len(x.Conditions) != 0 - var yynn4319 int - if yyr4319 || yy2arr4319 { + yysep4368 := !z.EncBinary() + yy2arr4368 := z.EncBasicHandle().StructToArray + var yyq4368 [4]bool + _, _, _ = yysep4368, yyq4368, yy2arr4368 + const yyr4368 bool = false + yyq4368[0] = x.Kind != "" + yyq4368[1] = x.APIVersion != "" + yyq4368[2] = true + yyq4368[3] = len(x.Conditions) != 0 + var yynn4368 int + if yyr4368 || yy2arr4368 { r.EncodeArrayStart(4) } else { - yynn4319 = 0 - for _, b := range yyq4319 { + yynn4368 = 0 + for _, b := range yyq4368 { if b { - yynn4319++ + yynn4368++ } } - r.EncodeMapStart(yynn4319) - yynn4319 = 0 + r.EncodeMapStart(yynn4368) + yynn4368 = 0 } - if yyr4319 || yy2arr4319 { + if yyr4368 || yy2arr4368 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4319[0] { - yym4321 := z.EncBinary() - _ = yym4321 + if yyq4368[0] { + yym4370 := z.EncBinary() + _ = yym4370 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53921,23 +54458,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4319[0] { + if yyq4368[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4322 := z.EncBinary() - _ = yym4322 + yym4371 := z.EncBinary() + _ = yym4371 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4319 || yy2arr4319 { + if yyr4368 || yy2arr4368 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4319[1] { - yym4324 := z.EncBinary() - _ = yym4324 + if yyq4368[1] { + yym4373 := z.EncBinary() + _ = yym4373 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53946,43 +54483,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4319[1] { + if yyq4368[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4325 := z.EncBinary() - _ = yym4325 + yym4374 := z.EncBinary() + _ = yym4374 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4319 || yy2arr4319 { + if yyr4368 || yy2arr4368 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4319[2] { - yy4327 := &x.ObjectMeta - yy4327.CodecEncodeSelf(e) + if yyq4368[2] { + yy4376 := &x.ObjectMeta + yy4376.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4319[2] { + if yyq4368[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4328 := &x.ObjectMeta - yy4328.CodecEncodeSelf(e) + yy4377 := &x.ObjectMeta + yy4377.CodecEncodeSelf(e) } } - if yyr4319 || yy2arr4319 { + if yyr4368 || yy2arr4368 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4319[3] { + if yyq4368[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym4330 := z.EncBinary() - _ = yym4330 + yym4379 := z.EncBinary() + _ = yym4379 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -53992,15 +54529,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4319[3] { + if yyq4368[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym4331 := z.EncBinary() - _ = yym4331 + yym4380 := z.EncBinary() + _ = yym4380 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -54008,7 +54545,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4319 || yy2arr4319 { + if yyr4368 || yy2arr4368 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54021,25 +54558,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4332 := z.DecBinary() - _ = yym4332 + yym4381 := z.DecBinary() + _ = yym4381 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4333 := r.ContainerType() - if yyct4333 == codecSelferValueTypeMap1234 { - yyl4333 := r.ReadMapStart() - if yyl4333 == 0 { + yyct4382 := r.ContainerType() + if yyct4382 == codecSelferValueTypeMap1234 { + yyl4382 := r.ReadMapStart() + if yyl4382 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4333, d) + x.codecDecodeSelfFromMap(yyl4382, d) } - } else if yyct4333 == codecSelferValueTypeArray1234 { - yyl4333 := r.ReadArrayStart() - if yyl4333 == 0 { + } else if yyct4382 == codecSelferValueTypeArray1234 { + yyl4382 := r.ReadArrayStart() + if yyl4382 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4333, d) + x.codecDecodeSelfFromArray(yyl4382, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54051,12 +54588,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4334Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4334Slc - var yyhl4334 bool = l >= 0 - for yyj4334 := 0; ; yyj4334++ { - if yyhl4334 { - if yyj4334 >= l { + var yys4383Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4383Slc + var yyhl4383 bool = l >= 0 + for yyj4383 := 0; ; yyj4383++ { + if yyhl4383 { + if yyj4383 >= l { break } } else { @@ -54065,10 +54602,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4334Slc = r.DecodeBytes(yys4334Slc, true, true) - yys4334 := string(yys4334Slc) + yys4383Slc = r.DecodeBytes(yys4383Slc, true, true) + yys4383 := string(yys4383Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4334 { + switch yys4383 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54085,25 +54622,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4337 := &x.ObjectMeta - yyv4337.CodecDecodeSelf(d) + yyv4386 := &x.ObjectMeta + yyv4386.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4338 := &x.Conditions - yym4339 := z.DecBinary() - _ = yym4339 + yyv4387 := &x.Conditions + yym4388 := z.DecBinary() + _ = yym4388 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4338), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4387), d) } } default: - z.DecStructFieldNotFound(-1, yys4334) - } // end switch yys4334 - } // end for yyj4334 + z.DecStructFieldNotFound(-1, yys4383) + } // end switch yys4383 + } // end for yyj4383 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54111,16 +54648,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4340 int - var yyb4340 bool - var yyhl4340 bool = l >= 0 - yyj4340++ - if yyhl4340 { - yyb4340 = yyj4340 > l + var yyj4389 int + var yyb4389 bool + var yyhl4389 bool = l >= 0 + yyj4389++ + if yyhl4389 { + yyb4389 = yyj4389 > l } else { - yyb4340 = r.CheckBreak() + yyb4389 = r.CheckBreak() } - if yyb4340 { + if yyb4389 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54130,13 +54667,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4340++ - if yyhl4340 { - yyb4340 = yyj4340 > l + yyj4389++ + if yyhl4389 { + yyb4389 = yyj4389 > l } else { - yyb4340 = r.CheckBreak() + yyb4389 = r.CheckBreak() } - if yyb4340 { + if yyb4389 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54146,13 +54683,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4340++ - if yyhl4340 { - yyb4340 = yyj4340 > l + yyj4389++ + if yyhl4389 { + yyb4389 = yyj4389 > l } else { - yyb4340 = r.CheckBreak() + yyb4389 = r.CheckBreak() } - if yyb4340 { + if yyb4389 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54160,16 +54697,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4343 := &x.ObjectMeta - yyv4343.CodecDecodeSelf(d) + yyv4392 := &x.ObjectMeta + yyv4392.CodecDecodeSelf(d) } - yyj4340++ - if yyhl4340 { - yyb4340 = yyj4340 > l + yyj4389++ + if yyhl4389 { + yyb4389 = yyj4389 > l } else { - yyb4340 = r.CheckBreak() + yyb4389 = r.CheckBreak() } - if yyb4340 { + if yyb4389 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54177,26 +54714,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4344 := &x.Conditions - yym4345 := z.DecBinary() - _ = yym4345 + yyv4393 := &x.Conditions + yym4394 := z.DecBinary() + _ = yym4394 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4344), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4393), d) } } for { - yyj4340++ - if yyhl4340 { - yyb4340 = yyj4340 > l + yyj4389++ + if yyhl4389 { + yyb4389 = yyj4389 > l } else { - yyb4340 = r.CheckBreak() + yyb4389 = r.CheckBreak() } - if yyb4340 { + if yyb4389 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4340-1, "") + z.DecStructFieldNotFound(yyj4389-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54208,37 +54745,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4346 := z.EncBinary() - _ = yym4346 + yym4395 := z.EncBinary() + _ = yym4395 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4347 := !z.EncBinary() - yy2arr4347 := z.EncBasicHandle().StructToArray - var yyq4347 [4]bool - _, _, _ = yysep4347, yyq4347, yy2arr4347 - const yyr4347 bool = false - yyq4347[0] = x.Kind != "" - yyq4347[1] = x.APIVersion != "" - yyq4347[2] = true - var yynn4347 int - if yyr4347 || yy2arr4347 { + yysep4396 := !z.EncBinary() + yy2arr4396 := z.EncBasicHandle().StructToArray + var yyq4396 [4]bool + _, _, _ = yysep4396, yyq4396, yy2arr4396 + const yyr4396 bool = false + yyq4396[0] = x.Kind != "" + yyq4396[1] = x.APIVersion != "" + yyq4396[2] = true + var yynn4396 int + if yyr4396 || yy2arr4396 { r.EncodeArrayStart(4) } else { - yynn4347 = 1 - for _, b := range yyq4347 { + yynn4396 = 1 + for _, b := range yyq4396 { if b { - yynn4347++ + yynn4396++ } } - r.EncodeMapStart(yynn4347) - yynn4347 = 0 + r.EncodeMapStart(yynn4396) + yynn4396 = 0 } - if yyr4347 || yy2arr4347 { + if yyr4396 || yy2arr4396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4347[0] { - yym4349 := z.EncBinary() - _ = yym4349 + if yyq4396[0] { + yym4398 := z.EncBinary() + _ = yym4398 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -54247,23 +54784,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4347[0] { + if yyq4396[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4350 := z.EncBinary() - _ = yym4350 + yym4399 := z.EncBinary() + _ = yym4399 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4347 || yy2arr4347 { + if yyr4396 || yy2arr4396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4347[1] { - yym4352 := z.EncBinary() - _ = yym4352 + if yyq4396[1] { + yym4401 := z.EncBinary() + _ = yym4401 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -54272,54 +54809,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4347[1] { + if yyq4396[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4353 := z.EncBinary() - _ = yym4353 + yym4402 := z.EncBinary() + _ = yym4402 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4347 || yy2arr4347 { + if yyr4396 || yy2arr4396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4347[2] { - yy4355 := &x.ListMeta - yym4356 := z.EncBinary() - _ = yym4356 + if yyq4396[2] { + yy4404 := &x.ListMeta + yym4405 := z.EncBinary() + _ = yym4405 if false { - } else if z.HasExtensions() && z.EncExt(yy4355) { + } else if z.HasExtensions() && z.EncExt(yy4404) { } else { - z.EncFallback(yy4355) + z.EncFallback(yy4404) } } else { r.EncodeNil() } } else { - if yyq4347[2] { + if yyq4396[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4357 := &x.ListMeta - yym4358 := z.EncBinary() - _ = yym4358 + yy4406 := &x.ListMeta + yym4407 := z.EncBinary() + _ = yym4407 if false { - } else if z.HasExtensions() && z.EncExt(yy4357) { + } else if z.HasExtensions() && z.EncExt(yy4406) { } else { - z.EncFallback(yy4357) + z.EncFallback(yy4406) } } } - if yyr4347 || yy2arr4347 { + if yyr4396 || yy2arr4396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4360 := z.EncBinary() - _ = yym4360 + yym4409 := z.EncBinary() + _ = yym4409 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -54332,15 +54869,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4361 := z.EncBinary() - _ = yym4361 + yym4410 := z.EncBinary() + _ = yym4410 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4347 || yy2arr4347 { + if yyr4396 || yy2arr4396 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54353,25 +54890,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4362 := z.DecBinary() - _ = yym4362 + yym4411 := z.DecBinary() + _ = yym4411 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4363 := r.ContainerType() - if yyct4363 == codecSelferValueTypeMap1234 { - yyl4363 := r.ReadMapStart() - if yyl4363 == 0 { + yyct4412 := r.ContainerType() + if yyct4412 == codecSelferValueTypeMap1234 { + yyl4412 := r.ReadMapStart() + if yyl4412 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4363, d) + x.codecDecodeSelfFromMap(yyl4412, d) } - } else if yyct4363 == codecSelferValueTypeArray1234 { - yyl4363 := r.ReadArrayStart() - if yyl4363 == 0 { + } else if yyct4412 == codecSelferValueTypeArray1234 { + yyl4412 := r.ReadArrayStart() + if yyl4412 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4363, d) + x.codecDecodeSelfFromArray(yyl4412, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54383,12 +54920,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4364Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4364Slc - var yyhl4364 bool = l >= 0 - for yyj4364 := 0; ; yyj4364++ { - if yyhl4364 { - if yyj4364 >= l { + var yys4413Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4413Slc + var yyhl4413 bool = l >= 0 + for yyj4413 := 0; ; yyj4413++ { + if yyhl4413 { + if yyj4413 >= l { break } } else { @@ -54397,10 +54934,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4364Slc = r.DecodeBytes(yys4364Slc, true, true) - yys4364 := string(yys4364Slc) + yys4413Slc = r.DecodeBytes(yys4413Slc, true, true) + yys4413 := string(yys4413Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4364 { + switch yys4413 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54417,31 +54954,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4367 := &x.ListMeta - yym4368 := z.DecBinary() - _ = yym4368 + yyv4416 := &x.ListMeta + yym4417 := z.DecBinary() + _ = yym4417 if false { - } else if z.HasExtensions() && z.DecExt(yyv4367) { + } else if z.HasExtensions() && z.DecExt(yyv4416) { } else { - z.DecFallback(yyv4367, false) + z.DecFallback(yyv4416, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4369 := &x.Items - yym4370 := z.DecBinary() - _ = yym4370 + yyv4418 := &x.Items + yym4419 := z.DecBinary() + _ = yym4419 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4369), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4418), d) } } default: - z.DecStructFieldNotFound(-1, yys4364) - } // end switch yys4364 - } // end for yyj4364 + z.DecStructFieldNotFound(-1, yys4413) + } // end switch yys4413 + } // end for yyj4413 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54449,16 +54986,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4371 int - var yyb4371 bool - var yyhl4371 bool = l >= 0 - yyj4371++ - if yyhl4371 { - yyb4371 = yyj4371 > l + var yyj4420 int + var yyb4420 bool + var yyhl4420 bool = l >= 0 + yyj4420++ + if yyhl4420 { + yyb4420 = yyj4420 > l } else { - yyb4371 = r.CheckBreak() + yyb4420 = r.CheckBreak() } - if yyb4371 { + if yyb4420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54468,13 +55005,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj4371++ - if yyhl4371 { - yyb4371 = yyj4371 > l + yyj4420++ + if yyhl4420 { + yyb4420 = yyj4420 > l } else { - yyb4371 = r.CheckBreak() + yyb4420 = r.CheckBreak() } - if yyb4371 { + if yyb4420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54484,13 +55021,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj4371++ - if yyhl4371 { - yyb4371 = yyj4371 > l + yyj4420++ + if yyhl4420 { + yyb4420 = yyj4420 > l } else { - yyb4371 = r.CheckBreak() + yyb4420 = r.CheckBreak() } - if yyb4371 { + if yyb4420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54498,22 +55035,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4374 := &x.ListMeta - yym4375 := z.DecBinary() - _ = yym4375 + yyv4423 := &x.ListMeta + yym4424 := z.DecBinary() + _ = yym4424 if false { - } else if z.HasExtensions() && z.DecExt(yyv4374) { + } else if z.HasExtensions() && z.DecExt(yyv4423) { } else { - z.DecFallback(yyv4374, false) + z.DecFallback(yyv4423, false) } } - yyj4371++ - if yyhl4371 { - yyb4371 = yyj4371 > l + yyj4420++ + if yyhl4420 { + yyb4420 = yyj4420 > l } else { - yyb4371 = r.CheckBreak() + yyb4420 = r.CheckBreak() } - if yyb4371 { + if yyb4420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54521,26 +55058,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4376 := &x.Items - yym4377 := z.DecBinary() - _ = yym4377 + yyv4425 := &x.Items + yym4426 := z.DecBinary() + _ = yym4426 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4376), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4425), d) } } for { - yyj4371++ - if yyhl4371 { - yyb4371 = yyj4371 > l + yyj4420++ + if yyhl4420 { + yyb4420 = yyj4420 > l } else { - yyb4371 = r.CheckBreak() + yyb4420 = r.CheckBreak() } - if yyb4371 { + if yyb4420 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4371-1, "") + z.DecStructFieldNotFound(yyj4420-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54552,39 +55089,39 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4378 := z.EncBinary() - _ = yym4378 + yym4427 := z.EncBinary() + _ = yym4427 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4379 := !z.EncBinary() - yy2arr4379 := z.EncBasicHandle().StructToArray - var yyq4379 [2]bool - _, _, _ = yysep4379, yyq4379, yy2arr4379 - const yyr4379 bool = false - yyq4379[0] = len(x.Items) != 0 - yyq4379[1] = x.DefaultMode != nil - var yynn4379 int - if yyr4379 || yy2arr4379 { + yysep4428 := !z.EncBinary() + yy2arr4428 := z.EncBasicHandle().StructToArray + var yyq4428 [2]bool + _, _, _ = yysep4428, yyq4428, yy2arr4428 + const yyr4428 bool = false + yyq4428[0] = len(x.Items) != 0 + yyq4428[1] = x.DefaultMode != nil + var yynn4428 int + if yyr4428 || yy2arr4428 { r.EncodeArrayStart(2) } else { - yynn4379 = 0 - for _, b := range yyq4379 { + yynn4428 = 0 + for _, b := range yyq4428 { if b { - yynn4379++ + yynn4428++ } } - r.EncodeMapStart(yynn4379) - yynn4379 = 0 + r.EncodeMapStart(yynn4428) + yynn4428 = 0 } - if yyr4379 || yy2arr4379 { + if yyr4428 || yy2arr4428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4379[0] { + if yyq4428[0] { if x.Items == nil { r.EncodeNil() } else { - yym4381 := z.EncBinary() - _ = yym4381 + yym4430 := z.EncBinary() + _ = yym4430 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -54594,15 +55131,15 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4379[0] { + if yyq4428[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym4382 := z.EncBinary() - _ = yym4382 + yym4431 := z.EncBinary() + _ = yym4431 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -54610,42 +55147,42 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4379 || yy2arr4379 { + if yyr4428 || yy2arr4428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4379[1] { + if yyq4428[1] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy4384 := *x.DefaultMode - yym4385 := z.EncBinary() - _ = yym4385 + yy4433 := *x.DefaultMode + yym4434 := z.EncBinary() + _ = yym4434 if false { } else { - r.EncodeInt(int64(yy4384)) + r.EncodeInt(int64(yy4433)) } } } else { r.EncodeNil() } } else { - if yyq4379[1] { + if yyq4428[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultMode == nil { r.EncodeNil() } else { - yy4386 := *x.DefaultMode - yym4387 := z.EncBinary() - _ = yym4387 + yy4435 := *x.DefaultMode + yym4436 := z.EncBinary() + _ = yym4436 if false { } else { - r.EncodeInt(int64(yy4386)) + r.EncodeInt(int64(yy4435)) } } } } - if yyr4379 || yy2arr4379 { + if yyr4428 || yy2arr4428 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54658,25 +55195,25 @@ func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4388 := z.DecBinary() - _ = yym4388 + yym4437 := z.DecBinary() + _ = yym4437 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4389 := r.ContainerType() - if yyct4389 == codecSelferValueTypeMap1234 { - yyl4389 := r.ReadMapStart() - if yyl4389 == 0 { + yyct4438 := r.ContainerType() + if yyct4438 == codecSelferValueTypeMap1234 { + yyl4438 := r.ReadMapStart() + if yyl4438 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4389, d) + x.codecDecodeSelfFromMap(yyl4438, d) } - } else if yyct4389 == codecSelferValueTypeArray1234 { - yyl4389 := r.ReadArrayStart() - if yyl4389 == 0 { + } else if yyct4438 == codecSelferValueTypeArray1234 { + yyl4438 := r.ReadArrayStart() + if yyl4438 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4389, d) + x.codecDecodeSelfFromArray(yyl4438, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54688,12 +55225,12 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4390Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4390Slc - var yyhl4390 bool = l >= 0 - for yyj4390 := 0; ; yyj4390++ { - if yyhl4390 { - if yyj4390 >= l { + var yys4439Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4439Slc + var yyhl4439 bool = l >= 0 + for yyj4439 := 0; ; yyj4439++ { + if yyhl4439 { + if yyj4439 >= l { break } } else { @@ -54702,20 +55239,20 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4390Slc = r.DecodeBytes(yys4390Slc, true, true) - yys4390 := string(yys4390Slc) + yys4439Slc = r.DecodeBytes(yys4439Slc, true, true) + yys4439 := string(yys4439Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4390 { + switch yys4439 { case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4391 := &x.Items - yym4392 := z.DecBinary() - _ = yym4392 + yyv4440 := &x.Items + yym4441 := z.DecBinary() + _ = yym4441 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4391), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4440), d) } } case "defaultMode": @@ -54727,17 +55264,17 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym4394 := z.DecBinary() - _ = yym4394 + yym4443 := z.DecBinary() + _ = yym4443 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys4390) - } // end switch yys4390 - } // end for yyj4390 + z.DecStructFieldNotFound(-1, yys4439) + } // end switch yys4439 + } // end for yyj4439 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54745,16 +55282,16 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4395 int - var yyb4395 bool - var yyhl4395 bool = l >= 0 - yyj4395++ - if yyhl4395 { - yyb4395 = yyj4395 > l + var yyj4444 int + var yyb4444 bool + var yyhl4444 bool = l >= 0 + yyj4444++ + if yyhl4444 { + yyb4444 = yyj4444 > l } else { - yyb4395 = r.CheckBreak() + yyb4444 = r.CheckBreak() } - if yyb4395 { + if yyb4444 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54762,21 +55299,21 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4396 := &x.Items - yym4397 := z.DecBinary() - _ = yym4397 + yyv4445 := &x.Items + yym4446 := z.DecBinary() + _ = yym4446 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4396), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4445), d) } } - yyj4395++ - if yyhl4395 { - yyb4395 = yyj4395 > l + yyj4444++ + if yyhl4444 { + yyb4444 = yyj4444 > l } else { - yyb4395 = r.CheckBreak() + yyb4444 = r.CheckBreak() } - if yyb4395 { + if yyb4444 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54789,25 +55326,25 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym4399 := z.DecBinary() - _ = yym4399 + yym4448 := z.DecBinary() + _ = yym4448 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj4395++ - if yyhl4395 { - yyb4395 = yyj4395 > l + yyj4444++ + if yyhl4444 { + yyb4444 = yyj4444 > l } else { - yyb4395 = r.CheckBreak() + yyb4444 = r.CheckBreak() } - if yyb4395 { + if yyb4444 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4395-1, "") + z.DecStructFieldNotFound(yyj4444-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54819,36 +55356,36 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4400 := z.EncBinary() - _ = yym4400 + yym4449 := z.EncBinary() + _ = yym4449 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4401 := !z.EncBinary() - yy2arr4401 := z.EncBasicHandle().StructToArray - var yyq4401 [4]bool - _, _, _ = yysep4401, yyq4401, yy2arr4401 - const yyr4401 bool = false - yyq4401[1] = x.FieldRef != nil - yyq4401[2] = x.ResourceFieldRef != nil - yyq4401[3] = x.Mode != nil - var yynn4401 int - if yyr4401 || yy2arr4401 { + yysep4450 := !z.EncBinary() + yy2arr4450 := z.EncBasicHandle().StructToArray + var yyq4450 [4]bool + _, _, _ = yysep4450, yyq4450, yy2arr4450 + const yyr4450 bool = false + yyq4450[1] = x.FieldRef != nil + yyq4450[2] = x.ResourceFieldRef != nil + yyq4450[3] = x.Mode != nil + var yynn4450 int + if yyr4450 || yy2arr4450 { r.EncodeArrayStart(4) } else { - yynn4401 = 1 - for _, b := range yyq4401 { + yynn4450 = 1 + for _, b := range yyq4450 { if b { - yynn4401++ + yynn4450++ } } - r.EncodeMapStart(yynn4401) - yynn4401 = 0 + r.EncodeMapStart(yynn4450) + yynn4450 = 0 } - if yyr4401 || yy2arr4401 { + if yyr4450 || yy2arr4450 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4403 := z.EncBinary() - _ = yym4403 + yym4452 := z.EncBinary() + _ = yym4452 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -54857,16 +55394,16 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4404 := z.EncBinary() - _ = yym4404 + yym4453 := z.EncBinary() + _ = yym4453 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr4401 || yy2arr4401 { + if yyr4450 || yy2arr4450 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4401[1] { + if yyq4450[1] { if x.FieldRef == nil { r.EncodeNil() } else { @@ -54876,7 +55413,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4401[1] { + if yyq4450[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -54887,9 +55424,9 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4401 || yy2arr4401 { + if yyr4450 || yy2arr4450 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4401[2] { + if yyq4450[2] { if x.ResourceFieldRef == nil { r.EncodeNil() } else { @@ -54899,7 +55436,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4401[2] { + if yyq4450[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceFieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -54910,42 +55447,42 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4401 || yy2arr4401 { + if yyr4450 || yy2arr4450 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4401[3] { + if yyq4450[3] { if x.Mode == nil { r.EncodeNil() } else { - yy4408 := *x.Mode - yym4409 := z.EncBinary() - _ = yym4409 + yy4457 := *x.Mode + yym4458 := z.EncBinary() + _ = yym4458 if false { } else { - r.EncodeInt(int64(yy4408)) + r.EncodeInt(int64(yy4457)) } } } else { r.EncodeNil() } } else { - if yyq4401[3] { + if yyq4450[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Mode == nil { r.EncodeNil() } else { - yy4410 := *x.Mode - yym4411 := z.EncBinary() - _ = yym4411 + yy4459 := *x.Mode + yym4460 := z.EncBinary() + _ = yym4460 if false { } else { - r.EncodeInt(int64(yy4410)) + r.EncodeInt(int64(yy4459)) } } } } - if yyr4401 || yy2arr4401 { + if yyr4450 || yy2arr4450 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54958,25 +55495,25 @@ func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4412 := z.DecBinary() - _ = yym4412 + yym4461 := z.DecBinary() + _ = yym4461 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4413 := r.ContainerType() - if yyct4413 == codecSelferValueTypeMap1234 { - yyl4413 := r.ReadMapStart() - if yyl4413 == 0 { + yyct4462 := r.ContainerType() + if yyct4462 == codecSelferValueTypeMap1234 { + yyl4462 := r.ReadMapStart() + if yyl4462 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4413, d) + x.codecDecodeSelfFromMap(yyl4462, d) } - } else if yyct4413 == codecSelferValueTypeArray1234 { - yyl4413 := r.ReadArrayStart() - if yyl4413 == 0 { + } else if yyct4462 == codecSelferValueTypeArray1234 { + yyl4462 := r.ReadArrayStart() + if yyl4462 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4413, d) + x.codecDecodeSelfFromArray(yyl4462, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54988,12 +55525,12 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4414Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4414Slc - var yyhl4414 bool = l >= 0 - for yyj4414 := 0; ; yyj4414++ { - if yyhl4414 { - if yyj4414 >= l { + var yys4463Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4463Slc + var yyhl4463 bool = l >= 0 + for yyj4463 := 0; ; yyj4463++ { + if yyhl4463 { + if yyj4463 >= l { break } } else { @@ -55002,10 +55539,10 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4414Slc = r.DecodeBytes(yys4414Slc, true, true) - yys4414 := string(yys4414Slc) + yys4463Slc = r.DecodeBytes(yys4463Slc, true, true) + yys4463 := string(yys4463Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4414 { + switch yys4463 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -55043,17 +55580,17 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod if x.Mode == nil { x.Mode = new(int32) } - yym4419 := z.DecBinary() - _ = yym4419 + yym4468 := z.DecBinary() + _ = yym4468 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys4414) - } // end switch yys4414 - } // end for yyj4414 + z.DecStructFieldNotFound(-1, yys4463) + } // end switch yys4463 + } // end for yyj4463 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55061,16 +55598,16 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4420 int - var yyb4420 bool - var yyhl4420 bool = l >= 0 - yyj4420++ - if yyhl4420 { - yyb4420 = yyj4420 > l + var yyj4469 int + var yyb4469 bool + var yyhl4469 bool = l >= 0 + yyj4469++ + if yyhl4469 { + yyb4469 = yyj4469 > l } else { - yyb4420 = r.CheckBreak() + yyb4469 = r.CheckBreak() } - if yyb4420 { + if yyb4469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55080,13 +55617,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj4420++ - if yyhl4420 { - yyb4420 = yyj4420 > l + yyj4469++ + if yyhl4469 { + yyb4469 = yyj4469 > l } else { - yyb4420 = r.CheckBreak() + yyb4469 = r.CheckBreak() } - if yyb4420 { + if yyb4469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55101,13 +55638,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.FieldRef.CodecDecodeSelf(d) } - yyj4420++ - if yyhl4420 { - yyb4420 = yyj4420 > l + yyj4469++ + if yyhl4469 { + yyb4469 = yyj4469 > l } else { - yyb4420 = r.CheckBreak() + yyb4469 = r.CheckBreak() } - if yyb4420 { + if yyb4469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55122,13 +55659,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.ResourceFieldRef.CodecDecodeSelf(d) } - yyj4420++ - if yyhl4420 { - yyb4420 = yyj4420 > l + yyj4469++ + if yyhl4469 { + yyb4469 = yyj4469 > l } else { - yyb4420 = r.CheckBreak() + yyb4469 = r.CheckBreak() } - if yyb4420 { + if yyb4469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55141,25 +55678,25 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec if x.Mode == nil { x.Mode = new(int32) } - yym4425 := z.DecBinary() - _ = yym4425 + yym4474 := z.DecBinary() + _ = yym4474 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } for { - yyj4420++ - if yyhl4420 { - yyb4420 = yyj4420 > l + yyj4469++ + if yyhl4469 { + yyb4469 = yyj4469 > l } else { - yyb4420 = r.CheckBreak() + yyb4469 = r.CheckBreak() } - if yyb4420 { + if yyb4469 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4420-1, "") + z.DecStructFieldNotFound(yyj4469-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55171,38 +55708,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4426 := z.EncBinary() - _ = yym4426 + yym4475 := z.EncBinary() + _ = yym4475 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4427 := !z.EncBinary() - yy2arr4427 := z.EncBasicHandle().StructToArray - var yyq4427 [6]bool - _, _, _ = yysep4427, yyq4427, yy2arr4427 - const yyr4427 bool = false - yyq4427[0] = x.Capabilities != nil - yyq4427[1] = x.Privileged != nil - yyq4427[2] = x.SELinuxOptions != nil - yyq4427[3] = x.RunAsUser != nil - yyq4427[4] = x.RunAsNonRoot != nil - yyq4427[5] = x.ReadOnlyRootFilesystem != nil - var yynn4427 int - if yyr4427 || yy2arr4427 { + yysep4476 := !z.EncBinary() + yy2arr4476 := z.EncBasicHandle().StructToArray + var yyq4476 [6]bool + _, _, _ = yysep4476, yyq4476, yy2arr4476 + const yyr4476 bool = false + yyq4476[0] = x.Capabilities != nil + yyq4476[1] = x.Privileged != nil + yyq4476[2] = x.SELinuxOptions != nil + yyq4476[3] = x.RunAsUser != nil + yyq4476[4] = x.RunAsNonRoot != nil + yyq4476[5] = x.ReadOnlyRootFilesystem != nil + var yynn4476 int + if yyr4476 || yy2arr4476 { r.EncodeArrayStart(6) } else { - yynn4427 = 0 - for _, b := range yyq4427 { + yynn4476 = 0 + for _, b := range yyq4476 { if b { - yynn4427++ + yynn4476++ } } - r.EncodeMapStart(yynn4427) - yynn4427 = 0 + r.EncodeMapStart(yynn4476) + yynn4476 = 0 } - if yyr4427 || yy2arr4427 { + if yyr4476 || yy2arr4476 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4427[0] { + if yyq4476[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -55212,7 +55749,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4427[0] { + if yyq4476[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -55223,44 +55760,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4427 || yy2arr4427 { + if yyr4476 || yy2arr4476 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4427[1] { + if yyq4476[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4430 := *x.Privileged - yym4431 := z.EncBinary() - _ = yym4431 + yy4479 := *x.Privileged + yym4480 := z.EncBinary() + _ = yym4480 if false { } else { - r.EncodeBool(bool(yy4430)) + r.EncodeBool(bool(yy4479)) } } } else { r.EncodeNil() } } else { - if yyq4427[1] { + if yyq4476[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4432 := *x.Privileged - yym4433 := z.EncBinary() - _ = yym4433 + yy4481 := *x.Privileged + yym4482 := z.EncBinary() + _ = yym4482 if false { } else { - r.EncodeBool(bool(yy4432)) + r.EncodeBool(bool(yy4481)) } } } } - if yyr4427 || yy2arr4427 { + if yyr4476 || yy2arr4476 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4427[2] { + if yyq4476[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -55270,7 +55807,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4427[2] { + if yyq4476[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -55281,112 +55818,112 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4427 || yy2arr4427 { + if yyr4476 || yy2arr4476 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4427[3] { + if yyq4476[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4436 := *x.RunAsUser - yym4437 := z.EncBinary() - _ = yym4437 + yy4485 := *x.RunAsUser + yym4486 := z.EncBinary() + _ = yym4486 if false { } else { - r.EncodeInt(int64(yy4436)) + r.EncodeInt(int64(yy4485)) } } } else { r.EncodeNil() } } else { - if yyq4427[3] { + if yyq4476[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4438 := *x.RunAsUser - yym4439 := z.EncBinary() - _ = yym4439 + yy4487 := *x.RunAsUser + yym4488 := z.EncBinary() + _ = yym4488 if false { } else { - r.EncodeInt(int64(yy4438)) + r.EncodeInt(int64(yy4487)) } } } } - if yyr4427 || yy2arr4427 { + if yyr4476 || yy2arr4476 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4427[4] { + if yyq4476[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4441 := *x.RunAsNonRoot - yym4442 := z.EncBinary() - _ = yym4442 + yy4490 := *x.RunAsNonRoot + yym4491 := z.EncBinary() + _ = yym4491 if false { } else { - r.EncodeBool(bool(yy4441)) + r.EncodeBool(bool(yy4490)) } } } else { r.EncodeNil() } } else { - if yyq4427[4] { + if yyq4476[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4443 := *x.RunAsNonRoot - yym4444 := z.EncBinary() - _ = yym4444 + yy4492 := *x.RunAsNonRoot + yym4493 := z.EncBinary() + _ = yym4493 if false { } else { - r.EncodeBool(bool(yy4443)) + r.EncodeBool(bool(yy4492)) } } } } - if yyr4427 || yy2arr4427 { + if yyr4476 || yy2arr4476 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4427[5] { + if yyq4476[5] { if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4446 := *x.ReadOnlyRootFilesystem - yym4447 := z.EncBinary() - _ = yym4447 + yy4495 := *x.ReadOnlyRootFilesystem + yym4496 := z.EncBinary() + _ = yym4496 if false { } else { - r.EncodeBool(bool(yy4446)) + r.EncodeBool(bool(yy4495)) } } } else { r.EncodeNil() } } else { - if yyq4427[5] { + if yyq4476[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4448 := *x.ReadOnlyRootFilesystem - yym4449 := z.EncBinary() - _ = yym4449 + yy4497 := *x.ReadOnlyRootFilesystem + yym4498 := z.EncBinary() + _ = yym4498 if false { } else { - r.EncodeBool(bool(yy4448)) + r.EncodeBool(bool(yy4497)) } } } } - if yyr4427 || yy2arr4427 { + if yyr4476 || yy2arr4476 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55399,25 +55936,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4450 := z.DecBinary() - _ = yym4450 + yym4499 := z.DecBinary() + _ = yym4499 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4451 := r.ContainerType() - if yyct4451 == codecSelferValueTypeMap1234 { - yyl4451 := r.ReadMapStart() - if yyl4451 == 0 { + yyct4500 := r.ContainerType() + if yyct4500 == codecSelferValueTypeMap1234 { + yyl4500 := r.ReadMapStart() + if yyl4500 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4451, d) + x.codecDecodeSelfFromMap(yyl4500, d) } - } else if yyct4451 == codecSelferValueTypeArray1234 { - yyl4451 := r.ReadArrayStart() - if yyl4451 == 0 { + } else if yyct4500 == codecSelferValueTypeArray1234 { + yyl4500 := r.ReadArrayStart() + if yyl4500 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4451, d) + x.codecDecodeSelfFromArray(yyl4500, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55429,12 +55966,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4452Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4452Slc - var yyhl4452 bool = l >= 0 - for yyj4452 := 0; ; yyj4452++ { - if yyhl4452 { - if yyj4452 >= l { + var yys4501Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4501Slc + var yyhl4501 bool = l >= 0 + for yyj4501 := 0; ; yyj4501++ { + if yyhl4501 { + if yyj4501 >= l { break } } else { @@ -55443,10 +55980,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4452Slc = r.DecodeBytes(yys4452Slc, true, true) - yys4452 := string(yys4452Slc) + yys4501Slc = r.DecodeBytes(yys4501Slc, true, true) + yys4501 := string(yys4501Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4452 { + switch yys4501 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -55467,8 +56004,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4455 := z.DecBinary() - _ = yym4455 + yym4504 := z.DecBinary() + _ = yym4504 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -55494,8 +56031,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4458 := z.DecBinary() - _ = yym4458 + yym4507 := z.DecBinary() + _ = yym4507 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -55510,8 +56047,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4460 := z.DecBinary() - _ = yym4460 + yym4509 := z.DecBinary() + _ = yym4509 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -55526,17 +56063,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4462 := z.DecBinary() - _ = yym4462 + yym4511 := z.DecBinary() + _ = yym4511 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4452) - } // end switch yys4452 - } // end for yyj4452 + z.DecStructFieldNotFound(-1, yys4501) + } // end switch yys4501 + } // end for yyj4501 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55544,16 +56081,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4463 int - var yyb4463 bool - var yyhl4463 bool = l >= 0 - yyj4463++ - if yyhl4463 { - yyb4463 = yyj4463 > l + var yyj4512 int + var yyb4512 bool + var yyhl4512 bool = l >= 0 + yyj4512++ + if yyhl4512 { + yyb4512 = yyj4512 > l } else { - yyb4463 = r.CheckBreak() + yyb4512 = r.CheckBreak() } - if yyb4463 { + if yyb4512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55568,13 +56105,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4463++ - if yyhl4463 { - yyb4463 = yyj4463 > l + yyj4512++ + if yyhl4512 { + yyb4512 = yyj4512 > l } else { - yyb4463 = r.CheckBreak() + yyb4512 = r.CheckBreak() } - if yyb4463 { + if yyb4512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55587,20 +56124,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4466 := z.DecBinary() - _ = yym4466 + yym4515 := z.DecBinary() + _ = yym4515 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4463++ - if yyhl4463 { - yyb4463 = yyj4463 > l + yyj4512++ + if yyhl4512 { + yyb4512 = yyj4512 > l } else { - yyb4463 = r.CheckBreak() + yyb4512 = r.CheckBreak() } - if yyb4463 { + if yyb4512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55615,13 +56152,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4463++ - if yyhl4463 { - yyb4463 = yyj4463 > l + yyj4512++ + if yyhl4512 { + yyb4512 = yyj4512 > l } else { - yyb4463 = r.CheckBreak() + yyb4512 = r.CheckBreak() } - if yyb4463 { + if yyb4512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55634,20 +56171,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4469 := z.DecBinary() - _ = yym4469 + yym4518 := z.DecBinary() + _ = yym4518 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4463++ - if yyhl4463 { - yyb4463 = yyj4463 > l + yyj4512++ + if yyhl4512 { + yyb4512 = yyj4512 > l } else { - yyb4463 = r.CheckBreak() + yyb4512 = r.CheckBreak() } - if yyb4463 { + if yyb4512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55660,20 +56197,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4471 := z.DecBinary() - _ = yym4471 + yym4520 := z.DecBinary() + _ = yym4520 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4463++ - if yyhl4463 { - yyb4463 = yyj4463 > l + yyj4512++ + if yyhl4512 { + yyb4512 = yyj4512 > l } else { - yyb4463 = r.CheckBreak() + yyb4512 = r.CheckBreak() } - if yyb4463 { + if yyb4512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55686,25 +56223,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4473 := z.DecBinary() - _ = yym4473 + yym4522 := z.DecBinary() + _ = yym4522 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4463++ - if yyhl4463 { - yyb4463 = yyj4463 > l + yyj4512++ + if yyhl4512 { + yyb4512 = yyj4512 > l } else { - yyb4463 = r.CheckBreak() + yyb4512 = r.CheckBreak() } - if yyb4463 { + if yyb4512 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4463-1, "") + z.DecStructFieldNotFound(yyj4512-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55716,38 +56253,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4474 := z.EncBinary() - _ = yym4474 + yym4523 := z.EncBinary() + _ = yym4523 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4475 := !z.EncBinary() - yy2arr4475 := z.EncBasicHandle().StructToArray - var yyq4475 [4]bool - _, _, _ = yysep4475, yyq4475, yy2arr4475 - const yyr4475 bool = false - yyq4475[0] = x.User != "" - yyq4475[1] = x.Role != "" - yyq4475[2] = x.Type != "" - yyq4475[3] = x.Level != "" - var yynn4475 int - if yyr4475 || yy2arr4475 { + yysep4524 := !z.EncBinary() + yy2arr4524 := z.EncBasicHandle().StructToArray + var yyq4524 [4]bool + _, _, _ = yysep4524, yyq4524, yy2arr4524 + const yyr4524 bool = false + yyq4524[0] = x.User != "" + yyq4524[1] = x.Role != "" + yyq4524[2] = x.Type != "" + yyq4524[3] = x.Level != "" + var yynn4524 int + if yyr4524 || yy2arr4524 { r.EncodeArrayStart(4) } else { - yynn4475 = 0 - for _, b := range yyq4475 { + yynn4524 = 0 + for _, b := range yyq4524 { if b { - yynn4475++ + yynn4524++ } } - r.EncodeMapStart(yynn4475) - yynn4475 = 0 + r.EncodeMapStart(yynn4524) + yynn4524 = 0 } - if yyr4475 || yy2arr4475 { + if yyr4524 || yy2arr4524 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4475[0] { - yym4477 := z.EncBinary() - _ = yym4477 + if yyq4524[0] { + yym4526 := z.EncBinary() + _ = yym4526 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -55756,23 +56293,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4475[0] { + if yyq4524[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4478 := z.EncBinary() - _ = yym4478 + yym4527 := z.EncBinary() + _ = yym4527 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4475 || yy2arr4475 { + if yyr4524 || yy2arr4524 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4475[1] { - yym4480 := z.EncBinary() - _ = yym4480 + if yyq4524[1] { + yym4529 := z.EncBinary() + _ = yym4529 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -55781,23 +56318,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4475[1] { + if yyq4524[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4481 := z.EncBinary() - _ = yym4481 + yym4530 := z.EncBinary() + _ = yym4530 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr4475 || yy2arr4475 { + if yyr4524 || yy2arr4524 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4475[2] { - yym4483 := z.EncBinary() - _ = yym4483 + if yyq4524[2] { + yym4532 := z.EncBinary() + _ = yym4532 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -55806,23 +56343,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4475[2] { + if yyq4524[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4484 := z.EncBinary() - _ = yym4484 + yym4533 := z.EncBinary() + _ = yym4533 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4475 || yy2arr4475 { + if yyr4524 || yy2arr4524 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4475[3] { - yym4486 := z.EncBinary() - _ = yym4486 + if yyq4524[3] { + yym4535 := z.EncBinary() + _ = yym4535 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -55831,19 +56368,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4475[3] { + if yyq4524[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4487 := z.EncBinary() - _ = yym4487 + yym4536 := z.EncBinary() + _ = yym4536 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4475 || yy2arr4475 { + if yyr4524 || yy2arr4524 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55856,25 +56393,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4488 := z.DecBinary() - _ = yym4488 + yym4537 := z.DecBinary() + _ = yym4537 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4489 := r.ContainerType() - if yyct4489 == codecSelferValueTypeMap1234 { - yyl4489 := r.ReadMapStart() - if yyl4489 == 0 { + yyct4538 := r.ContainerType() + if yyct4538 == codecSelferValueTypeMap1234 { + yyl4538 := r.ReadMapStart() + if yyl4538 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4489, d) + x.codecDecodeSelfFromMap(yyl4538, d) } - } else if yyct4489 == codecSelferValueTypeArray1234 { - yyl4489 := r.ReadArrayStart() - if yyl4489 == 0 { + } else if yyct4538 == codecSelferValueTypeArray1234 { + yyl4538 := r.ReadArrayStart() + if yyl4538 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4489, d) + x.codecDecodeSelfFromArray(yyl4538, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55886,12 +56423,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4490Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4490Slc - var yyhl4490 bool = l >= 0 - for yyj4490 := 0; ; yyj4490++ { - if yyhl4490 { - if yyj4490 >= l { + var yys4539Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4539Slc + var yyhl4539 bool = l >= 0 + for yyj4539 := 0; ; yyj4539++ { + if yyhl4539 { + if yyj4539 >= l { break } } else { @@ -55900,10 +56437,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4490Slc = r.DecodeBytes(yys4490Slc, true, true) - yys4490 := string(yys4490Slc) + yys4539Slc = r.DecodeBytes(yys4539Slc, true, true) + yys4539 := string(yys4539Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4490 { + switch yys4539 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -55929,9 +56466,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4490) - } // end switch yys4490 - } // end for yyj4490 + z.DecStructFieldNotFound(-1, yys4539) + } // end switch yys4539 + } // end for yyj4539 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55939,16 +56476,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4495 int - var yyb4495 bool - var yyhl4495 bool = l >= 0 - yyj4495++ - if yyhl4495 { - yyb4495 = yyj4495 > l + var yyj4544 int + var yyb4544 bool + var yyhl4544 bool = l >= 0 + yyj4544++ + if yyhl4544 { + yyb4544 = yyj4544 > l } else { - yyb4495 = r.CheckBreak() + yyb4544 = r.CheckBreak() } - if yyb4495 { + if yyb4544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55958,13 +56495,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4495++ - if yyhl4495 { - yyb4495 = yyj4495 > l + yyj4544++ + if yyhl4544 { + yyb4544 = yyj4544 > l } else { - yyb4495 = r.CheckBreak() + yyb4544 = r.CheckBreak() } - if yyb4495 { + if yyb4544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55974,13 +56511,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4495++ - if yyhl4495 { - yyb4495 = yyj4495 > l + yyj4544++ + if yyhl4544 { + yyb4544 = yyj4544 > l } else { - yyb4495 = r.CheckBreak() + yyb4544 = r.CheckBreak() } - if yyb4495 { + if yyb4544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55990,13 +56527,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4495++ - if yyhl4495 { - yyb4495 = yyj4495 > l + yyj4544++ + if yyhl4544 { + yyb4544 = yyj4544 > l } else { - yyb4495 = r.CheckBreak() + yyb4544 = r.CheckBreak() } - if yyb4495 { + if yyb4544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56007,17 +56544,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4495++ - if yyhl4495 { - yyb4495 = yyj4495 > l + yyj4544++ + if yyhl4544 { + yyb4544 = yyj4544 > l } else { - yyb4495 = r.CheckBreak() + yyb4544 = r.CheckBreak() } - if yyb4495 { + if yyb4544 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4495-1, "") + z.DecStructFieldNotFound(yyj4544-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56029,37 +56566,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4500 := z.EncBinary() - _ = yym4500 + yym4549 := z.EncBinary() + _ = yym4549 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4501 := !z.EncBinary() - yy2arr4501 := z.EncBasicHandle().StructToArray - var yyq4501 [5]bool - _, _, _ = yysep4501, yyq4501, yy2arr4501 - const yyr4501 bool = false - yyq4501[0] = x.Kind != "" - yyq4501[1] = x.APIVersion != "" - yyq4501[2] = true - var yynn4501 int - if yyr4501 || yy2arr4501 { + yysep4550 := !z.EncBinary() + yy2arr4550 := z.EncBasicHandle().StructToArray + var yyq4550 [5]bool + _, _, _ = yysep4550, yyq4550, yy2arr4550 + const yyr4550 bool = false + yyq4550[0] = x.Kind != "" + yyq4550[1] = x.APIVersion != "" + yyq4550[2] = true + var yynn4550 int + if yyr4550 || yy2arr4550 { r.EncodeArrayStart(5) } else { - yynn4501 = 2 - for _, b := range yyq4501 { + yynn4550 = 2 + for _, b := range yyq4550 { if b { - yynn4501++ + yynn4550++ } } - r.EncodeMapStart(yynn4501) - yynn4501 = 0 + r.EncodeMapStart(yynn4550) + yynn4550 = 0 } - if yyr4501 || yy2arr4501 { + if yyr4550 || yy2arr4550 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4501[0] { - yym4503 := z.EncBinary() - _ = yym4503 + if yyq4550[0] { + yym4552 := z.EncBinary() + _ = yym4552 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -56068,23 +56605,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4501[0] { + if yyq4550[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4504 := z.EncBinary() - _ = yym4504 + yym4553 := z.EncBinary() + _ = yym4553 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4501 || yy2arr4501 { + if yyr4550 || yy2arr4550 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4501[1] { - yym4506 := z.EncBinary() - _ = yym4506 + if yyq4550[1] { + yym4555 := z.EncBinary() + _ = yym4555 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -56093,39 +56630,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4501[1] { + if yyq4550[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4507 := z.EncBinary() - _ = yym4507 + yym4556 := z.EncBinary() + _ = yym4556 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4501 || yy2arr4501 { + if yyr4550 || yy2arr4550 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4501[2] { - yy4509 := &x.ObjectMeta - yy4509.CodecEncodeSelf(e) + if yyq4550[2] { + yy4558 := &x.ObjectMeta + yy4558.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4501[2] { + if yyq4550[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4510 := &x.ObjectMeta - yy4510.CodecEncodeSelf(e) + yy4559 := &x.ObjectMeta + yy4559.CodecEncodeSelf(e) } } - if yyr4501 || yy2arr4501 { + if yyr4550 || yy2arr4550 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4512 := z.EncBinary() - _ = yym4512 + yym4561 := z.EncBinary() + _ = yym4561 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -56134,20 +56671,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4513 := z.EncBinary() - _ = yym4513 + yym4562 := z.EncBinary() + _ = yym4562 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4501 || yy2arr4501 { + if yyr4550 || yy2arr4550 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4515 := z.EncBinary() - _ = yym4515 + yym4564 := z.EncBinary() + _ = yym4564 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -56160,15 +56697,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4516 := z.EncBinary() - _ = yym4516 + yym4565 := z.EncBinary() + _ = yym4565 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4501 || yy2arr4501 { + if yyr4550 || yy2arr4550 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -56181,25 +56718,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4517 := z.DecBinary() - _ = yym4517 + yym4566 := z.DecBinary() + _ = yym4566 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4518 := r.ContainerType() - if yyct4518 == codecSelferValueTypeMap1234 { - yyl4518 := r.ReadMapStart() - if yyl4518 == 0 { + yyct4567 := r.ContainerType() + if yyct4567 == codecSelferValueTypeMap1234 { + yyl4567 := r.ReadMapStart() + if yyl4567 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4518, d) + x.codecDecodeSelfFromMap(yyl4567, d) } - } else if yyct4518 == codecSelferValueTypeArray1234 { - yyl4518 := r.ReadArrayStart() - if yyl4518 == 0 { + } else if yyct4567 == codecSelferValueTypeArray1234 { + yyl4567 := r.ReadArrayStart() + if yyl4567 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4518, d) + x.codecDecodeSelfFromArray(yyl4567, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -56211,12 +56748,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4519Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4519Slc - var yyhl4519 bool = l >= 0 - for yyj4519 := 0; ; yyj4519++ { - if yyhl4519 { - if yyj4519 >= l { + var yys4568Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4568Slc + var yyhl4568 bool = l >= 0 + for yyj4568 := 0; ; yyj4568++ { + if yyhl4568 { + if yyj4568 >= l { break } } else { @@ -56225,10 +56762,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4519Slc = r.DecodeBytes(yys4519Slc, true, true) - yys4519 := string(yys4519Slc) + yys4568Slc = r.DecodeBytes(yys4568Slc, true, true) + yys4568 := string(yys4568Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4519 { + switch yys4568 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -56245,8 +56782,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4522 := &x.ObjectMeta - yyv4522.CodecDecodeSelf(d) + yyv4571 := &x.ObjectMeta + yyv4571.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -56258,18 +56795,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4524 := &x.Data - yym4525 := z.DecBinary() - _ = yym4525 + yyv4573 := &x.Data + yym4574 := z.DecBinary() + _ = yym4574 if false { } else { - *yyv4524 = r.DecodeBytes(*(*[]byte)(yyv4524), false, false) + *yyv4573 = r.DecodeBytes(*(*[]byte)(yyv4573), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4519) - } // end switch yys4519 - } // end for yyj4519 + z.DecStructFieldNotFound(-1, yys4568) + } // end switch yys4568 + } // end for yyj4568 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -56277,16 +56814,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4526 int - var yyb4526 bool - var yyhl4526 bool = l >= 0 - yyj4526++ - if yyhl4526 { - yyb4526 = yyj4526 > l + var yyj4575 int + var yyb4575 bool + var yyhl4575 bool = l >= 0 + yyj4575++ + if yyhl4575 { + yyb4575 = yyj4575 > l } else { - yyb4526 = r.CheckBreak() + yyb4575 = r.CheckBreak() } - if yyb4526 { + if yyb4575 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56296,13 +56833,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4526++ - if yyhl4526 { - yyb4526 = yyj4526 > l + yyj4575++ + if yyhl4575 { + yyb4575 = yyj4575 > l } else { - yyb4526 = r.CheckBreak() + yyb4575 = r.CheckBreak() } - if yyb4526 { + if yyb4575 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56312,13 +56849,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4526++ - if yyhl4526 { - yyb4526 = yyj4526 > l + yyj4575++ + if yyhl4575 { + yyb4575 = yyj4575 > l } else { - yyb4526 = r.CheckBreak() + yyb4575 = r.CheckBreak() } - if yyb4526 { + if yyb4575 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56326,16 +56863,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4529 := &x.ObjectMeta - yyv4529.CodecDecodeSelf(d) + yyv4578 := &x.ObjectMeta + yyv4578.CodecDecodeSelf(d) } - yyj4526++ - if yyhl4526 { - yyb4526 = yyj4526 > l + yyj4575++ + if yyhl4575 { + yyb4575 = yyj4575 > l } else { - yyb4526 = r.CheckBreak() + yyb4575 = r.CheckBreak() } - if yyb4526 { + if yyb4575 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56345,13 +56882,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4526++ - if yyhl4526 { - yyb4526 = yyj4526 > l + yyj4575++ + if yyhl4575 { + yyb4575 = yyj4575 > l } else { - yyb4526 = r.CheckBreak() + yyb4575 = r.CheckBreak() } - if yyb4526 { + if yyb4575 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56359,26 +56896,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4531 := &x.Data - yym4532 := z.DecBinary() - _ = yym4532 + yyv4580 := &x.Data + yym4581 := z.DecBinary() + _ = yym4581 if false { } else { - *yyv4531 = r.DecodeBytes(*(*[]byte)(yyv4531), false, false) + *yyv4580 = r.DecodeBytes(*(*[]byte)(yyv4580), false, false) } } for { - yyj4526++ - if yyhl4526 { - yyb4526 = yyj4526 > l + yyj4575++ + if yyhl4575 { + yyb4575 = yyj4575 > l } else { - yyb4526 = r.CheckBreak() + yyb4575 = r.CheckBreak() } - if yyb4526 { + if yyb4575 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4526-1, "") + z.DecStructFieldNotFound(yyj4575-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56388,10 +56925,10 @@ func (x codecSelfer1234) encSliceOwnerReference(v []OwnerReference, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4533 := range v { + for _, yyv4582 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4534 := &yyv4533 - yy4534.CodecEncodeSelf(e) + yy4583 := &yyv4582 + yy4583.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56401,83 +56938,83 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4535 := *v - yyh4535, yyl4535 := z.DecSliceHelperStart() - var yyc4535 bool - if yyl4535 == 0 { - if yyv4535 == nil { - yyv4535 = []OwnerReference{} - yyc4535 = true - } else if len(yyv4535) != 0 { - yyv4535 = yyv4535[:0] - yyc4535 = true + yyv4584 := *v + yyh4584, yyl4584 := z.DecSliceHelperStart() + var yyc4584 bool + if yyl4584 == 0 { + if yyv4584 == nil { + yyv4584 = []OwnerReference{} + yyc4584 = true + } else if len(yyv4584) != 0 { + yyv4584 = yyv4584[:0] + yyc4584 = true } - } else if yyl4535 > 0 { - var yyrr4535, yyrl4535 int - var yyrt4535 bool - if yyl4535 > cap(yyv4535) { + } else if yyl4584 > 0 { + var yyrr4584, yyrl4584 int + var yyrt4584 bool + if yyl4584 > cap(yyv4584) { - yyrg4535 := len(yyv4535) > 0 - yyv24535 := yyv4535 - yyrl4535, yyrt4535 = z.DecInferLen(yyl4535, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4535 { - if yyrl4535 <= cap(yyv4535) { - yyv4535 = yyv4535[:yyrl4535] + yyrg4584 := len(yyv4584) > 0 + yyv24584 := yyv4584 + yyrl4584, yyrt4584 = z.DecInferLen(yyl4584, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4584 { + if yyrl4584 <= cap(yyv4584) { + yyv4584 = yyv4584[:yyrl4584] } else { - yyv4535 = make([]OwnerReference, yyrl4535) + yyv4584 = make([]OwnerReference, yyrl4584) } } else { - yyv4535 = make([]OwnerReference, yyrl4535) + yyv4584 = make([]OwnerReference, yyrl4584) } - yyc4535 = true - yyrr4535 = len(yyv4535) - if yyrg4535 { - copy(yyv4535, yyv24535) + yyc4584 = true + yyrr4584 = len(yyv4584) + if yyrg4584 { + copy(yyv4584, yyv24584) } - } else if yyl4535 != len(yyv4535) { - yyv4535 = yyv4535[:yyl4535] - yyc4535 = true + } else if yyl4584 != len(yyv4584) { + yyv4584 = yyv4584[:yyl4584] + yyc4584 = true } - yyj4535 := 0 - for ; yyj4535 < yyrr4535; yyj4535++ { - yyh4535.ElemContainerState(yyj4535) + yyj4584 := 0 + for ; yyj4584 < yyrr4584; yyj4584++ { + yyh4584.ElemContainerState(yyj4584) if r.TryDecodeAsNil() { - yyv4535[yyj4535] = OwnerReference{} + yyv4584[yyj4584] = OwnerReference{} } else { - yyv4536 := &yyv4535[yyj4535] - yyv4536.CodecDecodeSelf(d) + yyv4585 := &yyv4584[yyj4584] + yyv4585.CodecDecodeSelf(d) } } - if yyrt4535 { - for ; yyj4535 < yyl4535; yyj4535++ { - yyv4535 = append(yyv4535, OwnerReference{}) - yyh4535.ElemContainerState(yyj4535) + if yyrt4584 { + for ; yyj4584 < yyl4584; yyj4584++ { + yyv4584 = append(yyv4584, OwnerReference{}) + yyh4584.ElemContainerState(yyj4584) if r.TryDecodeAsNil() { - yyv4535[yyj4535] = OwnerReference{} + yyv4584[yyj4584] = OwnerReference{} } else { - yyv4537 := &yyv4535[yyj4535] - yyv4537.CodecDecodeSelf(d) + yyv4586 := &yyv4584[yyj4584] + yyv4586.CodecDecodeSelf(d) } } } } else { - yyj4535 := 0 - for ; !r.CheckBreak(); yyj4535++ { + yyj4584 := 0 + for ; !r.CheckBreak(); yyj4584++ { - if yyj4535 >= len(yyv4535) { - yyv4535 = append(yyv4535, OwnerReference{}) // var yyz4535 OwnerReference - yyc4535 = true + if yyj4584 >= len(yyv4584) { + yyv4584 = append(yyv4584, OwnerReference{}) // var yyz4584 OwnerReference + yyc4584 = true } - yyh4535.ElemContainerState(yyj4535) - if yyj4535 < len(yyv4535) { + yyh4584.ElemContainerState(yyj4584) + if yyj4584 < len(yyv4584) { if r.TryDecodeAsNil() { - yyv4535[yyj4535] = OwnerReference{} + yyv4584[yyj4584] = OwnerReference{} } else { - yyv4538 := &yyv4535[yyj4535] - yyv4538.CodecDecodeSelf(d) + yyv4587 := &yyv4584[yyj4584] + yyv4587.CodecDecodeSelf(d) } } else { @@ -56485,17 +57022,17 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 } } - if yyj4535 < len(yyv4535) { - yyv4535 = yyv4535[:yyj4535] - yyc4535 = true - } else if yyj4535 == 0 && yyv4535 == nil { - yyv4535 = []OwnerReference{} - yyc4535 = true + if yyj4584 < len(yyv4584) { + yyv4584 = yyv4584[:yyj4584] + yyc4584 = true + } else if yyj4584 == 0 && yyv4584 == nil { + yyv4584 = []OwnerReference{} + yyc4584 = true } } - yyh4535.End() - if yyc4535 { - *v = yyv4535 + yyh4584.End() + if yyc4584 { + *v = yyv4584 } } @@ -56504,9 +57041,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4539 := range v { + for _, yyv4588 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4539.CodecEncodeSelf(e) + yyv4588.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56516,75 +57053,75 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4540 := *v - yyh4540, yyl4540 := z.DecSliceHelperStart() - var yyc4540 bool - if yyl4540 == 0 { - if yyv4540 == nil { - yyv4540 = []PersistentVolumeAccessMode{} - yyc4540 = true - } else if len(yyv4540) != 0 { - yyv4540 = yyv4540[:0] - yyc4540 = true + yyv4589 := *v + yyh4589, yyl4589 := z.DecSliceHelperStart() + var yyc4589 bool + if yyl4589 == 0 { + if yyv4589 == nil { + yyv4589 = []PersistentVolumeAccessMode{} + yyc4589 = true + } else if len(yyv4589) != 0 { + yyv4589 = yyv4589[:0] + yyc4589 = true } - } else if yyl4540 > 0 { - var yyrr4540, yyrl4540 int - var yyrt4540 bool - if yyl4540 > cap(yyv4540) { + } else if yyl4589 > 0 { + var yyrr4589, yyrl4589 int + var yyrt4589 bool + if yyl4589 > cap(yyv4589) { - yyrl4540, yyrt4540 = z.DecInferLen(yyl4540, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4540 { - if yyrl4540 <= cap(yyv4540) { - yyv4540 = yyv4540[:yyrl4540] + yyrl4589, yyrt4589 = z.DecInferLen(yyl4589, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4589 { + if yyrl4589 <= cap(yyv4589) { + yyv4589 = yyv4589[:yyrl4589] } else { - yyv4540 = make([]PersistentVolumeAccessMode, yyrl4540) + yyv4589 = make([]PersistentVolumeAccessMode, yyrl4589) } } else { - yyv4540 = make([]PersistentVolumeAccessMode, yyrl4540) + yyv4589 = make([]PersistentVolumeAccessMode, yyrl4589) } - yyc4540 = true - yyrr4540 = len(yyv4540) - } else if yyl4540 != len(yyv4540) { - yyv4540 = yyv4540[:yyl4540] - yyc4540 = true + yyc4589 = true + yyrr4589 = len(yyv4589) + } else if yyl4589 != len(yyv4589) { + yyv4589 = yyv4589[:yyl4589] + yyc4589 = true } - yyj4540 := 0 - for ; yyj4540 < yyrr4540; yyj4540++ { - yyh4540.ElemContainerState(yyj4540) + yyj4589 := 0 + for ; yyj4589 < yyrr4589; yyj4589++ { + yyh4589.ElemContainerState(yyj4589) if r.TryDecodeAsNil() { - yyv4540[yyj4540] = "" + yyv4589[yyj4589] = "" } else { - yyv4540[yyj4540] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4589[yyj4589] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt4540 { - for ; yyj4540 < yyl4540; yyj4540++ { - yyv4540 = append(yyv4540, "") - yyh4540.ElemContainerState(yyj4540) + if yyrt4589 { + for ; yyj4589 < yyl4589; yyj4589++ { + yyv4589 = append(yyv4589, "") + yyh4589.ElemContainerState(yyj4589) if r.TryDecodeAsNil() { - yyv4540[yyj4540] = "" + yyv4589[yyj4589] = "" } else { - yyv4540[yyj4540] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4589[yyj4589] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj4540 := 0 - for ; !r.CheckBreak(); yyj4540++ { + yyj4589 := 0 + for ; !r.CheckBreak(); yyj4589++ { - if yyj4540 >= len(yyv4540) { - yyv4540 = append(yyv4540, "") // var yyz4540 PersistentVolumeAccessMode - yyc4540 = true + if yyj4589 >= len(yyv4589) { + yyv4589 = append(yyv4589, "") // var yyz4589 PersistentVolumeAccessMode + yyc4589 = true } - yyh4540.ElemContainerState(yyj4540) - if yyj4540 < len(yyv4540) { + yyh4589.ElemContainerState(yyj4589) + if yyj4589 < len(yyv4589) { if r.TryDecodeAsNil() { - yyv4540[yyj4540] = "" + yyv4589[yyj4589] = "" } else { - yyv4540[yyj4540] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4589[yyj4589] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -56592,17 +57129,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } - if yyj4540 < len(yyv4540) { - yyv4540 = yyv4540[:yyj4540] - yyc4540 = true - } else if yyj4540 == 0 && yyv4540 == nil { - yyv4540 = []PersistentVolumeAccessMode{} - yyc4540 = true + if yyj4589 < len(yyv4589) { + yyv4589 = yyv4589[:yyj4589] + yyc4589 = true + } else if yyj4589 == 0 && yyv4589 == nil { + yyv4589 = []PersistentVolumeAccessMode{} + yyc4589 = true } } - yyh4540.End() - if yyc4540 { - *v = yyv4540 + yyh4589.End() + if yyc4589 { + *v = yyv4589 } } @@ -56611,10 +57148,10 @@ func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4544 := range v { + for _, yyv4593 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4545 := &yyv4544 - yy4545.CodecEncodeSelf(e) + yy4594 := &yyv4593 + yy4594.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56624,83 +57161,83 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4546 := *v - yyh4546, yyl4546 := z.DecSliceHelperStart() - var yyc4546 bool - if yyl4546 == 0 { - if yyv4546 == nil { - yyv4546 = []PersistentVolume{} - yyc4546 = true - } else if len(yyv4546) != 0 { - yyv4546 = yyv4546[:0] - yyc4546 = true + yyv4595 := *v + yyh4595, yyl4595 := z.DecSliceHelperStart() + var yyc4595 bool + if yyl4595 == 0 { + if yyv4595 == nil { + yyv4595 = []PersistentVolume{} + yyc4595 = true + } else if len(yyv4595) != 0 { + yyv4595 = yyv4595[:0] + yyc4595 = true } - } else if yyl4546 > 0 { - var yyrr4546, yyrl4546 int - var yyrt4546 bool - if yyl4546 > cap(yyv4546) { + } else if yyl4595 > 0 { + var yyrr4595, yyrl4595 int + var yyrt4595 bool + if yyl4595 > cap(yyv4595) { - yyrg4546 := len(yyv4546) > 0 - yyv24546 := yyv4546 - yyrl4546, yyrt4546 = z.DecInferLen(yyl4546, z.DecBasicHandle().MaxInitLen, 488) - if yyrt4546 { - if yyrl4546 <= cap(yyv4546) { - yyv4546 = yyv4546[:yyrl4546] + yyrg4595 := len(yyv4595) > 0 + yyv24595 := yyv4595 + yyrl4595, yyrt4595 = z.DecInferLen(yyl4595, z.DecBasicHandle().MaxInitLen, 488) + if yyrt4595 { + if yyrl4595 <= cap(yyv4595) { + yyv4595 = yyv4595[:yyrl4595] } else { - yyv4546 = make([]PersistentVolume, yyrl4546) + yyv4595 = make([]PersistentVolume, yyrl4595) } } else { - yyv4546 = make([]PersistentVolume, yyrl4546) + yyv4595 = make([]PersistentVolume, yyrl4595) } - yyc4546 = true - yyrr4546 = len(yyv4546) - if yyrg4546 { - copy(yyv4546, yyv24546) + yyc4595 = true + yyrr4595 = len(yyv4595) + if yyrg4595 { + copy(yyv4595, yyv24595) } - } else if yyl4546 != len(yyv4546) { - yyv4546 = yyv4546[:yyl4546] - yyc4546 = true + } else if yyl4595 != len(yyv4595) { + yyv4595 = yyv4595[:yyl4595] + yyc4595 = true } - yyj4546 := 0 - for ; yyj4546 < yyrr4546; yyj4546++ { - yyh4546.ElemContainerState(yyj4546) + yyj4595 := 0 + for ; yyj4595 < yyrr4595; yyj4595++ { + yyh4595.ElemContainerState(yyj4595) if r.TryDecodeAsNil() { - yyv4546[yyj4546] = PersistentVolume{} + yyv4595[yyj4595] = PersistentVolume{} } else { - yyv4547 := &yyv4546[yyj4546] - yyv4547.CodecDecodeSelf(d) + yyv4596 := &yyv4595[yyj4595] + yyv4596.CodecDecodeSelf(d) } } - if yyrt4546 { - for ; yyj4546 < yyl4546; yyj4546++ { - yyv4546 = append(yyv4546, PersistentVolume{}) - yyh4546.ElemContainerState(yyj4546) + if yyrt4595 { + for ; yyj4595 < yyl4595; yyj4595++ { + yyv4595 = append(yyv4595, PersistentVolume{}) + yyh4595.ElemContainerState(yyj4595) if r.TryDecodeAsNil() { - yyv4546[yyj4546] = PersistentVolume{} + yyv4595[yyj4595] = PersistentVolume{} } else { - yyv4548 := &yyv4546[yyj4546] - yyv4548.CodecDecodeSelf(d) + yyv4597 := &yyv4595[yyj4595] + yyv4597.CodecDecodeSelf(d) } } } } else { - yyj4546 := 0 - for ; !r.CheckBreak(); yyj4546++ { + yyj4595 := 0 + for ; !r.CheckBreak(); yyj4595++ { - if yyj4546 >= len(yyv4546) { - yyv4546 = append(yyv4546, PersistentVolume{}) // var yyz4546 PersistentVolume - yyc4546 = true + if yyj4595 >= len(yyv4595) { + yyv4595 = append(yyv4595, PersistentVolume{}) // var yyz4595 PersistentVolume + yyc4595 = true } - yyh4546.ElemContainerState(yyj4546) - if yyj4546 < len(yyv4546) { + yyh4595.ElemContainerState(yyj4595) + if yyj4595 < len(yyv4595) { if r.TryDecodeAsNil() { - yyv4546[yyj4546] = PersistentVolume{} + yyv4595[yyj4595] = PersistentVolume{} } else { - yyv4549 := &yyv4546[yyj4546] - yyv4549.CodecDecodeSelf(d) + yyv4598 := &yyv4595[yyj4595] + yyv4598.CodecDecodeSelf(d) } } else { @@ -56708,17 +57245,17 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj4546 < len(yyv4546) { - yyv4546 = yyv4546[:yyj4546] - yyc4546 = true - } else if yyj4546 == 0 && yyv4546 == nil { - yyv4546 = []PersistentVolume{} - yyc4546 = true + if yyj4595 < len(yyv4595) { + yyv4595 = yyv4595[:yyj4595] + yyc4595 = true + } else if yyj4595 == 0 && yyv4595 == nil { + yyv4595 = []PersistentVolume{} + yyc4595 = true } } - yyh4546.End() - if yyc4546 { - *v = yyv4546 + yyh4595.End() + if yyc4595 { + *v = yyv4595 } } @@ -56727,10 +57264,10 @@ func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4550 := range v { + for _, yyv4599 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4551 := &yyv4550 - yy4551.CodecEncodeSelf(e) + yy4600 := &yyv4599 + yy4600.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56740,83 +57277,83 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4552 := *v - yyh4552, yyl4552 := z.DecSliceHelperStart() - var yyc4552 bool - if yyl4552 == 0 { - if yyv4552 == nil { - yyv4552 = []PersistentVolumeClaim{} - yyc4552 = true - } else if len(yyv4552) != 0 { - yyv4552 = yyv4552[:0] - yyc4552 = true + yyv4601 := *v + yyh4601, yyl4601 := z.DecSliceHelperStart() + var yyc4601 bool + if yyl4601 == 0 { + if yyv4601 == nil { + yyv4601 = []PersistentVolumeClaim{} + yyc4601 = true + } else if len(yyv4601) != 0 { + yyv4601 = yyv4601[:0] + yyc4601 = true } - } else if yyl4552 > 0 { - var yyrr4552, yyrl4552 int - var yyrt4552 bool - if yyl4552 > cap(yyv4552) { + } else if yyl4601 > 0 { + var yyrr4601, yyrl4601 int + var yyrt4601 bool + if yyl4601 > cap(yyv4601) { - yyrg4552 := len(yyv4552) > 0 - yyv24552 := yyv4552 - yyrl4552, yyrt4552 = z.DecInferLen(yyl4552, z.DecBasicHandle().MaxInitLen, 368) - if yyrt4552 { - if yyrl4552 <= cap(yyv4552) { - yyv4552 = yyv4552[:yyrl4552] + yyrg4601 := len(yyv4601) > 0 + yyv24601 := yyv4601 + yyrl4601, yyrt4601 = z.DecInferLen(yyl4601, z.DecBasicHandle().MaxInitLen, 368) + if yyrt4601 { + if yyrl4601 <= cap(yyv4601) { + yyv4601 = yyv4601[:yyrl4601] } else { - yyv4552 = make([]PersistentVolumeClaim, yyrl4552) + yyv4601 = make([]PersistentVolumeClaim, yyrl4601) } } else { - yyv4552 = make([]PersistentVolumeClaim, yyrl4552) + yyv4601 = make([]PersistentVolumeClaim, yyrl4601) } - yyc4552 = true - yyrr4552 = len(yyv4552) - if yyrg4552 { - copy(yyv4552, yyv24552) + yyc4601 = true + yyrr4601 = len(yyv4601) + if yyrg4601 { + copy(yyv4601, yyv24601) } - } else if yyl4552 != len(yyv4552) { - yyv4552 = yyv4552[:yyl4552] - yyc4552 = true + } else if yyl4601 != len(yyv4601) { + yyv4601 = yyv4601[:yyl4601] + yyc4601 = true } - yyj4552 := 0 - for ; yyj4552 < yyrr4552; yyj4552++ { - yyh4552.ElemContainerState(yyj4552) + yyj4601 := 0 + for ; yyj4601 < yyrr4601; yyj4601++ { + yyh4601.ElemContainerState(yyj4601) if r.TryDecodeAsNil() { - yyv4552[yyj4552] = PersistentVolumeClaim{} + yyv4601[yyj4601] = PersistentVolumeClaim{} } else { - yyv4553 := &yyv4552[yyj4552] - yyv4553.CodecDecodeSelf(d) + yyv4602 := &yyv4601[yyj4601] + yyv4602.CodecDecodeSelf(d) } } - if yyrt4552 { - for ; yyj4552 < yyl4552; yyj4552++ { - yyv4552 = append(yyv4552, PersistentVolumeClaim{}) - yyh4552.ElemContainerState(yyj4552) + if yyrt4601 { + for ; yyj4601 < yyl4601; yyj4601++ { + yyv4601 = append(yyv4601, PersistentVolumeClaim{}) + yyh4601.ElemContainerState(yyj4601) if r.TryDecodeAsNil() { - yyv4552[yyj4552] = PersistentVolumeClaim{} + yyv4601[yyj4601] = PersistentVolumeClaim{} } else { - yyv4554 := &yyv4552[yyj4552] - yyv4554.CodecDecodeSelf(d) + yyv4603 := &yyv4601[yyj4601] + yyv4603.CodecDecodeSelf(d) } } } } else { - yyj4552 := 0 - for ; !r.CheckBreak(); yyj4552++ { + yyj4601 := 0 + for ; !r.CheckBreak(); yyj4601++ { - if yyj4552 >= len(yyv4552) { - yyv4552 = append(yyv4552, PersistentVolumeClaim{}) // var yyz4552 PersistentVolumeClaim - yyc4552 = true + if yyj4601 >= len(yyv4601) { + yyv4601 = append(yyv4601, PersistentVolumeClaim{}) // var yyz4601 PersistentVolumeClaim + yyc4601 = true } - yyh4552.ElemContainerState(yyj4552) - if yyj4552 < len(yyv4552) { + yyh4601.ElemContainerState(yyj4601) + if yyj4601 < len(yyv4601) { if r.TryDecodeAsNil() { - yyv4552[yyj4552] = PersistentVolumeClaim{} + yyv4601[yyj4601] = PersistentVolumeClaim{} } else { - yyv4555 := &yyv4552[yyj4552] - yyv4555.CodecDecodeSelf(d) + yyv4604 := &yyv4601[yyj4601] + yyv4604.CodecDecodeSelf(d) } } else { @@ -56824,17 +57361,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj4552 < len(yyv4552) { - yyv4552 = yyv4552[:yyj4552] - yyc4552 = true - } else if yyj4552 == 0 && yyv4552 == nil { - yyv4552 = []PersistentVolumeClaim{} - yyc4552 = true + if yyj4601 < len(yyv4601) { + yyv4601 = yyv4601[:yyj4601] + yyc4601 = true + } else if yyj4601 == 0 && yyv4601 == nil { + yyv4601 = []PersistentVolumeClaim{} + yyc4601 = true } } - yyh4552.End() - if yyc4552 { - *v = yyv4552 + yyh4601.End() + if yyc4601 { + *v = yyv4601 } } @@ -56843,10 +57380,10 @@ func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4556 := range v { + for _, yyv4605 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4557 := &yyv4556 - yy4557.CodecEncodeSelf(e) + yy4606 := &yyv4605 + yy4606.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56856,83 +57393,83 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4558 := *v - yyh4558, yyl4558 := z.DecSliceHelperStart() - var yyc4558 bool - if yyl4558 == 0 { - if yyv4558 == nil { - yyv4558 = []KeyToPath{} - yyc4558 = true - } else if len(yyv4558) != 0 { - yyv4558 = yyv4558[:0] - yyc4558 = true + yyv4607 := *v + yyh4607, yyl4607 := z.DecSliceHelperStart() + var yyc4607 bool + if yyl4607 == 0 { + if yyv4607 == nil { + yyv4607 = []KeyToPath{} + yyc4607 = true + } else if len(yyv4607) != 0 { + yyv4607 = yyv4607[:0] + yyc4607 = true } - } else if yyl4558 > 0 { - var yyrr4558, yyrl4558 int - var yyrt4558 bool - if yyl4558 > cap(yyv4558) { + } else if yyl4607 > 0 { + var yyrr4607, yyrl4607 int + var yyrt4607 bool + if yyl4607 > cap(yyv4607) { - yyrg4558 := len(yyv4558) > 0 - yyv24558 := yyv4558 - yyrl4558, yyrt4558 = z.DecInferLen(yyl4558, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4558 { - if yyrl4558 <= cap(yyv4558) { - yyv4558 = yyv4558[:yyrl4558] + yyrg4607 := len(yyv4607) > 0 + yyv24607 := yyv4607 + yyrl4607, yyrt4607 = z.DecInferLen(yyl4607, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4607 { + if yyrl4607 <= cap(yyv4607) { + yyv4607 = yyv4607[:yyrl4607] } else { - yyv4558 = make([]KeyToPath, yyrl4558) + yyv4607 = make([]KeyToPath, yyrl4607) } } else { - yyv4558 = make([]KeyToPath, yyrl4558) + yyv4607 = make([]KeyToPath, yyrl4607) } - yyc4558 = true - yyrr4558 = len(yyv4558) - if yyrg4558 { - copy(yyv4558, yyv24558) + yyc4607 = true + yyrr4607 = len(yyv4607) + if yyrg4607 { + copy(yyv4607, yyv24607) } - } else if yyl4558 != len(yyv4558) { - yyv4558 = yyv4558[:yyl4558] - yyc4558 = true + } else if yyl4607 != len(yyv4607) { + yyv4607 = yyv4607[:yyl4607] + yyc4607 = true } - yyj4558 := 0 - for ; yyj4558 < yyrr4558; yyj4558++ { - yyh4558.ElemContainerState(yyj4558) + yyj4607 := 0 + for ; yyj4607 < yyrr4607; yyj4607++ { + yyh4607.ElemContainerState(yyj4607) if r.TryDecodeAsNil() { - yyv4558[yyj4558] = KeyToPath{} + yyv4607[yyj4607] = KeyToPath{} } else { - yyv4559 := &yyv4558[yyj4558] - yyv4559.CodecDecodeSelf(d) + yyv4608 := &yyv4607[yyj4607] + yyv4608.CodecDecodeSelf(d) } } - if yyrt4558 { - for ; yyj4558 < yyl4558; yyj4558++ { - yyv4558 = append(yyv4558, KeyToPath{}) - yyh4558.ElemContainerState(yyj4558) + if yyrt4607 { + for ; yyj4607 < yyl4607; yyj4607++ { + yyv4607 = append(yyv4607, KeyToPath{}) + yyh4607.ElemContainerState(yyj4607) if r.TryDecodeAsNil() { - yyv4558[yyj4558] = KeyToPath{} + yyv4607[yyj4607] = KeyToPath{} } else { - yyv4560 := &yyv4558[yyj4558] - yyv4560.CodecDecodeSelf(d) + yyv4609 := &yyv4607[yyj4607] + yyv4609.CodecDecodeSelf(d) } } } } else { - yyj4558 := 0 - for ; !r.CheckBreak(); yyj4558++ { + yyj4607 := 0 + for ; !r.CheckBreak(); yyj4607++ { - if yyj4558 >= len(yyv4558) { - yyv4558 = append(yyv4558, KeyToPath{}) // var yyz4558 KeyToPath - yyc4558 = true + if yyj4607 >= len(yyv4607) { + yyv4607 = append(yyv4607, KeyToPath{}) // var yyz4607 KeyToPath + yyc4607 = true } - yyh4558.ElemContainerState(yyj4558) - if yyj4558 < len(yyv4558) { + yyh4607.ElemContainerState(yyj4607) + if yyj4607 < len(yyv4607) { if r.TryDecodeAsNil() { - yyv4558[yyj4558] = KeyToPath{} + yyv4607[yyj4607] = KeyToPath{} } else { - yyv4561 := &yyv4558[yyj4558] - yyv4561.CodecDecodeSelf(d) + yyv4610 := &yyv4607[yyj4607] + yyv4610.CodecDecodeSelf(d) } } else { @@ -56940,17 +57477,17 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) } } - if yyj4558 < len(yyv4558) { - yyv4558 = yyv4558[:yyj4558] - yyc4558 = true - } else if yyj4558 == 0 && yyv4558 == nil { - yyv4558 = []KeyToPath{} - yyc4558 = true + if yyj4607 < len(yyv4607) { + yyv4607 = yyv4607[:yyj4607] + yyc4607 = true + } else if yyj4607 == 0 && yyv4607 == nil { + yyv4607 = []KeyToPath{} + yyc4607 = true } } - yyh4558.End() - if yyc4558 { - *v = yyv4558 + yyh4607.End() + if yyc4607 { + *v = yyv4607 } } @@ -56959,10 +57496,10 @@ func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4562 := range v { + for _, yyv4611 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4563 := &yyv4562 - yy4563.CodecEncodeSelf(e) + yy4612 := &yyv4611 + yy4612.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56972,83 +57509,83 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4564 := *v - yyh4564, yyl4564 := z.DecSliceHelperStart() - var yyc4564 bool - if yyl4564 == 0 { - if yyv4564 == nil { - yyv4564 = []HTTPHeader{} - yyc4564 = true - } else if len(yyv4564) != 0 { - yyv4564 = yyv4564[:0] - yyc4564 = true + yyv4613 := *v + yyh4613, yyl4613 := z.DecSliceHelperStart() + var yyc4613 bool + if yyl4613 == 0 { + if yyv4613 == nil { + yyv4613 = []HTTPHeader{} + yyc4613 = true + } else if len(yyv4613) != 0 { + yyv4613 = yyv4613[:0] + yyc4613 = true } - } else if yyl4564 > 0 { - var yyrr4564, yyrl4564 int - var yyrt4564 bool - if yyl4564 > cap(yyv4564) { + } else if yyl4613 > 0 { + var yyrr4613, yyrl4613 int + var yyrt4613 bool + if yyl4613 > cap(yyv4613) { - yyrg4564 := len(yyv4564) > 0 - yyv24564 := yyv4564 - yyrl4564, yyrt4564 = z.DecInferLen(yyl4564, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4564 { - if yyrl4564 <= cap(yyv4564) { - yyv4564 = yyv4564[:yyrl4564] + yyrg4613 := len(yyv4613) > 0 + yyv24613 := yyv4613 + yyrl4613, yyrt4613 = z.DecInferLen(yyl4613, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4613 { + if yyrl4613 <= cap(yyv4613) { + yyv4613 = yyv4613[:yyrl4613] } else { - yyv4564 = make([]HTTPHeader, yyrl4564) + yyv4613 = make([]HTTPHeader, yyrl4613) } } else { - yyv4564 = make([]HTTPHeader, yyrl4564) + yyv4613 = make([]HTTPHeader, yyrl4613) } - yyc4564 = true - yyrr4564 = len(yyv4564) - if yyrg4564 { - copy(yyv4564, yyv24564) + yyc4613 = true + yyrr4613 = len(yyv4613) + if yyrg4613 { + copy(yyv4613, yyv24613) } - } else if yyl4564 != len(yyv4564) { - yyv4564 = yyv4564[:yyl4564] - yyc4564 = true + } else if yyl4613 != len(yyv4613) { + yyv4613 = yyv4613[:yyl4613] + yyc4613 = true } - yyj4564 := 0 - for ; yyj4564 < yyrr4564; yyj4564++ { - yyh4564.ElemContainerState(yyj4564) + yyj4613 := 0 + for ; yyj4613 < yyrr4613; yyj4613++ { + yyh4613.ElemContainerState(yyj4613) if r.TryDecodeAsNil() { - yyv4564[yyj4564] = HTTPHeader{} + yyv4613[yyj4613] = HTTPHeader{} } else { - yyv4565 := &yyv4564[yyj4564] - yyv4565.CodecDecodeSelf(d) + yyv4614 := &yyv4613[yyj4613] + yyv4614.CodecDecodeSelf(d) } } - if yyrt4564 { - for ; yyj4564 < yyl4564; yyj4564++ { - yyv4564 = append(yyv4564, HTTPHeader{}) - yyh4564.ElemContainerState(yyj4564) + if yyrt4613 { + for ; yyj4613 < yyl4613; yyj4613++ { + yyv4613 = append(yyv4613, HTTPHeader{}) + yyh4613.ElemContainerState(yyj4613) if r.TryDecodeAsNil() { - yyv4564[yyj4564] = HTTPHeader{} + yyv4613[yyj4613] = HTTPHeader{} } else { - yyv4566 := &yyv4564[yyj4564] - yyv4566.CodecDecodeSelf(d) + yyv4615 := &yyv4613[yyj4613] + yyv4615.CodecDecodeSelf(d) } } } } else { - yyj4564 := 0 - for ; !r.CheckBreak(); yyj4564++ { + yyj4613 := 0 + for ; !r.CheckBreak(); yyj4613++ { - if yyj4564 >= len(yyv4564) { - yyv4564 = append(yyv4564, HTTPHeader{}) // var yyz4564 HTTPHeader - yyc4564 = true + if yyj4613 >= len(yyv4613) { + yyv4613 = append(yyv4613, HTTPHeader{}) // var yyz4613 HTTPHeader + yyc4613 = true } - yyh4564.ElemContainerState(yyj4564) - if yyj4564 < len(yyv4564) { + yyh4613.ElemContainerState(yyj4613) + if yyj4613 < len(yyv4613) { if r.TryDecodeAsNil() { - yyv4564[yyj4564] = HTTPHeader{} + yyv4613[yyj4613] = HTTPHeader{} } else { - yyv4567 := &yyv4564[yyj4564] - yyv4567.CodecDecodeSelf(d) + yyv4616 := &yyv4613[yyj4613] + yyv4616.CodecDecodeSelf(d) } } else { @@ -57056,17 +57593,17 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode } } - if yyj4564 < len(yyv4564) { - yyv4564 = yyv4564[:yyj4564] - yyc4564 = true - } else if yyj4564 == 0 && yyv4564 == nil { - yyv4564 = []HTTPHeader{} - yyc4564 = true + if yyj4613 < len(yyv4613) { + yyv4613 = yyv4613[:yyj4613] + yyc4613 = true + } else if yyj4613 == 0 && yyv4613 == nil { + yyv4613 = []HTTPHeader{} + yyc4613 = true } } - yyh4564.End() - if yyc4564 { - *v = yyv4564 + yyh4613.End() + if yyc4613 { + *v = yyv4613 } } @@ -57075,9 +57612,9 @@ func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4568 := range v { + for _, yyv4617 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4568.CodecEncodeSelf(e) + yyv4617.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57087,75 +57624,75 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4569 := *v - yyh4569, yyl4569 := z.DecSliceHelperStart() - var yyc4569 bool - if yyl4569 == 0 { - if yyv4569 == nil { - yyv4569 = []Capability{} - yyc4569 = true - } else if len(yyv4569) != 0 { - yyv4569 = yyv4569[:0] - yyc4569 = true + yyv4618 := *v + yyh4618, yyl4618 := z.DecSliceHelperStart() + var yyc4618 bool + if yyl4618 == 0 { + if yyv4618 == nil { + yyv4618 = []Capability{} + yyc4618 = true + } else if len(yyv4618) != 0 { + yyv4618 = yyv4618[:0] + yyc4618 = true } - } else if yyl4569 > 0 { - var yyrr4569, yyrl4569 int - var yyrt4569 bool - if yyl4569 > cap(yyv4569) { + } else if yyl4618 > 0 { + var yyrr4618, yyrl4618 int + var yyrt4618 bool + if yyl4618 > cap(yyv4618) { - yyrl4569, yyrt4569 = z.DecInferLen(yyl4569, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4569 { - if yyrl4569 <= cap(yyv4569) { - yyv4569 = yyv4569[:yyrl4569] + yyrl4618, yyrt4618 = z.DecInferLen(yyl4618, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4618 { + if yyrl4618 <= cap(yyv4618) { + yyv4618 = yyv4618[:yyrl4618] } else { - yyv4569 = make([]Capability, yyrl4569) + yyv4618 = make([]Capability, yyrl4618) } } else { - yyv4569 = make([]Capability, yyrl4569) + yyv4618 = make([]Capability, yyrl4618) } - yyc4569 = true - yyrr4569 = len(yyv4569) - } else if yyl4569 != len(yyv4569) { - yyv4569 = yyv4569[:yyl4569] - yyc4569 = true + yyc4618 = true + yyrr4618 = len(yyv4618) + } else if yyl4618 != len(yyv4618) { + yyv4618 = yyv4618[:yyl4618] + yyc4618 = true } - yyj4569 := 0 - for ; yyj4569 < yyrr4569; yyj4569++ { - yyh4569.ElemContainerState(yyj4569) + yyj4618 := 0 + for ; yyj4618 < yyrr4618; yyj4618++ { + yyh4618.ElemContainerState(yyj4618) if r.TryDecodeAsNil() { - yyv4569[yyj4569] = "" + yyv4618[yyj4618] = "" } else { - yyv4569[yyj4569] = Capability(r.DecodeString()) + yyv4618[yyj4618] = Capability(r.DecodeString()) } } - if yyrt4569 { - for ; yyj4569 < yyl4569; yyj4569++ { - yyv4569 = append(yyv4569, "") - yyh4569.ElemContainerState(yyj4569) + if yyrt4618 { + for ; yyj4618 < yyl4618; yyj4618++ { + yyv4618 = append(yyv4618, "") + yyh4618.ElemContainerState(yyj4618) if r.TryDecodeAsNil() { - yyv4569[yyj4569] = "" + yyv4618[yyj4618] = "" } else { - yyv4569[yyj4569] = Capability(r.DecodeString()) + yyv4618[yyj4618] = Capability(r.DecodeString()) } } } } else { - yyj4569 := 0 - for ; !r.CheckBreak(); yyj4569++ { + yyj4618 := 0 + for ; !r.CheckBreak(); yyj4618++ { - if yyj4569 >= len(yyv4569) { - yyv4569 = append(yyv4569, "") // var yyz4569 Capability - yyc4569 = true + if yyj4618 >= len(yyv4618) { + yyv4618 = append(yyv4618, "") // var yyz4618 Capability + yyc4618 = true } - yyh4569.ElemContainerState(yyj4569) - if yyj4569 < len(yyv4569) { + yyh4618.ElemContainerState(yyj4618) + if yyj4618 < len(yyv4618) { if r.TryDecodeAsNil() { - yyv4569[yyj4569] = "" + yyv4618[yyj4618] = "" } else { - yyv4569[yyj4569] = Capability(r.DecodeString()) + yyv4618[yyj4618] = Capability(r.DecodeString()) } } else { @@ -57163,17 +57700,17 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } - if yyj4569 < len(yyv4569) { - yyv4569 = yyv4569[:yyj4569] - yyc4569 = true - } else if yyj4569 == 0 && yyv4569 == nil { - yyv4569 = []Capability{} - yyc4569 = true + if yyj4618 < len(yyv4618) { + yyv4618 = yyv4618[:yyj4618] + yyc4618 = true + } else if yyj4618 == 0 && yyv4618 == nil { + yyv4618 = []Capability{} + yyc4618 = true } } - yyh4569.End() - if yyc4569 { - *v = yyv4569 + yyh4618.End() + if yyc4618 { + *v = yyv4618 } } @@ -57182,10 +57719,10 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4573 := range v { + for _, yyv4622 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4574 := &yyv4573 - yy4574.CodecEncodeSelf(e) + yy4623 := &yyv4622 + yy4623.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57195,83 +57732,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4575 := *v - yyh4575, yyl4575 := z.DecSliceHelperStart() - var yyc4575 bool - if yyl4575 == 0 { - if yyv4575 == nil { - yyv4575 = []ContainerPort{} - yyc4575 = true - } else if len(yyv4575) != 0 { - yyv4575 = yyv4575[:0] - yyc4575 = true + yyv4624 := *v + yyh4624, yyl4624 := z.DecSliceHelperStart() + var yyc4624 bool + if yyl4624 == 0 { + if yyv4624 == nil { + yyv4624 = []ContainerPort{} + yyc4624 = true + } else if len(yyv4624) != 0 { + yyv4624 = yyv4624[:0] + yyc4624 = true } - } else if yyl4575 > 0 { - var yyrr4575, yyrl4575 int - var yyrt4575 bool - if yyl4575 > cap(yyv4575) { + } else if yyl4624 > 0 { + var yyrr4624, yyrl4624 int + var yyrt4624 bool + if yyl4624 > cap(yyv4624) { - yyrg4575 := len(yyv4575) > 0 - yyv24575 := yyv4575 - yyrl4575, yyrt4575 = z.DecInferLen(yyl4575, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4575 { - if yyrl4575 <= cap(yyv4575) { - yyv4575 = yyv4575[:yyrl4575] + yyrg4624 := len(yyv4624) > 0 + yyv24624 := yyv4624 + yyrl4624, yyrt4624 = z.DecInferLen(yyl4624, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4624 { + if yyrl4624 <= cap(yyv4624) { + yyv4624 = yyv4624[:yyrl4624] } else { - yyv4575 = make([]ContainerPort, yyrl4575) + yyv4624 = make([]ContainerPort, yyrl4624) } } else { - yyv4575 = make([]ContainerPort, yyrl4575) + yyv4624 = make([]ContainerPort, yyrl4624) } - yyc4575 = true - yyrr4575 = len(yyv4575) - if yyrg4575 { - copy(yyv4575, yyv24575) + yyc4624 = true + yyrr4624 = len(yyv4624) + if yyrg4624 { + copy(yyv4624, yyv24624) } - } else if yyl4575 != len(yyv4575) { - yyv4575 = yyv4575[:yyl4575] - yyc4575 = true + } else if yyl4624 != len(yyv4624) { + yyv4624 = yyv4624[:yyl4624] + yyc4624 = true } - yyj4575 := 0 - for ; yyj4575 < yyrr4575; yyj4575++ { - yyh4575.ElemContainerState(yyj4575) + yyj4624 := 0 + for ; yyj4624 < yyrr4624; yyj4624++ { + yyh4624.ElemContainerState(yyj4624) if r.TryDecodeAsNil() { - yyv4575[yyj4575] = ContainerPort{} + yyv4624[yyj4624] = ContainerPort{} } else { - yyv4576 := &yyv4575[yyj4575] - yyv4576.CodecDecodeSelf(d) + yyv4625 := &yyv4624[yyj4624] + yyv4625.CodecDecodeSelf(d) } } - if yyrt4575 { - for ; yyj4575 < yyl4575; yyj4575++ { - yyv4575 = append(yyv4575, ContainerPort{}) - yyh4575.ElemContainerState(yyj4575) + if yyrt4624 { + for ; yyj4624 < yyl4624; yyj4624++ { + yyv4624 = append(yyv4624, ContainerPort{}) + yyh4624.ElemContainerState(yyj4624) if r.TryDecodeAsNil() { - yyv4575[yyj4575] = ContainerPort{} + yyv4624[yyj4624] = ContainerPort{} } else { - yyv4577 := &yyv4575[yyj4575] - yyv4577.CodecDecodeSelf(d) + yyv4626 := &yyv4624[yyj4624] + yyv4626.CodecDecodeSelf(d) } } } } else { - yyj4575 := 0 - for ; !r.CheckBreak(); yyj4575++ { + yyj4624 := 0 + for ; !r.CheckBreak(); yyj4624++ { - if yyj4575 >= len(yyv4575) { - yyv4575 = append(yyv4575, ContainerPort{}) // var yyz4575 ContainerPort - yyc4575 = true + if yyj4624 >= len(yyv4624) { + yyv4624 = append(yyv4624, ContainerPort{}) // var yyz4624 ContainerPort + yyc4624 = true } - yyh4575.ElemContainerState(yyj4575) - if yyj4575 < len(yyv4575) { + yyh4624.ElemContainerState(yyj4624) + if yyj4624 < len(yyv4624) { if r.TryDecodeAsNil() { - yyv4575[yyj4575] = ContainerPort{} + yyv4624[yyj4624] = ContainerPort{} } else { - yyv4578 := &yyv4575[yyj4575] - yyv4578.CodecDecodeSelf(d) + yyv4627 := &yyv4624[yyj4624] + yyv4627.CodecDecodeSelf(d) } } else { @@ -57279,17 +57816,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj4575 < len(yyv4575) { - yyv4575 = yyv4575[:yyj4575] - yyc4575 = true - } else if yyj4575 == 0 && yyv4575 == nil { - yyv4575 = []ContainerPort{} - yyc4575 = true + if yyj4624 < len(yyv4624) { + yyv4624 = yyv4624[:yyj4624] + yyc4624 = true + } else if yyj4624 == 0 && yyv4624 == nil { + yyv4624 = []ContainerPort{} + yyc4624 = true } } - yyh4575.End() - if yyc4575 { - *v = yyv4575 + yyh4624.End() + if yyc4624 { + *v = yyv4624 } } @@ -57298,10 +57835,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4579 := range v { + for _, yyv4628 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4580 := &yyv4579 - yy4580.CodecEncodeSelf(e) + yy4629 := &yyv4628 + yy4629.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57311,83 +57848,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4581 := *v - yyh4581, yyl4581 := z.DecSliceHelperStart() - var yyc4581 bool - if yyl4581 == 0 { - if yyv4581 == nil { - yyv4581 = []EnvVar{} - yyc4581 = true - } else if len(yyv4581) != 0 { - yyv4581 = yyv4581[:0] - yyc4581 = true + yyv4630 := *v + yyh4630, yyl4630 := z.DecSliceHelperStart() + var yyc4630 bool + if yyl4630 == 0 { + if yyv4630 == nil { + yyv4630 = []EnvVar{} + yyc4630 = true + } else if len(yyv4630) != 0 { + yyv4630 = yyv4630[:0] + yyc4630 = true } - } else if yyl4581 > 0 { - var yyrr4581, yyrl4581 int - var yyrt4581 bool - if yyl4581 > cap(yyv4581) { + } else if yyl4630 > 0 { + var yyrr4630, yyrl4630 int + var yyrt4630 bool + if yyl4630 > cap(yyv4630) { - yyrg4581 := len(yyv4581) > 0 - yyv24581 := yyv4581 - yyrl4581, yyrt4581 = z.DecInferLen(yyl4581, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4581 { - if yyrl4581 <= cap(yyv4581) { - yyv4581 = yyv4581[:yyrl4581] + yyrg4630 := len(yyv4630) > 0 + yyv24630 := yyv4630 + yyrl4630, yyrt4630 = z.DecInferLen(yyl4630, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4630 { + if yyrl4630 <= cap(yyv4630) { + yyv4630 = yyv4630[:yyrl4630] } else { - yyv4581 = make([]EnvVar, yyrl4581) + yyv4630 = make([]EnvVar, yyrl4630) } } else { - yyv4581 = make([]EnvVar, yyrl4581) + yyv4630 = make([]EnvVar, yyrl4630) } - yyc4581 = true - yyrr4581 = len(yyv4581) - if yyrg4581 { - copy(yyv4581, yyv24581) + yyc4630 = true + yyrr4630 = len(yyv4630) + if yyrg4630 { + copy(yyv4630, yyv24630) } - } else if yyl4581 != len(yyv4581) { - yyv4581 = yyv4581[:yyl4581] - yyc4581 = true + } else if yyl4630 != len(yyv4630) { + yyv4630 = yyv4630[:yyl4630] + yyc4630 = true } - yyj4581 := 0 - for ; yyj4581 < yyrr4581; yyj4581++ { - yyh4581.ElemContainerState(yyj4581) + yyj4630 := 0 + for ; yyj4630 < yyrr4630; yyj4630++ { + yyh4630.ElemContainerState(yyj4630) if r.TryDecodeAsNil() { - yyv4581[yyj4581] = EnvVar{} + yyv4630[yyj4630] = EnvVar{} } else { - yyv4582 := &yyv4581[yyj4581] - yyv4582.CodecDecodeSelf(d) + yyv4631 := &yyv4630[yyj4630] + yyv4631.CodecDecodeSelf(d) } } - if yyrt4581 { - for ; yyj4581 < yyl4581; yyj4581++ { - yyv4581 = append(yyv4581, EnvVar{}) - yyh4581.ElemContainerState(yyj4581) + if yyrt4630 { + for ; yyj4630 < yyl4630; yyj4630++ { + yyv4630 = append(yyv4630, EnvVar{}) + yyh4630.ElemContainerState(yyj4630) if r.TryDecodeAsNil() { - yyv4581[yyj4581] = EnvVar{} + yyv4630[yyj4630] = EnvVar{} } else { - yyv4583 := &yyv4581[yyj4581] - yyv4583.CodecDecodeSelf(d) + yyv4632 := &yyv4630[yyj4630] + yyv4632.CodecDecodeSelf(d) } } } } else { - yyj4581 := 0 - for ; !r.CheckBreak(); yyj4581++ { + yyj4630 := 0 + for ; !r.CheckBreak(); yyj4630++ { - if yyj4581 >= len(yyv4581) { - yyv4581 = append(yyv4581, EnvVar{}) // var yyz4581 EnvVar - yyc4581 = true + if yyj4630 >= len(yyv4630) { + yyv4630 = append(yyv4630, EnvVar{}) // var yyz4630 EnvVar + yyc4630 = true } - yyh4581.ElemContainerState(yyj4581) - if yyj4581 < len(yyv4581) { + yyh4630.ElemContainerState(yyj4630) + if yyj4630 < len(yyv4630) { if r.TryDecodeAsNil() { - yyv4581[yyj4581] = EnvVar{} + yyv4630[yyj4630] = EnvVar{} } else { - yyv4584 := &yyv4581[yyj4581] - yyv4584.CodecDecodeSelf(d) + yyv4633 := &yyv4630[yyj4630] + yyv4633.CodecDecodeSelf(d) } } else { @@ -57395,17 +57932,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj4581 < len(yyv4581) { - yyv4581 = yyv4581[:yyj4581] - yyc4581 = true - } else if yyj4581 == 0 && yyv4581 == nil { - yyv4581 = []EnvVar{} - yyc4581 = true + if yyj4630 < len(yyv4630) { + yyv4630 = yyv4630[:yyj4630] + yyc4630 = true + } else if yyj4630 == 0 && yyv4630 == nil { + yyv4630 = []EnvVar{} + yyc4630 = true } } - yyh4581.End() - if yyc4581 { - *v = yyv4581 + yyh4630.End() + if yyc4630 { + *v = yyv4630 } } @@ -57414,10 +57951,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4585 := range v { + for _, yyv4634 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4586 := &yyv4585 - yy4586.CodecEncodeSelf(e) + yy4635 := &yyv4634 + yy4635.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57427,83 +57964,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4587 := *v - yyh4587, yyl4587 := z.DecSliceHelperStart() - var yyc4587 bool - if yyl4587 == 0 { - if yyv4587 == nil { - yyv4587 = []VolumeMount{} - yyc4587 = true - } else if len(yyv4587) != 0 { - yyv4587 = yyv4587[:0] - yyc4587 = true + yyv4636 := *v + yyh4636, yyl4636 := z.DecSliceHelperStart() + var yyc4636 bool + if yyl4636 == 0 { + if yyv4636 == nil { + yyv4636 = []VolumeMount{} + yyc4636 = true + } else if len(yyv4636) != 0 { + yyv4636 = yyv4636[:0] + yyc4636 = true } - } else if yyl4587 > 0 { - var yyrr4587, yyrl4587 int - var yyrt4587 bool - if yyl4587 > cap(yyv4587) { + } else if yyl4636 > 0 { + var yyrr4636, yyrl4636 int + var yyrt4636 bool + if yyl4636 > cap(yyv4636) { - yyrg4587 := len(yyv4587) > 0 - yyv24587 := yyv4587 - yyrl4587, yyrt4587 = z.DecInferLen(yyl4587, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4587 { - if yyrl4587 <= cap(yyv4587) { - yyv4587 = yyv4587[:yyrl4587] + yyrg4636 := len(yyv4636) > 0 + yyv24636 := yyv4636 + yyrl4636, yyrt4636 = z.DecInferLen(yyl4636, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4636 { + if yyrl4636 <= cap(yyv4636) { + yyv4636 = yyv4636[:yyrl4636] } else { - yyv4587 = make([]VolumeMount, yyrl4587) + yyv4636 = make([]VolumeMount, yyrl4636) } } else { - yyv4587 = make([]VolumeMount, yyrl4587) + yyv4636 = make([]VolumeMount, yyrl4636) } - yyc4587 = true - yyrr4587 = len(yyv4587) - if yyrg4587 { - copy(yyv4587, yyv24587) + yyc4636 = true + yyrr4636 = len(yyv4636) + if yyrg4636 { + copy(yyv4636, yyv24636) } - } else if yyl4587 != len(yyv4587) { - yyv4587 = yyv4587[:yyl4587] - yyc4587 = true + } else if yyl4636 != len(yyv4636) { + yyv4636 = yyv4636[:yyl4636] + yyc4636 = true } - yyj4587 := 0 - for ; yyj4587 < yyrr4587; yyj4587++ { - yyh4587.ElemContainerState(yyj4587) + yyj4636 := 0 + for ; yyj4636 < yyrr4636; yyj4636++ { + yyh4636.ElemContainerState(yyj4636) if r.TryDecodeAsNil() { - yyv4587[yyj4587] = VolumeMount{} + yyv4636[yyj4636] = VolumeMount{} } else { - yyv4588 := &yyv4587[yyj4587] - yyv4588.CodecDecodeSelf(d) + yyv4637 := &yyv4636[yyj4636] + yyv4637.CodecDecodeSelf(d) } } - if yyrt4587 { - for ; yyj4587 < yyl4587; yyj4587++ { - yyv4587 = append(yyv4587, VolumeMount{}) - yyh4587.ElemContainerState(yyj4587) + if yyrt4636 { + for ; yyj4636 < yyl4636; yyj4636++ { + yyv4636 = append(yyv4636, VolumeMount{}) + yyh4636.ElemContainerState(yyj4636) if r.TryDecodeAsNil() { - yyv4587[yyj4587] = VolumeMount{} + yyv4636[yyj4636] = VolumeMount{} } else { - yyv4589 := &yyv4587[yyj4587] - yyv4589.CodecDecodeSelf(d) + yyv4638 := &yyv4636[yyj4636] + yyv4638.CodecDecodeSelf(d) } } } } else { - yyj4587 := 0 - for ; !r.CheckBreak(); yyj4587++ { + yyj4636 := 0 + for ; !r.CheckBreak(); yyj4636++ { - if yyj4587 >= len(yyv4587) { - yyv4587 = append(yyv4587, VolumeMount{}) // var yyz4587 VolumeMount - yyc4587 = true + if yyj4636 >= len(yyv4636) { + yyv4636 = append(yyv4636, VolumeMount{}) // var yyz4636 VolumeMount + yyc4636 = true } - yyh4587.ElemContainerState(yyj4587) - if yyj4587 < len(yyv4587) { + yyh4636.ElemContainerState(yyj4636) + if yyj4636 < len(yyv4636) { if r.TryDecodeAsNil() { - yyv4587[yyj4587] = VolumeMount{} + yyv4636[yyj4636] = VolumeMount{} } else { - yyv4590 := &yyv4587[yyj4587] - yyv4590.CodecDecodeSelf(d) + yyv4639 := &yyv4636[yyj4636] + yyv4639.CodecDecodeSelf(d) } } else { @@ -57511,17 +58048,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj4587 < len(yyv4587) { - yyv4587 = yyv4587[:yyj4587] - yyc4587 = true - } else if yyj4587 == 0 && yyv4587 == nil { - yyv4587 = []VolumeMount{} - yyc4587 = true + if yyj4636 < len(yyv4636) { + yyv4636 = yyv4636[:yyj4636] + yyc4636 = true + } else if yyj4636 == 0 && yyv4636 == nil { + yyv4636 = []VolumeMount{} + yyc4636 = true } } - yyh4587.End() - if yyc4587 { - *v = yyv4587 + yyh4636.End() + if yyc4636 { + *v = yyv4636 } } @@ -57530,10 +58067,10 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4591 := range v { + for _, yyv4640 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4592 := &yyv4591 - yy4592.CodecEncodeSelf(e) + yy4641 := &yyv4640 + yy4641.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57543,83 +58080,83 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4593 := *v - yyh4593, yyl4593 := z.DecSliceHelperStart() - var yyc4593 bool - if yyl4593 == 0 { - if yyv4593 == nil { - yyv4593 = []NodeSelectorTerm{} - yyc4593 = true - } else if len(yyv4593) != 0 { - yyv4593 = yyv4593[:0] - yyc4593 = true + yyv4642 := *v + yyh4642, yyl4642 := z.DecSliceHelperStart() + var yyc4642 bool + if yyl4642 == 0 { + if yyv4642 == nil { + yyv4642 = []NodeSelectorTerm{} + yyc4642 = true + } else if len(yyv4642) != 0 { + yyv4642 = yyv4642[:0] + yyc4642 = true } - } else if yyl4593 > 0 { - var yyrr4593, yyrl4593 int - var yyrt4593 bool - if yyl4593 > cap(yyv4593) { + } else if yyl4642 > 0 { + var yyrr4642, yyrl4642 int + var yyrt4642 bool + if yyl4642 > cap(yyv4642) { - yyrg4593 := len(yyv4593) > 0 - yyv24593 := yyv4593 - yyrl4593, yyrt4593 = z.DecInferLen(yyl4593, z.DecBasicHandle().MaxInitLen, 24) - if yyrt4593 { - if yyrl4593 <= cap(yyv4593) { - yyv4593 = yyv4593[:yyrl4593] + yyrg4642 := len(yyv4642) > 0 + yyv24642 := yyv4642 + yyrl4642, yyrt4642 = z.DecInferLen(yyl4642, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4642 { + if yyrl4642 <= cap(yyv4642) { + yyv4642 = yyv4642[:yyrl4642] } else { - yyv4593 = make([]NodeSelectorTerm, yyrl4593) + yyv4642 = make([]NodeSelectorTerm, yyrl4642) } } else { - yyv4593 = make([]NodeSelectorTerm, yyrl4593) + yyv4642 = make([]NodeSelectorTerm, yyrl4642) } - yyc4593 = true - yyrr4593 = len(yyv4593) - if yyrg4593 { - copy(yyv4593, yyv24593) + yyc4642 = true + yyrr4642 = len(yyv4642) + if yyrg4642 { + copy(yyv4642, yyv24642) } - } else if yyl4593 != len(yyv4593) { - yyv4593 = yyv4593[:yyl4593] - yyc4593 = true + } else if yyl4642 != len(yyv4642) { + yyv4642 = yyv4642[:yyl4642] + yyc4642 = true } - yyj4593 := 0 - for ; yyj4593 < yyrr4593; yyj4593++ { - yyh4593.ElemContainerState(yyj4593) + yyj4642 := 0 + for ; yyj4642 < yyrr4642; yyj4642++ { + yyh4642.ElemContainerState(yyj4642) if r.TryDecodeAsNil() { - yyv4593[yyj4593] = NodeSelectorTerm{} + yyv4642[yyj4642] = NodeSelectorTerm{} } else { - yyv4594 := &yyv4593[yyj4593] - yyv4594.CodecDecodeSelf(d) + yyv4643 := &yyv4642[yyj4642] + yyv4643.CodecDecodeSelf(d) } } - if yyrt4593 { - for ; yyj4593 < yyl4593; yyj4593++ { - yyv4593 = append(yyv4593, NodeSelectorTerm{}) - yyh4593.ElemContainerState(yyj4593) + if yyrt4642 { + for ; yyj4642 < yyl4642; yyj4642++ { + yyv4642 = append(yyv4642, NodeSelectorTerm{}) + yyh4642.ElemContainerState(yyj4642) if r.TryDecodeAsNil() { - yyv4593[yyj4593] = NodeSelectorTerm{} + yyv4642[yyj4642] = NodeSelectorTerm{} } else { - yyv4595 := &yyv4593[yyj4593] - yyv4595.CodecDecodeSelf(d) + yyv4644 := &yyv4642[yyj4642] + yyv4644.CodecDecodeSelf(d) } } } } else { - yyj4593 := 0 - for ; !r.CheckBreak(); yyj4593++ { + yyj4642 := 0 + for ; !r.CheckBreak(); yyj4642++ { - if yyj4593 >= len(yyv4593) { - yyv4593 = append(yyv4593, NodeSelectorTerm{}) // var yyz4593 NodeSelectorTerm - yyc4593 = true + if yyj4642 >= len(yyv4642) { + yyv4642 = append(yyv4642, NodeSelectorTerm{}) // var yyz4642 NodeSelectorTerm + yyc4642 = true } - yyh4593.ElemContainerState(yyj4593) - if yyj4593 < len(yyv4593) { + yyh4642.ElemContainerState(yyj4642) + if yyj4642 < len(yyv4642) { if r.TryDecodeAsNil() { - yyv4593[yyj4593] = NodeSelectorTerm{} + yyv4642[yyj4642] = NodeSelectorTerm{} } else { - yyv4596 := &yyv4593[yyj4593] - yyv4596.CodecDecodeSelf(d) + yyv4645 := &yyv4642[yyj4642] + yyv4645.CodecDecodeSelf(d) } } else { @@ -57627,17 +58164,17 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } - if yyj4593 < len(yyv4593) { - yyv4593 = yyv4593[:yyj4593] - yyc4593 = true - } else if yyj4593 == 0 && yyv4593 == nil { - yyv4593 = []NodeSelectorTerm{} - yyc4593 = true + if yyj4642 < len(yyv4642) { + yyv4642 = yyv4642[:yyj4642] + yyc4642 = true + } else if yyj4642 == 0 && yyv4642 == nil { + yyv4642 = []NodeSelectorTerm{} + yyc4642 = true } } - yyh4593.End() - if yyc4593 { - *v = yyv4593 + yyh4642.End() + if yyc4642 { + *v = yyv4642 } } @@ -57646,10 +58183,10 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4597 := range v { + for _, yyv4646 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4598 := &yyv4597 - yy4598.CodecEncodeSelf(e) + yy4647 := &yyv4646 + yy4647.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57659,83 +58196,199 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4599 := *v - yyh4599, yyl4599 := z.DecSliceHelperStart() - var yyc4599 bool - if yyl4599 == 0 { - if yyv4599 == nil { - yyv4599 = []NodeSelectorRequirement{} - yyc4599 = true - } else if len(yyv4599) != 0 { - yyv4599 = yyv4599[:0] - yyc4599 = true + yyv4648 := *v + yyh4648, yyl4648 := z.DecSliceHelperStart() + var yyc4648 bool + if yyl4648 == 0 { + if yyv4648 == nil { + yyv4648 = []NodeSelectorRequirement{} + yyc4648 = true + } else if len(yyv4648) != 0 { + yyv4648 = yyv4648[:0] + yyc4648 = true + } + } else if yyl4648 > 0 { + var yyrr4648, yyrl4648 int + var yyrt4648 bool + if yyl4648 > cap(yyv4648) { + + yyrg4648 := len(yyv4648) > 0 + yyv24648 := yyv4648 + yyrl4648, yyrt4648 = z.DecInferLen(yyl4648, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4648 { + if yyrl4648 <= cap(yyv4648) { + yyv4648 = yyv4648[:yyrl4648] + } else { + yyv4648 = make([]NodeSelectorRequirement, yyrl4648) + } + } else { + yyv4648 = make([]NodeSelectorRequirement, yyrl4648) + } + yyc4648 = true + yyrr4648 = len(yyv4648) + if yyrg4648 { + copy(yyv4648, yyv24648) + } + } else if yyl4648 != len(yyv4648) { + yyv4648 = yyv4648[:yyl4648] + yyc4648 = true + } + yyj4648 := 0 + for ; yyj4648 < yyrr4648; yyj4648++ { + yyh4648.ElemContainerState(yyj4648) + if r.TryDecodeAsNil() { + yyv4648[yyj4648] = NodeSelectorRequirement{} + } else { + yyv4649 := &yyv4648[yyj4648] + yyv4649.CodecDecodeSelf(d) + } + + } + if yyrt4648 { + for ; yyj4648 < yyl4648; yyj4648++ { + yyv4648 = append(yyv4648, NodeSelectorRequirement{}) + yyh4648.ElemContainerState(yyj4648) + if r.TryDecodeAsNil() { + yyv4648[yyj4648] = NodeSelectorRequirement{} + } else { + yyv4650 := &yyv4648[yyj4648] + yyv4650.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4648 := 0 + for ; !r.CheckBreak(); yyj4648++ { + + if yyj4648 >= len(yyv4648) { + yyv4648 = append(yyv4648, NodeSelectorRequirement{}) // var yyz4648 NodeSelectorRequirement + yyc4648 = true + } + yyh4648.ElemContainerState(yyj4648) + if yyj4648 < len(yyv4648) { + if r.TryDecodeAsNil() { + yyv4648[yyj4648] = NodeSelectorRequirement{} + } else { + yyv4651 := &yyv4648[yyj4648] + yyv4651.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4648 < len(yyv4648) { + yyv4648 = yyv4648[:yyj4648] + yyc4648 = true + } else if yyj4648 == 0 && yyv4648 == nil { + yyv4648 = []NodeSelectorRequirement{} + yyc4648 = true + } + } + yyh4648.End() + if yyc4648 { + *v = yyv4648 + } +} + +func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4652 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4653 := &yyv4652 + yy4653.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4654 := *v + yyh4654, yyl4654 := z.DecSliceHelperStart() + var yyc4654 bool + if yyl4654 == 0 { + if yyv4654 == nil { + yyv4654 = []PodAffinityTerm{} + yyc4654 = true + } else if len(yyv4654) != 0 { + yyv4654 = yyv4654[:0] + yyc4654 = true } - } else if yyl4599 > 0 { - var yyrr4599, yyrl4599 int - var yyrt4599 bool - if yyl4599 > cap(yyv4599) { + } else if yyl4654 > 0 { + var yyrr4654, yyrl4654 int + var yyrt4654 bool + if yyl4654 > cap(yyv4654) { - yyrg4599 := len(yyv4599) > 0 - yyv24599 := yyv4599 - yyrl4599, yyrt4599 = z.DecInferLen(yyl4599, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4599 { - if yyrl4599 <= cap(yyv4599) { - yyv4599 = yyv4599[:yyrl4599] + yyrg4654 := len(yyv4654) > 0 + yyv24654 := yyv4654 + yyrl4654, yyrt4654 = z.DecInferLen(yyl4654, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4654 { + if yyrl4654 <= cap(yyv4654) { + yyv4654 = yyv4654[:yyrl4654] } else { - yyv4599 = make([]NodeSelectorRequirement, yyrl4599) + yyv4654 = make([]PodAffinityTerm, yyrl4654) } } else { - yyv4599 = make([]NodeSelectorRequirement, yyrl4599) + yyv4654 = make([]PodAffinityTerm, yyrl4654) } - yyc4599 = true - yyrr4599 = len(yyv4599) - if yyrg4599 { - copy(yyv4599, yyv24599) + yyc4654 = true + yyrr4654 = len(yyv4654) + if yyrg4654 { + copy(yyv4654, yyv24654) } - } else if yyl4599 != len(yyv4599) { - yyv4599 = yyv4599[:yyl4599] - yyc4599 = true + } else if yyl4654 != len(yyv4654) { + yyv4654 = yyv4654[:yyl4654] + yyc4654 = true } - yyj4599 := 0 - for ; yyj4599 < yyrr4599; yyj4599++ { - yyh4599.ElemContainerState(yyj4599) + yyj4654 := 0 + for ; yyj4654 < yyrr4654; yyj4654++ { + yyh4654.ElemContainerState(yyj4654) if r.TryDecodeAsNil() { - yyv4599[yyj4599] = NodeSelectorRequirement{} + yyv4654[yyj4654] = PodAffinityTerm{} } else { - yyv4600 := &yyv4599[yyj4599] - yyv4600.CodecDecodeSelf(d) + yyv4655 := &yyv4654[yyj4654] + yyv4655.CodecDecodeSelf(d) } } - if yyrt4599 { - for ; yyj4599 < yyl4599; yyj4599++ { - yyv4599 = append(yyv4599, NodeSelectorRequirement{}) - yyh4599.ElemContainerState(yyj4599) + if yyrt4654 { + for ; yyj4654 < yyl4654; yyj4654++ { + yyv4654 = append(yyv4654, PodAffinityTerm{}) + yyh4654.ElemContainerState(yyj4654) if r.TryDecodeAsNil() { - yyv4599[yyj4599] = NodeSelectorRequirement{} + yyv4654[yyj4654] = PodAffinityTerm{} } else { - yyv4601 := &yyv4599[yyj4599] - yyv4601.CodecDecodeSelf(d) + yyv4656 := &yyv4654[yyj4654] + yyv4656.CodecDecodeSelf(d) } } } } else { - yyj4599 := 0 - for ; !r.CheckBreak(); yyj4599++ { + yyj4654 := 0 + for ; !r.CheckBreak(); yyj4654++ { - if yyj4599 >= len(yyv4599) { - yyv4599 = append(yyv4599, NodeSelectorRequirement{}) // var yyz4599 NodeSelectorRequirement - yyc4599 = true + if yyj4654 >= len(yyv4654) { + yyv4654 = append(yyv4654, PodAffinityTerm{}) // var yyz4654 PodAffinityTerm + yyc4654 = true } - yyh4599.ElemContainerState(yyj4599) - if yyj4599 < len(yyv4599) { + yyh4654.ElemContainerState(yyj4654) + if yyj4654 < len(yyv4654) { if r.TryDecodeAsNil() { - yyv4599[yyj4599] = NodeSelectorRequirement{} + yyv4654[yyj4654] = PodAffinityTerm{} } else { - yyv4602 := &yyv4599[yyj4599] - yyv4602.CodecDecodeSelf(d) + yyv4657 := &yyv4654[yyj4654] + yyv4657.CodecDecodeSelf(d) } } else { @@ -57743,115 +58396,115 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj4599 < len(yyv4599) { - yyv4599 = yyv4599[:yyj4599] - yyc4599 = true - } else if yyj4599 == 0 && yyv4599 == nil { - yyv4599 = []NodeSelectorRequirement{} - yyc4599 = true + if yyj4654 < len(yyv4654) { + yyv4654 = yyv4654[:yyj4654] + yyc4654 = true + } else if yyj4654 == 0 && yyv4654 == nil { + yyv4654 = []PodAffinityTerm{} + yyc4654 = true } } - yyh4599.End() - if yyc4599 { - *v = yyv4599 + yyh4654.End() + if yyc4654 { + *v = yyv4654 } } -func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinityTerm, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4603 := range v { + for _, yyv4658 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4604 := &yyv4603 - yy4604.CodecEncodeSelf(e) + yy4659 := &yyv4658 + yy4659.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinityTerm, 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 = []PodAffinityTerm{} - yyc4605 = true - } else if len(yyv4605) != 0 { - yyv4605 = yyv4605[:0] - yyc4605 = true + yyv4660 := *v + yyh4660, yyl4660 := z.DecSliceHelperStart() + var yyc4660 bool + if yyl4660 == 0 { + if yyv4660 == nil { + yyv4660 = []WeightedPodAffinityTerm{} + yyc4660 = true + } else if len(yyv4660) != 0 { + yyv4660 = yyv4660[:0] + yyc4660 = true } - } else if yyl4605 > 0 { - var yyrr4605, yyrl4605 int - var yyrt4605 bool - if yyl4605 > cap(yyv4605) { + } else if yyl4660 > 0 { + var yyrr4660, yyrl4660 int + var yyrt4660 bool + if yyl4660 > cap(yyv4660) { - yyrg4605 := len(yyv4605) > 0 - yyv24605 := yyv4605 - yyrl4605, yyrt4605 = z.DecInferLen(yyl4605, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4605 { - if yyrl4605 <= cap(yyv4605) { - yyv4605 = yyv4605[:yyrl4605] + yyrg4660 := len(yyv4660) > 0 + yyv24660 := yyv4660 + yyrl4660, yyrt4660 = z.DecInferLen(yyl4660, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4660 { + if yyrl4660 <= cap(yyv4660) { + yyv4660 = yyv4660[:yyrl4660] } else { - yyv4605 = make([]PodAffinityTerm, yyrl4605) + yyv4660 = make([]WeightedPodAffinityTerm, yyrl4660) } } else { - yyv4605 = make([]PodAffinityTerm, yyrl4605) + yyv4660 = make([]WeightedPodAffinityTerm, yyrl4660) } - yyc4605 = true - yyrr4605 = len(yyv4605) - if yyrg4605 { - copy(yyv4605, yyv24605) + yyc4660 = true + yyrr4660 = len(yyv4660) + if yyrg4660 { + copy(yyv4660, yyv24660) } - } else if yyl4605 != len(yyv4605) { - yyv4605 = yyv4605[:yyl4605] - yyc4605 = true + } else if yyl4660 != len(yyv4660) { + yyv4660 = yyv4660[:yyl4660] + yyc4660 = true } - yyj4605 := 0 - for ; yyj4605 < yyrr4605; yyj4605++ { - yyh4605.ElemContainerState(yyj4605) + yyj4660 := 0 + for ; yyj4660 < yyrr4660; yyj4660++ { + yyh4660.ElemContainerState(yyj4660) if r.TryDecodeAsNil() { - yyv4605[yyj4605] = PodAffinityTerm{} + yyv4660[yyj4660] = WeightedPodAffinityTerm{} } else { - yyv4606 := &yyv4605[yyj4605] - yyv4606.CodecDecodeSelf(d) + yyv4661 := &yyv4660[yyj4660] + yyv4661.CodecDecodeSelf(d) } } - if yyrt4605 { - for ; yyj4605 < yyl4605; yyj4605++ { - yyv4605 = append(yyv4605, PodAffinityTerm{}) - yyh4605.ElemContainerState(yyj4605) + if yyrt4660 { + for ; yyj4660 < yyl4660; yyj4660++ { + yyv4660 = append(yyv4660, WeightedPodAffinityTerm{}) + yyh4660.ElemContainerState(yyj4660) if r.TryDecodeAsNil() { - yyv4605[yyj4605] = PodAffinityTerm{} + yyv4660[yyj4660] = WeightedPodAffinityTerm{} } else { - yyv4607 := &yyv4605[yyj4605] - yyv4607.CodecDecodeSelf(d) + yyv4662 := &yyv4660[yyj4660] + yyv4662.CodecDecodeSelf(d) } } } } else { - yyj4605 := 0 - for ; !r.CheckBreak(); yyj4605++ { + yyj4660 := 0 + for ; !r.CheckBreak(); yyj4660++ { - if yyj4605 >= len(yyv4605) { - yyv4605 = append(yyv4605, PodAffinityTerm{}) // var yyz4605 PodAffinityTerm - yyc4605 = true + if yyj4660 >= len(yyv4660) { + yyv4660 = append(yyv4660, WeightedPodAffinityTerm{}) // var yyz4660 WeightedPodAffinityTerm + yyc4660 = true } - yyh4605.ElemContainerState(yyj4605) - if yyj4605 < len(yyv4605) { + yyh4660.ElemContainerState(yyj4660) + if yyj4660 < len(yyv4660) { if r.TryDecodeAsNil() { - yyv4605[yyj4605] = PodAffinityTerm{} + yyv4660[yyj4660] = WeightedPodAffinityTerm{} } else { - yyv4608 := &yyv4605[yyj4605] - yyv4608.CodecDecodeSelf(d) + yyv4663 := &yyv4660[yyj4660] + yyv4663.CodecDecodeSelf(d) } } else { @@ -57859,115 +58512,115 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } - if yyj4605 < len(yyv4605) { - yyv4605 = yyv4605[:yyj4605] - yyc4605 = true - } else if yyj4605 == 0 && yyv4605 == nil { - yyv4605 = []PodAffinityTerm{} - yyc4605 = true + if yyj4660 < len(yyv4660) { + yyv4660 = yyv4660[:yyj4660] + yyc4660 = true + } else if yyj4660 == 0 && yyv4660 == nil { + yyv4660 = []WeightedPodAffinityTerm{} + yyc4660 = true } } - yyh4605.End() - if yyc4605 { - *v = yyv4605 + yyh4660.End() + if yyc4660 { + *v = yyv4660 } } -func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinityTerm, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredSchedulingTerm, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4609 := range v { + for _, yyv4664 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4610 := &yyv4609 - yy4610.CodecEncodeSelf(e) + yy4665 := &yyv4664 + yy4665.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinityTerm, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulingTerm, 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 = []WeightedPodAffinityTerm{} - yyc4611 = true - } else if len(yyv4611) != 0 { - yyv4611 = yyv4611[:0] - yyc4611 = true + yyv4666 := *v + yyh4666, yyl4666 := z.DecSliceHelperStart() + var yyc4666 bool + if yyl4666 == 0 { + if yyv4666 == nil { + yyv4666 = []PreferredSchedulingTerm{} + yyc4666 = true + } else if len(yyv4666) != 0 { + yyv4666 = yyv4666[:0] + yyc4666 = true } - } else if yyl4611 > 0 { - var yyrr4611, yyrl4611 int - var yyrt4611 bool - if yyl4611 > cap(yyv4611) { + } else if yyl4666 > 0 { + var yyrr4666, yyrl4666 int + var yyrt4666 bool + if yyl4666 > cap(yyv4666) { - yyrg4611 := len(yyv4611) > 0 - yyv24611 := yyv4611 - yyrl4611, yyrt4611 = z.DecInferLen(yyl4611, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4611 { - if yyrl4611 <= cap(yyv4611) { - yyv4611 = yyv4611[:yyrl4611] + yyrg4666 := len(yyv4666) > 0 + yyv24666 := yyv4666 + yyrl4666, yyrt4666 = z.DecInferLen(yyl4666, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4666 { + if yyrl4666 <= cap(yyv4666) { + yyv4666 = yyv4666[:yyrl4666] } else { - yyv4611 = make([]WeightedPodAffinityTerm, yyrl4611) + yyv4666 = make([]PreferredSchedulingTerm, yyrl4666) } } else { - yyv4611 = make([]WeightedPodAffinityTerm, yyrl4611) + yyv4666 = make([]PreferredSchedulingTerm, yyrl4666) } - yyc4611 = true - yyrr4611 = len(yyv4611) - if yyrg4611 { - copy(yyv4611, yyv24611) + yyc4666 = true + yyrr4666 = len(yyv4666) + if yyrg4666 { + copy(yyv4666, yyv24666) } - } else if yyl4611 != len(yyv4611) { - yyv4611 = yyv4611[:yyl4611] - yyc4611 = true + } else if yyl4666 != len(yyv4666) { + yyv4666 = yyv4666[:yyl4666] + yyc4666 = true } - yyj4611 := 0 - for ; yyj4611 < yyrr4611; yyj4611++ { - yyh4611.ElemContainerState(yyj4611) + yyj4666 := 0 + for ; yyj4666 < yyrr4666; yyj4666++ { + yyh4666.ElemContainerState(yyj4666) if r.TryDecodeAsNil() { - yyv4611[yyj4611] = WeightedPodAffinityTerm{} + yyv4666[yyj4666] = PreferredSchedulingTerm{} } else { - yyv4612 := &yyv4611[yyj4611] - yyv4612.CodecDecodeSelf(d) + yyv4667 := &yyv4666[yyj4666] + yyv4667.CodecDecodeSelf(d) } } - if yyrt4611 { - for ; yyj4611 < yyl4611; yyj4611++ { - yyv4611 = append(yyv4611, WeightedPodAffinityTerm{}) - yyh4611.ElemContainerState(yyj4611) + if yyrt4666 { + for ; yyj4666 < yyl4666; yyj4666++ { + yyv4666 = append(yyv4666, PreferredSchedulingTerm{}) + yyh4666.ElemContainerState(yyj4666) if r.TryDecodeAsNil() { - yyv4611[yyj4611] = WeightedPodAffinityTerm{} + yyv4666[yyj4666] = PreferredSchedulingTerm{} } else { - yyv4613 := &yyv4611[yyj4611] - yyv4613.CodecDecodeSelf(d) + yyv4668 := &yyv4666[yyj4666] + yyv4668.CodecDecodeSelf(d) } } } } else { - yyj4611 := 0 - for ; !r.CheckBreak(); yyj4611++ { + yyj4666 := 0 + for ; !r.CheckBreak(); yyj4666++ { - if yyj4611 >= len(yyv4611) { - yyv4611 = append(yyv4611, WeightedPodAffinityTerm{}) // var yyz4611 WeightedPodAffinityTerm - yyc4611 = true + if yyj4666 >= len(yyv4666) { + yyv4666 = append(yyv4666, PreferredSchedulingTerm{}) // var yyz4666 PreferredSchedulingTerm + yyc4666 = true } - yyh4611.ElemContainerState(yyj4611) - if yyj4611 < len(yyv4611) { + yyh4666.ElemContainerState(yyj4666) + if yyj4666 < len(yyv4666) { if r.TryDecodeAsNil() { - yyv4611[yyj4611] = WeightedPodAffinityTerm{} + yyv4666[yyj4666] = PreferredSchedulingTerm{} } else { - yyv4614 := &yyv4611[yyj4611] - yyv4614.CodecDecodeSelf(d) + yyv4669 := &yyv4666[yyj4666] + yyv4669.CodecDecodeSelf(d) } } else { @@ -57975,115 +58628,115 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } - if yyj4611 < len(yyv4611) { - yyv4611 = yyv4611[:yyj4611] - yyc4611 = true - } else if yyj4611 == 0 && yyv4611 == nil { - yyv4611 = []WeightedPodAffinityTerm{} - yyc4611 = true + if yyj4666 < len(yyv4666) { + yyv4666 = yyv4666[:yyj4666] + yyc4666 = true + } else if yyj4666 == 0 && yyv4666 == nil { + yyv4666 = []PreferredSchedulingTerm{} + yyc4666 = true } } - yyh4611.End() - if yyc4611 { - *v = yyv4611 + yyh4666.End() + if yyc4666 { + *v = yyv4666 } } -func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredSchedulingTerm, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4615 := range v { + for _, yyv4670 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4616 := &yyv4615 - yy4616.CodecEncodeSelf(e) + yy4671 := &yyv4670 + yy4671.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulingTerm, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4617 := *v - yyh4617, yyl4617 := z.DecSliceHelperStart() - var yyc4617 bool - if yyl4617 == 0 { - if yyv4617 == nil { - yyv4617 = []PreferredSchedulingTerm{} - yyc4617 = true - } else if len(yyv4617) != 0 { - yyv4617 = yyv4617[:0] - yyc4617 = true + yyv4672 := *v + yyh4672, yyl4672 := z.DecSliceHelperStart() + var yyc4672 bool + if yyl4672 == 0 { + if yyv4672 == nil { + yyv4672 = []Volume{} + yyc4672 = true + } else if len(yyv4672) != 0 { + yyv4672 = yyv4672[:0] + yyc4672 = true } - } else if yyl4617 > 0 { - var yyrr4617, yyrl4617 int - var yyrt4617 bool - if yyl4617 > cap(yyv4617) { + } else if yyl4672 > 0 { + var yyrr4672, yyrl4672 int + var yyrt4672 bool + if yyl4672 > cap(yyv4672) { - yyrg4617 := len(yyv4617) > 0 - yyv24617 := yyv4617 - yyrl4617, yyrt4617 = z.DecInferLen(yyl4617, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4617 { - if yyrl4617 <= cap(yyv4617) { - yyv4617 = yyv4617[:yyrl4617] + yyrg4672 := len(yyv4672) > 0 + yyv24672 := yyv4672 + yyrl4672, yyrt4672 = z.DecInferLen(yyl4672, z.DecBasicHandle().MaxInitLen, 192) + if yyrt4672 { + if yyrl4672 <= cap(yyv4672) { + yyv4672 = yyv4672[:yyrl4672] } else { - yyv4617 = make([]PreferredSchedulingTerm, yyrl4617) + yyv4672 = make([]Volume, yyrl4672) } } else { - yyv4617 = make([]PreferredSchedulingTerm, yyrl4617) + yyv4672 = make([]Volume, yyrl4672) } - yyc4617 = true - yyrr4617 = len(yyv4617) - if yyrg4617 { - copy(yyv4617, yyv24617) + yyc4672 = true + yyrr4672 = len(yyv4672) + if yyrg4672 { + copy(yyv4672, yyv24672) } - } else if yyl4617 != len(yyv4617) { - yyv4617 = yyv4617[:yyl4617] - yyc4617 = true + } else if yyl4672 != len(yyv4672) { + yyv4672 = yyv4672[:yyl4672] + yyc4672 = true } - yyj4617 := 0 - for ; yyj4617 < yyrr4617; yyj4617++ { - yyh4617.ElemContainerState(yyj4617) + yyj4672 := 0 + for ; yyj4672 < yyrr4672; yyj4672++ { + yyh4672.ElemContainerState(yyj4672) if r.TryDecodeAsNil() { - yyv4617[yyj4617] = PreferredSchedulingTerm{} + yyv4672[yyj4672] = Volume{} } else { - yyv4618 := &yyv4617[yyj4617] - yyv4618.CodecDecodeSelf(d) + yyv4673 := &yyv4672[yyj4672] + yyv4673.CodecDecodeSelf(d) } } - if yyrt4617 { - for ; yyj4617 < yyl4617; yyj4617++ { - yyv4617 = append(yyv4617, PreferredSchedulingTerm{}) - yyh4617.ElemContainerState(yyj4617) + if yyrt4672 { + for ; yyj4672 < yyl4672; yyj4672++ { + yyv4672 = append(yyv4672, Volume{}) + yyh4672.ElemContainerState(yyj4672) if r.TryDecodeAsNil() { - yyv4617[yyj4617] = PreferredSchedulingTerm{} + yyv4672[yyj4672] = Volume{} } else { - yyv4619 := &yyv4617[yyj4617] - yyv4619.CodecDecodeSelf(d) + yyv4674 := &yyv4672[yyj4672] + yyv4674.CodecDecodeSelf(d) } } } } else { - yyj4617 := 0 - for ; !r.CheckBreak(); yyj4617++ { + yyj4672 := 0 + for ; !r.CheckBreak(); yyj4672++ { - if yyj4617 >= len(yyv4617) { - yyv4617 = append(yyv4617, PreferredSchedulingTerm{}) // var yyz4617 PreferredSchedulingTerm - yyc4617 = true + if yyj4672 >= len(yyv4672) { + yyv4672 = append(yyv4672, Volume{}) // var yyz4672 Volume + yyc4672 = true } - yyh4617.ElemContainerState(yyj4617) - if yyj4617 < len(yyv4617) { + yyh4672.ElemContainerState(yyj4672) + if yyj4672 < len(yyv4672) { if r.TryDecodeAsNil() { - yyv4617[yyj4617] = PreferredSchedulingTerm{} + yyv4672[yyj4672] = Volume{} } else { - yyv4620 := &yyv4617[yyj4617] - yyv4620.CodecDecodeSelf(d) + yyv4675 := &yyv4672[yyj4672] + yyv4675.CodecDecodeSelf(d) } } else { @@ -58091,115 +58744,115 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj4617 < len(yyv4617) { - yyv4617 = yyv4617[:yyj4617] - yyc4617 = true - } else if yyj4617 == 0 && yyv4617 == nil { - yyv4617 = []PreferredSchedulingTerm{} - yyc4617 = true + if yyj4672 < len(yyv4672) { + yyv4672 = yyv4672[:yyj4672] + yyc4672 = true + } else if yyj4672 == 0 && yyv4672 == nil { + yyv4672 = []Volume{} + yyc4672 = true } } - yyh4617.End() - if yyc4617 { - *v = yyv4617 + yyh4672.End() + if yyc4672 { + *v = yyv4672 } } -func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4621 := range v { + for _, yyv4676 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4622 := &yyv4621 - yy4622.CodecEncodeSelf(e) + yy4677 := &yyv4676 + yy4677.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceContainer(v *[]Container, 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 = []Volume{} - yyc4623 = true - } else if len(yyv4623) != 0 { - yyv4623 = yyv4623[:0] - yyc4623 = true + yyv4678 := *v + yyh4678, yyl4678 := z.DecSliceHelperStart() + var yyc4678 bool + if yyl4678 == 0 { + if yyv4678 == nil { + yyv4678 = []Container{} + yyc4678 = true + } else if len(yyv4678) != 0 { + yyv4678 = yyv4678[:0] + yyc4678 = true } - } else if yyl4623 > 0 { - var yyrr4623, yyrl4623 int - var yyrt4623 bool - if yyl4623 > cap(yyv4623) { + } else if yyl4678 > 0 { + var yyrr4678, yyrl4678 int + var yyrt4678 bool + if yyl4678 > cap(yyv4678) { - yyrg4623 := len(yyv4623) > 0 - yyv24623 := yyv4623 - yyrl4623, yyrt4623 = z.DecInferLen(yyl4623, z.DecBasicHandle().MaxInitLen, 192) - if yyrt4623 { - if yyrl4623 <= cap(yyv4623) { - yyv4623 = yyv4623[:yyrl4623] + yyrg4678 := len(yyv4678) > 0 + yyv24678 := yyv4678 + yyrl4678, yyrt4678 = z.DecInferLen(yyl4678, z.DecBasicHandle().MaxInitLen, 256) + if yyrt4678 { + if yyrl4678 <= cap(yyv4678) { + yyv4678 = yyv4678[:yyrl4678] } else { - yyv4623 = make([]Volume, yyrl4623) + yyv4678 = make([]Container, yyrl4678) } } else { - yyv4623 = make([]Volume, yyrl4623) + yyv4678 = make([]Container, yyrl4678) } - yyc4623 = true - yyrr4623 = len(yyv4623) - if yyrg4623 { - copy(yyv4623, yyv24623) + yyc4678 = true + yyrr4678 = len(yyv4678) + if yyrg4678 { + copy(yyv4678, yyv24678) } - } else if yyl4623 != len(yyv4623) { - yyv4623 = yyv4623[:yyl4623] - yyc4623 = true + } else if yyl4678 != len(yyv4678) { + yyv4678 = yyv4678[:yyl4678] + yyc4678 = true } - yyj4623 := 0 - for ; yyj4623 < yyrr4623; yyj4623++ { - yyh4623.ElemContainerState(yyj4623) + yyj4678 := 0 + for ; yyj4678 < yyrr4678; yyj4678++ { + yyh4678.ElemContainerState(yyj4678) if r.TryDecodeAsNil() { - yyv4623[yyj4623] = Volume{} + yyv4678[yyj4678] = Container{} } else { - yyv4624 := &yyv4623[yyj4623] - yyv4624.CodecDecodeSelf(d) + yyv4679 := &yyv4678[yyj4678] + yyv4679.CodecDecodeSelf(d) } } - if yyrt4623 { - for ; yyj4623 < yyl4623; yyj4623++ { - yyv4623 = append(yyv4623, Volume{}) - yyh4623.ElemContainerState(yyj4623) + if yyrt4678 { + for ; yyj4678 < yyl4678; yyj4678++ { + yyv4678 = append(yyv4678, Container{}) + yyh4678.ElemContainerState(yyj4678) if r.TryDecodeAsNil() { - yyv4623[yyj4623] = Volume{} + yyv4678[yyj4678] = Container{} } else { - yyv4625 := &yyv4623[yyj4623] - yyv4625.CodecDecodeSelf(d) + yyv4680 := &yyv4678[yyj4678] + yyv4680.CodecDecodeSelf(d) } } } } else { - yyj4623 := 0 - for ; !r.CheckBreak(); yyj4623++ { + yyj4678 := 0 + for ; !r.CheckBreak(); yyj4678++ { - if yyj4623 >= len(yyv4623) { - yyv4623 = append(yyv4623, Volume{}) // var yyz4623 Volume - yyc4623 = true + if yyj4678 >= len(yyv4678) { + yyv4678 = append(yyv4678, Container{}) // var yyz4678 Container + yyc4678 = true } - yyh4623.ElemContainerState(yyj4623) - if yyj4623 < len(yyv4623) { + yyh4678.ElemContainerState(yyj4678) + if yyj4678 < len(yyv4678) { if r.TryDecodeAsNil() { - yyv4623[yyj4623] = Volume{} + yyv4678[yyj4678] = Container{} } else { - yyv4626 := &yyv4623[yyj4623] - yyv4626.CodecDecodeSelf(d) + yyv4681 := &yyv4678[yyj4678] + yyv4681.CodecDecodeSelf(d) } } else { @@ -58207,115 +58860,115 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4623 < len(yyv4623) { - yyv4623 = yyv4623[:yyj4623] - yyc4623 = true - } else if yyj4623 == 0 && yyv4623 == nil { - yyv4623 = []Volume{} - yyc4623 = true + if yyj4678 < len(yyv4678) { + yyv4678 = yyv4678[:yyj4678] + yyc4678 = true + } else if yyj4678 == 0 && yyv4678 == nil { + yyv4678 = []Container{} + yyc4678 = true } } - yyh4623.End() - if yyc4623 { - *v = yyv4623 + yyh4678.End() + if yyc4678 { + *v = yyv4678 } } -func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4627 := range v { + for _, yyv4682 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4628 := &yyv4627 - yy4628.CodecEncodeSelf(e) + yy4683 := &yyv4682 + yy4683.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, 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 = []Container{} - yyc4629 = true - } else if len(yyv4629) != 0 { - yyv4629 = yyv4629[:0] - yyc4629 = true + yyv4684 := *v + yyh4684, yyl4684 := z.DecSliceHelperStart() + var yyc4684 bool + if yyl4684 == 0 { + if yyv4684 == nil { + yyv4684 = []LocalObjectReference{} + yyc4684 = true + } else if len(yyv4684) != 0 { + yyv4684 = yyv4684[:0] + yyc4684 = true } - } else if yyl4629 > 0 { - var yyrr4629, yyrl4629 int - var yyrt4629 bool - if yyl4629 > cap(yyv4629) { + } else if yyl4684 > 0 { + var yyrr4684, yyrl4684 int + var yyrt4684 bool + if yyl4684 > cap(yyv4684) { - yyrg4629 := len(yyv4629) > 0 - yyv24629 := yyv4629 - yyrl4629, yyrt4629 = z.DecInferLen(yyl4629, z.DecBasicHandle().MaxInitLen, 256) - if yyrt4629 { - if yyrl4629 <= cap(yyv4629) { - yyv4629 = yyv4629[:yyrl4629] + yyrg4684 := len(yyv4684) > 0 + yyv24684 := yyv4684 + yyrl4684, yyrt4684 = z.DecInferLen(yyl4684, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4684 { + if yyrl4684 <= cap(yyv4684) { + yyv4684 = yyv4684[:yyrl4684] } else { - yyv4629 = make([]Container, yyrl4629) + yyv4684 = make([]LocalObjectReference, yyrl4684) } } else { - yyv4629 = make([]Container, yyrl4629) + yyv4684 = make([]LocalObjectReference, yyrl4684) } - yyc4629 = true - yyrr4629 = len(yyv4629) - if yyrg4629 { - copy(yyv4629, yyv24629) + yyc4684 = true + yyrr4684 = len(yyv4684) + if yyrg4684 { + copy(yyv4684, yyv24684) } - } else if yyl4629 != len(yyv4629) { - yyv4629 = yyv4629[:yyl4629] - yyc4629 = true + } else if yyl4684 != len(yyv4684) { + yyv4684 = yyv4684[:yyl4684] + yyc4684 = true } - yyj4629 := 0 - for ; yyj4629 < yyrr4629; yyj4629++ { - yyh4629.ElemContainerState(yyj4629) + yyj4684 := 0 + for ; yyj4684 < yyrr4684; yyj4684++ { + yyh4684.ElemContainerState(yyj4684) if r.TryDecodeAsNil() { - yyv4629[yyj4629] = Container{} + yyv4684[yyj4684] = LocalObjectReference{} } else { - yyv4630 := &yyv4629[yyj4629] - yyv4630.CodecDecodeSelf(d) + yyv4685 := &yyv4684[yyj4684] + yyv4685.CodecDecodeSelf(d) } } - if yyrt4629 { - for ; yyj4629 < yyl4629; yyj4629++ { - yyv4629 = append(yyv4629, Container{}) - yyh4629.ElemContainerState(yyj4629) + if yyrt4684 { + for ; yyj4684 < yyl4684; yyj4684++ { + yyv4684 = append(yyv4684, LocalObjectReference{}) + yyh4684.ElemContainerState(yyj4684) if r.TryDecodeAsNil() { - yyv4629[yyj4629] = Container{} + yyv4684[yyj4684] = LocalObjectReference{} } else { - yyv4631 := &yyv4629[yyj4629] - yyv4631.CodecDecodeSelf(d) + yyv4686 := &yyv4684[yyj4684] + yyv4686.CodecDecodeSelf(d) } } } } else { - yyj4629 := 0 - for ; !r.CheckBreak(); yyj4629++ { + yyj4684 := 0 + for ; !r.CheckBreak(); yyj4684++ { - if yyj4629 >= len(yyv4629) { - yyv4629 = append(yyv4629, Container{}) // var yyz4629 Container - yyc4629 = true + if yyj4684 >= len(yyv4684) { + yyv4684 = append(yyv4684, LocalObjectReference{}) // var yyz4684 LocalObjectReference + yyc4684 = true } - yyh4629.ElemContainerState(yyj4629) - if yyj4629 < len(yyv4629) { + yyh4684.ElemContainerState(yyj4684) + if yyj4684 < len(yyv4684) { if r.TryDecodeAsNil() { - yyv4629[yyj4629] = Container{} + yyv4684[yyj4684] = LocalObjectReference{} } else { - yyv4632 := &yyv4629[yyj4629] - yyv4632.CodecDecodeSelf(d) + yyv4687 := &yyv4684[yyj4684] + yyv4687.CodecDecodeSelf(d) } } else { @@ -58323,115 +58976,115 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4629 < len(yyv4629) { - yyv4629 = yyv4629[:yyj4629] - yyc4629 = true - } else if yyj4629 == 0 && yyv4629 == nil { - yyv4629 = []Container{} - yyc4629 = true + if yyj4684 < len(yyv4684) { + yyv4684 = yyv4684[:yyj4684] + yyc4684 = true + } else if yyj4684 == 0 && yyv4684 == nil { + yyv4684 = []LocalObjectReference{} + yyc4684 = true } } - yyh4629.End() - if yyc4629 { - *v = yyv4629 + yyh4684.End() + if yyc4684 { + *v = yyv4684 } } -func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4633 := range v { + for _, yyv4688 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4634 := &yyv4633 - yy4634.CodecEncodeSelf(e) + yy4689 := &yyv4688 + yy4689.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4635 := *v - yyh4635, yyl4635 := z.DecSliceHelperStart() - var yyc4635 bool - if yyl4635 == 0 { - if yyv4635 == nil { - yyv4635 = []LocalObjectReference{} - yyc4635 = true - } else if len(yyv4635) != 0 { - yyv4635 = yyv4635[:0] - yyc4635 = true + yyv4690 := *v + yyh4690, yyl4690 := z.DecSliceHelperStart() + var yyc4690 bool + if yyl4690 == 0 { + if yyv4690 == nil { + yyv4690 = []PodCondition{} + yyc4690 = true + } else if len(yyv4690) != 0 { + yyv4690 = yyv4690[:0] + yyc4690 = true } - } else if yyl4635 > 0 { - var yyrr4635, yyrl4635 int - var yyrt4635 bool - if yyl4635 > cap(yyv4635) { + } else if yyl4690 > 0 { + var yyrr4690, yyrl4690 int + var yyrt4690 bool + if yyl4690 > cap(yyv4690) { - yyrg4635 := len(yyv4635) > 0 - yyv24635 := yyv4635 - yyrl4635, yyrt4635 = z.DecInferLen(yyl4635, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4635 { - if yyrl4635 <= cap(yyv4635) { - yyv4635 = yyv4635[:yyrl4635] + yyrg4690 := len(yyv4690) > 0 + yyv24690 := yyv4690 + yyrl4690, yyrt4690 = z.DecInferLen(yyl4690, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4690 { + if yyrl4690 <= cap(yyv4690) { + yyv4690 = yyv4690[:yyrl4690] } else { - yyv4635 = make([]LocalObjectReference, yyrl4635) + yyv4690 = make([]PodCondition, yyrl4690) } } else { - yyv4635 = make([]LocalObjectReference, yyrl4635) + yyv4690 = make([]PodCondition, yyrl4690) } - yyc4635 = true - yyrr4635 = len(yyv4635) - if yyrg4635 { - copy(yyv4635, yyv24635) + yyc4690 = true + yyrr4690 = len(yyv4690) + if yyrg4690 { + copy(yyv4690, yyv24690) } - } else if yyl4635 != len(yyv4635) { - yyv4635 = yyv4635[:yyl4635] - yyc4635 = true + } else if yyl4690 != len(yyv4690) { + yyv4690 = yyv4690[:yyl4690] + yyc4690 = true } - yyj4635 := 0 - for ; yyj4635 < yyrr4635; yyj4635++ { - yyh4635.ElemContainerState(yyj4635) + yyj4690 := 0 + for ; yyj4690 < yyrr4690; yyj4690++ { + yyh4690.ElemContainerState(yyj4690) if r.TryDecodeAsNil() { - yyv4635[yyj4635] = LocalObjectReference{} + yyv4690[yyj4690] = PodCondition{} } else { - yyv4636 := &yyv4635[yyj4635] - yyv4636.CodecDecodeSelf(d) + yyv4691 := &yyv4690[yyj4690] + yyv4691.CodecDecodeSelf(d) } } - if yyrt4635 { - for ; yyj4635 < yyl4635; yyj4635++ { - yyv4635 = append(yyv4635, LocalObjectReference{}) - yyh4635.ElemContainerState(yyj4635) + if yyrt4690 { + for ; yyj4690 < yyl4690; yyj4690++ { + yyv4690 = append(yyv4690, PodCondition{}) + yyh4690.ElemContainerState(yyj4690) if r.TryDecodeAsNil() { - yyv4635[yyj4635] = LocalObjectReference{} + yyv4690[yyj4690] = PodCondition{} } else { - yyv4637 := &yyv4635[yyj4635] - yyv4637.CodecDecodeSelf(d) + yyv4692 := &yyv4690[yyj4690] + yyv4692.CodecDecodeSelf(d) } } } } else { - yyj4635 := 0 - for ; !r.CheckBreak(); yyj4635++ { + yyj4690 := 0 + for ; !r.CheckBreak(); yyj4690++ { - if yyj4635 >= len(yyv4635) { - yyv4635 = append(yyv4635, LocalObjectReference{}) // var yyz4635 LocalObjectReference - yyc4635 = true + if yyj4690 >= len(yyv4690) { + yyv4690 = append(yyv4690, PodCondition{}) // var yyz4690 PodCondition + yyc4690 = true } - yyh4635.ElemContainerState(yyj4635) - if yyj4635 < len(yyv4635) { + yyh4690.ElemContainerState(yyj4690) + if yyj4690 < len(yyv4690) { if r.TryDecodeAsNil() { - yyv4635[yyj4635] = LocalObjectReference{} + yyv4690[yyj4690] = PodCondition{} } else { - yyv4638 := &yyv4635[yyj4635] - yyv4638.CodecDecodeSelf(d) + yyv4693 := &yyv4690[yyj4690] + yyv4693.CodecDecodeSelf(d) } } else { @@ -58439,115 +59092,115 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4635 < len(yyv4635) { - yyv4635 = yyv4635[:yyj4635] - yyc4635 = true - } else if yyj4635 == 0 && yyv4635 == nil { - yyv4635 = []LocalObjectReference{} - yyc4635 = true + if yyj4690 < len(yyv4690) { + yyv4690 = yyv4690[:yyj4690] + yyc4690 = true + } else if yyj4690 == 0 && yyv4690 == nil { + yyv4690 = []PodCondition{} + yyc4690 = true } } - yyh4635.End() - if yyc4635 { - *v = yyv4635 + yyh4690.End() + if yyc4690 { + *v = yyv4690 } } -func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4639 := range v { + for _, yyv4694 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4640 := &yyv4639 - yy4640.CodecEncodeSelf(e) + yy4695 := &yyv4694 + yy4695.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4641 := *v - yyh4641, yyl4641 := z.DecSliceHelperStart() - var yyc4641 bool - if yyl4641 == 0 { - if yyv4641 == nil { - yyv4641 = []PodCondition{} - yyc4641 = true - } else if len(yyv4641) != 0 { - yyv4641 = yyv4641[:0] - yyc4641 = true + yyv4696 := *v + yyh4696, yyl4696 := z.DecSliceHelperStart() + var yyc4696 bool + if yyl4696 == 0 { + if yyv4696 == nil { + yyv4696 = []ContainerStatus{} + yyc4696 = true + } else if len(yyv4696) != 0 { + yyv4696 = yyv4696[:0] + yyc4696 = true } - } else if yyl4641 > 0 { - var yyrr4641, yyrl4641 int - var yyrt4641 bool - if yyl4641 > cap(yyv4641) { + } else if yyl4696 > 0 { + var yyrr4696, yyrl4696 int + var yyrt4696 bool + if yyl4696 > cap(yyv4696) { - yyrg4641 := len(yyv4641) > 0 - yyv24641 := yyv4641 - yyrl4641, yyrt4641 = z.DecInferLen(yyl4641, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4641 { - if yyrl4641 <= cap(yyv4641) { - yyv4641 = yyv4641[:yyrl4641] + yyrg4696 := len(yyv4696) > 0 + yyv24696 := yyv4696 + yyrl4696, yyrt4696 = z.DecInferLen(yyl4696, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4696 { + if yyrl4696 <= cap(yyv4696) { + yyv4696 = yyv4696[:yyrl4696] } else { - yyv4641 = make([]PodCondition, yyrl4641) + yyv4696 = make([]ContainerStatus, yyrl4696) } } else { - yyv4641 = make([]PodCondition, yyrl4641) + yyv4696 = make([]ContainerStatus, yyrl4696) } - yyc4641 = true - yyrr4641 = len(yyv4641) - if yyrg4641 { - copy(yyv4641, yyv24641) + yyc4696 = true + yyrr4696 = len(yyv4696) + if yyrg4696 { + copy(yyv4696, yyv24696) } - } else if yyl4641 != len(yyv4641) { - yyv4641 = yyv4641[:yyl4641] - yyc4641 = true + } else if yyl4696 != len(yyv4696) { + yyv4696 = yyv4696[:yyl4696] + yyc4696 = true } - yyj4641 := 0 - for ; yyj4641 < yyrr4641; yyj4641++ { - yyh4641.ElemContainerState(yyj4641) + yyj4696 := 0 + for ; yyj4696 < yyrr4696; yyj4696++ { + yyh4696.ElemContainerState(yyj4696) if r.TryDecodeAsNil() { - yyv4641[yyj4641] = PodCondition{} + yyv4696[yyj4696] = ContainerStatus{} } else { - yyv4642 := &yyv4641[yyj4641] - yyv4642.CodecDecodeSelf(d) + yyv4697 := &yyv4696[yyj4696] + yyv4697.CodecDecodeSelf(d) } } - if yyrt4641 { - for ; yyj4641 < yyl4641; yyj4641++ { - yyv4641 = append(yyv4641, PodCondition{}) - yyh4641.ElemContainerState(yyj4641) + if yyrt4696 { + for ; yyj4696 < yyl4696; yyj4696++ { + yyv4696 = append(yyv4696, ContainerStatus{}) + yyh4696.ElemContainerState(yyj4696) if r.TryDecodeAsNil() { - yyv4641[yyj4641] = PodCondition{} + yyv4696[yyj4696] = ContainerStatus{} } else { - yyv4643 := &yyv4641[yyj4641] - yyv4643.CodecDecodeSelf(d) + yyv4698 := &yyv4696[yyj4696] + yyv4698.CodecDecodeSelf(d) } } } } else { - yyj4641 := 0 - for ; !r.CheckBreak(); yyj4641++ { + yyj4696 := 0 + for ; !r.CheckBreak(); yyj4696++ { - if yyj4641 >= len(yyv4641) { - yyv4641 = append(yyv4641, PodCondition{}) // var yyz4641 PodCondition - yyc4641 = true + if yyj4696 >= len(yyv4696) { + yyv4696 = append(yyv4696, ContainerStatus{}) // var yyz4696 ContainerStatus + yyc4696 = true } - yyh4641.ElemContainerState(yyj4641) - if yyj4641 < len(yyv4641) { + yyh4696.ElemContainerState(yyj4696) + if yyj4696 < len(yyv4696) { if r.TryDecodeAsNil() { - yyv4641[yyj4641] = PodCondition{} + yyv4696[yyj4696] = ContainerStatus{} } else { - yyv4644 := &yyv4641[yyj4641] - yyv4644.CodecDecodeSelf(d) + yyv4699 := &yyv4696[yyj4696] + yyv4699.CodecDecodeSelf(d) } } else { @@ -58555,115 +59208,115 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4641 < len(yyv4641) { - yyv4641 = yyv4641[:yyj4641] - yyc4641 = true - } else if yyj4641 == 0 && yyv4641 == nil { - yyv4641 = []PodCondition{} - yyc4641 = true + if yyj4696 < len(yyv4696) { + yyv4696 = yyv4696[:yyj4696] + yyc4696 = true + } else if yyj4696 == 0 && yyv4696 == nil { + yyv4696 = []ContainerStatus{} + yyc4696 = true } } - yyh4641.End() - if yyc4641 { - *v = yyv4641 + yyh4696.End() + if yyc4696 { + *v = yyv4696 } } -func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4645 := range v { + for _, yyv4700 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4646 := &yyv4645 - yy4646.CodecEncodeSelf(e) + yy4701 := &yyv4700 + yy4701.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4647 := *v - yyh4647, yyl4647 := z.DecSliceHelperStart() - var yyc4647 bool - if yyl4647 == 0 { - if yyv4647 == nil { - yyv4647 = []ContainerStatus{} - yyc4647 = true - } else if len(yyv4647) != 0 { - yyv4647 = yyv4647[:0] - yyc4647 = true + yyv4702 := *v + yyh4702, yyl4702 := z.DecSliceHelperStart() + var yyc4702 bool + if yyl4702 == 0 { + if yyv4702 == nil { + yyv4702 = []Pod{} + yyc4702 = true + } else if len(yyv4702) != 0 { + yyv4702 = yyv4702[:0] + yyc4702 = true } - } else if yyl4647 > 0 { - var yyrr4647, yyrl4647 int - var yyrt4647 bool - if yyl4647 > cap(yyv4647) { + } else if yyl4702 > 0 { + var yyrr4702, yyrl4702 int + var yyrt4702 bool + if yyl4702 > cap(yyv4702) { - yyrg4647 := len(yyv4647) > 0 - yyv24647 := yyv4647 - yyrl4647, yyrt4647 = z.DecInferLen(yyl4647, z.DecBasicHandle().MaxInitLen, 120) - if yyrt4647 { - if yyrl4647 <= cap(yyv4647) { - yyv4647 = yyv4647[:yyrl4647] + yyrg4702 := len(yyv4702) > 0 + yyv24702 := yyv4702 + yyrl4702, yyrt4702 = z.DecInferLen(yyl4702, z.DecBasicHandle().MaxInitLen, 664) + if yyrt4702 { + if yyrl4702 <= cap(yyv4702) { + yyv4702 = yyv4702[:yyrl4702] } else { - yyv4647 = make([]ContainerStatus, yyrl4647) + yyv4702 = make([]Pod, yyrl4702) } } else { - yyv4647 = make([]ContainerStatus, yyrl4647) + yyv4702 = make([]Pod, yyrl4702) } - yyc4647 = true - yyrr4647 = len(yyv4647) - if yyrg4647 { - copy(yyv4647, yyv24647) + yyc4702 = true + yyrr4702 = len(yyv4702) + if yyrg4702 { + copy(yyv4702, yyv24702) } - } else if yyl4647 != len(yyv4647) { - yyv4647 = yyv4647[:yyl4647] - yyc4647 = true + } else if yyl4702 != len(yyv4702) { + yyv4702 = yyv4702[:yyl4702] + yyc4702 = true } - yyj4647 := 0 - for ; yyj4647 < yyrr4647; yyj4647++ { - yyh4647.ElemContainerState(yyj4647) + yyj4702 := 0 + for ; yyj4702 < yyrr4702; yyj4702++ { + yyh4702.ElemContainerState(yyj4702) if r.TryDecodeAsNil() { - yyv4647[yyj4647] = ContainerStatus{} + yyv4702[yyj4702] = Pod{} } else { - yyv4648 := &yyv4647[yyj4647] - yyv4648.CodecDecodeSelf(d) + yyv4703 := &yyv4702[yyj4702] + yyv4703.CodecDecodeSelf(d) } } - if yyrt4647 { - for ; yyj4647 < yyl4647; yyj4647++ { - yyv4647 = append(yyv4647, ContainerStatus{}) - yyh4647.ElemContainerState(yyj4647) + if yyrt4702 { + for ; yyj4702 < yyl4702; yyj4702++ { + yyv4702 = append(yyv4702, Pod{}) + yyh4702.ElemContainerState(yyj4702) if r.TryDecodeAsNil() { - yyv4647[yyj4647] = ContainerStatus{} + yyv4702[yyj4702] = Pod{} } else { - yyv4649 := &yyv4647[yyj4647] - yyv4649.CodecDecodeSelf(d) + yyv4704 := &yyv4702[yyj4702] + yyv4704.CodecDecodeSelf(d) } } } } else { - yyj4647 := 0 - for ; !r.CheckBreak(); yyj4647++ { + yyj4702 := 0 + for ; !r.CheckBreak(); yyj4702++ { - if yyj4647 >= len(yyv4647) { - yyv4647 = append(yyv4647, ContainerStatus{}) // var yyz4647 ContainerStatus - yyc4647 = true + if yyj4702 >= len(yyv4702) { + yyv4702 = append(yyv4702, Pod{}) // var yyz4702 Pod + yyc4702 = true } - yyh4647.ElemContainerState(yyj4647) - if yyj4647 < len(yyv4647) { + yyh4702.ElemContainerState(yyj4702) + if yyj4702 < len(yyv4702) { if r.TryDecodeAsNil() { - yyv4647[yyj4647] = ContainerStatus{} + yyv4702[yyj4702] = Pod{} } else { - yyv4650 := &yyv4647[yyj4647] - yyv4650.CodecDecodeSelf(d) + yyv4705 := &yyv4702[yyj4702] + yyv4705.CodecDecodeSelf(d) } } else { @@ -58671,115 +59324,115 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4647 < len(yyv4647) { - yyv4647 = yyv4647[:yyj4647] - yyc4647 = true - } else if yyj4647 == 0 && yyv4647 == nil { - yyv4647 = []ContainerStatus{} - yyc4647 = true + if yyj4702 < len(yyv4702) { + yyv4702 = yyv4702[:yyj4702] + yyc4702 = true + } else if yyj4702 == 0 && yyv4702 == nil { + yyv4702 = []Pod{} + yyc4702 = true } } - yyh4647.End() - if yyc4647 { - *v = yyv4647 + yyh4702.End() + if yyc4702 { + *v = yyv4702 } } -func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { +func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4651 := range v { + for _, yyv4706 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4652 := &yyv4651 - yy4652.CodecEncodeSelf(e) + yy4707 := &yyv4706 + yy4707.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { +func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4653 := *v - yyh4653, yyl4653 := z.DecSliceHelperStart() - var yyc4653 bool - if yyl4653 == 0 { - if yyv4653 == nil { - yyv4653 = []Pod{} - yyc4653 = true - } else if len(yyv4653) != 0 { - yyv4653 = yyv4653[:0] - yyc4653 = true + yyv4708 := *v + yyh4708, yyl4708 := z.DecSliceHelperStart() + var yyc4708 bool + if yyl4708 == 0 { + if yyv4708 == nil { + yyv4708 = []PodTemplate{} + yyc4708 = true + } else if len(yyv4708) != 0 { + yyv4708 = yyv4708[:0] + yyc4708 = true } - } else if yyl4653 > 0 { - var yyrr4653, yyrl4653 int - var yyrt4653 bool - if yyl4653 > cap(yyv4653) { + } else if yyl4708 > 0 { + var yyrr4708, yyrl4708 int + var yyrt4708 bool + if yyl4708 > cap(yyv4708) { - yyrg4653 := len(yyv4653) > 0 - yyv24653 := yyv4653 - yyrl4653, yyrt4653 = z.DecInferLen(yyl4653, z.DecBasicHandle().MaxInitLen, 664) - if yyrt4653 { - if yyrl4653 <= cap(yyv4653) { - yyv4653 = yyv4653[:yyrl4653] + yyrg4708 := len(yyv4708) > 0 + yyv24708 := yyv4708 + yyrl4708, yyrt4708 = z.DecInferLen(yyl4708, z.DecBasicHandle().MaxInitLen, 728) + if yyrt4708 { + if yyrl4708 <= cap(yyv4708) { + yyv4708 = yyv4708[:yyrl4708] } else { - yyv4653 = make([]Pod, yyrl4653) + yyv4708 = make([]PodTemplate, yyrl4708) } } else { - yyv4653 = make([]Pod, yyrl4653) + yyv4708 = make([]PodTemplate, yyrl4708) } - yyc4653 = true - yyrr4653 = len(yyv4653) - if yyrg4653 { - copy(yyv4653, yyv24653) + yyc4708 = true + yyrr4708 = len(yyv4708) + if yyrg4708 { + copy(yyv4708, yyv24708) } - } else if yyl4653 != len(yyv4653) { - yyv4653 = yyv4653[:yyl4653] - yyc4653 = true + } else if yyl4708 != len(yyv4708) { + yyv4708 = yyv4708[:yyl4708] + yyc4708 = true } - yyj4653 := 0 - for ; yyj4653 < yyrr4653; yyj4653++ { - yyh4653.ElemContainerState(yyj4653) + yyj4708 := 0 + for ; yyj4708 < yyrr4708; yyj4708++ { + yyh4708.ElemContainerState(yyj4708) if r.TryDecodeAsNil() { - yyv4653[yyj4653] = Pod{} + yyv4708[yyj4708] = PodTemplate{} } else { - yyv4654 := &yyv4653[yyj4653] - yyv4654.CodecDecodeSelf(d) + yyv4709 := &yyv4708[yyj4708] + yyv4709.CodecDecodeSelf(d) } } - if yyrt4653 { - for ; yyj4653 < yyl4653; yyj4653++ { - yyv4653 = append(yyv4653, Pod{}) - yyh4653.ElemContainerState(yyj4653) + if yyrt4708 { + for ; yyj4708 < yyl4708; yyj4708++ { + yyv4708 = append(yyv4708, PodTemplate{}) + yyh4708.ElemContainerState(yyj4708) if r.TryDecodeAsNil() { - yyv4653[yyj4653] = Pod{} + yyv4708[yyj4708] = PodTemplate{} } else { - yyv4655 := &yyv4653[yyj4653] - yyv4655.CodecDecodeSelf(d) + yyv4710 := &yyv4708[yyj4708] + yyv4710.CodecDecodeSelf(d) } } } } else { - yyj4653 := 0 - for ; !r.CheckBreak(); yyj4653++ { + yyj4708 := 0 + for ; !r.CheckBreak(); yyj4708++ { - if yyj4653 >= len(yyv4653) { - yyv4653 = append(yyv4653, Pod{}) // var yyz4653 Pod - yyc4653 = true + if yyj4708 >= len(yyv4708) { + yyv4708 = append(yyv4708, PodTemplate{}) // var yyz4708 PodTemplate + yyc4708 = true } - yyh4653.ElemContainerState(yyj4653) - if yyj4653 < len(yyv4653) { + yyh4708.ElemContainerState(yyj4708) + if yyj4708 < len(yyv4708) { if r.TryDecodeAsNil() { - yyv4653[yyj4653] = Pod{} + yyv4708[yyj4708] = PodTemplate{} } else { - yyv4656 := &yyv4653[yyj4653] - yyv4656.CodecDecodeSelf(d) + yyv4711 := &yyv4708[yyj4708] + yyv4711.CodecDecodeSelf(d) } } else { @@ -58787,115 +59440,115 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj4653 < len(yyv4653) { - yyv4653 = yyv4653[:yyj4653] - yyc4653 = true - } else if yyj4653 == 0 && yyv4653 == nil { - yyv4653 = []Pod{} - yyc4653 = true + if yyj4708 < len(yyv4708) { + yyv4708 = yyv4708[:yyj4708] + yyc4708 = true + } else if yyj4708 == 0 && yyv4708 == nil { + yyv4708 = []PodTemplate{} + yyc4708 = true } } - yyh4653.End() - if yyc4653 { - *v = yyv4653 + yyh4708.End() + if yyc4708 { + *v = yyv4708 } } -func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceReplicationControllerCondition(v []ReplicationControllerCondition, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4657 := range v { + for _, yyv4712 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4658 := &yyv4657 - yy4658.CodecEncodeSelf(e) + yy4713 := &yyv4712 + yy4713.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Decoder) { +func (x codecSelfer1234) decSliceReplicationControllerCondition(v *[]ReplicationControllerCondition, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4659 := *v - yyh4659, yyl4659 := z.DecSliceHelperStart() - var yyc4659 bool - if yyl4659 == 0 { - if yyv4659 == nil { - yyv4659 = []PodTemplate{} - yyc4659 = true - } else if len(yyv4659) != 0 { - yyv4659 = yyv4659[:0] - yyc4659 = true + yyv4714 := *v + yyh4714, yyl4714 := z.DecSliceHelperStart() + var yyc4714 bool + if yyl4714 == 0 { + if yyv4714 == nil { + yyv4714 = []ReplicationControllerCondition{} + yyc4714 = true + } else if len(yyv4714) != 0 { + yyv4714 = yyv4714[:0] + yyc4714 = true } - } else if yyl4659 > 0 { - var yyrr4659, yyrl4659 int - var yyrt4659 bool - if yyl4659 > cap(yyv4659) { + } else if yyl4714 > 0 { + var yyrr4714, yyrl4714 int + var yyrt4714 bool + if yyl4714 > cap(yyv4714) { - yyrg4659 := len(yyv4659) > 0 - yyv24659 := yyv4659 - yyrl4659, yyrt4659 = z.DecInferLen(yyl4659, z.DecBasicHandle().MaxInitLen, 728) - if yyrt4659 { - if yyrl4659 <= cap(yyv4659) { - yyv4659 = yyv4659[:yyrl4659] + yyrg4714 := len(yyv4714) > 0 + yyv24714 := yyv4714 + yyrl4714, yyrt4714 = z.DecInferLen(yyl4714, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4714 { + if yyrl4714 <= cap(yyv4714) { + yyv4714 = yyv4714[:yyrl4714] } else { - yyv4659 = make([]PodTemplate, yyrl4659) + yyv4714 = make([]ReplicationControllerCondition, yyrl4714) } } else { - yyv4659 = make([]PodTemplate, yyrl4659) + yyv4714 = make([]ReplicationControllerCondition, yyrl4714) } - yyc4659 = true - yyrr4659 = len(yyv4659) - if yyrg4659 { - copy(yyv4659, yyv24659) + yyc4714 = true + yyrr4714 = len(yyv4714) + if yyrg4714 { + copy(yyv4714, yyv24714) } - } else if yyl4659 != len(yyv4659) { - yyv4659 = yyv4659[:yyl4659] - yyc4659 = true + } else if yyl4714 != len(yyv4714) { + yyv4714 = yyv4714[:yyl4714] + yyc4714 = true } - yyj4659 := 0 - for ; yyj4659 < yyrr4659; yyj4659++ { - yyh4659.ElemContainerState(yyj4659) + yyj4714 := 0 + for ; yyj4714 < yyrr4714; yyj4714++ { + yyh4714.ElemContainerState(yyj4714) if r.TryDecodeAsNil() { - yyv4659[yyj4659] = PodTemplate{} + yyv4714[yyj4714] = ReplicationControllerCondition{} } else { - yyv4660 := &yyv4659[yyj4659] - yyv4660.CodecDecodeSelf(d) + yyv4715 := &yyv4714[yyj4714] + yyv4715.CodecDecodeSelf(d) } } - if yyrt4659 { - for ; yyj4659 < yyl4659; yyj4659++ { - yyv4659 = append(yyv4659, PodTemplate{}) - yyh4659.ElemContainerState(yyj4659) + if yyrt4714 { + for ; yyj4714 < yyl4714; yyj4714++ { + yyv4714 = append(yyv4714, ReplicationControllerCondition{}) + yyh4714.ElemContainerState(yyj4714) if r.TryDecodeAsNil() { - yyv4659[yyj4659] = PodTemplate{} + yyv4714[yyj4714] = ReplicationControllerCondition{} } else { - yyv4661 := &yyv4659[yyj4659] - yyv4661.CodecDecodeSelf(d) + yyv4716 := &yyv4714[yyj4714] + yyv4716.CodecDecodeSelf(d) } } } } else { - yyj4659 := 0 - for ; !r.CheckBreak(); yyj4659++ { + yyj4714 := 0 + for ; !r.CheckBreak(); yyj4714++ { - if yyj4659 >= len(yyv4659) { - yyv4659 = append(yyv4659, PodTemplate{}) // var yyz4659 PodTemplate - yyc4659 = true + if yyj4714 >= len(yyv4714) { + yyv4714 = append(yyv4714, ReplicationControllerCondition{}) // var yyz4714 ReplicationControllerCondition + yyc4714 = true } - yyh4659.ElemContainerState(yyj4659) - if yyj4659 < len(yyv4659) { + yyh4714.ElemContainerState(yyj4714) + if yyj4714 < len(yyv4714) { if r.TryDecodeAsNil() { - yyv4659[yyj4659] = PodTemplate{} + yyv4714[yyj4714] = ReplicationControllerCondition{} } else { - yyv4662 := &yyv4659[yyj4659] - yyv4662.CodecDecodeSelf(d) + yyv4717 := &yyv4714[yyj4714] + yyv4717.CodecDecodeSelf(d) } } else { @@ -58903,17 +59556,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4659 < len(yyv4659) { - yyv4659 = yyv4659[:yyj4659] - yyc4659 = true - } else if yyj4659 == 0 && yyv4659 == nil { - yyv4659 = []PodTemplate{} - yyc4659 = true + if yyj4714 < len(yyv4714) { + yyv4714 = yyv4714[:yyj4714] + yyc4714 = true + } else if yyj4714 == 0 && yyv4714 == nil { + yyv4714 = []ReplicationControllerCondition{} + yyc4714 = true } } - yyh4659.End() - if yyc4659 { - *v = yyv4659 + yyh4714.End() + if yyc4714 { + *v = yyv4714 } } @@ -58922,10 +59575,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4663 := range v { + for _, yyv4718 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4664 := &yyv4663 - yy4664.CodecEncodeSelf(e) + yy4719 := &yyv4718 + yy4719.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58935,83 +59588,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4665 := *v - yyh4665, yyl4665 := z.DecSliceHelperStart() - var yyc4665 bool - if yyl4665 == 0 { - if yyv4665 == nil { - yyv4665 = []ReplicationController{} - yyc4665 = true - } else if len(yyv4665) != 0 { - yyv4665 = yyv4665[:0] - yyc4665 = true + yyv4720 := *v + yyh4720, yyl4720 := z.DecSliceHelperStart() + var yyc4720 bool + if yyl4720 == 0 { + if yyv4720 == nil { + yyv4720 = []ReplicationController{} + yyc4720 = true + } else if len(yyv4720) != 0 { + yyv4720 = yyv4720[:0] + yyc4720 = true } - } else if yyl4665 > 0 { - var yyrr4665, yyrl4665 int - var yyrt4665 bool - if yyl4665 > cap(yyv4665) { + } else if yyl4720 > 0 { + var yyrr4720, yyrl4720 int + var yyrt4720 bool + if yyl4720 > cap(yyv4720) { - yyrg4665 := len(yyv4665) > 0 - yyv24665 := yyv4665 - yyrl4665, yyrt4665 = z.DecInferLen(yyl4665, z.DecBasicHandle().MaxInitLen, 312) - if yyrt4665 { - if yyrl4665 <= cap(yyv4665) { - yyv4665 = yyv4665[:yyrl4665] + yyrg4720 := len(yyv4720) > 0 + yyv24720 := yyv4720 + yyrl4720, yyrt4720 = z.DecInferLen(yyl4720, z.DecBasicHandle().MaxInitLen, 336) + if yyrt4720 { + if yyrl4720 <= cap(yyv4720) { + yyv4720 = yyv4720[:yyrl4720] } else { - yyv4665 = make([]ReplicationController, yyrl4665) + yyv4720 = make([]ReplicationController, yyrl4720) } } else { - yyv4665 = make([]ReplicationController, yyrl4665) + yyv4720 = make([]ReplicationController, yyrl4720) } - yyc4665 = true - yyrr4665 = len(yyv4665) - if yyrg4665 { - copy(yyv4665, yyv24665) + yyc4720 = true + yyrr4720 = len(yyv4720) + if yyrg4720 { + copy(yyv4720, yyv24720) } - } else if yyl4665 != len(yyv4665) { - yyv4665 = yyv4665[:yyl4665] - yyc4665 = true + } else if yyl4720 != len(yyv4720) { + yyv4720 = yyv4720[:yyl4720] + yyc4720 = true } - yyj4665 := 0 - for ; yyj4665 < yyrr4665; yyj4665++ { - yyh4665.ElemContainerState(yyj4665) + yyj4720 := 0 + for ; yyj4720 < yyrr4720; yyj4720++ { + yyh4720.ElemContainerState(yyj4720) if r.TryDecodeAsNil() { - yyv4665[yyj4665] = ReplicationController{} + yyv4720[yyj4720] = ReplicationController{} } else { - yyv4666 := &yyv4665[yyj4665] - yyv4666.CodecDecodeSelf(d) + yyv4721 := &yyv4720[yyj4720] + yyv4721.CodecDecodeSelf(d) } } - if yyrt4665 { - for ; yyj4665 < yyl4665; yyj4665++ { - yyv4665 = append(yyv4665, ReplicationController{}) - yyh4665.ElemContainerState(yyj4665) + if yyrt4720 { + for ; yyj4720 < yyl4720; yyj4720++ { + yyv4720 = append(yyv4720, ReplicationController{}) + yyh4720.ElemContainerState(yyj4720) if r.TryDecodeAsNil() { - yyv4665[yyj4665] = ReplicationController{} + yyv4720[yyj4720] = ReplicationController{} } else { - yyv4667 := &yyv4665[yyj4665] - yyv4667.CodecDecodeSelf(d) + yyv4722 := &yyv4720[yyj4720] + yyv4722.CodecDecodeSelf(d) } } } } else { - yyj4665 := 0 - for ; !r.CheckBreak(); yyj4665++ { + yyj4720 := 0 + for ; !r.CheckBreak(); yyj4720++ { - if yyj4665 >= len(yyv4665) { - yyv4665 = append(yyv4665, ReplicationController{}) // var yyz4665 ReplicationController - yyc4665 = true + if yyj4720 >= len(yyv4720) { + yyv4720 = append(yyv4720, ReplicationController{}) // var yyz4720 ReplicationController + yyc4720 = true } - yyh4665.ElemContainerState(yyj4665) - if yyj4665 < len(yyv4665) { + yyh4720.ElemContainerState(yyj4720) + if yyj4720 < len(yyv4720) { if r.TryDecodeAsNil() { - yyv4665[yyj4665] = ReplicationController{} + yyv4720[yyj4720] = ReplicationController{} } else { - yyv4668 := &yyv4665[yyj4665] - yyv4668.CodecDecodeSelf(d) + yyv4723 := &yyv4720[yyj4720] + yyv4723.CodecDecodeSelf(d) } } else { @@ -59019,17 +59672,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4665 < len(yyv4665) { - yyv4665 = yyv4665[:yyj4665] - yyc4665 = true - } else if yyj4665 == 0 && yyv4665 == nil { - yyv4665 = []ReplicationController{} - yyc4665 = true + if yyj4720 < len(yyv4720) { + yyv4720 = yyv4720[:yyj4720] + yyc4720 = true + } else if yyj4720 == 0 && yyv4720 == nil { + yyv4720 = []ReplicationController{} + yyc4720 = true } } - yyh4665.End() - if yyc4665 { - *v = yyv4665 + yyh4720.End() + if yyc4720 { + *v = yyv4720 } } @@ -59038,10 +59691,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4669 := range v { + for _, yyv4724 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4670 := &yyv4669 - yy4670.CodecEncodeSelf(e) + yy4725 := &yyv4724 + yy4725.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59051,83 +59704,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4671 := *v - yyh4671, yyl4671 := z.DecSliceHelperStart() - var yyc4671 bool - if yyl4671 == 0 { - if yyv4671 == nil { - yyv4671 = []LoadBalancerIngress{} - yyc4671 = true - } else if len(yyv4671) != 0 { - yyv4671 = yyv4671[:0] - yyc4671 = true + yyv4726 := *v + yyh4726, yyl4726 := z.DecSliceHelperStart() + var yyc4726 bool + if yyl4726 == 0 { + if yyv4726 == nil { + yyv4726 = []LoadBalancerIngress{} + yyc4726 = true + } else if len(yyv4726) != 0 { + yyv4726 = yyv4726[:0] + yyc4726 = true } - } else if yyl4671 > 0 { - var yyrr4671, yyrl4671 int - var yyrt4671 bool - if yyl4671 > cap(yyv4671) { + } else if yyl4726 > 0 { + var yyrr4726, yyrl4726 int + var yyrt4726 bool + if yyl4726 > cap(yyv4726) { - yyrg4671 := len(yyv4671) > 0 - yyv24671 := yyv4671 - yyrl4671, yyrt4671 = z.DecInferLen(yyl4671, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4671 { - if yyrl4671 <= cap(yyv4671) { - yyv4671 = yyv4671[:yyrl4671] + yyrg4726 := len(yyv4726) > 0 + yyv24726 := yyv4726 + yyrl4726, yyrt4726 = z.DecInferLen(yyl4726, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4726 { + if yyrl4726 <= cap(yyv4726) { + yyv4726 = yyv4726[:yyrl4726] } else { - yyv4671 = make([]LoadBalancerIngress, yyrl4671) + yyv4726 = make([]LoadBalancerIngress, yyrl4726) } } else { - yyv4671 = make([]LoadBalancerIngress, yyrl4671) + yyv4726 = make([]LoadBalancerIngress, yyrl4726) } - yyc4671 = true - yyrr4671 = len(yyv4671) - if yyrg4671 { - copy(yyv4671, yyv24671) + yyc4726 = true + yyrr4726 = len(yyv4726) + if yyrg4726 { + copy(yyv4726, yyv24726) } - } else if yyl4671 != len(yyv4671) { - yyv4671 = yyv4671[:yyl4671] - yyc4671 = true + } else if yyl4726 != len(yyv4726) { + yyv4726 = yyv4726[:yyl4726] + yyc4726 = true } - yyj4671 := 0 - for ; yyj4671 < yyrr4671; yyj4671++ { - yyh4671.ElemContainerState(yyj4671) + yyj4726 := 0 + for ; yyj4726 < yyrr4726; yyj4726++ { + yyh4726.ElemContainerState(yyj4726) if r.TryDecodeAsNil() { - yyv4671[yyj4671] = LoadBalancerIngress{} + yyv4726[yyj4726] = LoadBalancerIngress{} } else { - yyv4672 := &yyv4671[yyj4671] - yyv4672.CodecDecodeSelf(d) + yyv4727 := &yyv4726[yyj4726] + yyv4727.CodecDecodeSelf(d) } } - if yyrt4671 { - for ; yyj4671 < yyl4671; yyj4671++ { - yyv4671 = append(yyv4671, LoadBalancerIngress{}) - yyh4671.ElemContainerState(yyj4671) + if yyrt4726 { + for ; yyj4726 < yyl4726; yyj4726++ { + yyv4726 = append(yyv4726, LoadBalancerIngress{}) + yyh4726.ElemContainerState(yyj4726) if r.TryDecodeAsNil() { - yyv4671[yyj4671] = LoadBalancerIngress{} + yyv4726[yyj4726] = LoadBalancerIngress{} } else { - yyv4673 := &yyv4671[yyj4671] - yyv4673.CodecDecodeSelf(d) + yyv4728 := &yyv4726[yyj4726] + yyv4728.CodecDecodeSelf(d) } } } } else { - yyj4671 := 0 - for ; !r.CheckBreak(); yyj4671++ { + yyj4726 := 0 + for ; !r.CheckBreak(); yyj4726++ { - if yyj4671 >= len(yyv4671) { - yyv4671 = append(yyv4671, LoadBalancerIngress{}) // var yyz4671 LoadBalancerIngress - yyc4671 = true + if yyj4726 >= len(yyv4726) { + yyv4726 = append(yyv4726, LoadBalancerIngress{}) // var yyz4726 LoadBalancerIngress + yyc4726 = true } - yyh4671.ElemContainerState(yyj4671) - if yyj4671 < len(yyv4671) { + yyh4726.ElemContainerState(yyj4726) + if yyj4726 < len(yyv4726) { if r.TryDecodeAsNil() { - yyv4671[yyj4671] = LoadBalancerIngress{} + yyv4726[yyj4726] = LoadBalancerIngress{} } else { - yyv4674 := &yyv4671[yyj4671] - yyv4674.CodecDecodeSelf(d) + yyv4729 := &yyv4726[yyj4726] + yyv4729.CodecDecodeSelf(d) } } else { @@ -59135,17 +59788,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4671 < len(yyv4671) { - yyv4671 = yyv4671[:yyj4671] - yyc4671 = true - } else if yyj4671 == 0 && yyv4671 == nil { - yyv4671 = []LoadBalancerIngress{} - yyc4671 = true + if yyj4726 < len(yyv4726) { + yyv4726 = yyv4726[:yyj4726] + yyc4726 = true + } else if yyj4726 == 0 && yyv4726 == nil { + yyv4726 = []LoadBalancerIngress{} + yyc4726 = true } } - yyh4671.End() - if yyc4671 { - *v = yyv4671 + yyh4726.End() + if yyc4726 { + *v = yyv4726 } } @@ -59154,10 +59807,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4675 := range v { + for _, yyv4730 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4676 := &yyv4675 - yy4676.CodecEncodeSelf(e) + yy4731 := &yyv4730 + yy4731.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59167,83 +59820,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4677 := *v - yyh4677, yyl4677 := z.DecSliceHelperStart() - var yyc4677 bool - if yyl4677 == 0 { - if yyv4677 == nil { - yyv4677 = []ServicePort{} - yyc4677 = true - } else if len(yyv4677) != 0 { - yyv4677 = yyv4677[:0] - yyc4677 = true + yyv4732 := *v + yyh4732, yyl4732 := z.DecSliceHelperStart() + var yyc4732 bool + if yyl4732 == 0 { + if yyv4732 == nil { + yyv4732 = []ServicePort{} + yyc4732 = true + } else if len(yyv4732) != 0 { + yyv4732 = yyv4732[:0] + yyc4732 = true } - } else if yyl4677 > 0 { - var yyrr4677, yyrl4677 int - var yyrt4677 bool - if yyl4677 > cap(yyv4677) { + } else if yyl4732 > 0 { + var yyrr4732, yyrl4732 int + var yyrt4732 bool + if yyl4732 > cap(yyv4732) { - yyrg4677 := len(yyv4677) > 0 - yyv24677 := yyv4677 - yyrl4677, yyrt4677 = z.DecInferLen(yyl4677, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4677 { - if yyrl4677 <= cap(yyv4677) { - yyv4677 = yyv4677[:yyrl4677] + yyrg4732 := len(yyv4732) > 0 + yyv24732 := yyv4732 + yyrl4732, yyrt4732 = z.DecInferLen(yyl4732, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4732 { + if yyrl4732 <= cap(yyv4732) { + yyv4732 = yyv4732[:yyrl4732] } else { - yyv4677 = make([]ServicePort, yyrl4677) + yyv4732 = make([]ServicePort, yyrl4732) } } else { - yyv4677 = make([]ServicePort, yyrl4677) + yyv4732 = make([]ServicePort, yyrl4732) } - yyc4677 = true - yyrr4677 = len(yyv4677) - if yyrg4677 { - copy(yyv4677, yyv24677) + yyc4732 = true + yyrr4732 = len(yyv4732) + if yyrg4732 { + copy(yyv4732, yyv24732) } - } else if yyl4677 != len(yyv4677) { - yyv4677 = yyv4677[:yyl4677] - yyc4677 = true + } else if yyl4732 != len(yyv4732) { + yyv4732 = yyv4732[:yyl4732] + yyc4732 = true } - yyj4677 := 0 - for ; yyj4677 < yyrr4677; yyj4677++ { - yyh4677.ElemContainerState(yyj4677) + yyj4732 := 0 + for ; yyj4732 < yyrr4732; yyj4732++ { + yyh4732.ElemContainerState(yyj4732) if r.TryDecodeAsNil() { - yyv4677[yyj4677] = ServicePort{} + yyv4732[yyj4732] = ServicePort{} } else { - yyv4678 := &yyv4677[yyj4677] - yyv4678.CodecDecodeSelf(d) + yyv4733 := &yyv4732[yyj4732] + yyv4733.CodecDecodeSelf(d) } } - if yyrt4677 { - for ; yyj4677 < yyl4677; yyj4677++ { - yyv4677 = append(yyv4677, ServicePort{}) - yyh4677.ElemContainerState(yyj4677) + if yyrt4732 { + for ; yyj4732 < yyl4732; yyj4732++ { + yyv4732 = append(yyv4732, ServicePort{}) + yyh4732.ElemContainerState(yyj4732) if r.TryDecodeAsNil() { - yyv4677[yyj4677] = ServicePort{} + yyv4732[yyj4732] = ServicePort{} } else { - yyv4679 := &yyv4677[yyj4677] - yyv4679.CodecDecodeSelf(d) + yyv4734 := &yyv4732[yyj4732] + yyv4734.CodecDecodeSelf(d) } } } } else { - yyj4677 := 0 - for ; !r.CheckBreak(); yyj4677++ { + yyj4732 := 0 + for ; !r.CheckBreak(); yyj4732++ { - if yyj4677 >= len(yyv4677) { - yyv4677 = append(yyv4677, ServicePort{}) // var yyz4677 ServicePort - yyc4677 = true + if yyj4732 >= len(yyv4732) { + yyv4732 = append(yyv4732, ServicePort{}) // var yyz4732 ServicePort + yyc4732 = true } - yyh4677.ElemContainerState(yyj4677) - if yyj4677 < len(yyv4677) { + yyh4732.ElemContainerState(yyj4732) + if yyj4732 < len(yyv4732) { if r.TryDecodeAsNil() { - yyv4677[yyj4677] = ServicePort{} + yyv4732[yyj4732] = ServicePort{} } else { - yyv4680 := &yyv4677[yyj4677] - yyv4680.CodecDecodeSelf(d) + yyv4735 := &yyv4732[yyj4732] + yyv4735.CodecDecodeSelf(d) } } else { @@ -59251,17 +59904,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4677 < len(yyv4677) { - yyv4677 = yyv4677[:yyj4677] - yyc4677 = true - } else if yyj4677 == 0 && yyv4677 == nil { - yyv4677 = []ServicePort{} - yyc4677 = true + if yyj4732 < len(yyv4732) { + yyv4732 = yyv4732[:yyj4732] + yyc4732 = true + } else if yyj4732 == 0 && yyv4732 == nil { + yyv4732 = []ServicePort{} + yyc4732 = true } } - yyh4677.End() - if yyc4677 { - *v = yyv4677 + yyh4732.End() + if yyc4732 { + *v = yyv4732 } } @@ -59270,10 +59923,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4681 := range v { + for _, yyv4736 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4682 := &yyv4681 - yy4682.CodecEncodeSelf(e) + yy4737 := &yyv4736 + yy4737.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59283,83 +59936,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4683 := *v - yyh4683, yyl4683 := z.DecSliceHelperStart() - var yyc4683 bool - if yyl4683 == 0 { - if yyv4683 == nil { - yyv4683 = []Service{} - yyc4683 = true - } else if len(yyv4683) != 0 { - yyv4683 = yyv4683[:0] - yyc4683 = true + yyv4738 := *v + yyh4738, yyl4738 := z.DecSliceHelperStart() + var yyc4738 bool + if yyl4738 == 0 { + if yyv4738 == nil { + yyv4738 = []Service{} + yyc4738 = true + } else if len(yyv4738) != 0 { + yyv4738 = yyv4738[:0] + yyc4738 = true } - } else if yyl4683 > 0 { - var yyrr4683, yyrl4683 int - var yyrt4683 bool - if yyl4683 > cap(yyv4683) { + } else if yyl4738 > 0 { + var yyrr4738, yyrl4738 int + var yyrt4738 bool + if yyl4738 > cap(yyv4738) { - yyrg4683 := len(yyv4683) > 0 - yyv24683 := yyv4683 - yyrl4683, yyrt4683 = z.DecInferLen(yyl4683, z.DecBasicHandle().MaxInitLen, 464) - if yyrt4683 { - if yyrl4683 <= cap(yyv4683) { - yyv4683 = yyv4683[:yyrl4683] + yyrg4738 := len(yyv4738) > 0 + yyv24738 := yyv4738 + yyrl4738, yyrt4738 = z.DecInferLen(yyl4738, z.DecBasicHandle().MaxInitLen, 464) + if yyrt4738 { + if yyrl4738 <= cap(yyv4738) { + yyv4738 = yyv4738[:yyrl4738] } else { - yyv4683 = make([]Service, yyrl4683) + yyv4738 = make([]Service, yyrl4738) } } else { - yyv4683 = make([]Service, yyrl4683) + yyv4738 = make([]Service, yyrl4738) } - yyc4683 = true - yyrr4683 = len(yyv4683) - if yyrg4683 { - copy(yyv4683, yyv24683) + yyc4738 = true + yyrr4738 = len(yyv4738) + if yyrg4738 { + copy(yyv4738, yyv24738) } - } else if yyl4683 != len(yyv4683) { - yyv4683 = yyv4683[:yyl4683] - yyc4683 = true + } else if yyl4738 != len(yyv4738) { + yyv4738 = yyv4738[:yyl4738] + yyc4738 = true } - yyj4683 := 0 - for ; yyj4683 < yyrr4683; yyj4683++ { - yyh4683.ElemContainerState(yyj4683) + yyj4738 := 0 + for ; yyj4738 < yyrr4738; yyj4738++ { + yyh4738.ElemContainerState(yyj4738) if r.TryDecodeAsNil() { - yyv4683[yyj4683] = Service{} + yyv4738[yyj4738] = Service{} } else { - yyv4684 := &yyv4683[yyj4683] - yyv4684.CodecDecodeSelf(d) + yyv4739 := &yyv4738[yyj4738] + yyv4739.CodecDecodeSelf(d) } } - if yyrt4683 { - for ; yyj4683 < yyl4683; yyj4683++ { - yyv4683 = append(yyv4683, Service{}) - yyh4683.ElemContainerState(yyj4683) + if yyrt4738 { + for ; yyj4738 < yyl4738; yyj4738++ { + yyv4738 = append(yyv4738, Service{}) + yyh4738.ElemContainerState(yyj4738) if r.TryDecodeAsNil() { - yyv4683[yyj4683] = Service{} + yyv4738[yyj4738] = Service{} } else { - yyv4685 := &yyv4683[yyj4683] - yyv4685.CodecDecodeSelf(d) + yyv4740 := &yyv4738[yyj4738] + yyv4740.CodecDecodeSelf(d) } } } } else { - yyj4683 := 0 - for ; !r.CheckBreak(); yyj4683++ { + yyj4738 := 0 + for ; !r.CheckBreak(); yyj4738++ { - if yyj4683 >= len(yyv4683) { - yyv4683 = append(yyv4683, Service{}) // var yyz4683 Service - yyc4683 = true + if yyj4738 >= len(yyv4738) { + yyv4738 = append(yyv4738, Service{}) // var yyz4738 Service + yyc4738 = true } - yyh4683.ElemContainerState(yyj4683) - if yyj4683 < len(yyv4683) { + yyh4738.ElemContainerState(yyj4738) + if yyj4738 < len(yyv4738) { if r.TryDecodeAsNil() { - yyv4683[yyj4683] = Service{} + yyv4738[yyj4738] = Service{} } else { - yyv4686 := &yyv4683[yyj4683] - yyv4686.CodecDecodeSelf(d) + yyv4741 := &yyv4738[yyj4738] + yyv4741.CodecDecodeSelf(d) } } else { @@ -59367,17 +60020,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4683 < len(yyv4683) { - yyv4683 = yyv4683[:yyj4683] - yyc4683 = true - } else if yyj4683 == 0 && yyv4683 == nil { - yyv4683 = []Service{} - yyc4683 = true + if yyj4738 < len(yyv4738) { + yyv4738 = yyv4738[:yyj4738] + yyc4738 = true + } else if yyj4738 == 0 && yyv4738 == nil { + yyv4738 = []Service{} + yyc4738 = true } } - yyh4683.End() - if yyc4683 { - *v = yyv4683 + yyh4738.End() + if yyc4738 { + *v = yyv4738 } } @@ -59386,10 +60039,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4687 := range v { + for _, yyv4742 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4688 := &yyv4687 - yy4688.CodecEncodeSelf(e) + yy4743 := &yyv4742 + yy4743.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59399,83 +60052,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4689 := *v - yyh4689, yyl4689 := z.DecSliceHelperStart() - var yyc4689 bool - if yyl4689 == 0 { - if yyv4689 == nil { - yyv4689 = []ObjectReference{} - yyc4689 = true - } else if len(yyv4689) != 0 { - yyv4689 = yyv4689[:0] - yyc4689 = true + yyv4744 := *v + yyh4744, yyl4744 := z.DecSliceHelperStart() + var yyc4744 bool + if yyl4744 == 0 { + if yyv4744 == nil { + yyv4744 = []ObjectReference{} + yyc4744 = true + } else if len(yyv4744) != 0 { + yyv4744 = yyv4744[:0] + yyc4744 = true } - } else if yyl4689 > 0 { - var yyrr4689, yyrl4689 int - var yyrt4689 bool - if yyl4689 > cap(yyv4689) { + } else if yyl4744 > 0 { + var yyrr4744, yyrl4744 int + var yyrt4744 bool + if yyl4744 > cap(yyv4744) { - yyrg4689 := len(yyv4689) > 0 - yyv24689 := yyv4689 - yyrl4689, yyrt4689 = z.DecInferLen(yyl4689, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4689 { - if yyrl4689 <= cap(yyv4689) { - yyv4689 = yyv4689[:yyrl4689] + yyrg4744 := len(yyv4744) > 0 + yyv24744 := yyv4744 + yyrl4744, yyrt4744 = z.DecInferLen(yyl4744, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4744 { + if yyrl4744 <= cap(yyv4744) { + yyv4744 = yyv4744[:yyrl4744] } else { - yyv4689 = make([]ObjectReference, yyrl4689) + yyv4744 = make([]ObjectReference, yyrl4744) } } else { - yyv4689 = make([]ObjectReference, yyrl4689) + yyv4744 = make([]ObjectReference, yyrl4744) } - yyc4689 = true - yyrr4689 = len(yyv4689) - if yyrg4689 { - copy(yyv4689, yyv24689) + yyc4744 = true + yyrr4744 = len(yyv4744) + if yyrg4744 { + copy(yyv4744, yyv24744) } - } else if yyl4689 != len(yyv4689) { - yyv4689 = yyv4689[:yyl4689] - yyc4689 = true + } else if yyl4744 != len(yyv4744) { + yyv4744 = yyv4744[:yyl4744] + yyc4744 = true } - yyj4689 := 0 - for ; yyj4689 < yyrr4689; yyj4689++ { - yyh4689.ElemContainerState(yyj4689) + yyj4744 := 0 + for ; yyj4744 < yyrr4744; yyj4744++ { + yyh4744.ElemContainerState(yyj4744) if r.TryDecodeAsNil() { - yyv4689[yyj4689] = ObjectReference{} + yyv4744[yyj4744] = ObjectReference{} } else { - yyv4690 := &yyv4689[yyj4689] - yyv4690.CodecDecodeSelf(d) + yyv4745 := &yyv4744[yyj4744] + yyv4745.CodecDecodeSelf(d) } } - if yyrt4689 { - for ; yyj4689 < yyl4689; yyj4689++ { - yyv4689 = append(yyv4689, ObjectReference{}) - yyh4689.ElemContainerState(yyj4689) + if yyrt4744 { + for ; yyj4744 < yyl4744; yyj4744++ { + yyv4744 = append(yyv4744, ObjectReference{}) + yyh4744.ElemContainerState(yyj4744) if r.TryDecodeAsNil() { - yyv4689[yyj4689] = ObjectReference{} + yyv4744[yyj4744] = ObjectReference{} } else { - yyv4691 := &yyv4689[yyj4689] - yyv4691.CodecDecodeSelf(d) + yyv4746 := &yyv4744[yyj4744] + yyv4746.CodecDecodeSelf(d) } } } } else { - yyj4689 := 0 - for ; !r.CheckBreak(); yyj4689++ { + yyj4744 := 0 + for ; !r.CheckBreak(); yyj4744++ { - if yyj4689 >= len(yyv4689) { - yyv4689 = append(yyv4689, ObjectReference{}) // var yyz4689 ObjectReference - yyc4689 = true + if yyj4744 >= len(yyv4744) { + yyv4744 = append(yyv4744, ObjectReference{}) // var yyz4744 ObjectReference + yyc4744 = true } - yyh4689.ElemContainerState(yyj4689) - if yyj4689 < len(yyv4689) { + yyh4744.ElemContainerState(yyj4744) + if yyj4744 < len(yyv4744) { if r.TryDecodeAsNil() { - yyv4689[yyj4689] = ObjectReference{} + yyv4744[yyj4744] = ObjectReference{} } else { - yyv4692 := &yyv4689[yyj4689] - yyv4692.CodecDecodeSelf(d) + yyv4747 := &yyv4744[yyj4744] + yyv4747.CodecDecodeSelf(d) } } else { @@ -59483,17 +60136,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj4689 < len(yyv4689) { - yyv4689 = yyv4689[:yyj4689] - yyc4689 = true - } else if yyj4689 == 0 && yyv4689 == nil { - yyv4689 = []ObjectReference{} - yyc4689 = true + if yyj4744 < len(yyv4744) { + yyv4744 = yyv4744[:yyj4744] + yyc4744 = true + } else if yyj4744 == 0 && yyv4744 == nil { + yyv4744 = []ObjectReference{} + yyc4744 = true } } - yyh4689.End() - if yyc4689 { - *v = yyv4689 + yyh4744.End() + if yyc4744 { + *v = yyv4744 } } @@ -59502,10 +60155,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4693 := range v { + for _, yyv4748 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4694 := &yyv4693 - yy4694.CodecEncodeSelf(e) + yy4749 := &yyv4748 + yy4749.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59515,83 +60168,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4695 := *v - yyh4695, yyl4695 := z.DecSliceHelperStart() - var yyc4695 bool - if yyl4695 == 0 { - if yyv4695 == nil { - yyv4695 = []ServiceAccount{} - yyc4695 = true - } else if len(yyv4695) != 0 { - yyv4695 = yyv4695[:0] - yyc4695 = true + yyv4750 := *v + yyh4750, yyl4750 := z.DecSliceHelperStart() + var yyc4750 bool + if yyl4750 == 0 { + if yyv4750 == nil { + yyv4750 = []ServiceAccount{} + yyc4750 = true + } else if len(yyv4750) != 0 { + yyv4750 = yyv4750[:0] + yyc4750 = true } - } else if yyl4695 > 0 { - var yyrr4695, yyrl4695 int - var yyrt4695 bool - if yyl4695 > cap(yyv4695) { + } else if yyl4750 > 0 { + var yyrr4750, yyrl4750 int + var yyrt4750 bool + if yyl4750 > cap(yyv4750) { - yyrg4695 := len(yyv4695) > 0 - yyv24695 := yyv4695 - yyrl4695, yyrt4695 = z.DecInferLen(yyl4695, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4695 { - if yyrl4695 <= cap(yyv4695) { - yyv4695 = yyv4695[:yyrl4695] + yyrg4750 := len(yyv4750) > 0 + yyv24750 := yyv4750 + yyrl4750, yyrt4750 = z.DecInferLen(yyl4750, z.DecBasicHandle().MaxInitLen, 304) + if yyrt4750 { + if yyrl4750 <= cap(yyv4750) { + yyv4750 = yyv4750[:yyrl4750] } else { - yyv4695 = make([]ServiceAccount, yyrl4695) + yyv4750 = make([]ServiceAccount, yyrl4750) } } else { - yyv4695 = make([]ServiceAccount, yyrl4695) + yyv4750 = make([]ServiceAccount, yyrl4750) } - yyc4695 = true - yyrr4695 = len(yyv4695) - if yyrg4695 { - copy(yyv4695, yyv24695) + yyc4750 = true + yyrr4750 = len(yyv4750) + if yyrg4750 { + copy(yyv4750, yyv24750) } - } else if yyl4695 != len(yyv4695) { - yyv4695 = yyv4695[:yyl4695] - yyc4695 = true + } else if yyl4750 != len(yyv4750) { + yyv4750 = yyv4750[:yyl4750] + yyc4750 = true } - yyj4695 := 0 - for ; yyj4695 < yyrr4695; yyj4695++ { - yyh4695.ElemContainerState(yyj4695) + yyj4750 := 0 + for ; yyj4750 < yyrr4750; yyj4750++ { + yyh4750.ElemContainerState(yyj4750) if r.TryDecodeAsNil() { - yyv4695[yyj4695] = ServiceAccount{} + yyv4750[yyj4750] = ServiceAccount{} } else { - yyv4696 := &yyv4695[yyj4695] - yyv4696.CodecDecodeSelf(d) + yyv4751 := &yyv4750[yyj4750] + yyv4751.CodecDecodeSelf(d) } } - if yyrt4695 { - for ; yyj4695 < yyl4695; yyj4695++ { - yyv4695 = append(yyv4695, ServiceAccount{}) - yyh4695.ElemContainerState(yyj4695) + if yyrt4750 { + for ; yyj4750 < yyl4750; yyj4750++ { + yyv4750 = append(yyv4750, ServiceAccount{}) + yyh4750.ElemContainerState(yyj4750) if r.TryDecodeAsNil() { - yyv4695[yyj4695] = ServiceAccount{} + yyv4750[yyj4750] = ServiceAccount{} } else { - yyv4697 := &yyv4695[yyj4695] - yyv4697.CodecDecodeSelf(d) + yyv4752 := &yyv4750[yyj4750] + yyv4752.CodecDecodeSelf(d) } } } } else { - yyj4695 := 0 - for ; !r.CheckBreak(); yyj4695++ { + yyj4750 := 0 + for ; !r.CheckBreak(); yyj4750++ { - if yyj4695 >= len(yyv4695) { - yyv4695 = append(yyv4695, ServiceAccount{}) // var yyz4695 ServiceAccount - yyc4695 = true + if yyj4750 >= len(yyv4750) { + yyv4750 = append(yyv4750, ServiceAccount{}) // var yyz4750 ServiceAccount + yyc4750 = true } - yyh4695.ElemContainerState(yyj4695) - if yyj4695 < len(yyv4695) { + yyh4750.ElemContainerState(yyj4750) + if yyj4750 < len(yyv4750) { if r.TryDecodeAsNil() { - yyv4695[yyj4695] = ServiceAccount{} + yyv4750[yyj4750] = ServiceAccount{} } else { - yyv4698 := &yyv4695[yyj4695] - yyv4698.CodecDecodeSelf(d) + yyv4753 := &yyv4750[yyj4750] + yyv4753.CodecDecodeSelf(d) } } else { @@ -59599,17 +60252,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj4695 < len(yyv4695) { - yyv4695 = yyv4695[:yyj4695] - yyc4695 = true - } else if yyj4695 == 0 && yyv4695 == nil { - yyv4695 = []ServiceAccount{} - yyc4695 = true + if yyj4750 < len(yyv4750) { + yyv4750 = yyv4750[:yyj4750] + yyc4750 = true + } else if yyj4750 == 0 && yyv4750 == nil { + yyv4750 = []ServiceAccount{} + yyc4750 = true } } - yyh4695.End() - if yyc4695 { - *v = yyv4695 + yyh4750.End() + if yyc4750 { + *v = yyv4750 } } @@ -59618,10 +60271,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4699 := range v { + for _, yyv4754 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4700 := &yyv4699 - yy4700.CodecEncodeSelf(e) + yy4755 := &yyv4754 + yy4755.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59631,83 +60284,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4701 := *v - yyh4701, yyl4701 := z.DecSliceHelperStart() - var yyc4701 bool - if yyl4701 == 0 { - if yyv4701 == nil { - yyv4701 = []EndpointSubset{} - yyc4701 = true - } else if len(yyv4701) != 0 { - yyv4701 = yyv4701[:0] - yyc4701 = true + yyv4756 := *v + yyh4756, yyl4756 := z.DecSliceHelperStart() + var yyc4756 bool + if yyl4756 == 0 { + if yyv4756 == nil { + yyv4756 = []EndpointSubset{} + yyc4756 = true + } else if len(yyv4756) != 0 { + yyv4756 = yyv4756[:0] + yyc4756 = true } - } else if yyl4701 > 0 { - var yyrr4701, yyrl4701 int - var yyrt4701 bool - if yyl4701 > cap(yyv4701) { + } else if yyl4756 > 0 { + var yyrr4756, yyrl4756 int + var yyrt4756 bool + if yyl4756 > cap(yyv4756) { - yyrg4701 := len(yyv4701) > 0 - yyv24701 := yyv4701 - yyrl4701, yyrt4701 = z.DecInferLen(yyl4701, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4701 { - if yyrl4701 <= cap(yyv4701) { - yyv4701 = yyv4701[:yyrl4701] + yyrg4756 := len(yyv4756) > 0 + yyv24756 := yyv4756 + yyrl4756, yyrt4756 = z.DecInferLen(yyl4756, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4756 { + if yyrl4756 <= cap(yyv4756) { + yyv4756 = yyv4756[:yyrl4756] } else { - yyv4701 = make([]EndpointSubset, yyrl4701) + yyv4756 = make([]EndpointSubset, yyrl4756) } } else { - yyv4701 = make([]EndpointSubset, yyrl4701) + yyv4756 = make([]EndpointSubset, yyrl4756) } - yyc4701 = true - yyrr4701 = len(yyv4701) - if yyrg4701 { - copy(yyv4701, yyv24701) + yyc4756 = true + yyrr4756 = len(yyv4756) + if yyrg4756 { + copy(yyv4756, yyv24756) } - } else if yyl4701 != len(yyv4701) { - yyv4701 = yyv4701[:yyl4701] - yyc4701 = true + } else if yyl4756 != len(yyv4756) { + yyv4756 = yyv4756[:yyl4756] + yyc4756 = true } - yyj4701 := 0 - for ; yyj4701 < yyrr4701; yyj4701++ { - yyh4701.ElemContainerState(yyj4701) + yyj4756 := 0 + for ; yyj4756 < yyrr4756; yyj4756++ { + yyh4756.ElemContainerState(yyj4756) if r.TryDecodeAsNil() { - yyv4701[yyj4701] = EndpointSubset{} + yyv4756[yyj4756] = EndpointSubset{} } else { - yyv4702 := &yyv4701[yyj4701] - yyv4702.CodecDecodeSelf(d) + yyv4757 := &yyv4756[yyj4756] + yyv4757.CodecDecodeSelf(d) } } - if yyrt4701 { - for ; yyj4701 < yyl4701; yyj4701++ { - yyv4701 = append(yyv4701, EndpointSubset{}) - yyh4701.ElemContainerState(yyj4701) + if yyrt4756 { + for ; yyj4756 < yyl4756; yyj4756++ { + yyv4756 = append(yyv4756, EndpointSubset{}) + yyh4756.ElemContainerState(yyj4756) if r.TryDecodeAsNil() { - yyv4701[yyj4701] = EndpointSubset{} + yyv4756[yyj4756] = EndpointSubset{} } else { - yyv4703 := &yyv4701[yyj4701] - yyv4703.CodecDecodeSelf(d) + yyv4758 := &yyv4756[yyj4756] + yyv4758.CodecDecodeSelf(d) } } } } else { - yyj4701 := 0 - for ; !r.CheckBreak(); yyj4701++ { + yyj4756 := 0 + for ; !r.CheckBreak(); yyj4756++ { - if yyj4701 >= len(yyv4701) { - yyv4701 = append(yyv4701, EndpointSubset{}) // var yyz4701 EndpointSubset - yyc4701 = true + if yyj4756 >= len(yyv4756) { + yyv4756 = append(yyv4756, EndpointSubset{}) // var yyz4756 EndpointSubset + yyc4756 = true } - yyh4701.ElemContainerState(yyj4701) - if yyj4701 < len(yyv4701) { + yyh4756.ElemContainerState(yyj4756) + if yyj4756 < len(yyv4756) { if r.TryDecodeAsNil() { - yyv4701[yyj4701] = EndpointSubset{} + yyv4756[yyj4756] = EndpointSubset{} } else { - yyv4704 := &yyv4701[yyj4701] - yyv4704.CodecDecodeSelf(d) + yyv4759 := &yyv4756[yyj4756] + yyv4759.CodecDecodeSelf(d) } } else { @@ -59715,17 +60368,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj4701 < len(yyv4701) { - yyv4701 = yyv4701[:yyj4701] - yyc4701 = true - } else if yyj4701 == 0 && yyv4701 == nil { - yyv4701 = []EndpointSubset{} - yyc4701 = true + if yyj4756 < len(yyv4756) { + yyv4756 = yyv4756[:yyj4756] + yyc4756 = true + } else if yyj4756 == 0 && yyv4756 == nil { + yyv4756 = []EndpointSubset{} + yyc4756 = true } } - yyh4701.End() - if yyc4701 { - *v = yyv4701 + yyh4756.End() + if yyc4756 { + *v = yyv4756 } } @@ -59734,10 +60387,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4705 := range v { + for _, yyv4760 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4706 := &yyv4705 - yy4706.CodecEncodeSelf(e) + yy4761 := &yyv4760 + yy4761.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59747,83 +60400,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4707 := *v - yyh4707, yyl4707 := z.DecSliceHelperStart() - var yyc4707 bool - if yyl4707 == 0 { - if yyv4707 == nil { - yyv4707 = []EndpointAddress{} - yyc4707 = true - } else if len(yyv4707) != 0 { - yyv4707 = yyv4707[:0] - yyc4707 = true + yyv4762 := *v + yyh4762, yyl4762 := z.DecSliceHelperStart() + var yyc4762 bool + if yyl4762 == 0 { + if yyv4762 == nil { + yyv4762 = []EndpointAddress{} + yyc4762 = true + } else if len(yyv4762) != 0 { + yyv4762 = yyv4762[:0] + yyc4762 = true } - } else if yyl4707 > 0 { - var yyrr4707, yyrl4707 int - var yyrt4707 bool - if yyl4707 > cap(yyv4707) { + } else if yyl4762 > 0 { + var yyrr4762, yyrl4762 int + var yyrt4762 bool + if yyl4762 > cap(yyv4762) { - yyrg4707 := len(yyv4707) > 0 - yyv24707 := yyv4707 - yyrl4707, yyrt4707 = z.DecInferLen(yyl4707, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4707 { - if yyrl4707 <= cap(yyv4707) { - yyv4707 = yyv4707[:yyrl4707] + yyrg4762 := len(yyv4762) > 0 + yyv24762 := yyv4762 + yyrl4762, yyrt4762 = z.DecInferLen(yyl4762, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4762 { + if yyrl4762 <= cap(yyv4762) { + yyv4762 = yyv4762[:yyrl4762] } else { - yyv4707 = make([]EndpointAddress, yyrl4707) + yyv4762 = make([]EndpointAddress, yyrl4762) } } else { - yyv4707 = make([]EndpointAddress, yyrl4707) + yyv4762 = make([]EndpointAddress, yyrl4762) } - yyc4707 = true - yyrr4707 = len(yyv4707) - if yyrg4707 { - copy(yyv4707, yyv24707) + yyc4762 = true + yyrr4762 = len(yyv4762) + if yyrg4762 { + copy(yyv4762, yyv24762) } - } else if yyl4707 != len(yyv4707) { - yyv4707 = yyv4707[:yyl4707] - yyc4707 = true + } else if yyl4762 != len(yyv4762) { + yyv4762 = yyv4762[:yyl4762] + yyc4762 = true } - yyj4707 := 0 - for ; yyj4707 < yyrr4707; yyj4707++ { - yyh4707.ElemContainerState(yyj4707) + yyj4762 := 0 + for ; yyj4762 < yyrr4762; yyj4762++ { + yyh4762.ElemContainerState(yyj4762) if r.TryDecodeAsNil() { - yyv4707[yyj4707] = EndpointAddress{} + yyv4762[yyj4762] = EndpointAddress{} } else { - yyv4708 := &yyv4707[yyj4707] - yyv4708.CodecDecodeSelf(d) + yyv4763 := &yyv4762[yyj4762] + yyv4763.CodecDecodeSelf(d) } } - if yyrt4707 { - for ; yyj4707 < yyl4707; yyj4707++ { - yyv4707 = append(yyv4707, EndpointAddress{}) - yyh4707.ElemContainerState(yyj4707) + if yyrt4762 { + for ; yyj4762 < yyl4762; yyj4762++ { + yyv4762 = append(yyv4762, EndpointAddress{}) + yyh4762.ElemContainerState(yyj4762) if r.TryDecodeAsNil() { - yyv4707[yyj4707] = EndpointAddress{} + yyv4762[yyj4762] = EndpointAddress{} } else { - yyv4709 := &yyv4707[yyj4707] - yyv4709.CodecDecodeSelf(d) + yyv4764 := &yyv4762[yyj4762] + yyv4764.CodecDecodeSelf(d) } } } } else { - yyj4707 := 0 - for ; !r.CheckBreak(); yyj4707++ { + yyj4762 := 0 + for ; !r.CheckBreak(); yyj4762++ { - if yyj4707 >= len(yyv4707) { - yyv4707 = append(yyv4707, EndpointAddress{}) // var yyz4707 EndpointAddress - yyc4707 = true + if yyj4762 >= len(yyv4762) { + yyv4762 = append(yyv4762, EndpointAddress{}) // var yyz4762 EndpointAddress + yyc4762 = true } - yyh4707.ElemContainerState(yyj4707) - if yyj4707 < len(yyv4707) { + yyh4762.ElemContainerState(yyj4762) + if yyj4762 < len(yyv4762) { if r.TryDecodeAsNil() { - yyv4707[yyj4707] = EndpointAddress{} + yyv4762[yyj4762] = EndpointAddress{} } else { - yyv4710 := &yyv4707[yyj4707] - yyv4710.CodecDecodeSelf(d) + yyv4765 := &yyv4762[yyj4762] + yyv4765.CodecDecodeSelf(d) } } else { @@ -59831,17 +60484,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj4707 < len(yyv4707) { - yyv4707 = yyv4707[:yyj4707] - yyc4707 = true - } else if yyj4707 == 0 && yyv4707 == nil { - yyv4707 = []EndpointAddress{} - yyc4707 = true + if yyj4762 < len(yyv4762) { + yyv4762 = yyv4762[:yyj4762] + yyc4762 = true + } else if yyj4762 == 0 && yyv4762 == nil { + yyv4762 = []EndpointAddress{} + yyc4762 = true } } - yyh4707.End() - if yyc4707 { - *v = yyv4707 + yyh4762.End() + if yyc4762 { + *v = yyv4762 } } @@ -59850,10 +60503,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4711 := range v { + for _, yyv4766 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4712 := &yyv4711 - yy4712.CodecEncodeSelf(e) + yy4767 := &yyv4766 + yy4767.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59863,83 +60516,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4713 := *v - yyh4713, yyl4713 := z.DecSliceHelperStart() - var yyc4713 bool - if yyl4713 == 0 { - if yyv4713 == nil { - yyv4713 = []EndpointPort{} - yyc4713 = true - } else if len(yyv4713) != 0 { - yyv4713 = yyv4713[:0] - yyc4713 = true + yyv4768 := *v + yyh4768, yyl4768 := z.DecSliceHelperStart() + var yyc4768 bool + if yyl4768 == 0 { + if yyv4768 == nil { + yyv4768 = []EndpointPort{} + yyc4768 = true + } else if len(yyv4768) != 0 { + yyv4768 = yyv4768[:0] + yyc4768 = true } - } else if yyl4713 > 0 { - var yyrr4713, yyrl4713 int - var yyrt4713 bool - if yyl4713 > cap(yyv4713) { + } else if yyl4768 > 0 { + var yyrr4768, yyrl4768 int + var yyrt4768 bool + if yyl4768 > cap(yyv4768) { - yyrg4713 := len(yyv4713) > 0 - yyv24713 := yyv4713 - yyrl4713, yyrt4713 = z.DecInferLen(yyl4713, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4713 { - if yyrl4713 <= cap(yyv4713) { - yyv4713 = yyv4713[:yyrl4713] + yyrg4768 := len(yyv4768) > 0 + yyv24768 := yyv4768 + yyrl4768, yyrt4768 = z.DecInferLen(yyl4768, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4768 { + if yyrl4768 <= cap(yyv4768) { + yyv4768 = yyv4768[:yyrl4768] } else { - yyv4713 = make([]EndpointPort, yyrl4713) + yyv4768 = make([]EndpointPort, yyrl4768) } } else { - yyv4713 = make([]EndpointPort, yyrl4713) + yyv4768 = make([]EndpointPort, yyrl4768) } - yyc4713 = true - yyrr4713 = len(yyv4713) - if yyrg4713 { - copy(yyv4713, yyv24713) + yyc4768 = true + yyrr4768 = len(yyv4768) + if yyrg4768 { + copy(yyv4768, yyv24768) } - } else if yyl4713 != len(yyv4713) { - yyv4713 = yyv4713[:yyl4713] - yyc4713 = true + } else if yyl4768 != len(yyv4768) { + yyv4768 = yyv4768[:yyl4768] + yyc4768 = true } - yyj4713 := 0 - for ; yyj4713 < yyrr4713; yyj4713++ { - yyh4713.ElemContainerState(yyj4713) + yyj4768 := 0 + for ; yyj4768 < yyrr4768; yyj4768++ { + yyh4768.ElemContainerState(yyj4768) if r.TryDecodeAsNil() { - yyv4713[yyj4713] = EndpointPort{} + yyv4768[yyj4768] = EndpointPort{} } else { - yyv4714 := &yyv4713[yyj4713] - yyv4714.CodecDecodeSelf(d) + yyv4769 := &yyv4768[yyj4768] + yyv4769.CodecDecodeSelf(d) } } - if yyrt4713 { - for ; yyj4713 < yyl4713; yyj4713++ { - yyv4713 = append(yyv4713, EndpointPort{}) - yyh4713.ElemContainerState(yyj4713) + if yyrt4768 { + for ; yyj4768 < yyl4768; yyj4768++ { + yyv4768 = append(yyv4768, EndpointPort{}) + yyh4768.ElemContainerState(yyj4768) if r.TryDecodeAsNil() { - yyv4713[yyj4713] = EndpointPort{} + yyv4768[yyj4768] = EndpointPort{} } else { - yyv4715 := &yyv4713[yyj4713] - yyv4715.CodecDecodeSelf(d) + yyv4770 := &yyv4768[yyj4768] + yyv4770.CodecDecodeSelf(d) } } } } else { - yyj4713 := 0 - for ; !r.CheckBreak(); yyj4713++ { + yyj4768 := 0 + for ; !r.CheckBreak(); yyj4768++ { - if yyj4713 >= len(yyv4713) { - yyv4713 = append(yyv4713, EndpointPort{}) // var yyz4713 EndpointPort - yyc4713 = true + if yyj4768 >= len(yyv4768) { + yyv4768 = append(yyv4768, EndpointPort{}) // var yyz4768 EndpointPort + yyc4768 = true } - yyh4713.ElemContainerState(yyj4713) - if yyj4713 < len(yyv4713) { + yyh4768.ElemContainerState(yyj4768) + if yyj4768 < len(yyv4768) { if r.TryDecodeAsNil() { - yyv4713[yyj4713] = EndpointPort{} + yyv4768[yyj4768] = EndpointPort{} } else { - yyv4716 := &yyv4713[yyj4713] - yyv4716.CodecDecodeSelf(d) + yyv4771 := &yyv4768[yyj4768] + yyv4771.CodecDecodeSelf(d) } } else { @@ -59947,17 +60600,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj4713 < len(yyv4713) { - yyv4713 = yyv4713[:yyj4713] - yyc4713 = true - } else if yyj4713 == 0 && yyv4713 == nil { - yyv4713 = []EndpointPort{} - yyc4713 = true + if yyj4768 < len(yyv4768) { + yyv4768 = yyv4768[:yyj4768] + yyc4768 = true + } else if yyj4768 == 0 && yyv4768 == nil { + yyv4768 = []EndpointPort{} + yyc4768 = true } } - yyh4713.End() - if yyc4713 { - *v = yyv4713 + yyh4768.End() + if yyc4768 { + *v = yyv4768 } } @@ -59966,10 +60619,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4717 := range v { + for _, yyv4772 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4718 := &yyv4717 - yy4718.CodecEncodeSelf(e) + yy4773 := &yyv4772 + yy4773.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59979,83 +60632,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4719 := *v - yyh4719, yyl4719 := z.DecSliceHelperStart() - var yyc4719 bool - if yyl4719 == 0 { - if yyv4719 == nil { - yyv4719 = []Endpoints{} - yyc4719 = true - } else if len(yyv4719) != 0 { - yyv4719 = yyv4719[:0] - yyc4719 = true + yyv4774 := *v + yyh4774, yyl4774 := z.DecSliceHelperStart() + var yyc4774 bool + if yyl4774 == 0 { + if yyv4774 == nil { + yyv4774 = []Endpoints{} + yyc4774 = true + } else if len(yyv4774) != 0 { + yyv4774 = yyv4774[:0] + yyc4774 = true } - } else if yyl4719 > 0 { - var yyrr4719, yyrl4719 int - var yyrt4719 bool - if yyl4719 > cap(yyv4719) { + } else if yyl4774 > 0 { + var yyrr4774, yyrl4774 int + var yyrt4774 bool + if yyl4774 > cap(yyv4774) { - yyrg4719 := len(yyv4719) > 0 - yyv24719 := yyv4719 - yyrl4719, yyrt4719 = z.DecInferLen(yyl4719, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4719 { - if yyrl4719 <= cap(yyv4719) { - yyv4719 = yyv4719[:yyrl4719] + yyrg4774 := len(yyv4774) > 0 + yyv24774 := yyv4774 + yyrl4774, yyrt4774 = z.DecInferLen(yyl4774, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4774 { + if yyrl4774 <= cap(yyv4774) { + yyv4774 = yyv4774[:yyrl4774] } else { - yyv4719 = make([]Endpoints, yyrl4719) + yyv4774 = make([]Endpoints, yyrl4774) } } else { - yyv4719 = make([]Endpoints, yyrl4719) + yyv4774 = make([]Endpoints, yyrl4774) } - yyc4719 = true - yyrr4719 = len(yyv4719) - if yyrg4719 { - copy(yyv4719, yyv24719) + yyc4774 = true + yyrr4774 = len(yyv4774) + if yyrg4774 { + copy(yyv4774, yyv24774) } - } else if yyl4719 != len(yyv4719) { - yyv4719 = yyv4719[:yyl4719] - yyc4719 = true + } else if yyl4774 != len(yyv4774) { + yyv4774 = yyv4774[:yyl4774] + yyc4774 = true } - yyj4719 := 0 - for ; yyj4719 < yyrr4719; yyj4719++ { - yyh4719.ElemContainerState(yyj4719) + yyj4774 := 0 + for ; yyj4774 < yyrr4774; yyj4774++ { + yyh4774.ElemContainerState(yyj4774) if r.TryDecodeAsNil() { - yyv4719[yyj4719] = Endpoints{} + yyv4774[yyj4774] = Endpoints{} } else { - yyv4720 := &yyv4719[yyj4719] - yyv4720.CodecDecodeSelf(d) + yyv4775 := &yyv4774[yyj4774] + yyv4775.CodecDecodeSelf(d) } } - if yyrt4719 { - for ; yyj4719 < yyl4719; yyj4719++ { - yyv4719 = append(yyv4719, Endpoints{}) - yyh4719.ElemContainerState(yyj4719) + if yyrt4774 { + for ; yyj4774 < yyl4774; yyj4774++ { + yyv4774 = append(yyv4774, Endpoints{}) + yyh4774.ElemContainerState(yyj4774) if r.TryDecodeAsNil() { - yyv4719[yyj4719] = Endpoints{} + yyv4774[yyj4774] = Endpoints{} } else { - yyv4721 := &yyv4719[yyj4719] - yyv4721.CodecDecodeSelf(d) + yyv4776 := &yyv4774[yyj4774] + yyv4776.CodecDecodeSelf(d) } } } } else { - yyj4719 := 0 - for ; !r.CheckBreak(); yyj4719++ { + yyj4774 := 0 + for ; !r.CheckBreak(); yyj4774++ { - if yyj4719 >= len(yyv4719) { - yyv4719 = append(yyv4719, Endpoints{}) // var yyz4719 Endpoints - yyc4719 = true + if yyj4774 >= len(yyv4774) { + yyv4774 = append(yyv4774, Endpoints{}) // var yyz4774 Endpoints + yyc4774 = true } - yyh4719.ElemContainerState(yyj4719) - if yyj4719 < len(yyv4719) { + yyh4774.ElemContainerState(yyj4774) + if yyj4774 < len(yyv4774) { if r.TryDecodeAsNil() { - yyv4719[yyj4719] = Endpoints{} + yyv4774[yyj4774] = Endpoints{} } else { - yyv4722 := &yyv4719[yyj4719] - yyv4722.CodecDecodeSelf(d) + yyv4777 := &yyv4774[yyj4774] + yyv4777.CodecDecodeSelf(d) } } else { @@ -60063,17 +60716,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj4719 < len(yyv4719) { - yyv4719 = yyv4719[:yyj4719] - yyc4719 = true - } else if yyj4719 == 0 && yyv4719 == nil { - yyv4719 = []Endpoints{} - yyc4719 = true + if yyj4774 < len(yyv4774) { + yyv4774 = yyv4774[:yyj4774] + yyc4774 = true + } else if yyj4774 == 0 && yyv4774 == nil { + yyv4774 = []Endpoints{} + yyc4774 = true } } - yyh4719.End() - if yyc4719 { - *v = yyv4719 + yyh4774.End() + if yyc4774 { + *v = yyv4774 } } @@ -60082,10 +60735,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4723 := range v { + for _, yyv4778 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4724 := &yyv4723 - yy4724.CodecEncodeSelf(e) + yy4779 := &yyv4778 + yy4779.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60095,83 +60748,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4725 := *v - yyh4725, yyl4725 := z.DecSliceHelperStart() - var yyc4725 bool - if yyl4725 == 0 { - if yyv4725 == nil { - yyv4725 = []NodeCondition{} - yyc4725 = true - } else if len(yyv4725) != 0 { - yyv4725 = yyv4725[:0] - yyc4725 = true + yyv4780 := *v + yyh4780, yyl4780 := z.DecSliceHelperStart() + var yyc4780 bool + if yyl4780 == 0 { + if yyv4780 == nil { + yyv4780 = []NodeCondition{} + yyc4780 = true + } else if len(yyv4780) != 0 { + yyv4780 = yyv4780[:0] + yyc4780 = true } - } else if yyl4725 > 0 { - var yyrr4725, yyrl4725 int - var yyrt4725 bool - if yyl4725 > cap(yyv4725) { + } else if yyl4780 > 0 { + var yyrr4780, yyrl4780 int + var yyrt4780 bool + if yyl4780 > cap(yyv4780) { - yyrg4725 := len(yyv4725) > 0 - yyv24725 := yyv4725 - yyrl4725, yyrt4725 = z.DecInferLen(yyl4725, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4725 { - if yyrl4725 <= cap(yyv4725) { - yyv4725 = yyv4725[:yyrl4725] + yyrg4780 := len(yyv4780) > 0 + yyv24780 := yyv4780 + yyrl4780, yyrt4780 = z.DecInferLen(yyl4780, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4780 { + if yyrl4780 <= cap(yyv4780) { + yyv4780 = yyv4780[:yyrl4780] } else { - yyv4725 = make([]NodeCondition, yyrl4725) + yyv4780 = make([]NodeCondition, yyrl4780) } } else { - yyv4725 = make([]NodeCondition, yyrl4725) + yyv4780 = make([]NodeCondition, yyrl4780) } - yyc4725 = true - yyrr4725 = len(yyv4725) - if yyrg4725 { - copy(yyv4725, yyv24725) + yyc4780 = true + yyrr4780 = len(yyv4780) + if yyrg4780 { + copy(yyv4780, yyv24780) } - } else if yyl4725 != len(yyv4725) { - yyv4725 = yyv4725[:yyl4725] - yyc4725 = true + } else if yyl4780 != len(yyv4780) { + yyv4780 = yyv4780[:yyl4780] + yyc4780 = true } - yyj4725 := 0 - for ; yyj4725 < yyrr4725; yyj4725++ { - yyh4725.ElemContainerState(yyj4725) + yyj4780 := 0 + for ; yyj4780 < yyrr4780; yyj4780++ { + yyh4780.ElemContainerState(yyj4780) if r.TryDecodeAsNil() { - yyv4725[yyj4725] = NodeCondition{} + yyv4780[yyj4780] = NodeCondition{} } else { - yyv4726 := &yyv4725[yyj4725] - yyv4726.CodecDecodeSelf(d) + yyv4781 := &yyv4780[yyj4780] + yyv4781.CodecDecodeSelf(d) } } - if yyrt4725 { - for ; yyj4725 < yyl4725; yyj4725++ { - yyv4725 = append(yyv4725, NodeCondition{}) - yyh4725.ElemContainerState(yyj4725) + if yyrt4780 { + for ; yyj4780 < yyl4780; yyj4780++ { + yyv4780 = append(yyv4780, NodeCondition{}) + yyh4780.ElemContainerState(yyj4780) if r.TryDecodeAsNil() { - yyv4725[yyj4725] = NodeCondition{} + yyv4780[yyj4780] = NodeCondition{} } else { - yyv4727 := &yyv4725[yyj4725] - yyv4727.CodecDecodeSelf(d) + yyv4782 := &yyv4780[yyj4780] + yyv4782.CodecDecodeSelf(d) } } } } else { - yyj4725 := 0 - for ; !r.CheckBreak(); yyj4725++ { + yyj4780 := 0 + for ; !r.CheckBreak(); yyj4780++ { - if yyj4725 >= len(yyv4725) { - yyv4725 = append(yyv4725, NodeCondition{}) // var yyz4725 NodeCondition - yyc4725 = true + if yyj4780 >= len(yyv4780) { + yyv4780 = append(yyv4780, NodeCondition{}) // var yyz4780 NodeCondition + yyc4780 = true } - yyh4725.ElemContainerState(yyj4725) - if yyj4725 < len(yyv4725) { + yyh4780.ElemContainerState(yyj4780) + if yyj4780 < len(yyv4780) { if r.TryDecodeAsNil() { - yyv4725[yyj4725] = NodeCondition{} + yyv4780[yyj4780] = NodeCondition{} } else { - yyv4728 := &yyv4725[yyj4725] - yyv4728.CodecDecodeSelf(d) + yyv4783 := &yyv4780[yyj4780] + yyv4783.CodecDecodeSelf(d) } } else { @@ -60179,17 +60832,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj4725 < len(yyv4725) { - yyv4725 = yyv4725[:yyj4725] - yyc4725 = true - } else if yyj4725 == 0 && yyv4725 == nil { - yyv4725 = []NodeCondition{} - yyc4725 = true + if yyj4780 < len(yyv4780) { + yyv4780 = yyv4780[:yyj4780] + yyc4780 = true + } else if yyj4780 == 0 && yyv4780 == nil { + yyv4780 = []NodeCondition{} + yyc4780 = true } } - yyh4725.End() - if yyc4725 { - *v = yyv4725 + yyh4780.End() + if yyc4780 { + *v = yyv4780 } } @@ -60198,10 +60851,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4729 := range v { + for _, yyv4784 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4730 := &yyv4729 - yy4730.CodecEncodeSelf(e) + yy4785 := &yyv4784 + yy4785.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60211,83 +60864,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4731 := *v - yyh4731, yyl4731 := z.DecSliceHelperStart() - var yyc4731 bool - if yyl4731 == 0 { - if yyv4731 == nil { - yyv4731 = []NodeAddress{} - yyc4731 = true - } else if len(yyv4731) != 0 { - yyv4731 = yyv4731[:0] - yyc4731 = true + yyv4786 := *v + yyh4786, yyl4786 := z.DecSliceHelperStart() + var yyc4786 bool + if yyl4786 == 0 { + if yyv4786 == nil { + yyv4786 = []NodeAddress{} + yyc4786 = true + } else if len(yyv4786) != 0 { + yyv4786 = yyv4786[:0] + yyc4786 = true } - } else if yyl4731 > 0 { - var yyrr4731, yyrl4731 int - var yyrt4731 bool - if yyl4731 > cap(yyv4731) { + } else if yyl4786 > 0 { + var yyrr4786, yyrl4786 int + var yyrt4786 bool + if yyl4786 > cap(yyv4786) { - yyrg4731 := len(yyv4731) > 0 - yyv24731 := yyv4731 - yyrl4731, yyrt4731 = z.DecInferLen(yyl4731, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4731 { - if yyrl4731 <= cap(yyv4731) { - yyv4731 = yyv4731[:yyrl4731] + yyrg4786 := len(yyv4786) > 0 + yyv24786 := yyv4786 + yyrl4786, yyrt4786 = z.DecInferLen(yyl4786, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4786 { + if yyrl4786 <= cap(yyv4786) { + yyv4786 = yyv4786[:yyrl4786] } else { - yyv4731 = make([]NodeAddress, yyrl4731) + yyv4786 = make([]NodeAddress, yyrl4786) } } else { - yyv4731 = make([]NodeAddress, yyrl4731) + yyv4786 = make([]NodeAddress, yyrl4786) } - yyc4731 = true - yyrr4731 = len(yyv4731) - if yyrg4731 { - copy(yyv4731, yyv24731) + yyc4786 = true + yyrr4786 = len(yyv4786) + if yyrg4786 { + copy(yyv4786, yyv24786) } - } else if yyl4731 != len(yyv4731) { - yyv4731 = yyv4731[:yyl4731] - yyc4731 = true + } else if yyl4786 != len(yyv4786) { + yyv4786 = yyv4786[:yyl4786] + yyc4786 = true } - yyj4731 := 0 - for ; yyj4731 < yyrr4731; yyj4731++ { - yyh4731.ElemContainerState(yyj4731) + yyj4786 := 0 + for ; yyj4786 < yyrr4786; yyj4786++ { + yyh4786.ElemContainerState(yyj4786) if r.TryDecodeAsNil() { - yyv4731[yyj4731] = NodeAddress{} + yyv4786[yyj4786] = NodeAddress{} } else { - yyv4732 := &yyv4731[yyj4731] - yyv4732.CodecDecodeSelf(d) + yyv4787 := &yyv4786[yyj4786] + yyv4787.CodecDecodeSelf(d) } } - if yyrt4731 { - for ; yyj4731 < yyl4731; yyj4731++ { - yyv4731 = append(yyv4731, NodeAddress{}) - yyh4731.ElemContainerState(yyj4731) + if yyrt4786 { + for ; yyj4786 < yyl4786; yyj4786++ { + yyv4786 = append(yyv4786, NodeAddress{}) + yyh4786.ElemContainerState(yyj4786) if r.TryDecodeAsNil() { - yyv4731[yyj4731] = NodeAddress{} + yyv4786[yyj4786] = NodeAddress{} } else { - yyv4733 := &yyv4731[yyj4731] - yyv4733.CodecDecodeSelf(d) + yyv4788 := &yyv4786[yyj4786] + yyv4788.CodecDecodeSelf(d) } } } } else { - yyj4731 := 0 - for ; !r.CheckBreak(); yyj4731++ { + yyj4786 := 0 + for ; !r.CheckBreak(); yyj4786++ { - if yyj4731 >= len(yyv4731) { - yyv4731 = append(yyv4731, NodeAddress{}) // var yyz4731 NodeAddress - yyc4731 = true + if yyj4786 >= len(yyv4786) { + yyv4786 = append(yyv4786, NodeAddress{}) // var yyz4786 NodeAddress + yyc4786 = true } - yyh4731.ElemContainerState(yyj4731) - if yyj4731 < len(yyv4731) { + yyh4786.ElemContainerState(yyj4786) + if yyj4786 < len(yyv4786) { if r.TryDecodeAsNil() { - yyv4731[yyj4731] = NodeAddress{} + yyv4786[yyj4786] = NodeAddress{} } else { - yyv4734 := &yyv4731[yyj4731] - yyv4734.CodecDecodeSelf(d) + yyv4789 := &yyv4786[yyj4786] + yyv4789.CodecDecodeSelf(d) } } else { @@ -60295,17 +60948,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj4731 < len(yyv4731) { - yyv4731 = yyv4731[:yyj4731] - yyc4731 = true - } else if yyj4731 == 0 && yyv4731 == nil { - yyv4731 = []NodeAddress{} - yyc4731 = true + if yyj4786 < len(yyv4786) { + yyv4786 = yyv4786[:yyj4786] + yyc4786 = true + } else if yyj4786 == 0 && yyv4786 == nil { + yyv4786 = []NodeAddress{} + yyc4786 = true } } - yyh4731.End() - if yyc4731 { - *v = yyv4731 + yyh4786.End() + if yyc4786 { + *v = yyv4786 } } @@ -60314,10 +60967,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4735 := range v { + for _, yyv4790 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4736 := &yyv4735 - yy4736.CodecEncodeSelf(e) + yy4791 := &yyv4790 + yy4791.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60327,83 +60980,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4737 := *v - yyh4737, yyl4737 := z.DecSliceHelperStart() - var yyc4737 bool - if yyl4737 == 0 { - if yyv4737 == nil { - yyv4737 = []ContainerImage{} - yyc4737 = true - } else if len(yyv4737) != 0 { - yyv4737 = yyv4737[:0] - yyc4737 = true + yyv4792 := *v + yyh4792, yyl4792 := z.DecSliceHelperStart() + var yyc4792 bool + if yyl4792 == 0 { + if yyv4792 == nil { + yyv4792 = []ContainerImage{} + yyc4792 = true + } else if len(yyv4792) != 0 { + yyv4792 = yyv4792[:0] + yyc4792 = true } - } else if yyl4737 > 0 { - var yyrr4737, yyrl4737 int - var yyrt4737 bool - if yyl4737 > cap(yyv4737) { + } else if yyl4792 > 0 { + var yyrr4792, yyrl4792 int + var yyrt4792 bool + if yyl4792 > cap(yyv4792) { - yyrg4737 := len(yyv4737) > 0 - yyv24737 := yyv4737 - yyrl4737, yyrt4737 = z.DecInferLen(yyl4737, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4737 { - if yyrl4737 <= cap(yyv4737) { - yyv4737 = yyv4737[:yyrl4737] + yyrg4792 := len(yyv4792) > 0 + yyv24792 := yyv4792 + yyrl4792, yyrt4792 = z.DecInferLen(yyl4792, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4792 { + if yyrl4792 <= cap(yyv4792) { + yyv4792 = yyv4792[:yyrl4792] } else { - yyv4737 = make([]ContainerImage, yyrl4737) + yyv4792 = make([]ContainerImage, yyrl4792) } } else { - yyv4737 = make([]ContainerImage, yyrl4737) + yyv4792 = make([]ContainerImage, yyrl4792) } - yyc4737 = true - yyrr4737 = len(yyv4737) - if yyrg4737 { - copy(yyv4737, yyv24737) + yyc4792 = true + yyrr4792 = len(yyv4792) + if yyrg4792 { + copy(yyv4792, yyv24792) } - } else if yyl4737 != len(yyv4737) { - yyv4737 = yyv4737[:yyl4737] - yyc4737 = true + } else if yyl4792 != len(yyv4792) { + yyv4792 = yyv4792[:yyl4792] + yyc4792 = true } - yyj4737 := 0 - for ; yyj4737 < yyrr4737; yyj4737++ { - yyh4737.ElemContainerState(yyj4737) + yyj4792 := 0 + for ; yyj4792 < yyrr4792; yyj4792++ { + yyh4792.ElemContainerState(yyj4792) if r.TryDecodeAsNil() { - yyv4737[yyj4737] = ContainerImage{} + yyv4792[yyj4792] = ContainerImage{} } else { - yyv4738 := &yyv4737[yyj4737] - yyv4738.CodecDecodeSelf(d) + yyv4793 := &yyv4792[yyj4792] + yyv4793.CodecDecodeSelf(d) } } - if yyrt4737 { - for ; yyj4737 < yyl4737; yyj4737++ { - yyv4737 = append(yyv4737, ContainerImage{}) - yyh4737.ElemContainerState(yyj4737) + if yyrt4792 { + for ; yyj4792 < yyl4792; yyj4792++ { + yyv4792 = append(yyv4792, ContainerImage{}) + yyh4792.ElemContainerState(yyj4792) if r.TryDecodeAsNil() { - yyv4737[yyj4737] = ContainerImage{} + yyv4792[yyj4792] = ContainerImage{} } else { - yyv4739 := &yyv4737[yyj4737] - yyv4739.CodecDecodeSelf(d) + yyv4794 := &yyv4792[yyj4792] + yyv4794.CodecDecodeSelf(d) } } } } else { - yyj4737 := 0 - for ; !r.CheckBreak(); yyj4737++ { + yyj4792 := 0 + for ; !r.CheckBreak(); yyj4792++ { - if yyj4737 >= len(yyv4737) { - yyv4737 = append(yyv4737, ContainerImage{}) // var yyz4737 ContainerImage - yyc4737 = true + if yyj4792 >= len(yyv4792) { + yyv4792 = append(yyv4792, ContainerImage{}) // var yyz4792 ContainerImage + yyc4792 = true } - yyh4737.ElemContainerState(yyj4737) - if yyj4737 < len(yyv4737) { + yyh4792.ElemContainerState(yyj4792) + if yyj4792 < len(yyv4792) { if r.TryDecodeAsNil() { - yyv4737[yyj4737] = ContainerImage{} + yyv4792[yyj4792] = ContainerImage{} } else { - yyv4740 := &yyv4737[yyj4737] - yyv4740.CodecDecodeSelf(d) + yyv4795 := &yyv4792[yyj4792] + yyv4795.CodecDecodeSelf(d) } } else { @@ -60411,17 +61064,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj4737 < len(yyv4737) { - yyv4737 = yyv4737[:yyj4737] - yyc4737 = true - } else if yyj4737 == 0 && yyv4737 == nil { - yyv4737 = []ContainerImage{} - yyc4737 = true + if yyj4792 < len(yyv4792) { + yyv4792 = yyv4792[:yyj4792] + yyc4792 = true + } else if yyj4792 == 0 && yyv4792 == nil { + yyv4792 = []ContainerImage{} + yyc4792 = true } } - yyh4737.End() - if yyc4737 { - *v = yyv4737 + yyh4792.End() + if yyc4792 { + *v = yyv4792 } } @@ -60430,9 +61083,9 @@ func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4741 := range v { + for _, yyv4796 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4741.CodecEncodeSelf(e) + yyv4796.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60442,75 +61095,75 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4742 := *v - yyh4742, yyl4742 := z.DecSliceHelperStart() - var yyc4742 bool - if yyl4742 == 0 { - if yyv4742 == nil { - yyv4742 = []UniqueVolumeName{} - yyc4742 = true - } else if len(yyv4742) != 0 { - yyv4742 = yyv4742[:0] - yyc4742 = true + yyv4797 := *v + yyh4797, yyl4797 := z.DecSliceHelperStart() + var yyc4797 bool + if yyl4797 == 0 { + if yyv4797 == nil { + yyv4797 = []UniqueVolumeName{} + yyc4797 = true + } else if len(yyv4797) != 0 { + yyv4797 = yyv4797[:0] + yyc4797 = true } - } else if yyl4742 > 0 { - var yyrr4742, yyrl4742 int - var yyrt4742 bool - if yyl4742 > cap(yyv4742) { + } else if yyl4797 > 0 { + var yyrr4797, yyrl4797 int + var yyrt4797 bool + if yyl4797 > cap(yyv4797) { - yyrl4742, yyrt4742 = z.DecInferLen(yyl4742, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4742 { - if yyrl4742 <= cap(yyv4742) { - yyv4742 = yyv4742[:yyrl4742] + yyrl4797, yyrt4797 = z.DecInferLen(yyl4797, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4797 { + if yyrl4797 <= cap(yyv4797) { + yyv4797 = yyv4797[:yyrl4797] } else { - yyv4742 = make([]UniqueVolumeName, yyrl4742) + yyv4797 = make([]UniqueVolumeName, yyrl4797) } } else { - yyv4742 = make([]UniqueVolumeName, yyrl4742) + yyv4797 = make([]UniqueVolumeName, yyrl4797) } - yyc4742 = true - yyrr4742 = len(yyv4742) - } else if yyl4742 != len(yyv4742) { - yyv4742 = yyv4742[:yyl4742] - yyc4742 = true + yyc4797 = true + yyrr4797 = len(yyv4797) + } else if yyl4797 != len(yyv4797) { + yyv4797 = yyv4797[:yyl4797] + yyc4797 = true } - yyj4742 := 0 - for ; yyj4742 < yyrr4742; yyj4742++ { - yyh4742.ElemContainerState(yyj4742) + yyj4797 := 0 + for ; yyj4797 < yyrr4797; yyj4797++ { + yyh4797.ElemContainerState(yyj4797) if r.TryDecodeAsNil() { - yyv4742[yyj4742] = "" + yyv4797[yyj4797] = "" } else { - yyv4742[yyj4742] = UniqueVolumeName(r.DecodeString()) + yyv4797[yyj4797] = UniqueVolumeName(r.DecodeString()) } } - if yyrt4742 { - for ; yyj4742 < yyl4742; yyj4742++ { - yyv4742 = append(yyv4742, "") - yyh4742.ElemContainerState(yyj4742) + if yyrt4797 { + for ; yyj4797 < yyl4797; yyj4797++ { + yyv4797 = append(yyv4797, "") + yyh4797.ElemContainerState(yyj4797) if r.TryDecodeAsNil() { - yyv4742[yyj4742] = "" + yyv4797[yyj4797] = "" } else { - yyv4742[yyj4742] = UniqueVolumeName(r.DecodeString()) + yyv4797[yyj4797] = UniqueVolumeName(r.DecodeString()) } } } } else { - yyj4742 := 0 - for ; !r.CheckBreak(); yyj4742++ { + yyj4797 := 0 + for ; !r.CheckBreak(); yyj4797++ { - if yyj4742 >= len(yyv4742) { - yyv4742 = append(yyv4742, "") // var yyz4742 UniqueVolumeName - yyc4742 = true + if yyj4797 >= len(yyv4797) { + yyv4797 = append(yyv4797, "") // var yyz4797 UniqueVolumeName + yyc4797 = true } - yyh4742.ElemContainerState(yyj4742) - if yyj4742 < len(yyv4742) { + yyh4797.ElemContainerState(yyj4797) + if yyj4797 < len(yyv4797) { if r.TryDecodeAsNil() { - yyv4742[yyj4742] = "" + yyv4797[yyj4797] = "" } else { - yyv4742[yyj4742] = UniqueVolumeName(r.DecodeString()) + yyv4797[yyj4797] = UniqueVolumeName(r.DecodeString()) } } else { @@ -60518,17 +61171,17 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code } } - if yyj4742 < len(yyv4742) { - yyv4742 = yyv4742[:yyj4742] - yyc4742 = true - } else if yyj4742 == 0 && yyv4742 == nil { - yyv4742 = []UniqueVolumeName{} - yyc4742 = true + if yyj4797 < len(yyv4797) { + yyv4797 = yyv4797[:yyj4797] + yyc4797 = true + } else if yyj4797 == 0 && yyv4797 == nil { + yyv4797 = []UniqueVolumeName{} + yyc4797 = true } } - yyh4742.End() - if yyc4742 { - *v = yyv4742 + yyh4797.End() + if yyc4797 { + *v = yyv4797 } } @@ -60537,10 +61190,10 @@ func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4746 := range v { + for _, yyv4801 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4747 := &yyv4746 - yy4747.CodecEncodeSelf(e) + yy4802 := &yyv4801 + yy4802.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60550,83 +61203,83 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4748 := *v - yyh4748, yyl4748 := z.DecSliceHelperStart() - var yyc4748 bool - if yyl4748 == 0 { - if yyv4748 == nil { - yyv4748 = []AttachedVolume{} - yyc4748 = true - } else if len(yyv4748) != 0 { - yyv4748 = yyv4748[:0] - yyc4748 = true + yyv4803 := *v + yyh4803, yyl4803 := z.DecSliceHelperStart() + var yyc4803 bool + if yyl4803 == 0 { + if yyv4803 == nil { + yyv4803 = []AttachedVolume{} + yyc4803 = true + } else if len(yyv4803) != 0 { + yyv4803 = yyv4803[:0] + yyc4803 = true } - } else if yyl4748 > 0 { - var yyrr4748, yyrl4748 int - var yyrt4748 bool - if yyl4748 > cap(yyv4748) { + } else if yyl4803 > 0 { + var yyrr4803, yyrl4803 int + var yyrt4803 bool + if yyl4803 > cap(yyv4803) { - yyrg4748 := len(yyv4748) > 0 - yyv24748 := yyv4748 - yyrl4748, yyrt4748 = z.DecInferLen(yyl4748, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4748 { - if yyrl4748 <= cap(yyv4748) { - yyv4748 = yyv4748[:yyrl4748] + yyrg4803 := len(yyv4803) > 0 + yyv24803 := yyv4803 + yyrl4803, yyrt4803 = z.DecInferLen(yyl4803, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4803 { + if yyrl4803 <= cap(yyv4803) { + yyv4803 = yyv4803[:yyrl4803] } else { - yyv4748 = make([]AttachedVolume, yyrl4748) + yyv4803 = make([]AttachedVolume, yyrl4803) } } else { - yyv4748 = make([]AttachedVolume, yyrl4748) + yyv4803 = make([]AttachedVolume, yyrl4803) } - yyc4748 = true - yyrr4748 = len(yyv4748) - if yyrg4748 { - copy(yyv4748, yyv24748) + yyc4803 = true + yyrr4803 = len(yyv4803) + if yyrg4803 { + copy(yyv4803, yyv24803) } - } else if yyl4748 != len(yyv4748) { - yyv4748 = yyv4748[:yyl4748] - yyc4748 = true + } else if yyl4803 != len(yyv4803) { + yyv4803 = yyv4803[:yyl4803] + yyc4803 = true } - yyj4748 := 0 - for ; yyj4748 < yyrr4748; yyj4748++ { - yyh4748.ElemContainerState(yyj4748) + yyj4803 := 0 + for ; yyj4803 < yyrr4803; yyj4803++ { + yyh4803.ElemContainerState(yyj4803) if r.TryDecodeAsNil() { - yyv4748[yyj4748] = AttachedVolume{} + yyv4803[yyj4803] = AttachedVolume{} } else { - yyv4749 := &yyv4748[yyj4748] - yyv4749.CodecDecodeSelf(d) + yyv4804 := &yyv4803[yyj4803] + yyv4804.CodecDecodeSelf(d) } } - if yyrt4748 { - for ; yyj4748 < yyl4748; yyj4748++ { - yyv4748 = append(yyv4748, AttachedVolume{}) - yyh4748.ElemContainerState(yyj4748) + if yyrt4803 { + for ; yyj4803 < yyl4803; yyj4803++ { + yyv4803 = append(yyv4803, AttachedVolume{}) + yyh4803.ElemContainerState(yyj4803) if r.TryDecodeAsNil() { - yyv4748[yyj4748] = AttachedVolume{} + yyv4803[yyj4803] = AttachedVolume{} } else { - yyv4750 := &yyv4748[yyj4748] - yyv4750.CodecDecodeSelf(d) + yyv4805 := &yyv4803[yyj4803] + yyv4805.CodecDecodeSelf(d) } } } } else { - yyj4748 := 0 - for ; !r.CheckBreak(); yyj4748++ { + yyj4803 := 0 + for ; !r.CheckBreak(); yyj4803++ { - if yyj4748 >= len(yyv4748) { - yyv4748 = append(yyv4748, AttachedVolume{}) // var yyz4748 AttachedVolume - yyc4748 = true + if yyj4803 >= len(yyv4803) { + yyv4803 = append(yyv4803, AttachedVolume{}) // var yyz4803 AttachedVolume + yyc4803 = true } - yyh4748.ElemContainerState(yyj4748) - if yyj4748 < len(yyv4748) { + yyh4803.ElemContainerState(yyj4803) + if yyj4803 < len(yyv4803) { if r.TryDecodeAsNil() { - yyv4748[yyj4748] = AttachedVolume{} + yyv4803[yyj4803] = AttachedVolume{} } else { - yyv4751 := &yyv4748[yyj4748] - yyv4751.CodecDecodeSelf(d) + yyv4806 := &yyv4803[yyj4803] + yyv4806.CodecDecodeSelf(d) } } else { @@ -60634,17 +61287,17 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } } - if yyj4748 < len(yyv4748) { - yyv4748 = yyv4748[:yyj4748] - yyc4748 = true - } else if yyj4748 == 0 && yyv4748 == nil { - yyv4748 = []AttachedVolume{} - yyc4748 = true + if yyj4803 < len(yyv4803) { + yyv4803 = yyv4803[:yyj4803] + yyc4803 = true + } else if yyj4803 == 0 && yyv4803 == nil { + yyv4803 = []AttachedVolume{} + yyc4803 = true } } - yyh4748.End() - if yyc4748 { - *v = yyv4748 + yyh4803.End() + if yyc4803 { + *v = yyv4803 } } @@ -60653,10 +61306,10 @@ func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4752 := range v { + for _, yyv4807 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4753 := &yyv4752 - yy4753.CodecEncodeSelf(e) + yy4808 := &yyv4807 + yy4808.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60666,83 +61319,83 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4754 := *v - yyh4754, yyl4754 := z.DecSliceHelperStart() - var yyc4754 bool - if yyl4754 == 0 { - if yyv4754 == nil { - yyv4754 = []PreferAvoidPodsEntry{} - yyc4754 = true - } else if len(yyv4754) != 0 { - yyv4754 = yyv4754[:0] - yyc4754 = true + yyv4809 := *v + yyh4809, yyl4809 := z.DecSliceHelperStart() + var yyc4809 bool + if yyl4809 == 0 { + if yyv4809 == nil { + yyv4809 = []PreferAvoidPodsEntry{} + yyc4809 = true + } else if len(yyv4809) != 0 { + yyv4809 = yyv4809[:0] + yyc4809 = true } - } else if yyl4754 > 0 { - var yyrr4754, yyrl4754 int - var yyrt4754 bool - if yyl4754 > cap(yyv4754) { + } else if yyl4809 > 0 { + var yyrr4809, yyrl4809 int + var yyrt4809 bool + if yyl4809 > cap(yyv4809) { - yyrg4754 := len(yyv4754) > 0 - yyv24754 := yyv4754 - yyrl4754, yyrt4754 = z.DecInferLen(yyl4754, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4754 { - if yyrl4754 <= cap(yyv4754) { - yyv4754 = yyv4754[:yyrl4754] + yyrg4809 := len(yyv4809) > 0 + yyv24809 := yyv4809 + yyrl4809, yyrt4809 = z.DecInferLen(yyl4809, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4809 { + if yyrl4809 <= cap(yyv4809) { + yyv4809 = yyv4809[:yyrl4809] } else { - yyv4754 = make([]PreferAvoidPodsEntry, yyrl4754) + yyv4809 = make([]PreferAvoidPodsEntry, yyrl4809) } } else { - yyv4754 = make([]PreferAvoidPodsEntry, yyrl4754) + yyv4809 = make([]PreferAvoidPodsEntry, yyrl4809) } - yyc4754 = true - yyrr4754 = len(yyv4754) - if yyrg4754 { - copy(yyv4754, yyv24754) + yyc4809 = true + yyrr4809 = len(yyv4809) + if yyrg4809 { + copy(yyv4809, yyv24809) } - } else if yyl4754 != len(yyv4754) { - yyv4754 = yyv4754[:yyl4754] - yyc4754 = true + } else if yyl4809 != len(yyv4809) { + yyv4809 = yyv4809[:yyl4809] + yyc4809 = true } - yyj4754 := 0 - for ; yyj4754 < yyrr4754; yyj4754++ { - yyh4754.ElemContainerState(yyj4754) + yyj4809 := 0 + for ; yyj4809 < yyrr4809; yyj4809++ { + yyh4809.ElemContainerState(yyj4809) if r.TryDecodeAsNil() { - yyv4754[yyj4754] = PreferAvoidPodsEntry{} + yyv4809[yyj4809] = PreferAvoidPodsEntry{} } else { - yyv4755 := &yyv4754[yyj4754] - yyv4755.CodecDecodeSelf(d) + yyv4810 := &yyv4809[yyj4809] + yyv4810.CodecDecodeSelf(d) } } - if yyrt4754 { - for ; yyj4754 < yyl4754; yyj4754++ { - yyv4754 = append(yyv4754, PreferAvoidPodsEntry{}) - yyh4754.ElemContainerState(yyj4754) + if yyrt4809 { + for ; yyj4809 < yyl4809; yyj4809++ { + yyv4809 = append(yyv4809, PreferAvoidPodsEntry{}) + yyh4809.ElemContainerState(yyj4809) if r.TryDecodeAsNil() { - yyv4754[yyj4754] = PreferAvoidPodsEntry{} + yyv4809[yyj4809] = PreferAvoidPodsEntry{} } else { - yyv4756 := &yyv4754[yyj4754] - yyv4756.CodecDecodeSelf(d) + yyv4811 := &yyv4809[yyj4809] + yyv4811.CodecDecodeSelf(d) } } } } else { - yyj4754 := 0 - for ; !r.CheckBreak(); yyj4754++ { + yyj4809 := 0 + for ; !r.CheckBreak(); yyj4809++ { - if yyj4754 >= len(yyv4754) { - yyv4754 = append(yyv4754, PreferAvoidPodsEntry{}) // var yyz4754 PreferAvoidPodsEntry - yyc4754 = true + if yyj4809 >= len(yyv4809) { + yyv4809 = append(yyv4809, PreferAvoidPodsEntry{}) // var yyz4809 PreferAvoidPodsEntry + yyc4809 = true } - yyh4754.ElemContainerState(yyj4754) - if yyj4754 < len(yyv4754) { + yyh4809.ElemContainerState(yyj4809) + if yyj4809 < len(yyv4809) { if r.TryDecodeAsNil() { - yyv4754[yyj4754] = PreferAvoidPodsEntry{} + yyv4809[yyj4809] = PreferAvoidPodsEntry{} } else { - yyv4757 := &yyv4754[yyj4754] - yyv4757.CodecDecodeSelf(d) + yyv4812 := &yyv4809[yyj4809] + yyv4812.CodecDecodeSelf(d) } } else { @@ -60750,17 +61403,17 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } } - if yyj4754 < len(yyv4754) { - yyv4754 = yyv4754[:yyj4754] - yyc4754 = true - } else if yyj4754 == 0 && yyv4754 == nil { - yyv4754 = []PreferAvoidPodsEntry{} - yyc4754 = true + if yyj4809 < len(yyv4809) { + yyv4809 = yyv4809[:yyj4809] + yyc4809 = true + } else if yyj4809 == 0 && yyv4809 == nil { + yyv4809 = []PreferAvoidPodsEntry{} + yyc4809 = true } } - yyh4754.End() - if yyc4754 { - *v = yyv4754 + yyh4809.End() + if yyc4809 { + *v = yyv4809 } } @@ -60769,19 +61422,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4758, yyv4758 := range v { + for yyk4813, yyv4813 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4758.CodecEncodeSelf(e) + yyk4813.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4759 := &yyv4758 - yym4760 := z.EncBinary() - _ = yym4760 + yy4814 := &yyv4813 + yym4815 := z.EncBinary() + _ = yym4815 if false { - } else if z.HasExtensions() && z.EncExt(yy4759) { - } else if !yym4760 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4759) + } else if z.HasExtensions() && z.EncExt(yy4814) { + } else if !yym4815 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4814) } else { - z.EncFallback(yy4759) + z.EncFallback(yy4814) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -60792,86 +61445,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4761 := *v - yyl4761 := r.ReadMapStart() - yybh4761 := z.DecBasicHandle() - if yyv4761 == nil { - yyrl4761, _ := z.DecInferLen(yyl4761, yybh4761.MaxInitLen, 72) - yyv4761 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4761) - *v = yyv4761 + yyv4816 := *v + yyl4816 := r.ReadMapStart() + yybh4816 := z.DecBasicHandle() + if yyv4816 == nil { + yyrl4816, _ := z.DecInferLen(yyl4816, yybh4816.MaxInitLen, 72) + yyv4816 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4816) + *v = yyv4816 } - var yymk4761 ResourceName - var yymv4761 pkg3_resource.Quantity - var yymg4761 bool - if yybh4761.MapValueReset { - yymg4761 = true + var yymk4816 ResourceName + var yymv4816 pkg3_resource.Quantity + var yymg4816 bool + if yybh4816.MapValueReset { + yymg4816 = true } - if yyl4761 > 0 { - for yyj4761 := 0; yyj4761 < yyl4761; yyj4761++ { + if yyl4816 > 0 { + for yyj4816 := 0; yyj4816 < yyl4816; yyj4816++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4761 = "" + yymk4816 = "" } else { - yymk4761 = ResourceName(r.DecodeString()) + yymk4816 = ResourceName(r.DecodeString()) } - if yymg4761 { - yymv4761 = yyv4761[yymk4761] + if yymg4816 { + yymv4816 = yyv4816[yymk4816] } else { - yymv4761 = pkg3_resource.Quantity{} + yymv4816 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4761 = pkg3_resource.Quantity{} + yymv4816 = pkg3_resource.Quantity{} } else { - yyv4763 := &yymv4761 - yym4764 := z.DecBinary() - _ = yym4764 + yyv4818 := &yymv4816 + yym4819 := z.DecBinary() + _ = yym4819 if false { - } else if z.HasExtensions() && z.DecExt(yyv4763) { - } else if !yym4764 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4763) + } else if z.HasExtensions() && z.DecExt(yyv4818) { + } else if !yym4819 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4818) } else { - z.DecFallback(yyv4763, false) + z.DecFallback(yyv4818, false) } } - if yyv4761 != nil { - yyv4761[yymk4761] = yymv4761 + if yyv4816 != nil { + yyv4816[yymk4816] = yymv4816 } } - } else if yyl4761 < 0 { - for yyj4761 := 0; !r.CheckBreak(); yyj4761++ { + } else if yyl4816 < 0 { + for yyj4816 := 0; !r.CheckBreak(); yyj4816++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4761 = "" + yymk4816 = "" } else { - yymk4761 = ResourceName(r.DecodeString()) + yymk4816 = ResourceName(r.DecodeString()) } - if yymg4761 { - yymv4761 = yyv4761[yymk4761] + if yymg4816 { + yymv4816 = yyv4816[yymk4816] } else { - yymv4761 = pkg3_resource.Quantity{} + yymv4816 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4761 = pkg3_resource.Quantity{} + yymv4816 = pkg3_resource.Quantity{} } else { - yyv4766 := &yymv4761 - yym4767 := z.DecBinary() - _ = yym4767 + yyv4821 := &yymv4816 + yym4822 := z.DecBinary() + _ = yym4822 if false { - } else if z.HasExtensions() && z.DecExt(yyv4766) { - } else if !yym4767 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4766) + } else if z.HasExtensions() && z.DecExt(yyv4821) { + } else if !yym4822 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4821) } else { - z.DecFallback(yyv4766, false) + z.DecFallback(yyv4821, false) } } - if yyv4761 != nil { - yyv4761[yymk4761] = yymv4761 + if yyv4816 != nil { + yyv4816[yymk4816] = yymv4816 } } } // else len==0: TODO: Should we clear map entries? @@ -60883,10 +61536,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4768 := range v { + for _, yyv4823 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4769 := &yyv4768 - yy4769.CodecEncodeSelf(e) + yy4824 := &yyv4823 + yy4824.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60896,83 +61549,83 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4770 := *v - yyh4770, yyl4770 := z.DecSliceHelperStart() - var yyc4770 bool - if yyl4770 == 0 { - if yyv4770 == nil { - yyv4770 = []Node{} - yyc4770 = true - } else if len(yyv4770) != 0 { - yyv4770 = yyv4770[:0] - yyc4770 = true + yyv4825 := *v + yyh4825, yyl4825 := z.DecSliceHelperStart() + var yyc4825 bool + if yyl4825 == 0 { + if yyv4825 == nil { + yyv4825 = []Node{} + yyc4825 = true + } else if len(yyv4825) != 0 { + yyv4825 = yyv4825[:0] + yyc4825 = true } - } else if yyl4770 > 0 { - var yyrr4770, yyrl4770 int - var yyrt4770 bool - if yyl4770 > cap(yyv4770) { + } else if yyl4825 > 0 { + var yyrr4825, yyrl4825 int + var yyrt4825 bool + if yyl4825 > cap(yyv4825) { - yyrg4770 := len(yyv4770) > 0 - yyv24770 := yyv4770 - yyrl4770, yyrt4770 = z.DecInferLen(yyl4770, z.DecBasicHandle().MaxInitLen, 632) - if yyrt4770 { - if yyrl4770 <= cap(yyv4770) { - yyv4770 = yyv4770[:yyrl4770] + yyrg4825 := len(yyv4825) > 0 + yyv24825 := yyv4825 + yyrl4825, yyrt4825 = z.DecInferLen(yyl4825, z.DecBasicHandle().MaxInitLen, 632) + if yyrt4825 { + if yyrl4825 <= cap(yyv4825) { + yyv4825 = yyv4825[:yyrl4825] } else { - yyv4770 = make([]Node, yyrl4770) + yyv4825 = make([]Node, yyrl4825) } } else { - yyv4770 = make([]Node, yyrl4770) + yyv4825 = make([]Node, yyrl4825) } - yyc4770 = true - yyrr4770 = len(yyv4770) - if yyrg4770 { - copy(yyv4770, yyv24770) + yyc4825 = true + yyrr4825 = len(yyv4825) + if yyrg4825 { + copy(yyv4825, yyv24825) } - } else if yyl4770 != len(yyv4770) { - yyv4770 = yyv4770[:yyl4770] - yyc4770 = true + } else if yyl4825 != len(yyv4825) { + yyv4825 = yyv4825[:yyl4825] + yyc4825 = true } - yyj4770 := 0 - for ; yyj4770 < yyrr4770; yyj4770++ { - yyh4770.ElemContainerState(yyj4770) + yyj4825 := 0 + for ; yyj4825 < yyrr4825; yyj4825++ { + yyh4825.ElemContainerState(yyj4825) if r.TryDecodeAsNil() { - yyv4770[yyj4770] = Node{} + yyv4825[yyj4825] = Node{} } else { - yyv4771 := &yyv4770[yyj4770] - yyv4771.CodecDecodeSelf(d) + yyv4826 := &yyv4825[yyj4825] + yyv4826.CodecDecodeSelf(d) } } - if yyrt4770 { - for ; yyj4770 < yyl4770; yyj4770++ { - yyv4770 = append(yyv4770, Node{}) - yyh4770.ElemContainerState(yyj4770) + if yyrt4825 { + for ; yyj4825 < yyl4825; yyj4825++ { + yyv4825 = append(yyv4825, Node{}) + yyh4825.ElemContainerState(yyj4825) if r.TryDecodeAsNil() { - yyv4770[yyj4770] = Node{} + yyv4825[yyj4825] = Node{} } else { - yyv4772 := &yyv4770[yyj4770] - yyv4772.CodecDecodeSelf(d) + yyv4827 := &yyv4825[yyj4825] + yyv4827.CodecDecodeSelf(d) } } } } else { - yyj4770 := 0 - for ; !r.CheckBreak(); yyj4770++ { + yyj4825 := 0 + for ; !r.CheckBreak(); yyj4825++ { - if yyj4770 >= len(yyv4770) { - yyv4770 = append(yyv4770, Node{}) // var yyz4770 Node - yyc4770 = true + if yyj4825 >= len(yyv4825) { + yyv4825 = append(yyv4825, Node{}) // var yyz4825 Node + yyc4825 = true } - yyh4770.ElemContainerState(yyj4770) - if yyj4770 < len(yyv4770) { + yyh4825.ElemContainerState(yyj4825) + if yyj4825 < len(yyv4825) { if r.TryDecodeAsNil() { - yyv4770[yyj4770] = Node{} + yyv4825[yyj4825] = Node{} } else { - yyv4773 := &yyv4770[yyj4770] - yyv4773.CodecDecodeSelf(d) + yyv4828 := &yyv4825[yyj4825] + yyv4828.CodecDecodeSelf(d) } } else { @@ -60980,17 +61633,17 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { } } - if yyj4770 < len(yyv4770) { - yyv4770 = yyv4770[:yyj4770] - yyc4770 = true - } else if yyj4770 == 0 && yyv4770 == nil { - yyv4770 = []Node{} - yyc4770 = true + if yyj4825 < len(yyv4825) { + yyv4825 = yyv4825[:yyj4825] + yyc4825 = true + } else if yyj4825 == 0 && yyv4825 == nil { + yyv4825 = []Node{} + yyc4825 = true } } - yyh4770.End() - if yyc4770 { - *v = yyv4770 + yyh4825.End() + if yyc4825 { + *v = yyv4825 } } @@ -60999,9 +61652,9 @@ func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4774 := range v { + for _, yyv4829 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4774.CodecEncodeSelf(e) + yyv4829.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61011,75 +61664,75 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4775 := *v - yyh4775, yyl4775 := z.DecSliceHelperStart() - var yyc4775 bool - if yyl4775 == 0 { - if yyv4775 == nil { - yyv4775 = []FinalizerName{} - yyc4775 = true - } else if len(yyv4775) != 0 { - yyv4775 = yyv4775[:0] - yyc4775 = true + yyv4830 := *v + yyh4830, yyl4830 := z.DecSliceHelperStart() + var yyc4830 bool + if yyl4830 == 0 { + if yyv4830 == nil { + yyv4830 = []FinalizerName{} + yyc4830 = true + } else if len(yyv4830) != 0 { + yyv4830 = yyv4830[:0] + yyc4830 = true } - } else if yyl4775 > 0 { - var yyrr4775, yyrl4775 int - var yyrt4775 bool - if yyl4775 > cap(yyv4775) { + } else if yyl4830 > 0 { + var yyrr4830, yyrl4830 int + var yyrt4830 bool + if yyl4830 > cap(yyv4830) { - yyrl4775, yyrt4775 = z.DecInferLen(yyl4775, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4775 { - if yyrl4775 <= cap(yyv4775) { - yyv4775 = yyv4775[:yyrl4775] + yyrl4830, yyrt4830 = z.DecInferLen(yyl4830, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4830 { + if yyrl4830 <= cap(yyv4830) { + yyv4830 = yyv4830[:yyrl4830] } else { - yyv4775 = make([]FinalizerName, yyrl4775) + yyv4830 = make([]FinalizerName, yyrl4830) } } else { - yyv4775 = make([]FinalizerName, yyrl4775) + yyv4830 = make([]FinalizerName, yyrl4830) } - yyc4775 = true - yyrr4775 = len(yyv4775) - } else if yyl4775 != len(yyv4775) { - yyv4775 = yyv4775[:yyl4775] - yyc4775 = true + yyc4830 = true + yyrr4830 = len(yyv4830) + } else if yyl4830 != len(yyv4830) { + yyv4830 = yyv4830[:yyl4830] + yyc4830 = true } - yyj4775 := 0 - for ; yyj4775 < yyrr4775; yyj4775++ { - yyh4775.ElemContainerState(yyj4775) + yyj4830 := 0 + for ; yyj4830 < yyrr4830; yyj4830++ { + yyh4830.ElemContainerState(yyj4830) if r.TryDecodeAsNil() { - yyv4775[yyj4775] = "" + yyv4830[yyj4830] = "" } else { - yyv4775[yyj4775] = FinalizerName(r.DecodeString()) + yyv4830[yyj4830] = FinalizerName(r.DecodeString()) } } - if yyrt4775 { - for ; yyj4775 < yyl4775; yyj4775++ { - yyv4775 = append(yyv4775, "") - yyh4775.ElemContainerState(yyj4775) + if yyrt4830 { + for ; yyj4830 < yyl4830; yyj4830++ { + yyv4830 = append(yyv4830, "") + yyh4830.ElemContainerState(yyj4830) if r.TryDecodeAsNil() { - yyv4775[yyj4775] = "" + yyv4830[yyj4830] = "" } else { - yyv4775[yyj4775] = FinalizerName(r.DecodeString()) + yyv4830[yyj4830] = FinalizerName(r.DecodeString()) } } } } else { - yyj4775 := 0 - for ; !r.CheckBreak(); yyj4775++ { + yyj4830 := 0 + for ; !r.CheckBreak(); yyj4830++ { - if yyj4775 >= len(yyv4775) { - yyv4775 = append(yyv4775, "") // var yyz4775 FinalizerName - yyc4775 = true + if yyj4830 >= len(yyv4830) { + yyv4830 = append(yyv4830, "") // var yyz4830 FinalizerName + yyc4830 = true } - yyh4775.ElemContainerState(yyj4775) - if yyj4775 < len(yyv4775) { + yyh4830.ElemContainerState(yyj4830) + if yyj4830 < len(yyv4830) { if r.TryDecodeAsNil() { - yyv4775[yyj4775] = "" + yyv4830[yyj4830] = "" } else { - yyv4775[yyj4775] = FinalizerName(r.DecodeString()) + yyv4830[yyj4830] = FinalizerName(r.DecodeString()) } } else { @@ -61087,17 +61740,17 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } - if yyj4775 < len(yyv4775) { - yyv4775 = yyv4775[:yyj4775] - yyc4775 = true - } else if yyj4775 == 0 && yyv4775 == nil { - yyv4775 = []FinalizerName{} - yyc4775 = true + if yyj4830 < len(yyv4830) { + yyv4830 = yyv4830[:yyj4830] + yyc4830 = true + } else if yyj4830 == 0 && yyv4830 == nil { + yyv4830 = []FinalizerName{} + yyc4830 = true } } - yyh4775.End() - if yyc4775 { - *v = yyv4775 + yyh4830.End() + if yyc4830 { + *v = yyv4830 } } @@ -61106,10 +61759,10 @@ func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4779 := range v { + for _, yyv4834 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4780 := &yyv4779 - yy4780.CodecEncodeSelf(e) + yy4835 := &yyv4834 + yy4835.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61119,83 +61772,83 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4781 := *v - yyh4781, yyl4781 := z.DecSliceHelperStart() - var yyc4781 bool - if yyl4781 == 0 { - if yyv4781 == nil { - yyv4781 = []Namespace{} - yyc4781 = true - } else if len(yyv4781) != 0 { - yyv4781 = yyv4781[:0] - yyc4781 = true + yyv4836 := *v + yyh4836, yyl4836 := z.DecSliceHelperStart() + var yyc4836 bool + if yyl4836 == 0 { + if yyv4836 == nil { + yyv4836 = []Namespace{} + yyc4836 = true + } else if len(yyv4836) != 0 { + yyv4836 = yyv4836[:0] + yyc4836 = true } - } else if yyl4781 > 0 { - var yyrr4781, yyrl4781 int - var yyrt4781 bool - if yyl4781 > cap(yyv4781) { + } else if yyl4836 > 0 { + var yyrr4836, yyrl4836 int + var yyrt4836 bool + if yyl4836 > cap(yyv4836) { - yyrg4781 := len(yyv4781) > 0 - yyv24781 := yyv4781 - yyrl4781, yyrt4781 = z.DecInferLen(yyl4781, z.DecBasicHandle().MaxInitLen, 296) - if yyrt4781 { - if yyrl4781 <= cap(yyv4781) { - yyv4781 = yyv4781[:yyrl4781] + yyrg4836 := len(yyv4836) > 0 + yyv24836 := yyv4836 + yyrl4836, yyrt4836 = z.DecInferLen(yyl4836, z.DecBasicHandle().MaxInitLen, 296) + if yyrt4836 { + if yyrl4836 <= cap(yyv4836) { + yyv4836 = yyv4836[:yyrl4836] } else { - yyv4781 = make([]Namespace, yyrl4781) + yyv4836 = make([]Namespace, yyrl4836) } } else { - yyv4781 = make([]Namespace, yyrl4781) + yyv4836 = make([]Namespace, yyrl4836) } - yyc4781 = true - yyrr4781 = len(yyv4781) - if yyrg4781 { - copy(yyv4781, yyv24781) + yyc4836 = true + yyrr4836 = len(yyv4836) + if yyrg4836 { + copy(yyv4836, yyv24836) } - } else if yyl4781 != len(yyv4781) { - yyv4781 = yyv4781[:yyl4781] - yyc4781 = true + } else if yyl4836 != len(yyv4836) { + yyv4836 = yyv4836[:yyl4836] + yyc4836 = true } - yyj4781 := 0 - for ; yyj4781 < yyrr4781; yyj4781++ { - yyh4781.ElemContainerState(yyj4781) + yyj4836 := 0 + for ; yyj4836 < yyrr4836; yyj4836++ { + yyh4836.ElemContainerState(yyj4836) if r.TryDecodeAsNil() { - yyv4781[yyj4781] = Namespace{} + yyv4836[yyj4836] = Namespace{} } else { - yyv4782 := &yyv4781[yyj4781] - yyv4782.CodecDecodeSelf(d) + yyv4837 := &yyv4836[yyj4836] + yyv4837.CodecDecodeSelf(d) } } - if yyrt4781 { - for ; yyj4781 < yyl4781; yyj4781++ { - yyv4781 = append(yyv4781, Namespace{}) - yyh4781.ElemContainerState(yyj4781) + if yyrt4836 { + for ; yyj4836 < yyl4836; yyj4836++ { + yyv4836 = append(yyv4836, Namespace{}) + yyh4836.ElemContainerState(yyj4836) if r.TryDecodeAsNil() { - yyv4781[yyj4781] = Namespace{} + yyv4836[yyj4836] = Namespace{} } else { - yyv4783 := &yyv4781[yyj4781] - yyv4783.CodecDecodeSelf(d) + yyv4838 := &yyv4836[yyj4836] + yyv4838.CodecDecodeSelf(d) } } } } else { - yyj4781 := 0 - for ; !r.CheckBreak(); yyj4781++ { + yyj4836 := 0 + for ; !r.CheckBreak(); yyj4836++ { - if yyj4781 >= len(yyv4781) { - yyv4781 = append(yyv4781, Namespace{}) // var yyz4781 Namespace - yyc4781 = true + if yyj4836 >= len(yyv4836) { + yyv4836 = append(yyv4836, Namespace{}) // var yyz4836 Namespace + yyc4836 = true } - yyh4781.ElemContainerState(yyj4781) - if yyj4781 < len(yyv4781) { + yyh4836.ElemContainerState(yyj4836) + if yyj4836 < len(yyv4836) { if r.TryDecodeAsNil() { - yyv4781[yyj4781] = Namespace{} + yyv4836[yyj4836] = Namespace{} } else { - yyv4784 := &yyv4781[yyj4781] - yyv4784.CodecDecodeSelf(d) + yyv4839 := &yyv4836[yyj4836] + yyv4839.CodecDecodeSelf(d) } } else { @@ -61203,17 +61856,17 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4781 < len(yyv4781) { - yyv4781 = yyv4781[:yyj4781] - yyc4781 = true - } else if yyj4781 == 0 && yyv4781 == nil { - yyv4781 = []Namespace{} - yyc4781 = true + if yyj4836 < len(yyv4836) { + yyv4836 = yyv4836[:yyj4836] + yyc4836 = true + } else if yyj4836 == 0 && yyv4836 == nil { + yyv4836 = []Namespace{} + yyc4836 = true } } - yyh4781.End() - if yyc4781 { - *v = yyv4781 + yyh4836.End() + if yyc4836 { + *v = yyv4836 } } @@ -61222,10 +61875,10 @@ func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4785 := range v { + for _, yyv4840 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4786 := &yyv4785 - yy4786.CodecEncodeSelf(e) + yy4841 := &yyv4840 + yy4841.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61235,83 +61888,83 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4787 := *v - yyh4787, yyl4787 := z.DecSliceHelperStart() - var yyc4787 bool - if yyl4787 == 0 { - if yyv4787 == nil { - yyv4787 = []Event{} - yyc4787 = true - } else if len(yyv4787) != 0 { - yyv4787 = yyv4787[:0] - yyc4787 = true + yyv4842 := *v + yyh4842, yyl4842 := z.DecSliceHelperStart() + var yyc4842 bool + if yyl4842 == 0 { + if yyv4842 == nil { + yyv4842 = []Event{} + yyc4842 = true + } else if len(yyv4842) != 0 { + yyv4842 = yyv4842[:0] + yyc4842 = true } - } else if yyl4787 > 0 { - var yyrr4787, yyrl4787 int - var yyrt4787 bool - if yyl4787 > cap(yyv4787) { + } else if yyl4842 > 0 { + var yyrr4842, yyrl4842 int + var yyrt4842 bool + if yyl4842 > cap(yyv4842) { - yyrg4787 := len(yyv4787) > 0 - yyv24787 := yyv4787 - yyrl4787, yyrt4787 = z.DecInferLen(yyl4787, z.DecBasicHandle().MaxInitLen, 504) - if yyrt4787 { - if yyrl4787 <= cap(yyv4787) { - yyv4787 = yyv4787[:yyrl4787] + yyrg4842 := len(yyv4842) > 0 + yyv24842 := yyv4842 + yyrl4842, yyrt4842 = z.DecInferLen(yyl4842, z.DecBasicHandle().MaxInitLen, 504) + if yyrt4842 { + if yyrl4842 <= cap(yyv4842) { + yyv4842 = yyv4842[:yyrl4842] } else { - yyv4787 = make([]Event, yyrl4787) + yyv4842 = make([]Event, yyrl4842) } } else { - yyv4787 = make([]Event, yyrl4787) + yyv4842 = make([]Event, yyrl4842) } - yyc4787 = true - yyrr4787 = len(yyv4787) - if yyrg4787 { - copy(yyv4787, yyv24787) + yyc4842 = true + yyrr4842 = len(yyv4842) + if yyrg4842 { + copy(yyv4842, yyv24842) } - } else if yyl4787 != len(yyv4787) { - yyv4787 = yyv4787[:yyl4787] - yyc4787 = true + } else if yyl4842 != len(yyv4842) { + yyv4842 = yyv4842[:yyl4842] + yyc4842 = true } - yyj4787 := 0 - for ; yyj4787 < yyrr4787; yyj4787++ { - yyh4787.ElemContainerState(yyj4787) + yyj4842 := 0 + for ; yyj4842 < yyrr4842; yyj4842++ { + yyh4842.ElemContainerState(yyj4842) if r.TryDecodeAsNil() { - yyv4787[yyj4787] = Event{} + yyv4842[yyj4842] = Event{} } else { - yyv4788 := &yyv4787[yyj4787] - yyv4788.CodecDecodeSelf(d) + yyv4843 := &yyv4842[yyj4842] + yyv4843.CodecDecodeSelf(d) } } - if yyrt4787 { - for ; yyj4787 < yyl4787; yyj4787++ { - yyv4787 = append(yyv4787, Event{}) - yyh4787.ElemContainerState(yyj4787) + if yyrt4842 { + for ; yyj4842 < yyl4842; yyj4842++ { + yyv4842 = append(yyv4842, Event{}) + yyh4842.ElemContainerState(yyj4842) if r.TryDecodeAsNil() { - yyv4787[yyj4787] = Event{} + yyv4842[yyj4842] = Event{} } else { - yyv4789 := &yyv4787[yyj4787] - yyv4789.CodecDecodeSelf(d) + yyv4844 := &yyv4842[yyj4842] + yyv4844.CodecDecodeSelf(d) } } } } else { - yyj4787 := 0 - for ; !r.CheckBreak(); yyj4787++ { + yyj4842 := 0 + for ; !r.CheckBreak(); yyj4842++ { - if yyj4787 >= len(yyv4787) { - yyv4787 = append(yyv4787, Event{}) // var yyz4787 Event - yyc4787 = true + if yyj4842 >= len(yyv4842) { + yyv4842 = append(yyv4842, Event{}) // var yyz4842 Event + yyc4842 = true } - yyh4787.ElemContainerState(yyj4787) - if yyj4787 < len(yyv4787) { + yyh4842.ElemContainerState(yyj4842) + if yyj4842 < len(yyv4842) { if r.TryDecodeAsNil() { - yyv4787[yyj4787] = Event{} + yyv4842[yyj4842] = Event{} } else { - yyv4790 := &yyv4787[yyj4787] - yyv4790.CodecDecodeSelf(d) + yyv4845 := &yyv4842[yyj4842] + yyv4845.CodecDecodeSelf(d) } } else { @@ -61319,17 +61972,17 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4787 < len(yyv4787) { - yyv4787 = yyv4787[:yyj4787] - yyc4787 = true - } else if yyj4787 == 0 && yyv4787 == nil { - yyv4787 = []Event{} - yyc4787 = true + if yyj4842 < len(yyv4842) { + yyv4842 = yyv4842[:yyj4842] + yyc4842 = true + } else if yyj4842 == 0 && yyv4842 == nil { + yyv4842 = []Event{} + yyc4842 = true } } - yyh4787.End() - if yyc4787 { - *v = yyv4787 + yyh4842.End() + if yyc4842 { + *v = yyv4842 } } @@ -61338,17 +61991,17 @@ func (x codecSelfer1234) encSliceruntime_RawExtension(v []pkg5_runtime.RawExtens z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4791 := range v { + for _, yyv4846 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4792 := &yyv4791 - yym4793 := z.EncBinary() - _ = yym4793 + yy4847 := &yyv4846 + yym4848 := z.EncBinary() + _ = yym4848 if false { - } else if z.HasExtensions() && z.EncExt(yy4792) { - } else if !yym4793 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4792) + } else if z.HasExtensions() && z.EncExt(yy4847) { + } else if !yym4848 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4847) } else { - z.EncFallback(yy4792) + z.EncFallback(yy4847) } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) @@ -61359,78 +62012,78 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4794 := *v - yyh4794, yyl4794 := z.DecSliceHelperStart() - var yyc4794 bool - if yyl4794 == 0 { - if yyv4794 == nil { - yyv4794 = []pkg5_runtime.RawExtension{} - yyc4794 = true - } else if len(yyv4794) != 0 { - yyv4794 = yyv4794[:0] - yyc4794 = true + yyv4849 := *v + yyh4849, yyl4849 := z.DecSliceHelperStart() + var yyc4849 bool + if yyl4849 == 0 { + if yyv4849 == nil { + yyv4849 = []pkg5_runtime.RawExtension{} + yyc4849 = true + } else if len(yyv4849) != 0 { + yyv4849 = yyv4849[:0] + yyc4849 = true } - } else if yyl4794 > 0 { - var yyrr4794, yyrl4794 int - var yyrt4794 bool - if yyl4794 > cap(yyv4794) { + } else if yyl4849 > 0 { + var yyrr4849, yyrl4849 int + var yyrt4849 bool + if yyl4849 > cap(yyv4849) { - yyrg4794 := len(yyv4794) > 0 - yyv24794 := yyv4794 - yyrl4794, yyrt4794 = z.DecInferLen(yyl4794, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4794 { - if yyrl4794 <= cap(yyv4794) { - yyv4794 = yyv4794[:yyrl4794] + yyrg4849 := len(yyv4849) > 0 + yyv24849 := yyv4849 + yyrl4849, yyrt4849 = z.DecInferLen(yyl4849, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4849 { + if yyrl4849 <= cap(yyv4849) { + yyv4849 = yyv4849[:yyrl4849] } else { - yyv4794 = make([]pkg5_runtime.RawExtension, yyrl4794) + yyv4849 = make([]pkg5_runtime.RawExtension, yyrl4849) } } else { - yyv4794 = make([]pkg5_runtime.RawExtension, yyrl4794) + yyv4849 = make([]pkg5_runtime.RawExtension, yyrl4849) } - yyc4794 = true - yyrr4794 = len(yyv4794) - if yyrg4794 { - copy(yyv4794, yyv24794) + yyc4849 = true + yyrr4849 = len(yyv4849) + if yyrg4849 { + copy(yyv4849, yyv24849) } - } else if yyl4794 != len(yyv4794) { - yyv4794 = yyv4794[:yyl4794] - yyc4794 = true + } else if yyl4849 != len(yyv4849) { + yyv4849 = yyv4849[:yyl4849] + yyc4849 = true } - yyj4794 := 0 - for ; yyj4794 < yyrr4794; yyj4794++ { - yyh4794.ElemContainerState(yyj4794) + yyj4849 := 0 + for ; yyj4849 < yyrr4849; yyj4849++ { + yyh4849.ElemContainerState(yyj4849) if r.TryDecodeAsNil() { - yyv4794[yyj4794] = pkg5_runtime.RawExtension{} + yyv4849[yyj4849] = pkg5_runtime.RawExtension{} } else { - yyv4795 := &yyv4794[yyj4794] - yym4796 := z.DecBinary() - _ = yym4796 + yyv4850 := &yyv4849[yyj4849] + yym4851 := z.DecBinary() + _ = yym4851 if false { - } else if z.HasExtensions() && z.DecExt(yyv4795) { - } else if !yym4796 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4795) + } else if z.HasExtensions() && z.DecExt(yyv4850) { + } else if !yym4851 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4850) } else { - z.DecFallback(yyv4795, false) + z.DecFallback(yyv4850, false) } } } - if yyrt4794 { - for ; yyj4794 < yyl4794; yyj4794++ { - yyv4794 = append(yyv4794, pkg5_runtime.RawExtension{}) - yyh4794.ElemContainerState(yyj4794) + if yyrt4849 { + for ; yyj4849 < yyl4849; yyj4849++ { + yyv4849 = append(yyv4849, pkg5_runtime.RawExtension{}) + yyh4849.ElemContainerState(yyj4849) if r.TryDecodeAsNil() { - yyv4794[yyj4794] = pkg5_runtime.RawExtension{} + yyv4849[yyj4849] = pkg5_runtime.RawExtension{} } else { - yyv4797 := &yyv4794[yyj4794] - yym4798 := z.DecBinary() - _ = yym4798 + yyv4852 := &yyv4849[yyj4849] + yym4853 := z.DecBinary() + _ = yym4853 if false { - } else if z.HasExtensions() && z.DecExt(yyv4797) { - } else if !yym4798 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4797) + } else if z.HasExtensions() && z.DecExt(yyv4852) { + } else if !yym4853 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4852) } else { - z.DecFallback(yyv4797, false) + z.DecFallback(yyv4852, false) } } @@ -61438,27 +62091,27 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten } } else { - yyj4794 := 0 - for ; !r.CheckBreak(); yyj4794++ { + yyj4849 := 0 + for ; !r.CheckBreak(); yyj4849++ { - if yyj4794 >= len(yyv4794) { - yyv4794 = append(yyv4794, pkg5_runtime.RawExtension{}) // var yyz4794 pkg5_runtime.RawExtension - yyc4794 = true + if yyj4849 >= len(yyv4849) { + yyv4849 = append(yyv4849, pkg5_runtime.RawExtension{}) // var yyz4849 pkg5_runtime.RawExtension + yyc4849 = true } - yyh4794.ElemContainerState(yyj4794) - if yyj4794 < len(yyv4794) { + yyh4849.ElemContainerState(yyj4849) + if yyj4849 < len(yyv4849) { if r.TryDecodeAsNil() { - yyv4794[yyj4794] = pkg5_runtime.RawExtension{} + yyv4849[yyj4849] = pkg5_runtime.RawExtension{} } else { - yyv4799 := &yyv4794[yyj4794] - yym4800 := z.DecBinary() - _ = yym4800 + yyv4854 := &yyv4849[yyj4849] + yym4855 := z.DecBinary() + _ = yym4855 if false { - } else if z.HasExtensions() && z.DecExt(yyv4799) { - } else if !yym4800 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4799) + } else if z.HasExtensions() && z.DecExt(yyv4854) { + } else if !yym4855 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4854) } else { - z.DecFallback(yyv4799, false) + z.DecFallback(yyv4854, false) } } @@ -61467,17 +62120,17 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten } } - if yyj4794 < len(yyv4794) { - yyv4794 = yyv4794[:yyj4794] - yyc4794 = true - } else if yyj4794 == 0 && yyv4794 == nil { - yyv4794 = []pkg5_runtime.RawExtension{} - yyc4794 = true + if yyj4849 < len(yyv4849) { + yyv4849 = yyv4849[:yyj4849] + yyc4849 = true + } else if yyj4849 == 0 && yyv4849 == nil { + yyv4849 = []pkg5_runtime.RawExtension{} + yyc4849 = true } } - yyh4794.End() - if yyc4794 { - *v = yyv4794 + yyh4849.End() + if yyc4849 { + *v = yyv4849 } } @@ -61486,10 +62139,10 @@ func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4801 := range v { + for _, yyv4856 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4802 := &yyv4801 - yy4802.CodecEncodeSelf(e) + yy4857 := &yyv4856 + yy4857.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61499,83 +62152,83 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4803 := *v - yyh4803, yyl4803 := z.DecSliceHelperStart() - var yyc4803 bool - if yyl4803 == 0 { - if yyv4803 == nil { - yyv4803 = []LimitRangeItem{} - yyc4803 = true - } else if len(yyv4803) != 0 { - yyv4803 = yyv4803[:0] - yyc4803 = true + yyv4858 := *v + yyh4858, yyl4858 := z.DecSliceHelperStart() + var yyc4858 bool + if yyl4858 == 0 { + if yyv4858 == nil { + yyv4858 = []LimitRangeItem{} + yyc4858 = true + } else if len(yyv4858) != 0 { + yyv4858 = yyv4858[:0] + yyc4858 = true } - } else if yyl4803 > 0 { - var yyrr4803, yyrl4803 int - var yyrt4803 bool - if yyl4803 > cap(yyv4803) { + } else if yyl4858 > 0 { + var yyrr4858, yyrl4858 int + var yyrt4858 bool + if yyl4858 > cap(yyv4858) { - yyrg4803 := len(yyv4803) > 0 - yyv24803 := yyv4803 - yyrl4803, yyrt4803 = z.DecInferLen(yyl4803, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4803 { - if yyrl4803 <= cap(yyv4803) { - yyv4803 = yyv4803[:yyrl4803] + yyrg4858 := len(yyv4858) > 0 + yyv24858 := yyv4858 + yyrl4858, yyrt4858 = z.DecInferLen(yyl4858, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4858 { + if yyrl4858 <= cap(yyv4858) { + yyv4858 = yyv4858[:yyrl4858] } else { - yyv4803 = make([]LimitRangeItem, yyrl4803) + yyv4858 = make([]LimitRangeItem, yyrl4858) } } else { - yyv4803 = make([]LimitRangeItem, yyrl4803) + yyv4858 = make([]LimitRangeItem, yyrl4858) } - yyc4803 = true - yyrr4803 = len(yyv4803) - if yyrg4803 { - copy(yyv4803, yyv24803) + yyc4858 = true + yyrr4858 = len(yyv4858) + if yyrg4858 { + copy(yyv4858, yyv24858) } - } else if yyl4803 != len(yyv4803) { - yyv4803 = yyv4803[:yyl4803] - yyc4803 = true + } else if yyl4858 != len(yyv4858) { + yyv4858 = yyv4858[:yyl4858] + yyc4858 = true } - yyj4803 := 0 - for ; yyj4803 < yyrr4803; yyj4803++ { - yyh4803.ElemContainerState(yyj4803) + yyj4858 := 0 + for ; yyj4858 < yyrr4858; yyj4858++ { + yyh4858.ElemContainerState(yyj4858) if r.TryDecodeAsNil() { - yyv4803[yyj4803] = LimitRangeItem{} + yyv4858[yyj4858] = LimitRangeItem{} } else { - yyv4804 := &yyv4803[yyj4803] - yyv4804.CodecDecodeSelf(d) + yyv4859 := &yyv4858[yyj4858] + yyv4859.CodecDecodeSelf(d) } } - if yyrt4803 { - for ; yyj4803 < yyl4803; yyj4803++ { - yyv4803 = append(yyv4803, LimitRangeItem{}) - yyh4803.ElemContainerState(yyj4803) + if yyrt4858 { + for ; yyj4858 < yyl4858; yyj4858++ { + yyv4858 = append(yyv4858, LimitRangeItem{}) + yyh4858.ElemContainerState(yyj4858) if r.TryDecodeAsNil() { - yyv4803[yyj4803] = LimitRangeItem{} + yyv4858[yyj4858] = LimitRangeItem{} } else { - yyv4805 := &yyv4803[yyj4803] - yyv4805.CodecDecodeSelf(d) + yyv4860 := &yyv4858[yyj4858] + yyv4860.CodecDecodeSelf(d) } } } } else { - yyj4803 := 0 - for ; !r.CheckBreak(); yyj4803++ { + yyj4858 := 0 + for ; !r.CheckBreak(); yyj4858++ { - if yyj4803 >= len(yyv4803) { - yyv4803 = append(yyv4803, LimitRangeItem{}) // var yyz4803 LimitRangeItem - yyc4803 = true + if yyj4858 >= len(yyv4858) { + yyv4858 = append(yyv4858, LimitRangeItem{}) // var yyz4858 LimitRangeItem + yyc4858 = true } - yyh4803.ElemContainerState(yyj4803) - if yyj4803 < len(yyv4803) { + yyh4858.ElemContainerState(yyj4858) + if yyj4858 < len(yyv4858) { if r.TryDecodeAsNil() { - yyv4803[yyj4803] = LimitRangeItem{} + yyv4858[yyj4858] = LimitRangeItem{} } else { - yyv4806 := &yyv4803[yyj4803] - yyv4806.CodecDecodeSelf(d) + yyv4861 := &yyv4858[yyj4858] + yyv4861.CodecDecodeSelf(d) } } else { @@ -61583,17 +62236,17 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4803 < len(yyv4803) { - yyv4803 = yyv4803[:yyj4803] - yyc4803 = true - } else if yyj4803 == 0 && yyv4803 == nil { - yyv4803 = []LimitRangeItem{} - yyc4803 = true + if yyj4858 < len(yyv4858) { + yyv4858 = yyv4858[:yyj4858] + yyc4858 = true + } else if yyj4858 == 0 && yyv4858 == nil { + yyv4858 = []LimitRangeItem{} + yyc4858 = true } } - yyh4803.End() - if yyc4803 { - *v = yyv4803 + yyh4858.End() + if yyc4858 { + *v = yyv4858 } } @@ -61602,10 +62255,10 @@ func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4807 := range v { + for _, yyv4862 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4808 := &yyv4807 - yy4808.CodecEncodeSelf(e) + yy4863 := &yyv4862 + yy4863.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61615,83 +62268,83 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4809 := *v - yyh4809, yyl4809 := z.DecSliceHelperStart() - var yyc4809 bool - if yyl4809 == 0 { - if yyv4809 == nil { - yyv4809 = []LimitRange{} - yyc4809 = true - } else if len(yyv4809) != 0 { - yyv4809 = yyv4809[:0] - yyc4809 = true + yyv4864 := *v + yyh4864, yyl4864 := z.DecSliceHelperStart() + var yyc4864 bool + if yyl4864 == 0 { + if yyv4864 == nil { + yyv4864 = []LimitRange{} + yyc4864 = true + } else if len(yyv4864) != 0 { + yyv4864 = yyv4864[:0] + yyc4864 = true } - } else if yyl4809 > 0 { - var yyrr4809, yyrl4809 int - var yyrt4809 bool - if yyl4809 > cap(yyv4809) { + } else if yyl4864 > 0 { + var yyrr4864, yyrl4864 int + var yyrt4864 bool + if yyl4864 > cap(yyv4864) { - yyrg4809 := len(yyv4809) > 0 - yyv24809 := yyv4809 - yyrl4809, yyrt4809 = z.DecInferLen(yyl4809, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4809 { - if yyrl4809 <= cap(yyv4809) { - yyv4809 = yyv4809[:yyrl4809] + yyrg4864 := len(yyv4864) > 0 + yyv24864 := yyv4864 + yyrl4864, yyrt4864 = z.DecInferLen(yyl4864, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4864 { + if yyrl4864 <= cap(yyv4864) { + yyv4864 = yyv4864[:yyrl4864] } else { - yyv4809 = make([]LimitRange, yyrl4809) + yyv4864 = make([]LimitRange, yyrl4864) } } else { - yyv4809 = make([]LimitRange, yyrl4809) + yyv4864 = make([]LimitRange, yyrl4864) } - yyc4809 = true - yyrr4809 = len(yyv4809) - if yyrg4809 { - copy(yyv4809, yyv24809) + yyc4864 = true + yyrr4864 = len(yyv4864) + if yyrg4864 { + copy(yyv4864, yyv24864) } - } else if yyl4809 != len(yyv4809) { - yyv4809 = yyv4809[:yyl4809] - yyc4809 = true + } else if yyl4864 != len(yyv4864) { + yyv4864 = yyv4864[:yyl4864] + yyc4864 = true } - yyj4809 := 0 - for ; yyj4809 < yyrr4809; yyj4809++ { - yyh4809.ElemContainerState(yyj4809) + yyj4864 := 0 + for ; yyj4864 < yyrr4864; yyj4864++ { + yyh4864.ElemContainerState(yyj4864) if r.TryDecodeAsNil() { - yyv4809[yyj4809] = LimitRange{} + yyv4864[yyj4864] = LimitRange{} } else { - yyv4810 := &yyv4809[yyj4809] - yyv4810.CodecDecodeSelf(d) + yyv4865 := &yyv4864[yyj4864] + yyv4865.CodecDecodeSelf(d) } } - if yyrt4809 { - for ; yyj4809 < yyl4809; yyj4809++ { - yyv4809 = append(yyv4809, LimitRange{}) - yyh4809.ElemContainerState(yyj4809) + if yyrt4864 { + for ; yyj4864 < yyl4864; yyj4864++ { + yyv4864 = append(yyv4864, LimitRange{}) + yyh4864.ElemContainerState(yyj4864) if r.TryDecodeAsNil() { - yyv4809[yyj4809] = LimitRange{} + yyv4864[yyj4864] = LimitRange{} } else { - yyv4811 := &yyv4809[yyj4809] - yyv4811.CodecDecodeSelf(d) + yyv4866 := &yyv4864[yyj4864] + yyv4866.CodecDecodeSelf(d) } } } } else { - yyj4809 := 0 - for ; !r.CheckBreak(); yyj4809++ { + yyj4864 := 0 + for ; !r.CheckBreak(); yyj4864++ { - if yyj4809 >= len(yyv4809) { - yyv4809 = append(yyv4809, LimitRange{}) // var yyz4809 LimitRange - yyc4809 = true + if yyj4864 >= len(yyv4864) { + yyv4864 = append(yyv4864, LimitRange{}) // var yyz4864 LimitRange + yyc4864 = true } - yyh4809.ElemContainerState(yyj4809) - if yyj4809 < len(yyv4809) { + yyh4864.ElemContainerState(yyj4864) + if yyj4864 < len(yyv4864) { if r.TryDecodeAsNil() { - yyv4809[yyj4809] = LimitRange{} + yyv4864[yyj4864] = LimitRange{} } else { - yyv4812 := &yyv4809[yyj4809] - yyv4812.CodecDecodeSelf(d) + yyv4867 := &yyv4864[yyj4864] + yyv4867.CodecDecodeSelf(d) } } else { @@ -61699,17 +62352,17 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4809 < len(yyv4809) { - yyv4809 = yyv4809[:yyj4809] - yyc4809 = true - } else if yyj4809 == 0 && yyv4809 == nil { - yyv4809 = []LimitRange{} - yyc4809 = true + if yyj4864 < len(yyv4864) { + yyv4864 = yyv4864[:yyj4864] + yyc4864 = true + } else if yyj4864 == 0 && yyv4864 == nil { + yyv4864 = []LimitRange{} + yyc4864 = true } } - yyh4809.End() - if yyc4809 { - *v = yyv4809 + yyh4864.End() + if yyc4864 { + *v = yyv4864 } } @@ -61718,9 +62371,9 @@ func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4813 := range v { + for _, yyv4868 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4813.CodecEncodeSelf(e) + yyv4868.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61730,75 +62383,75 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4814 := *v - yyh4814, yyl4814 := z.DecSliceHelperStart() - var yyc4814 bool - if yyl4814 == 0 { - if yyv4814 == nil { - yyv4814 = []ResourceQuotaScope{} - yyc4814 = true - } else if len(yyv4814) != 0 { - yyv4814 = yyv4814[:0] - yyc4814 = true + yyv4869 := *v + yyh4869, yyl4869 := z.DecSliceHelperStart() + var yyc4869 bool + if yyl4869 == 0 { + if yyv4869 == nil { + yyv4869 = []ResourceQuotaScope{} + yyc4869 = true + } else if len(yyv4869) != 0 { + yyv4869 = yyv4869[:0] + yyc4869 = true } - } else if yyl4814 > 0 { - var yyrr4814, yyrl4814 int - var yyrt4814 bool - if yyl4814 > cap(yyv4814) { + } else if yyl4869 > 0 { + var yyrr4869, yyrl4869 int + var yyrt4869 bool + if yyl4869 > cap(yyv4869) { - yyrl4814, yyrt4814 = z.DecInferLen(yyl4814, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4814 { - if yyrl4814 <= cap(yyv4814) { - yyv4814 = yyv4814[:yyrl4814] + yyrl4869, yyrt4869 = z.DecInferLen(yyl4869, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4869 { + if yyrl4869 <= cap(yyv4869) { + yyv4869 = yyv4869[:yyrl4869] } else { - yyv4814 = make([]ResourceQuotaScope, yyrl4814) + yyv4869 = make([]ResourceQuotaScope, yyrl4869) } } else { - yyv4814 = make([]ResourceQuotaScope, yyrl4814) + yyv4869 = make([]ResourceQuotaScope, yyrl4869) } - yyc4814 = true - yyrr4814 = len(yyv4814) - } else if yyl4814 != len(yyv4814) { - yyv4814 = yyv4814[:yyl4814] - yyc4814 = true + yyc4869 = true + yyrr4869 = len(yyv4869) + } else if yyl4869 != len(yyv4869) { + yyv4869 = yyv4869[:yyl4869] + yyc4869 = true } - yyj4814 := 0 - for ; yyj4814 < yyrr4814; yyj4814++ { - yyh4814.ElemContainerState(yyj4814) + yyj4869 := 0 + for ; yyj4869 < yyrr4869; yyj4869++ { + yyh4869.ElemContainerState(yyj4869) if r.TryDecodeAsNil() { - yyv4814[yyj4814] = "" + yyv4869[yyj4869] = "" } else { - yyv4814[yyj4814] = ResourceQuotaScope(r.DecodeString()) + yyv4869[yyj4869] = ResourceQuotaScope(r.DecodeString()) } } - if yyrt4814 { - for ; yyj4814 < yyl4814; yyj4814++ { - yyv4814 = append(yyv4814, "") - yyh4814.ElemContainerState(yyj4814) + if yyrt4869 { + for ; yyj4869 < yyl4869; yyj4869++ { + yyv4869 = append(yyv4869, "") + yyh4869.ElemContainerState(yyj4869) if r.TryDecodeAsNil() { - yyv4814[yyj4814] = "" + yyv4869[yyj4869] = "" } else { - yyv4814[yyj4814] = ResourceQuotaScope(r.DecodeString()) + yyv4869[yyj4869] = ResourceQuotaScope(r.DecodeString()) } } } } else { - yyj4814 := 0 - for ; !r.CheckBreak(); yyj4814++ { + yyj4869 := 0 + for ; !r.CheckBreak(); yyj4869++ { - if yyj4814 >= len(yyv4814) { - yyv4814 = append(yyv4814, "") // var yyz4814 ResourceQuotaScope - yyc4814 = true + if yyj4869 >= len(yyv4869) { + yyv4869 = append(yyv4869, "") // var yyz4869 ResourceQuotaScope + yyc4869 = true } - yyh4814.ElemContainerState(yyj4814) - if yyj4814 < len(yyv4814) { + yyh4869.ElemContainerState(yyj4869) + if yyj4869 < len(yyv4869) { if r.TryDecodeAsNil() { - yyv4814[yyj4814] = "" + yyv4869[yyj4869] = "" } else { - yyv4814[yyj4814] = ResourceQuotaScope(r.DecodeString()) + yyv4869[yyj4869] = ResourceQuotaScope(r.DecodeString()) } } else { @@ -61806,17 +62459,17 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * } } - if yyj4814 < len(yyv4814) { - yyv4814 = yyv4814[:yyj4814] - yyc4814 = true - } else if yyj4814 == 0 && yyv4814 == nil { - yyv4814 = []ResourceQuotaScope{} - yyc4814 = true + if yyj4869 < len(yyv4869) { + yyv4869 = yyv4869[:yyj4869] + yyc4869 = true + } else if yyj4869 == 0 && yyv4869 == nil { + yyv4869 = []ResourceQuotaScope{} + yyc4869 = true } } - yyh4814.End() - if yyc4814 { - *v = yyv4814 + yyh4869.End() + if yyc4869 { + *v = yyv4869 } } @@ -61825,10 +62478,10 @@ func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4818 := range v { + for _, yyv4873 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4819 := &yyv4818 - yy4819.CodecEncodeSelf(e) + yy4874 := &yyv4873 + yy4874.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61838,83 +62491,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4820 := *v - yyh4820, yyl4820 := z.DecSliceHelperStart() - var yyc4820 bool - if yyl4820 == 0 { - if yyv4820 == nil { - yyv4820 = []ResourceQuota{} - yyc4820 = true - } else if len(yyv4820) != 0 { - yyv4820 = yyv4820[:0] - yyc4820 = true + yyv4875 := *v + yyh4875, yyl4875 := z.DecSliceHelperStart() + var yyc4875 bool + if yyl4875 == 0 { + if yyv4875 == nil { + yyv4875 = []ResourceQuota{} + yyc4875 = true + } else if len(yyv4875) != 0 { + yyv4875 = yyv4875[:0] + yyc4875 = true } - } else if yyl4820 > 0 { - var yyrr4820, yyrl4820 int - var yyrt4820 bool - if yyl4820 > cap(yyv4820) { + } else if yyl4875 > 0 { + var yyrr4875, yyrl4875 int + var yyrt4875 bool + if yyl4875 > cap(yyv4875) { - yyrg4820 := len(yyv4820) > 0 - yyv24820 := yyv4820 - yyrl4820, yyrt4820 = z.DecInferLen(yyl4820, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4820 { - if yyrl4820 <= cap(yyv4820) { - yyv4820 = yyv4820[:yyrl4820] + yyrg4875 := len(yyv4875) > 0 + yyv24875 := yyv4875 + yyrl4875, yyrt4875 = z.DecInferLen(yyl4875, z.DecBasicHandle().MaxInitLen, 304) + if yyrt4875 { + if yyrl4875 <= cap(yyv4875) { + yyv4875 = yyv4875[:yyrl4875] } else { - yyv4820 = make([]ResourceQuota, yyrl4820) + yyv4875 = make([]ResourceQuota, yyrl4875) } } else { - yyv4820 = make([]ResourceQuota, yyrl4820) + yyv4875 = make([]ResourceQuota, yyrl4875) } - yyc4820 = true - yyrr4820 = len(yyv4820) - if yyrg4820 { - copy(yyv4820, yyv24820) + yyc4875 = true + yyrr4875 = len(yyv4875) + if yyrg4875 { + copy(yyv4875, yyv24875) } - } else if yyl4820 != len(yyv4820) { - yyv4820 = yyv4820[:yyl4820] - yyc4820 = true + } else if yyl4875 != len(yyv4875) { + yyv4875 = yyv4875[:yyl4875] + yyc4875 = true } - yyj4820 := 0 - for ; yyj4820 < yyrr4820; yyj4820++ { - yyh4820.ElemContainerState(yyj4820) + yyj4875 := 0 + for ; yyj4875 < yyrr4875; yyj4875++ { + yyh4875.ElemContainerState(yyj4875) if r.TryDecodeAsNil() { - yyv4820[yyj4820] = ResourceQuota{} + yyv4875[yyj4875] = ResourceQuota{} } else { - yyv4821 := &yyv4820[yyj4820] - yyv4821.CodecDecodeSelf(d) + yyv4876 := &yyv4875[yyj4875] + yyv4876.CodecDecodeSelf(d) } } - if yyrt4820 { - for ; yyj4820 < yyl4820; yyj4820++ { - yyv4820 = append(yyv4820, ResourceQuota{}) - yyh4820.ElemContainerState(yyj4820) + if yyrt4875 { + for ; yyj4875 < yyl4875; yyj4875++ { + yyv4875 = append(yyv4875, ResourceQuota{}) + yyh4875.ElemContainerState(yyj4875) if r.TryDecodeAsNil() { - yyv4820[yyj4820] = ResourceQuota{} + yyv4875[yyj4875] = ResourceQuota{} } else { - yyv4822 := &yyv4820[yyj4820] - yyv4822.CodecDecodeSelf(d) + yyv4877 := &yyv4875[yyj4875] + yyv4877.CodecDecodeSelf(d) } } } } else { - yyj4820 := 0 - for ; !r.CheckBreak(); yyj4820++ { + yyj4875 := 0 + for ; !r.CheckBreak(); yyj4875++ { - if yyj4820 >= len(yyv4820) { - yyv4820 = append(yyv4820, ResourceQuota{}) // var yyz4820 ResourceQuota - yyc4820 = true + if yyj4875 >= len(yyv4875) { + yyv4875 = append(yyv4875, ResourceQuota{}) // var yyz4875 ResourceQuota + yyc4875 = true } - yyh4820.ElemContainerState(yyj4820) - if yyj4820 < len(yyv4820) { + yyh4875.ElemContainerState(yyj4875) + if yyj4875 < len(yyv4875) { if r.TryDecodeAsNil() { - yyv4820[yyj4820] = ResourceQuota{} + yyv4875[yyj4875] = ResourceQuota{} } else { - yyv4823 := &yyv4820[yyj4820] - yyv4823.CodecDecodeSelf(d) + yyv4878 := &yyv4875[yyj4875] + yyv4878.CodecDecodeSelf(d) } } else { @@ -61922,17 +62575,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4820 < len(yyv4820) { - yyv4820 = yyv4820[:yyj4820] - yyc4820 = true - } else if yyj4820 == 0 && yyv4820 == nil { - yyv4820 = []ResourceQuota{} - yyc4820 = true + if yyj4875 < len(yyv4875) { + yyv4875 = yyv4875[:yyj4875] + yyc4875 = true + } else if yyj4875 == 0 && yyv4875 == nil { + yyv4875 = []ResourceQuota{} + yyc4875 = true } } - yyh4820.End() - if yyc4820 { - *v = yyv4820 + yyh4875.End() + if yyc4875 { + *v = yyv4875 } } @@ -61941,23 +62594,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4824, yyv4824 := range v { + for yyk4879, yyv4879 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4825 := z.EncBinary() - _ = yym4825 + yym4880 := z.EncBinary() + _ = yym4880 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4824)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4879)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4824 == nil { + if yyv4879 == nil { r.EncodeNil() } else { - yym4826 := z.EncBinary() - _ = yym4826 + yym4881 := z.EncBinary() + _ = yym4881 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4824)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4879)) } } } @@ -61969,80 +62622,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4827 := *v - yyl4827 := r.ReadMapStart() - yybh4827 := z.DecBasicHandle() - if yyv4827 == nil { - yyrl4827, _ := z.DecInferLen(yyl4827, yybh4827.MaxInitLen, 40) - yyv4827 = make(map[string][]uint8, yyrl4827) - *v = yyv4827 + yyv4882 := *v + yyl4882 := r.ReadMapStart() + yybh4882 := z.DecBasicHandle() + if yyv4882 == nil { + yyrl4882, _ := z.DecInferLen(yyl4882, yybh4882.MaxInitLen, 40) + yyv4882 = make(map[string][]uint8, yyrl4882) + *v = yyv4882 } - var yymk4827 string - var yymv4827 []uint8 - var yymg4827 bool - if yybh4827.MapValueReset { - yymg4827 = true + var yymk4882 string + var yymv4882 []uint8 + var yymg4882 bool + if yybh4882.MapValueReset { + yymg4882 = true } - if yyl4827 > 0 { - for yyj4827 := 0; yyj4827 < yyl4827; yyj4827++ { + if yyl4882 > 0 { + for yyj4882 := 0; yyj4882 < yyl4882; yyj4882++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4827 = "" + yymk4882 = "" } else { - yymk4827 = string(r.DecodeString()) + yymk4882 = string(r.DecodeString()) } - if yymg4827 { - yymv4827 = yyv4827[yymk4827] + if yymg4882 { + yymv4882 = yyv4882[yymk4882] } else { - yymv4827 = nil + yymv4882 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4827 = nil + yymv4882 = nil } else { - yyv4829 := &yymv4827 - yym4830 := z.DecBinary() - _ = yym4830 + yyv4884 := &yymv4882 + yym4885 := z.DecBinary() + _ = yym4885 if false { } else { - *yyv4829 = r.DecodeBytes(*(*[]byte)(yyv4829), false, false) + *yyv4884 = r.DecodeBytes(*(*[]byte)(yyv4884), false, false) } } - if yyv4827 != nil { - yyv4827[yymk4827] = yymv4827 + if yyv4882 != nil { + yyv4882[yymk4882] = yymv4882 } } - } else if yyl4827 < 0 { - for yyj4827 := 0; !r.CheckBreak(); yyj4827++ { + } else if yyl4882 < 0 { + for yyj4882 := 0; !r.CheckBreak(); yyj4882++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4827 = "" + yymk4882 = "" } else { - yymk4827 = string(r.DecodeString()) + yymk4882 = string(r.DecodeString()) } - if yymg4827 { - yymv4827 = yyv4827[yymk4827] + if yymg4882 { + yymv4882 = yyv4882[yymk4882] } else { - yymv4827 = nil + yymv4882 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4827 = nil + yymv4882 = nil } else { - yyv4832 := &yymv4827 - yym4833 := z.DecBinary() - _ = yym4833 + yyv4887 := &yymv4882 + yym4888 := z.DecBinary() + _ = yym4888 if false { } else { - *yyv4832 = r.DecodeBytes(*(*[]byte)(yyv4832), false, false) + *yyv4887 = r.DecodeBytes(*(*[]byte)(yyv4887), false, false) } } - if yyv4827 != nil { - yyv4827[yymk4827] = yymv4827 + if yyv4882 != nil { + yyv4882[yymk4882] = yymv4882 } } } // else len==0: TODO: Should we clear map entries? @@ -62054,10 +62707,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4834 := range v { + for _, yyv4889 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4835 := &yyv4834 - yy4835.CodecEncodeSelf(e) + yy4890 := &yyv4889 + yy4890.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62067,83 +62720,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4836 := *v - yyh4836, yyl4836 := z.DecSliceHelperStart() - var yyc4836 bool - if yyl4836 == 0 { - if yyv4836 == nil { - yyv4836 = []Secret{} - yyc4836 = true - } else if len(yyv4836) != 0 { - yyv4836 = yyv4836[:0] - yyc4836 = true + yyv4891 := *v + yyh4891, yyl4891 := z.DecSliceHelperStart() + var yyc4891 bool + if yyl4891 == 0 { + if yyv4891 == nil { + yyv4891 = []Secret{} + yyc4891 = true + } else if len(yyv4891) != 0 { + yyv4891 = yyv4891[:0] + yyc4891 = true } - } else if yyl4836 > 0 { - var yyrr4836, yyrl4836 int - var yyrt4836 bool - if yyl4836 > cap(yyv4836) { + } else if yyl4891 > 0 { + var yyrr4891, yyrl4891 int + var yyrt4891 bool + if yyl4891 > cap(yyv4891) { - yyrg4836 := len(yyv4836) > 0 - yyv24836 := yyv4836 - yyrl4836, yyrt4836 = z.DecInferLen(yyl4836, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4836 { - if yyrl4836 <= cap(yyv4836) { - yyv4836 = yyv4836[:yyrl4836] + yyrg4891 := len(yyv4891) > 0 + yyv24891 := yyv4891 + yyrl4891, yyrt4891 = z.DecInferLen(yyl4891, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4891 { + if yyrl4891 <= cap(yyv4891) { + yyv4891 = yyv4891[:yyrl4891] } else { - yyv4836 = make([]Secret, yyrl4836) + yyv4891 = make([]Secret, yyrl4891) } } else { - yyv4836 = make([]Secret, yyrl4836) + yyv4891 = make([]Secret, yyrl4891) } - yyc4836 = true - yyrr4836 = len(yyv4836) - if yyrg4836 { - copy(yyv4836, yyv24836) + yyc4891 = true + yyrr4891 = len(yyv4891) + if yyrg4891 { + copy(yyv4891, yyv24891) } - } else if yyl4836 != len(yyv4836) { - yyv4836 = yyv4836[:yyl4836] - yyc4836 = true + } else if yyl4891 != len(yyv4891) { + yyv4891 = yyv4891[:yyl4891] + yyc4891 = true } - yyj4836 := 0 - for ; yyj4836 < yyrr4836; yyj4836++ { - yyh4836.ElemContainerState(yyj4836) + yyj4891 := 0 + for ; yyj4891 < yyrr4891; yyj4891++ { + yyh4891.ElemContainerState(yyj4891) if r.TryDecodeAsNil() { - yyv4836[yyj4836] = Secret{} + yyv4891[yyj4891] = Secret{} } else { - yyv4837 := &yyv4836[yyj4836] - yyv4837.CodecDecodeSelf(d) + yyv4892 := &yyv4891[yyj4891] + yyv4892.CodecDecodeSelf(d) } } - if yyrt4836 { - for ; yyj4836 < yyl4836; yyj4836++ { - yyv4836 = append(yyv4836, Secret{}) - yyh4836.ElemContainerState(yyj4836) + if yyrt4891 { + for ; yyj4891 < yyl4891; yyj4891++ { + yyv4891 = append(yyv4891, Secret{}) + yyh4891.ElemContainerState(yyj4891) if r.TryDecodeAsNil() { - yyv4836[yyj4836] = Secret{} + yyv4891[yyj4891] = Secret{} } else { - yyv4838 := &yyv4836[yyj4836] - yyv4838.CodecDecodeSelf(d) + yyv4893 := &yyv4891[yyj4891] + yyv4893.CodecDecodeSelf(d) } } } } else { - yyj4836 := 0 - for ; !r.CheckBreak(); yyj4836++ { + yyj4891 := 0 + for ; !r.CheckBreak(); yyj4891++ { - if yyj4836 >= len(yyv4836) { - yyv4836 = append(yyv4836, Secret{}) // var yyz4836 Secret - yyc4836 = true + if yyj4891 >= len(yyv4891) { + yyv4891 = append(yyv4891, Secret{}) // var yyz4891 Secret + yyc4891 = true } - yyh4836.ElemContainerState(yyj4836) - if yyj4836 < len(yyv4836) { + yyh4891.ElemContainerState(yyj4891) + if yyj4891 < len(yyv4891) { if r.TryDecodeAsNil() { - yyv4836[yyj4836] = Secret{} + yyv4891[yyj4891] = Secret{} } else { - yyv4839 := &yyv4836[yyj4836] - yyv4839.CodecDecodeSelf(d) + yyv4894 := &yyv4891[yyj4891] + yyv4894.CodecDecodeSelf(d) } } else { @@ -62151,17 +62804,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4836 < len(yyv4836) { - yyv4836 = yyv4836[:yyj4836] - yyc4836 = true - } else if yyj4836 == 0 && yyv4836 == nil { - yyv4836 = []Secret{} - yyc4836 = true + if yyj4891 < len(yyv4891) { + yyv4891 = yyv4891[:yyj4891] + yyc4891 = true + } else if yyj4891 == 0 && yyv4891 == nil { + yyv4891 = []Secret{} + yyc4891 = true } } - yyh4836.End() - if yyc4836 { - *v = yyv4836 + yyh4891.End() + if yyc4891 { + *v = yyv4891 } } @@ -62170,10 +62823,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4840 := range v { + for _, yyv4895 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4841 := &yyv4840 - yy4841.CodecEncodeSelf(e) + yy4896 := &yyv4895 + yy4896.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62183,83 +62836,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4842 := *v - yyh4842, yyl4842 := z.DecSliceHelperStart() - var yyc4842 bool - if yyl4842 == 0 { - if yyv4842 == nil { - yyv4842 = []ConfigMap{} - yyc4842 = true - } else if len(yyv4842) != 0 { - yyv4842 = yyv4842[:0] - yyc4842 = true + yyv4897 := *v + yyh4897, yyl4897 := z.DecSliceHelperStart() + var yyc4897 bool + if yyl4897 == 0 { + if yyv4897 == nil { + yyv4897 = []ConfigMap{} + yyc4897 = true + } else if len(yyv4897) != 0 { + yyv4897 = yyv4897[:0] + yyc4897 = true } - } else if yyl4842 > 0 { - var yyrr4842, yyrl4842 int - var yyrt4842 bool - if yyl4842 > cap(yyv4842) { + } else if yyl4897 > 0 { + var yyrr4897, yyrl4897 int + var yyrt4897 bool + if yyl4897 > cap(yyv4897) { - yyrg4842 := len(yyv4842) > 0 - yyv24842 := yyv4842 - yyrl4842, yyrt4842 = z.DecInferLen(yyl4842, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4842 { - if yyrl4842 <= cap(yyv4842) { - yyv4842 = yyv4842[:yyrl4842] + yyrg4897 := len(yyv4897) > 0 + yyv24897 := yyv4897 + yyrl4897, yyrt4897 = z.DecInferLen(yyl4897, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4897 { + if yyrl4897 <= cap(yyv4897) { + yyv4897 = yyv4897[:yyrl4897] } else { - yyv4842 = make([]ConfigMap, yyrl4842) + yyv4897 = make([]ConfigMap, yyrl4897) } } else { - yyv4842 = make([]ConfigMap, yyrl4842) + yyv4897 = make([]ConfigMap, yyrl4897) } - yyc4842 = true - yyrr4842 = len(yyv4842) - if yyrg4842 { - copy(yyv4842, yyv24842) + yyc4897 = true + yyrr4897 = len(yyv4897) + if yyrg4897 { + copy(yyv4897, yyv24897) } - } else if yyl4842 != len(yyv4842) { - yyv4842 = yyv4842[:yyl4842] - yyc4842 = true + } else if yyl4897 != len(yyv4897) { + yyv4897 = yyv4897[:yyl4897] + yyc4897 = true } - yyj4842 := 0 - for ; yyj4842 < yyrr4842; yyj4842++ { - yyh4842.ElemContainerState(yyj4842) + yyj4897 := 0 + for ; yyj4897 < yyrr4897; yyj4897++ { + yyh4897.ElemContainerState(yyj4897) if r.TryDecodeAsNil() { - yyv4842[yyj4842] = ConfigMap{} + yyv4897[yyj4897] = ConfigMap{} } else { - yyv4843 := &yyv4842[yyj4842] - yyv4843.CodecDecodeSelf(d) + yyv4898 := &yyv4897[yyj4897] + yyv4898.CodecDecodeSelf(d) } } - if yyrt4842 { - for ; yyj4842 < yyl4842; yyj4842++ { - yyv4842 = append(yyv4842, ConfigMap{}) - yyh4842.ElemContainerState(yyj4842) + if yyrt4897 { + for ; yyj4897 < yyl4897; yyj4897++ { + yyv4897 = append(yyv4897, ConfigMap{}) + yyh4897.ElemContainerState(yyj4897) if r.TryDecodeAsNil() { - yyv4842[yyj4842] = ConfigMap{} + yyv4897[yyj4897] = ConfigMap{} } else { - yyv4844 := &yyv4842[yyj4842] - yyv4844.CodecDecodeSelf(d) + yyv4899 := &yyv4897[yyj4897] + yyv4899.CodecDecodeSelf(d) } } } } else { - yyj4842 := 0 - for ; !r.CheckBreak(); yyj4842++ { + yyj4897 := 0 + for ; !r.CheckBreak(); yyj4897++ { - if yyj4842 >= len(yyv4842) { - yyv4842 = append(yyv4842, ConfigMap{}) // var yyz4842 ConfigMap - yyc4842 = true + if yyj4897 >= len(yyv4897) { + yyv4897 = append(yyv4897, ConfigMap{}) // var yyz4897 ConfigMap + yyc4897 = true } - yyh4842.ElemContainerState(yyj4842) - if yyj4842 < len(yyv4842) { + yyh4897.ElemContainerState(yyj4897) + if yyj4897 < len(yyv4897) { if r.TryDecodeAsNil() { - yyv4842[yyj4842] = ConfigMap{} + yyv4897[yyj4897] = ConfigMap{} } else { - yyv4845 := &yyv4842[yyj4842] - yyv4845.CodecDecodeSelf(d) + yyv4900 := &yyv4897[yyj4897] + yyv4900.CodecDecodeSelf(d) } } else { @@ -62267,17 +62920,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4842 < len(yyv4842) { - yyv4842 = yyv4842[:yyj4842] - yyc4842 = true - } else if yyj4842 == 0 && yyv4842 == nil { - yyv4842 = []ConfigMap{} - yyc4842 = true + if yyj4897 < len(yyv4897) { + yyv4897 = yyv4897[:yyj4897] + yyc4897 = true + } else if yyj4897 == 0 && yyv4897 == nil { + yyv4897 = []ConfigMap{} + yyc4897 = true } } - yyh4842.End() - if yyc4842 { - *v = yyv4842 + yyh4897.End() + if yyc4897 { + *v = yyv4897 } } @@ -62286,10 +62939,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4846 := range v { + for _, yyv4901 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4847 := &yyv4846 - yy4847.CodecEncodeSelf(e) + yy4902 := &yyv4901 + yy4902.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62299,83 +62952,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4848 := *v - yyh4848, yyl4848 := z.DecSliceHelperStart() - var yyc4848 bool - if yyl4848 == 0 { - if yyv4848 == nil { - yyv4848 = []ComponentCondition{} - yyc4848 = true - } else if len(yyv4848) != 0 { - yyv4848 = yyv4848[:0] - yyc4848 = true + yyv4903 := *v + yyh4903, yyl4903 := z.DecSliceHelperStart() + var yyc4903 bool + if yyl4903 == 0 { + if yyv4903 == nil { + yyv4903 = []ComponentCondition{} + yyc4903 = true + } else if len(yyv4903) != 0 { + yyv4903 = yyv4903[:0] + yyc4903 = true } - } else if yyl4848 > 0 { - var yyrr4848, yyrl4848 int - var yyrt4848 bool - if yyl4848 > cap(yyv4848) { + } else if yyl4903 > 0 { + var yyrr4903, yyrl4903 int + var yyrt4903 bool + if yyl4903 > cap(yyv4903) { - yyrg4848 := len(yyv4848) > 0 - yyv24848 := yyv4848 - yyrl4848, yyrt4848 = z.DecInferLen(yyl4848, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4848 { - if yyrl4848 <= cap(yyv4848) { - yyv4848 = yyv4848[:yyrl4848] + yyrg4903 := len(yyv4903) > 0 + yyv24903 := yyv4903 + yyrl4903, yyrt4903 = z.DecInferLen(yyl4903, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4903 { + if yyrl4903 <= cap(yyv4903) { + yyv4903 = yyv4903[:yyrl4903] } else { - yyv4848 = make([]ComponentCondition, yyrl4848) + yyv4903 = make([]ComponentCondition, yyrl4903) } } else { - yyv4848 = make([]ComponentCondition, yyrl4848) + yyv4903 = make([]ComponentCondition, yyrl4903) } - yyc4848 = true - yyrr4848 = len(yyv4848) - if yyrg4848 { - copy(yyv4848, yyv24848) + yyc4903 = true + yyrr4903 = len(yyv4903) + if yyrg4903 { + copy(yyv4903, yyv24903) } - } else if yyl4848 != len(yyv4848) { - yyv4848 = yyv4848[:yyl4848] - yyc4848 = true + } else if yyl4903 != len(yyv4903) { + yyv4903 = yyv4903[:yyl4903] + yyc4903 = true } - yyj4848 := 0 - for ; yyj4848 < yyrr4848; yyj4848++ { - yyh4848.ElemContainerState(yyj4848) + yyj4903 := 0 + for ; yyj4903 < yyrr4903; yyj4903++ { + yyh4903.ElemContainerState(yyj4903) if r.TryDecodeAsNil() { - yyv4848[yyj4848] = ComponentCondition{} + yyv4903[yyj4903] = ComponentCondition{} } else { - yyv4849 := &yyv4848[yyj4848] - yyv4849.CodecDecodeSelf(d) + yyv4904 := &yyv4903[yyj4903] + yyv4904.CodecDecodeSelf(d) } } - if yyrt4848 { - for ; yyj4848 < yyl4848; yyj4848++ { - yyv4848 = append(yyv4848, ComponentCondition{}) - yyh4848.ElemContainerState(yyj4848) + if yyrt4903 { + for ; yyj4903 < yyl4903; yyj4903++ { + yyv4903 = append(yyv4903, ComponentCondition{}) + yyh4903.ElemContainerState(yyj4903) if r.TryDecodeAsNil() { - yyv4848[yyj4848] = ComponentCondition{} + yyv4903[yyj4903] = ComponentCondition{} } else { - yyv4850 := &yyv4848[yyj4848] - yyv4850.CodecDecodeSelf(d) + yyv4905 := &yyv4903[yyj4903] + yyv4905.CodecDecodeSelf(d) } } } } else { - yyj4848 := 0 - for ; !r.CheckBreak(); yyj4848++ { + yyj4903 := 0 + for ; !r.CheckBreak(); yyj4903++ { - if yyj4848 >= len(yyv4848) { - yyv4848 = append(yyv4848, ComponentCondition{}) // var yyz4848 ComponentCondition - yyc4848 = true + if yyj4903 >= len(yyv4903) { + yyv4903 = append(yyv4903, ComponentCondition{}) // var yyz4903 ComponentCondition + yyc4903 = true } - yyh4848.ElemContainerState(yyj4848) - if yyj4848 < len(yyv4848) { + yyh4903.ElemContainerState(yyj4903) + if yyj4903 < len(yyv4903) { if r.TryDecodeAsNil() { - yyv4848[yyj4848] = ComponentCondition{} + yyv4903[yyj4903] = ComponentCondition{} } else { - yyv4851 := &yyv4848[yyj4848] - yyv4851.CodecDecodeSelf(d) + yyv4906 := &yyv4903[yyj4903] + yyv4906.CodecDecodeSelf(d) } } else { @@ -62383,17 +63036,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4848 < len(yyv4848) { - yyv4848 = yyv4848[:yyj4848] - yyc4848 = true - } else if yyj4848 == 0 && yyv4848 == nil { - yyv4848 = []ComponentCondition{} - yyc4848 = true + if yyj4903 < len(yyv4903) { + yyv4903 = yyv4903[:yyj4903] + yyc4903 = true + } else if yyj4903 == 0 && yyv4903 == nil { + yyv4903 = []ComponentCondition{} + yyc4903 = true } } - yyh4848.End() - if yyc4848 { - *v = yyv4848 + yyh4903.End() + if yyc4903 { + *v = yyv4903 } } @@ -62402,10 +63055,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4852 := range v { + for _, yyv4907 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4853 := &yyv4852 - yy4853.CodecEncodeSelf(e) + yy4908 := &yyv4907 + yy4908.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62415,83 +63068,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4854 := *v - yyh4854, yyl4854 := z.DecSliceHelperStart() - var yyc4854 bool - if yyl4854 == 0 { - if yyv4854 == nil { - yyv4854 = []ComponentStatus{} - yyc4854 = true - } else if len(yyv4854) != 0 { - yyv4854 = yyv4854[:0] - yyc4854 = true + yyv4909 := *v + yyh4909, yyl4909 := z.DecSliceHelperStart() + var yyc4909 bool + if yyl4909 == 0 { + if yyv4909 == nil { + yyv4909 = []ComponentStatus{} + yyc4909 = true + } else if len(yyv4909) != 0 { + yyv4909 = yyv4909[:0] + yyc4909 = true } - } else if yyl4854 > 0 { - var yyrr4854, yyrl4854 int - var yyrt4854 bool - if yyl4854 > cap(yyv4854) { + } else if yyl4909 > 0 { + var yyrr4909, yyrl4909 int + var yyrt4909 bool + if yyl4909 > cap(yyv4909) { - yyrg4854 := len(yyv4854) > 0 - yyv24854 := yyv4854 - yyrl4854, yyrt4854 = z.DecInferLen(yyl4854, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4854 { - if yyrl4854 <= cap(yyv4854) { - yyv4854 = yyv4854[:yyrl4854] + yyrg4909 := len(yyv4909) > 0 + yyv24909 := yyv4909 + yyrl4909, yyrt4909 = z.DecInferLen(yyl4909, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4909 { + if yyrl4909 <= cap(yyv4909) { + yyv4909 = yyv4909[:yyrl4909] } else { - yyv4854 = make([]ComponentStatus, yyrl4854) + yyv4909 = make([]ComponentStatus, yyrl4909) } } else { - yyv4854 = make([]ComponentStatus, yyrl4854) + yyv4909 = make([]ComponentStatus, yyrl4909) } - yyc4854 = true - yyrr4854 = len(yyv4854) - if yyrg4854 { - copy(yyv4854, yyv24854) + yyc4909 = true + yyrr4909 = len(yyv4909) + if yyrg4909 { + copy(yyv4909, yyv24909) } - } else if yyl4854 != len(yyv4854) { - yyv4854 = yyv4854[:yyl4854] - yyc4854 = true + } else if yyl4909 != len(yyv4909) { + yyv4909 = yyv4909[:yyl4909] + yyc4909 = true } - yyj4854 := 0 - for ; yyj4854 < yyrr4854; yyj4854++ { - yyh4854.ElemContainerState(yyj4854) + yyj4909 := 0 + for ; yyj4909 < yyrr4909; yyj4909++ { + yyh4909.ElemContainerState(yyj4909) if r.TryDecodeAsNil() { - yyv4854[yyj4854] = ComponentStatus{} + yyv4909[yyj4909] = ComponentStatus{} } else { - yyv4855 := &yyv4854[yyj4854] - yyv4855.CodecDecodeSelf(d) + yyv4910 := &yyv4909[yyj4909] + yyv4910.CodecDecodeSelf(d) } } - if yyrt4854 { - for ; yyj4854 < yyl4854; yyj4854++ { - yyv4854 = append(yyv4854, ComponentStatus{}) - yyh4854.ElemContainerState(yyj4854) + if yyrt4909 { + for ; yyj4909 < yyl4909; yyj4909++ { + yyv4909 = append(yyv4909, ComponentStatus{}) + yyh4909.ElemContainerState(yyj4909) if r.TryDecodeAsNil() { - yyv4854[yyj4854] = ComponentStatus{} + yyv4909[yyj4909] = ComponentStatus{} } else { - yyv4856 := &yyv4854[yyj4854] - yyv4856.CodecDecodeSelf(d) + yyv4911 := &yyv4909[yyj4909] + yyv4911.CodecDecodeSelf(d) } } } } else { - yyj4854 := 0 - for ; !r.CheckBreak(); yyj4854++ { + yyj4909 := 0 + for ; !r.CheckBreak(); yyj4909++ { - if yyj4854 >= len(yyv4854) { - yyv4854 = append(yyv4854, ComponentStatus{}) // var yyz4854 ComponentStatus - yyc4854 = true + if yyj4909 >= len(yyv4909) { + yyv4909 = append(yyv4909, ComponentStatus{}) // var yyz4909 ComponentStatus + yyc4909 = true } - yyh4854.ElemContainerState(yyj4854) - if yyj4854 < len(yyv4854) { + yyh4909.ElemContainerState(yyj4909) + if yyj4909 < len(yyv4909) { if r.TryDecodeAsNil() { - yyv4854[yyj4854] = ComponentStatus{} + yyv4909[yyj4909] = ComponentStatus{} } else { - yyv4857 := &yyv4854[yyj4854] - yyv4857.CodecDecodeSelf(d) + yyv4912 := &yyv4909[yyj4909] + yyv4912.CodecDecodeSelf(d) } } else { @@ -62499,17 +63152,17 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4854 < len(yyv4854) { - yyv4854 = yyv4854[:yyj4854] - yyc4854 = true - } else if yyj4854 == 0 && yyv4854 == nil { - yyv4854 = []ComponentStatus{} - yyc4854 = true + if yyj4909 < len(yyv4909) { + yyv4909 = yyv4909[:yyj4909] + yyc4909 = true + } else if yyj4909 == 0 && yyv4909 == nil { + yyv4909 = []ComponentStatus{} + yyc4909 = true } } - yyh4854.End() - if yyc4854 { - *v = yyv4854 + yyh4909.End() + if yyc4909 { + *v = yyv4909 } } @@ -62518,10 +63171,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4858 := range v { + for _, yyv4913 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4859 := &yyv4858 - yy4859.CodecEncodeSelf(e) + yy4914 := &yyv4913 + yy4914.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62531,83 +63184,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4860 := *v - yyh4860, yyl4860 := z.DecSliceHelperStart() - var yyc4860 bool - if yyl4860 == 0 { - if yyv4860 == nil { - yyv4860 = []DownwardAPIVolumeFile{} - yyc4860 = true - } else if len(yyv4860) != 0 { - yyv4860 = yyv4860[:0] - yyc4860 = true + yyv4915 := *v + yyh4915, yyl4915 := z.DecSliceHelperStart() + var yyc4915 bool + if yyl4915 == 0 { + if yyv4915 == nil { + yyv4915 = []DownwardAPIVolumeFile{} + yyc4915 = true + } else if len(yyv4915) != 0 { + yyv4915 = yyv4915[:0] + yyc4915 = true } - } else if yyl4860 > 0 { - var yyrr4860, yyrl4860 int - var yyrt4860 bool - if yyl4860 > cap(yyv4860) { + } else if yyl4915 > 0 { + var yyrr4915, yyrl4915 int + var yyrt4915 bool + if yyl4915 > cap(yyv4915) { - yyrg4860 := len(yyv4860) > 0 - yyv24860 := yyv4860 - yyrl4860, yyrt4860 = z.DecInferLen(yyl4860, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4860 { - if yyrl4860 <= cap(yyv4860) { - yyv4860 = yyv4860[:yyrl4860] + yyrg4915 := len(yyv4915) > 0 + yyv24915 := yyv4915 + yyrl4915, yyrt4915 = z.DecInferLen(yyl4915, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4915 { + if yyrl4915 <= cap(yyv4915) { + yyv4915 = yyv4915[:yyrl4915] } else { - yyv4860 = make([]DownwardAPIVolumeFile, yyrl4860) + yyv4915 = make([]DownwardAPIVolumeFile, yyrl4915) } } else { - yyv4860 = make([]DownwardAPIVolumeFile, yyrl4860) + yyv4915 = make([]DownwardAPIVolumeFile, yyrl4915) } - yyc4860 = true - yyrr4860 = len(yyv4860) - if yyrg4860 { - copy(yyv4860, yyv24860) + yyc4915 = true + yyrr4915 = len(yyv4915) + if yyrg4915 { + copy(yyv4915, yyv24915) } - } else if yyl4860 != len(yyv4860) { - yyv4860 = yyv4860[:yyl4860] - yyc4860 = true + } else if yyl4915 != len(yyv4915) { + yyv4915 = yyv4915[:yyl4915] + yyc4915 = true } - yyj4860 := 0 - for ; yyj4860 < yyrr4860; yyj4860++ { - yyh4860.ElemContainerState(yyj4860) + yyj4915 := 0 + for ; yyj4915 < yyrr4915; yyj4915++ { + yyh4915.ElemContainerState(yyj4915) if r.TryDecodeAsNil() { - yyv4860[yyj4860] = DownwardAPIVolumeFile{} + yyv4915[yyj4915] = DownwardAPIVolumeFile{} } else { - yyv4861 := &yyv4860[yyj4860] - yyv4861.CodecDecodeSelf(d) + yyv4916 := &yyv4915[yyj4915] + yyv4916.CodecDecodeSelf(d) } } - if yyrt4860 { - for ; yyj4860 < yyl4860; yyj4860++ { - yyv4860 = append(yyv4860, DownwardAPIVolumeFile{}) - yyh4860.ElemContainerState(yyj4860) + if yyrt4915 { + for ; yyj4915 < yyl4915; yyj4915++ { + yyv4915 = append(yyv4915, DownwardAPIVolumeFile{}) + yyh4915.ElemContainerState(yyj4915) if r.TryDecodeAsNil() { - yyv4860[yyj4860] = DownwardAPIVolumeFile{} + yyv4915[yyj4915] = DownwardAPIVolumeFile{} } else { - yyv4862 := &yyv4860[yyj4860] - yyv4862.CodecDecodeSelf(d) + yyv4917 := &yyv4915[yyj4915] + yyv4917.CodecDecodeSelf(d) } } } } else { - yyj4860 := 0 - for ; !r.CheckBreak(); yyj4860++ { + yyj4915 := 0 + for ; !r.CheckBreak(); yyj4915++ { - if yyj4860 >= len(yyv4860) { - yyv4860 = append(yyv4860, DownwardAPIVolumeFile{}) // var yyz4860 DownwardAPIVolumeFile - yyc4860 = true + if yyj4915 >= len(yyv4915) { + yyv4915 = append(yyv4915, DownwardAPIVolumeFile{}) // var yyz4915 DownwardAPIVolumeFile + yyc4915 = true } - yyh4860.ElemContainerState(yyj4860) - if yyj4860 < len(yyv4860) { + yyh4915.ElemContainerState(yyj4915) + if yyj4915 < len(yyv4915) { if r.TryDecodeAsNil() { - yyv4860[yyj4860] = DownwardAPIVolumeFile{} + yyv4915[yyj4915] = DownwardAPIVolumeFile{} } else { - yyv4863 := &yyv4860[yyj4860] - yyv4863.CodecDecodeSelf(d) + yyv4918 := &yyv4915[yyj4915] + yyv4918.CodecDecodeSelf(d) } } else { @@ -62615,16 +63268,16 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4860 < len(yyv4860) { - yyv4860 = yyv4860[:yyj4860] - yyc4860 = true - } else if yyj4860 == 0 && yyv4860 == nil { - yyv4860 = []DownwardAPIVolumeFile{} - yyc4860 = true + if yyj4915 < len(yyv4915) { + yyv4915 = yyv4915[:yyj4915] + yyc4915 = true + } else if yyj4915 == 0 && yyv4915 == nil { + yyv4915 = []DownwardAPIVolumeFile{} + yyc4915 = true } } - yyh4860.End() - if yyc4860 { - *v = yyv4860 + yyh4915.End() + if yyc4915 { + *v = yyv4915 } } diff --git a/pkg/api/v1/types_swagger_doc_generated.go b/pkg/api/v1/types_swagger_doc_generated.go index 31222110cfcf..234707608460 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -1443,6 +1443,20 @@ func (ReplicationController) SwaggerDoc() map[string]string { return map_ReplicationController } +var map_ReplicationControllerCondition = map[string]string{ + "": "ReplicationControllerCondition describes the state of a replication controller at a certain point.", + "type": "Type of replication controller condition.", + "status": "Status of the condition, one of True, False, Unknown.", + "lastProbeTime": "Last time we probed the condition.", + "lastTransitionTime": "The last time the condition transitioned from one status to another.", + "reason": "The reason for the condition's last transition.", + "message": "A human readable message indicating details about the transition.", +} + +func (ReplicationControllerCondition) SwaggerDoc() map[string]string { + return map_ReplicationControllerCondition +} + var map_ReplicationControllerList = map[string]string{ "": "ReplicationControllerList is a collection of replication controllers.", "metadata": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds", @@ -1472,6 +1486,7 @@ var map_ReplicationControllerStatus = map[string]string{ "readyReplicas": "The number of ready replicas for this replication controller.", "availableReplicas": "The number of available replicas (ready for at least minReadySeconds) for this replication controller.", "observedGeneration": "ObservedGeneration reflects the generation of the most recently observed replication controller.", + "conditions": "Represents the latest available observations of a replication controller's current state.", } func (ReplicationControllerStatus) SwaggerDoc() map[string]string { diff --git a/pkg/api/v1/zz_generated.conversion.go b/pkg/api/v1/zz_generated.conversion.go index a38a6c6041d4..24c5f828195a 100644 --- a/pkg/api/v1/zz_generated.conversion.go +++ b/pkg/api/v1/zz_generated.conversion.go @@ -280,6 +280,8 @@ func RegisterConversions(scheme *runtime.Scheme) error { Convert_api_RangeAllocation_To_v1_RangeAllocation, Convert_v1_ReplicationController_To_api_ReplicationController, Convert_api_ReplicationController_To_v1_ReplicationController, + Convert_v1_ReplicationControllerCondition_To_api_ReplicationControllerCondition, + Convert_api_ReplicationControllerCondition_To_v1_ReplicationControllerCondition, Convert_v1_ReplicationControllerList_To_api_ReplicationControllerList, Convert_api_ReplicationControllerList_To_v1_ReplicationControllerList, Convert_v1_ReplicationControllerSpec_To_api_ReplicationControllerSpec, @@ -5601,6 +5603,42 @@ func Convert_api_ReplicationController_To_v1_ReplicationController(in *api.Repli return autoConvert_api_ReplicationController_To_v1_ReplicationController(in, out, s) } +func autoConvert_v1_ReplicationControllerCondition_To_api_ReplicationControllerCondition(in *ReplicationControllerCondition, out *api.ReplicationControllerCondition, s conversion.Scope) error { + out.Type = api.ReplicationControllerConditionType(in.Type) + out.Status = api.ConditionStatus(in.Status) + if err := api.Convert_unversioned_Time_To_unversioned_Time(&in.LastProbeTime, &out.LastProbeTime, s); err != nil { + return err + } + if err := api.Convert_unversioned_Time_To_unversioned_Time(&in.LastTransitionTime, &out.LastTransitionTime, s); err != nil { + return err + } + out.Reason = in.Reason + out.Message = in.Message + return nil +} + +func Convert_v1_ReplicationControllerCondition_To_api_ReplicationControllerCondition(in *ReplicationControllerCondition, out *api.ReplicationControllerCondition, s conversion.Scope) error { + return autoConvert_v1_ReplicationControllerCondition_To_api_ReplicationControllerCondition(in, out, s) +} + +func autoConvert_api_ReplicationControllerCondition_To_v1_ReplicationControllerCondition(in *api.ReplicationControllerCondition, out *ReplicationControllerCondition, s conversion.Scope) error { + out.Type = ReplicationControllerConditionType(in.Type) + out.Status = ConditionStatus(in.Status) + if err := api.Convert_unversioned_Time_To_unversioned_Time(&in.LastProbeTime, &out.LastProbeTime, s); err != nil { + return err + } + if err := api.Convert_unversioned_Time_To_unversioned_Time(&in.LastTransitionTime, &out.LastTransitionTime, s); err != nil { + return err + } + out.Reason = in.Reason + out.Message = in.Message + return nil +} + +func Convert_api_ReplicationControllerCondition_To_v1_ReplicationControllerCondition(in *api.ReplicationControllerCondition, out *ReplicationControllerCondition, s conversion.Scope) error { + return autoConvert_api_ReplicationControllerCondition_To_v1_ReplicationControllerCondition(in, out, s) +} + func autoConvert_v1_ReplicationControllerList_To_api_ReplicationControllerList(in *ReplicationControllerList, out *api.ReplicationControllerList, s conversion.Scope) error { if err := api.Convert_unversioned_TypeMeta_To_unversioned_TypeMeta(&in.TypeMeta, &out.TypeMeta, s); err != nil { return err @@ -5693,6 +5731,17 @@ func autoConvert_v1_ReplicationControllerStatus_To_api_ReplicationControllerStat out.ReadyReplicas = in.ReadyReplicas out.AvailableReplicas = in.AvailableReplicas out.ObservedGeneration = in.ObservedGeneration + if in.Conditions != nil { + in, out := &in.Conditions, &out.Conditions + *out = make([]api.ReplicationControllerCondition, len(*in)) + for i := range *in { + if err := Convert_v1_ReplicationControllerCondition_To_api_ReplicationControllerCondition(&(*in)[i], &(*out)[i], s); err != nil { + return err + } + } + } else { + out.Conditions = nil + } return nil } @@ -5706,6 +5755,17 @@ func autoConvert_api_ReplicationControllerStatus_To_v1_ReplicationControllerStat out.ReadyReplicas = in.ReadyReplicas out.AvailableReplicas = in.AvailableReplicas out.ObservedGeneration = in.ObservedGeneration + if in.Conditions != nil { + in, out := &in.Conditions, &out.Conditions + *out = make([]ReplicationControllerCondition, len(*in)) + for i := range *in { + if err := Convert_api_ReplicationControllerCondition_To_v1_ReplicationControllerCondition(&(*in)[i], &(*out)[i], s); err != nil { + return err + } + } + } else { + out.Conditions = nil + } return nil } diff --git a/pkg/api/v1/zz_generated.deepcopy.go b/pkg/api/v1/zz_generated.deepcopy.go index 8ba4c86ccf7b..3d9c85a62773 100644 --- a/pkg/api/v1/zz_generated.deepcopy.go +++ b/pkg/api/v1/zz_generated.deepcopy.go @@ -158,6 +158,7 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_RBDVolumeSource, InType: reflect.TypeOf(&RBDVolumeSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_RangeAllocation, InType: reflect.TypeOf(&RangeAllocation{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ReplicationController, InType: reflect.TypeOf(&ReplicationController{})}, + conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ReplicationControllerCondition, InType: reflect.TypeOf(&ReplicationControllerCondition{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ReplicationControllerList, InType: reflect.TypeOf(&ReplicationControllerList{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ReplicationControllerSpec, InType: reflect.TypeOf(&ReplicationControllerSpec{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ReplicationControllerStatus, InType: reflect.TypeOf(&ReplicationControllerStatus{})}, @@ -2905,7 +2906,23 @@ func DeepCopy_v1_ReplicationController(in interface{}, out interface{}, c *conve if err := DeepCopy_v1_ReplicationControllerSpec(&in.Spec, &out.Spec, c); err != nil { return err } + if err := DeepCopy_v1_ReplicationControllerStatus(&in.Status, &out.Status, c); err != nil { + return err + } + return nil + } +} + +func DeepCopy_v1_ReplicationControllerCondition(in interface{}, out interface{}, c *conversion.Cloner) error { + { + in := in.(*ReplicationControllerCondition) + out := out.(*ReplicationControllerCondition) + out.Type = in.Type out.Status = in.Status + out.LastProbeTime = in.LastProbeTime.DeepCopy() + out.LastTransitionTime = in.LastTransitionTime.DeepCopy() + out.Reason = in.Reason + out.Message = in.Message return nil } } @@ -2974,6 +2991,17 @@ func DeepCopy_v1_ReplicationControllerStatus(in interface{}, out interface{}, c out.ReadyReplicas = in.ReadyReplicas out.AvailableReplicas = in.AvailableReplicas out.ObservedGeneration = in.ObservedGeneration + if in.Conditions != nil { + in, out := &in.Conditions, &out.Conditions + *out = make([]ReplicationControllerCondition, len(*in)) + for i := range *in { + if err := DeepCopy_v1_ReplicationControllerCondition(&(*in)[i], &(*out)[i], c); err != nil { + return err + } + } + } else { + out.Conditions = nil + } return nil } } diff --git a/pkg/api/zz_generated.deepcopy.go b/pkg/api/zz_generated.deepcopy.go index a78498cc3317..03a3a9a179dd 100644 --- a/pkg/api/zz_generated.deepcopy.go +++ b/pkg/api/zz_generated.deepcopy.go @@ -162,6 +162,7 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_RBDVolumeSource, InType: reflect.TypeOf(&RBDVolumeSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_RangeAllocation, InType: reflect.TypeOf(&RangeAllocation{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_ReplicationController, InType: reflect.TypeOf(&ReplicationController{})}, + conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_ReplicationControllerCondition, InType: reflect.TypeOf(&ReplicationControllerCondition{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_ReplicationControllerList, InType: reflect.TypeOf(&ReplicationControllerList{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_ReplicationControllerSpec, InType: reflect.TypeOf(&ReplicationControllerSpec{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_ReplicationControllerStatus, InType: reflect.TypeOf(&ReplicationControllerStatus{})}, @@ -2963,7 +2964,23 @@ func DeepCopy_api_ReplicationController(in interface{}, out interface{}, c *conv if err := DeepCopy_api_ReplicationControllerSpec(&in.Spec, &out.Spec, c); err != nil { return err } + if err := DeepCopy_api_ReplicationControllerStatus(&in.Status, &out.Status, c); err != nil { + return err + } + return nil + } +} + +func DeepCopy_api_ReplicationControllerCondition(in interface{}, out interface{}, c *conversion.Cloner) error { + { + in := in.(*ReplicationControllerCondition) + out := out.(*ReplicationControllerCondition) + out.Type = in.Type out.Status = in.Status + out.LastProbeTime = in.LastProbeTime.DeepCopy() + out.LastTransitionTime = in.LastTransitionTime.DeepCopy() + out.Reason = in.Reason + out.Message = in.Message return nil } } @@ -3026,6 +3043,17 @@ func DeepCopy_api_ReplicationControllerStatus(in interface{}, out interface{}, c out.ReadyReplicas = in.ReadyReplicas out.AvailableReplicas = in.AvailableReplicas out.ObservedGeneration = in.ObservedGeneration + if in.Conditions != nil { + in, out := &in.Conditions, &out.Conditions + *out = make([]ReplicationControllerCondition, len(*in)) + for i := range *in { + if err := DeepCopy_api_ReplicationControllerCondition(&(*in)[i], &(*out)[i], c); err != nil { + return err + } + } + } else { + out.Conditions = nil + } return nil } } diff --git a/pkg/apis/extensions/types.generated.go b/pkg/apis/extensions/types.generated.go index 52c7cc30d372..0eea6691030c 100644 --- a/pkg/apis/extensions/types.generated.go +++ b/pkg/apis/extensions/types.generated.go @@ -10708,16 +10708,17 @@ func (x *ReplicaSetStatus) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep886 := !z.EncBinary() yy2arr886 := z.EncBasicHandle().StructToArray - var yyq886 [5]bool + var yyq886 [6]bool _, _, _ = yysep886, yyq886, yy2arr886 const yyr886 bool = false yyq886[1] = x.FullyLabeledReplicas != 0 yyq886[2] = x.ReadyReplicas != 0 yyq886[3] = x.AvailableReplicas != 0 yyq886[4] = x.ObservedGeneration != 0 + yyq886[5] = len(x.Conditions) != 0 var yynn886 int if yyr886 || yy2arr886 { - r.EncodeArrayStart(5) + r.EncodeArrayStart(6) } else { yynn886 = 1 for _, b := range yyq886 { @@ -10847,6 +10848,39 @@ func (x *ReplicaSetStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } + if yyr886 || yy2arr886 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq886[5] { + if x.Conditions == nil { + r.EncodeNil() + } else { + yym903 := z.EncBinary() + _ = yym903 + if false { + } else { + h.encSliceReplicaSetCondition(([]ReplicaSetCondition)(x.Conditions), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq886[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("conditions")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Conditions == nil { + r.EncodeNil() + } else { + yym904 := z.EncBinary() + _ = yym904 + if false { + } else { + h.encSliceReplicaSetCondition(([]ReplicaSetCondition)(x.Conditions), e) + } + } + } + } if yyr886 || yy2arr886 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { @@ -10860,25 +10894,25 @@ func (x *ReplicaSetStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym902 := z.DecBinary() - _ = yym902 + yym905 := z.DecBinary() + _ = yym905 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct903 := r.ContainerType() - if yyct903 == codecSelferValueTypeMap1234 { - yyl903 := r.ReadMapStart() - if yyl903 == 0 { + yyct906 := r.ContainerType() + if yyct906 == codecSelferValueTypeMap1234 { + yyl906 := r.ReadMapStart() + if yyl906 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl903, d) + x.codecDecodeSelfFromMap(yyl906, d) } - } else if yyct903 == codecSelferValueTypeArray1234 { - yyl903 := r.ReadArrayStart() - if yyl903 == 0 { + } else if yyct906 == codecSelferValueTypeArray1234 { + yyl906 := r.ReadArrayStart() + if yyl906 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl903, d) + x.codecDecodeSelfFromArray(yyl906, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10890,12 +10924,12 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys904Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys904Slc - var yyhl904 bool = l >= 0 - for yyj904 := 0; ; yyj904++ { - if yyhl904 { - if yyj904 >= l { + var yys907Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys907Slc + var yyhl907 bool = l >= 0 + for yyj907 := 0; ; yyj907++ { + if yyhl907 { + if yyj907 >= l { break } } else { @@ -10904,10 +10938,10 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys904Slc = r.DecodeBytes(yys904Slc, true, true) - yys904 := string(yys904Slc) + yys907Slc = r.DecodeBytes(yys907Slc, true, true) + yys907 := string(yys907Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys904 { + switch yys907 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -10938,10 +10972,22 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } else { x.ObservedGeneration = int64(r.DecodeInt(64)) } + case "conditions": + if r.TryDecodeAsNil() { + x.Conditions = nil + } else { + yyv913 := &x.Conditions + yym914 := z.DecBinary() + _ = yym914 + if false { + } else { + h.decSliceReplicaSetCondition((*[]ReplicaSetCondition)(yyv913), d) + } + } default: - z.DecStructFieldNotFound(-1, yys904) - } // end switch yys904 - } // end for yyj904 + z.DecStructFieldNotFound(-1, yys907) + } // end switch yys907 + } // end for yyj907 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10949,16 +10995,16 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj910 int - var yyb910 bool - var yyhl910 bool = l >= 0 - yyj910++ - if yyhl910 { - yyb910 = yyj910 > l + var yyj915 int + var yyb915 bool + var yyhl915 bool = l >= 0 + yyj915++ + if yyhl915 { + yyb915 = yyj915 > l } else { - yyb910 = r.CheckBreak() + yyb915 = r.CheckBreak() } - if yyb910 { + if yyb915 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10968,13 +11014,13 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Replicas = int32(r.DecodeInt(32)) } - yyj910++ - if yyhl910 { - yyb910 = yyj910 > l + yyj915++ + if yyhl915 { + yyb915 = yyj915 > l } else { - yyb910 = r.CheckBreak() + yyb915 = r.CheckBreak() } - if yyb910 { + if yyb915 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10984,13 +11030,13 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.FullyLabeledReplicas = int32(r.DecodeInt(32)) } - yyj910++ - if yyhl910 { - yyb910 = yyj910 > l + yyj915++ + if yyhl915 { + yyb915 = yyj915 > l } else { - yyb910 = r.CheckBreak() + yyb915 = r.CheckBreak() } - if yyb910 { + if yyb915 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11000,13 +11046,13 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ReadyReplicas = int32(r.DecodeInt(32)) } - yyj910++ - if yyhl910 { - yyb910 = yyj910 > l + yyj915++ + if yyhl915 { + yyb915 = yyj915 > l } else { - yyb910 = r.CheckBreak() + yyb915 = r.CheckBreak() } - if yyb910 { + if yyb915 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11016,13 +11062,13 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.AvailableReplicas = int32(r.DecodeInt(32)) } - yyj910++ - if yyhl910 { - yyb910 = yyj910 > l + yyj915++ + if yyhl915 { + yyb915 = yyj915 > l } else { - yyb910 = r.CheckBreak() + yyb915 = r.CheckBreak() } - if yyb910 { + if yyb915 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11032,18 +11078,521 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ObservedGeneration = int64(r.DecodeInt(64)) } + yyj915++ + if yyhl915 { + yyb915 = yyj915 > l + } else { + yyb915 = r.CheckBreak() + } + if yyb915 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Conditions = nil + } else { + yyv921 := &x.Conditions + yym922 := z.DecBinary() + _ = yym922 + if false { + } else { + h.decSliceReplicaSetCondition((*[]ReplicaSetCondition)(yyv921), d) + } + } for { - yyj910++ - if yyhl910 { - yyb910 = yyj910 > l + yyj915++ + if yyhl915 { + yyb915 = yyj915 > l } else { - yyb910 = r.CheckBreak() + yyb915 = r.CheckBreak() } - if yyb910 { + if yyb915 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj910-1, "") + z.DecStructFieldNotFound(yyj915-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x ReplicaSetConditionType) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym923 := z.EncBinary() + _ = yym923 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *ReplicaSetConditionType) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym924 := z.DecBinary() + _ = yym924 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *ReplicaSetCondition) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym925 := z.EncBinary() + _ = yym925 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep926 := !z.EncBinary() + yy2arr926 := z.EncBasicHandle().StructToArray + var yyq926 [6]bool + _, _, _ = yysep926, yyq926, yy2arr926 + const yyr926 bool = false + yyq926[2] = true + yyq926[3] = true + yyq926[4] = x.Reason != "" + yyq926[5] = x.Message != "" + var yynn926 int + if yyr926 || yy2arr926 { + r.EncodeArrayStart(6) + } else { + yynn926 = 2 + for _, b := range yyq926 { + if b { + yynn926++ + } + } + r.EncodeMapStart(yynn926) + yynn926 = 0 + } + if yyr926 || yy2arr926 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + x.Type.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("type")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Type.CodecEncodeSelf(e) + } + if yyr926 || yy2arr926 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym929 := z.EncBinary() + _ = yym929 + if false { + } else if z.HasExtensions() && z.EncExt(x.Status) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Status)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym930 := z.EncBinary() + _ = yym930 + if false { + } else if z.HasExtensions() && z.EncExt(x.Status) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Status)) + } + } + if yyr926 || yy2arr926 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq926[2] { + yy932 := &x.LastProbeTime + yym933 := z.EncBinary() + _ = yym933 + if false { + } else if z.HasExtensions() && z.EncExt(yy932) { + } else if yym933 { + z.EncBinaryMarshal(yy932) + } else if !yym933 && z.IsJSONHandle() { + z.EncJSONMarshal(yy932) + } else { + z.EncFallback(yy932) + } + } else { + r.EncodeNil() + } + } else { + if yyq926[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("lastProbeTime")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy934 := &x.LastProbeTime + yym935 := z.EncBinary() + _ = yym935 + if false { + } else if z.HasExtensions() && z.EncExt(yy934) { + } else if yym935 { + z.EncBinaryMarshal(yy934) + } else if !yym935 && z.IsJSONHandle() { + z.EncJSONMarshal(yy934) + } else { + z.EncFallback(yy934) + } + } + } + if yyr926 || yy2arr926 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq926[3] { + yy937 := &x.LastTransitionTime + yym938 := z.EncBinary() + _ = yym938 + if false { + } else if z.HasExtensions() && z.EncExt(yy937) { + } else if yym938 { + z.EncBinaryMarshal(yy937) + } else if !yym938 && z.IsJSONHandle() { + z.EncJSONMarshal(yy937) + } else { + z.EncFallback(yy937) + } + } else { + r.EncodeNil() + } + } else { + if yyq926[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy939 := &x.LastTransitionTime + yym940 := z.EncBinary() + _ = yym940 + if false { + } else if z.HasExtensions() && z.EncExt(yy939) { + } else if yym940 { + z.EncBinaryMarshal(yy939) + } else if !yym940 && z.IsJSONHandle() { + z.EncJSONMarshal(yy939) + } else { + z.EncFallback(yy939) + } + } + } + if yyr926 || yy2arr926 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq926[4] { + yym942 := z.EncBinary() + _ = yym942 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq926[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("reason")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym943 := z.EncBinary() + _ = yym943 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } + } + if yyr926 || yy2arr926 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq926[5] { + yym945 := z.EncBinary() + _ = yym945 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq926[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym946 := z.EncBinary() + _ = yym946 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } + } + if yyr926 || yy2arr926 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ReplicaSetCondition) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym947 := z.DecBinary() + _ = yym947 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct948 := r.ContainerType() + if yyct948 == codecSelferValueTypeMap1234 { + yyl948 := r.ReadMapStart() + if yyl948 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl948, d) + } + } else if yyct948 == codecSelferValueTypeArray1234 { + yyl948 := r.ReadArrayStart() + if yyl948 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl948, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ReplicaSetCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys949Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys949Slc + var yyhl949 bool = l >= 0 + for yyj949 := 0; ; yyj949++ { + if yyhl949 { + if yyj949 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys949Slc = r.DecodeBytes(yys949Slc, true, true) + yys949 := string(yys949Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys949 { + case "type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = ReplicaSetConditionType(r.DecodeString()) + } + case "status": + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = pkg2_api.ConditionStatus(r.DecodeString()) + } + case "lastProbeTime": + if r.TryDecodeAsNil() { + x.LastProbeTime = pkg1_unversioned.Time{} + } else { + yyv952 := &x.LastProbeTime + yym953 := z.DecBinary() + _ = yym953 + if false { + } else if z.HasExtensions() && z.DecExt(yyv952) { + } else if yym953 { + z.DecBinaryUnmarshal(yyv952) + } else if !yym953 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv952) + } else { + z.DecFallback(yyv952, false) + } + } + case "lastTransitionTime": + if r.TryDecodeAsNil() { + x.LastTransitionTime = pkg1_unversioned.Time{} + } else { + yyv954 := &x.LastTransitionTime + yym955 := z.DecBinary() + _ = yym955 + if false { + } else if z.HasExtensions() && z.DecExt(yyv954) { + } else if yym955 { + z.DecBinaryUnmarshal(yyv954) + } else if !yym955 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv954) + } else { + z.DecFallback(yyv954, false) + } + } + case "reason": + if r.TryDecodeAsNil() { + x.Reason = "" + } else { + x.Reason = string(r.DecodeString()) + } + case "message": + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys949) + } // end switch yys949 + } // end for yyj949 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ReplicaSetCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj958 int + var yyb958 bool + var yyhl958 bool = l >= 0 + yyj958++ + if yyhl958 { + yyb958 = yyj958 > l + } else { + yyb958 = r.CheckBreak() + } + if yyb958 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = ReplicaSetConditionType(r.DecodeString()) + } + yyj958++ + if yyhl958 { + yyb958 = yyj958 > l + } else { + yyb958 = r.CheckBreak() + } + if yyb958 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = pkg2_api.ConditionStatus(r.DecodeString()) + } + yyj958++ + if yyhl958 { + yyb958 = yyj958 > l + } else { + yyb958 = r.CheckBreak() + } + if yyb958 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.LastProbeTime = pkg1_unversioned.Time{} + } else { + yyv961 := &x.LastProbeTime + yym962 := z.DecBinary() + _ = yym962 + if false { + } else if z.HasExtensions() && z.DecExt(yyv961) { + } else if yym962 { + z.DecBinaryUnmarshal(yyv961) + } else if !yym962 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv961) + } else { + z.DecFallback(yyv961, false) + } + } + yyj958++ + if yyhl958 { + yyb958 = yyj958 > l + } else { + yyb958 = r.CheckBreak() + } + if yyb958 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.LastTransitionTime = pkg1_unversioned.Time{} + } else { + yyv963 := &x.LastTransitionTime + yym964 := z.DecBinary() + _ = yym964 + if false { + } else if z.HasExtensions() && z.DecExt(yyv963) { + } else if yym964 { + z.DecBinaryUnmarshal(yyv963) + } else if !yym964 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv963) + } else { + z.DecFallback(yyv963, false) + } + } + yyj958++ + if yyhl958 { + yyb958 = yyj958 > l + } else { + yyb958 = r.CheckBreak() + } + if yyb958 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Reason = "" + } else { + x.Reason = string(r.DecodeString()) + } + yyj958++ + if yyhl958 { + yyb958 = yyj958 > l + } else { + yyb958 = r.CheckBreak() + } + if yyb958 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } + for { + yyj958++ + if yyhl958 { + yyb958 = yyj958 > l + } else { + yyb958 = r.CheckBreak() + } + if yyb958 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj958-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11055,38 +11604,38 @@ func (x *PodSecurityPolicy) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym916 := z.EncBinary() - _ = yym916 + yym967 := z.EncBinary() + _ = yym967 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep917 := !z.EncBinary() - yy2arr917 := z.EncBasicHandle().StructToArray - var yyq917 [4]bool - _, _, _ = yysep917, yyq917, yy2arr917 - const yyr917 bool = false - yyq917[0] = x.Kind != "" - yyq917[1] = x.APIVersion != "" - yyq917[2] = true - yyq917[3] = true - var yynn917 int - if yyr917 || yy2arr917 { + yysep968 := !z.EncBinary() + yy2arr968 := z.EncBasicHandle().StructToArray + var yyq968 [4]bool + _, _, _ = yysep968, yyq968, yy2arr968 + const yyr968 bool = false + yyq968[0] = x.Kind != "" + yyq968[1] = x.APIVersion != "" + yyq968[2] = true + yyq968[3] = true + var yynn968 int + if yyr968 || yy2arr968 { r.EncodeArrayStart(4) } else { - yynn917 = 0 - for _, b := range yyq917 { + yynn968 = 0 + for _, b := range yyq968 { if b { - yynn917++ + yynn968++ } } - r.EncodeMapStart(yynn917) - yynn917 = 0 + r.EncodeMapStart(yynn968) + yynn968 = 0 } - if yyr917 || yy2arr917 { + if yyr968 || yy2arr968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq917[0] { - yym919 := z.EncBinary() - _ = yym919 + if yyq968[0] { + yym970 := z.EncBinary() + _ = yym970 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -11095,23 +11644,23 @@ func (x *PodSecurityPolicy) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq917[0] { + if yyq968[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym920 := z.EncBinary() - _ = yym920 + yym971 := z.EncBinary() + _ = yym971 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr917 || yy2arr917 { + if yyr968 || yy2arr968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq917[1] { - yym922 := z.EncBinary() - _ = yym922 + if yyq968[1] { + yym973 := z.EncBinary() + _ = yym973 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -11120,53 +11669,53 @@ func (x *PodSecurityPolicy) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq917[1] { + if yyq968[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym923 := z.EncBinary() - _ = yym923 + yym974 := z.EncBinary() + _ = yym974 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr917 || yy2arr917 { + if yyr968 || yy2arr968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq917[2] { - yy925 := &x.ObjectMeta - yy925.CodecEncodeSelf(e) + if yyq968[2] { + yy976 := &x.ObjectMeta + yy976.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq917[2] { + if yyq968[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy926 := &x.ObjectMeta - yy926.CodecEncodeSelf(e) + yy977 := &x.ObjectMeta + yy977.CodecEncodeSelf(e) } } - if yyr917 || yy2arr917 { + if yyr968 || yy2arr968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq917[3] { - yy928 := &x.Spec - yy928.CodecEncodeSelf(e) + if yyq968[3] { + yy979 := &x.Spec + yy979.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq917[3] { + if yyq968[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy929 := &x.Spec - yy929.CodecEncodeSelf(e) + yy980 := &x.Spec + yy980.CodecEncodeSelf(e) } } - if yyr917 || yy2arr917 { + if yyr968 || yy2arr968 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11179,25 +11728,25 @@ func (x *PodSecurityPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym930 := z.DecBinary() - _ = yym930 + yym981 := z.DecBinary() + _ = yym981 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct931 := r.ContainerType() - if yyct931 == codecSelferValueTypeMap1234 { - yyl931 := r.ReadMapStart() - if yyl931 == 0 { + yyct982 := r.ContainerType() + if yyct982 == codecSelferValueTypeMap1234 { + yyl982 := r.ReadMapStart() + if yyl982 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl931, d) + x.codecDecodeSelfFromMap(yyl982, d) } - } else if yyct931 == codecSelferValueTypeArray1234 { - yyl931 := r.ReadArrayStart() - if yyl931 == 0 { + } else if yyct982 == codecSelferValueTypeArray1234 { + yyl982 := r.ReadArrayStart() + if yyl982 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl931, d) + x.codecDecodeSelfFromArray(yyl982, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11209,12 +11758,12 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys932Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys932Slc - var yyhl932 bool = l >= 0 - for yyj932 := 0; ; yyj932++ { - if yyhl932 { - if yyj932 >= l { + var yys983Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys983Slc + var yyhl983 bool = l >= 0 + for yyj983 := 0; ; yyj983++ { + if yyhl983 { + if yyj983 >= l { break } } else { @@ -11223,10 +11772,10 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys932Slc = r.DecodeBytes(yys932Slc, true, true) - yys932 := string(yys932Slc) + yys983Slc = r.DecodeBytes(yys983Slc, true, true) + yys983 := string(yys983Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys932 { + switch yys983 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -11243,20 +11792,20 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = pkg2_api.ObjectMeta{} } else { - yyv935 := &x.ObjectMeta - yyv935.CodecDecodeSelf(d) + yyv986 := &x.ObjectMeta + yyv986.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSecurityPolicySpec{} } else { - yyv936 := &x.Spec - yyv936.CodecDecodeSelf(d) + yyv987 := &x.Spec + yyv987.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys932) - } // end switch yys932 - } // end for yyj932 + z.DecStructFieldNotFound(-1, yys983) + } // end switch yys983 + } // end for yyj983 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11264,16 +11813,16 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj937 int - var yyb937 bool - var yyhl937 bool = l >= 0 - yyj937++ - if yyhl937 { - yyb937 = yyj937 > l + var yyj988 int + var yyb988 bool + var yyhl988 bool = l >= 0 + yyj988++ + if yyhl988 { + yyb988 = yyj988 > l } else { - yyb937 = r.CheckBreak() + yyb988 = r.CheckBreak() } - if yyb937 { + if yyb988 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11283,13 +11832,13 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj937++ - if yyhl937 { - yyb937 = yyj937 > l + yyj988++ + if yyhl988 { + yyb988 = yyj988 > l } else { - yyb937 = r.CheckBreak() + yyb988 = r.CheckBreak() } - if yyb937 { + if yyb988 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11299,13 +11848,13 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj937++ - if yyhl937 { - yyb937 = yyj937 > l + yyj988++ + if yyhl988 { + yyb988 = yyj988 > l } else { - yyb937 = r.CheckBreak() + yyb988 = r.CheckBreak() } - if yyb937 { + if yyb988 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11313,16 +11862,16 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ObjectMeta = pkg2_api.ObjectMeta{} } else { - yyv940 := &x.ObjectMeta - yyv940.CodecDecodeSelf(d) + yyv991 := &x.ObjectMeta + yyv991.CodecDecodeSelf(d) } - yyj937++ - if yyhl937 { - yyb937 = yyj937 > l + yyj988++ + if yyhl988 { + yyb988 = yyj988 > l } else { - yyb937 = r.CheckBreak() + yyb988 = r.CheckBreak() } - if yyb937 { + if yyb988 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11330,21 +11879,21 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Spec = PodSecurityPolicySpec{} } else { - yyv941 := &x.Spec - yyv941.CodecDecodeSelf(d) + yyv992 := &x.Spec + yyv992.CodecDecodeSelf(d) } for { - yyj937++ - if yyhl937 { - yyb937 = yyj937 > l + yyj988++ + if yyhl988 { + yyb988 = yyj988 > l } else { - yyb937 = r.CheckBreak() + yyb988 = r.CheckBreak() } - if yyb937 { + if yyb988 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj937-1, "") + z.DecStructFieldNotFound(yyj988-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11356,44 +11905,44 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym942 := z.EncBinary() - _ = yym942 + yym993 := z.EncBinary() + _ = yym993 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep943 := !z.EncBinary() - yy2arr943 := z.EncBasicHandle().StructToArray - var yyq943 [14]bool - _, _, _ = yysep943, yyq943, yy2arr943 - const yyr943 bool = false - yyq943[0] = x.Privileged != false - yyq943[1] = len(x.DefaultAddCapabilities) != 0 - yyq943[2] = len(x.RequiredDropCapabilities) != 0 - yyq943[3] = len(x.AllowedCapabilities) != 0 - yyq943[4] = len(x.Volumes) != 0 - yyq943[5] = x.HostNetwork != false - yyq943[6] = len(x.HostPorts) != 0 - yyq943[7] = x.HostPID != false - yyq943[8] = x.HostIPC != false - yyq943[13] = x.ReadOnlyRootFilesystem != false - var yynn943 int - if yyr943 || yy2arr943 { + yysep994 := !z.EncBinary() + yy2arr994 := z.EncBasicHandle().StructToArray + var yyq994 [14]bool + _, _, _ = yysep994, yyq994, yy2arr994 + const yyr994 bool = false + yyq994[0] = x.Privileged != false + yyq994[1] = len(x.DefaultAddCapabilities) != 0 + yyq994[2] = len(x.RequiredDropCapabilities) != 0 + yyq994[3] = len(x.AllowedCapabilities) != 0 + yyq994[4] = len(x.Volumes) != 0 + yyq994[5] = x.HostNetwork != false + yyq994[6] = len(x.HostPorts) != 0 + yyq994[7] = x.HostPID != false + yyq994[8] = x.HostIPC != false + yyq994[13] = x.ReadOnlyRootFilesystem != false + var yynn994 int + if yyr994 || yy2arr994 { r.EncodeArrayStart(14) } else { - yynn943 = 4 - for _, b := range yyq943 { + yynn994 = 4 + for _, b := range yyq994 { if b { - yynn943++ + yynn994++ } } - r.EncodeMapStart(yynn943) - yynn943 = 0 + r.EncodeMapStart(yynn994) + yynn994 = 0 } - if yyr943 || yy2arr943 { + if yyr994 || yy2arr994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq943[0] { - yym945 := z.EncBinary() - _ = yym945 + if yyq994[0] { + yym996 := z.EncBinary() + _ = yym996 if false { } else { r.EncodeBool(bool(x.Privileged)) @@ -11402,26 +11951,26 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq943[0] { + if yyq994[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym946 := z.EncBinary() - _ = yym946 + yym997 := z.EncBinary() + _ = yym997 if false { } else { r.EncodeBool(bool(x.Privileged)) } } } - if yyr943 || yy2arr943 { + if yyr994 || yy2arr994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq943[1] { + if yyq994[1] { if x.DefaultAddCapabilities == nil { r.EncodeNil() } else { - yym948 := z.EncBinary() - _ = yym948 + yym999 := z.EncBinary() + _ = yym999 if false { } else { h.encSliceapi_Capability(([]pkg2_api.Capability)(x.DefaultAddCapabilities), e) @@ -11431,15 +11980,15 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq943[1] { + if yyq994[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultAddCapabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultAddCapabilities == nil { r.EncodeNil() } else { - yym949 := z.EncBinary() - _ = yym949 + yym1000 := z.EncBinary() + _ = yym1000 if false { } else { h.encSliceapi_Capability(([]pkg2_api.Capability)(x.DefaultAddCapabilities), e) @@ -11447,14 +11996,14 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr943 || yy2arr943 { + if yyr994 || yy2arr994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq943[2] { + if yyq994[2] { if x.RequiredDropCapabilities == nil { r.EncodeNil() } else { - yym951 := z.EncBinary() - _ = yym951 + yym1002 := z.EncBinary() + _ = yym1002 if false { } else { h.encSliceapi_Capability(([]pkg2_api.Capability)(x.RequiredDropCapabilities), e) @@ -11464,15 +12013,15 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq943[2] { + if yyq994[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDropCapabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RequiredDropCapabilities == nil { r.EncodeNil() } else { - yym952 := z.EncBinary() - _ = yym952 + yym1003 := z.EncBinary() + _ = yym1003 if false { } else { h.encSliceapi_Capability(([]pkg2_api.Capability)(x.RequiredDropCapabilities), e) @@ -11480,14 +12029,14 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr943 || yy2arr943 { + if yyr994 || yy2arr994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq943[3] { + if yyq994[3] { if x.AllowedCapabilities == nil { r.EncodeNil() } else { - yym954 := z.EncBinary() - _ = yym954 + yym1005 := z.EncBinary() + _ = yym1005 if false { } else { h.encSliceapi_Capability(([]pkg2_api.Capability)(x.AllowedCapabilities), e) @@ -11497,15 +12046,15 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq943[3] { + if yyq994[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allowedCapabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AllowedCapabilities == nil { r.EncodeNil() } else { - yym955 := z.EncBinary() - _ = yym955 + yym1006 := z.EncBinary() + _ = yym1006 if false { } else { h.encSliceapi_Capability(([]pkg2_api.Capability)(x.AllowedCapabilities), e) @@ -11513,14 +12062,14 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr943 || yy2arr943 { + if yyr994 || yy2arr994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq943[4] { + if yyq994[4] { if x.Volumes == nil { r.EncodeNil() } else { - yym957 := z.EncBinary() - _ = yym957 + yym1008 := z.EncBinary() + _ = yym1008 if false { } else { h.encSliceFSType(([]FSType)(x.Volumes), e) @@ -11530,15 +12079,15 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq943[4] { + if yyq994[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Volumes == nil { r.EncodeNil() } else { - yym958 := z.EncBinary() - _ = yym958 + yym1009 := z.EncBinary() + _ = yym1009 if false { } else { h.encSliceFSType(([]FSType)(x.Volumes), e) @@ -11546,11 +12095,11 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr943 || yy2arr943 { + if yyr994 || yy2arr994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq943[5] { - yym960 := z.EncBinary() - _ = yym960 + if yyq994[5] { + yym1011 := z.EncBinary() + _ = yym1011 if false { } else { r.EncodeBool(bool(x.HostNetwork)) @@ -11559,26 +12108,26 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq943[5] { + if yyq994[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostNetwork")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym961 := z.EncBinary() - _ = yym961 + yym1012 := z.EncBinary() + _ = yym1012 if false { } else { r.EncodeBool(bool(x.HostNetwork)) } } } - if yyr943 || yy2arr943 { + if yyr994 || yy2arr994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq943[6] { + if yyq994[6] { if x.HostPorts == nil { r.EncodeNil() } else { - yym963 := z.EncBinary() - _ = yym963 + yym1014 := z.EncBinary() + _ = yym1014 if false { } else { h.encSliceHostPortRange(([]HostPortRange)(x.HostPorts), e) @@ -11588,15 +12137,15 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq943[6] { + if yyq994[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPorts")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.HostPorts == nil { r.EncodeNil() } else { - yym964 := z.EncBinary() - _ = yym964 + yym1015 := z.EncBinary() + _ = yym1015 if false { } else { h.encSliceHostPortRange(([]HostPortRange)(x.HostPorts), e) @@ -11604,11 +12153,11 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr943 || yy2arr943 { + if yyr994 || yy2arr994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq943[7] { - yym966 := z.EncBinary() - _ = yym966 + if yyq994[7] { + yym1017 := z.EncBinary() + _ = yym1017 if false { } else { r.EncodeBool(bool(x.HostPID)) @@ -11617,23 +12166,23 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq943[7] { + if yyq994[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym967 := z.EncBinary() - _ = yym967 + yym1018 := z.EncBinary() + _ = yym1018 if false { } else { r.EncodeBool(bool(x.HostPID)) } } } - if yyr943 || yy2arr943 { + if yyr994 || yy2arr994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq943[8] { - yym969 := z.EncBinary() - _ = yym969 + if yyq994[8] { + yym1020 := z.EncBinary() + _ = yym1020 if false { } else { r.EncodeBool(bool(x.HostIPC)) @@ -11642,67 +12191,67 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq943[8] { + if yyq994[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIPC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym970 := z.EncBinary() - _ = yym970 + yym1021 := z.EncBinary() + _ = yym1021 if false { } else { r.EncodeBool(bool(x.HostIPC)) } } } - if yyr943 || yy2arr943 { + if yyr994 || yy2arr994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy972 := &x.SELinux - yy972.CodecEncodeSelf(e) + yy1023 := &x.SELinux + yy1023.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinux")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy973 := &x.SELinux - yy973.CodecEncodeSelf(e) + yy1024 := &x.SELinux + yy1024.CodecEncodeSelf(e) } - if yyr943 || yy2arr943 { + if yyr994 || yy2arr994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy975 := &x.RunAsUser - yy975.CodecEncodeSelf(e) + yy1026 := &x.RunAsUser + yy1026.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy976 := &x.RunAsUser - yy976.CodecEncodeSelf(e) + yy1027 := &x.RunAsUser + yy1027.CodecEncodeSelf(e) } - if yyr943 || yy2arr943 { + if yyr994 || yy2arr994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy978 := &x.SupplementalGroups - yy978.CodecEncodeSelf(e) + yy1029 := &x.SupplementalGroups + yy1029.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("supplementalGroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy979 := &x.SupplementalGroups - yy979.CodecEncodeSelf(e) + yy1030 := &x.SupplementalGroups + yy1030.CodecEncodeSelf(e) } - if yyr943 || yy2arr943 { + if yyr994 || yy2arr994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy981 := &x.FSGroup - yy981.CodecEncodeSelf(e) + yy1032 := &x.FSGroup + yy1032.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy982 := &x.FSGroup - yy982.CodecEncodeSelf(e) + yy1033 := &x.FSGroup + yy1033.CodecEncodeSelf(e) } - if yyr943 || yy2arr943 { + if yyr994 || yy2arr994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq943[13] { - yym984 := z.EncBinary() - _ = yym984 + if yyq994[13] { + yym1035 := z.EncBinary() + _ = yym1035 if false { } else { r.EncodeBool(bool(x.ReadOnlyRootFilesystem)) @@ -11711,19 +12260,19 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq943[13] { + if yyq994[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym985 := z.EncBinary() - _ = yym985 + yym1036 := z.EncBinary() + _ = yym1036 if false { } else { r.EncodeBool(bool(x.ReadOnlyRootFilesystem)) } } } - if yyr943 || yy2arr943 { + if yyr994 || yy2arr994 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11736,25 +12285,25 @@ func (x *PodSecurityPolicySpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym986 := z.DecBinary() - _ = yym986 + yym1037 := z.DecBinary() + _ = yym1037 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct987 := r.ContainerType() - if yyct987 == codecSelferValueTypeMap1234 { - yyl987 := r.ReadMapStart() - if yyl987 == 0 { + yyct1038 := r.ContainerType() + if yyct1038 == codecSelferValueTypeMap1234 { + yyl1038 := r.ReadMapStart() + if yyl1038 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl987, d) + x.codecDecodeSelfFromMap(yyl1038, d) } - } else if yyct987 == codecSelferValueTypeArray1234 { - yyl987 := r.ReadArrayStart() - if yyl987 == 0 { + } else if yyct1038 == codecSelferValueTypeArray1234 { + yyl1038 := r.ReadArrayStart() + if yyl1038 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl987, d) + x.codecDecodeSelfFromArray(yyl1038, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11766,12 +12315,12 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys988Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys988Slc - var yyhl988 bool = l >= 0 - for yyj988 := 0; ; yyj988++ { - if yyhl988 { - if yyj988 >= l { + var yys1039Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1039Slc + var yyhl1039 bool = l >= 0 + for yyj1039 := 0; ; yyj1039++ { + if yyhl1039 { + if yyj1039 >= l { break } } else { @@ -11780,10 +12329,10 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys988Slc = r.DecodeBytes(yys988Slc, true, true) - yys988 := string(yys988Slc) + yys1039Slc = r.DecodeBytes(yys1039Slc, true, true) + yys1039 := string(yys1039Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys988 { + switch yys1039 { case "privileged": if r.TryDecodeAsNil() { x.Privileged = false @@ -11794,48 +12343,48 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.DefaultAddCapabilities = nil } else { - yyv990 := &x.DefaultAddCapabilities - yym991 := z.DecBinary() - _ = yym991 + yyv1041 := &x.DefaultAddCapabilities + yym1042 := z.DecBinary() + _ = yym1042 if false { } else { - h.decSliceapi_Capability((*[]pkg2_api.Capability)(yyv990), d) + h.decSliceapi_Capability((*[]pkg2_api.Capability)(yyv1041), d) } } case "requiredDropCapabilities": if r.TryDecodeAsNil() { x.RequiredDropCapabilities = nil } else { - yyv992 := &x.RequiredDropCapabilities - yym993 := z.DecBinary() - _ = yym993 + yyv1043 := &x.RequiredDropCapabilities + yym1044 := z.DecBinary() + _ = yym1044 if false { } else { - h.decSliceapi_Capability((*[]pkg2_api.Capability)(yyv992), d) + h.decSliceapi_Capability((*[]pkg2_api.Capability)(yyv1043), d) } } case "allowedCapabilities": if r.TryDecodeAsNil() { x.AllowedCapabilities = nil } else { - yyv994 := &x.AllowedCapabilities - yym995 := z.DecBinary() - _ = yym995 + yyv1045 := &x.AllowedCapabilities + yym1046 := z.DecBinary() + _ = yym1046 if false { } else { - h.decSliceapi_Capability((*[]pkg2_api.Capability)(yyv994), d) + h.decSliceapi_Capability((*[]pkg2_api.Capability)(yyv1045), d) } } case "volumes": if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv996 := &x.Volumes - yym997 := z.DecBinary() - _ = yym997 + yyv1047 := &x.Volumes + yym1048 := z.DecBinary() + _ = yym1048 if false { } else { - h.decSliceFSType((*[]FSType)(yyv996), d) + h.decSliceFSType((*[]FSType)(yyv1047), d) } } case "hostNetwork": @@ -11848,12 +12397,12 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.HostPorts = nil } else { - yyv999 := &x.HostPorts - yym1000 := z.DecBinary() - _ = yym1000 + yyv1050 := &x.HostPorts + yym1051 := z.DecBinary() + _ = yym1051 if false { } else { - h.decSliceHostPortRange((*[]HostPortRange)(yyv999), d) + h.decSliceHostPortRange((*[]HostPortRange)(yyv1050), d) } } case "hostPID": @@ -11872,29 +12421,29 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.SELinux = SELinuxStrategyOptions{} } else { - yyv1003 := &x.SELinux - yyv1003.CodecDecodeSelf(d) + yyv1054 := &x.SELinux + yyv1054.CodecDecodeSelf(d) } case "runAsUser": if r.TryDecodeAsNil() { x.RunAsUser = RunAsUserStrategyOptions{} } else { - yyv1004 := &x.RunAsUser - yyv1004.CodecDecodeSelf(d) + yyv1055 := &x.RunAsUser + yyv1055.CodecDecodeSelf(d) } case "supplementalGroups": if r.TryDecodeAsNil() { x.SupplementalGroups = SupplementalGroupsStrategyOptions{} } else { - yyv1005 := &x.SupplementalGroups - yyv1005.CodecDecodeSelf(d) + yyv1056 := &x.SupplementalGroups + yyv1056.CodecDecodeSelf(d) } case "fsGroup": if r.TryDecodeAsNil() { x.FSGroup = FSGroupStrategyOptions{} } else { - yyv1006 := &x.FSGroup - yyv1006.CodecDecodeSelf(d) + yyv1057 := &x.FSGroup + yyv1057.CodecDecodeSelf(d) } case "readOnlyRootFilesystem": if r.TryDecodeAsNil() { @@ -11903,9 +12452,9 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.ReadOnlyRootFilesystem = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys988) - } // end switch yys988 - } // end for yyj988 + z.DecStructFieldNotFound(-1, yys1039) + } // end switch yys1039 + } // end for yyj1039 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11913,16 +12462,16 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1008 int - var yyb1008 bool - var yyhl1008 bool = l >= 0 - yyj1008++ - if yyhl1008 { - yyb1008 = yyj1008 > l + var yyj1059 int + var yyb1059 bool + var yyhl1059 bool = l >= 0 + yyj1059++ + if yyhl1059 { + yyb1059 = yyj1059 > l } else { - yyb1008 = r.CheckBreak() + yyb1059 = r.CheckBreak() } - if yyb1008 { + if yyb1059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11932,13 +12481,13 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Privileged = bool(r.DecodeBool()) } - yyj1008++ - if yyhl1008 { - yyb1008 = yyj1008 > l + yyj1059++ + if yyhl1059 { + yyb1059 = yyj1059 > l } else { - yyb1008 = r.CheckBreak() + yyb1059 = r.CheckBreak() } - if yyb1008 { + if yyb1059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11946,21 +12495,21 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.DefaultAddCapabilities = nil } else { - yyv1010 := &x.DefaultAddCapabilities - yym1011 := z.DecBinary() - _ = yym1011 + yyv1061 := &x.DefaultAddCapabilities + yym1062 := z.DecBinary() + _ = yym1062 if false { } else { - h.decSliceapi_Capability((*[]pkg2_api.Capability)(yyv1010), d) + h.decSliceapi_Capability((*[]pkg2_api.Capability)(yyv1061), d) } } - yyj1008++ - if yyhl1008 { - yyb1008 = yyj1008 > l + yyj1059++ + if yyhl1059 { + yyb1059 = yyj1059 > l } else { - yyb1008 = r.CheckBreak() + yyb1059 = r.CheckBreak() } - if yyb1008 { + if yyb1059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11968,21 +12517,21 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.RequiredDropCapabilities = nil } else { - yyv1012 := &x.RequiredDropCapabilities - yym1013 := z.DecBinary() - _ = yym1013 + yyv1063 := &x.RequiredDropCapabilities + yym1064 := z.DecBinary() + _ = yym1064 if false { } else { - h.decSliceapi_Capability((*[]pkg2_api.Capability)(yyv1012), d) + h.decSliceapi_Capability((*[]pkg2_api.Capability)(yyv1063), d) } } - yyj1008++ - if yyhl1008 { - yyb1008 = yyj1008 > l + yyj1059++ + if yyhl1059 { + yyb1059 = yyj1059 > l } else { - yyb1008 = r.CheckBreak() + yyb1059 = r.CheckBreak() } - if yyb1008 { + if yyb1059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11990,21 +12539,21 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.AllowedCapabilities = nil } else { - yyv1014 := &x.AllowedCapabilities - yym1015 := z.DecBinary() - _ = yym1015 + yyv1065 := &x.AllowedCapabilities + yym1066 := z.DecBinary() + _ = yym1066 if false { } else { - h.decSliceapi_Capability((*[]pkg2_api.Capability)(yyv1014), d) + h.decSliceapi_Capability((*[]pkg2_api.Capability)(yyv1065), d) } } - yyj1008++ - if yyhl1008 { - yyb1008 = yyj1008 > l + yyj1059++ + if yyhl1059 { + yyb1059 = yyj1059 > l } else { - yyb1008 = r.CheckBreak() + yyb1059 = r.CheckBreak() } - if yyb1008 { + if yyb1059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12012,21 +12561,21 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1016 := &x.Volumes - yym1017 := z.DecBinary() - _ = yym1017 + yyv1067 := &x.Volumes + yym1068 := z.DecBinary() + _ = yym1068 if false { } else { - h.decSliceFSType((*[]FSType)(yyv1016), d) + h.decSliceFSType((*[]FSType)(yyv1067), d) } } - yyj1008++ - if yyhl1008 { - yyb1008 = yyj1008 > l + yyj1059++ + if yyhl1059 { + yyb1059 = yyj1059 > l } else { - yyb1008 = r.CheckBreak() + yyb1059 = r.CheckBreak() } - if yyb1008 { + if yyb1059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12036,13 +12585,13 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.HostNetwork = bool(r.DecodeBool()) } - yyj1008++ - if yyhl1008 { - yyb1008 = yyj1008 > l + yyj1059++ + if yyhl1059 { + yyb1059 = yyj1059 > l } else { - yyb1008 = r.CheckBreak() + yyb1059 = r.CheckBreak() } - if yyb1008 { + if yyb1059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12050,21 +12599,21 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.HostPorts = nil } else { - yyv1019 := &x.HostPorts - yym1020 := z.DecBinary() - _ = yym1020 + yyv1070 := &x.HostPorts + yym1071 := z.DecBinary() + _ = yym1071 if false { } else { - h.decSliceHostPortRange((*[]HostPortRange)(yyv1019), d) + h.decSliceHostPortRange((*[]HostPortRange)(yyv1070), d) } } - yyj1008++ - if yyhl1008 { - yyb1008 = yyj1008 > l + yyj1059++ + if yyhl1059 { + yyb1059 = yyj1059 > l } else { - yyb1008 = r.CheckBreak() + yyb1059 = r.CheckBreak() } - if yyb1008 { + if yyb1059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12074,13 +12623,13 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.HostPID = bool(r.DecodeBool()) } - yyj1008++ - if yyhl1008 { - yyb1008 = yyj1008 > l + yyj1059++ + if yyhl1059 { + yyb1059 = yyj1059 > l } else { - yyb1008 = r.CheckBreak() + yyb1059 = r.CheckBreak() } - if yyb1008 { + if yyb1059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12090,13 +12639,13 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.HostIPC = bool(r.DecodeBool()) } - yyj1008++ - if yyhl1008 { - yyb1008 = yyj1008 > l + yyj1059++ + if yyhl1059 { + yyb1059 = yyj1059 > l } else { - yyb1008 = r.CheckBreak() + yyb1059 = r.CheckBreak() } - if yyb1008 { + if yyb1059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12104,16 +12653,16 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.SELinux = SELinuxStrategyOptions{} } else { - yyv1023 := &x.SELinux - yyv1023.CodecDecodeSelf(d) + yyv1074 := &x.SELinux + yyv1074.CodecDecodeSelf(d) } - yyj1008++ - if yyhl1008 { - yyb1008 = yyj1008 > l + yyj1059++ + if yyhl1059 { + yyb1059 = yyj1059 > l } else { - yyb1008 = r.CheckBreak() + yyb1059 = r.CheckBreak() } - if yyb1008 { + if yyb1059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12121,16 +12670,16 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.RunAsUser = RunAsUserStrategyOptions{} } else { - yyv1024 := &x.RunAsUser - yyv1024.CodecDecodeSelf(d) + yyv1075 := &x.RunAsUser + yyv1075.CodecDecodeSelf(d) } - yyj1008++ - if yyhl1008 { - yyb1008 = yyj1008 > l + yyj1059++ + if yyhl1059 { + yyb1059 = yyj1059 > l } else { - yyb1008 = r.CheckBreak() + yyb1059 = r.CheckBreak() } - if yyb1008 { + if yyb1059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12138,16 +12687,16 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.SupplementalGroups = SupplementalGroupsStrategyOptions{} } else { - yyv1025 := &x.SupplementalGroups - yyv1025.CodecDecodeSelf(d) + yyv1076 := &x.SupplementalGroups + yyv1076.CodecDecodeSelf(d) } - yyj1008++ - if yyhl1008 { - yyb1008 = yyj1008 > l + yyj1059++ + if yyhl1059 { + yyb1059 = yyj1059 > l } else { - yyb1008 = r.CheckBreak() + yyb1059 = r.CheckBreak() } - if yyb1008 { + if yyb1059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12155,16 +12704,16 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.FSGroup = FSGroupStrategyOptions{} } else { - yyv1026 := &x.FSGroup - yyv1026.CodecDecodeSelf(d) + yyv1077 := &x.FSGroup + yyv1077.CodecDecodeSelf(d) } - yyj1008++ - if yyhl1008 { - yyb1008 = yyj1008 > l + yyj1059++ + if yyhl1059 { + yyb1059 = yyj1059 > l } else { - yyb1008 = r.CheckBreak() + yyb1059 = r.CheckBreak() } - if yyb1008 { + if yyb1059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12175,17 +12724,17 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.ReadOnlyRootFilesystem = bool(r.DecodeBool()) } for { - yyj1008++ - if yyhl1008 { - yyb1008 = yyj1008 > l + yyj1059++ + if yyhl1059 { + yyb1059 = yyj1059 > l } else { - yyb1008 = r.CheckBreak() + yyb1059 = r.CheckBreak() } - if yyb1008 { + if yyb1059 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1008-1, "") + z.DecStructFieldNotFound(yyj1059-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12197,33 +12746,33 @@ func (x *HostPortRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1028 := z.EncBinary() - _ = yym1028 + yym1079 := z.EncBinary() + _ = yym1079 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1029 := !z.EncBinary() - yy2arr1029 := z.EncBasicHandle().StructToArray - var yyq1029 [2]bool - _, _, _ = yysep1029, yyq1029, yy2arr1029 - const yyr1029 bool = false - var yynn1029 int - if yyr1029 || yy2arr1029 { + yysep1080 := !z.EncBinary() + yy2arr1080 := z.EncBasicHandle().StructToArray + var yyq1080 [2]bool + _, _, _ = yysep1080, yyq1080, yy2arr1080 + const yyr1080 bool = false + var yynn1080 int + if yyr1080 || yy2arr1080 { r.EncodeArrayStart(2) } else { - yynn1029 = 2 - for _, b := range yyq1029 { + yynn1080 = 2 + for _, b := range yyq1080 { if b { - yynn1029++ + yynn1080++ } } - r.EncodeMapStart(yynn1029) - yynn1029 = 0 + r.EncodeMapStart(yynn1080) + yynn1080 = 0 } - if yyr1029 || yy2arr1029 { + if yyr1080 || yy2arr1080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1031 := z.EncBinary() - _ = yym1031 + yym1082 := z.EncBinary() + _ = yym1082 if false { } else { r.EncodeInt(int64(x.Min)) @@ -12232,17 +12781,17 @@ func (x *HostPortRange) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1032 := z.EncBinary() - _ = yym1032 + yym1083 := z.EncBinary() + _ = yym1083 if false { } else { r.EncodeInt(int64(x.Min)) } } - if yyr1029 || yy2arr1029 { + if yyr1080 || yy2arr1080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1034 := z.EncBinary() - _ = yym1034 + yym1085 := z.EncBinary() + _ = yym1085 if false { } else { r.EncodeInt(int64(x.Max)) @@ -12251,14 +12800,14 @@ func (x *HostPortRange) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1035 := z.EncBinary() - _ = yym1035 + yym1086 := z.EncBinary() + _ = yym1086 if false { } else { r.EncodeInt(int64(x.Max)) } } - if yyr1029 || yy2arr1029 { + if yyr1080 || yy2arr1080 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12271,25 +12820,25 @@ func (x *HostPortRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1036 := z.DecBinary() - _ = yym1036 + yym1087 := z.DecBinary() + _ = yym1087 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1037 := r.ContainerType() - if yyct1037 == codecSelferValueTypeMap1234 { - yyl1037 := r.ReadMapStart() - if yyl1037 == 0 { + yyct1088 := r.ContainerType() + if yyct1088 == codecSelferValueTypeMap1234 { + yyl1088 := r.ReadMapStart() + if yyl1088 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1037, d) + x.codecDecodeSelfFromMap(yyl1088, d) } - } else if yyct1037 == codecSelferValueTypeArray1234 { - yyl1037 := r.ReadArrayStart() - if yyl1037 == 0 { + } else if yyct1088 == codecSelferValueTypeArray1234 { + yyl1088 := r.ReadArrayStart() + if yyl1088 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1037, d) + x.codecDecodeSelfFromArray(yyl1088, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12301,12 +12850,12 @@ func (x *HostPortRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1038Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1038Slc - var yyhl1038 bool = l >= 0 - for yyj1038 := 0; ; yyj1038++ { - if yyhl1038 { - if yyj1038 >= l { + var yys1089Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1089Slc + var yyhl1089 bool = l >= 0 + for yyj1089 := 0; ; yyj1089++ { + if yyhl1089 { + if yyj1089 >= l { break } } else { @@ -12315,10 +12864,10 @@ func (x *HostPortRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1038Slc = r.DecodeBytes(yys1038Slc, true, true) - yys1038 := string(yys1038Slc) + yys1089Slc = r.DecodeBytes(yys1089Slc, true, true) + yys1089 := string(yys1089Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1038 { + switch yys1089 { case "min": if r.TryDecodeAsNil() { x.Min = 0 @@ -12332,9 +12881,9 @@ func (x *HostPortRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Max = int(r.DecodeInt(codecSelferBitsize1234)) } default: - z.DecStructFieldNotFound(-1, yys1038) - } // end switch yys1038 - } // end for yyj1038 + z.DecStructFieldNotFound(-1, yys1089) + } // end switch yys1089 + } // end for yyj1089 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12342,16 +12891,16 @@ func (x *HostPortRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1041 int - var yyb1041 bool - var yyhl1041 bool = l >= 0 - yyj1041++ - if yyhl1041 { - yyb1041 = yyj1041 > l + var yyj1092 int + var yyb1092 bool + var yyhl1092 bool = l >= 0 + yyj1092++ + if yyhl1092 { + yyb1092 = yyj1092 > l } else { - yyb1041 = r.CheckBreak() + yyb1092 = r.CheckBreak() } - if yyb1041 { + if yyb1092 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12361,13 +12910,13 @@ func (x *HostPortRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Min = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1041++ - if yyhl1041 { - yyb1041 = yyj1041 > l + yyj1092++ + if yyhl1092 { + yyb1092 = yyj1092 > l } else { - yyb1041 = r.CheckBreak() + yyb1092 = r.CheckBreak() } - if yyb1041 { + if yyb1092 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12378,17 +12927,17 @@ func (x *HostPortRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Max = int(r.DecodeInt(codecSelferBitsize1234)) } for { - yyj1041++ - if yyhl1041 { - yyb1041 = yyj1041 > l + yyj1092++ + if yyhl1092 { + yyb1092 = yyj1092 > l } else { - yyb1041 = r.CheckBreak() + yyb1092 = r.CheckBreak() } - if yyb1041 { + if yyb1092 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1041-1, "") + z.DecStructFieldNotFound(yyj1092-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12397,8 +12946,8 @@ func (x FSType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1044 := z.EncBinary() - _ = yym1044 + yym1095 := z.EncBinary() + _ = yym1095 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -12410,8 +12959,8 @@ func (x *FSType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1045 := z.DecBinary() - _ = yym1045 + yym1096 := z.DecBinary() + _ = yym1096 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -12426,31 +12975,31 @@ func (x *SELinuxStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1046 := z.EncBinary() - _ = yym1046 + yym1097 := z.EncBinary() + _ = yym1097 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1047 := !z.EncBinary() - yy2arr1047 := z.EncBasicHandle().StructToArray - var yyq1047 [2]bool - _, _, _ = yysep1047, yyq1047, yy2arr1047 - const yyr1047 bool = false - yyq1047[1] = x.SELinuxOptions != nil - var yynn1047 int - if yyr1047 || yy2arr1047 { + yysep1098 := !z.EncBinary() + yy2arr1098 := z.EncBasicHandle().StructToArray + var yyq1098 [2]bool + _, _, _ = yysep1098, yyq1098, yy2arr1098 + const yyr1098 bool = false + yyq1098[1] = x.SELinuxOptions != nil + var yynn1098 int + if yyr1098 || yy2arr1098 { r.EncodeArrayStart(2) } else { - yynn1047 = 1 - for _, b := range yyq1047 { + yynn1098 = 1 + for _, b := range yyq1098 { if b { - yynn1047++ + yynn1098++ } } - r.EncodeMapStart(yynn1047) - yynn1047 = 0 + r.EncodeMapStart(yynn1098) + yynn1098 = 0 } - if yyr1047 || yy2arr1047 { + if yyr1098 || yy2arr1098 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Rule.CodecEncodeSelf(e) } else { @@ -12459,9 +13008,9 @@ func (x *SELinuxStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Rule.CodecEncodeSelf(e) } - if yyr1047 || yy2arr1047 { + if yyr1098 || yy2arr1098 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1047[1] { + if yyq1098[1] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -12471,7 +13020,7 @@ func (x *SELinuxStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1047[1] { + if yyq1098[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -12482,7 +13031,7 @@ func (x *SELinuxStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1047 || yy2arr1047 { + if yyr1098 || yy2arr1098 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12495,25 +13044,25 @@ func (x *SELinuxStrategyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1050 := z.DecBinary() - _ = yym1050 + yym1101 := z.DecBinary() + _ = yym1101 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1051 := r.ContainerType() - if yyct1051 == codecSelferValueTypeMap1234 { - yyl1051 := r.ReadMapStart() - if yyl1051 == 0 { + yyct1102 := r.ContainerType() + if yyct1102 == codecSelferValueTypeMap1234 { + yyl1102 := r.ReadMapStart() + if yyl1102 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1051, d) + x.codecDecodeSelfFromMap(yyl1102, d) } - } else if yyct1051 == codecSelferValueTypeArray1234 { - yyl1051 := r.ReadArrayStart() - if yyl1051 == 0 { + } else if yyct1102 == codecSelferValueTypeArray1234 { + yyl1102 := r.ReadArrayStart() + if yyl1102 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1051, d) + x.codecDecodeSelfFromArray(yyl1102, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12525,12 +13074,12 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1052Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1052Slc - var yyhl1052 bool = l >= 0 - for yyj1052 := 0; ; yyj1052++ { - if yyhl1052 { - if yyj1052 >= l { + var yys1103Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1103Slc + var yyhl1103 bool = l >= 0 + for yyj1103 := 0; ; yyj1103++ { + if yyhl1103 { + if yyj1103 >= l { break } } else { @@ -12539,10 +13088,10 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1052Slc = r.DecodeBytes(yys1052Slc, true, true) - yys1052 := string(yys1052Slc) + yys1103Slc = r.DecodeBytes(yys1103Slc, true, true) + yys1103 := string(yys1103Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1052 { + switch yys1103 { case "rule": if r.TryDecodeAsNil() { x.Rule = "" @@ -12561,9 +13110,9 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco x.SELinuxOptions.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1052) - } // end switch yys1052 - } // end for yyj1052 + z.DecStructFieldNotFound(-1, yys1103) + } // end switch yys1103 + } // end for yyj1103 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12571,16 +13120,16 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1055 int - var yyb1055 bool - var yyhl1055 bool = l >= 0 - yyj1055++ - if yyhl1055 { - yyb1055 = yyj1055 > l + var yyj1106 int + var yyb1106 bool + var yyhl1106 bool = l >= 0 + yyj1106++ + if yyhl1106 { + yyb1106 = yyj1106 > l } else { - yyb1055 = r.CheckBreak() + yyb1106 = r.CheckBreak() } - if yyb1055 { + if yyb1106 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12590,13 +13139,13 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Rule = SELinuxStrategy(r.DecodeString()) } - yyj1055++ - if yyhl1055 { - yyb1055 = yyj1055 > l + yyj1106++ + if yyhl1106 { + yyb1106 = yyj1106 > l } else { - yyb1055 = r.CheckBreak() + yyb1106 = r.CheckBreak() } - if yyb1055 { + if yyb1106 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12612,17 +13161,17 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De x.SELinuxOptions.CodecDecodeSelf(d) } for { - yyj1055++ - if yyhl1055 { - yyb1055 = yyj1055 > l + yyj1106++ + if yyhl1106 { + yyb1106 = yyj1106 > l } else { - yyb1055 = r.CheckBreak() + yyb1106 = r.CheckBreak() } - if yyb1055 { + if yyb1106 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1055-1, "") + z.DecStructFieldNotFound(yyj1106-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12631,8 +13180,8 @@ func (x SELinuxStrategy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1058 := z.EncBinary() - _ = yym1058 + yym1109 := z.EncBinary() + _ = yym1109 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -12644,8 +13193,8 @@ func (x *SELinuxStrategy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1059 := z.DecBinary() - _ = yym1059 + yym1110 := z.DecBinary() + _ = yym1110 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -12660,31 +13209,31 @@ func (x *RunAsUserStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1060 := z.EncBinary() - _ = yym1060 + yym1111 := z.EncBinary() + _ = yym1111 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1061 := !z.EncBinary() - yy2arr1061 := z.EncBasicHandle().StructToArray - var yyq1061 [2]bool - _, _, _ = yysep1061, yyq1061, yy2arr1061 - const yyr1061 bool = false - yyq1061[1] = len(x.Ranges) != 0 - var yynn1061 int - if yyr1061 || yy2arr1061 { + yysep1112 := !z.EncBinary() + yy2arr1112 := z.EncBasicHandle().StructToArray + var yyq1112 [2]bool + _, _, _ = yysep1112, yyq1112, yy2arr1112 + const yyr1112 bool = false + yyq1112[1] = len(x.Ranges) != 0 + var yynn1112 int + if yyr1112 || yy2arr1112 { r.EncodeArrayStart(2) } else { - yynn1061 = 1 - for _, b := range yyq1061 { + yynn1112 = 1 + for _, b := range yyq1112 { if b { - yynn1061++ + yynn1112++ } } - r.EncodeMapStart(yynn1061) - yynn1061 = 0 + r.EncodeMapStart(yynn1112) + yynn1112 = 0 } - if yyr1061 || yy2arr1061 { + if yyr1112 || yy2arr1112 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Rule.CodecEncodeSelf(e) } else { @@ -12693,14 +13242,14 @@ func (x *RunAsUserStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Rule.CodecEncodeSelf(e) } - if yyr1061 || yy2arr1061 { + if yyr1112 || yy2arr1112 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1061[1] { + if yyq1112[1] { if x.Ranges == nil { r.EncodeNil() } else { - yym1064 := z.EncBinary() - _ = yym1064 + yym1115 := z.EncBinary() + _ = yym1115 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -12710,15 +13259,15 @@ func (x *RunAsUserStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1061[1] { + if yyq1112[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ranges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ranges == nil { r.EncodeNil() } else { - yym1065 := z.EncBinary() - _ = yym1065 + yym1116 := z.EncBinary() + _ = yym1116 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -12726,7 +13275,7 @@ func (x *RunAsUserStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1061 || yy2arr1061 { + if yyr1112 || yy2arr1112 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12739,25 +13288,25 @@ func (x *RunAsUserStrategyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1066 := z.DecBinary() - _ = yym1066 + yym1117 := z.DecBinary() + _ = yym1117 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1067 := r.ContainerType() - if yyct1067 == codecSelferValueTypeMap1234 { - yyl1067 := r.ReadMapStart() - if yyl1067 == 0 { + yyct1118 := r.ContainerType() + if yyct1118 == codecSelferValueTypeMap1234 { + yyl1118 := r.ReadMapStart() + if yyl1118 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1067, d) + x.codecDecodeSelfFromMap(yyl1118, d) } - } else if yyct1067 == codecSelferValueTypeArray1234 { - yyl1067 := r.ReadArrayStart() - if yyl1067 == 0 { + } else if yyct1118 == codecSelferValueTypeArray1234 { + yyl1118 := r.ReadArrayStart() + if yyl1118 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1067, d) + x.codecDecodeSelfFromArray(yyl1118, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12769,12 +13318,12 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1068Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1068Slc - var yyhl1068 bool = l >= 0 - for yyj1068 := 0; ; yyj1068++ { - if yyhl1068 { - if yyj1068 >= l { + var yys1119Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1119Slc + var yyhl1119 bool = l >= 0 + for yyj1119 := 0; ; yyj1119++ { + if yyhl1119 { + if yyj1119 >= l { break } } else { @@ -12783,10 +13332,10 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1068Slc = r.DecodeBytes(yys1068Slc, true, true) - yys1068 := string(yys1068Slc) + yys1119Slc = r.DecodeBytes(yys1119Slc, true, true) + yys1119 := string(yys1119Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1068 { + switch yys1119 { case "rule": if r.TryDecodeAsNil() { x.Rule = "" @@ -12797,18 +13346,18 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.De if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1070 := &x.Ranges - yym1071 := z.DecBinary() - _ = yym1071 + yyv1121 := &x.Ranges + yym1122 := z.DecBinary() + _ = yym1122 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1070), d) + h.decSliceIDRange((*[]IDRange)(yyv1121), d) } } default: - z.DecStructFieldNotFound(-1, yys1068) - } // end switch yys1068 - } // end for yyj1068 + z.DecStructFieldNotFound(-1, yys1119) + } // end switch yys1119 + } // end for yyj1119 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12816,16 +13365,16 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1072 int - var yyb1072 bool - var yyhl1072 bool = l >= 0 - yyj1072++ - if yyhl1072 { - yyb1072 = yyj1072 > l + var yyj1123 int + var yyb1123 bool + var yyhl1123 bool = l >= 0 + yyj1123++ + if yyhl1123 { + yyb1123 = yyj1123 > l } else { - yyb1072 = r.CheckBreak() + yyb1123 = r.CheckBreak() } - if yyb1072 { + if yyb1123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12835,13 +13384,13 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Rule = RunAsUserStrategy(r.DecodeString()) } - yyj1072++ - if yyhl1072 { - yyb1072 = yyj1072 > l + yyj1123++ + if yyhl1123 { + yyb1123 = yyj1123 > l } else { - yyb1072 = r.CheckBreak() + yyb1123 = r.CheckBreak() } - if yyb1072 { + if yyb1123 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12849,26 +13398,26 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1074 := &x.Ranges - yym1075 := z.DecBinary() - _ = yym1075 + yyv1125 := &x.Ranges + yym1126 := z.DecBinary() + _ = yym1126 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1074), d) + h.decSliceIDRange((*[]IDRange)(yyv1125), d) } } for { - yyj1072++ - if yyhl1072 { - yyb1072 = yyj1072 > l + yyj1123++ + if yyhl1123 { + yyb1123 = yyj1123 > l } else { - yyb1072 = r.CheckBreak() + yyb1123 = r.CheckBreak() } - if yyb1072 { + if yyb1123 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1072-1, "") + z.DecStructFieldNotFound(yyj1123-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12880,33 +13429,33 @@ func (x *IDRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1076 := z.EncBinary() - _ = yym1076 + yym1127 := z.EncBinary() + _ = yym1127 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1077 := !z.EncBinary() - yy2arr1077 := z.EncBasicHandle().StructToArray - var yyq1077 [2]bool - _, _, _ = yysep1077, yyq1077, yy2arr1077 - const yyr1077 bool = false - var yynn1077 int - if yyr1077 || yy2arr1077 { + yysep1128 := !z.EncBinary() + yy2arr1128 := z.EncBasicHandle().StructToArray + var yyq1128 [2]bool + _, _, _ = yysep1128, yyq1128, yy2arr1128 + const yyr1128 bool = false + var yynn1128 int + if yyr1128 || yy2arr1128 { r.EncodeArrayStart(2) } else { - yynn1077 = 2 - for _, b := range yyq1077 { + yynn1128 = 2 + for _, b := range yyq1128 { if b { - yynn1077++ + yynn1128++ } } - r.EncodeMapStart(yynn1077) - yynn1077 = 0 + r.EncodeMapStart(yynn1128) + yynn1128 = 0 } - if yyr1077 || yy2arr1077 { + if yyr1128 || yy2arr1128 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1079 := z.EncBinary() - _ = yym1079 + yym1130 := z.EncBinary() + _ = yym1130 if false { } else { r.EncodeInt(int64(x.Min)) @@ -12915,17 +13464,17 @@ func (x *IDRange) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1080 := z.EncBinary() - _ = yym1080 + yym1131 := z.EncBinary() + _ = yym1131 if false { } else { r.EncodeInt(int64(x.Min)) } } - if yyr1077 || yy2arr1077 { + if yyr1128 || yy2arr1128 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1082 := z.EncBinary() - _ = yym1082 + yym1133 := z.EncBinary() + _ = yym1133 if false { } else { r.EncodeInt(int64(x.Max)) @@ -12934,14 +13483,14 @@ func (x *IDRange) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1083 := z.EncBinary() - _ = yym1083 + yym1134 := z.EncBinary() + _ = yym1134 if false { } else { r.EncodeInt(int64(x.Max)) } } - if yyr1077 || yy2arr1077 { + if yyr1128 || yy2arr1128 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12954,25 +13503,25 @@ func (x *IDRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1084 := z.DecBinary() - _ = yym1084 + yym1135 := z.DecBinary() + _ = yym1135 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1085 := r.ContainerType() - if yyct1085 == codecSelferValueTypeMap1234 { - yyl1085 := r.ReadMapStart() - if yyl1085 == 0 { + yyct1136 := r.ContainerType() + if yyct1136 == codecSelferValueTypeMap1234 { + yyl1136 := r.ReadMapStart() + if yyl1136 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1085, d) + x.codecDecodeSelfFromMap(yyl1136, d) } - } else if yyct1085 == codecSelferValueTypeArray1234 { - yyl1085 := r.ReadArrayStart() - if yyl1085 == 0 { + } else if yyct1136 == codecSelferValueTypeArray1234 { + yyl1136 := r.ReadArrayStart() + if yyl1136 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1085, d) + x.codecDecodeSelfFromArray(yyl1136, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12984,12 +13533,12 @@ func (x *IDRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1086Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1086Slc - var yyhl1086 bool = l >= 0 - for yyj1086 := 0; ; yyj1086++ { - if yyhl1086 { - if yyj1086 >= l { + var yys1137Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1137Slc + var yyhl1137 bool = l >= 0 + for yyj1137 := 0; ; yyj1137++ { + if yyhl1137 { + if yyj1137 >= l { break } } else { @@ -12998,10 +13547,10 @@ func (x *IDRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1086Slc = r.DecodeBytes(yys1086Slc, true, true) - yys1086 := string(yys1086Slc) + yys1137Slc = r.DecodeBytes(yys1137Slc, true, true) + yys1137 := string(yys1137Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1086 { + switch yys1137 { case "min": if r.TryDecodeAsNil() { x.Min = 0 @@ -13015,9 +13564,9 @@ func (x *IDRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Max = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys1086) - } // end switch yys1086 - } // end for yyj1086 + z.DecStructFieldNotFound(-1, yys1137) + } // end switch yys1137 + } // end for yyj1137 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13025,16 +13574,16 @@ func (x *IDRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1089 int - var yyb1089 bool - var yyhl1089 bool = l >= 0 - yyj1089++ - if yyhl1089 { - yyb1089 = yyj1089 > l + var yyj1140 int + var yyb1140 bool + var yyhl1140 bool = l >= 0 + yyj1140++ + if yyhl1140 { + yyb1140 = yyj1140 > l } else { - yyb1089 = r.CheckBreak() + yyb1140 = r.CheckBreak() } - if yyb1089 { + if yyb1140 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13044,13 +13593,13 @@ func (x *IDRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Min = int64(r.DecodeInt(64)) } - yyj1089++ - if yyhl1089 { - yyb1089 = yyj1089 > l + yyj1140++ + if yyhl1140 { + yyb1140 = yyj1140 > l } else { - yyb1089 = r.CheckBreak() + yyb1140 = r.CheckBreak() } - if yyb1089 { + if yyb1140 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13061,17 +13610,17 @@ func (x *IDRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Max = int64(r.DecodeInt(64)) } for { - yyj1089++ - if yyhl1089 { - yyb1089 = yyj1089 > l + yyj1140++ + if yyhl1140 { + yyb1140 = yyj1140 > l } else { - yyb1089 = r.CheckBreak() + yyb1140 = r.CheckBreak() } - if yyb1089 { + if yyb1140 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1089-1, "") + z.DecStructFieldNotFound(yyj1140-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13080,8 +13629,8 @@ func (x RunAsUserStrategy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1092 := z.EncBinary() - _ = yym1092 + yym1143 := z.EncBinary() + _ = yym1143 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -13093,8 +13642,8 @@ func (x *RunAsUserStrategy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1093 := z.DecBinary() - _ = yym1093 + yym1144 := z.DecBinary() + _ = yym1144 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -13109,54 +13658,54 @@ func (x *FSGroupStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1094 := z.EncBinary() - _ = yym1094 + yym1145 := z.EncBinary() + _ = yym1145 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1095 := !z.EncBinary() - yy2arr1095 := z.EncBasicHandle().StructToArray - var yyq1095 [2]bool - _, _, _ = yysep1095, yyq1095, yy2arr1095 - const yyr1095 bool = false - yyq1095[0] = x.Rule != "" - yyq1095[1] = len(x.Ranges) != 0 - var yynn1095 int - if yyr1095 || yy2arr1095 { + yysep1146 := !z.EncBinary() + yy2arr1146 := z.EncBasicHandle().StructToArray + var yyq1146 [2]bool + _, _, _ = yysep1146, yyq1146, yy2arr1146 + const yyr1146 bool = false + yyq1146[0] = x.Rule != "" + yyq1146[1] = len(x.Ranges) != 0 + var yynn1146 int + if yyr1146 || yy2arr1146 { r.EncodeArrayStart(2) } else { - yynn1095 = 0 - for _, b := range yyq1095 { + yynn1146 = 0 + for _, b := range yyq1146 { if b { - yynn1095++ + yynn1146++ } } - r.EncodeMapStart(yynn1095) - yynn1095 = 0 + r.EncodeMapStart(yynn1146) + yynn1146 = 0 } - if yyr1095 || yy2arr1095 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1095[0] { + if yyq1146[0] { x.Rule.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1095[0] { + if yyq1146[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rule")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Rule.CodecEncodeSelf(e) } } - if yyr1095 || yy2arr1095 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1095[1] { + if yyq1146[1] { if x.Ranges == nil { r.EncodeNil() } else { - yym1098 := z.EncBinary() - _ = yym1098 + yym1149 := z.EncBinary() + _ = yym1149 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -13166,15 +13715,15 @@ func (x *FSGroupStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1095[1] { + if yyq1146[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ranges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ranges == nil { r.EncodeNil() } else { - yym1099 := z.EncBinary() - _ = yym1099 + yym1150 := z.EncBinary() + _ = yym1150 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -13182,7 +13731,7 @@ func (x *FSGroupStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1095 || yy2arr1095 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13195,25 +13744,25 @@ func (x *FSGroupStrategyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1100 := z.DecBinary() - _ = yym1100 + yym1151 := z.DecBinary() + _ = yym1151 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1101 := r.ContainerType() - if yyct1101 == codecSelferValueTypeMap1234 { - yyl1101 := r.ReadMapStart() - if yyl1101 == 0 { + yyct1152 := r.ContainerType() + if yyct1152 == codecSelferValueTypeMap1234 { + yyl1152 := r.ReadMapStart() + if yyl1152 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1101, d) + x.codecDecodeSelfFromMap(yyl1152, d) } - } else if yyct1101 == codecSelferValueTypeArray1234 { - yyl1101 := r.ReadArrayStart() - if yyl1101 == 0 { + } else if yyct1152 == codecSelferValueTypeArray1234 { + yyl1152 := r.ReadArrayStart() + if yyl1152 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1101, d) + x.codecDecodeSelfFromArray(yyl1152, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13225,12 +13774,12 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1102Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1102Slc - var yyhl1102 bool = l >= 0 - for yyj1102 := 0; ; yyj1102++ { - if yyhl1102 { - if yyj1102 >= l { + var yys1153Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1153Slc + var yyhl1153 bool = l >= 0 + for yyj1153 := 0; ; yyj1153++ { + if yyhl1153 { + if yyj1153 >= l { break } } else { @@ -13239,10 +13788,10 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1102Slc = r.DecodeBytes(yys1102Slc, true, true) - yys1102 := string(yys1102Slc) + yys1153Slc = r.DecodeBytes(yys1153Slc, true, true) + yys1153 := string(yys1153Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1102 { + switch yys1153 { case "rule": if r.TryDecodeAsNil() { x.Rule = "" @@ -13253,18 +13802,18 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1104 := &x.Ranges - yym1105 := z.DecBinary() - _ = yym1105 + yyv1155 := &x.Ranges + yym1156 := z.DecBinary() + _ = yym1156 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1104), d) + h.decSliceIDRange((*[]IDRange)(yyv1155), d) } } default: - z.DecStructFieldNotFound(-1, yys1102) - } // end switch yys1102 - } // end for yyj1102 + z.DecStructFieldNotFound(-1, yys1153) + } // end switch yys1153 + } // end for yyj1153 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13272,16 +13821,16 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1106 int - var yyb1106 bool - var yyhl1106 bool = l >= 0 - yyj1106++ - if yyhl1106 { - yyb1106 = yyj1106 > l + var yyj1157 int + var yyb1157 bool + var yyhl1157 bool = l >= 0 + yyj1157++ + if yyhl1157 { + yyb1157 = yyj1157 > l } else { - yyb1106 = r.CheckBreak() + yyb1157 = r.CheckBreak() } - if yyb1106 { + if yyb1157 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13291,13 +13840,13 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Rule = FSGroupStrategyType(r.DecodeString()) } - yyj1106++ - if yyhl1106 { - yyb1106 = yyj1106 > l + yyj1157++ + if yyhl1157 { + yyb1157 = yyj1157 > l } else { - yyb1106 = r.CheckBreak() + yyb1157 = r.CheckBreak() } - if yyb1106 { + if yyb1157 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13305,26 +13854,26 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1108 := &x.Ranges - yym1109 := z.DecBinary() - _ = yym1109 + yyv1159 := &x.Ranges + yym1160 := z.DecBinary() + _ = yym1160 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1108), d) + h.decSliceIDRange((*[]IDRange)(yyv1159), d) } } for { - yyj1106++ - if yyhl1106 { - yyb1106 = yyj1106 > l + yyj1157++ + if yyhl1157 { + yyb1157 = yyj1157 > l } else { - yyb1106 = r.CheckBreak() + yyb1157 = r.CheckBreak() } - if yyb1106 { + if yyb1157 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1106-1, "") + z.DecStructFieldNotFound(yyj1157-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13333,8 +13882,8 @@ func (x FSGroupStrategyType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1110 := z.EncBinary() - _ = yym1110 + yym1161 := z.EncBinary() + _ = yym1161 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -13346,8 +13895,8 @@ func (x *FSGroupStrategyType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1111 := z.DecBinary() - _ = yym1111 + yym1162 := z.DecBinary() + _ = yym1162 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -13362,54 +13911,54 @@ func (x *SupplementalGroupsStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder if x == nil { r.EncodeNil() } else { - yym1112 := z.EncBinary() - _ = yym1112 + yym1163 := z.EncBinary() + _ = yym1163 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1113 := !z.EncBinary() - yy2arr1113 := z.EncBasicHandle().StructToArray - var yyq1113 [2]bool - _, _, _ = yysep1113, yyq1113, yy2arr1113 - const yyr1113 bool = false - yyq1113[0] = x.Rule != "" - yyq1113[1] = len(x.Ranges) != 0 - var yynn1113 int - if yyr1113 || yy2arr1113 { + yysep1164 := !z.EncBinary() + yy2arr1164 := z.EncBasicHandle().StructToArray + var yyq1164 [2]bool + _, _, _ = yysep1164, yyq1164, yy2arr1164 + const yyr1164 bool = false + yyq1164[0] = x.Rule != "" + yyq1164[1] = len(x.Ranges) != 0 + var yynn1164 int + if yyr1164 || yy2arr1164 { r.EncodeArrayStart(2) } else { - yynn1113 = 0 - for _, b := range yyq1113 { + yynn1164 = 0 + for _, b := range yyq1164 { if b { - yynn1113++ + yynn1164++ } } - r.EncodeMapStart(yynn1113) - yynn1113 = 0 + r.EncodeMapStart(yynn1164) + yynn1164 = 0 } - if yyr1113 || yy2arr1113 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1113[0] { + if yyq1164[0] { x.Rule.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1113[0] { + if yyq1164[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rule")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Rule.CodecEncodeSelf(e) } } - if yyr1113 || yy2arr1113 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1113[1] { + if yyq1164[1] { if x.Ranges == nil { r.EncodeNil() } else { - yym1116 := z.EncBinary() - _ = yym1116 + yym1167 := z.EncBinary() + _ = yym1167 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -13419,15 +13968,15 @@ func (x *SupplementalGroupsStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder r.EncodeNil() } } else { - if yyq1113[1] { + if yyq1164[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ranges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ranges == nil { r.EncodeNil() } else { - yym1117 := z.EncBinary() - _ = yym1117 + yym1168 := z.EncBinary() + _ = yym1168 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -13435,7 +13984,7 @@ func (x *SupplementalGroupsStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder } } } - if yyr1113 || yy2arr1113 { + if yyr1164 || yy2arr1164 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13448,25 +13997,25 @@ func (x *SupplementalGroupsStrategyOptions) CodecDecodeSelf(d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1118 := z.DecBinary() - _ = yym1118 + yym1169 := z.DecBinary() + _ = yym1169 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1119 := r.ContainerType() - if yyct1119 == codecSelferValueTypeMap1234 { - yyl1119 := r.ReadMapStart() - if yyl1119 == 0 { + yyct1170 := r.ContainerType() + if yyct1170 == codecSelferValueTypeMap1234 { + yyl1170 := r.ReadMapStart() + if yyl1170 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1119, d) + x.codecDecodeSelfFromMap(yyl1170, d) } - } else if yyct1119 == codecSelferValueTypeArray1234 { - yyl1119 := r.ReadArrayStart() - if yyl1119 == 0 { + } else if yyct1170 == codecSelferValueTypeArray1234 { + yyl1170 := r.ReadArrayStart() + if yyl1170 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1119, d) + x.codecDecodeSelfFromArray(yyl1170, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13478,12 +14027,12 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromMap(l int, d *cod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1120Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1120Slc - var yyhl1120 bool = l >= 0 - for yyj1120 := 0; ; yyj1120++ { - if yyhl1120 { - if yyj1120 >= l { + var yys1171Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1171Slc + var yyhl1171 bool = l >= 0 + for yyj1171 := 0; ; yyj1171++ { + if yyhl1171 { + if yyj1171 >= l { break } } else { @@ -13492,10 +14041,10 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromMap(l int, d *cod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1120Slc = r.DecodeBytes(yys1120Slc, true, true) - yys1120 := string(yys1120Slc) + yys1171Slc = r.DecodeBytes(yys1171Slc, true, true) + yys1171 := string(yys1171Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1120 { + switch yys1171 { case "rule": if r.TryDecodeAsNil() { x.Rule = "" @@ -13506,18 +14055,18 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromMap(l int, d *cod if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1122 := &x.Ranges - yym1123 := z.DecBinary() - _ = yym1123 + yyv1173 := &x.Ranges + yym1174 := z.DecBinary() + _ = yym1174 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1122), d) + h.decSliceIDRange((*[]IDRange)(yyv1173), d) } } default: - z.DecStructFieldNotFound(-1, yys1120) - } // end switch yys1120 - } // end for yyj1120 + z.DecStructFieldNotFound(-1, yys1171) + } // end switch yys1171 + } // end for yyj1171 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13525,16 +14074,16 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromArray(l int, d *c var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1124 int - var yyb1124 bool - var yyhl1124 bool = l >= 0 - yyj1124++ - if yyhl1124 { - yyb1124 = yyj1124 > l + var yyj1175 int + var yyb1175 bool + var yyhl1175 bool = l >= 0 + yyj1175++ + if yyhl1175 { + yyb1175 = yyj1175 > l } else { - yyb1124 = r.CheckBreak() + yyb1175 = r.CheckBreak() } - if yyb1124 { + if yyb1175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13544,13 +14093,13 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromArray(l int, d *c } else { x.Rule = SupplementalGroupsStrategyType(r.DecodeString()) } - yyj1124++ - if yyhl1124 { - yyb1124 = yyj1124 > l + yyj1175++ + if yyhl1175 { + yyb1175 = yyj1175 > l } else { - yyb1124 = r.CheckBreak() + yyb1175 = r.CheckBreak() } - if yyb1124 { + if yyb1175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13558,26 +14107,26 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromArray(l int, d *c if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1126 := &x.Ranges - yym1127 := z.DecBinary() - _ = yym1127 + yyv1177 := &x.Ranges + yym1178 := z.DecBinary() + _ = yym1178 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1126), d) + h.decSliceIDRange((*[]IDRange)(yyv1177), d) } } for { - yyj1124++ - if yyhl1124 { - yyb1124 = yyj1124 > l + yyj1175++ + if yyhl1175 { + yyb1175 = yyj1175 > l } else { - yyb1124 = r.CheckBreak() + yyb1175 = r.CheckBreak() } - if yyb1124 { + if yyb1175 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1124-1, "") + z.DecStructFieldNotFound(yyj1175-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13586,8 +14135,8 @@ func (x SupplementalGroupsStrategyType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1128 := z.EncBinary() - _ = yym1128 + yym1179 := z.EncBinary() + _ = yym1179 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -13599,8 +14148,8 @@ func (x *SupplementalGroupsStrategyType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1129 := z.DecBinary() - _ = yym1129 + yym1180 := z.DecBinary() + _ = yym1180 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -13615,37 +14164,37 @@ func (x *PodSecurityPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1130 := z.EncBinary() - _ = yym1130 + yym1181 := z.EncBinary() + _ = yym1181 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1131 := !z.EncBinary() - yy2arr1131 := z.EncBasicHandle().StructToArray - var yyq1131 [4]bool - _, _, _ = yysep1131, yyq1131, yy2arr1131 - const yyr1131 bool = false - yyq1131[0] = x.Kind != "" - yyq1131[1] = x.APIVersion != "" - yyq1131[2] = true - var yynn1131 int - if yyr1131 || yy2arr1131 { + yysep1182 := !z.EncBinary() + yy2arr1182 := z.EncBasicHandle().StructToArray + var yyq1182 [4]bool + _, _, _ = yysep1182, yyq1182, yy2arr1182 + const yyr1182 bool = false + yyq1182[0] = x.Kind != "" + yyq1182[1] = x.APIVersion != "" + yyq1182[2] = true + var yynn1182 int + if yyr1182 || yy2arr1182 { r.EncodeArrayStart(4) } else { - yynn1131 = 1 - for _, b := range yyq1131 { + yynn1182 = 1 + for _, b := range yyq1182 { if b { - yynn1131++ + yynn1182++ } } - r.EncodeMapStart(yynn1131) - yynn1131 = 0 + r.EncodeMapStart(yynn1182) + yynn1182 = 0 } - if yyr1131 || yy2arr1131 { + if yyr1182 || yy2arr1182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1131[0] { - yym1133 := z.EncBinary() - _ = yym1133 + if yyq1182[0] { + yym1184 := z.EncBinary() + _ = yym1184 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -13654,23 +14203,23 @@ func (x *PodSecurityPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1131[0] { + if yyq1182[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1134 := z.EncBinary() - _ = yym1134 + yym1185 := z.EncBinary() + _ = yym1185 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1131 || yy2arr1131 { + if yyr1182 || yy2arr1182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1131[1] { - yym1136 := z.EncBinary() - _ = yym1136 + if yyq1182[1] { + yym1187 := z.EncBinary() + _ = yym1187 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -13679,54 +14228,54 @@ func (x *PodSecurityPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1131[1] { + if yyq1182[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1137 := z.EncBinary() - _ = yym1137 + yym1188 := z.EncBinary() + _ = yym1188 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1131 || yy2arr1131 { + if yyr1182 || yy2arr1182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1131[2] { - yy1139 := &x.ListMeta - yym1140 := z.EncBinary() - _ = yym1140 + if yyq1182[2] { + yy1190 := &x.ListMeta + yym1191 := z.EncBinary() + _ = yym1191 if false { - } else if z.HasExtensions() && z.EncExt(yy1139) { + } else if z.HasExtensions() && z.EncExt(yy1190) { } else { - z.EncFallback(yy1139) + z.EncFallback(yy1190) } } else { r.EncodeNil() } } else { - if yyq1131[2] { + if yyq1182[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1141 := &x.ListMeta - yym1142 := z.EncBinary() - _ = yym1142 + yy1192 := &x.ListMeta + yym1193 := z.EncBinary() + _ = yym1193 if false { - } else if z.HasExtensions() && z.EncExt(yy1141) { + } else if z.HasExtensions() && z.EncExt(yy1192) { } else { - z.EncFallback(yy1141) + z.EncFallback(yy1192) } } } - if yyr1131 || yy2arr1131 { + if yyr1182 || yy2arr1182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1144 := z.EncBinary() - _ = yym1144 + yym1195 := z.EncBinary() + _ = yym1195 if false { } else { h.encSlicePodSecurityPolicy(([]PodSecurityPolicy)(x.Items), e) @@ -13739,15 +14288,15 @@ func (x *PodSecurityPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1145 := z.EncBinary() - _ = yym1145 + yym1196 := z.EncBinary() + _ = yym1196 if false { } else { h.encSlicePodSecurityPolicy(([]PodSecurityPolicy)(x.Items), e) } } } - if yyr1131 || yy2arr1131 { + if yyr1182 || yy2arr1182 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13760,25 +14309,25 @@ func (x *PodSecurityPolicyList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1146 := z.DecBinary() - _ = yym1146 + yym1197 := z.DecBinary() + _ = yym1197 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1147 := r.ContainerType() - if yyct1147 == codecSelferValueTypeMap1234 { - yyl1147 := r.ReadMapStart() - if yyl1147 == 0 { + yyct1198 := r.ContainerType() + if yyct1198 == codecSelferValueTypeMap1234 { + yyl1198 := r.ReadMapStart() + if yyl1198 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1147, d) + x.codecDecodeSelfFromMap(yyl1198, d) } - } else if yyct1147 == codecSelferValueTypeArray1234 { - yyl1147 := r.ReadArrayStart() - if yyl1147 == 0 { + } else if yyct1198 == codecSelferValueTypeArray1234 { + yyl1198 := r.ReadArrayStart() + if yyl1198 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1147, d) + x.codecDecodeSelfFromArray(yyl1198, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13790,12 +14339,12 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1148Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1148Slc - var yyhl1148 bool = l >= 0 - for yyj1148 := 0; ; yyj1148++ { - if yyhl1148 { - if yyj1148 >= l { + var yys1199Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1199Slc + var yyhl1199 bool = l >= 0 + for yyj1199 := 0; ; yyj1199++ { + if yyhl1199 { + if yyj1199 >= l { break } } else { @@ -13804,10 +14353,10 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1148Slc = r.DecodeBytes(yys1148Slc, true, true) - yys1148 := string(yys1148Slc) + yys1199Slc = r.DecodeBytes(yys1199Slc, true, true) + yys1199 := string(yys1199Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1148 { + switch yys1199 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -13824,31 +14373,31 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg1_unversioned.ListMeta{} } else { - yyv1151 := &x.ListMeta - yym1152 := z.DecBinary() - _ = yym1152 + yyv1202 := &x.ListMeta + yym1203 := z.DecBinary() + _ = yym1203 if false { - } else if z.HasExtensions() && z.DecExt(yyv1151) { + } else if z.HasExtensions() && z.DecExt(yyv1202) { } else { - z.DecFallback(yyv1151, false) + z.DecFallback(yyv1202, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1153 := &x.Items - yym1154 := z.DecBinary() - _ = yym1154 + yyv1204 := &x.Items + yym1205 := z.DecBinary() + _ = yym1205 if false { } else { - h.decSlicePodSecurityPolicy((*[]PodSecurityPolicy)(yyv1153), d) + h.decSlicePodSecurityPolicy((*[]PodSecurityPolicy)(yyv1204), d) } } default: - z.DecStructFieldNotFound(-1, yys1148) - } // end switch yys1148 - } // end for yyj1148 + z.DecStructFieldNotFound(-1, yys1199) + } // end switch yys1199 + } // end for yyj1199 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13856,16 +14405,16 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1155 int - var yyb1155 bool - var yyhl1155 bool = l >= 0 - yyj1155++ - if yyhl1155 { - yyb1155 = yyj1155 > l + var yyj1206 int + var yyb1206 bool + var yyhl1206 bool = l >= 0 + yyj1206++ + if yyhl1206 { + yyb1206 = yyj1206 > l } else { - yyb1155 = r.CheckBreak() + yyb1206 = r.CheckBreak() } - if yyb1155 { + if yyb1206 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13875,13 +14424,13 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj1155++ - if yyhl1155 { - yyb1155 = yyj1155 > l + yyj1206++ + if yyhl1206 { + yyb1206 = yyj1206 > l } else { - yyb1155 = r.CheckBreak() + yyb1206 = r.CheckBreak() } - if yyb1155 { + if yyb1206 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13891,13 +14440,13 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj1155++ - if yyhl1155 { - yyb1155 = yyj1155 > l + yyj1206++ + if yyhl1206 { + yyb1206 = yyj1206 > l } else { - yyb1155 = r.CheckBreak() + yyb1206 = r.CheckBreak() } - if yyb1155 { + if yyb1206 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13905,22 +14454,22 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ListMeta = pkg1_unversioned.ListMeta{} } else { - yyv1158 := &x.ListMeta - yym1159 := z.DecBinary() - _ = yym1159 + yyv1209 := &x.ListMeta + yym1210 := z.DecBinary() + _ = yym1210 if false { - } else if z.HasExtensions() && z.DecExt(yyv1158) { + } else if z.HasExtensions() && z.DecExt(yyv1209) { } else { - z.DecFallback(yyv1158, false) + z.DecFallback(yyv1209, false) } } - yyj1155++ - if yyhl1155 { - yyb1155 = yyj1155 > l + yyj1206++ + if yyhl1206 { + yyb1206 = yyj1206 > l } else { - yyb1155 = r.CheckBreak() + yyb1206 = r.CheckBreak() } - if yyb1155 { + if yyb1206 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13928,26 +14477,26 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1160 := &x.Items - yym1161 := z.DecBinary() - _ = yym1161 + yyv1211 := &x.Items + yym1212 := z.DecBinary() + _ = yym1212 if false { } else { - h.decSlicePodSecurityPolicy((*[]PodSecurityPolicy)(yyv1160), d) + h.decSlicePodSecurityPolicy((*[]PodSecurityPolicy)(yyv1211), d) } } for { - yyj1155++ - if yyhl1155 { - yyb1155 = yyj1155 > l + yyj1206++ + if yyhl1206 { + yyb1206 = yyj1206 > l } else { - yyb1155 = r.CheckBreak() + yyb1206 = r.CheckBreak() } - if yyb1155 { + if yyb1206 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1155-1, "") + z.DecStructFieldNotFound(yyj1206-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13959,38 +14508,38 @@ func (x *NetworkPolicy) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1162 := z.EncBinary() - _ = yym1162 + yym1213 := z.EncBinary() + _ = yym1213 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1163 := !z.EncBinary() - yy2arr1163 := z.EncBasicHandle().StructToArray - var yyq1163 [4]bool - _, _, _ = yysep1163, yyq1163, yy2arr1163 - const yyr1163 bool = false - yyq1163[0] = x.Kind != "" - yyq1163[1] = x.APIVersion != "" - yyq1163[2] = true - yyq1163[3] = true - var yynn1163 int - if yyr1163 || yy2arr1163 { + yysep1214 := !z.EncBinary() + yy2arr1214 := z.EncBasicHandle().StructToArray + var yyq1214 [4]bool + _, _, _ = yysep1214, yyq1214, yy2arr1214 + const yyr1214 bool = false + yyq1214[0] = x.Kind != "" + yyq1214[1] = x.APIVersion != "" + yyq1214[2] = true + yyq1214[3] = true + var yynn1214 int + if yyr1214 || yy2arr1214 { r.EncodeArrayStart(4) } else { - yynn1163 = 0 - for _, b := range yyq1163 { + yynn1214 = 0 + for _, b := range yyq1214 { if b { - yynn1163++ + yynn1214++ } } - r.EncodeMapStart(yynn1163) - yynn1163 = 0 + r.EncodeMapStart(yynn1214) + yynn1214 = 0 } - if yyr1163 || yy2arr1163 { + if yyr1214 || yy2arr1214 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1163[0] { - yym1165 := z.EncBinary() - _ = yym1165 + if yyq1214[0] { + yym1216 := z.EncBinary() + _ = yym1216 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -13999,23 +14548,23 @@ func (x *NetworkPolicy) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1163[0] { + if yyq1214[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1166 := z.EncBinary() - _ = yym1166 + yym1217 := z.EncBinary() + _ = yym1217 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1163 || yy2arr1163 { + if yyr1214 || yy2arr1214 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1163[1] { - yym1168 := z.EncBinary() - _ = yym1168 + if yyq1214[1] { + yym1219 := z.EncBinary() + _ = yym1219 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -14024,53 +14573,53 @@ func (x *NetworkPolicy) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1163[1] { + if yyq1214[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1169 := z.EncBinary() - _ = yym1169 + yym1220 := z.EncBinary() + _ = yym1220 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1163 || yy2arr1163 { + if yyr1214 || yy2arr1214 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1163[2] { - yy1171 := &x.ObjectMeta - yy1171.CodecEncodeSelf(e) + if yyq1214[2] { + yy1222 := &x.ObjectMeta + yy1222.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1163[2] { + if yyq1214[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1172 := &x.ObjectMeta - yy1172.CodecEncodeSelf(e) + yy1223 := &x.ObjectMeta + yy1223.CodecEncodeSelf(e) } } - if yyr1163 || yy2arr1163 { + if yyr1214 || yy2arr1214 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1163[3] { - yy1174 := &x.Spec - yy1174.CodecEncodeSelf(e) + if yyq1214[3] { + yy1225 := &x.Spec + yy1225.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1163[3] { + if yyq1214[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1175 := &x.Spec - yy1175.CodecEncodeSelf(e) + yy1226 := &x.Spec + yy1226.CodecEncodeSelf(e) } } - if yyr1163 || yy2arr1163 { + if yyr1214 || yy2arr1214 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14083,25 +14632,25 @@ func (x *NetworkPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1176 := z.DecBinary() - _ = yym1176 + yym1227 := z.DecBinary() + _ = yym1227 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1177 := r.ContainerType() - if yyct1177 == codecSelferValueTypeMap1234 { - yyl1177 := r.ReadMapStart() - if yyl1177 == 0 { + yyct1228 := r.ContainerType() + if yyct1228 == codecSelferValueTypeMap1234 { + yyl1228 := r.ReadMapStart() + if yyl1228 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1177, d) + x.codecDecodeSelfFromMap(yyl1228, d) } - } else if yyct1177 == codecSelferValueTypeArray1234 { - yyl1177 := r.ReadArrayStart() - if yyl1177 == 0 { + } else if yyct1228 == codecSelferValueTypeArray1234 { + yyl1228 := r.ReadArrayStart() + if yyl1228 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1177, d) + x.codecDecodeSelfFromArray(yyl1228, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14113,12 +14662,12 @@ func (x *NetworkPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1178Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1178Slc - var yyhl1178 bool = l >= 0 - for yyj1178 := 0; ; yyj1178++ { - if yyhl1178 { - if yyj1178 >= l { + var yys1229Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1229Slc + var yyhl1229 bool = l >= 0 + for yyj1229 := 0; ; yyj1229++ { + if yyhl1229 { + if yyj1229 >= l { break } } else { @@ -14127,10 +14676,10 @@ func (x *NetworkPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1178Slc = r.DecodeBytes(yys1178Slc, true, true) - yys1178 := string(yys1178Slc) + yys1229Slc = r.DecodeBytes(yys1229Slc, true, true) + yys1229 := string(yys1229Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1178 { + switch yys1229 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -14147,20 +14696,20 @@ func (x *NetworkPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = pkg2_api.ObjectMeta{} } else { - yyv1181 := &x.ObjectMeta - yyv1181.CodecDecodeSelf(d) + yyv1232 := &x.ObjectMeta + yyv1232.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NetworkPolicySpec{} } else { - yyv1182 := &x.Spec - yyv1182.CodecDecodeSelf(d) + yyv1233 := &x.Spec + yyv1233.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1178) - } // end switch yys1178 - } // end for yyj1178 + z.DecStructFieldNotFound(-1, yys1229) + } // end switch yys1229 + } // end for yyj1229 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14168,16 +14717,16 @@ func (x *NetworkPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1183 int - var yyb1183 bool - var yyhl1183 bool = l >= 0 - yyj1183++ - if yyhl1183 { - yyb1183 = yyj1183 > l + var yyj1234 int + var yyb1234 bool + var yyhl1234 bool = l >= 0 + yyj1234++ + if yyhl1234 { + yyb1234 = yyj1234 > l } else { - yyb1183 = r.CheckBreak() + yyb1234 = r.CheckBreak() } - if yyb1183 { + if yyb1234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14187,13 +14736,13 @@ func (x *NetworkPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1183++ - if yyhl1183 { - yyb1183 = yyj1183 > l + yyj1234++ + if yyhl1234 { + yyb1234 = yyj1234 > l } else { - yyb1183 = r.CheckBreak() + yyb1234 = r.CheckBreak() } - if yyb1183 { + if yyb1234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14203,13 +14752,13 @@ func (x *NetworkPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1183++ - if yyhl1183 { - yyb1183 = yyj1183 > l + yyj1234++ + if yyhl1234 { + yyb1234 = yyj1234 > l } else { - yyb1183 = r.CheckBreak() + yyb1234 = r.CheckBreak() } - if yyb1183 { + if yyb1234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14217,16 +14766,16 @@ func (x *NetworkPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = pkg2_api.ObjectMeta{} } else { - yyv1186 := &x.ObjectMeta - yyv1186.CodecDecodeSelf(d) + yyv1237 := &x.ObjectMeta + yyv1237.CodecDecodeSelf(d) } - yyj1183++ - if yyhl1183 { - yyb1183 = yyj1183 > l + yyj1234++ + if yyhl1234 { + yyb1234 = yyj1234 > l } else { - yyb1183 = r.CheckBreak() + yyb1234 = r.CheckBreak() } - if yyb1183 { + if yyb1234 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14234,21 +14783,21 @@ func (x *NetworkPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NetworkPolicySpec{} } else { - yyv1187 := &x.Spec - yyv1187.CodecDecodeSelf(d) + yyv1238 := &x.Spec + yyv1238.CodecDecodeSelf(d) } for { - yyj1183++ - if yyhl1183 { - yyb1183 = yyj1183 > l + yyj1234++ + if yyhl1234 { + yyb1234 = yyj1234 > l } else { - yyb1183 = r.CheckBreak() + yyb1234 = r.CheckBreak() } - if yyb1183 { + if yyb1234 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1183-1, "") + z.DecStructFieldNotFound(yyj1234-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14260,61 +14809,61 @@ func (x *NetworkPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1188 := z.EncBinary() - _ = yym1188 + yym1239 := z.EncBinary() + _ = yym1239 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1189 := !z.EncBinary() - yy2arr1189 := z.EncBasicHandle().StructToArray - var yyq1189 [2]bool - _, _, _ = yysep1189, yyq1189, yy2arr1189 - const yyr1189 bool = false - yyq1189[1] = len(x.Ingress) != 0 - var yynn1189 int - if yyr1189 || yy2arr1189 { + yysep1240 := !z.EncBinary() + yy2arr1240 := z.EncBasicHandle().StructToArray + var yyq1240 [2]bool + _, _, _ = yysep1240, yyq1240, yy2arr1240 + const yyr1240 bool = false + yyq1240[1] = len(x.Ingress) != 0 + var yynn1240 int + if yyr1240 || yy2arr1240 { r.EncodeArrayStart(2) } else { - yynn1189 = 1 - for _, b := range yyq1189 { + yynn1240 = 1 + for _, b := range yyq1240 { if b { - yynn1189++ + yynn1240++ } } - r.EncodeMapStart(yynn1189) - yynn1189 = 0 + r.EncodeMapStart(yynn1240) + yynn1240 = 0 } - if yyr1189 || yy2arr1189 { + if yyr1240 || yy2arr1240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1191 := &x.PodSelector - yym1192 := z.EncBinary() - _ = yym1192 + yy1242 := &x.PodSelector + yym1243 := z.EncBinary() + _ = yym1243 if false { - } else if z.HasExtensions() && z.EncExt(yy1191) { + } else if z.HasExtensions() && z.EncExt(yy1242) { } else { - z.EncFallback(yy1191) + z.EncFallback(yy1242) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1193 := &x.PodSelector - yym1194 := z.EncBinary() - _ = yym1194 + yy1244 := &x.PodSelector + yym1245 := z.EncBinary() + _ = yym1245 if false { - } else if z.HasExtensions() && z.EncExt(yy1193) { + } else if z.HasExtensions() && z.EncExt(yy1244) { } else { - z.EncFallback(yy1193) + z.EncFallback(yy1244) } } - if yyr1189 || yy2arr1189 { + if yyr1240 || yy2arr1240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1189[1] { + if yyq1240[1] { if x.Ingress == nil { r.EncodeNil() } else { - yym1196 := z.EncBinary() - _ = yym1196 + yym1247 := z.EncBinary() + _ = yym1247 if false { } else { h.encSliceNetworkPolicyIngressRule(([]NetworkPolicyIngressRule)(x.Ingress), e) @@ -14324,15 +14873,15 @@ func (x *NetworkPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1189[1] { + if yyq1240[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym1197 := z.EncBinary() - _ = yym1197 + yym1248 := z.EncBinary() + _ = yym1248 if false { } else { h.encSliceNetworkPolicyIngressRule(([]NetworkPolicyIngressRule)(x.Ingress), e) @@ -14340,7 +14889,7 @@ func (x *NetworkPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1189 || yy2arr1189 { + if yyr1240 || yy2arr1240 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14353,25 +14902,25 @@ func (x *NetworkPolicySpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1198 := z.DecBinary() - _ = yym1198 + yym1249 := z.DecBinary() + _ = yym1249 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1199 := r.ContainerType() - if yyct1199 == codecSelferValueTypeMap1234 { - yyl1199 := r.ReadMapStart() - if yyl1199 == 0 { + yyct1250 := r.ContainerType() + if yyct1250 == codecSelferValueTypeMap1234 { + yyl1250 := r.ReadMapStart() + if yyl1250 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1199, d) + x.codecDecodeSelfFromMap(yyl1250, d) } - } else if yyct1199 == codecSelferValueTypeArray1234 { - yyl1199 := r.ReadArrayStart() - if yyl1199 == 0 { + } else if yyct1250 == codecSelferValueTypeArray1234 { + yyl1250 := r.ReadArrayStart() + if yyl1250 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1199, d) + x.codecDecodeSelfFromArray(yyl1250, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14383,12 +14932,12 @@ func (x *NetworkPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1200Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1200Slc - var yyhl1200 bool = l >= 0 - for yyj1200 := 0; ; yyj1200++ { - if yyhl1200 { - if yyj1200 >= l { + var yys1251Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1251Slc + var yyhl1251 bool = l >= 0 + for yyj1251 := 0; ; yyj1251++ { + if yyhl1251 { + if yyj1251 >= l { break } } else { @@ -14397,39 +14946,39 @@ func (x *NetworkPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1200Slc = r.DecodeBytes(yys1200Slc, true, true) - yys1200 := string(yys1200Slc) + yys1251Slc = r.DecodeBytes(yys1251Slc, true, true) + yys1251 := string(yys1251Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1200 { + switch yys1251 { case "podSelector": if r.TryDecodeAsNil() { x.PodSelector = pkg1_unversioned.LabelSelector{} } else { - yyv1201 := &x.PodSelector - yym1202 := z.DecBinary() - _ = yym1202 + yyv1252 := &x.PodSelector + yym1253 := z.DecBinary() + _ = yym1253 if false { - } else if z.HasExtensions() && z.DecExt(yyv1201) { + } else if z.HasExtensions() && z.DecExt(yyv1252) { } else { - z.DecFallback(yyv1201, false) + z.DecFallback(yyv1252, false) } } case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv1203 := &x.Ingress - yym1204 := z.DecBinary() - _ = yym1204 + yyv1254 := &x.Ingress + yym1255 := z.DecBinary() + _ = yym1255 if false { } else { - h.decSliceNetworkPolicyIngressRule((*[]NetworkPolicyIngressRule)(yyv1203), d) + h.decSliceNetworkPolicyIngressRule((*[]NetworkPolicyIngressRule)(yyv1254), d) } } default: - z.DecStructFieldNotFound(-1, yys1200) - } // end switch yys1200 - } // end for yyj1200 + z.DecStructFieldNotFound(-1, yys1251) + } // end switch yys1251 + } // end for yyj1251 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14437,16 +14986,16 @@ func (x *NetworkPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1205 int - var yyb1205 bool - var yyhl1205 bool = l >= 0 - yyj1205++ - if yyhl1205 { - yyb1205 = yyj1205 > l + var yyj1256 int + var yyb1256 bool + var yyhl1256 bool = l >= 0 + yyj1256++ + if yyhl1256 { + yyb1256 = yyj1256 > l } else { - yyb1205 = r.CheckBreak() + yyb1256 = r.CheckBreak() } - if yyb1205 { + if yyb1256 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14454,22 +15003,22 @@ func (x *NetworkPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.PodSelector = pkg1_unversioned.LabelSelector{} } else { - yyv1206 := &x.PodSelector - yym1207 := z.DecBinary() - _ = yym1207 + yyv1257 := &x.PodSelector + yym1258 := z.DecBinary() + _ = yym1258 if false { - } else if z.HasExtensions() && z.DecExt(yyv1206) { + } else if z.HasExtensions() && z.DecExt(yyv1257) { } else { - z.DecFallback(yyv1206, false) + z.DecFallback(yyv1257, false) } } - yyj1205++ - if yyhl1205 { - yyb1205 = yyj1205 > l + yyj1256++ + if yyhl1256 { + yyb1256 = yyj1256 > l } else { - yyb1205 = r.CheckBreak() + yyb1256 = r.CheckBreak() } - if yyb1205 { + if yyb1256 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14477,26 +15026,26 @@ func (x *NetworkPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv1208 := &x.Ingress - yym1209 := z.DecBinary() - _ = yym1209 + yyv1259 := &x.Ingress + yym1260 := z.DecBinary() + _ = yym1260 if false { } else { - h.decSliceNetworkPolicyIngressRule((*[]NetworkPolicyIngressRule)(yyv1208), d) + h.decSliceNetworkPolicyIngressRule((*[]NetworkPolicyIngressRule)(yyv1259), d) } } for { - yyj1205++ - if yyhl1205 { - yyb1205 = yyj1205 > l + yyj1256++ + if yyhl1256 { + yyb1256 = yyj1256 > l } else { - yyb1205 = r.CheckBreak() + yyb1256 = r.CheckBreak() } - if yyb1205 { + if yyb1256 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1205-1, "") + z.DecStructFieldNotFound(yyj1256-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14508,39 +15057,39 @@ func (x *NetworkPolicyIngressRule) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1210 := z.EncBinary() - _ = yym1210 + yym1261 := z.EncBinary() + _ = yym1261 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1211 := !z.EncBinary() - yy2arr1211 := z.EncBasicHandle().StructToArray - var yyq1211 [2]bool - _, _, _ = yysep1211, yyq1211, yy2arr1211 - const yyr1211 bool = false - yyq1211[0] = len(x.Ports) != 0 - yyq1211[1] = len(x.From) != 0 - var yynn1211 int - if yyr1211 || yy2arr1211 { + yysep1262 := !z.EncBinary() + yy2arr1262 := z.EncBasicHandle().StructToArray + var yyq1262 [2]bool + _, _, _ = yysep1262, yyq1262, yy2arr1262 + const yyr1262 bool = false + yyq1262[0] = len(x.Ports) != 0 + yyq1262[1] = len(x.From) != 0 + var yynn1262 int + if yyr1262 || yy2arr1262 { r.EncodeArrayStart(2) } else { - yynn1211 = 0 - for _, b := range yyq1211 { + yynn1262 = 0 + for _, b := range yyq1262 { if b { - yynn1211++ + yynn1262++ } } - r.EncodeMapStart(yynn1211) - yynn1211 = 0 + r.EncodeMapStart(yynn1262) + yynn1262 = 0 } - if yyr1211 || yy2arr1211 { + if yyr1262 || yy2arr1262 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1211[0] { + if yyq1262[0] { if x.Ports == nil { r.EncodeNil() } else { - yym1213 := z.EncBinary() - _ = yym1213 + yym1264 := z.EncBinary() + _ = yym1264 if false { } else { h.encSliceNetworkPolicyPort(([]NetworkPolicyPort)(x.Ports), e) @@ -14550,15 +15099,15 @@ func (x *NetworkPolicyIngressRule) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1211[0] { + if yyq1262[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym1214 := z.EncBinary() - _ = yym1214 + yym1265 := z.EncBinary() + _ = yym1265 if false { } else { h.encSliceNetworkPolicyPort(([]NetworkPolicyPort)(x.Ports), e) @@ -14566,14 +15115,14 @@ func (x *NetworkPolicyIngressRule) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1211 || yy2arr1211 { + if yyr1262 || yy2arr1262 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1211[1] { + if yyq1262[1] { if x.From == nil { r.EncodeNil() } else { - yym1216 := z.EncBinary() - _ = yym1216 + yym1267 := z.EncBinary() + _ = yym1267 if false { } else { h.encSliceNetworkPolicyPeer(([]NetworkPolicyPeer)(x.From), e) @@ -14583,15 +15132,15 @@ func (x *NetworkPolicyIngressRule) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1211[1] { + if yyq1262[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("from")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.From == nil { r.EncodeNil() } else { - yym1217 := z.EncBinary() - _ = yym1217 + yym1268 := z.EncBinary() + _ = yym1268 if false { } else { h.encSliceNetworkPolicyPeer(([]NetworkPolicyPeer)(x.From), e) @@ -14599,7 +15148,7 @@ func (x *NetworkPolicyIngressRule) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1211 || yy2arr1211 { + if yyr1262 || yy2arr1262 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14612,25 +15161,25 @@ func (x *NetworkPolicyIngressRule) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1218 := z.DecBinary() - _ = yym1218 + yym1269 := z.DecBinary() + _ = yym1269 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1219 := r.ContainerType() - if yyct1219 == codecSelferValueTypeMap1234 { - yyl1219 := r.ReadMapStart() - if yyl1219 == 0 { + yyct1270 := r.ContainerType() + if yyct1270 == codecSelferValueTypeMap1234 { + yyl1270 := r.ReadMapStart() + if yyl1270 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1219, d) + x.codecDecodeSelfFromMap(yyl1270, d) } - } else if yyct1219 == codecSelferValueTypeArray1234 { - yyl1219 := r.ReadArrayStart() - if yyl1219 == 0 { + } else if yyct1270 == codecSelferValueTypeArray1234 { + yyl1270 := r.ReadArrayStart() + if yyl1270 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1219, d) + x.codecDecodeSelfFromArray(yyl1270, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14642,12 +15191,12 @@ func (x *NetworkPolicyIngressRule) codecDecodeSelfFromMap(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1220Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1220Slc - var yyhl1220 bool = l >= 0 - for yyj1220 := 0; ; yyj1220++ { - if yyhl1220 { - if yyj1220 >= l { + var yys1271Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1271Slc + var yyhl1271 bool = l >= 0 + for yyj1271 := 0; ; yyj1271++ { + if yyhl1271 { + if yyj1271 >= l { break } } else { @@ -14656,38 +15205,38 @@ func (x *NetworkPolicyIngressRule) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1220Slc = r.DecodeBytes(yys1220Slc, true, true) - yys1220 := string(yys1220Slc) + yys1271Slc = r.DecodeBytes(yys1271Slc, true, true) + yys1271 := string(yys1271Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1220 { + switch yys1271 { case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1221 := &x.Ports - yym1222 := z.DecBinary() - _ = yym1222 + yyv1272 := &x.Ports + yym1273 := z.DecBinary() + _ = yym1273 if false { } else { - h.decSliceNetworkPolicyPort((*[]NetworkPolicyPort)(yyv1221), d) + h.decSliceNetworkPolicyPort((*[]NetworkPolicyPort)(yyv1272), d) } } case "from": if r.TryDecodeAsNil() { x.From = nil } else { - yyv1223 := &x.From - yym1224 := z.DecBinary() - _ = yym1224 + yyv1274 := &x.From + yym1275 := z.DecBinary() + _ = yym1275 if false { } else { - h.decSliceNetworkPolicyPeer((*[]NetworkPolicyPeer)(yyv1223), d) + h.decSliceNetworkPolicyPeer((*[]NetworkPolicyPeer)(yyv1274), d) } } default: - z.DecStructFieldNotFound(-1, yys1220) - } // end switch yys1220 - } // end for yyj1220 + z.DecStructFieldNotFound(-1, yys1271) + } // end switch yys1271 + } // end for yyj1271 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14695,16 +15244,16 @@ func (x *NetworkPolicyIngressRule) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1225 int - var yyb1225 bool - var yyhl1225 bool = l >= 0 - yyj1225++ - if yyhl1225 { - yyb1225 = yyj1225 > l + var yyj1276 int + var yyb1276 bool + var yyhl1276 bool = l >= 0 + yyj1276++ + if yyhl1276 { + yyb1276 = yyj1276 > l } else { - yyb1225 = r.CheckBreak() + yyb1276 = r.CheckBreak() } - if yyb1225 { + if yyb1276 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14712,21 +15261,21 @@ func (x *NetworkPolicyIngressRule) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1226 := &x.Ports - yym1227 := z.DecBinary() - _ = yym1227 + yyv1277 := &x.Ports + yym1278 := z.DecBinary() + _ = yym1278 if false { } else { - h.decSliceNetworkPolicyPort((*[]NetworkPolicyPort)(yyv1226), d) + h.decSliceNetworkPolicyPort((*[]NetworkPolicyPort)(yyv1277), d) } } - yyj1225++ - if yyhl1225 { - yyb1225 = yyj1225 > l + yyj1276++ + if yyhl1276 { + yyb1276 = yyj1276 > l } else { - yyb1225 = r.CheckBreak() + yyb1276 = r.CheckBreak() } - if yyb1225 { + if yyb1276 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14734,26 +15283,26 @@ func (x *NetworkPolicyIngressRule) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.From = nil } else { - yyv1228 := &x.From - yym1229 := z.DecBinary() - _ = yym1229 + yyv1279 := &x.From + yym1280 := z.DecBinary() + _ = yym1280 if false { } else { - h.decSliceNetworkPolicyPeer((*[]NetworkPolicyPeer)(yyv1228), d) + h.decSliceNetworkPolicyPeer((*[]NetworkPolicyPeer)(yyv1279), d) } } for { - yyj1225++ - if yyhl1225 { - yyb1225 = yyj1225 > l + yyj1276++ + if yyhl1276 { + yyb1276 = yyj1276 > l } else { - yyb1225 = r.CheckBreak() + yyb1276 = r.CheckBreak() } - if yyb1225 { + if yyb1276 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1225-1, "") + z.DecStructFieldNotFound(yyj1276-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14765,79 +15314,79 @@ func (x *NetworkPolicyPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1230 := z.EncBinary() - _ = yym1230 + yym1281 := z.EncBinary() + _ = yym1281 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1231 := !z.EncBinary() - yy2arr1231 := z.EncBasicHandle().StructToArray - var yyq1231 [2]bool - _, _, _ = yysep1231, yyq1231, yy2arr1231 - const yyr1231 bool = false - yyq1231[0] = x.Protocol != nil - yyq1231[1] = x.Port != nil - var yynn1231 int - if yyr1231 || yy2arr1231 { + yysep1282 := !z.EncBinary() + yy2arr1282 := z.EncBasicHandle().StructToArray + var yyq1282 [2]bool + _, _, _ = yysep1282, yyq1282, yy2arr1282 + const yyr1282 bool = false + yyq1282[0] = x.Protocol != nil + yyq1282[1] = x.Port != nil + var yynn1282 int + if yyr1282 || yy2arr1282 { r.EncodeArrayStart(2) } else { - yynn1231 = 0 - for _, b := range yyq1231 { + yynn1282 = 0 + for _, b := range yyq1282 { if b { - yynn1231++ + yynn1282++ } } - r.EncodeMapStart(yynn1231) - yynn1231 = 0 + r.EncodeMapStart(yynn1282) + yynn1282 = 0 } - if yyr1231 || yy2arr1231 { + if yyr1282 || yy2arr1282 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1231[0] { + if yyq1282[0] { if x.Protocol == nil { r.EncodeNil() } else { - yy1233 := *x.Protocol - yym1234 := z.EncBinary() - _ = yym1234 + yy1284 := *x.Protocol + yym1285 := z.EncBinary() + _ = yym1285 if false { - } else if z.HasExtensions() && z.EncExt(yy1233) { + } else if z.HasExtensions() && z.EncExt(yy1284) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy1233)) + r.EncodeString(codecSelferC_UTF81234, string(yy1284)) } } } else { r.EncodeNil() } } else { - if yyq1231[0] { + if yyq1282[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Protocol == nil { r.EncodeNil() } else { - yy1235 := *x.Protocol - yym1236 := z.EncBinary() - _ = yym1236 + yy1286 := *x.Protocol + yym1287 := z.EncBinary() + _ = yym1287 if false { - } else if z.HasExtensions() && z.EncExt(yy1235) { + } else if z.HasExtensions() && z.EncExt(yy1286) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy1235)) + r.EncodeString(codecSelferC_UTF81234, string(yy1286)) } } } } - if yyr1231 || yy2arr1231 { + if yyr1282 || yy2arr1282 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1231[1] { + if yyq1282[1] { if x.Port == nil { r.EncodeNil() } else { - yym1238 := z.EncBinary() - _ = yym1238 + yym1289 := z.EncBinary() + _ = yym1289 if false { } else if z.HasExtensions() && z.EncExt(x.Port) { - } else if !yym1238 && z.IsJSONHandle() { + } else if !yym1289 && z.IsJSONHandle() { z.EncJSONMarshal(x.Port) } else { z.EncFallback(x.Port) @@ -14847,18 +15396,18 @@ func (x *NetworkPolicyPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1231[1] { + if yyq1282[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Port == nil { r.EncodeNil() } else { - yym1239 := z.EncBinary() - _ = yym1239 + yym1290 := z.EncBinary() + _ = yym1290 if false { } else if z.HasExtensions() && z.EncExt(x.Port) { - } else if !yym1239 && z.IsJSONHandle() { + } else if !yym1290 && z.IsJSONHandle() { z.EncJSONMarshal(x.Port) } else { z.EncFallback(x.Port) @@ -14866,7 +15415,7 @@ func (x *NetworkPolicyPort) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1231 || yy2arr1231 { + if yyr1282 || yy2arr1282 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14879,25 +15428,25 @@ func (x *NetworkPolicyPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1240 := z.DecBinary() - _ = yym1240 + yym1291 := z.DecBinary() + _ = yym1291 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1241 := r.ContainerType() - if yyct1241 == codecSelferValueTypeMap1234 { - yyl1241 := r.ReadMapStart() - if yyl1241 == 0 { + yyct1292 := r.ContainerType() + if yyct1292 == codecSelferValueTypeMap1234 { + yyl1292 := r.ReadMapStart() + if yyl1292 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1241, d) + x.codecDecodeSelfFromMap(yyl1292, d) } - } else if yyct1241 == codecSelferValueTypeArray1234 { - yyl1241 := r.ReadArrayStart() - if yyl1241 == 0 { + } else if yyct1292 == codecSelferValueTypeArray1234 { + yyl1292 := r.ReadArrayStart() + if yyl1292 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1241, d) + x.codecDecodeSelfFromArray(yyl1292, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14909,12 +15458,12 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1242Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1242Slc - var yyhl1242 bool = l >= 0 - for yyj1242 := 0; ; yyj1242++ { - if yyhl1242 { - if yyj1242 >= l { + var yys1293Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1293Slc + var yyhl1293 bool = l >= 0 + for yyj1293 := 0; ; yyj1293++ { + if yyhl1293 { + if yyj1293 >= l { break } } else { @@ -14923,10 +15472,10 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1242Slc = r.DecodeBytes(yys1242Slc, true, true) - yys1242 := string(yys1242Slc) + yys1293Slc = r.DecodeBytes(yys1293Slc, true, true) + yys1293 := string(yys1293Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1242 { + switch yys1293 { case "protocol": if r.TryDecodeAsNil() { if x.Protocol != nil { @@ -14947,20 +15496,20 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.Port == nil { x.Port = new(pkg5_intstr.IntOrString) } - yym1245 := z.DecBinary() - _ = yym1245 + yym1296 := z.DecBinary() + _ = yym1296 if false { } else if z.HasExtensions() && z.DecExt(x.Port) { - } else if !yym1245 && z.IsJSONHandle() { + } else if !yym1296 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.Port) } else { z.DecFallback(x.Port, false) } } default: - z.DecStructFieldNotFound(-1, yys1242) - } // end switch yys1242 - } // end for yyj1242 + z.DecStructFieldNotFound(-1, yys1293) + } // end switch yys1293 + } // end for yyj1293 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14968,16 +15517,16 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1246 int - var yyb1246 bool - var yyhl1246 bool = l >= 0 - yyj1246++ - if yyhl1246 { - yyb1246 = yyj1246 > l + var yyj1297 int + var yyb1297 bool + var yyhl1297 bool = l >= 0 + yyj1297++ + if yyhl1297 { + yyb1297 = yyj1297 > l } else { - yyb1246 = r.CheckBreak() + yyb1297 = r.CheckBreak() } - if yyb1246 { + if yyb1297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14992,13 +15541,13 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } x.Protocol.CodecDecodeSelf(d) } - yyj1246++ - if yyhl1246 { - yyb1246 = yyj1246 > l + yyj1297++ + if yyhl1297 { + yyb1297 = yyj1297 > l } else { - yyb1246 = r.CheckBreak() + yyb1297 = r.CheckBreak() } - if yyb1246 { + if yyb1297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15011,28 +15560,28 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if x.Port == nil { x.Port = new(pkg5_intstr.IntOrString) } - yym1249 := z.DecBinary() - _ = yym1249 + yym1300 := z.DecBinary() + _ = yym1300 if false { } else if z.HasExtensions() && z.DecExt(x.Port) { - } else if !yym1249 && z.IsJSONHandle() { + } else if !yym1300 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.Port) } else { z.DecFallback(x.Port, false) } } for { - yyj1246++ - if yyhl1246 { - yyb1246 = yyj1246 > l + yyj1297++ + if yyhl1297 { + yyb1297 = yyj1297 > l } else { - yyb1246 = r.CheckBreak() + yyb1297 = r.CheckBreak() } - if yyb1246 { + if yyb1297 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1246-1, "") + z.DecStructFieldNotFound(yyj1297-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15044,39 +15593,39 @@ func (x *NetworkPolicyPeer) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1250 := z.EncBinary() - _ = yym1250 + yym1301 := z.EncBinary() + _ = yym1301 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1251 := !z.EncBinary() - yy2arr1251 := z.EncBasicHandle().StructToArray - var yyq1251 [2]bool - _, _, _ = yysep1251, yyq1251, yy2arr1251 - const yyr1251 bool = false - yyq1251[0] = x.PodSelector != nil - yyq1251[1] = x.NamespaceSelector != nil - var yynn1251 int - if yyr1251 || yy2arr1251 { + yysep1302 := !z.EncBinary() + yy2arr1302 := z.EncBasicHandle().StructToArray + var yyq1302 [2]bool + _, _, _ = yysep1302, yyq1302, yy2arr1302 + const yyr1302 bool = false + yyq1302[0] = x.PodSelector != nil + yyq1302[1] = x.NamespaceSelector != nil + var yynn1302 int + if yyr1302 || yy2arr1302 { r.EncodeArrayStart(2) } else { - yynn1251 = 0 - for _, b := range yyq1251 { + yynn1302 = 0 + for _, b := range yyq1302 { if b { - yynn1251++ + yynn1302++ } } - r.EncodeMapStart(yynn1251) - yynn1251 = 0 + r.EncodeMapStart(yynn1302) + yynn1302 = 0 } - if yyr1251 || yy2arr1251 { + if yyr1302 || yy2arr1302 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1251[0] { + if yyq1302[0] { if x.PodSelector == nil { r.EncodeNil() } else { - yym1253 := z.EncBinary() - _ = yym1253 + yym1304 := z.EncBinary() + _ = yym1304 if false { } else if z.HasExtensions() && z.EncExt(x.PodSelector) { } else { @@ -15087,15 +15636,15 @@ func (x *NetworkPolicyPeer) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1251[0] { + if yyq1302[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PodSelector == nil { r.EncodeNil() } else { - yym1254 := z.EncBinary() - _ = yym1254 + yym1305 := z.EncBinary() + _ = yym1305 if false { } else if z.HasExtensions() && z.EncExt(x.PodSelector) { } else { @@ -15104,14 +15653,14 @@ func (x *NetworkPolicyPeer) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1251 || yy2arr1251 { + if yyr1302 || yy2arr1302 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1251[1] { + if yyq1302[1] { if x.NamespaceSelector == nil { r.EncodeNil() } else { - yym1256 := z.EncBinary() - _ = yym1256 + yym1307 := z.EncBinary() + _ = yym1307 if false { } else if z.HasExtensions() && z.EncExt(x.NamespaceSelector) { } else { @@ -15122,15 +15671,15 @@ func (x *NetworkPolicyPeer) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1251[1] { + if yyq1302[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespaceSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NamespaceSelector == nil { r.EncodeNil() } else { - yym1257 := z.EncBinary() - _ = yym1257 + yym1308 := z.EncBinary() + _ = yym1308 if false { } else if z.HasExtensions() && z.EncExt(x.NamespaceSelector) { } else { @@ -15139,7 +15688,7 @@ func (x *NetworkPolicyPeer) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1251 || yy2arr1251 { + if yyr1302 || yy2arr1302 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15152,25 +15701,25 @@ func (x *NetworkPolicyPeer) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1258 := z.DecBinary() - _ = yym1258 + yym1309 := z.DecBinary() + _ = yym1309 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1259 := r.ContainerType() - if yyct1259 == codecSelferValueTypeMap1234 { - yyl1259 := r.ReadMapStart() - if yyl1259 == 0 { + yyct1310 := r.ContainerType() + if yyct1310 == codecSelferValueTypeMap1234 { + yyl1310 := r.ReadMapStart() + if yyl1310 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1259, d) + x.codecDecodeSelfFromMap(yyl1310, d) } - } else if yyct1259 == codecSelferValueTypeArray1234 { - yyl1259 := r.ReadArrayStart() - if yyl1259 == 0 { + } else if yyct1310 == codecSelferValueTypeArray1234 { + yyl1310 := r.ReadArrayStart() + if yyl1310 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1259, d) + x.codecDecodeSelfFromArray(yyl1310, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15182,12 +15731,12 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1260Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1260Slc - var yyhl1260 bool = l >= 0 - for yyj1260 := 0; ; yyj1260++ { - if yyhl1260 { - if yyj1260 >= l { + var yys1311Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1311Slc + var yyhl1311 bool = l >= 0 + for yyj1311 := 0; ; yyj1311++ { + if yyhl1311 { + if yyj1311 >= l { break } } else { @@ -15196,10 +15745,10 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1260Slc = r.DecodeBytes(yys1260Slc, true, true) - yys1260 := string(yys1260Slc) + yys1311Slc = r.DecodeBytes(yys1311Slc, true, true) + yys1311 := string(yys1311Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1260 { + switch yys1311 { case "podSelector": if r.TryDecodeAsNil() { if x.PodSelector != nil { @@ -15209,8 +15758,8 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.PodSelector == nil { x.PodSelector = new(pkg1_unversioned.LabelSelector) } - yym1262 := z.DecBinary() - _ = yym1262 + yym1313 := z.DecBinary() + _ = yym1313 if false { } else if z.HasExtensions() && z.DecExt(x.PodSelector) { } else { @@ -15226,8 +15775,8 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.NamespaceSelector == nil { x.NamespaceSelector = new(pkg1_unversioned.LabelSelector) } - yym1264 := z.DecBinary() - _ = yym1264 + yym1315 := z.DecBinary() + _ = yym1315 if false { } else if z.HasExtensions() && z.DecExt(x.NamespaceSelector) { } else { @@ -15235,9 +15784,9 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } default: - z.DecStructFieldNotFound(-1, yys1260) - } // end switch yys1260 - } // end for yyj1260 + z.DecStructFieldNotFound(-1, yys1311) + } // end switch yys1311 + } // end for yyj1311 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15245,16 +15794,16 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1265 int - var yyb1265 bool - var yyhl1265 bool = l >= 0 - yyj1265++ - if yyhl1265 { - yyb1265 = yyj1265 > l + var yyj1316 int + var yyb1316 bool + var yyhl1316 bool = l >= 0 + yyj1316++ + if yyhl1316 { + yyb1316 = yyj1316 > l } else { - yyb1265 = r.CheckBreak() + yyb1316 = r.CheckBreak() } - if yyb1265 { + if yyb1316 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15267,21 +15816,21 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if x.PodSelector == nil { x.PodSelector = new(pkg1_unversioned.LabelSelector) } - yym1267 := z.DecBinary() - _ = yym1267 + yym1318 := z.DecBinary() + _ = yym1318 if false { } else if z.HasExtensions() && z.DecExt(x.PodSelector) { } else { z.DecFallback(x.PodSelector, false) } } - yyj1265++ - if yyhl1265 { - yyb1265 = yyj1265 > l + yyj1316++ + if yyhl1316 { + yyb1316 = yyj1316 > l } else { - yyb1265 = r.CheckBreak() + yyb1316 = r.CheckBreak() } - if yyb1265 { + if yyb1316 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15294,8 +15843,8 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if x.NamespaceSelector == nil { x.NamespaceSelector = new(pkg1_unversioned.LabelSelector) } - yym1269 := z.DecBinary() - _ = yym1269 + yym1320 := z.DecBinary() + _ = yym1320 if false { } else if z.HasExtensions() && z.DecExt(x.NamespaceSelector) { } else { @@ -15303,17 +15852,17 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } } for { - yyj1265++ - if yyhl1265 { - yyb1265 = yyj1265 > l + yyj1316++ + if yyhl1316 { + yyb1316 = yyj1316 > l } else { - yyb1265 = r.CheckBreak() + yyb1316 = r.CheckBreak() } - if yyb1265 { + if yyb1316 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1265-1, "") + z.DecStructFieldNotFound(yyj1316-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15325,37 +15874,37 @@ func (x *NetworkPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1270 := z.EncBinary() - _ = yym1270 + yym1321 := z.EncBinary() + _ = yym1321 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1271 := !z.EncBinary() - yy2arr1271 := z.EncBasicHandle().StructToArray - var yyq1271 [4]bool - _, _, _ = yysep1271, yyq1271, yy2arr1271 - const yyr1271 bool = false - yyq1271[0] = x.Kind != "" - yyq1271[1] = x.APIVersion != "" - yyq1271[2] = true - var yynn1271 int - if yyr1271 || yy2arr1271 { + yysep1322 := !z.EncBinary() + yy2arr1322 := z.EncBasicHandle().StructToArray + var yyq1322 [4]bool + _, _, _ = yysep1322, yyq1322, yy2arr1322 + const yyr1322 bool = false + yyq1322[0] = x.Kind != "" + yyq1322[1] = x.APIVersion != "" + yyq1322[2] = true + var yynn1322 int + if yyr1322 || yy2arr1322 { r.EncodeArrayStart(4) } else { - yynn1271 = 1 - for _, b := range yyq1271 { + yynn1322 = 1 + for _, b := range yyq1322 { if b { - yynn1271++ + yynn1322++ } } - r.EncodeMapStart(yynn1271) - yynn1271 = 0 + r.EncodeMapStart(yynn1322) + yynn1322 = 0 } - if yyr1271 || yy2arr1271 { + if yyr1322 || yy2arr1322 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1271[0] { - yym1273 := z.EncBinary() - _ = yym1273 + if yyq1322[0] { + yym1324 := z.EncBinary() + _ = yym1324 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -15364,23 +15913,23 @@ func (x *NetworkPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1271[0] { + if yyq1322[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1274 := z.EncBinary() - _ = yym1274 + yym1325 := z.EncBinary() + _ = yym1325 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1271 || yy2arr1271 { + if yyr1322 || yy2arr1322 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1271[1] { - yym1276 := z.EncBinary() - _ = yym1276 + if yyq1322[1] { + yym1327 := z.EncBinary() + _ = yym1327 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -15389,54 +15938,54 @@ func (x *NetworkPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1271[1] { + if yyq1322[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1277 := z.EncBinary() - _ = yym1277 + yym1328 := z.EncBinary() + _ = yym1328 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1271 || yy2arr1271 { + if yyr1322 || yy2arr1322 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1271[2] { - yy1279 := &x.ListMeta - yym1280 := z.EncBinary() - _ = yym1280 + if yyq1322[2] { + yy1330 := &x.ListMeta + yym1331 := z.EncBinary() + _ = yym1331 if false { - } else if z.HasExtensions() && z.EncExt(yy1279) { + } else if z.HasExtensions() && z.EncExt(yy1330) { } else { - z.EncFallback(yy1279) + z.EncFallback(yy1330) } } else { r.EncodeNil() } } else { - if yyq1271[2] { + if yyq1322[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1281 := &x.ListMeta - yym1282 := z.EncBinary() - _ = yym1282 + yy1332 := &x.ListMeta + yym1333 := z.EncBinary() + _ = yym1333 if false { - } else if z.HasExtensions() && z.EncExt(yy1281) { + } else if z.HasExtensions() && z.EncExt(yy1332) { } else { - z.EncFallback(yy1281) + z.EncFallback(yy1332) } } } - if yyr1271 || yy2arr1271 { + if yyr1322 || yy2arr1322 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1284 := z.EncBinary() - _ = yym1284 + yym1335 := z.EncBinary() + _ = yym1335 if false { } else { h.encSliceNetworkPolicy(([]NetworkPolicy)(x.Items), e) @@ -15449,15 +15998,15 @@ func (x *NetworkPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1285 := z.EncBinary() - _ = yym1285 + yym1336 := z.EncBinary() + _ = yym1336 if false { } else { h.encSliceNetworkPolicy(([]NetworkPolicy)(x.Items), e) } } } - if yyr1271 || yy2arr1271 { + if yyr1322 || yy2arr1322 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15470,25 +16019,25 @@ func (x *NetworkPolicyList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1286 := z.DecBinary() - _ = yym1286 + yym1337 := z.DecBinary() + _ = yym1337 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1287 := r.ContainerType() - if yyct1287 == codecSelferValueTypeMap1234 { - yyl1287 := r.ReadMapStart() - if yyl1287 == 0 { + yyct1338 := r.ContainerType() + if yyct1338 == codecSelferValueTypeMap1234 { + yyl1338 := r.ReadMapStart() + if yyl1338 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1287, d) + x.codecDecodeSelfFromMap(yyl1338, d) } - } else if yyct1287 == codecSelferValueTypeArray1234 { - yyl1287 := r.ReadArrayStart() - if yyl1287 == 0 { + } else if yyct1338 == codecSelferValueTypeArray1234 { + yyl1338 := r.ReadArrayStart() + if yyl1338 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1287, d) + x.codecDecodeSelfFromArray(yyl1338, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15500,12 +16049,12 @@ func (x *NetworkPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1288Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1288Slc - var yyhl1288 bool = l >= 0 - for yyj1288 := 0; ; yyj1288++ { - if yyhl1288 { - if yyj1288 >= l { + var yys1339Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1339Slc + var yyhl1339 bool = l >= 0 + for yyj1339 := 0; ; yyj1339++ { + if yyhl1339 { + if yyj1339 >= l { break } } else { @@ -15514,10 +16063,10 @@ func (x *NetworkPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1288Slc = r.DecodeBytes(yys1288Slc, true, true) - yys1288 := string(yys1288Slc) + yys1339Slc = r.DecodeBytes(yys1339Slc, true, true) + yys1339 := string(yys1339Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1288 { + switch yys1339 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -15534,31 +16083,31 @@ func (x *NetworkPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg1_unversioned.ListMeta{} } else { - yyv1291 := &x.ListMeta - yym1292 := z.DecBinary() - _ = yym1292 + yyv1342 := &x.ListMeta + yym1343 := z.DecBinary() + _ = yym1343 if false { - } else if z.HasExtensions() && z.DecExt(yyv1291) { + } else if z.HasExtensions() && z.DecExt(yyv1342) { } else { - z.DecFallback(yyv1291, false) + z.DecFallback(yyv1342, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1293 := &x.Items - yym1294 := z.DecBinary() - _ = yym1294 + yyv1344 := &x.Items + yym1345 := z.DecBinary() + _ = yym1345 if false { } else { - h.decSliceNetworkPolicy((*[]NetworkPolicy)(yyv1293), d) + h.decSliceNetworkPolicy((*[]NetworkPolicy)(yyv1344), d) } } default: - z.DecStructFieldNotFound(-1, yys1288) - } // end switch yys1288 - } // end for yyj1288 + z.DecStructFieldNotFound(-1, yys1339) + } // end switch yys1339 + } // end for yyj1339 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15566,16 +16115,16 @@ func (x *NetworkPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1295 int - var yyb1295 bool - var yyhl1295 bool = l >= 0 - yyj1295++ - if yyhl1295 { - yyb1295 = yyj1295 > l + var yyj1346 int + var yyb1346 bool + var yyhl1346 bool = l >= 0 + yyj1346++ + if yyhl1346 { + yyb1346 = yyj1346 > l } else { - yyb1295 = r.CheckBreak() + yyb1346 = r.CheckBreak() } - if yyb1295 { + if yyb1346 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15585,13 +16134,13 @@ func (x *NetworkPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj1295++ - if yyhl1295 { - yyb1295 = yyj1295 > l + yyj1346++ + if yyhl1346 { + yyb1346 = yyj1346 > l } else { - yyb1295 = r.CheckBreak() + yyb1346 = r.CheckBreak() } - if yyb1295 { + if yyb1346 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15601,13 +16150,13 @@ func (x *NetworkPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj1295++ - if yyhl1295 { - yyb1295 = yyj1295 > l + yyj1346++ + if yyhl1346 { + yyb1346 = yyj1346 > l } else { - yyb1295 = r.CheckBreak() + yyb1346 = r.CheckBreak() } - if yyb1295 { + if yyb1346 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15615,22 +16164,22 @@ func (x *NetworkPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg1_unversioned.ListMeta{} } else { - yyv1298 := &x.ListMeta - yym1299 := z.DecBinary() - _ = yym1299 + yyv1349 := &x.ListMeta + yym1350 := z.DecBinary() + _ = yym1350 if false { - } else if z.HasExtensions() && z.DecExt(yyv1298) { + } else if z.HasExtensions() && z.DecExt(yyv1349) { } else { - z.DecFallback(yyv1298, false) + z.DecFallback(yyv1349, false) } } - yyj1295++ - if yyhl1295 { - yyb1295 = yyj1295 > l + yyj1346++ + if yyhl1346 { + yyb1346 = yyj1346 > l } else { - yyb1295 = r.CheckBreak() + yyb1346 = r.CheckBreak() } - if yyb1295 { + if yyb1346 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15638,26 +16187,26 @@ func (x *NetworkPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1300 := &x.Items - yym1301 := z.DecBinary() - _ = yym1301 + yyv1351 := &x.Items + yym1352 := z.DecBinary() + _ = yym1352 if false { } else { - h.decSliceNetworkPolicy((*[]NetworkPolicy)(yyv1300), d) + h.decSliceNetworkPolicy((*[]NetworkPolicy)(yyv1351), d) } } for { - yyj1295++ - if yyhl1295 { - yyb1295 = yyj1295 > l + yyj1346++ + if yyhl1346 { + yyb1346 = yyj1346 > l } else { - yyb1295 = r.CheckBreak() + yyb1346 = r.CheckBreak() } - if yyb1295 { + if yyb1346 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1295-1, "") + z.DecStructFieldNotFound(yyj1346-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15667,10 +16216,10 @@ func (x codecSelfer1234) encSliceCustomMetricTarget(v []CustomMetricTarget, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1302 := range v { + for _, yyv1353 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1303 := &yyv1302 - yy1303.CodecEncodeSelf(e) + yy1354 := &yyv1353 + yy1354.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15680,83 +16229,83 @@ func (x codecSelfer1234) decSliceCustomMetricTarget(v *[]CustomMetricTarget, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1304 := *v - yyh1304, yyl1304 := z.DecSliceHelperStart() - var yyc1304 bool - if yyl1304 == 0 { - if yyv1304 == nil { - yyv1304 = []CustomMetricTarget{} - yyc1304 = true - } else if len(yyv1304) != 0 { - yyv1304 = yyv1304[:0] - yyc1304 = true + yyv1355 := *v + yyh1355, yyl1355 := z.DecSliceHelperStart() + var yyc1355 bool + if yyl1355 == 0 { + if yyv1355 == nil { + yyv1355 = []CustomMetricTarget{} + yyc1355 = true + } else if len(yyv1355) != 0 { + yyv1355 = yyv1355[:0] + yyc1355 = true } - } else if yyl1304 > 0 { - var yyrr1304, yyrl1304 int - var yyrt1304 bool - if yyl1304 > cap(yyv1304) { + } else if yyl1355 > 0 { + var yyrr1355, yyrl1355 int + var yyrt1355 bool + if yyl1355 > cap(yyv1355) { - yyrg1304 := len(yyv1304) > 0 - yyv21304 := yyv1304 - yyrl1304, yyrt1304 = z.DecInferLen(yyl1304, z.DecBasicHandle().MaxInitLen, 72) - if yyrt1304 { - if yyrl1304 <= cap(yyv1304) { - yyv1304 = yyv1304[:yyrl1304] + yyrg1355 := len(yyv1355) > 0 + yyv21355 := yyv1355 + yyrl1355, yyrt1355 = z.DecInferLen(yyl1355, z.DecBasicHandle().MaxInitLen, 72) + if yyrt1355 { + if yyrl1355 <= cap(yyv1355) { + yyv1355 = yyv1355[:yyrl1355] } else { - yyv1304 = make([]CustomMetricTarget, yyrl1304) + yyv1355 = make([]CustomMetricTarget, yyrl1355) } } else { - yyv1304 = make([]CustomMetricTarget, yyrl1304) + yyv1355 = make([]CustomMetricTarget, yyrl1355) } - yyc1304 = true - yyrr1304 = len(yyv1304) - if yyrg1304 { - copy(yyv1304, yyv21304) + yyc1355 = true + yyrr1355 = len(yyv1355) + if yyrg1355 { + copy(yyv1355, yyv21355) } - } else if yyl1304 != len(yyv1304) { - yyv1304 = yyv1304[:yyl1304] - yyc1304 = true + } else if yyl1355 != len(yyv1355) { + yyv1355 = yyv1355[:yyl1355] + yyc1355 = true } - yyj1304 := 0 - for ; yyj1304 < yyrr1304; yyj1304++ { - yyh1304.ElemContainerState(yyj1304) + yyj1355 := 0 + for ; yyj1355 < yyrr1355; yyj1355++ { + yyh1355.ElemContainerState(yyj1355) if r.TryDecodeAsNil() { - yyv1304[yyj1304] = CustomMetricTarget{} + yyv1355[yyj1355] = CustomMetricTarget{} } else { - yyv1305 := &yyv1304[yyj1304] - yyv1305.CodecDecodeSelf(d) + yyv1356 := &yyv1355[yyj1355] + yyv1356.CodecDecodeSelf(d) } } - if yyrt1304 { - for ; yyj1304 < yyl1304; yyj1304++ { - yyv1304 = append(yyv1304, CustomMetricTarget{}) - yyh1304.ElemContainerState(yyj1304) + if yyrt1355 { + for ; yyj1355 < yyl1355; yyj1355++ { + yyv1355 = append(yyv1355, CustomMetricTarget{}) + yyh1355.ElemContainerState(yyj1355) if r.TryDecodeAsNil() { - yyv1304[yyj1304] = CustomMetricTarget{} + yyv1355[yyj1355] = CustomMetricTarget{} } else { - yyv1306 := &yyv1304[yyj1304] - yyv1306.CodecDecodeSelf(d) + yyv1357 := &yyv1355[yyj1355] + yyv1357.CodecDecodeSelf(d) } } } } else { - yyj1304 := 0 - for ; !r.CheckBreak(); yyj1304++ { + yyj1355 := 0 + for ; !r.CheckBreak(); yyj1355++ { - if yyj1304 >= len(yyv1304) { - yyv1304 = append(yyv1304, CustomMetricTarget{}) // var yyz1304 CustomMetricTarget - yyc1304 = true + if yyj1355 >= len(yyv1355) { + yyv1355 = append(yyv1355, CustomMetricTarget{}) // var yyz1355 CustomMetricTarget + yyc1355 = true } - yyh1304.ElemContainerState(yyj1304) - if yyj1304 < len(yyv1304) { + yyh1355.ElemContainerState(yyj1355) + if yyj1355 < len(yyv1355) { if r.TryDecodeAsNil() { - yyv1304[yyj1304] = CustomMetricTarget{} + yyv1355[yyj1355] = CustomMetricTarget{} } else { - yyv1307 := &yyv1304[yyj1304] - yyv1307.CodecDecodeSelf(d) + yyv1358 := &yyv1355[yyj1355] + yyv1358.CodecDecodeSelf(d) } } else { @@ -15764,17 +16313,17 @@ func (x codecSelfer1234) decSliceCustomMetricTarget(v *[]CustomMetricTarget, d * } } - if yyj1304 < len(yyv1304) { - yyv1304 = yyv1304[:yyj1304] - yyc1304 = true - } else if yyj1304 == 0 && yyv1304 == nil { - yyv1304 = []CustomMetricTarget{} - yyc1304 = true + if yyj1355 < len(yyv1355) { + yyv1355 = yyv1355[:yyj1355] + yyc1355 = true + } else if yyj1355 == 0 && yyv1355 == nil { + yyv1355 = []CustomMetricTarget{} + yyc1355 = true } } - yyh1304.End() - if yyc1304 { - *v = yyv1304 + yyh1355.End() + if yyc1355 { + *v = yyv1355 } } @@ -15783,10 +16332,10 @@ func (x codecSelfer1234) encSliceCustomMetricCurrentStatus(v []CustomMetricCurre z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1308 := range v { + for _, yyv1359 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1309 := &yyv1308 - yy1309.CodecEncodeSelf(e) + yy1360 := &yyv1359 + yy1360.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15796,83 +16345,83 @@ func (x codecSelfer1234) decSliceCustomMetricCurrentStatus(v *[]CustomMetricCurr z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1310 := *v - yyh1310, yyl1310 := z.DecSliceHelperStart() - var yyc1310 bool - if yyl1310 == 0 { - if yyv1310 == nil { - yyv1310 = []CustomMetricCurrentStatus{} - yyc1310 = true - } else if len(yyv1310) != 0 { - yyv1310 = yyv1310[:0] - yyc1310 = true + yyv1361 := *v + yyh1361, yyl1361 := z.DecSliceHelperStart() + var yyc1361 bool + if yyl1361 == 0 { + if yyv1361 == nil { + yyv1361 = []CustomMetricCurrentStatus{} + yyc1361 = true + } else if len(yyv1361) != 0 { + yyv1361 = yyv1361[:0] + yyc1361 = true } - } else if yyl1310 > 0 { - var yyrr1310, yyrl1310 int - var yyrt1310 bool - if yyl1310 > cap(yyv1310) { + } else if yyl1361 > 0 { + var yyrr1361, yyrl1361 int + var yyrt1361 bool + if yyl1361 > cap(yyv1361) { - yyrg1310 := len(yyv1310) > 0 - yyv21310 := yyv1310 - yyrl1310, yyrt1310 = z.DecInferLen(yyl1310, z.DecBasicHandle().MaxInitLen, 72) - if yyrt1310 { - if yyrl1310 <= cap(yyv1310) { - yyv1310 = yyv1310[:yyrl1310] + yyrg1361 := len(yyv1361) > 0 + yyv21361 := yyv1361 + yyrl1361, yyrt1361 = z.DecInferLen(yyl1361, z.DecBasicHandle().MaxInitLen, 72) + if yyrt1361 { + if yyrl1361 <= cap(yyv1361) { + yyv1361 = yyv1361[:yyrl1361] } else { - yyv1310 = make([]CustomMetricCurrentStatus, yyrl1310) + yyv1361 = make([]CustomMetricCurrentStatus, yyrl1361) } } else { - yyv1310 = make([]CustomMetricCurrentStatus, yyrl1310) + yyv1361 = make([]CustomMetricCurrentStatus, yyrl1361) } - yyc1310 = true - yyrr1310 = len(yyv1310) - if yyrg1310 { - copy(yyv1310, yyv21310) + yyc1361 = true + yyrr1361 = len(yyv1361) + if yyrg1361 { + copy(yyv1361, yyv21361) } - } else if yyl1310 != len(yyv1310) { - yyv1310 = yyv1310[:yyl1310] - yyc1310 = true + } else if yyl1361 != len(yyv1361) { + yyv1361 = yyv1361[:yyl1361] + yyc1361 = true } - yyj1310 := 0 - for ; yyj1310 < yyrr1310; yyj1310++ { - yyh1310.ElemContainerState(yyj1310) + yyj1361 := 0 + for ; yyj1361 < yyrr1361; yyj1361++ { + yyh1361.ElemContainerState(yyj1361) if r.TryDecodeAsNil() { - yyv1310[yyj1310] = CustomMetricCurrentStatus{} + yyv1361[yyj1361] = CustomMetricCurrentStatus{} } else { - yyv1311 := &yyv1310[yyj1310] - yyv1311.CodecDecodeSelf(d) + yyv1362 := &yyv1361[yyj1361] + yyv1362.CodecDecodeSelf(d) } } - if yyrt1310 { - for ; yyj1310 < yyl1310; yyj1310++ { - yyv1310 = append(yyv1310, CustomMetricCurrentStatus{}) - yyh1310.ElemContainerState(yyj1310) + if yyrt1361 { + for ; yyj1361 < yyl1361; yyj1361++ { + yyv1361 = append(yyv1361, CustomMetricCurrentStatus{}) + yyh1361.ElemContainerState(yyj1361) if r.TryDecodeAsNil() { - yyv1310[yyj1310] = CustomMetricCurrentStatus{} + yyv1361[yyj1361] = CustomMetricCurrentStatus{} } else { - yyv1312 := &yyv1310[yyj1310] - yyv1312.CodecDecodeSelf(d) + yyv1363 := &yyv1361[yyj1361] + yyv1363.CodecDecodeSelf(d) } } } } else { - yyj1310 := 0 - for ; !r.CheckBreak(); yyj1310++ { + yyj1361 := 0 + for ; !r.CheckBreak(); yyj1361++ { - if yyj1310 >= len(yyv1310) { - yyv1310 = append(yyv1310, CustomMetricCurrentStatus{}) // var yyz1310 CustomMetricCurrentStatus - yyc1310 = true + if yyj1361 >= len(yyv1361) { + yyv1361 = append(yyv1361, CustomMetricCurrentStatus{}) // var yyz1361 CustomMetricCurrentStatus + yyc1361 = true } - yyh1310.ElemContainerState(yyj1310) - if yyj1310 < len(yyv1310) { + yyh1361.ElemContainerState(yyj1361) + if yyj1361 < len(yyv1361) { if r.TryDecodeAsNil() { - yyv1310[yyj1310] = CustomMetricCurrentStatus{} + yyv1361[yyj1361] = CustomMetricCurrentStatus{} } else { - yyv1313 := &yyv1310[yyj1310] - yyv1313.CodecDecodeSelf(d) + yyv1364 := &yyv1361[yyj1361] + yyv1364.CodecDecodeSelf(d) } } else { @@ -15880,17 +16429,17 @@ func (x codecSelfer1234) decSliceCustomMetricCurrentStatus(v *[]CustomMetricCurr } } - if yyj1310 < len(yyv1310) { - yyv1310 = yyv1310[:yyj1310] - yyc1310 = true - } else if yyj1310 == 0 && yyv1310 == nil { - yyv1310 = []CustomMetricCurrentStatus{} - yyc1310 = true + if yyj1361 < len(yyv1361) { + yyv1361 = yyv1361[:yyj1361] + yyc1361 = true + } else if yyj1361 == 0 && yyv1361 == nil { + yyv1361 = []CustomMetricCurrentStatus{} + yyc1361 = true } } - yyh1310.End() - if yyc1310 { - *v = yyv1310 + yyh1361.End() + if yyc1361 { + *v = yyv1361 } } @@ -15899,10 +16448,10 @@ func (x codecSelfer1234) encSliceAPIVersion(v []APIVersion, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1314 := range v { + for _, yyv1365 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1315 := &yyv1314 - yy1315.CodecEncodeSelf(e) + yy1366 := &yyv1365 + yy1366.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15912,83 +16461,83 @@ func (x codecSelfer1234) decSliceAPIVersion(v *[]APIVersion, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1316 := *v - yyh1316, yyl1316 := z.DecSliceHelperStart() - var yyc1316 bool - if yyl1316 == 0 { - if yyv1316 == nil { - yyv1316 = []APIVersion{} - yyc1316 = true - } else if len(yyv1316) != 0 { - yyv1316 = yyv1316[:0] - yyc1316 = true + yyv1367 := *v + yyh1367, yyl1367 := z.DecSliceHelperStart() + var yyc1367 bool + if yyl1367 == 0 { + if yyv1367 == nil { + yyv1367 = []APIVersion{} + yyc1367 = true + } else if len(yyv1367) != 0 { + yyv1367 = yyv1367[:0] + yyc1367 = true } - } else if yyl1316 > 0 { - var yyrr1316, yyrl1316 int - var yyrt1316 bool - if yyl1316 > cap(yyv1316) { + } else if yyl1367 > 0 { + var yyrr1367, yyrl1367 int + var yyrt1367 bool + if yyl1367 > cap(yyv1367) { - yyrg1316 := len(yyv1316) > 0 - yyv21316 := yyv1316 - yyrl1316, yyrt1316 = z.DecInferLen(yyl1316, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1316 { - if yyrl1316 <= cap(yyv1316) { - yyv1316 = yyv1316[:yyrl1316] + yyrg1367 := len(yyv1367) > 0 + yyv21367 := yyv1367 + yyrl1367, yyrt1367 = z.DecInferLen(yyl1367, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1367 { + if yyrl1367 <= cap(yyv1367) { + yyv1367 = yyv1367[:yyrl1367] } else { - yyv1316 = make([]APIVersion, yyrl1316) + yyv1367 = make([]APIVersion, yyrl1367) } } else { - yyv1316 = make([]APIVersion, yyrl1316) + yyv1367 = make([]APIVersion, yyrl1367) } - yyc1316 = true - yyrr1316 = len(yyv1316) - if yyrg1316 { - copy(yyv1316, yyv21316) + yyc1367 = true + yyrr1367 = len(yyv1367) + if yyrg1367 { + copy(yyv1367, yyv21367) } - } else if yyl1316 != len(yyv1316) { - yyv1316 = yyv1316[:yyl1316] - yyc1316 = true + } else if yyl1367 != len(yyv1367) { + yyv1367 = yyv1367[:yyl1367] + yyc1367 = true } - yyj1316 := 0 - for ; yyj1316 < yyrr1316; yyj1316++ { - yyh1316.ElemContainerState(yyj1316) + yyj1367 := 0 + for ; yyj1367 < yyrr1367; yyj1367++ { + yyh1367.ElemContainerState(yyj1367) if r.TryDecodeAsNil() { - yyv1316[yyj1316] = APIVersion{} + yyv1367[yyj1367] = APIVersion{} } else { - yyv1317 := &yyv1316[yyj1316] - yyv1317.CodecDecodeSelf(d) + yyv1368 := &yyv1367[yyj1367] + yyv1368.CodecDecodeSelf(d) } } - if yyrt1316 { - for ; yyj1316 < yyl1316; yyj1316++ { - yyv1316 = append(yyv1316, APIVersion{}) - yyh1316.ElemContainerState(yyj1316) + if yyrt1367 { + for ; yyj1367 < yyl1367; yyj1367++ { + yyv1367 = append(yyv1367, APIVersion{}) + yyh1367.ElemContainerState(yyj1367) if r.TryDecodeAsNil() { - yyv1316[yyj1316] = APIVersion{} + yyv1367[yyj1367] = APIVersion{} } else { - yyv1318 := &yyv1316[yyj1316] - yyv1318.CodecDecodeSelf(d) + yyv1369 := &yyv1367[yyj1367] + yyv1369.CodecDecodeSelf(d) } } } } else { - yyj1316 := 0 - for ; !r.CheckBreak(); yyj1316++ { + yyj1367 := 0 + for ; !r.CheckBreak(); yyj1367++ { - if yyj1316 >= len(yyv1316) { - yyv1316 = append(yyv1316, APIVersion{}) // var yyz1316 APIVersion - yyc1316 = true + if yyj1367 >= len(yyv1367) { + yyv1367 = append(yyv1367, APIVersion{}) // var yyz1367 APIVersion + yyc1367 = true } - yyh1316.ElemContainerState(yyj1316) - if yyj1316 < len(yyv1316) { + yyh1367.ElemContainerState(yyj1367) + if yyj1367 < len(yyv1367) { if r.TryDecodeAsNil() { - yyv1316[yyj1316] = APIVersion{} + yyv1367[yyj1367] = APIVersion{} } else { - yyv1319 := &yyv1316[yyj1316] - yyv1319.CodecDecodeSelf(d) + yyv1370 := &yyv1367[yyj1367] + yyv1370.CodecDecodeSelf(d) } } else { @@ -15996,17 +16545,17 @@ func (x codecSelfer1234) decSliceAPIVersion(v *[]APIVersion, d *codec1978.Decode } } - if yyj1316 < len(yyv1316) { - yyv1316 = yyv1316[:yyj1316] - yyc1316 = true - } else if yyj1316 == 0 && yyv1316 == nil { - yyv1316 = []APIVersion{} - yyc1316 = true + if yyj1367 < len(yyv1367) { + yyv1367 = yyv1367[:yyj1367] + yyc1367 = true + } else if yyj1367 == 0 && yyv1367 == nil { + yyv1367 = []APIVersion{} + yyc1367 = true } } - yyh1316.End() - if yyc1316 { - *v = yyv1316 + yyh1367.End() + if yyc1367 { + *v = yyv1367 } } @@ -16015,10 +16564,10 @@ func (x codecSelfer1234) encSliceThirdPartyResource(v []ThirdPartyResource, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1320 := range v { + for _, yyv1371 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1321 := &yyv1320 - yy1321.CodecEncodeSelf(e) + yy1372 := &yyv1371 + yy1372.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16028,83 +16577,83 @@ func (x codecSelfer1234) decSliceThirdPartyResource(v *[]ThirdPartyResource, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1322 := *v - yyh1322, yyl1322 := z.DecSliceHelperStart() - var yyc1322 bool - if yyl1322 == 0 { - if yyv1322 == nil { - yyv1322 = []ThirdPartyResource{} - yyc1322 = true - } else if len(yyv1322) != 0 { - yyv1322 = yyv1322[:0] - yyc1322 = true + yyv1373 := *v + yyh1373, yyl1373 := z.DecSliceHelperStart() + var yyc1373 bool + if yyl1373 == 0 { + if yyv1373 == nil { + yyv1373 = []ThirdPartyResource{} + yyc1373 = true + } else if len(yyv1373) != 0 { + yyv1373 = yyv1373[:0] + yyc1373 = true } - } else if yyl1322 > 0 { - var yyrr1322, yyrl1322 int - var yyrt1322 bool - if yyl1322 > cap(yyv1322) { + } else if yyl1373 > 0 { + var yyrr1373, yyrl1373 int + var yyrt1373 bool + if yyl1373 > cap(yyv1373) { - yyrg1322 := len(yyv1322) > 0 - yyv21322 := yyv1322 - yyrl1322, yyrt1322 = z.DecInferLen(yyl1322, z.DecBasicHandle().MaxInitLen, 296) - if yyrt1322 { - if yyrl1322 <= cap(yyv1322) { - yyv1322 = yyv1322[:yyrl1322] + yyrg1373 := len(yyv1373) > 0 + yyv21373 := yyv1373 + yyrl1373, yyrt1373 = z.DecInferLen(yyl1373, z.DecBasicHandle().MaxInitLen, 296) + if yyrt1373 { + if yyrl1373 <= cap(yyv1373) { + yyv1373 = yyv1373[:yyrl1373] } else { - yyv1322 = make([]ThirdPartyResource, yyrl1322) + yyv1373 = make([]ThirdPartyResource, yyrl1373) } } else { - yyv1322 = make([]ThirdPartyResource, yyrl1322) + yyv1373 = make([]ThirdPartyResource, yyrl1373) } - yyc1322 = true - yyrr1322 = len(yyv1322) - if yyrg1322 { - copy(yyv1322, yyv21322) + yyc1373 = true + yyrr1373 = len(yyv1373) + if yyrg1373 { + copy(yyv1373, yyv21373) } - } else if yyl1322 != len(yyv1322) { - yyv1322 = yyv1322[:yyl1322] - yyc1322 = true + } else if yyl1373 != len(yyv1373) { + yyv1373 = yyv1373[:yyl1373] + yyc1373 = true } - yyj1322 := 0 - for ; yyj1322 < yyrr1322; yyj1322++ { - yyh1322.ElemContainerState(yyj1322) + yyj1373 := 0 + for ; yyj1373 < yyrr1373; yyj1373++ { + yyh1373.ElemContainerState(yyj1373) if r.TryDecodeAsNil() { - yyv1322[yyj1322] = ThirdPartyResource{} + yyv1373[yyj1373] = ThirdPartyResource{} } else { - yyv1323 := &yyv1322[yyj1322] - yyv1323.CodecDecodeSelf(d) + yyv1374 := &yyv1373[yyj1373] + yyv1374.CodecDecodeSelf(d) } } - if yyrt1322 { - for ; yyj1322 < yyl1322; yyj1322++ { - yyv1322 = append(yyv1322, ThirdPartyResource{}) - yyh1322.ElemContainerState(yyj1322) + if yyrt1373 { + for ; yyj1373 < yyl1373; yyj1373++ { + yyv1373 = append(yyv1373, ThirdPartyResource{}) + yyh1373.ElemContainerState(yyj1373) if r.TryDecodeAsNil() { - yyv1322[yyj1322] = ThirdPartyResource{} + yyv1373[yyj1373] = ThirdPartyResource{} } else { - yyv1324 := &yyv1322[yyj1322] - yyv1324.CodecDecodeSelf(d) + yyv1375 := &yyv1373[yyj1373] + yyv1375.CodecDecodeSelf(d) } } } } else { - yyj1322 := 0 - for ; !r.CheckBreak(); yyj1322++ { + yyj1373 := 0 + for ; !r.CheckBreak(); yyj1373++ { - if yyj1322 >= len(yyv1322) { - yyv1322 = append(yyv1322, ThirdPartyResource{}) // var yyz1322 ThirdPartyResource - yyc1322 = true + if yyj1373 >= len(yyv1373) { + yyv1373 = append(yyv1373, ThirdPartyResource{}) // var yyz1373 ThirdPartyResource + yyc1373 = true } - yyh1322.ElemContainerState(yyj1322) - if yyj1322 < len(yyv1322) { + yyh1373.ElemContainerState(yyj1373) + if yyj1373 < len(yyv1373) { if r.TryDecodeAsNil() { - yyv1322[yyj1322] = ThirdPartyResource{} + yyv1373[yyj1373] = ThirdPartyResource{} } else { - yyv1325 := &yyv1322[yyj1322] - yyv1325.CodecDecodeSelf(d) + yyv1376 := &yyv1373[yyj1373] + yyv1376.CodecDecodeSelf(d) } } else { @@ -16112,17 +16661,17 @@ func (x codecSelfer1234) decSliceThirdPartyResource(v *[]ThirdPartyResource, d * } } - if yyj1322 < len(yyv1322) { - yyv1322 = yyv1322[:yyj1322] - yyc1322 = true - } else if yyj1322 == 0 && yyv1322 == nil { - yyv1322 = []ThirdPartyResource{} - yyc1322 = true + if yyj1373 < len(yyv1373) { + yyv1373 = yyv1373[:yyj1373] + yyc1373 = true + } else if yyj1373 == 0 && yyv1373 == nil { + yyv1373 = []ThirdPartyResource{} + yyc1373 = true } } - yyh1322.End() - if yyc1322 { - *v = yyv1322 + yyh1373.End() + if yyc1373 { + *v = yyv1373 } } @@ -16131,10 +16680,10 @@ func (x codecSelfer1234) encSliceDeployment(v []Deployment, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1326 := range v { + for _, yyv1377 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1327 := &yyv1326 - yy1327.CodecEncodeSelf(e) + yy1378 := &yyv1377 + yy1378.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16144,83 +16693,83 @@ func (x codecSelfer1234) decSliceDeployment(v *[]Deployment, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1328 := *v - yyh1328, yyl1328 := z.DecSliceHelperStart() - var yyc1328 bool - if yyl1328 == 0 { - if yyv1328 == nil { - yyv1328 = []Deployment{} - yyc1328 = true - } else if len(yyv1328) != 0 { - yyv1328 = yyv1328[:0] - yyc1328 = true + yyv1379 := *v + yyh1379, yyl1379 := z.DecSliceHelperStart() + var yyc1379 bool + if yyl1379 == 0 { + if yyv1379 == nil { + yyv1379 = []Deployment{} + yyc1379 = true + } else if len(yyv1379) != 0 { + yyv1379 = yyv1379[:0] + yyc1379 = true } - } else if yyl1328 > 0 { - var yyrr1328, yyrl1328 int - var yyrt1328 bool - if yyl1328 > cap(yyv1328) { + } else if yyl1379 > 0 { + var yyrr1379, yyrl1379 int + var yyrt1379 bool + if yyl1379 > cap(yyv1379) { - yyrg1328 := len(yyv1328) > 0 - yyv21328 := yyv1328 - yyrl1328, yyrt1328 = z.DecInferLen(yyl1328, z.DecBasicHandle().MaxInitLen, 800) - if yyrt1328 { - if yyrl1328 <= cap(yyv1328) { - yyv1328 = yyv1328[:yyrl1328] + yyrg1379 := len(yyv1379) > 0 + yyv21379 := yyv1379 + yyrl1379, yyrt1379 = z.DecInferLen(yyl1379, z.DecBasicHandle().MaxInitLen, 800) + if yyrt1379 { + if yyrl1379 <= cap(yyv1379) { + yyv1379 = yyv1379[:yyrl1379] } else { - yyv1328 = make([]Deployment, yyrl1328) + yyv1379 = make([]Deployment, yyrl1379) } } else { - yyv1328 = make([]Deployment, yyrl1328) + yyv1379 = make([]Deployment, yyrl1379) } - yyc1328 = true - yyrr1328 = len(yyv1328) - if yyrg1328 { - copy(yyv1328, yyv21328) + yyc1379 = true + yyrr1379 = len(yyv1379) + if yyrg1379 { + copy(yyv1379, yyv21379) } - } else if yyl1328 != len(yyv1328) { - yyv1328 = yyv1328[:yyl1328] - yyc1328 = true + } else if yyl1379 != len(yyv1379) { + yyv1379 = yyv1379[:yyl1379] + yyc1379 = true } - yyj1328 := 0 - for ; yyj1328 < yyrr1328; yyj1328++ { - yyh1328.ElemContainerState(yyj1328) + yyj1379 := 0 + for ; yyj1379 < yyrr1379; yyj1379++ { + yyh1379.ElemContainerState(yyj1379) if r.TryDecodeAsNil() { - yyv1328[yyj1328] = Deployment{} + yyv1379[yyj1379] = Deployment{} } else { - yyv1329 := &yyv1328[yyj1328] - yyv1329.CodecDecodeSelf(d) + yyv1380 := &yyv1379[yyj1379] + yyv1380.CodecDecodeSelf(d) } } - if yyrt1328 { - for ; yyj1328 < yyl1328; yyj1328++ { - yyv1328 = append(yyv1328, Deployment{}) - yyh1328.ElemContainerState(yyj1328) + if yyrt1379 { + for ; yyj1379 < yyl1379; yyj1379++ { + yyv1379 = append(yyv1379, Deployment{}) + yyh1379.ElemContainerState(yyj1379) if r.TryDecodeAsNil() { - yyv1328[yyj1328] = Deployment{} + yyv1379[yyj1379] = Deployment{} } else { - yyv1330 := &yyv1328[yyj1328] - yyv1330.CodecDecodeSelf(d) + yyv1381 := &yyv1379[yyj1379] + yyv1381.CodecDecodeSelf(d) } } } } else { - yyj1328 := 0 - for ; !r.CheckBreak(); yyj1328++ { + yyj1379 := 0 + for ; !r.CheckBreak(); yyj1379++ { - if yyj1328 >= len(yyv1328) { - yyv1328 = append(yyv1328, Deployment{}) // var yyz1328 Deployment - yyc1328 = true + if yyj1379 >= len(yyv1379) { + yyv1379 = append(yyv1379, Deployment{}) // var yyz1379 Deployment + yyc1379 = true } - yyh1328.ElemContainerState(yyj1328) - if yyj1328 < len(yyv1328) { + yyh1379.ElemContainerState(yyj1379) + if yyj1379 < len(yyv1379) { if r.TryDecodeAsNil() { - yyv1328[yyj1328] = Deployment{} + yyv1379[yyj1379] = Deployment{} } else { - yyv1331 := &yyv1328[yyj1328] - yyv1331.CodecDecodeSelf(d) + yyv1382 := &yyv1379[yyj1379] + yyv1382.CodecDecodeSelf(d) } } else { @@ -16228,17 +16777,17 @@ func (x codecSelfer1234) decSliceDeployment(v *[]Deployment, d *codec1978.Decode } } - if yyj1328 < len(yyv1328) { - yyv1328 = yyv1328[:yyj1328] - yyc1328 = true - } else if yyj1328 == 0 && yyv1328 == nil { - yyv1328 = []Deployment{} - yyc1328 = true + if yyj1379 < len(yyv1379) { + yyv1379 = yyv1379[:yyj1379] + yyc1379 = true + } else if yyj1379 == 0 && yyv1379 == nil { + yyv1379 = []Deployment{} + yyc1379 = true } } - yyh1328.End() - if yyc1328 { - *v = yyv1328 + yyh1379.End() + if yyc1379 { + *v = yyv1379 } } @@ -16247,10 +16796,10 @@ func (x codecSelfer1234) encSliceDaemonSet(v []DaemonSet, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1332 := range v { + for _, yyv1383 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1333 := &yyv1332 - yy1333.CodecEncodeSelf(e) + yy1384 := &yyv1383 + yy1384.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16260,83 +16809,83 @@ func (x codecSelfer1234) decSliceDaemonSet(v *[]DaemonSet, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1334 := *v - yyh1334, yyl1334 := z.DecSliceHelperStart() - var yyc1334 bool - if yyl1334 == 0 { - if yyv1334 == nil { - yyv1334 = []DaemonSet{} - yyc1334 = true - } else if len(yyv1334) != 0 { - yyv1334 = yyv1334[:0] - yyc1334 = true + yyv1385 := *v + yyh1385, yyl1385 := z.DecSliceHelperStart() + var yyc1385 bool + if yyl1385 == 0 { + if yyv1385 == nil { + yyv1385 = []DaemonSet{} + yyc1385 = true + } else if len(yyv1385) != 0 { + yyv1385 = yyv1385[:0] + yyc1385 = true } - } else if yyl1334 > 0 { - var yyrr1334, yyrl1334 int - var yyrt1334 bool - if yyl1334 > cap(yyv1334) { + } else if yyl1385 > 0 { + var yyrr1385, yyrl1385 int + var yyrt1385 bool + if yyl1385 > cap(yyv1385) { - yyrg1334 := len(yyv1334) > 0 - yyv21334 := yyv1334 - yyrl1334, yyrt1334 = z.DecInferLen(yyl1334, z.DecBasicHandle().MaxInitLen, 728) - if yyrt1334 { - if yyrl1334 <= cap(yyv1334) { - yyv1334 = yyv1334[:yyrl1334] + yyrg1385 := len(yyv1385) > 0 + yyv21385 := yyv1385 + yyrl1385, yyrt1385 = z.DecInferLen(yyl1385, z.DecBasicHandle().MaxInitLen, 728) + if yyrt1385 { + if yyrl1385 <= cap(yyv1385) { + yyv1385 = yyv1385[:yyrl1385] } else { - yyv1334 = make([]DaemonSet, yyrl1334) + yyv1385 = make([]DaemonSet, yyrl1385) } } else { - yyv1334 = make([]DaemonSet, yyrl1334) + yyv1385 = make([]DaemonSet, yyrl1385) } - yyc1334 = true - yyrr1334 = len(yyv1334) - if yyrg1334 { - copy(yyv1334, yyv21334) + yyc1385 = true + yyrr1385 = len(yyv1385) + if yyrg1385 { + copy(yyv1385, yyv21385) } - } else if yyl1334 != len(yyv1334) { - yyv1334 = yyv1334[:yyl1334] - yyc1334 = true + } else if yyl1385 != len(yyv1385) { + yyv1385 = yyv1385[:yyl1385] + yyc1385 = true } - yyj1334 := 0 - for ; yyj1334 < yyrr1334; yyj1334++ { - yyh1334.ElemContainerState(yyj1334) + yyj1385 := 0 + for ; yyj1385 < yyrr1385; yyj1385++ { + yyh1385.ElemContainerState(yyj1385) if r.TryDecodeAsNil() { - yyv1334[yyj1334] = DaemonSet{} + yyv1385[yyj1385] = DaemonSet{} } else { - yyv1335 := &yyv1334[yyj1334] - yyv1335.CodecDecodeSelf(d) + yyv1386 := &yyv1385[yyj1385] + yyv1386.CodecDecodeSelf(d) } } - if yyrt1334 { - for ; yyj1334 < yyl1334; yyj1334++ { - yyv1334 = append(yyv1334, DaemonSet{}) - yyh1334.ElemContainerState(yyj1334) + if yyrt1385 { + for ; yyj1385 < yyl1385; yyj1385++ { + yyv1385 = append(yyv1385, DaemonSet{}) + yyh1385.ElemContainerState(yyj1385) if r.TryDecodeAsNil() { - yyv1334[yyj1334] = DaemonSet{} + yyv1385[yyj1385] = DaemonSet{} } else { - yyv1336 := &yyv1334[yyj1334] - yyv1336.CodecDecodeSelf(d) + yyv1387 := &yyv1385[yyj1385] + yyv1387.CodecDecodeSelf(d) } } } } else { - yyj1334 := 0 - for ; !r.CheckBreak(); yyj1334++ { + yyj1385 := 0 + for ; !r.CheckBreak(); yyj1385++ { - if yyj1334 >= len(yyv1334) { - yyv1334 = append(yyv1334, DaemonSet{}) // var yyz1334 DaemonSet - yyc1334 = true + if yyj1385 >= len(yyv1385) { + yyv1385 = append(yyv1385, DaemonSet{}) // var yyz1385 DaemonSet + yyc1385 = true } - yyh1334.ElemContainerState(yyj1334) - if yyj1334 < len(yyv1334) { + yyh1385.ElemContainerState(yyj1385) + if yyj1385 < len(yyv1385) { if r.TryDecodeAsNil() { - yyv1334[yyj1334] = DaemonSet{} + yyv1385[yyj1385] = DaemonSet{} } else { - yyv1337 := &yyv1334[yyj1334] - yyv1337.CodecDecodeSelf(d) + yyv1388 := &yyv1385[yyj1385] + yyv1388.CodecDecodeSelf(d) } } else { @@ -16344,17 +16893,17 @@ func (x codecSelfer1234) decSliceDaemonSet(v *[]DaemonSet, d *codec1978.Decoder) } } - if yyj1334 < len(yyv1334) { - yyv1334 = yyv1334[:yyj1334] - yyc1334 = true - } else if yyj1334 == 0 && yyv1334 == nil { - yyv1334 = []DaemonSet{} - yyc1334 = true + if yyj1385 < len(yyv1385) { + yyv1385 = yyv1385[:yyj1385] + yyc1385 = true + } else if yyj1385 == 0 && yyv1385 == nil { + yyv1385 = []DaemonSet{} + yyc1385 = true } } - yyh1334.End() - if yyc1334 { - *v = yyv1334 + yyh1385.End() + if yyc1385 { + *v = yyv1385 } } @@ -16363,10 +16912,10 @@ func (x codecSelfer1234) encSliceThirdPartyResourceData(v []ThirdPartyResourceDa z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1338 := range v { + for _, yyv1389 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1339 := &yyv1338 - yy1339.CodecEncodeSelf(e) + yy1390 := &yyv1389 + yy1390.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16376,83 +16925,83 @@ func (x codecSelfer1234) decSliceThirdPartyResourceData(v *[]ThirdPartyResourceD z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1340 := *v - yyh1340, yyl1340 := z.DecSliceHelperStart() - var yyc1340 bool - if yyl1340 == 0 { - if yyv1340 == nil { - yyv1340 = []ThirdPartyResourceData{} - yyc1340 = true - } else if len(yyv1340) != 0 { - yyv1340 = yyv1340[:0] - yyc1340 = true + yyv1391 := *v + yyh1391, yyl1391 := z.DecSliceHelperStart() + var yyc1391 bool + if yyl1391 == 0 { + if yyv1391 == nil { + yyv1391 = []ThirdPartyResourceData{} + yyc1391 = true + } else if len(yyv1391) != 0 { + yyv1391 = yyv1391[:0] + yyc1391 = true } - } else if yyl1340 > 0 { - var yyrr1340, yyrl1340 int - var yyrt1340 bool - if yyl1340 > cap(yyv1340) { + } else if yyl1391 > 0 { + var yyrr1391, yyrl1391 int + var yyrt1391 bool + if yyl1391 > cap(yyv1391) { - yyrg1340 := len(yyv1340) > 0 - yyv21340 := yyv1340 - yyrl1340, yyrt1340 = z.DecInferLen(yyl1340, z.DecBasicHandle().MaxInitLen, 280) - if yyrt1340 { - if yyrl1340 <= cap(yyv1340) { - yyv1340 = yyv1340[:yyrl1340] + yyrg1391 := len(yyv1391) > 0 + yyv21391 := yyv1391 + yyrl1391, yyrt1391 = z.DecInferLen(yyl1391, z.DecBasicHandle().MaxInitLen, 280) + if yyrt1391 { + if yyrl1391 <= cap(yyv1391) { + yyv1391 = yyv1391[:yyrl1391] } else { - yyv1340 = make([]ThirdPartyResourceData, yyrl1340) + yyv1391 = make([]ThirdPartyResourceData, yyrl1391) } } else { - yyv1340 = make([]ThirdPartyResourceData, yyrl1340) + yyv1391 = make([]ThirdPartyResourceData, yyrl1391) } - yyc1340 = true - yyrr1340 = len(yyv1340) - if yyrg1340 { - copy(yyv1340, yyv21340) + yyc1391 = true + yyrr1391 = len(yyv1391) + if yyrg1391 { + copy(yyv1391, yyv21391) } - } else if yyl1340 != len(yyv1340) { - yyv1340 = yyv1340[:yyl1340] - yyc1340 = true + } else if yyl1391 != len(yyv1391) { + yyv1391 = yyv1391[:yyl1391] + yyc1391 = true } - yyj1340 := 0 - for ; yyj1340 < yyrr1340; yyj1340++ { - yyh1340.ElemContainerState(yyj1340) + yyj1391 := 0 + for ; yyj1391 < yyrr1391; yyj1391++ { + yyh1391.ElemContainerState(yyj1391) if r.TryDecodeAsNil() { - yyv1340[yyj1340] = ThirdPartyResourceData{} + yyv1391[yyj1391] = ThirdPartyResourceData{} } else { - yyv1341 := &yyv1340[yyj1340] - yyv1341.CodecDecodeSelf(d) + yyv1392 := &yyv1391[yyj1391] + yyv1392.CodecDecodeSelf(d) } } - if yyrt1340 { - for ; yyj1340 < yyl1340; yyj1340++ { - yyv1340 = append(yyv1340, ThirdPartyResourceData{}) - yyh1340.ElemContainerState(yyj1340) + if yyrt1391 { + for ; yyj1391 < yyl1391; yyj1391++ { + yyv1391 = append(yyv1391, ThirdPartyResourceData{}) + yyh1391.ElemContainerState(yyj1391) if r.TryDecodeAsNil() { - yyv1340[yyj1340] = ThirdPartyResourceData{} + yyv1391[yyj1391] = ThirdPartyResourceData{} } else { - yyv1342 := &yyv1340[yyj1340] - yyv1342.CodecDecodeSelf(d) + yyv1393 := &yyv1391[yyj1391] + yyv1393.CodecDecodeSelf(d) } } } } else { - yyj1340 := 0 - for ; !r.CheckBreak(); yyj1340++ { + yyj1391 := 0 + for ; !r.CheckBreak(); yyj1391++ { - if yyj1340 >= len(yyv1340) { - yyv1340 = append(yyv1340, ThirdPartyResourceData{}) // var yyz1340 ThirdPartyResourceData - yyc1340 = true + if yyj1391 >= len(yyv1391) { + yyv1391 = append(yyv1391, ThirdPartyResourceData{}) // var yyz1391 ThirdPartyResourceData + yyc1391 = true } - yyh1340.ElemContainerState(yyj1340) - if yyj1340 < len(yyv1340) { + yyh1391.ElemContainerState(yyj1391) + if yyj1391 < len(yyv1391) { if r.TryDecodeAsNil() { - yyv1340[yyj1340] = ThirdPartyResourceData{} + yyv1391[yyj1391] = ThirdPartyResourceData{} } else { - yyv1343 := &yyv1340[yyj1340] - yyv1343.CodecDecodeSelf(d) + yyv1394 := &yyv1391[yyj1391] + yyv1394.CodecDecodeSelf(d) } } else { @@ -16460,17 +17009,17 @@ func (x codecSelfer1234) decSliceThirdPartyResourceData(v *[]ThirdPartyResourceD } } - if yyj1340 < len(yyv1340) { - yyv1340 = yyv1340[:yyj1340] - yyc1340 = true - } else if yyj1340 == 0 && yyv1340 == nil { - yyv1340 = []ThirdPartyResourceData{} - yyc1340 = true + if yyj1391 < len(yyv1391) { + yyv1391 = yyv1391[:yyj1391] + yyc1391 = true + } else if yyj1391 == 0 && yyv1391 == nil { + yyv1391 = []ThirdPartyResourceData{} + yyc1391 = true } } - yyh1340.End() - if yyc1340 { - *v = yyv1340 + yyh1391.End() + if yyc1391 { + *v = yyv1391 } } @@ -16479,10 +17028,10 @@ func (x codecSelfer1234) encSliceIngress(v []Ingress, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1344 := range v { + for _, yyv1395 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1345 := &yyv1344 - yy1345.CodecEncodeSelf(e) + yy1396 := &yyv1395 + yy1396.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16492,83 +17041,83 @@ func (x codecSelfer1234) decSliceIngress(v *[]Ingress, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1346 := *v - yyh1346, yyl1346 := z.DecSliceHelperStart() - var yyc1346 bool - if yyl1346 == 0 { - if yyv1346 == nil { - yyv1346 = []Ingress{} - yyc1346 = true - } else if len(yyv1346) != 0 { - yyv1346 = yyv1346[:0] - yyc1346 = true + yyv1397 := *v + yyh1397, yyl1397 := z.DecSliceHelperStart() + var yyc1397 bool + if yyl1397 == 0 { + if yyv1397 == nil { + yyv1397 = []Ingress{} + yyc1397 = true + } else if len(yyv1397) != 0 { + yyv1397 = yyv1397[:0] + yyc1397 = true } - } else if yyl1346 > 0 { - var yyrr1346, yyrl1346 int - var yyrt1346 bool - if yyl1346 > cap(yyv1346) { + } else if yyl1397 > 0 { + var yyrr1397, yyrl1397 int + var yyrt1397 bool + if yyl1397 > cap(yyv1397) { - yyrg1346 := len(yyv1346) > 0 - yyv21346 := yyv1346 - yyrl1346, yyrt1346 = z.DecInferLen(yyl1346, z.DecBasicHandle().MaxInitLen, 336) - if yyrt1346 { - if yyrl1346 <= cap(yyv1346) { - yyv1346 = yyv1346[:yyrl1346] + yyrg1397 := len(yyv1397) > 0 + yyv21397 := yyv1397 + yyrl1397, yyrt1397 = z.DecInferLen(yyl1397, z.DecBasicHandle().MaxInitLen, 336) + if yyrt1397 { + if yyrl1397 <= cap(yyv1397) { + yyv1397 = yyv1397[:yyrl1397] } else { - yyv1346 = make([]Ingress, yyrl1346) + yyv1397 = make([]Ingress, yyrl1397) } } else { - yyv1346 = make([]Ingress, yyrl1346) + yyv1397 = make([]Ingress, yyrl1397) } - yyc1346 = true - yyrr1346 = len(yyv1346) - if yyrg1346 { - copy(yyv1346, yyv21346) + yyc1397 = true + yyrr1397 = len(yyv1397) + if yyrg1397 { + copy(yyv1397, yyv21397) } - } else if yyl1346 != len(yyv1346) { - yyv1346 = yyv1346[:yyl1346] - yyc1346 = true + } else if yyl1397 != len(yyv1397) { + yyv1397 = yyv1397[:yyl1397] + yyc1397 = true } - yyj1346 := 0 - for ; yyj1346 < yyrr1346; yyj1346++ { - yyh1346.ElemContainerState(yyj1346) + yyj1397 := 0 + for ; yyj1397 < yyrr1397; yyj1397++ { + yyh1397.ElemContainerState(yyj1397) if r.TryDecodeAsNil() { - yyv1346[yyj1346] = Ingress{} + yyv1397[yyj1397] = Ingress{} } else { - yyv1347 := &yyv1346[yyj1346] - yyv1347.CodecDecodeSelf(d) + yyv1398 := &yyv1397[yyj1397] + yyv1398.CodecDecodeSelf(d) } } - if yyrt1346 { - for ; yyj1346 < yyl1346; yyj1346++ { - yyv1346 = append(yyv1346, Ingress{}) - yyh1346.ElemContainerState(yyj1346) + if yyrt1397 { + for ; yyj1397 < yyl1397; yyj1397++ { + yyv1397 = append(yyv1397, Ingress{}) + yyh1397.ElemContainerState(yyj1397) if r.TryDecodeAsNil() { - yyv1346[yyj1346] = Ingress{} + yyv1397[yyj1397] = Ingress{} } else { - yyv1348 := &yyv1346[yyj1346] - yyv1348.CodecDecodeSelf(d) + yyv1399 := &yyv1397[yyj1397] + yyv1399.CodecDecodeSelf(d) } } } } else { - yyj1346 := 0 - for ; !r.CheckBreak(); yyj1346++ { + yyj1397 := 0 + for ; !r.CheckBreak(); yyj1397++ { - if yyj1346 >= len(yyv1346) { - yyv1346 = append(yyv1346, Ingress{}) // var yyz1346 Ingress - yyc1346 = true + if yyj1397 >= len(yyv1397) { + yyv1397 = append(yyv1397, Ingress{}) // var yyz1397 Ingress + yyc1397 = true } - yyh1346.ElemContainerState(yyj1346) - if yyj1346 < len(yyv1346) { + yyh1397.ElemContainerState(yyj1397) + if yyj1397 < len(yyv1397) { if r.TryDecodeAsNil() { - yyv1346[yyj1346] = Ingress{} + yyv1397[yyj1397] = Ingress{} } else { - yyv1349 := &yyv1346[yyj1346] - yyv1349.CodecDecodeSelf(d) + yyv1400 := &yyv1397[yyj1397] + yyv1400.CodecDecodeSelf(d) } } else { @@ -16576,17 +17125,17 @@ func (x codecSelfer1234) decSliceIngress(v *[]Ingress, d *codec1978.Decoder) { } } - if yyj1346 < len(yyv1346) { - yyv1346 = yyv1346[:yyj1346] - yyc1346 = true - } else if yyj1346 == 0 && yyv1346 == nil { - yyv1346 = []Ingress{} - yyc1346 = true + if yyj1397 < len(yyv1397) { + yyv1397 = yyv1397[:yyj1397] + yyc1397 = true + } else if yyj1397 == 0 && yyv1397 == nil { + yyv1397 = []Ingress{} + yyc1397 = true } } - yyh1346.End() - if yyc1346 { - *v = yyv1346 + yyh1397.End() + if yyc1397 { + *v = yyv1397 } } @@ -16595,10 +17144,10 @@ func (x codecSelfer1234) encSliceIngressTLS(v []IngressTLS, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1350 := range v { + for _, yyv1401 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1351 := &yyv1350 - yy1351.CodecEncodeSelf(e) + yy1402 := &yyv1401 + yy1402.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16608,83 +17157,83 @@ func (x codecSelfer1234) decSliceIngressTLS(v *[]IngressTLS, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1352 := *v - yyh1352, yyl1352 := z.DecSliceHelperStart() - var yyc1352 bool - if yyl1352 == 0 { - if yyv1352 == nil { - yyv1352 = []IngressTLS{} - yyc1352 = true - } else if len(yyv1352) != 0 { - yyv1352 = yyv1352[:0] - yyc1352 = true + yyv1403 := *v + yyh1403, yyl1403 := z.DecSliceHelperStart() + var yyc1403 bool + if yyl1403 == 0 { + if yyv1403 == nil { + yyv1403 = []IngressTLS{} + yyc1403 = true + } else if len(yyv1403) != 0 { + yyv1403 = yyv1403[:0] + yyc1403 = true } - } else if yyl1352 > 0 { - var yyrr1352, yyrl1352 int - var yyrt1352 bool - if yyl1352 > cap(yyv1352) { + } else if yyl1403 > 0 { + var yyrr1403, yyrl1403 int + var yyrt1403 bool + if yyl1403 > cap(yyv1403) { - yyrg1352 := len(yyv1352) > 0 - yyv21352 := yyv1352 - yyrl1352, yyrt1352 = z.DecInferLen(yyl1352, z.DecBasicHandle().MaxInitLen, 40) - if yyrt1352 { - if yyrl1352 <= cap(yyv1352) { - yyv1352 = yyv1352[:yyrl1352] + yyrg1403 := len(yyv1403) > 0 + yyv21403 := yyv1403 + yyrl1403, yyrt1403 = z.DecInferLen(yyl1403, z.DecBasicHandle().MaxInitLen, 40) + if yyrt1403 { + if yyrl1403 <= cap(yyv1403) { + yyv1403 = yyv1403[:yyrl1403] } else { - yyv1352 = make([]IngressTLS, yyrl1352) + yyv1403 = make([]IngressTLS, yyrl1403) } } else { - yyv1352 = make([]IngressTLS, yyrl1352) + yyv1403 = make([]IngressTLS, yyrl1403) } - yyc1352 = true - yyrr1352 = len(yyv1352) - if yyrg1352 { - copy(yyv1352, yyv21352) + yyc1403 = true + yyrr1403 = len(yyv1403) + if yyrg1403 { + copy(yyv1403, yyv21403) } - } else if yyl1352 != len(yyv1352) { - yyv1352 = yyv1352[:yyl1352] - yyc1352 = true + } else if yyl1403 != len(yyv1403) { + yyv1403 = yyv1403[:yyl1403] + yyc1403 = true } - yyj1352 := 0 - for ; yyj1352 < yyrr1352; yyj1352++ { - yyh1352.ElemContainerState(yyj1352) + yyj1403 := 0 + for ; yyj1403 < yyrr1403; yyj1403++ { + yyh1403.ElemContainerState(yyj1403) if r.TryDecodeAsNil() { - yyv1352[yyj1352] = IngressTLS{} + yyv1403[yyj1403] = IngressTLS{} } else { - yyv1353 := &yyv1352[yyj1352] - yyv1353.CodecDecodeSelf(d) + yyv1404 := &yyv1403[yyj1403] + yyv1404.CodecDecodeSelf(d) } } - if yyrt1352 { - for ; yyj1352 < yyl1352; yyj1352++ { - yyv1352 = append(yyv1352, IngressTLS{}) - yyh1352.ElemContainerState(yyj1352) + if yyrt1403 { + for ; yyj1403 < yyl1403; yyj1403++ { + yyv1403 = append(yyv1403, IngressTLS{}) + yyh1403.ElemContainerState(yyj1403) if r.TryDecodeAsNil() { - yyv1352[yyj1352] = IngressTLS{} + yyv1403[yyj1403] = IngressTLS{} } else { - yyv1354 := &yyv1352[yyj1352] - yyv1354.CodecDecodeSelf(d) + yyv1405 := &yyv1403[yyj1403] + yyv1405.CodecDecodeSelf(d) } } } } else { - yyj1352 := 0 - for ; !r.CheckBreak(); yyj1352++ { + yyj1403 := 0 + for ; !r.CheckBreak(); yyj1403++ { - if yyj1352 >= len(yyv1352) { - yyv1352 = append(yyv1352, IngressTLS{}) // var yyz1352 IngressTLS - yyc1352 = true + if yyj1403 >= len(yyv1403) { + yyv1403 = append(yyv1403, IngressTLS{}) // var yyz1403 IngressTLS + yyc1403 = true } - yyh1352.ElemContainerState(yyj1352) - if yyj1352 < len(yyv1352) { + yyh1403.ElemContainerState(yyj1403) + if yyj1403 < len(yyv1403) { if r.TryDecodeAsNil() { - yyv1352[yyj1352] = IngressTLS{} + yyv1403[yyj1403] = IngressTLS{} } else { - yyv1355 := &yyv1352[yyj1352] - yyv1355.CodecDecodeSelf(d) + yyv1406 := &yyv1403[yyj1403] + yyv1406.CodecDecodeSelf(d) } } else { @@ -16692,17 +17241,17 @@ func (x codecSelfer1234) decSliceIngressTLS(v *[]IngressTLS, d *codec1978.Decode } } - if yyj1352 < len(yyv1352) { - yyv1352 = yyv1352[:yyj1352] - yyc1352 = true - } else if yyj1352 == 0 && yyv1352 == nil { - yyv1352 = []IngressTLS{} - yyc1352 = true + if yyj1403 < len(yyv1403) { + yyv1403 = yyv1403[:yyj1403] + yyc1403 = true + } else if yyj1403 == 0 && yyv1403 == nil { + yyv1403 = []IngressTLS{} + yyc1403 = true } } - yyh1352.End() - if yyc1352 { - *v = yyv1352 + yyh1403.End() + if yyc1403 { + *v = yyv1403 } } @@ -16711,10 +17260,10 @@ func (x codecSelfer1234) encSliceIngressRule(v []IngressRule, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1356 := range v { + for _, yyv1407 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1357 := &yyv1356 - yy1357.CodecEncodeSelf(e) + yy1408 := &yyv1407 + yy1408.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16724,83 +17273,83 @@ func (x codecSelfer1234) decSliceIngressRule(v *[]IngressRule, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1358 := *v - yyh1358, yyl1358 := z.DecSliceHelperStart() - var yyc1358 bool - if yyl1358 == 0 { - if yyv1358 == nil { - yyv1358 = []IngressRule{} - yyc1358 = true - } else if len(yyv1358) != 0 { - yyv1358 = yyv1358[:0] - yyc1358 = true + yyv1409 := *v + yyh1409, yyl1409 := z.DecSliceHelperStart() + var yyc1409 bool + if yyl1409 == 0 { + if yyv1409 == nil { + yyv1409 = []IngressRule{} + yyc1409 = true + } else if len(yyv1409) != 0 { + yyv1409 = yyv1409[:0] + yyc1409 = true } - } else if yyl1358 > 0 { - var yyrr1358, yyrl1358 int - var yyrt1358 bool - if yyl1358 > cap(yyv1358) { + } else if yyl1409 > 0 { + var yyrr1409, yyrl1409 int + var yyrt1409 bool + if yyl1409 > cap(yyv1409) { - yyrg1358 := len(yyv1358) > 0 - yyv21358 := yyv1358 - yyrl1358, yyrt1358 = z.DecInferLen(yyl1358, z.DecBasicHandle().MaxInitLen, 24) - if yyrt1358 { - if yyrl1358 <= cap(yyv1358) { - yyv1358 = yyv1358[:yyrl1358] + yyrg1409 := len(yyv1409) > 0 + yyv21409 := yyv1409 + yyrl1409, yyrt1409 = z.DecInferLen(yyl1409, z.DecBasicHandle().MaxInitLen, 24) + if yyrt1409 { + if yyrl1409 <= cap(yyv1409) { + yyv1409 = yyv1409[:yyrl1409] } else { - yyv1358 = make([]IngressRule, yyrl1358) + yyv1409 = make([]IngressRule, yyrl1409) } } else { - yyv1358 = make([]IngressRule, yyrl1358) + yyv1409 = make([]IngressRule, yyrl1409) } - yyc1358 = true - yyrr1358 = len(yyv1358) - if yyrg1358 { - copy(yyv1358, yyv21358) + yyc1409 = true + yyrr1409 = len(yyv1409) + if yyrg1409 { + copy(yyv1409, yyv21409) } - } else if yyl1358 != len(yyv1358) { - yyv1358 = yyv1358[:yyl1358] - yyc1358 = true + } else if yyl1409 != len(yyv1409) { + yyv1409 = yyv1409[:yyl1409] + yyc1409 = true } - yyj1358 := 0 - for ; yyj1358 < yyrr1358; yyj1358++ { - yyh1358.ElemContainerState(yyj1358) + yyj1409 := 0 + for ; yyj1409 < yyrr1409; yyj1409++ { + yyh1409.ElemContainerState(yyj1409) if r.TryDecodeAsNil() { - yyv1358[yyj1358] = IngressRule{} + yyv1409[yyj1409] = IngressRule{} } else { - yyv1359 := &yyv1358[yyj1358] - yyv1359.CodecDecodeSelf(d) + yyv1410 := &yyv1409[yyj1409] + yyv1410.CodecDecodeSelf(d) } } - if yyrt1358 { - for ; yyj1358 < yyl1358; yyj1358++ { - yyv1358 = append(yyv1358, IngressRule{}) - yyh1358.ElemContainerState(yyj1358) + if yyrt1409 { + for ; yyj1409 < yyl1409; yyj1409++ { + yyv1409 = append(yyv1409, IngressRule{}) + yyh1409.ElemContainerState(yyj1409) if r.TryDecodeAsNil() { - yyv1358[yyj1358] = IngressRule{} + yyv1409[yyj1409] = IngressRule{} } else { - yyv1360 := &yyv1358[yyj1358] - yyv1360.CodecDecodeSelf(d) + yyv1411 := &yyv1409[yyj1409] + yyv1411.CodecDecodeSelf(d) } } } } else { - yyj1358 := 0 - for ; !r.CheckBreak(); yyj1358++ { + yyj1409 := 0 + for ; !r.CheckBreak(); yyj1409++ { - if yyj1358 >= len(yyv1358) { - yyv1358 = append(yyv1358, IngressRule{}) // var yyz1358 IngressRule - yyc1358 = true + if yyj1409 >= len(yyv1409) { + yyv1409 = append(yyv1409, IngressRule{}) // var yyz1409 IngressRule + yyc1409 = true } - yyh1358.ElemContainerState(yyj1358) - if yyj1358 < len(yyv1358) { + yyh1409.ElemContainerState(yyj1409) + if yyj1409 < len(yyv1409) { if r.TryDecodeAsNil() { - yyv1358[yyj1358] = IngressRule{} + yyv1409[yyj1409] = IngressRule{} } else { - yyv1361 := &yyv1358[yyj1358] - yyv1361.CodecDecodeSelf(d) + yyv1412 := &yyv1409[yyj1409] + yyv1412.CodecDecodeSelf(d) } } else { @@ -16808,17 +17357,17 @@ func (x codecSelfer1234) decSliceIngressRule(v *[]IngressRule, d *codec1978.Deco } } - if yyj1358 < len(yyv1358) { - yyv1358 = yyv1358[:yyj1358] - yyc1358 = true - } else if yyj1358 == 0 && yyv1358 == nil { - yyv1358 = []IngressRule{} - yyc1358 = true + if yyj1409 < len(yyv1409) { + yyv1409 = yyv1409[:yyj1409] + yyc1409 = true + } else if yyj1409 == 0 && yyv1409 == nil { + yyv1409 = []IngressRule{} + yyc1409 = true } } - yyh1358.End() - if yyc1358 { - *v = yyv1358 + yyh1409.End() + if yyc1409 { + *v = yyv1409 } } @@ -16827,10 +17376,10 @@ func (x codecSelfer1234) encSliceHTTPIngressPath(v []HTTPIngressPath, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1362 := range v { + for _, yyv1413 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1363 := &yyv1362 - yy1363.CodecEncodeSelf(e) + yy1414 := &yyv1413 + yy1414.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16840,83 +17389,83 @@ func (x codecSelfer1234) decSliceHTTPIngressPath(v *[]HTTPIngressPath, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1364 := *v - yyh1364, yyl1364 := z.DecSliceHelperStart() - var yyc1364 bool - if yyl1364 == 0 { - if yyv1364 == nil { - yyv1364 = []HTTPIngressPath{} - yyc1364 = true - } else if len(yyv1364) != 0 { - yyv1364 = yyv1364[:0] - yyc1364 = true + yyv1415 := *v + yyh1415, yyl1415 := z.DecSliceHelperStart() + var yyc1415 bool + if yyl1415 == 0 { + if yyv1415 == nil { + yyv1415 = []HTTPIngressPath{} + yyc1415 = true + } else if len(yyv1415) != 0 { + yyv1415 = yyv1415[:0] + yyc1415 = true } - } else if yyl1364 > 0 { - var yyrr1364, yyrl1364 int - var yyrt1364 bool - if yyl1364 > cap(yyv1364) { + } else if yyl1415 > 0 { + var yyrr1415, yyrl1415 int + var yyrt1415 bool + if yyl1415 > cap(yyv1415) { - yyrg1364 := len(yyv1364) > 0 - yyv21364 := yyv1364 - yyrl1364, yyrt1364 = z.DecInferLen(yyl1364, z.DecBasicHandle().MaxInitLen, 64) - if yyrt1364 { - if yyrl1364 <= cap(yyv1364) { - yyv1364 = yyv1364[:yyrl1364] + yyrg1415 := len(yyv1415) > 0 + yyv21415 := yyv1415 + yyrl1415, yyrt1415 = z.DecInferLen(yyl1415, z.DecBasicHandle().MaxInitLen, 64) + if yyrt1415 { + if yyrl1415 <= cap(yyv1415) { + yyv1415 = yyv1415[:yyrl1415] } else { - yyv1364 = make([]HTTPIngressPath, yyrl1364) + yyv1415 = make([]HTTPIngressPath, yyrl1415) } } else { - yyv1364 = make([]HTTPIngressPath, yyrl1364) + yyv1415 = make([]HTTPIngressPath, yyrl1415) } - yyc1364 = true - yyrr1364 = len(yyv1364) - if yyrg1364 { - copy(yyv1364, yyv21364) + yyc1415 = true + yyrr1415 = len(yyv1415) + if yyrg1415 { + copy(yyv1415, yyv21415) } - } else if yyl1364 != len(yyv1364) { - yyv1364 = yyv1364[:yyl1364] - yyc1364 = true + } else if yyl1415 != len(yyv1415) { + yyv1415 = yyv1415[:yyl1415] + yyc1415 = true } - yyj1364 := 0 - for ; yyj1364 < yyrr1364; yyj1364++ { - yyh1364.ElemContainerState(yyj1364) + yyj1415 := 0 + for ; yyj1415 < yyrr1415; yyj1415++ { + yyh1415.ElemContainerState(yyj1415) if r.TryDecodeAsNil() { - yyv1364[yyj1364] = HTTPIngressPath{} + yyv1415[yyj1415] = HTTPIngressPath{} } else { - yyv1365 := &yyv1364[yyj1364] - yyv1365.CodecDecodeSelf(d) + yyv1416 := &yyv1415[yyj1415] + yyv1416.CodecDecodeSelf(d) } } - if yyrt1364 { - for ; yyj1364 < yyl1364; yyj1364++ { - yyv1364 = append(yyv1364, HTTPIngressPath{}) - yyh1364.ElemContainerState(yyj1364) + if yyrt1415 { + for ; yyj1415 < yyl1415; yyj1415++ { + yyv1415 = append(yyv1415, HTTPIngressPath{}) + yyh1415.ElemContainerState(yyj1415) if r.TryDecodeAsNil() { - yyv1364[yyj1364] = HTTPIngressPath{} + yyv1415[yyj1415] = HTTPIngressPath{} } else { - yyv1366 := &yyv1364[yyj1364] - yyv1366.CodecDecodeSelf(d) + yyv1417 := &yyv1415[yyj1415] + yyv1417.CodecDecodeSelf(d) } } } } else { - yyj1364 := 0 - for ; !r.CheckBreak(); yyj1364++ { + yyj1415 := 0 + for ; !r.CheckBreak(); yyj1415++ { - if yyj1364 >= len(yyv1364) { - yyv1364 = append(yyv1364, HTTPIngressPath{}) // var yyz1364 HTTPIngressPath - yyc1364 = true + if yyj1415 >= len(yyv1415) { + yyv1415 = append(yyv1415, HTTPIngressPath{}) // var yyz1415 HTTPIngressPath + yyc1415 = true } - yyh1364.ElemContainerState(yyj1364) - if yyj1364 < len(yyv1364) { + yyh1415.ElemContainerState(yyj1415) + if yyj1415 < len(yyv1415) { if r.TryDecodeAsNil() { - yyv1364[yyj1364] = HTTPIngressPath{} + yyv1415[yyj1415] = HTTPIngressPath{} } else { - yyv1367 := &yyv1364[yyj1364] - yyv1367.CodecDecodeSelf(d) + yyv1418 := &yyv1415[yyj1415] + yyv1418.CodecDecodeSelf(d) } } else { @@ -16924,17 +17473,17 @@ func (x codecSelfer1234) decSliceHTTPIngressPath(v *[]HTTPIngressPath, d *codec1 } } - if yyj1364 < len(yyv1364) { - yyv1364 = yyv1364[:yyj1364] - yyc1364 = true - } else if yyj1364 == 0 && yyv1364 == nil { - yyv1364 = []HTTPIngressPath{} - yyc1364 = true + if yyj1415 < len(yyv1415) { + yyv1415 = yyv1415[:yyj1415] + yyc1415 = true + } else if yyj1415 == 0 && yyv1415 == nil { + yyv1415 = []HTTPIngressPath{} + yyc1415 = true } } - yyh1364.End() - if yyc1364 { - *v = yyv1364 + yyh1415.End() + if yyc1415 { + *v = yyv1415 } } @@ -16943,10 +17492,10 @@ func (x codecSelfer1234) encSliceReplicaSet(v []ReplicaSet, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1368 := range v { + for _, yyv1419 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1369 := &yyv1368 - yy1369.CodecEncodeSelf(e) + yy1420 := &yyv1419 + yy1420.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16956,83 +17505,199 @@ func (x codecSelfer1234) decSliceReplicaSet(v *[]ReplicaSet, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1370 := *v - yyh1370, yyl1370 := z.DecSliceHelperStart() - var yyc1370 bool - if yyl1370 == 0 { - if yyv1370 == nil { - yyv1370 = []ReplicaSet{} - yyc1370 = true - } else if len(yyv1370) != 0 { - yyv1370 = yyv1370[:0] - yyc1370 = true + yyv1421 := *v + yyh1421, yyl1421 := z.DecSliceHelperStart() + var yyc1421 bool + if yyl1421 == 0 { + if yyv1421 == nil { + yyv1421 = []ReplicaSet{} + yyc1421 = true + } else if len(yyv1421) != 0 { + yyv1421 = yyv1421[:0] + yyc1421 = true + } + } else if yyl1421 > 0 { + var yyrr1421, yyrl1421 int + var yyrt1421 bool + if yyl1421 > cap(yyv1421) { + + yyrg1421 := len(yyv1421) > 0 + yyv21421 := yyv1421 + yyrl1421, yyrt1421 = z.DecInferLen(yyl1421, z.DecBasicHandle().MaxInitLen, 768) + if yyrt1421 { + if yyrl1421 <= cap(yyv1421) { + yyv1421 = yyv1421[:yyrl1421] + } else { + yyv1421 = make([]ReplicaSet, yyrl1421) + } + } else { + yyv1421 = make([]ReplicaSet, yyrl1421) + } + yyc1421 = true + yyrr1421 = len(yyv1421) + if yyrg1421 { + copy(yyv1421, yyv21421) + } + } else if yyl1421 != len(yyv1421) { + yyv1421 = yyv1421[:yyl1421] + yyc1421 = true + } + yyj1421 := 0 + for ; yyj1421 < yyrr1421; yyj1421++ { + yyh1421.ElemContainerState(yyj1421) + if r.TryDecodeAsNil() { + yyv1421[yyj1421] = ReplicaSet{} + } else { + yyv1422 := &yyv1421[yyj1421] + yyv1422.CodecDecodeSelf(d) + } + + } + if yyrt1421 { + for ; yyj1421 < yyl1421; yyj1421++ { + yyv1421 = append(yyv1421, ReplicaSet{}) + yyh1421.ElemContainerState(yyj1421) + if r.TryDecodeAsNil() { + yyv1421[yyj1421] = ReplicaSet{} + } else { + yyv1423 := &yyv1421[yyj1421] + yyv1423.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj1421 := 0 + for ; !r.CheckBreak(); yyj1421++ { + + if yyj1421 >= len(yyv1421) { + yyv1421 = append(yyv1421, ReplicaSet{}) // var yyz1421 ReplicaSet + yyc1421 = true + } + yyh1421.ElemContainerState(yyj1421) + if yyj1421 < len(yyv1421) { + if r.TryDecodeAsNil() { + yyv1421[yyj1421] = ReplicaSet{} + } else { + yyv1424 := &yyv1421[yyj1421] + yyv1424.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj1421 < len(yyv1421) { + yyv1421 = yyv1421[:yyj1421] + yyc1421 = true + } else if yyj1421 == 0 && yyv1421 == nil { + yyv1421 = []ReplicaSet{} + yyc1421 = true + } + } + yyh1421.End() + if yyc1421 { + *v = yyv1421 + } +} + +func (x codecSelfer1234) encSliceReplicaSetCondition(v []ReplicaSetCondition, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv1425 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy1426 := &yyv1425 + yy1426.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceReplicaSetCondition(v *[]ReplicaSetCondition, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1427 := *v + yyh1427, yyl1427 := z.DecSliceHelperStart() + var yyc1427 bool + if yyl1427 == 0 { + if yyv1427 == nil { + yyv1427 = []ReplicaSetCondition{} + yyc1427 = true + } else if len(yyv1427) != 0 { + yyv1427 = yyv1427[:0] + yyc1427 = true } - } else if yyl1370 > 0 { - var yyrr1370, yyrl1370 int - var yyrt1370 bool - if yyl1370 > cap(yyv1370) { + } else if yyl1427 > 0 { + var yyrr1427, yyrl1427 int + var yyrt1427 bool + if yyl1427 > cap(yyv1427) { - yyrg1370 := len(yyv1370) > 0 - yyv21370 := yyv1370 - yyrl1370, yyrt1370 = z.DecInferLen(yyl1370, z.DecBasicHandle().MaxInitLen, 744) - if yyrt1370 { - if yyrl1370 <= cap(yyv1370) { - yyv1370 = yyv1370[:yyrl1370] + yyrg1427 := len(yyv1427) > 0 + yyv21427 := yyv1427 + yyrl1427, yyrt1427 = z.DecInferLen(yyl1427, z.DecBasicHandle().MaxInitLen, 112) + if yyrt1427 { + if yyrl1427 <= cap(yyv1427) { + yyv1427 = yyv1427[:yyrl1427] } else { - yyv1370 = make([]ReplicaSet, yyrl1370) + yyv1427 = make([]ReplicaSetCondition, yyrl1427) } } else { - yyv1370 = make([]ReplicaSet, yyrl1370) + yyv1427 = make([]ReplicaSetCondition, yyrl1427) } - yyc1370 = true - yyrr1370 = len(yyv1370) - if yyrg1370 { - copy(yyv1370, yyv21370) + yyc1427 = true + yyrr1427 = len(yyv1427) + if yyrg1427 { + copy(yyv1427, yyv21427) } - } else if yyl1370 != len(yyv1370) { - yyv1370 = yyv1370[:yyl1370] - yyc1370 = true + } else if yyl1427 != len(yyv1427) { + yyv1427 = yyv1427[:yyl1427] + yyc1427 = true } - yyj1370 := 0 - for ; yyj1370 < yyrr1370; yyj1370++ { - yyh1370.ElemContainerState(yyj1370) + yyj1427 := 0 + for ; yyj1427 < yyrr1427; yyj1427++ { + yyh1427.ElemContainerState(yyj1427) if r.TryDecodeAsNil() { - yyv1370[yyj1370] = ReplicaSet{} + yyv1427[yyj1427] = ReplicaSetCondition{} } else { - yyv1371 := &yyv1370[yyj1370] - yyv1371.CodecDecodeSelf(d) + yyv1428 := &yyv1427[yyj1427] + yyv1428.CodecDecodeSelf(d) } } - if yyrt1370 { - for ; yyj1370 < yyl1370; yyj1370++ { - yyv1370 = append(yyv1370, ReplicaSet{}) - yyh1370.ElemContainerState(yyj1370) + if yyrt1427 { + for ; yyj1427 < yyl1427; yyj1427++ { + yyv1427 = append(yyv1427, ReplicaSetCondition{}) + yyh1427.ElemContainerState(yyj1427) if r.TryDecodeAsNil() { - yyv1370[yyj1370] = ReplicaSet{} + yyv1427[yyj1427] = ReplicaSetCondition{} } else { - yyv1372 := &yyv1370[yyj1370] - yyv1372.CodecDecodeSelf(d) + yyv1429 := &yyv1427[yyj1427] + yyv1429.CodecDecodeSelf(d) } } } } else { - yyj1370 := 0 - for ; !r.CheckBreak(); yyj1370++ { + yyj1427 := 0 + for ; !r.CheckBreak(); yyj1427++ { - if yyj1370 >= len(yyv1370) { - yyv1370 = append(yyv1370, ReplicaSet{}) // var yyz1370 ReplicaSet - yyc1370 = true + if yyj1427 >= len(yyv1427) { + yyv1427 = append(yyv1427, ReplicaSetCondition{}) // var yyz1427 ReplicaSetCondition + yyc1427 = true } - yyh1370.ElemContainerState(yyj1370) - if yyj1370 < len(yyv1370) { + yyh1427.ElemContainerState(yyj1427) + if yyj1427 < len(yyv1427) { if r.TryDecodeAsNil() { - yyv1370[yyj1370] = ReplicaSet{} + yyv1427[yyj1427] = ReplicaSetCondition{} } else { - yyv1373 := &yyv1370[yyj1370] - yyv1373.CodecDecodeSelf(d) + yyv1430 := &yyv1427[yyj1427] + yyv1430.CodecDecodeSelf(d) } } else { @@ -17040,17 +17705,17 @@ func (x codecSelfer1234) decSliceReplicaSet(v *[]ReplicaSet, d *codec1978.Decode } } - if yyj1370 < len(yyv1370) { - yyv1370 = yyv1370[:yyj1370] - yyc1370 = true - } else if yyj1370 == 0 && yyv1370 == nil { - yyv1370 = []ReplicaSet{} - yyc1370 = true + if yyj1427 < len(yyv1427) { + yyv1427 = yyv1427[:yyj1427] + yyc1427 = true + } else if yyj1427 == 0 && yyv1427 == nil { + yyv1427 = []ReplicaSetCondition{} + yyc1427 = true } } - yyh1370.End() - if yyc1370 { - *v = yyv1370 + yyh1427.End() + if yyc1427 { + *v = yyv1427 } } @@ -17059,14 +17724,14 @@ func (x codecSelfer1234) encSliceapi_Capability(v []pkg2_api.Capability, e *code z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1374 := range v { + for _, yyv1431 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1375 := z.EncBinary() - _ = yym1375 + yym1432 := z.EncBinary() + _ = yym1432 if false { - } else if z.HasExtensions() && z.EncExt(yyv1374) { + } else if z.HasExtensions() && z.EncExt(yyv1431) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyv1374)) + r.EncodeString(codecSelferC_UTF81234, string(yyv1431)) } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) @@ -17077,75 +17742,75 @@ func (x codecSelfer1234) decSliceapi_Capability(v *[]pkg2_api.Capability, d *cod z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1376 := *v - yyh1376, yyl1376 := z.DecSliceHelperStart() - var yyc1376 bool - if yyl1376 == 0 { - if yyv1376 == nil { - yyv1376 = []pkg2_api.Capability{} - yyc1376 = true - } else if len(yyv1376) != 0 { - yyv1376 = yyv1376[:0] - yyc1376 = true + yyv1433 := *v + yyh1433, yyl1433 := z.DecSliceHelperStart() + var yyc1433 bool + if yyl1433 == 0 { + if yyv1433 == nil { + yyv1433 = []pkg2_api.Capability{} + yyc1433 = true + } else if len(yyv1433) != 0 { + yyv1433 = yyv1433[:0] + yyc1433 = true } - } else if yyl1376 > 0 { - var yyrr1376, yyrl1376 int - var yyrt1376 bool - if yyl1376 > cap(yyv1376) { + } else if yyl1433 > 0 { + var yyrr1433, yyrl1433 int + var yyrt1433 bool + if yyl1433 > cap(yyv1433) { - yyrl1376, yyrt1376 = z.DecInferLen(yyl1376, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1376 { - if yyrl1376 <= cap(yyv1376) { - yyv1376 = yyv1376[:yyrl1376] + yyrl1433, yyrt1433 = z.DecInferLen(yyl1433, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1433 { + if yyrl1433 <= cap(yyv1433) { + yyv1433 = yyv1433[:yyrl1433] } else { - yyv1376 = make([]pkg2_api.Capability, yyrl1376) + yyv1433 = make([]pkg2_api.Capability, yyrl1433) } } else { - yyv1376 = make([]pkg2_api.Capability, yyrl1376) + yyv1433 = make([]pkg2_api.Capability, yyrl1433) } - yyc1376 = true - yyrr1376 = len(yyv1376) - } else if yyl1376 != len(yyv1376) { - yyv1376 = yyv1376[:yyl1376] - yyc1376 = true + yyc1433 = true + yyrr1433 = len(yyv1433) + } else if yyl1433 != len(yyv1433) { + yyv1433 = yyv1433[:yyl1433] + yyc1433 = true } - yyj1376 := 0 - for ; yyj1376 < yyrr1376; yyj1376++ { - yyh1376.ElemContainerState(yyj1376) + yyj1433 := 0 + for ; yyj1433 < yyrr1433; yyj1433++ { + yyh1433.ElemContainerState(yyj1433) if r.TryDecodeAsNil() { - yyv1376[yyj1376] = "" + yyv1433[yyj1433] = "" } else { - yyv1376[yyj1376] = pkg2_api.Capability(r.DecodeString()) + yyv1433[yyj1433] = pkg2_api.Capability(r.DecodeString()) } } - if yyrt1376 { - for ; yyj1376 < yyl1376; yyj1376++ { - yyv1376 = append(yyv1376, "") - yyh1376.ElemContainerState(yyj1376) + if yyrt1433 { + for ; yyj1433 < yyl1433; yyj1433++ { + yyv1433 = append(yyv1433, "") + yyh1433.ElemContainerState(yyj1433) if r.TryDecodeAsNil() { - yyv1376[yyj1376] = "" + yyv1433[yyj1433] = "" } else { - yyv1376[yyj1376] = pkg2_api.Capability(r.DecodeString()) + yyv1433[yyj1433] = pkg2_api.Capability(r.DecodeString()) } } } } else { - yyj1376 := 0 - for ; !r.CheckBreak(); yyj1376++ { + yyj1433 := 0 + for ; !r.CheckBreak(); yyj1433++ { - if yyj1376 >= len(yyv1376) { - yyv1376 = append(yyv1376, "") // var yyz1376 pkg2_api.Capability - yyc1376 = true + if yyj1433 >= len(yyv1433) { + yyv1433 = append(yyv1433, "") // var yyz1433 pkg2_api.Capability + yyc1433 = true } - yyh1376.ElemContainerState(yyj1376) - if yyj1376 < len(yyv1376) { + yyh1433.ElemContainerState(yyj1433) + if yyj1433 < len(yyv1433) { if r.TryDecodeAsNil() { - yyv1376[yyj1376] = "" + yyv1433[yyj1433] = "" } else { - yyv1376[yyj1376] = pkg2_api.Capability(r.DecodeString()) + yyv1433[yyj1433] = pkg2_api.Capability(r.DecodeString()) } } else { @@ -17153,17 +17818,17 @@ func (x codecSelfer1234) decSliceapi_Capability(v *[]pkg2_api.Capability, d *cod } } - if yyj1376 < len(yyv1376) { - yyv1376 = yyv1376[:yyj1376] - yyc1376 = true - } else if yyj1376 == 0 && yyv1376 == nil { - yyv1376 = []pkg2_api.Capability{} - yyc1376 = true + if yyj1433 < len(yyv1433) { + yyv1433 = yyv1433[:yyj1433] + yyc1433 = true + } else if yyj1433 == 0 && yyv1433 == nil { + yyv1433 = []pkg2_api.Capability{} + yyc1433 = true } } - yyh1376.End() - if yyc1376 { - *v = yyv1376 + yyh1433.End() + if yyc1433 { + *v = yyv1433 } } @@ -17172,9 +17837,9 @@ func (x codecSelfer1234) encSliceFSType(v []FSType, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1380 := range v { + for _, yyv1437 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv1380.CodecEncodeSelf(e) + yyv1437.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17184,75 +17849,75 @@ func (x codecSelfer1234) decSliceFSType(v *[]FSType, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1381 := *v - yyh1381, yyl1381 := z.DecSliceHelperStart() - var yyc1381 bool - if yyl1381 == 0 { - if yyv1381 == nil { - yyv1381 = []FSType{} - yyc1381 = true - } else if len(yyv1381) != 0 { - yyv1381 = yyv1381[:0] - yyc1381 = true + yyv1438 := *v + yyh1438, yyl1438 := z.DecSliceHelperStart() + var yyc1438 bool + if yyl1438 == 0 { + if yyv1438 == nil { + yyv1438 = []FSType{} + yyc1438 = true + } else if len(yyv1438) != 0 { + yyv1438 = yyv1438[:0] + yyc1438 = true } - } else if yyl1381 > 0 { - var yyrr1381, yyrl1381 int - var yyrt1381 bool - if yyl1381 > cap(yyv1381) { + } else if yyl1438 > 0 { + var yyrr1438, yyrl1438 int + var yyrt1438 bool + if yyl1438 > cap(yyv1438) { - yyrl1381, yyrt1381 = z.DecInferLen(yyl1381, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1381 { - if yyrl1381 <= cap(yyv1381) { - yyv1381 = yyv1381[:yyrl1381] + yyrl1438, yyrt1438 = z.DecInferLen(yyl1438, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1438 { + if yyrl1438 <= cap(yyv1438) { + yyv1438 = yyv1438[:yyrl1438] } else { - yyv1381 = make([]FSType, yyrl1381) + yyv1438 = make([]FSType, yyrl1438) } } else { - yyv1381 = make([]FSType, yyrl1381) + yyv1438 = make([]FSType, yyrl1438) } - yyc1381 = true - yyrr1381 = len(yyv1381) - } else if yyl1381 != len(yyv1381) { - yyv1381 = yyv1381[:yyl1381] - yyc1381 = true + yyc1438 = true + yyrr1438 = len(yyv1438) + } else if yyl1438 != len(yyv1438) { + yyv1438 = yyv1438[:yyl1438] + yyc1438 = true } - yyj1381 := 0 - for ; yyj1381 < yyrr1381; yyj1381++ { - yyh1381.ElemContainerState(yyj1381) + yyj1438 := 0 + for ; yyj1438 < yyrr1438; yyj1438++ { + yyh1438.ElemContainerState(yyj1438) if r.TryDecodeAsNil() { - yyv1381[yyj1381] = "" + yyv1438[yyj1438] = "" } else { - yyv1381[yyj1381] = FSType(r.DecodeString()) + yyv1438[yyj1438] = FSType(r.DecodeString()) } } - if yyrt1381 { - for ; yyj1381 < yyl1381; yyj1381++ { - yyv1381 = append(yyv1381, "") - yyh1381.ElemContainerState(yyj1381) + if yyrt1438 { + for ; yyj1438 < yyl1438; yyj1438++ { + yyv1438 = append(yyv1438, "") + yyh1438.ElemContainerState(yyj1438) if r.TryDecodeAsNil() { - yyv1381[yyj1381] = "" + yyv1438[yyj1438] = "" } else { - yyv1381[yyj1381] = FSType(r.DecodeString()) + yyv1438[yyj1438] = FSType(r.DecodeString()) } } } } else { - yyj1381 := 0 - for ; !r.CheckBreak(); yyj1381++ { + yyj1438 := 0 + for ; !r.CheckBreak(); yyj1438++ { - if yyj1381 >= len(yyv1381) { - yyv1381 = append(yyv1381, "") // var yyz1381 FSType - yyc1381 = true + if yyj1438 >= len(yyv1438) { + yyv1438 = append(yyv1438, "") // var yyz1438 FSType + yyc1438 = true } - yyh1381.ElemContainerState(yyj1381) - if yyj1381 < len(yyv1381) { + yyh1438.ElemContainerState(yyj1438) + if yyj1438 < len(yyv1438) { if r.TryDecodeAsNil() { - yyv1381[yyj1381] = "" + yyv1438[yyj1438] = "" } else { - yyv1381[yyj1381] = FSType(r.DecodeString()) + yyv1438[yyj1438] = FSType(r.DecodeString()) } } else { @@ -17260,17 +17925,17 @@ func (x codecSelfer1234) decSliceFSType(v *[]FSType, d *codec1978.Decoder) { } } - if yyj1381 < len(yyv1381) { - yyv1381 = yyv1381[:yyj1381] - yyc1381 = true - } else if yyj1381 == 0 && yyv1381 == nil { - yyv1381 = []FSType{} - yyc1381 = true + if yyj1438 < len(yyv1438) { + yyv1438 = yyv1438[:yyj1438] + yyc1438 = true + } else if yyj1438 == 0 && yyv1438 == nil { + yyv1438 = []FSType{} + yyc1438 = true } } - yyh1381.End() - if yyc1381 { - *v = yyv1381 + yyh1438.End() + if yyc1438 { + *v = yyv1438 } } @@ -17279,10 +17944,10 @@ func (x codecSelfer1234) encSliceHostPortRange(v []HostPortRange, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1385 := range v { + for _, yyv1442 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1386 := &yyv1385 - yy1386.CodecEncodeSelf(e) + yy1443 := &yyv1442 + yy1443.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17292,83 +17957,83 @@ func (x codecSelfer1234) decSliceHostPortRange(v *[]HostPortRange, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1387 := *v - yyh1387, yyl1387 := z.DecSliceHelperStart() - var yyc1387 bool - if yyl1387 == 0 { - if yyv1387 == nil { - yyv1387 = []HostPortRange{} - yyc1387 = true - } else if len(yyv1387) != 0 { - yyv1387 = yyv1387[:0] - yyc1387 = true + yyv1444 := *v + yyh1444, yyl1444 := z.DecSliceHelperStart() + var yyc1444 bool + if yyl1444 == 0 { + if yyv1444 == nil { + yyv1444 = []HostPortRange{} + yyc1444 = true + } else if len(yyv1444) != 0 { + yyv1444 = yyv1444[:0] + yyc1444 = true } - } else if yyl1387 > 0 { - var yyrr1387, yyrl1387 int - var yyrt1387 bool - if yyl1387 > cap(yyv1387) { + } else if yyl1444 > 0 { + var yyrr1444, yyrl1444 int + var yyrt1444 bool + if yyl1444 > cap(yyv1444) { - yyrg1387 := len(yyv1387) > 0 - yyv21387 := yyv1387 - yyrl1387, yyrt1387 = z.DecInferLen(yyl1387, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1387 { - if yyrl1387 <= cap(yyv1387) { - yyv1387 = yyv1387[:yyrl1387] + yyrg1444 := len(yyv1444) > 0 + yyv21444 := yyv1444 + yyrl1444, yyrt1444 = z.DecInferLen(yyl1444, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1444 { + if yyrl1444 <= cap(yyv1444) { + yyv1444 = yyv1444[:yyrl1444] } else { - yyv1387 = make([]HostPortRange, yyrl1387) + yyv1444 = make([]HostPortRange, yyrl1444) } } else { - yyv1387 = make([]HostPortRange, yyrl1387) + yyv1444 = make([]HostPortRange, yyrl1444) } - yyc1387 = true - yyrr1387 = len(yyv1387) - if yyrg1387 { - copy(yyv1387, yyv21387) + yyc1444 = true + yyrr1444 = len(yyv1444) + if yyrg1444 { + copy(yyv1444, yyv21444) } - } else if yyl1387 != len(yyv1387) { - yyv1387 = yyv1387[:yyl1387] - yyc1387 = true + } else if yyl1444 != len(yyv1444) { + yyv1444 = yyv1444[:yyl1444] + yyc1444 = true } - yyj1387 := 0 - for ; yyj1387 < yyrr1387; yyj1387++ { - yyh1387.ElemContainerState(yyj1387) + yyj1444 := 0 + for ; yyj1444 < yyrr1444; yyj1444++ { + yyh1444.ElemContainerState(yyj1444) if r.TryDecodeAsNil() { - yyv1387[yyj1387] = HostPortRange{} + yyv1444[yyj1444] = HostPortRange{} } else { - yyv1388 := &yyv1387[yyj1387] - yyv1388.CodecDecodeSelf(d) + yyv1445 := &yyv1444[yyj1444] + yyv1445.CodecDecodeSelf(d) } } - if yyrt1387 { - for ; yyj1387 < yyl1387; yyj1387++ { - yyv1387 = append(yyv1387, HostPortRange{}) - yyh1387.ElemContainerState(yyj1387) + if yyrt1444 { + for ; yyj1444 < yyl1444; yyj1444++ { + yyv1444 = append(yyv1444, HostPortRange{}) + yyh1444.ElemContainerState(yyj1444) if r.TryDecodeAsNil() { - yyv1387[yyj1387] = HostPortRange{} + yyv1444[yyj1444] = HostPortRange{} } else { - yyv1389 := &yyv1387[yyj1387] - yyv1389.CodecDecodeSelf(d) + yyv1446 := &yyv1444[yyj1444] + yyv1446.CodecDecodeSelf(d) } } } } else { - yyj1387 := 0 - for ; !r.CheckBreak(); yyj1387++ { + yyj1444 := 0 + for ; !r.CheckBreak(); yyj1444++ { - if yyj1387 >= len(yyv1387) { - yyv1387 = append(yyv1387, HostPortRange{}) // var yyz1387 HostPortRange - yyc1387 = true + if yyj1444 >= len(yyv1444) { + yyv1444 = append(yyv1444, HostPortRange{}) // var yyz1444 HostPortRange + yyc1444 = true } - yyh1387.ElemContainerState(yyj1387) - if yyj1387 < len(yyv1387) { + yyh1444.ElemContainerState(yyj1444) + if yyj1444 < len(yyv1444) { if r.TryDecodeAsNil() { - yyv1387[yyj1387] = HostPortRange{} + yyv1444[yyj1444] = HostPortRange{} } else { - yyv1390 := &yyv1387[yyj1387] - yyv1390.CodecDecodeSelf(d) + yyv1447 := &yyv1444[yyj1444] + yyv1447.CodecDecodeSelf(d) } } else { @@ -17376,17 +18041,17 @@ func (x codecSelfer1234) decSliceHostPortRange(v *[]HostPortRange, d *codec1978. } } - if yyj1387 < len(yyv1387) { - yyv1387 = yyv1387[:yyj1387] - yyc1387 = true - } else if yyj1387 == 0 && yyv1387 == nil { - yyv1387 = []HostPortRange{} - yyc1387 = true + if yyj1444 < len(yyv1444) { + yyv1444 = yyv1444[:yyj1444] + yyc1444 = true + } else if yyj1444 == 0 && yyv1444 == nil { + yyv1444 = []HostPortRange{} + yyc1444 = true } } - yyh1387.End() - if yyc1387 { - *v = yyv1387 + yyh1444.End() + if yyc1444 { + *v = yyv1444 } } @@ -17395,10 +18060,10 @@ func (x codecSelfer1234) encSliceIDRange(v []IDRange, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1391 := range v { + for _, yyv1448 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1392 := &yyv1391 - yy1392.CodecEncodeSelf(e) + yy1449 := &yyv1448 + yy1449.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17408,83 +18073,83 @@ func (x codecSelfer1234) decSliceIDRange(v *[]IDRange, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1393 := *v - yyh1393, yyl1393 := z.DecSliceHelperStart() - var yyc1393 bool - if yyl1393 == 0 { - if yyv1393 == nil { - yyv1393 = []IDRange{} - yyc1393 = true - } else if len(yyv1393) != 0 { - yyv1393 = yyv1393[:0] - yyc1393 = true + yyv1450 := *v + yyh1450, yyl1450 := z.DecSliceHelperStart() + var yyc1450 bool + if yyl1450 == 0 { + if yyv1450 == nil { + yyv1450 = []IDRange{} + yyc1450 = true + } else if len(yyv1450) != 0 { + yyv1450 = yyv1450[:0] + yyc1450 = true } - } else if yyl1393 > 0 { - var yyrr1393, yyrl1393 int - var yyrt1393 bool - if yyl1393 > cap(yyv1393) { + } else if yyl1450 > 0 { + var yyrr1450, yyrl1450 int + var yyrt1450 bool + if yyl1450 > cap(yyv1450) { - yyrg1393 := len(yyv1393) > 0 - yyv21393 := yyv1393 - yyrl1393, yyrt1393 = z.DecInferLen(yyl1393, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1393 { - if yyrl1393 <= cap(yyv1393) { - yyv1393 = yyv1393[:yyrl1393] + yyrg1450 := len(yyv1450) > 0 + yyv21450 := yyv1450 + yyrl1450, yyrt1450 = z.DecInferLen(yyl1450, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1450 { + if yyrl1450 <= cap(yyv1450) { + yyv1450 = yyv1450[:yyrl1450] } else { - yyv1393 = make([]IDRange, yyrl1393) + yyv1450 = make([]IDRange, yyrl1450) } } else { - yyv1393 = make([]IDRange, yyrl1393) + yyv1450 = make([]IDRange, yyrl1450) } - yyc1393 = true - yyrr1393 = len(yyv1393) - if yyrg1393 { - copy(yyv1393, yyv21393) + yyc1450 = true + yyrr1450 = len(yyv1450) + if yyrg1450 { + copy(yyv1450, yyv21450) } - } else if yyl1393 != len(yyv1393) { - yyv1393 = yyv1393[:yyl1393] - yyc1393 = true + } else if yyl1450 != len(yyv1450) { + yyv1450 = yyv1450[:yyl1450] + yyc1450 = true } - yyj1393 := 0 - for ; yyj1393 < yyrr1393; yyj1393++ { - yyh1393.ElemContainerState(yyj1393) + yyj1450 := 0 + for ; yyj1450 < yyrr1450; yyj1450++ { + yyh1450.ElemContainerState(yyj1450) if r.TryDecodeAsNil() { - yyv1393[yyj1393] = IDRange{} + yyv1450[yyj1450] = IDRange{} } else { - yyv1394 := &yyv1393[yyj1393] - yyv1394.CodecDecodeSelf(d) + yyv1451 := &yyv1450[yyj1450] + yyv1451.CodecDecodeSelf(d) } } - if yyrt1393 { - for ; yyj1393 < yyl1393; yyj1393++ { - yyv1393 = append(yyv1393, IDRange{}) - yyh1393.ElemContainerState(yyj1393) + if yyrt1450 { + for ; yyj1450 < yyl1450; yyj1450++ { + yyv1450 = append(yyv1450, IDRange{}) + yyh1450.ElemContainerState(yyj1450) if r.TryDecodeAsNil() { - yyv1393[yyj1393] = IDRange{} + yyv1450[yyj1450] = IDRange{} } else { - yyv1395 := &yyv1393[yyj1393] - yyv1395.CodecDecodeSelf(d) + yyv1452 := &yyv1450[yyj1450] + yyv1452.CodecDecodeSelf(d) } } } } else { - yyj1393 := 0 - for ; !r.CheckBreak(); yyj1393++ { + yyj1450 := 0 + for ; !r.CheckBreak(); yyj1450++ { - if yyj1393 >= len(yyv1393) { - yyv1393 = append(yyv1393, IDRange{}) // var yyz1393 IDRange - yyc1393 = true + if yyj1450 >= len(yyv1450) { + yyv1450 = append(yyv1450, IDRange{}) // var yyz1450 IDRange + yyc1450 = true } - yyh1393.ElemContainerState(yyj1393) - if yyj1393 < len(yyv1393) { + yyh1450.ElemContainerState(yyj1450) + if yyj1450 < len(yyv1450) { if r.TryDecodeAsNil() { - yyv1393[yyj1393] = IDRange{} + yyv1450[yyj1450] = IDRange{} } else { - yyv1396 := &yyv1393[yyj1393] - yyv1396.CodecDecodeSelf(d) + yyv1453 := &yyv1450[yyj1450] + yyv1453.CodecDecodeSelf(d) } } else { @@ -17492,17 +18157,17 @@ func (x codecSelfer1234) decSliceIDRange(v *[]IDRange, d *codec1978.Decoder) { } } - if yyj1393 < len(yyv1393) { - yyv1393 = yyv1393[:yyj1393] - yyc1393 = true - } else if yyj1393 == 0 && yyv1393 == nil { - yyv1393 = []IDRange{} - yyc1393 = true + if yyj1450 < len(yyv1450) { + yyv1450 = yyv1450[:yyj1450] + yyc1450 = true + } else if yyj1450 == 0 && yyv1450 == nil { + yyv1450 = []IDRange{} + yyc1450 = true } } - yyh1393.End() - if yyc1393 { - *v = yyv1393 + yyh1450.End() + if yyc1450 { + *v = yyv1450 } } @@ -17511,10 +18176,10 @@ func (x codecSelfer1234) encSlicePodSecurityPolicy(v []PodSecurityPolicy, e *cod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1397 := range v { + for _, yyv1454 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1398 := &yyv1397 - yy1398.CodecEncodeSelf(e) + yy1455 := &yyv1454 + yy1455.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17524,83 +18189,83 @@ func (x codecSelfer1234) decSlicePodSecurityPolicy(v *[]PodSecurityPolicy, d *co z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1399 := *v - yyh1399, yyl1399 := z.DecSliceHelperStart() - var yyc1399 bool - if yyl1399 == 0 { - if yyv1399 == nil { - yyv1399 = []PodSecurityPolicy{} - yyc1399 = true - } else if len(yyv1399) != 0 { - yyv1399 = yyv1399[:0] - yyc1399 = true + yyv1456 := *v + yyh1456, yyl1456 := z.DecSliceHelperStart() + var yyc1456 bool + if yyl1456 == 0 { + if yyv1456 == nil { + yyv1456 = []PodSecurityPolicy{} + yyc1456 = true + } else if len(yyv1456) != 0 { + yyv1456 = yyv1456[:0] + yyc1456 = true } - } else if yyl1399 > 0 { - var yyrr1399, yyrl1399 int - var yyrt1399 bool - if yyl1399 > cap(yyv1399) { + } else if yyl1456 > 0 { + var yyrr1456, yyrl1456 int + var yyrt1456 bool + if yyl1456 > cap(yyv1456) { - yyrg1399 := len(yyv1399) > 0 - yyv21399 := yyv1399 - yyrl1399, yyrt1399 = z.DecInferLen(yyl1399, z.DecBasicHandle().MaxInitLen, 552) - if yyrt1399 { - if yyrl1399 <= cap(yyv1399) { - yyv1399 = yyv1399[:yyrl1399] + yyrg1456 := len(yyv1456) > 0 + yyv21456 := yyv1456 + yyrl1456, yyrt1456 = z.DecInferLen(yyl1456, z.DecBasicHandle().MaxInitLen, 552) + if yyrt1456 { + if yyrl1456 <= cap(yyv1456) { + yyv1456 = yyv1456[:yyrl1456] } else { - yyv1399 = make([]PodSecurityPolicy, yyrl1399) + yyv1456 = make([]PodSecurityPolicy, yyrl1456) } } else { - yyv1399 = make([]PodSecurityPolicy, yyrl1399) + yyv1456 = make([]PodSecurityPolicy, yyrl1456) } - yyc1399 = true - yyrr1399 = len(yyv1399) - if yyrg1399 { - copy(yyv1399, yyv21399) + yyc1456 = true + yyrr1456 = len(yyv1456) + if yyrg1456 { + copy(yyv1456, yyv21456) } - } else if yyl1399 != len(yyv1399) { - yyv1399 = yyv1399[:yyl1399] - yyc1399 = true + } else if yyl1456 != len(yyv1456) { + yyv1456 = yyv1456[:yyl1456] + yyc1456 = true } - yyj1399 := 0 - for ; yyj1399 < yyrr1399; yyj1399++ { - yyh1399.ElemContainerState(yyj1399) + yyj1456 := 0 + for ; yyj1456 < yyrr1456; yyj1456++ { + yyh1456.ElemContainerState(yyj1456) if r.TryDecodeAsNil() { - yyv1399[yyj1399] = PodSecurityPolicy{} + yyv1456[yyj1456] = PodSecurityPolicy{} } else { - yyv1400 := &yyv1399[yyj1399] - yyv1400.CodecDecodeSelf(d) + yyv1457 := &yyv1456[yyj1456] + yyv1457.CodecDecodeSelf(d) } } - if yyrt1399 { - for ; yyj1399 < yyl1399; yyj1399++ { - yyv1399 = append(yyv1399, PodSecurityPolicy{}) - yyh1399.ElemContainerState(yyj1399) + if yyrt1456 { + for ; yyj1456 < yyl1456; yyj1456++ { + yyv1456 = append(yyv1456, PodSecurityPolicy{}) + yyh1456.ElemContainerState(yyj1456) if r.TryDecodeAsNil() { - yyv1399[yyj1399] = PodSecurityPolicy{} + yyv1456[yyj1456] = PodSecurityPolicy{} } else { - yyv1401 := &yyv1399[yyj1399] - yyv1401.CodecDecodeSelf(d) + yyv1458 := &yyv1456[yyj1456] + yyv1458.CodecDecodeSelf(d) } } } } else { - yyj1399 := 0 - for ; !r.CheckBreak(); yyj1399++ { + yyj1456 := 0 + for ; !r.CheckBreak(); yyj1456++ { - if yyj1399 >= len(yyv1399) { - yyv1399 = append(yyv1399, PodSecurityPolicy{}) // var yyz1399 PodSecurityPolicy - yyc1399 = true + if yyj1456 >= len(yyv1456) { + yyv1456 = append(yyv1456, PodSecurityPolicy{}) // var yyz1456 PodSecurityPolicy + yyc1456 = true } - yyh1399.ElemContainerState(yyj1399) - if yyj1399 < len(yyv1399) { + yyh1456.ElemContainerState(yyj1456) + if yyj1456 < len(yyv1456) { if r.TryDecodeAsNil() { - yyv1399[yyj1399] = PodSecurityPolicy{} + yyv1456[yyj1456] = PodSecurityPolicy{} } else { - yyv1402 := &yyv1399[yyj1399] - yyv1402.CodecDecodeSelf(d) + yyv1459 := &yyv1456[yyj1456] + yyv1459.CodecDecodeSelf(d) } } else { @@ -17608,17 +18273,17 @@ func (x codecSelfer1234) decSlicePodSecurityPolicy(v *[]PodSecurityPolicy, d *co } } - if yyj1399 < len(yyv1399) { - yyv1399 = yyv1399[:yyj1399] - yyc1399 = true - } else if yyj1399 == 0 && yyv1399 == nil { - yyv1399 = []PodSecurityPolicy{} - yyc1399 = true + if yyj1456 < len(yyv1456) { + yyv1456 = yyv1456[:yyj1456] + yyc1456 = true + } else if yyj1456 == 0 && yyv1456 == nil { + yyv1456 = []PodSecurityPolicy{} + yyc1456 = true } } - yyh1399.End() - if yyc1399 { - *v = yyv1399 + yyh1456.End() + if yyc1456 { + *v = yyv1456 } } @@ -17627,10 +18292,10 @@ func (x codecSelfer1234) encSliceNetworkPolicyIngressRule(v []NetworkPolicyIngre z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1403 := range v { + for _, yyv1460 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1404 := &yyv1403 - yy1404.CodecEncodeSelf(e) + yy1461 := &yyv1460 + yy1461.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17640,83 +18305,83 @@ func (x codecSelfer1234) decSliceNetworkPolicyIngressRule(v *[]NetworkPolicyIngr z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1405 := *v - yyh1405, yyl1405 := z.DecSliceHelperStart() - var yyc1405 bool - if yyl1405 == 0 { - if yyv1405 == nil { - yyv1405 = []NetworkPolicyIngressRule{} - yyc1405 = true - } else if len(yyv1405) != 0 { - yyv1405 = yyv1405[:0] - yyc1405 = true + yyv1462 := *v + yyh1462, yyl1462 := z.DecSliceHelperStart() + var yyc1462 bool + if yyl1462 == 0 { + if yyv1462 == nil { + yyv1462 = []NetworkPolicyIngressRule{} + yyc1462 = true + } else if len(yyv1462) != 0 { + yyv1462 = yyv1462[:0] + yyc1462 = true } - } else if yyl1405 > 0 { - var yyrr1405, yyrl1405 int - var yyrt1405 bool - if yyl1405 > cap(yyv1405) { + } else if yyl1462 > 0 { + var yyrr1462, yyrl1462 int + var yyrt1462 bool + if yyl1462 > cap(yyv1462) { - yyrg1405 := len(yyv1405) > 0 - yyv21405 := yyv1405 - yyrl1405, yyrt1405 = z.DecInferLen(yyl1405, z.DecBasicHandle().MaxInitLen, 48) - if yyrt1405 { - if yyrl1405 <= cap(yyv1405) { - yyv1405 = yyv1405[:yyrl1405] + yyrg1462 := len(yyv1462) > 0 + yyv21462 := yyv1462 + yyrl1462, yyrt1462 = z.DecInferLen(yyl1462, z.DecBasicHandle().MaxInitLen, 48) + if yyrt1462 { + if yyrl1462 <= cap(yyv1462) { + yyv1462 = yyv1462[:yyrl1462] } else { - yyv1405 = make([]NetworkPolicyIngressRule, yyrl1405) + yyv1462 = make([]NetworkPolicyIngressRule, yyrl1462) } } else { - yyv1405 = make([]NetworkPolicyIngressRule, yyrl1405) + yyv1462 = make([]NetworkPolicyIngressRule, yyrl1462) } - yyc1405 = true - yyrr1405 = len(yyv1405) - if yyrg1405 { - copy(yyv1405, yyv21405) + yyc1462 = true + yyrr1462 = len(yyv1462) + if yyrg1462 { + copy(yyv1462, yyv21462) } - } else if yyl1405 != len(yyv1405) { - yyv1405 = yyv1405[:yyl1405] - yyc1405 = true + } else if yyl1462 != len(yyv1462) { + yyv1462 = yyv1462[:yyl1462] + yyc1462 = true } - yyj1405 := 0 - for ; yyj1405 < yyrr1405; yyj1405++ { - yyh1405.ElemContainerState(yyj1405) + yyj1462 := 0 + for ; yyj1462 < yyrr1462; yyj1462++ { + yyh1462.ElemContainerState(yyj1462) if r.TryDecodeAsNil() { - yyv1405[yyj1405] = NetworkPolicyIngressRule{} + yyv1462[yyj1462] = NetworkPolicyIngressRule{} } else { - yyv1406 := &yyv1405[yyj1405] - yyv1406.CodecDecodeSelf(d) + yyv1463 := &yyv1462[yyj1462] + yyv1463.CodecDecodeSelf(d) } } - if yyrt1405 { - for ; yyj1405 < yyl1405; yyj1405++ { - yyv1405 = append(yyv1405, NetworkPolicyIngressRule{}) - yyh1405.ElemContainerState(yyj1405) + if yyrt1462 { + for ; yyj1462 < yyl1462; yyj1462++ { + yyv1462 = append(yyv1462, NetworkPolicyIngressRule{}) + yyh1462.ElemContainerState(yyj1462) if r.TryDecodeAsNil() { - yyv1405[yyj1405] = NetworkPolicyIngressRule{} + yyv1462[yyj1462] = NetworkPolicyIngressRule{} } else { - yyv1407 := &yyv1405[yyj1405] - yyv1407.CodecDecodeSelf(d) + yyv1464 := &yyv1462[yyj1462] + yyv1464.CodecDecodeSelf(d) } } } } else { - yyj1405 := 0 - for ; !r.CheckBreak(); yyj1405++ { + yyj1462 := 0 + for ; !r.CheckBreak(); yyj1462++ { - if yyj1405 >= len(yyv1405) { - yyv1405 = append(yyv1405, NetworkPolicyIngressRule{}) // var yyz1405 NetworkPolicyIngressRule - yyc1405 = true + if yyj1462 >= len(yyv1462) { + yyv1462 = append(yyv1462, NetworkPolicyIngressRule{}) // var yyz1462 NetworkPolicyIngressRule + yyc1462 = true } - yyh1405.ElemContainerState(yyj1405) - if yyj1405 < len(yyv1405) { + yyh1462.ElemContainerState(yyj1462) + if yyj1462 < len(yyv1462) { if r.TryDecodeAsNil() { - yyv1405[yyj1405] = NetworkPolicyIngressRule{} + yyv1462[yyj1462] = NetworkPolicyIngressRule{} } else { - yyv1408 := &yyv1405[yyj1405] - yyv1408.CodecDecodeSelf(d) + yyv1465 := &yyv1462[yyj1462] + yyv1465.CodecDecodeSelf(d) } } else { @@ -17724,17 +18389,17 @@ func (x codecSelfer1234) decSliceNetworkPolicyIngressRule(v *[]NetworkPolicyIngr } } - if yyj1405 < len(yyv1405) { - yyv1405 = yyv1405[:yyj1405] - yyc1405 = true - } else if yyj1405 == 0 && yyv1405 == nil { - yyv1405 = []NetworkPolicyIngressRule{} - yyc1405 = true + if yyj1462 < len(yyv1462) { + yyv1462 = yyv1462[:yyj1462] + yyc1462 = true + } else if yyj1462 == 0 && yyv1462 == nil { + yyv1462 = []NetworkPolicyIngressRule{} + yyc1462 = true } } - yyh1405.End() - if yyc1405 { - *v = yyv1405 + yyh1462.End() + if yyc1462 { + *v = yyv1462 } } @@ -17743,10 +18408,10 @@ func (x codecSelfer1234) encSliceNetworkPolicyPort(v []NetworkPolicyPort, e *cod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1409 := range v { + for _, yyv1466 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1410 := &yyv1409 - yy1410.CodecEncodeSelf(e) + yy1467 := &yyv1466 + yy1467.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17756,83 +18421,83 @@ func (x codecSelfer1234) decSliceNetworkPolicyPort(v *[]NetworkPolicyPort, d *co z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1411 := *v - yyh1411, yyl1411 := z.DecSliceHelperStart() - var yyc1411 bool - if yyl1411 == 0 { - if yyv1411 == nil { - yyv1411 = []NetworkPolicyPort{} - yyc1411 = true - } else if len(yyv1411) != 0 { - yyv1411 = yyv1411[:0] - yyc1411 = true + yyv1468 := *v + yyh1468, yyl1468 := z.DecSliceHelperStart() + var yyc1468 bool + if yyl1468 == 0 { + if yyv1468 == nil { + yyv1468 = []NetworkPolicyPort{} + yyc1468 = true + } else if len(yyv1468) != 0 { + yyv1468 = yyv1468[:0] + yyc1468 = true } - } else if yyl1411 > 0 { - var yyrr1411, yyrl1411 int - var yyrt1411 bool - if yyl1411 > cap(yyv1411) { + } else if yyl1468 > 0 { + var yyrr1468, yyrl1468 int + var yyrt1468 bool + if yyl1468 > cap(yyv1468) { - yyrg1411 := len(yyv1411) > 0 - yyv21411 := yyv1411 - yyrl1411, yyrt1411 = z.DecInferLen(yyl1411, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1411 { - if yyrl1411 <= cap(yyv1411) { - yyv1411 = yyv1411[:yyrl1411] + yyrg1468 := len(yyv1468) > 0 + yyv21468 := yyv1468 + yyrl1468, yyrt1468 = z.DecInferLen(yyl1468, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1468 { + if yyrl1468 <= cap(yyv1468) { + yyv1468 = yyv1468[:yyrl1468] } else { - yyv1411 = make([]NetworkPolicyPort, yyrl1411) + yyv1468 = make([]NetworkPolicyPort, yyrl1468) } } else { - yyv1411 = make([]NetworkPolicyPort, yyrl1411) + yyv1468 = make([]NetworkPolicyPort, yyrl1468) } - yyc1411 = true - yyrr1411 = len(yyv1411) - if yyrg1411 { - copy(yyv1411, yyv21411) + yyc1468 = true + yyrr1468 = len(yyv1468) + if yyrg1468 { + copy(yyv1468, yyv21468) } - } else if yyl1411 != len(yyv1411) { - yyv1411 = yyv1411[:yyl1411] - yyc1411 = true + } else if yyl1468 != len(yyv1468) { + yyv1468 = yyv1468[:yyl1468] + yyc1468 = true } - yyj1411 := 0 - for ; yyj1411 < yyrr1411; yyj1411++ { - yyh1411.ElemContainerState(yyj1411) + yyj1468 := 0 + for ; yyj1468 < yyrr1468; yyj1468++ { + yyh1468.ElemContainerState(yyj1468) if r.TryDecodeAsNil() { - yyv1411[yyj1411] = NetworkPolicyPort{} + yyv1468[yyj1468] = NetworkPolicyPort{} } else { - yyv1412 := &yyv1411[yyj1411] - yyv1412.CodecDecodeSelf(d) + yyv1469 := &yyv1468[yyj1468] + yyv1469.CodecDecodeSelf(d) } } - if yyrt1411 { - for ; yyj1411 < yyl1411; yyj1411++ { - yyv1411 = append(yyv1411, NetworkPolicyPort{}) - yyh1411.ElemContainerState(yyj1411) + if yyrt1468 { + for ; yyj1468 < yyl1468; yyj1468++ { + yyv1468 = append(yyv1468, NetworkPolicyPort{}) + yyh1468.ElemContainerState(yyj1468) if r.TryDecodeAsNil() { - yyv1411[yyj1411] = NetworkPolicyPort{} + yyv1468[yyj1468] = NetworkPolicyPort{} } else { - yyv1413 := &yyv1411[yyj1411] - yyv1413.CodecDecodeSelf(d) + yyv1470 := &yyv1468[yyj1468] + yyv1470.CodecDecodeSelf(d) } } } } else { - yyj1411 := 0 - for ; !r.CheckBreak(); yyj1411++ { + yyj1468 := 0 + for ; !r.CheckBreak(); yyj1468++ { - if yyj1411 >= len(yyv1411) { - yyv1411 = append(yyv1411, NetworkPolicyPort{}) // var yyz1411 NetworkPolicyPort - yyc1411 = true + if yyj1468 >= len(yyv1468) { + yyv1468 = append(yyv1468, NetworkPolicyPort{}) // var yyz1468 NetworkPolicyPort + yyc1468 = true } - yyh1411.ElemContainerState(yyj1411) - if yyj1411 < len(yyv1411) { + yyh1468.ElemContainerState(yyj1468) + if yyj1468 < len(yyv1468) { if r.TryDecodeAsNil() { - yyv1411[yyj1411] = NetworkPolicyPort{} + yyv1468[yyj1468] = NetworkPolicyPort{} } else { - yyv1414 := &yyv1411[yyj1411] - yyv1414.CodecDecodeSelf(d) + yyv1471 := &yyv1468[yyj1468] + yyv1471.CodecDecodeSelf(d) } } else { @@ -17840,17 +18505,17 @@ func (x codecSelfer1234) decSliceNetworkPolicyPort(v *[]NetworkPolicyPort, d *co } } - if yyj1411 < len(yyv1411) { - yyv1411 = yyv1411[:yyj1411] - yyc1411 = true - } else if yyj1411 == 0 && yyv1411 == nil { - yyv1411 = []NetworkPolicyPort{} - yyc1411 = true + if yyj1468 < len(yyv1468) { + yyv1468 = yyv1468[:yyj1468] + yyc1468 = true + } else if yyj1468 == 0 && yyv1468 == nil { + yyv1468 = []NetworkPolicyPort{} + yyc1468 = true } } - yyh1411.End() - if yyc1411 { - *v = yyv1411 + yyh1468.End() + if yyc1468 { + *v = yyv1468 } } @@ -17859,10 +18524,10 @@ func (x codecSelfer1234) encSliceNetworkPolicyPeer(v []NetworkPolicyPeer, e *cod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1415 := range v { + for _, yyv1472 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1416 := &yyv1415 - yy1416.CodecEncodeSelf(e) + yy1473 := &yyv1472 + yy1473.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17872,83 +18537,83 @@ func (x codecSelfer1234) decSliceNetworkPolicyPeer(v *[]NetworkPolicyPeer, d *co z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1417 := *v - yyh1417, yyl1417 := z.DecSliceHelperStart() - var yyc1417 bool - if yyl1417 == 0 { - if yyv1417 == nil { - yyv1417 = []NetworkPolicyPeer{} - yyc1417 = true - } else if len(yyv1417) != 0 { - yyv1417 = yyv1417[:0] - yyc1417 = true + yyv1474 := *v + yyh1474, yyl1474 := z.DecSliceHelperStart() + var yyc1474 bool + if yyl1474 == 0 { + if yyv1474 == nil { + yyv1474 = []NetworkPolicyPeer{} + yyc1474 = true + } else if len(yyv1474) != 0 { + yyv1474 = yyv1474[:0] + yyc1474 = true } - } else if yyl1417 > 0 { - var yyrr1417, yyrl1417 int - var yyrt1417 bool - if yyl1417 > cap(yyv1417) { + } else if yyl1474 > 0 { + var yyrr1474, yyrl1474 int + var yyrt1474 bool + if yyl1474 > cap(yyv1474) { - yyrg1417 := len(yyv1417) > 0 - yyv21417 := yyv1417 - yyrl1417, yyrt1417 = z.DecInferLen(yyl1417, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1417 { - if yyrl1417 <= cap(yyv1417) { - yyv1417 = yyv1417[:yyrl1417] + yyrg1474 := len(yyv1474) > 0 + yyv21474 := yyv1474 + yyrl1474, yyrt1474 = z.DecInferLen(yyl1474, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1474 { + if yyrl1474 <= cap(yyv1474) { + yyv1474 = yyv1474[:yyrl1474] } else { - yyv1417 = make([]NetworkPolicyPeer, yyrl1417) + yyv1474 = make([]NetworkPolicyPeer, yyrl1474) } } else { - yyv1417 = make([]NetworkPolicyPeer, yyrl1417) + yyv1474 = make([]NetworkPolicyPeer, yyrl1474) } - yyc1417 = true - yyrr1417 = len(yyv1417) - if yyrg1417 { - copy(yyv1417, yyv21417) + yyc1474 = true + yyrr1474 = len(yyv1474) + if yyrg1474 { + copy(yyv1474, yyv21474) } - } else if yyl1417 != len(yyv1417) { - yyv1417 = yyv1417[:yyl1417] - yyc1417 = true + } else if yyl1474 != len(yyv1474) { + yyv1474 = yyv1474[:yyl1474] + yyc1474 = true } - yyj1417 := 0 - for ; yyj1417 < yyrr1417; yyj1417++ { - yyh1417.ElemContainerState(yyj1417) + yyj1474 := 0 + for ; yyj1474 < yyrr1474; yyj1474++ { + yyh1474.ElemContainerState(yyj1474) if r.TryDecodeAsNil() { - yyv1417[yyj1417] = NetworkPolicyPeer{} + yyv1474[yyj1474] = NetworkPolicyPeer{} } else { - yyv1418 := &yyv1417[yyj1417] - yyv1418.CodecDecodeSelf(d) + yyv1475 := &yyv1474[yyj1474] + yyv1475.CodecDecodeSelf(d) } } - if yyrt1417 { - for ; yyj1417 < yyl1417; yyj1417++ { - yyv1417 = append(yyv1417, NetworkPolicyPeer{}) - yyh1417.ElemContainerState(yyj1417) + if yyrt1474 { + for ; yyj1474 < yyl1474; yyj1474++ { + yyv1474 = append(yyv1474, NetworkPolicyPeer{}) + yyh1474.ElemContainerState(yyj1474) if r.TryDecodeAsNil() { - yyv1417[yyj1417] = NetworkPolicyPeer{} + yyv1474[yyj1474] = NetworkPolicyPeer{} } else { - yyv1419 := &yyv1417[yyj1417] - yyv1419.CodecDecodeSelf(d) + yyv1476 := &yyv1474[yyj1474] + yyv1476.CodecDecodeSelf(d) } } } } else { - yyj1417 := 0 - for ; !r.CheckBreak(); yyj1417++ { + yyj1474 := 0 + for ; !r.CheckBreak(); yyj1474++ { - if yyj1417 >= len(yyv1417) { - yyv1417 = append(yyv1417, NetworkPolicyPeer{}) // var yyz1417 NetworkPolicyPeer - yyc1417 = true + if yyj1474 >= len(yyv1474) { + yyv1474 = append(yyv1474, NetworkPolicyPeer{}) // var yyz1474 NetworkPolicyPeer + yyc1474 = true } - yyh1417.ElemContainerState(yyj1417) - if yyj1417 < len(yyv1417) { + yyh1474.ElemContainerState(yyj1474) + if yyj1474 < len(yyv1474) { if r.TryDecodeAsNil() { - yyv1417[yyj1417] = NetworkPolicyPeer{} + yyv1474[yyj1474] = NetworkPolicyPeer{} } else { - yyv1420 := &yyv1417[yyj1417] - yyv1420.CodecDecodeSelf(d) + yyv1477 := &yyv1474[yyj1474] + yyv1477.CodecDecodeSelf(d) } } else { @@ -17956,17 +18621,17 @@ func (x codecSelfer1234) decSliceNetworkPolicyPeer(v *[]NetworkPolicyPeer, d *co } } - if yyj1417 < len(yyv1417) { - yyv1417 = yyv1417[:yyj1417] - yyc1417 = true - } else if yyj1417 == 0 && yyv1417 == nil { - yyv1417 = []NetworkPolicyPeer{} - yyc1417 = true + if yyj1474 < len(yyv1474) { + yyv1474 = yyv1474[:yyj1474] + yyc1474 = true + } else if yyj1474 == 0 && yyv1474 == nil { + yyv1474 = []NetworkPolicyPeer{} + yyc1474 = true } } - yyh1417.End() - if yyc1417 { - *v = yyv1417 + yyh1474.End() + if yyc1474 { + *v = yyv1474 } } @@ -17975,10 +18640,10 @@ func (x codecSelfer1234) encSliceNetworkPolicy(v []NetworkPolicy, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1421 := range v { + for _, yyv1478 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1422 := &yyv1421 - yy1422.CodecEncodeSelf(e) + yy1479 := &yyv1478 + yy1479.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17988,83 +18653,83 @@ func (x codecSelfer1234) decSliceNetworkPolicy(v *[]NetworkPolicy, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1423 := *v - yyh1423, yyl1423 := z.DecSliceHelperStart() - var yyc1423 bool - if yyl1423 == 0 { - if yyv1423 == nil { - yyv1423 = []NetworkPolicy{} - yyc1423 = true - } else if len(yyv1423) != 0 { - yyv1423 = yyv1423[:0] - yyc1423 = true + yyv1480 := *v + yyh1480, yyl1480 := z.DecSliceHelperStart() + var yyc1480 bool + if yyl1480 == 0 { + if yyv1480 == nil { + yyv1480 = []NetworkPolicy{} + yyc1480 = true + } else if len(yyv1480) != 0 { + yyv1480 = yyv1480[:0] + yyc1480 = true } - } else if yyl1423 > 0 { - var yyrr1423, yyrl1423 int - var yyrt1423 bool - if yyl1423 > cap(yyv1423) { + } else if yyl1480 > 0 { + var yyrr1480, yyrl1480 int + var yyrt1480 bool + if yyl1480 > cap(yyv1480) { - yyrg1423 := len(yyv1423) > 0 - yyv21423 := yyv1423 - yyrl1423, yyrt1423 = z.DecInferLen(yyl1423, z.DecBasicHandle().MaxInitLen, 312) - if yyrt1423 { - if yyrl1423 <= cap(yyv1423) { - yyv1423 = yyv1423[:yyrl1423] + yyrg1480 := len(yyv1480) > 0 + yyv21480 := yyv1480 + yyrl1480, yyrt1480 = z.DecInferLen(yyl1480, z.DecBasicHandle().MaxInitLen, 312) + if yyrt1480 { + if yyrl1480 <= cap(yyv1480) { + yyv1480 = yyv1480[:yyrl1480] } else { - yyv1423 = make([]NetworkPolicy, yyrl1423) + yyv1480 = make([]NetworkPolicy, yyrl1480) } } else { - yyv1423 = make([]NetworkPolicy, yyrl1423) + yyv1480 = make([]NetworkPolicy, yyrl1480) } - yyc1423 = true - yyrr1423 = len(yyv1423) - if yyrg1423 { - copy(yyv1423, yyv21423) + yyc1480 = true + yyrr1480 = len(yyv1480) + if yyrg1480 { + copy(yyv1480, yyv21480) } - } else if yyl1423 != len(yyv1423) { - yyv1423 = yyv1423[:yyl1423] - yyc1423 = true + } else if yyl1480 != len(yyv1480) { + yyv1480 = yyv1480[:yyl1480] + yyc1480 = true } - yyj1423 := 0 - for ; yyj1423 < yyrr1423; yyj1423++ { - yyh1423.ElemContainerState(yyj1423) + yyj1480 := 0 + for ; yyj1480 < yyrr1480; yyj1480++ { + yyh1480.ElemContainerState(yyj1480) if r.TryDecodeAsNil() { - yyv1423[yyj1423] = NetworkPolicy{} + yyv1480[yyj1480] = NetworkPolicy{} } else { - yyv1424 := &yyv1423[yyj1423] - yyv1424.CodecDecodeSelf(d) + yyv1481 := &yyv1480[yyj1480] + yyv1481.CodecDecodeSelf(d) } } - if yyrt1423 { - for ; yyj1423 < yyl1423; yyj1423++ { - yyv1423 = append(yyv1423, NetworkPolicy{}) - yyh1423.ElemContainerState(yyj1423) + if yyrt1480 { + for ; yyj1480 < yyl1480; yyj1480++ { + yyv1480 = append(yyv1480, NetworkPolicy{}) + yyh1480.ElemContainerState(yyj1480) if r.TryDecodeAsNil() { - yyv1423[yyj1423] = NetworkPolicy{} + yyv1480[yyj1480] = NetworkPolicy{} } else { - yyv1425 := &yyv1423[yyj1423] - yyv1425.CodecDecodeSelf(d) + yyv1482 := &yyv1480[yyj1480] + yyv1482.CodecDecodeSelf(d) } } } } else { - yyj1423 := 0 - for ; !r.CheckBreak(); yyj1423++ { + yyj1480 := 0 + for ; !r.CheckBreak(); yyj1480++ { - if yyj1423 >= len(yyv1423) { - yyv1423 = append(yyv1423, NetworkPolicy{}) // var yyz1423 NetworkPolicy - yyc1423 = true + if yyj1480 >= len(yyv1480) { + yyv1480 = append(yyv1480, NetworkPolicy{}) // var yyz1480 NetworkPolicy + yyc1480 = true } - yyh1423.ElemContainerState(yyj1423) - if yyj1423 < len(yyv1423) { + yyh1480.ElemContainerState(yyj1480) + if yyj1480 < len(yyv1480) { if r.TryDecodeAsNil() { - yyv1423[yyj1423] = NetworkPolicy{} + yyv1480[yyj1480] = NetworkPolicy{} } else { - yyv1426 := &yyv1423[yyj1423] - yyv1426.CodecDecodeSelf(d) + yyv1483 := &yyv1480[yyj1480] + yyv1483.CodecDecodeSelf(d) } } else { @@ -18072,16 +18737,16 @@ func (x codecSelfer1234) decSliceNetworkPolicy(v *[]NetworkPolicy, d *codec1978. } } - if yyj1423 < len(yyv1423) { - yyv1423 = yyv1423[:yyj1423] - yyc1423 = true - } else if yyj1423 == 0 && yyv1423 == nil { - yyv1423 = []NetworkPolicy{} - yyc1423 = true + if yyj1480 < len(yyv1480) { + yyv1480 = yyv1480[:yyj1480] + yyc1480 = true + } else if yyj1480 == 0 && yyv1480 == nil { + yyv1480 = []NetworkPolicy{} + yyc1480 = true } } - yyh1423.End() - if yyc1423 { - *v = yyv1423 + yyh1480.End() + if yyc1480 { + *v = yyv1480 } } diff --git a/pkg/apis/extensions/v1beta1/generated.pb.go b/pkg/apis/extensions/v1beta1/generated.pb.go index ce46062d0c61..bf2bb4402030 100644 --- a/pkg/apis/extensions/v1beta1/generated.pb.go +++ b/pkg/apis/extensions/v1beta1/generated.pb.go @@ -76,6 +76,7 @@ limitations under the License. PodSecurityPolicyList PodSecurityPolicySpec ReplicaSet + ReplicaSetCondition ReplicaSetList ReplicaSetSpec ReplicaSetStatus @@ -340,83 +341,87 @@ func (m *ReplicaSet) Reset() { *m = ReplicaSet{} } func (*ReplicaSet) ProtoMessage() {} func (*ReplicaSet) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{50} } +func (m *ReplicaSetCondition) Reset() { *m = ReplicaSetCondition{} } +func (*ReplicaSetCondition) ProtoMessage() {} +func (*ReplicaSetCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{51} } + func (m *ReplicaSetList) Reset() { *m = ReplicaSetList{} } func (*ReplicaSetList) ProtoMessage() {} -func (*ReplicaSetList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{51} } +func (*ReplicaSetList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{52} } func (m *ReplicaSetSpec) Reset() { *m = ReplicaSetSpec{} } func (*ReplicaSetSpec) ProtoMessage() {} -func (*ReplicaSetSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{52} } +func (*ReplicaSetSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{53} } func (m *ReplicaSetStatus) Reset() { *m = ReplicaSetStatus{} } func (*ReplicaSetStatus) ProtoMessage() {} -func (*ReplicaSetStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{53} } +func (*ReplicaSetStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{54} } func (m *ReplicationControllerDummy) Reset() { *m = ReplicationControllerDummy{} } func (*ReplicationControllerDummy) ProtoMessage() {} func (*ReplicationControllerDummy) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{54} + return fileDescriptorGenerated, []int{55} } func (m *RollbackConfig) Reset() { *m = RollbackConfig{} } func (*RollbackConfig) ProtoMessage() {} -func (*RollbackConfig) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{55} } +func (*RollbackConfig) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{56} } func (m *RollingUpdateDeployment) Reset() { *m = RollingUpdateDeployment{} } func (*RollingUpdateDeployment) ProtoMessage() {} func (*RollingUpdateDeployment) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{56} + return fileDescriptorGenerated, []int{57} } func (m *RunAsUserStrategyOptions) Reset() { *m = RunAsUserStrategyOptions{} } func (*RunAsUserStrategyOptions) ProtoMessage() {} func (*RunAsUserStrategyOptions) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{57} + return fileDescriptorGenerated, []int{58} } func (m *SELinuxStrategyOptions) Reset() { *m = SELinuxStrategyOptions{} } func (*SELinuxStrategyOptions) ProtoMessage() {} -func (*SELinuxStrategyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{58} } +func (*SELinuxStrategyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{59} } func (m *Scale) Reset() { *m = Scale{} } func (*Scale) ProtoMessage() {} -func (*Scale) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{59} } +func (*Scale) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{60} } func (m *ScaleSpec) Reset() { *m = ScaleSpec{} } func (*ScaleSpec) ProtoMessage() {} -func (*ScaleSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{60} } +func (*ScaleSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{61} } func (m *ScaleStatus) Reset() { *m = ScaleStatus{} } func (*ScaleStatus) ProtoMessage() {} -func (*ScaleStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{61} } +func (*ScaleStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{62} } func (m *SubresourceReference) Reset() { *m = SubresourceReference{} } func (*SubresourceReference) ProtoMessage() {} -func (*SubresourceReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{62} } +func (*SubresourceReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{63} } func (m *SupplementalGroupsStrategyOptions) Reset() { *m = SupplementalGroupsStrategyOptions{} } func (*SupplementalGroupsStrategyOptions) ProtoMessage() {} func (*SupplementalGroupsStrategyOptions) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{63} + return fileDescriptorGenerated, []int{64} } func (m *ThirdPartyResource) Reset() { *m = ThirdPartyResource{} } func (*ThirdPartyResource) ProtoMessage() {} -func (*ThirdPartyResource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{64} } +func (*ThirdPartyResource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{65} } func (m *ThirdPartyResourceData) Reset() { *m = ThirdPartyResourceData{} } func (*ThirdPartyResourceData) ProtoMessage() {} -func (*ThirdPartyResourceData) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{65} } +func (*ThirdPartyResourceData) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{66} } func (m *ThirdPartyResourceDataList) Reset() { *m = ThirdPartyResourceDataList{} } func (*ThirdPartyResourceDataList) ProtoMessage() {} func (*ThirdPartyResourceDataList) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{66} + return fileDescriptorGenerated, []int{67} } func (m *ThirdPartyResourceList) Reset() { *m = ThirdPartyResourceList{} } func (*ThirdPartyResourceList) ProtoMessage() {} -func (*ThirdPartyResourceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{67} } +func (*ThirdPartyResourceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{68} } func init() { proto.RegisterType((*APIVersion)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.APIVersion") @@ -470,6 +475,7 @@ func init() { proto.RegisterType((*PodSecurityPolicyList)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.PodSecurityPolicyList") proto.RegisterType((*PodSecurityPolicySpec)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.PodSecurityPolicySpec") proto.RegisterType((*ReplicaSet)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.ReplicaSet") + proto.RegisterType((*ReplicaSetCondition)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.ReplicaSetCondition") proto.RegisterType((*ReplicaSetList)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.ReplicaSetList") proto.RegisterType((*ReplicaSetSpec)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.ReplicaSetSpec") proto.RegisterType((*ReplicaSetStatus)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.ReplicaSetStatus") @@ -2526,6 +2532,56 @@ func (m *ReplicaSet) MarshalTo(data []byte) (int, error) { return i, nil } +func (m *ReplicaSetCondition) Marshal() (data []byte, err error) { + size := m.Size() + data = make([]byte, size) + n, err := m.MarshalTo(data) + if err != nil { + return nil, err + } + return data[:n], nil +} + +func (m *ReplicaSetCondition) MarshalTo(data []byte) (int, error) { + var i int + _ = i + var l int + _ = l + data[i] = 0xa + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.Type))) + i += copy(data[i:], m.Type) + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.Status))) + i += copy(data[i:], m.Status) + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.LastProbeTime.Size())) + n63, err := m.LastProbeTime.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n63 + data[i] = 0x22 + i++ + i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) + n64, err := m.LastTransitionTime.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n64 + data[i] = 0x2a + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) + i += copy(data[i:], m.Reason) + data[i] = 0x32 + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.Message))) + i += copy(data[i:], m.Message) + return i, nil +} + func (m *ReplicaSetList) Marshal() (data []byte, err error) { size := m.Size() data = make([]byte, size) @@ -2544,11 +2600,11 @@ func (m *ReplicaSetList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n63, err := m.ListMeta.MarshalTo(data[i:]) + n65, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n63 + i += n65 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -2588,20 +2644,20 @@ func (m *ReplicaSetSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Selector.Size())) - n64, err := m.Selector.MarshalTo(data[i:]) + n66, err := m.Selector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n64 + i += n66 } data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n65, err := m.Template.MarshalTo(data[i:]) + n67, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n65 + i += n67 data[i] = 0x20 i++ i = encodeVarintGenerated(data, i, uint64(m.MinReadySeconds)) @@ -2638,6 +2694,18 @@ func (m *ReplicaSetStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x28 i++ i = encodeVarintGenerated(data, i, uint64(m.AvailableReplicas)) + if len(m.Conditions) > 0 { + for _, msg := range m.Conditions { + data[i] = 0x32 + i++ + i = encodeVarintGenerated(data, i, uint64(msg.Size())) + n, err := msg.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n + } + } return i, nil } @@ -2699,21 +2767,21 @@ func (m *RollingUpdateDeployment) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.MaxUnavailable.Size())) - n66, err := m.MaxUnavailable.MarshalTo(data[i:]) + n68, err := m.MaxUnavailable.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n66 + i += n68 } if m.MaxSurge != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.MaxSurge.Size())) - n67, err := m.MaxSurge.MarshalTo(data[i:]) + n69, err := m.MaxSurge.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n67 + i += n69 } return i, nil } @@ -2775,11 +2843,11 @@ func (m *SELinuxStrategyOptions) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.SELinuxOptions.Size())) - n68, err := m.SELinuxOptions.MarshalTo(data[i:]) + n70, err := m.SELinuxOptions.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n68 + i += n70 } return i, nil } @@ -2802,27 +2870,27 @@ func (m *Scale) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n69, err := m.ObjectMeta.MarshalTo(data[i:]) + n71, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n69 + i += n71 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n70, err := m.Spec.MarshalTo(data[i:]) + n72, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n70 + i += n72 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n71, err := m.Status.MarshalTo(data[i:]) + n73, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n71 + i += n73 return i, nil } @@ -2975,11 +3043,11 @@ func (m *ThirdPartyResource) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n72, err := m.ObjectMeta.MarshalTo(data[i:]) + n74, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n72 + i += n74 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Description))) @@ -3017,11 +3085,11 @@ func (m *ThirdPartyResourceData) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n73, err := m.ObjectMeta.MarshalTo(data[i:]) + n75, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n73 + i += n75 if m.Data != nil { data[i] = 0x12 i++ @@ -3049,11 +3117,11 @@ func (m *ThirdPartyResourceDataList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n74, err := m.ListMeta.MarshalTo(data[i:]) + n76, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n74 + i += n76 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -3087,11 +3155,11 @@ func (m *ThirdPartyResourceList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n75, err := m.ListMeta.MarshalTo(data[i:]) + n77, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n75 + i += n77 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -3849,6 +3917,24 @@ func (m *ReplicaSet) Size() (n int) { return n } +func (m *ReplicaSetCondition) Size() (n int) { + var l int + _ = l + l = len(m.Type) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Status) + n += 1 + l + sovGenerated(uint64(l)) + l = m.LastProbeTime.Size() + n += 1 + l + sovGenerated(uint64(l)) + l = m.LastTransitionTime.Size() + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Reason) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Message) + n += 1 + l + sovGenerated(uint64(l)) + return n +} + func (m *ReplicaSetList) Size() (n int) { var l int _ = l @@ -3887,6 +3973,12 @@ func (m *ReplicaSetStatus) Size() (n int) { n += 1 + sovGenerated(uint64(m.ObservedGeneration)) n += 1 + sovGenerated(uint64(m.ReadyReplicas)) n += 1 + sovGenerated(uint64(m.AvailableReplicas)) + if len(m.Conditions) > 0 { + for _, e := range m.Conditions { + l = e.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + } return n } @@ -4698,6 +4790,21 @@ func (this *ReplicaSet) String() string { }, "") return s } +func (this *ReplicaSetCondition) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&ReplicaSetCondition{`, + `Type:` + fmt.Sprintf("%v", this.Type) + `,`, + `Status:` + fmt.Sprintf("%v", this.Status) + `,`, + `LastProbeTime:` + strings.Replace(strings.Replace(this.LastProbeTime.String(), "Time", "k8s_io_kubernetes_pkg_api_unversioned.Time", 1), `&`, ``, 1) + `,`, + `LastTransitionTime:` + strings.Replace(strings.Replace(this.LastTransitionTime.String(), "Time", "k8s_io_kubernetes_pkg_api_unversioned.Time", 1), `&`, ``, 1) + `,`, + `Reason:` + fmt.Sprintf("%v", this.Reason) + `,`, + `Message:` + fmt.Sprintf("%v", this.Message) + `,`, + `}`, + }, "") + return s +} func (this *ReplicaSetList) String() string { if this == nil { return "nil" @@ -4732,6 +4839,7 @@ func (this *ReplicaSetStatus) String() string { `ObservedGeneration:` + fmt.Sprintf("%v", this.ObservedGeneration) + `,`, `ReadyReplicas:` + fmt.Sprintf("%v", this.ReadyReplicas) + `,`, `AvailableReplicas:` + fmt.Sprintf("%v", this.AvailableReplicas) + `,`, + `Conditions:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Conditions), "ReplicaSetCondition", "ReplicaSetCondition", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -11561,6 +11669,232 @@ func (m *ReplicaSet) Unmarshal(data []byte) error { } return nil } +func (m *ReplicaSetCondition) Unmarshal(data []byte) error { + l := len(data) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ReplicaSetCondition: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReplicaSetCondition: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", 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.Type = ReplicaSetConditionType(data[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Status", 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.Status = k8s_io_kubernetes_pkg_api_v1.ConditionStatus(data[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field LastProbeTime", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.LastProbeTime.Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field LastTransitionTime", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.LastTransitionTime.Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Reason", 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.Reason = string(data[iNdEx:postIndex]) + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Message", 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.Message = string(data[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipGenerated(data[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *ReplicaSetList) Unmarshal(data []byte) error { l := len(data) iNdEx := 0 @@ -11948,6 +12282,37 @@ func (m *ReplicaSetStatus) Unmarshal(data []byte) error { break } } + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Conditions", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Conditions = append(m.Conditions, ReplicaSetCondition{}) + if err := m.Conditions[len(m.Conditions)-1].Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -13699,246 +14064,249 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 3850 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe4, 0x5b, 0xdd, 0x8f, 0x1c, 0xc5, - 0xb5, 0x67, 0x66, 0xf6, 0x63, 0xa6, 0xf6, 0xc3, 0xeb, 0xf2, 0xda, 0x1e, 0x16, 0xb0, 0xa1, 0xd1, - 0xe5, 0x82, 0x2e, 0x9e, 0xbd, 0xf6, 0x05, 0xae, 0x31, 0x60, 0xd8, 0xd9, 0x0f, 0xdb, 0xb0, 0x6b, - 0x0f, 0x35, 0x6b, 0xc3, 0xe5, 0xf3, 0xf6, 0xcc, 0xd4, 0xce, 0xb6, 0xb7, 0xa7, 0x7b, 0xe8, 0x8f, - 0x65, 0x87, 0xab, 0xab, 0xcb, 0x55, 0x12, 0x29, 0x2f, 0x10, 0xde, 0x82, 0x94, 0xe4, 0x21, 0x52, - 0xa2, 0x3c, 0x05, 0x25, 0x52, 0x24, 0x1e, 0xf2, 0x92, 0x20, 0x45, 0x71, 0x1e, 0xa2, 0x90, 0x28, - 0x51, 0xf2, 0x12, 0x48, 0xc8, 0x07, 0xca, 0xbf, 0x40, 0xf2, 0x90, 0x53, 0xd5, 0xd5, 0x1f, 0xd5, - 0xd3, 0x3d, 0x76, 0xcf, 0x7e, 0x48, 0x51, 0x1e, 0x56, 0x76, 0x57, 0x9d, 0xfa, 0x9d, 0x53, 0xa7, - 0x4e, 0x9d, 0x73, 0xaa, 0xea, 0x0c, 0x7a, 0x62, 0xeb, 0xac, 0x5d, 0xd1, 0xcc, 0xf9, 0x2d, 0xb7, - 0x41, 0x2d, 0x83, 0x3a, 0xd4, 0x9e, 0xef, 0x6e, 0xb5, 0xe7, 0xd5, 0xae, 0x66, 0xcf, 0xd3, 0x1d, - 0x87, 0x1a, 0xb6, 0x66, 0x1a, 0xf6, 0xfc, 0xf6, 0xe9, 0x06, 0x75, 0xd4, 0xd3, 0xf3, 0x6d, 0x6a, - 0x50, 0x4b, 0x75, 0x68, 0xab, 0xd2, 0xb5, 0x4c, 0xc7, 0xc4, 0xa7, 0xbc, 0xe1, 0x95, 0x70, 0x78, - 0x05, 0x86, 0x57, 0xd8, 0xf0, 0x4a, 0x38, 0xbc, 0x22, 0x86, 0xcf, 0x9d, 0x6a, 0x6b, 0xce, 0xa6, - 0xdb, 0xa8, 0x34, 0xcd, 0xce, 0x7c, 0xdb, 0x6c, 0x9b, 0xf3, 0x1c, 0xa5, 0xe1, 0x6e, 0xf0, 0x2f, - 0xfe, 0xc1, 0xff, 0xe7, 0xa1, 0xcf, 0x9d, 0x49, 0x15, 0x6e, 0xde, 0xa2, 0xb6, 0xe9, 0x5a, 0x4d, - 0x1a, 0x97, 0x68, 0xee, 0xe1, 0xf4, 0x31, 0xae, 0xb1, 0x4d, 0x2d, 0x26, 0x10, 0x6d, 0xf5, 0x0d, - 0x7b, 0x30, 0x7d, 0xd8, 0x76, 0xdf, 0xb4, 0xe7, 0x4e, 0x25, 0x53, 0x5b, 0xae, 0xe1, 0x68, 0x9d, - 0x7e, 0x99, 0x4e, 0x27, 0x93, 0xbb, 0x8e, 0xa6, 0xcf, 0x6b, 0x86, 0x63, 0x3b, 0x56, 0x7c, 0x88, - 0x52, 0x41, 0x68, 0xa1, 0x76, 0xe9, 0x9a, 0x27, 0x2f, 0xbe, 0x1b, 0x8d, 0x18, 0x6a, 0x87, 0x96, - 0x73, 0x77, 0xe7, 0xee, 0x2f, 0x55, 0x27, 0x6f, 0x7c, 0x74, 0xf2, 0xb6, 0x4f, 0x3e, 0x3a, 0x39, - 0x72, 0x19, 0xda, 0x08, 0xef, 0x51, 0x5e, 0x42, 0xb3, 0x8b, 0xb5, 0xab, 0xeb, 0xaa, 0xd5, 0xa6, - 0xce, 0x55, 0xc0, 0xd5, 0xde, 0x50, 0x1d, 0x36, 0x72, 0x09, 0xcd, 0x38, 0xbc, 0xb1, 0x46, 0x41, - 0x5b, 0x86, 0xa3, 0xb6, 0x3d, 0x94, 0xd1, 0x6a, 0x59, 0xa0, 0xcc, 0xac, 0xc7, 0xfa, 0x49, 0xdf, - 0x08, 0xe5, 0xcb, 0x39, 0x74, 0xfb, 0xa2, 0x6b, 0x3b, 0x66, 0x67, 0x8d, 0x3a, 0x96, 0xd6, 0x5c, - 0x74, 0x2d, 0x0b, 0xba, 0xea, 0x8e, 0xea, 0xb8, 0xf6, 0xcd, 0xa5, 0xc3, 0xcf, 0xa3, 0xd1, 0x6d, - 0x55, 0x77, 0x69, 0x39, 0x0f, 0x24, 0x13, 0x67, 0x1e, 0xac, 0xa4, 0x9a, 0x4d, 0xc5, 0x5f, 0xd8, - 0xca, 0xb3, 0xae, 0x0a, 0xda, 0x74, 0x7a, 0xd5, 0x59, 0x01, 0x38, 0x29, 0xb8, 0x5e, 0x63, 0x48, - 0xc4, 0x03, 0x54, 0xde, 0xce, 0xa1, 0xbb, 0x52, 0x25, 0x5b, 0xd5, 0x6c, 0x07, 0x77, 0xd0, 0xa8, - 0xe6, 0xd0, 0x8e, 0x0d, 0xe2, 0x15, 0x80, 0xf7, 0xc5, 0x4a, 0x26, 0x93, 0xad, 0xa4, 0x82, 0x57, - 0xa7, 0x84, 0x5c, 0xa3, 0x97, 0x18, 0x3c, 0xf1, 0xb8, 0x28, 0x5f, 0xca, 0x21, 0x1c, 0x1d, 0xe3, - 0x69, 0xf7, 0x16, 0x74, 0xf4, 0xdc, 0x6e, 0x74, 0x74, 0x44, 0x00, 0x4e, 0x78, 0xec, 0x24, 0x15, - 0xbd, 0x99, 0x43, 0xc7, 0xfa, 0x25, 0xe2, 0xba, 0xd9, 0x90, 0x75, 0xb3, 0xb0, 0x0b, 0xdd, 0x78, - 0xa8, 0x29, 0x4a, 0xf9, 0x76, 0x1e, 0x95, 0x96, 0x54, 0xda, 0x31, 0x8d, 0x3a, 0xe8, 0xe2, 0x79, - 0x54, 0xec, 0xc0, 0xf8, 0x96, 0xea, 0xa8, 0x5c, 0x1f, 0x13, 0x67, 0xee, 0x1f, 0x30, 0xd9, 0xed, - 0xd3, 0x95, 0x2b, 0x8d, 0xeb, 0xb4, 0xe9, 0x00, 0x1f, 0xb5, 0x8a, 0x05, 0x3e, 0x0a, 0xdb, 0x48, - 0x80, 0x86, 0x5f, 0x41, 0x23, 0x76, 0x97, 0x36, 0x85, 0x0a, 0x1f, 0xcf, 0x38, 0x9d, 0x40, 0xc2, - 0x3a, 0x60, 0x84, 0x6b, 0xc4, 0xbe, 0x08, 0xc7, 0x05, 0x7d, 0x8d, 0xd9, 0x7c, 0xf1, 0xcb, 0x05, - 0xce, 0xe1, 0xfc, 0xd0, 0x1c, 0x3c, 0x13, 0x9a, 0x16, 0x3c, 0xc6, 0xbc, 0x6f, 0x22, 0xd0, 0x95, - 0x9f, 0xe6, 0xd0, 0x54, 0x40, 0xcb, 0x57, 0xea, 0xe5, 0x3e, 0x9d, 0xcd, 0x0f, 0xd0, 0x59, 0xc4, - 0xd3, 0x55, 0xd8, 0x70, 0xae, 0xba, 0x19, 0xc1, 0xac, 0xe8, 0xb7, 0x44, 0x14, 0xf7, 0xb2, 0x6f, - 0x08, 0x79, 0x6e, 0x08, 0x67, 0x87, 0x9d, 0x57, 0xca, 0xfa, 0xff, 0x32, 0x3a, 0x9f, 0xba, 0xa7, - 0xc9, 0xa2, 0x4d, 0x75, 0x58, 0x41, 0xd3, 0x12, 0xf3, 0xc9, 0xba, 0x5a, 0xab, 0x6a, 0x83, 0xea, - 0x75, 0x81, 0x51, 0x9d, 0x64, 0x13, 0xf3, 0xbf, 0x48, 0x80, 0x8d, 0x5f, 0x44, 0x45, 0x90, 0xa0, - 0xab, 0x83, 0x6b, 0x15, 0x56, 0x71, 0x6a, 0xb0, 0xad, 0xd5, 0xcc, 0xd6, 0xba, 0x18, 0xc0, 0xcd, - 0x20, 0xd0, 0x9a, 0xdf, 0x4a, 0x02, 0x40, 0xe5, 0xad, 0x3c, 0x3a, 0x14, 0x5b, 0x52, 0x7c, 0x0d, - 0x1d, 0x6b, 0x7a, 0x6e, 0xe2, 0xb2, 0xdb, 0x01, 0x06, 0xf5, 0xe6, 0x26, 0x6d, 0xb9, 0x3a, 0x6d, - 0x09, 0xb7, 0x7b, 0x42, 0xe0, 0x1d, 0x5b, 0x4c, 0xa4, 0x22, 0x29, 0xa3, 0xf1, 0xd3, 0x08, 0x1b, - 0xbc, 0x69, 0x4d, 0xb3, 0xed, 0x00, 0x33, 0xcf, 0x31, 0xe7, 0x04, 0x26, 0xbe, 0xdc, 0x47, 0x41, - 0x12, 0x46, 0x31, 0x19, 0x5b, 0xd4, 0xd6, 0x2c, 0xda, 0x8a, 0xcb, 0x58, 0x90, 0x65, 0x5c, 0x4a, - 0xa4, 0x22, 0x29, 0xa3, 0x95, 0xef, 0xe4, 0x11, 0x5a, 0xa2, 0x5d, 0xdd, 0xec, 0x75, 0x60, 0x06, - 0xfb, 0xb8, 0xcf, 0x5f, 0x95, 0xf6, 0xf9, 0x13, 0x59, 0xad, 0x35, 0x10, 0x31, 0x75, 0xa3, 0xb7, - 0x63, 0x1b, 0xfd, 0xc9, 0xe1, 0x59, 0x0c, 0xde, 0xe9, 0x3f, 0xcb, 0xa1, 0xe9, 0x90, 0xf8, 0x20, - 0xb6, 0xfa, 0x2b, 0xf2, 0x56, 0x7f, 0x74, 0xe8, 0x99, 0xa5, 0xec, 0xf5, 0x77, 0x0b, 0x08, 0x87, - 0x44, 0xc4, 0xd4, 0xf5, 0x86, 0xda, 0xdc, 0xba, 0x85, 0x00, 0xf8, 0x4d, 0x88, 0x9c, 0x6e, 0xb7, - 0xc5, 0x92, 0xa0, 0x05, 0xc3, 0x30, 0x1d, 0x9e, 0xc0, 0xf8, 0x62, 0xfe, 0xd7, 0xd0, 0x62, 0xfa, - 0x12, 0x54, 0xae, 0xf6, 0x61, 0x2f, 0x1b, 0x8e, 0xd5, 0x0b, 0x77, 0x4f, 0x3f, 0x01, 0x49, 0x10, - 0x08, 0xbf, 0x86, 0x90, 0x25, 0x30, 0xd7, 0x4d, 0x61, 0x1f, 0x59, 0x4d, 0xd0, 0x17, 0x6a, 0xd1, - 0x34, 0x36, 0xb4, 0x76, 0x68, 0xed, 0x24, 0x00, 0x26, 0x11, 0x26, 0x73, 0xcb, 0xe8, 0x78, 0x8a, - 0xf4, 0x78, 0x06, 0x15, 0xb6, 0x68, 0xcf, 0x53, 0x2b, 0x61, 0xff, 0xc5, 0xb3, 0xd1, 0x44, 0xa2, - 0x24, 0xb2, 0x80, 0x73, 0xf9, 0xb3, 0x39, 0xe5, 0xdd, 0xd1, 0xa8, 0xb1, 0x71, 0x3f, 0x7c, 0x3f, - 0x2a, 0x5a, 0xd0, 0xa2, 0x35, 0x55, 0x5b, 0x38, 0x28, 0xee, 0x49, 0x89, 0x68, 0x23, 0x41, 0xaf, - 0xe4, 0xb1, 0xf3, 0x07, 0xe4, 0xb1, 0x0b, 0x7b, 0xec, 0xb1, 0xb1, 0x09, 0x93, 0x70, 0x58, 0x9e, - 0xdd, 0xee, 0x95, 0x47, 0x38, 0xf8, 0xc2, 0x2e, 0x76, 0xb6, 0x07, 0x14, 0x32, 0xf4, 0x5b, 0x48, - 0xc0, 0x04, 0x2f, 0xa0, 0x43, 0x1d, 0xcd, 0x20, 0x54, 0x6d, 0xf5, 0xea, 0xb4, 0x69, 0x1a, 0x2d, - 0xbb, 0x3c, 0xca, 0xd5, 0x7c, 0x5c, 0x0c, 0x3a, 0xb4, 0x26, 0x77, 0x93, 0x38, 0x3d, 0x5e, 0x45, - 0xb3, 0x16, 0xdd, 0xd6, 0x98, 0x18, 0x17, 0x61, 0x3b, 0x9b, 0x56, 0x6f, 0x55, 0xeb, 0x68, 0x4e, - 0x79, 0xcc, 0x4b, 0xe3, 0x01, 0x63, 0x96, 0x24, 0xf4, 0x93, 0xc4, 0x51, 0xf8, 0x3e, 0x34, 0xd6, - 0x55, 0x5d, 0x1b, 0x7c, 0xfd, 0x38, 0x8c, 0x2f, 0x86, 0x8e, 0xa9, 0xc6, 0x5b, 0x89, 0xe8, 0x85, - 0xb4, 0x39, 0x6a, 0xe5, 0xc5, 0xbd, 0xb0, 0xf2, 0xe9, 0x74, 0x0b, 0x57, 0x3e, 0xcd, 0xa3, 0x99, - 0xb8, 0xd3, 0x64, 0x31, 0xcf, 0x6c, 0xd8, 0xd4, 0xda, 0xa6, 0xad, 0x0b, 0xde, 0xf9, 0x08, 0xe0, - 0xb9, 0x99, 0x16, 0xc2, 0x5d, 0x7b, 0xa5, 0x8f, 0x82, 0x24, 0x8c, 0xc2, 0x0f, 0x46, 0x0c, 0xdd, - 0x8b, 0x9a, 0xc1, 0xb2, 0x25, 0x18, 0x3b, 0x2c, 0x9b, 0xd8, 0xf9, 0x7e, 0xa7, 0x08, 0x8d, 0xc1, - 0xb2, 0x5d, 0x95, 0xbb, 0x49, 0x9c, 0x1e, 0x5f, 0x40, 0x87, 0xd5, 0x6d, 0x55, 0xd3, 0xd5, 0x86, - 0x4e, 0x03, 0x90, 0x11, 0x0e, 0x72, 0xbb, 0x00, 0x39, 0xbc, 0x10, 0x27, 0x20, 0xfd, 0x63, 0xf0, - 0x1a, 0x3a, 0xe2, 0x1a, 0xfd, 0x50, 0x9e, 0x19, 0xdd, 0x21, 0xa0, 0x8e, 0x5c, 0xed, 0x27, 0x21, - 0x49, 0xe3, 0x94, 0x9f, 0xe7, 0xa2, 0xfe, 0xd9, 0x37, 0x59, 0x7c, 0x0e, 0x8d, 0x38, 0xbd, 0xae, - 0xef, 0x9f, 0xef, 0xf3, 0xfd, 0xf3, 0x3a, 0xb4, 0x7d, 0xc6, 0x33, 0x81, 0xf8, 0x08, 0xd6, 0x43, - 0xf8, 0x18, 0xfc, 0x7f, 0x68, 0x8a, 0x2d, 0xa5, 0x66, 0xb4, 0x3d, 0xad, 0x08, 0xff, 0xb0, 0x32, - 0x84, 0xb9, 0x04, 0x18, 0x91, 0x38, 0x73, 0x18, 0x04, 0x99, 0x92, 0x3a, 0x89, 0xcc, 0x0f, 0x4e, - 0xbf, 0x53, 0xcb, 0x3b, 0x5d, 0xd3, 0x72, 0xae, 0x74, 0x3d, 0x1f, 0x0d, 0x56, 0x4e, 0x79, 0x03, - 0x9f, 0x4f, 0xc4, 0xca, 0x3d, 0x32, 0x22, 0x7a, 0xf1, 0xbd, 0x68, 0x94, 0xee, 0xa8, 0x4d, 0x87, - 0x4b, 0x5c, 0x0c, 0x23, 0xda, 0x32, 0x6b, 0x24, 0x5e, 0x9f, 0xf2, 0x5d, 0x38, 0x40, 0xad, 0xd4, - 0x2f, 0x58, 0xa6, 0xdb, 0xf5, 0x27, 0xef, 0xf3, 0xf9, 0x4f, 0x34, 0x62, 0x41, 0xea, 0x23, 0xb4, - 0x76, 0xaf, 0xaf, 0x35, 0x02, 0x6d, 0xa0, 0xb5, 0x23, 0xb1, 0x51, 0x9e, 0xca, 0xd8, 0x00, 0x88, - 0xc2, 0x63, 0x96, 0x6a, 0xb4, 0xa9, 0x1f, 0xdf, 0x1e, 0xc9, 0xa8, 0xab, 0x4b, 0x4b, 0x84, 0x0d, - 0x0f, 0x27, 0xc6, 0x3f, 0x21, 0xaf, 0xf0, 0x50, 0x95, 0xaf, 0xe5, 0xd0, 0xa1, 0x8b, 0xeb, 0xeb, - 0xb5, 0x4b, 0x46, 0x1b, 0x4e, 0x8b, 0x76, 0x4d, 0x75, 0x36, 0x59, 0x08, 0xee, 0xc2, 0xbf, 0xf1, - 0x10, 0xcc, 0xfa, 0x08, 0xef, 0xc1, 0x9b, 0x68, 0x9c, 0xed, 0x47, 0x6a, 0xb4, 0x86, 0x4c, 0xad, - 0x04, 0xbb, 0xaa, 0x07, 0x52, 0x3d, 0x24, 0x78, 0x8c, 0x8b, 0x06, 0xe2, 0xc3, 0x2b, 0xff, 0x83, - 0x66, 0x23, 0xe2, 0x31, 0x7d, 0xf1, 0x33, 0x2b, 0x6e, 0xa2, 0x51, 0x26, 0x89, 0x7f, 0x22, 0xcd, - 0x7a, 0xc0, 0x8a, 0x4d, 0x39, 0x5c, 0x50, 0xf6, 0x05, 0x29, 0x0a, 0xc7, 0x56, 0x7e, 0x9d, 0x47, - 0xc7, 0x2f, 0x9a, 0x96, 0xf6, 0x86, 0x69, 0x38, 0xaa, 0x0e, 0xf1, 0x63, 0xc1, 0x75, 0x4c, 0xbb, - 0xa9, 0xea, 0xd4, 0xda, 0xc7, 0xa4, 0x55, 0x97, 0x92, 0xd6, 0xa7, 0xb3, 0xce, 0x2c, 0x59, 0xde, - 0xd4, 0x0c, 0xd6, 0x89, 0x65, 0xb0, 0xab, 0x7b, 0xc4, 0x6f, 0x70, 0x3a, 0xfb, 0x97, 0x1c, 0xba, - 0x23, 0x65, 0xe4, 0x41, 0xe4, 0xb6, 0x5b, 0x72, 0x6e, 0xbb, 0xb2, 0x37, 0x73, 0x4e, 0x49, 0x74, - 0xff, 0x9a, 0x4f, 0x9d, 0x2b, 0x4f, 0xad, 0x5e, 0x83, 0x5c, 0x83, 0x7d, 0x11, 0xba, 0x21, 0xe6, - 0xba, 0x98, 0x51, 0x9e, 0xba, 0xdb, 0xf0, 0xaf, 0x7a, 0x00, 0x84, 0xc2, 0xb1, 0xb0, 0x49, 0x23, - 0xd9, 0x86, 0x00, 0x27, 0x01, 0x1b, 0x7c, 0x1a, 0x4d, 0xf0, 0xec, 0x41, 0x8a, 0x73, 0x87, 0xd8, - 0xbd, 0xd0, 0x5a, 0xd8, 0x4c, 0xa2, 0x34, 0xf8, 0x61, 0x18, 0xa2, 0xee, 0xc4, 0xa2, 0x5c, 0x70, - 0x9d, 0xb4, 0x16, 0x76, 0x91, 0x28, 0x1d, 0xb8, 0xfc, 0xe9, 0x66, 0xd7, 0x8d, 0xdc, 0x34, 0x8a, - 0x74, 0x2a, 0xeb, 0x14, 0x93, 0x2e, 0x2d, 0xab, 0x18, 0x58, 0x4f, 0x43, 0x4f, 0xa4, 0x8d, 0xc4, - 0xd8, 0x29, 0x1f, 0x14, 0xd0, 0x5d, 0x03, 0x6d, 0x14, 0xaf, 0x0c, 0xc8, 0x1e, 0x8e, 0x65, 0xc8, - 0x1c, 0x5a, 0x68, 0x4a, 0x57, 0x6d, 0x87, 0xab, 0x7b, 0x5d, 0xeb, 0xf8, 0xd1, 0xed, 0xdf, 0x6e, - 0xd1, 0x70, 0xd9, 0x10, 0x2f, 0x84, 0xad, 0x46, 0x51, 0x88, 0x0c, 0xca, 0x32, 0x0e, 0x71, 0xf2, - 0x4f, 0xcb, 0x38, 0x16, 0xe5, 0x6e, 0x12, 0xa7, 0x67, 0x10, 0xe2, 0x60, 0x1e, 0xcb, 0x37, 0x02, - 0x88, 0x25, 0xb9, 0x9b, 0xc4, 0xe9, 0x21, 0xeb, 0x3b, 0x29, 0x50, 0x65, 0xf5, 0x47, 0x6e, 0x8f, - 0xbd, 0xbc, 0xe3, 0x5e, 0x80, 0x3b, 0xb9, 0x38, 0x98, 0x94, 0xdc, 0x0c, 0x4b, 0x59, 0x43, 0x53, - 0x17, 0x4d, 0xdb, 0xa9, 0xb1, 0x90, 0xcc, 0xe2, 0x16, 0xbe, 0x0b, 0x15, 0xc0, 0x38, 0xc5, 0x49, - 0x64, 0x42, 0x88, 0x5d, 0x60, 0xc6, 0xcb, 0xda, 0x79, 0xb7, 0xba, 0x23, 0xec, 0x3a, 0xec, 0x06, - 0xbb, 0x64, 0xed, 0xca, 0x05, 0x34, 0x2e, 0xe2, 0x62, 0x14, 0xa8, 0x30, 0x18, 0xa8, 0x90, 0x00, - 0xf4, 0xad, 0x3c, 0x20, 0x79, 0x61, 0x64, 0x1f, 0x03, 0xc2, 0x4b, 0x52, 0x40, 0x38, 0x37, 0x5c, - 0xa8, 0x4d, 0x0d, 0x00, 0xad, 0x58, 0x00, 0x78, 0x7c, 0x48, 0xfc, 0xc1, 0x0e, 0xff, 0xbd, 0x1c, - 0x9a, 0x96, 0x83, 0x3e, 0xf3, 0x28, 0x6c, 0x0f, 0x69, 0x4d, 0x7a, 0x39, 0x3c, 0xf0, 0x07, 0x1e, - 0xa5, 0x1e, 0x76, 0x91, 0x28, 0x1d, 0xa6, 0xc1, 0x30, 0x66, 0x0e, 0x42, 0x29, 0x95, 0x14, 0xa1, - 0xd9, 0xd3, 0x49, 0xc5, 0x7b, 0x3a, 0x01, 0x41, 0x9d, 0x2b, 0xb0, 0xe7, 0x2d, 0x48, 0x07, 0xfb, - 0xd8, 0x70, 0xcb, 0x8a, 0xe2, 0x2a, 0x3f, 0xc9, 0xa1, 0x09, 0x21, 0xf0, 0x41, 0x44, 0xa4, 0x17, - 0xe5, 0x88, 0xf4, 0xc8, 0x90, 0xf9, 0x54, 0x72, 0x04, 0x7a, 0x3f, 0x9c, 0x0b, 0xcb, 0xa0, 0x58, - 0x82, 0xb7, 0x09, 0xdb, 0x29, 0x9e, 0xe0, 0xb1, 0x2d, 0x46, 0x78, 0x0f, 0xfe, 0x42, 0x0e, 0xcd, - 0x68, 0xb1, 0x9c, 0x4b, 0xa8, 0xfa, 0xc9, 0xe1, 0x44, 0x0b, 0x60, 0xc2, 0x07, 0xa5, 0x78, 0x0f, - 0xe9, 0x63, 0xa9, 0xb8, 0xa8, 0x8f, 0x0a, 0xab, 0x20, 0xbd, 0xe3, 0x74, 0x87, 0x8c, 0x95, 0x49, - 0xd9, 0x64, 0xb5, 0xc8, 0xa7, 0x0f, 0x3d, 0x84, 0x43, 0x2b, 0xef, 0xe5, 0x03, 0x85, 0xd5, 0xbd, - 0x3d, 0x12, 0xe4, 0xbb, 0xb9, 0xbd, 0xc8, 0x77, 0x27, 0x92, 0x72, 0x5d, 0xf0, 0x20, 0x05, 0x47, - 0x1f, 0xf6, 0xbe, 0x4d, 0x70, 0x58, 0x5f, 0xad, 0x87, 0x7e, 0x0a, 0x3e, 0x08, 0x83, 0xc4, 0xaf, - 0xa2, 0x51, 0x76, 0x9a, 0x60, 0x5b, 0xbc, 0x30, 0xbc, 0x0b, 0x61, 0xfa, 0x0a, 0x2d, 0x8c, 0x7d, - 0x81, 0x85, 0x71, 0x5c, 0x48, 0xd3, 0xa7, 0x24, 0x3f, 0x80, 0xaf, 0xa3, 0x49, 0xdd, 0x54, 0x5b, - 0x55, 0x55, 0x57, 0x21, 0x19, 0xf1, 0xef, 0xee, 0xff, 0x7d, 0xb0, 0x47, 0x5c, 0x8d, 0x8c, 0x10, - 0xfe, 0x24, 0x78, 0xd4, 0x8b, 0xf6, 0x11, 0x09, 0x5b, 0x51, 0x11, 0x0a, 0x67, 0x8f, 0x4f, 0xa2, - 0x51, 0x66, 0xc2, 0xde, 0xc9, 0xa0, 0x54, 0x2d, 0x31, 0x59, 0x99, 0x65, 0x83, 0xac, 0xbc, 0x1d, - 0x9f, 0x41, 0xc8, 0xa6, 0x4d, 0x8b, 0x3a, 0xdc, 0xed, 0xf0, 0xcb, 0xaf, 0xd0, 0x01, 0xd7, 0x83, - 0x1e, 0x12, 0xa1, 0x52, 0xbe, 0x92, 0x47, 0x85, 0xa7, 0xcd, 0xc6, 0x3e, 0x3a, 0xf9, 0xe7, 0x25, - 0x27, 0x9f, 0x75, 0xff, 0x83, 0x6c, 0xa9, 0x0e, 0xfe, 0xbf, 0x63, 0x0e, 0xfe, 0xec, 0x10, 0xd8, - 0x83, 0x9d, 0xfb, 0x2f, 0x0a, 0x68, 0x12, 0xa8, 0x16, 0x4d, 0xa3, 0xa5, 0xf1, 0x54, 0xe8, 0x21, - 0xe9, 0x92, 0xe0, 0xee, 0xd8, 0x25, 0xc1, 0x4c, 0x94, 0x36, 0x72, 0x3d, 0x70, 0x2d, 0x10, 0xd4, - 0x5b, 0x94, 0xf3, 0x32, 0x3b, 0x18, 0x39, 0xf0, 0xf5, 0xbd, 0x12, 0x60, 0xca, 0xe2, 0xc1, 0x69, - 0x95, 0xe7, 0x50, 0x35, 0xcb, 0x6c, 0x78, 0x89, 0x59, 0x21, 0x7b, 0x62, 0x76, 0x54, 0xc8, 0xc2, - 0x93, 0xb3, 0x00, 0x89, 0xc8, 0xc0, 0xf8, 0x75, 0x84, 0x59, 0xc3, 0x3a, 0x1c, 0xae, 0x6d, 0x6f, - 0x76, 0x8c, 0xdd, 0x48, 0x76, 0x76, 0xc1, 0xad, 0xd5, 0x6a, 0x1f, 0x1c, 0x49, 0x60, 0xc1, 0xee, - 0x31, 0x2c, 0xaa, 0xda, 0x90, 0xb7, 0x8e, 0x72, 0xd5, 0x85, 0xc7, 0x7d, 0xde, 0x4a, 0x44, 0x2f, - 0x7e, 0x00, 0x8d, 0x77, 0x60, 0x9f, 0xb0, 0xfc, 0x6c, 0x8c, 0x13, 0x06, 0x27, 0xef, 0x35, 0xaf, - 0x99, 0xf8, 0xfd, 0xca, 0x0f, 0x73, 0x68, 0x1c, 0x16, 0xea, 0x20, 0x82, 0xdf, 0x73, 0x72, 0xf0, - 0x3b, 0x93, 0xdd, 0x40, 0x53, 0x02, 0xdf, 0xf7, 0x0b, 0x7c, 0x0e, 0xdc, 0x87, 0xc3, 0x99, 0xa7, - 0xab, 0x5a, 0xaa, 0xae, 0x53, 0x5d, 0xb3, 0x3b, 0x22, 0x75, 0xe4, 0x67, 0x9e, 0x5a, 0xd8, 0x4c, - 0xa2, 0x34, 0x6c, 0x48, 0xd3, 0xec, 0x74, 0x75, 0xea, 0xbf, 0x30, 0x04, 0x43, 0x16, 0xc3, 0x66, - 0x12, 0xa5, 0xc1, 0x57, 0xd0, 0x51, 0xb5, 0xe9, 0x68, 0xdb, 0x74, 0x89, 0xaa, 0x2d, 0x5d, 0x33, - 0xa8, 0x7f, 0x9b, 0x5b, 0xe0, 0x29, 0xe4, 0xed, 0x30, 0xf8, 0xe8, 0x42, 0x12, 0x01, 0x49, 0x1e, - 0x27, 0x5d, 0xa7, 0x8f, 0xec, 0xe3, 0x75, 0xfa, 0x43, 0x68, 0x52, 0x85, 0x93, 0x91, 0xdf, 0xc3, - 0xed, 0xa8, 0x58, 0x9d, 0x61, 0xae, 0x77, 0x21, 0xd2, 0x4e, 0x24, 0x2a, 0xe9, 0x12, 0x7e, 0x6c, - 0xaf, 0x9f, 0x4d, 0x7f, 0x50, 0x40, 0xa5, 0xc0, 0xf9, 0x60, 0x13, 0xa1, 0xa6, 0xbf, 0xc1, 0xfd, - 0x6b, 0x9f, 0xc7, 0xb2, 0x5b, 0x4a, 0xe0, 0x24, 0x42, 0x7f, 0x1c, 0x34, 0xd9, 0x24, 0xc2, 0x02, - 0x3c, 0x72, 0x09, 0x1c, 0x88, 0xe5, 0x0c, 0x7b, 0x96, 0x9b, 0x02, 0xec, 0x52, 0xdd, 0x47, 0x20, - 0x21, 0x18, 0x6e, 0xc3, 0xa1, 0x38, 0xb0, 0x99, 0x61, 0x3d, 0x92, 0x77, 0xf8, 0x95, 0x60, 0x48, - 0x0c, 0x96, 0xb9, 0x05, 0xcf, 0xaa, 0xc4, 0x01, 0x2f, 0x70, 0x0b, 0x9e, 0x09, 0x12, 0xd1, 0x8b, - 0xe7, 0x61, 0xaa, 0x6e, 0xb3, 0x49, 0x69, 0x8b, 0xb6, 0xc4, 0xc1, 0xed, 0xb0, 0x20, 0x2d, 0xd5, - 0xfd, 0x0e, 0x12, 0xd2, 0x30, 0xe0, 0x0d, 0x55, 0x63, 0x2f, 0xc1, 0x63, 0x32, 0xf0, 0x0a, 0x6f, - 0x25, 0xa2, 0x57, 0xf9, 0x73, 0x1e, 0x4d, 0x49, 0xf6, 0x87, 0x3f, 0x9f, 0x63, 0x17, 0x09, 0x4e, - 0x73, 0x93, 0x37, 0xfb, 0x0b, 0xb9, 0xb6, 0x1b, 0x9b, 0xae, 0xac, 0x85, 0x78, 0xde, 0x53, 0x5d, - 0xe4, 0x5e, 0x22, 0xe8, 0x21, 0x51, 0xb6, 0xf8, 0x2d, 0x48, 0x70, 0xf9, 0xf7, 0xf2, 0x4e, 0x97, - 0x65, 0x0e, 0x91, 0x27, 0xc4, 0x0b, 0xbb, 0x91, 0x85, 0xd0, 0xd7, 0x5c, 0x38, 0x29, 0xf3, 0xfb, - 0xe8, 0x20, 0xd1, 0x5d, 0x8b, 0x31, 0x22, 0x7d, 0xac, 0xe7, 0xce, 0xa3, 0x99, 0xf8, 0x2c, 0x32, - 0x3d, 0xd9, 0x7d, 0x23, 0x87, 0xca, 0x69, 0x82, 0xb0, 0x53, 0x6c, 0x00, 0x14, 0x66, 0x87, 0xcf, - 0xd0, 0x9e, 0x87, 0xba, 0x8c, 0x8a, 0x66, 0x97, 0xdd, 0x62, 0x88, 0x17, 0xbb, 0x52, 0xf5, 0x01, - 0x7f, 0x57, 0x5e, 0x11, 0xed, 0x10, 0x7b, 0x8f, 0x4a, 0xf0, 0x7e, 0x07, 0x09, 0x86, 0x62, 0x05, - 0x8d, 0x71, 0x79, 0xbc, 0x2c, 0xb3, 0x54, 0x45, 0xcc, 0x1e, 0x78, 0x7e, 0x0d, 0xa1, 0xd8, 0xeb, - 0xe1, 0x05, 0x2b, 0x97, 0xa9, 0xf3, 0xba, 0x69, 0x6d, 0xd5, 0x4c, 0x5d, 0x6b, 0xf6, 0xf6, 0x31, - 0xa3, 0x6a, 0x48, 0x19, 0xd5, 0x53, 0x19, 0x57, 0x55, 0x92, 0x32, 0x2d, 0xb7, 0x52, 0xfe, 0x04, - 0x6a, 0x97, 0x28, 0xa3, 0xc7, 0x2c, 0x8a, 0x46, 0xd9, 0xe3, 0x81, 0x6f, 0xe3, 0xbb, 0x92, 0x80, - 0x9d, 0x49, 0x23, 0xb7, 0xd4, 0x0c, 0x96, 0x78, 0xe8, 0x6c, 0x9e, 0x1b, 0x96, 0xd9, 0x11, 0xd6, - 0xbb, 0x3b, 0x2e, 0x94, 0x5a, 0xe1, 0x3c, 0x57, 0x00, 0x95, 0x70, 0x6c, 0xe5, 0x57, 0x39, 0x74, - 0x58, 0xa2, 0x3c, 0x88, 0xb4, 0x40, 0x95, 0xd3, 0x82, 0xc7, 0x77, 0x33, 0xb3, 0x94, 0x04, 0xe1, - 0x8b, 0xf9, 0xd8, 0xbc, 0x98, 0x06, 0x20, 0xd4, 0x4c, 0x74, 0xcd, 0x56, 0x7d, 0x2f, 0xeb, 0x8e, - 0xbc, 0x44, 0x23, 0x04, 0x25, 0x51, 0x0e, 0xf8, 0xff, 0x41, 0xbd, 0xac, 0xb6, 0xc1, 0xee, 0xaa, - 0x4d, 0x5a, 0xdf, 0xcb, 0xd7, 0xf3, 0xa3, 0xec, 0xf9, 0xf0, 0x72, 0x1c, 0x9a, 0xf4, 0x73, 0x53, - 0xbe, 0x17, 0x5f, 0x62, 0x66, 0x64, 0xf8, 0x59, 0x54, 0xe4, 0x85, 0xa6, 0x4d, 0x53, 0x17, 0xfe, - 0xe3, 0x61, 0xb6, 0x5a, 0x35, 0xd1, 0x06, 0x7e, 0xe1, 0x5f, 0x06, 0xe6, 0xe4, 0x3e, 0x21, 0x09, - 0x60, 0xf0, 0x2a, 0x1a, 0xe9, 0x0e, 0x7f, 0x73, 0xc3, 0x8f, 0xea, 0xfc, 0xba, 0x86, 0xa3, 0x28, - 0x7f, 0x8b, 0x8b, 0xcd, 0x93, 0x3d, 0x7b, 0xef, 0x57, 0x30, 0x88, 0x29, 0xa9, 0xab, 0x68, 0xa1, - 0x71, 0x71, 0x81, 0x31, 0x64, 0x24, 0x49, 0xf3, 0x24, 0x61, 0x96, 0xee, 0x37, 0xfa, 0x8c, 0xf8, - 0xc6, 0xe4, 0x02, 0x35, 0x5d, 0x4b, 0x73, 0x7a, 0xfb, 0xee, 0x54, 0x37, 0x24, 0xa7, 0xba, 0x94, - 0x71, 0x82, 0x7d, 0x92, 0xa6, 0x3a, 0xd6, 0xdf, 0xe6, 0xd0, 0xd1, 0x3e, 0xea, 0x83, 0x70, 0x3a, - 0x54, 0x76, 0x3a, 0x4f, 0xed, 0x76, 0x86, 0x29, 0x8e, 0xe7, 0x06, 0x4a, 0x98, 0x1f, 0x37, 0xdd, - 0x33, 0x08, 0x75, 0x2d, 0x6d, 0x1b, 0xd2, 0xa7, 0xb6, 0x28, 0x06, 0x2c, 0x86, 0x6b, 0x52, 0x0b, - 0x7a, 0x48, 0x84, 0x0a, 0xff, 0x2f, 0x2b, 0xd4, 0xdb, 0x50, 0x5d, 0xdd, 0x59, 0x68, 0xb5, 0x16, - 0xd5, 0xae, 0xda, 0xd0, 0x74, 0xc8, 0x62, 0xc5, 0xab, 0x71, 0xa9, 0xba, 0xec, 0x15, 0xe9, 0x25, - 0x51, 0xc0, 0x0e, 0xfe, 0xd7, 0xc1, 0xa7, 0x6a, 0x9f, 0xb8, 0x47, 0x52, 0x98, 0xe0, 0xcf, 0x41, - 0x14, 0xb4, 0xbc, 0x7c, 0xa3, 0xb5, 0x64, 0x99, 0x5d, 0x49, 0x02, 0x2f, 0x19, 0xb8, 0x00, 0x12, - 0x94, 0x49, 0x0a, 0x4d, 0x16, 0x19, 0x52, 0x19, 0x61, 0x07, 0x1d, 0x81, 0x93, 0x9b, 0xf9, 0x3a, - 0x95, 0x35, 0x30, 0xc2, 0xf9, 0x57, 0x59, 0xed, 0xc3, 0x42, 0x7f, 0x77, 0x16, 0xd6, 0x49, 0xf0, - 0x90, 0x3a, 0x8f, 0x6f, 0x9b, 0xba, 0x0b, 0xde, 0x14, 0x12, 0x67, 0xc6, 0x89, 0x79, 0xdc, 0xf1, - 0x6b, 0x5e, 0xd3, 0x67, 0x2c, 0x23, 0xae, 0xf3, 0x2b, 0x0e, 0x9f, 0x8a, 0x5d, 0x7b, 0xb3, 0x7b, - 0x28, 0xb1, 0xd7, 0x79, 0xfe, 0x5c, 0x0c, 0x9d, 0xcb, 0xc5, 0xb0, 0x8b, 0x44, 0xe9, 0x70, 0x07, - 0x95, 0x36, 0xc5, 0x13, 0x88, 0x5d, 0x1e, 0x1f, 0x2a, 0x20, 0x4a, 0x4f, 0x28, 0x61, 0x82, 0xef, - 0x37, 0xdb, 0x24, 0xe4, 0xc0, 0x2e, 0x0a, 0xf8, 0xc7, 0xa5, 0x25, 0x5e, 0xd3, 0x53, 0x0c, 0x5d, - 0xd0, 0x45, 0xaf, 0x99, 0xf8, 0xfd, 0x3e, 0xe9, 0xa5, 0xda, 0x62, 0xb9, 0xd4, 0x4f, 0x0a, 0xcd, - 0xc4, 0xef, 0xc7, 0x5d, 0x34, 0x6e, 0xd3, 0x55, 0xcd, 0x70, 0x77, 0xca, 0x88, 0x6f, 0xdd, 0xe5, - 0xac, 0x2f, 0x9d, 0xcb, 0x7c, 0x74, 0xac, 0xbc, 0x22, 0xe4, 0x28, 0xfa, 0x89, 0xcf, 0x06, 0xef, - 0xa0, 0x92, 0xe5, 0x1a, 0x0b, 0xf6, 0x55, 0x9b, 0x5a, 0xe5, 0x09, 0xce, 0x33, 0xab, 0x57, 0x26, - 0xfe, 0xf8, 0x38, 0xd7, 0x40, 0x83, 0x01, 0x05, 0x09, 0x99, 0xe1, 0xaf, 0xe6, 0x10, 0xb6, 0xdd, - 0x2e, 0x1c, 0xc7, 0x58, 0x0e, 0xae, 0xea, 0xbc, 0xc2, 0xc3, 0x2e, 0x4f, 0x72, 0x19, 0x6a, 0x99, - 0x5f, 0x78, 0xe3, 0x40, 0x71, 0x61, 0x82, 0x1b, 0xa3, 0x7e, 0x52, 0x92, 0x20, 0x07, 0x5b, 0x8a, - 0x0d, 0x9b, 0xff, 0xbf, 0x3c, 0x35, 0xd4, 0x52, 0x24, 0x57, 0xba, 0x84, 0x4b, 0x21, 0xfa, 0x89, - 0xcf, 0x86, 0x55, 0x13, 0x5b, 0x54, 0x6d, 0x5d, 0x31, 0xf4, 0x1e, 0x31, 0x4d, 0x67, 0x05, 0x7c, - 0x97, 0xdd, 0xb3, 0xc1, 0x1b, 0x96, 0xa7, 0xb9, 0xd9, 0x04, 0xd5, 0xc4, 0x24, 0x91, 0x8a, 0xa4, - 0x8c, 0xe6, 0xd5, 0xc4, 0xe2, 0x61, 0x72, 0x7f, 0x7f, 0x35, 0xb0, 0xbb, 0x6a, 0xe2, 0x50, 0xc4, - 0x7d, 0xab, 0x26, 0x8e, 0xb0, 0xb8, 0x79, 0x35, 0x71, 0x48, 0xfc, 0x0f, 0x50, 0x4d, 0x1c, 0x0a, - 0x9b, 0x12, 0x4f, 0x3f, 0xc8, 0x47, 0x67, 0xf4, 0xcf, 0x58, 0xb2, 0x9a, 0x50, 0x41, 0x3a, 0x92, - 0xad, 0x82, 0x54, 0xf9, 0x63, 0x1e, 0xcd, 0xc4, 0x6d, 0x48, 0x2a, 0x88, 0xcc, 0xdd, 0xb4, 0x20, - 0xb2, 0x86, 0x66, 0x37, 0x5c, 0x5d, 0xef, 0x71, 0x85, 0x44, 0x0a, 0x0c, 0xbc, 0xbb, 0xd3, 0x3b, - 0xc5, 0xc8, 0xd9, 0x95, 0x04, 0x1a, 0x92, 0x38, 0x32, 0xa5, 0xb8, 0xb3, 0x30, 0x54, 0x71, 0xe7, - 0x63, 0x68, 0x8a, 0x39, 0x91, 0x5e, 0xac, 0xee, 0x21, 0xb8, 0xdc, 0x27, 0xd1, 0x4e, 0x22, 0xd3, - 0x26, 0x17, 0x6a, 0x8e, 0x66, 0x2f, 0xd4, 0x54, 0xee, 0x44, 0x73, 0xe2, 0xff, 0x4c, 0xa8, 0x45, - 0xd3, 0x70, 0x58, 0x95, 0x22, 0xb5, 0x96, 0xdc, 0x4e, 0xa7, 0xa7, 0x9c, 0x07, 0x43, 0x96, 0xea, - 0x61, 0xbd, 0x15, 0xf0, 0x4a, 0x74, 0x45, 0xa1, 0x42, 0x64, 0x05, 0xbc, 0x76, 0x12, 0x50, 0x28, - 0x1f, 0xe7, 0xd0, 0xf1, 0x94, 0x0a, 0x49, 0x7c, 0x1d, 0x4d, 0x77, 0xd4, 0x9d, 0x48, 0x09, 0xa8, - 0xd8, 0xea, 0x59, 0x0f, 0x61, 0xfc, 0xee, 0x71, 0x4d, 0x42, 0x22, 0x31, 0x64, 0xee, 0x87, 0xd5, - 0x9d, 0xba, 0x6b, 0xb5, 0xe9, 0x90, 0x47, 0x3d, 0xbe, 0x8d, 0xd6, 0x04, 0x06, 0x09, 0xd0, 0x58, - 0x9d, 0x65, 0x39, 0x2d, 0x28, 0x43, 0x7a, 0x15, 0xad, 0xb4, 0xbc, 0x27, 0x56, 0x69, 0x79, 0xb8, - 0x6f, 0xdc, 0x01, 0xd5, 0x59, 0xbe, 0x9f, 0x43, 0xc7, 0x92, 0x93, 0x17, 0xfc, 0x1f, 0x92, 0xc4, - 0x27, 0x63, 0x12, 0x1f, 0x8a, 0x8d, 0x12, 0xf2, 0x6e, 0xa2, 0x69, 0x91, 0xe2, 0x08, 0x98, 0x5b, - 0xf8, 0x39, 0xe0, 0x76, 0x90, 0x3f, 0xf9, 0xc1, 0x9a, 0xaf, 0xa3, 0xdc, 0x46, 0x62, 0xb8, 0xca, - 0xd7, 0xf3, 0x68, 0x94, 0x97, 0x1f, 0xed, 0x63, 0x64, 0x7d, 0x41, 0x8a, 0xac, 0x59, 0x1f, 0x28, - 0xb9, 0x74, 0xa9, 0x41, 0xb5, 0x11, 0x0b, 0xaa, 0xe7, 0x86, 0x42, 0x1f, 0x1c, 0x4f, 0x1f, 0x45, - 0xa5, 0x40, 0x88, 0x6c, 0x0e, 0x93, 0x65, 0x2f, 0x13, 0x11, 0x16, 0x19, 0xdd, 0xed, 0xb6, 0x14, - 0xb9, 0x86, 0xf9, 0xdd, 0x6a, 0x84, 0x77, 0xc5, 0x0f, 0x59, 0xde, 0x25, 0x7a, 0x58, 0x40, 0xd8, - 0x1f, 0xc9, 0xc0, 0x49, 0x79, 0x3f, 0xfe, 0x0d, 0xae, 0x58, 0x0a, 0xdc, 0x7a, 0x8f, 0x89, 0x31, - 0xd3, 0xeb, 0x52, 0x2f, 0x89, 0x51, 0xcf, 0x81, 0x23, 0x96, 0x98, 0x65, 0xba, 0xeb, 0xfe, 0x51, - 0x0e, 0xcd, 0x26, 0x95, 0x3c, 0xb2, 0xba, 0x96, 0x2d, 0x4d, 0xd4, 0x68, 0x44, 0xea, 0x5a, 0x9e, - 0x81, 0x36, 0xc2, 0x7b, 0x82, 0x5f, 0x17, 0xe5, 0x53, 0x7f, 0x5d, 0x04, 0xc7, 0x6f, 0x50, 0x95, - 0xf8, 0x41, 0xb5, 0x98, 0x55, 0x60, 0xbc, 0xe1, 0x4f, 0xad, 0x49, 0x84, 0x8a, 0x57, 0x32, 0x85, - 0xf2, 0xf0, 0xa0, 0x12, 0xad, 0x64, 0x8a, 0x88, 0x1a, 0xa5, 0x53, 0x7e, 0x9c, 0x43, 0xf7, 0xdc, - 0x34, 0xb1, 0xc7, 0x55, 0xc9, 0x3d, 0x54, 0x62, 0xee, 0xe1, 0x44, 0x3a, 0xc0, 0x01, 0x56, 0x91, - 0xbf, 0x9d, 0x47, 0x78, 0x7d, 0x53, 0xb3, 0x5a, 0x35, 0xd5, 0x82, 0x83, 0xb2, 0x98, 0xe0, 0x3e, - 0x3a, 0x0c, 0xd0, 0x78, 0x8b, 0xda, 0x4d, 0x4b, 0xe3, 0x4a, 0x12, 0xcb, 0x19, 0x68, 0x7c, 0x29, - 0xec, 0x22, 0x51, 0x3a, 0x48, 0xb0, 0x8b, 0x22, 0x6f, 0xf5, 0x4b, 0x61, 0xb2, 0x26, 0xa2, 0xa1, - 0x05, 0x84, 0xfb, 0x43, 0x34, 0xc0, 0xbe, 0xf4, 0xc1, 0x95, 0x77, 0xc0, 0xdd, 0xf7, 0x2b, 0x64, - 0xc9, 0x2b, 0xf4, 0xd8, 0x2f, 0xa5, 0xdc, 0x89, 0x46, 0x38, 0x2a, 0xd3, 0xc6, 0xa4, 0x77, 0x51, - 0xca, 0x38, 0x12, 0xde, 0xaa, 0x7c, 0x9a, 0x43, 0x73, 0xc9, 0x22, 0x1d, 0x44, 0xfe, 0x7f, 0x5d, - 0xce, 0xff, 0xb3, 0x1e, 0x36, 0x93, 0x05, 0x4f, 0x39, 0x0b, 0x7c, 0x9c, 0xa8, 0xfc, 0x83, 0x98, - 0xe5, 0x86, 0x3c, 0xcb, 0x85, 0x5d, 0xcf, 0x32, 0x79, 0x86, 0xd5, 0x07, 0x6e, 0xfc, 0xfe, 0xc4, - 0x6d, 0x1f, 0xc2, 0xdf, 0x6f, 0xe0, 0xef, 0xcd, 0x4f, 0x4e, 0xe4, 0x6e, 0xc0, 0xdf, 0x87, 0xf0, - 0xf7, 0x3b, 0xf8, 0x7b, 0xe7, 0x0f, 0x27, 0x6e, 0x7b, 0x61, 0x5c, 0x60, 0xfe, 0x3d, 0x00, 0x00, - 0xff, 0xff, 0x8b, 0x0f, 0xfb, 0xaf, 0xb9, 0x43, 0x00, 0x00, + // 3893 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x5b, 0xdb, 0x8f, 0x1c, 0x47, + 0xd5, 0x4f, 0xcf, 0xec, 0x65, 0xa6, 0xf6, 0xe2, 0x75, 0x79, 0x6d, 0x4f, 0x36, 0x89, 0x9d, 0x74, + 0xf4, 0xe5, 0xa2, 0x2f, 0x9e, 0xfd, 0xec, 0x2f, 0x09, 0x8e, 0x93, 0x38, 0xd9, 0xd9, 0x8b, 0xed, + 0x64, 0xd7, 0x9e, 0xd4, 0xac, 0x9d, 0x90, 0x2b, 0xbd, 0x33, 0xb5, 0xb3, 0xed, 0xed, 0x99, 0x9e, + 0xf4, 0x65, 0xb3, 0x13, 0x84, 0x08, 0x02, 0x24, 0x5e, 0x12, 0xf2, 0x46, 0x24, 0xe0, 0x01, 0x09, + 0xc4, 0x13, 0x11, 0x48, 0x48, 0x79, 0xe0, 0x05, 0x22, 0x21, 0xcc, 0x03, 0x22, 0x20, 0x10, 0x3c, + 0x40, 0x12, 0x82, 0x20, 0xe2, 0x5f, 0x08, 0x3c, 0x70, 0xaa, 0xba, 0xfa, 0x52, 0x3d, 0xdd, 0x63, + 0xf7, 0xec, 0x45, 0x20, 0x78, 0x58, 0xd9, 0x5d, 0x75, 0xce, 0xef, 0x9c, 0x3a, 0x75, 0xea, 0xd4, + 0xa9, 0xaa, 0x33, 0xe8, 0xd1, 0xcd, 0xd3, 0x76, 0x59, 0x37, 0x67, 0x37, 0xdd, 0x35, 0x6a, 0xb5, + 0xa9, 0x43, 0xed, 0xd9, 0xce, 0x66, 0x73, 0x56, 0xeb, 0xe8, 0xf6, 0x2c, 0xdd, 0x76, 0x68, 0xdb, + 0xd6, 0xcd, 0xb6, 0x3d, 0xbb, 0x75, 0x72, 0x8d, 0x3a, 0xda, 0xc9, 0xd9, 0x26, 0x6d, 0x53, 0x4b, + 0x73, 0x68, 0xa3, 0xdc, 0xb1, 0x4c, 0xc7, 0xc4, 0x27, 0x3c, 0xf6, 0x72, 0xc8, 0x5e, 0x06, 0xf6, + 0x32, 0x63, 0x2f, 0x87, 0xec, 0x65, 0xc1, 0x3e, 0x73, 0xa2, 0xa9, 0x3b, 0x1b, 0xee, 0x5a, 0xb9, + 0x6e, 0xb6, 0x66, 0x9b, 0x66, 0xd3, 0x9c, 0xe5, 0x28, 0x6b, 0xee, 0x3a, 0xff, 0xe2, 0x1f, 0xfc, + 0x7f, 0x1e, 0xfa, 0xcc, 0xa9, 0x54, 0xe5, 0x66, 0x2d, 0x6a, 0x9b, 0xae, 0x55, 0xa7, 0x71, 0x8d, + 0x66, 0x1e, 0x48, 0xe7, 0x71, 0xdb, 0x5b, 0xd4, 0x62, 0x0a, 0xd1, 0x46, 0x0f, 0xdb, 0x7d, 0xe9, + 0x6c, 0x5b, 0x3d, 0xc3, 0x9e, 0x39, 0x91, 0x4c, 0x6d, 0xb9, 0x6d, 0x47, 0x6f, 0xf5, 0xea, 0x74, + 0x32, 0x99, 0xdc, 0x75, 0x74, 0x63, 0x56, 0x6f, 0x3b, 0xb6, 0x63, 0xc5, 0x59, 0xd4, 0x32, 0x42, + 0x73, 0xd5, 0x0b, 0x57, 0x3c, 0x7d, 0xf1, 0xed, 0x68, 0xa8, 0xad, 0xb5, 0x68, 0x49, 0xb9, 0x5d, + 0xb9, 0xa7, 0x58, 0x19, 0xbf, 0xf6, 0xfe, 0xf1, 0x9b, 0x3e, 0x7a, 0xff, 0xf8, 0xd0, 0x45, 0x68, + 0x23, 0xbc, 0x47, 0x7d, 0x1e, 0x4d, 0xcf, 0x57, 0x2f, 0xaf, 0x6a, 0x56, 0x93, 0x3a, 0x97, 0x01, + 0x57, 0x7f, 0x55, 0x73, 0x18, 0xe7, 0x02, 0x9a, 0x72, 0x78, 0x63, 0x95, 0x82, 0xb5, 0xda, 0x8e, + 0xd6, 0xf4, 0x50, 0x86, 0x2b, 0x25, 0x81, 0x32, 0xb5, 0x1a, 0xeb, 0x27, 0x3d, 0x1c, 0xea, 0xd7, + 0x14, 0x74, 0xf3, 0xbc, 0x6b, 0x3b, 0x66, 0x6b, 0x85, 0x3a, 0x96, 0x5e, 0x9f, 0x77, 0x2d, 0x0b, + 0xba, 0x6a, 0x8e, 0xe6, 0xb8, 0xf6, 0xf5, 0xb5, 0xc3, 0xcf, 0xa0, 0xe1, 0x2d, 0xcd, 0x70, 0x69, + 0x29, 0x07, 0x24, 0x63, 0xa7, 0xee, 0x2b, 0xa7, 0xba, 0x4d, 0xd9, 0x9f, 0xd8, 0xf2, 0x53, 0xae, + 0x06, 0xd6, 0x74, 0xba, 0x95, 0x69, 0x01, 0x38, 0x2e, 0xa4, 0x5e, 0x61, 0x48, 0xc4, 0x03, 0x54, + 0xdf, 0x50, 0xd0, 0x6d, 0xa9, 0x9a, 0x2d, 0xeb, 0xb6, 0x83, 0x5b, 0x68, 0x58, 0x77, 0x68, 0xcb, + 0x06, 0xf5, 0xf2, 0x20, 0xfb, 0x7c, 0x39, 0x93, 0xcb, 0x96, 0x53, 0xc1, 0x2b, 0x13, 0x42, 0xaf, + 0xe1, 0x0b, 0x0c, 0x9e, 0x78, 0x52, 0xd4, 0xaf, 0x2a, 0x08, 0x47, 0x79, 0x3c, 0xeb, 0xde, 0x80, + 0x8d, 0x9e, 0xde, 0x89, 0x8d, 0x0e, 0x09, 0xc0, 0x31, 0x4f, 0x9c, 0x64, 0xa2, 0xd7, 0x14, 0x74, + 0xa4, 0x57, 0x23, 0x6e, 0x9b, 0x75, 0xd9, 0x36, 0x73, 0x3b, 0xb0, 0x8d, 0x87, 0x9a, 0x62, 0x94, + 0xef, 0xe5, 0x50, 0x71, 0x41, 0xa3, 0x2d, 0xb3, 0x5d, 0x03, 0x5b, 0x3c, 0x83, 0x0a, 0x2d, 0xe0, + 0x6f, 0x68, 0x8e, 0xc6, 0xed, 0x31, 0x76, 0xea, 0x9e, 0x3e, 0x83, 0xdd, 0x3a, 0x59, 0xbe, 0xb4, + 0x76, 0x95, 0xd6, 0x1d, 0x90, 0xa3, 0x55, 0xb0, 0xc0, 0x47, 0x61, 0x1b, 0x09, 0xd0, 0xf0, 0x8b, + 0x68, 0xc8, 0xee, 0xd0, 0xba, 0x30, 0xe1, 0x23, 0x19, 0x87, 0x13, 0x68, 0x58, 0x03, 0x8c, 0x70, + 0x8e, 0xd8, 0x17, 0xe1, 0xb8, 0x60, 0xaf, 0x11, 0x9b, 0x4f, 0x7e, 0x29, 0xcf, 0x25, 0x9c, 0x1d, + 0x58, 0x82, 0xe7, 0x42, 0x93, 0x42, 0xc6, 0x88, 0xf7, 0x4d, 0x04, 0xba, 0xfa, 0x0b, 0x05, 0x4d, + 0x04, 0xb4, 0x7c, 0xa6, 0x5e, 0xe8, 0xb1, 0xd9, 0x6c, 0x1f, 0x9b, 0x45, 0x22, 0x5d, 0x99, 0xb1, + 0x73, 0xd3, 0x4d, 0x09, 0x61, 0x05, 0xbf, 0x25, 0x62, 0xb8, 0x17, 0x7c, 0x47, 0xc8, 0x71, 0x47, + 0x38, 0x3d, 0xe8, 0xb8, 0x52, 0xe6, 0xff, 0x37, 0xd1, 0xf1, 0xd4, 0x3c, 0x4b, 0x16, 0x6c, 0x6a, + 0xc0, 0x0c, 0x9a, 0x96, 0x18, 0x4f, 0xd6, 0xd9, 0x5a, 0xd6, 0xd6, 0xa8, 0x51, 0x13, 0x18, 0x95, + 0x71, 0x36, 0x30, 0xff, 0x8b, 0x04, 0xd8, 0xf8, 0x39, 0x54, 0x00, 0x0d, 0x3a, 0x06, 0x84, 0x56, + 0xe1, 0x15, 0x27, 0xfa, 0xfb, 0x5a, 0xd5, 0x6c, 0xac, 0x0a, 0x06, 0xee, 0x06, 0x81, 0xd5, 0xfc, + 0x56, 0x12, 0x00, 0xaa, 0xaf, 0xe7, 0xd0, 0x81, 0xd8, 0x94, 0xe2, 0x2b, 0xe8, 0x48, 0xdd, 0x0b, + 0x13, 0x17, 0xdd, 0x16, 0x08, 0xa8, 0xd5, 0x37, 0x68, 0xc3, 0x35, 0x68, 0x43, 0x84, 0xdd, 0x63, + 0x02, 0xef, 0xc8, 0x7c, 0x22, 0x15, 0x49, 0xe1, 0xc6, 0x4f, 0x20, 0xdc, 0xe6, 0x4d, 0x2b, 0xba, + 0x6d, 0x07, 0x98, 0x39, 0x8e, 0x39, 0x23, 0x30, 0xf1, 0xc5, 0x1e, 0x0a, 0x92, 0xc0, 0xc5, 0x74, + 0x6c, 0x50, 0x5b, 0xb7, 0x68, 0x23, 0xae, 0x63, 0x5e, 0xd6, 0x71, 0x21, 0x91, 0x8a, 0xa4, 0x70, + 0xab, 0xdf, 0xcf, 0x21, 0xb4, 0x40, 0x3b, 0x86, 0xd9, 0x6d, 0xc1, 0x08, 0xf6, 0x70, 0x9d, 0xbf, + 0x24, 0xad, 0xf3, 0x47, 0xb3, 0x7a, 0x6b, 0xa0, 0x62, 0xea, 0x42, 0x6f, 0xc6, 0x16, 0xfa, 0x63, + 0x83, 0x8b, 0xe8, 0xbf, 0xd2, 0x7f, 0xa9, 0xa0, 0xc9, 0x90, 0x78, 0x3f, 0x96, 0xfa, 0x8b, 0xf2, + 0x52, 0x7f, 0x68, 0xe0, 0x91, 0xa5, 0xac, 0xf5, 0xb7, 0xf2, 0x08, 0x87, 0x44, 0xc4, 0x34, 0x8c, + 0x35, 0xad, 0xbe, 0x79, 0x03, 0x1b, 0xe0, 0x77, 0x60, 0xe7, 0x74, 0x3b, 0x0d, 0x96, 0x04, 0xcd, + 0xb5, 0xdb, 0xa6, 0xc3, 0x13, 0x18, 0x5f, 0xcd, 0x4f, 0x0f, 0xac, 0xa6, 0xaf, 0x41, 0xf9, 0x72, + 0x0f, 0xf6, 0x62, 0xdb, 0xb1, 0xba, 0xe1, 0xea, 0xe9, 0x25, 0x20, 0x09, 0x0a, 0xe1, 0x97, 0x11, + 0xb2, 0x04, 0xe6, 0xaa, 0x29, 0xfc, 0x23, 0xab, 0x0b, 0xfa, 0x4a, 0xcd, 0x9b, 0xed, 0x75, 0xbd, + 0x19, 0x7a, 0x3b, 0x09, 0x80, 0x49, 0x44, 0xc8, 0xcc, 0x22, 0x3a, 0x9a, 0xa2, 0x3d, 0x9e, 0x42, + 0xf9, 0x4d, 0xda, 0xf5, 0xcc, 0x4a, 0xd8, 0x7f, 0xf1, 0x74, 0x34, 0x91, 0x28, 0x8a, 0x2c, 0xe0, + 0x4c, 0xee, 0xb4, 0xa2, 0xbe, 0x35, 0x1c, 0x75, 0x36, 0x1e, 0x87, 0xef, 0x41, 0x05, 0x0b, 0x5a, + 0xf4, 0xba, 0x66, 0x8b, 0x00, 0xc5, 0x23, 0x29, 0x11, 0x6d, 0x24, 0xe8, 0x95, 0x22, 0x76, 0x6e, + 0x9f, 0x22, 0x76, 0x7e, 0x97, 0x23, 0x36, 0x36, 0x61, 0x10, 0x0e, 0xcb, 0xb3, 0x9b, 0xdd, 0xd2, + 0x10, 0x07, 0x9f, 0xdb, 0xc1, 0xca, 0xf6, 0x80, 0x42, 0x81, 0x7e, 0x0b, 0x09, 0x84, 0xe0, 0x39, + 0x74, 0xa0, 0xa5, 0xb7, 0x09, 0xd5, 0x1a, 0xdd, 0x1a, 0xad, 0x9b, 0xed, 0x86, 0x5d, 0x1a, 0xe6, + 0x66, 0x3e, 0x2a, 0x98, 0x0e, 0xac, 0xc8, 0xdd, 0x24, 0x4e, 0x8f, 0x97, 0xd1, 0xb4, 0x45, 0xb7, + 0x74, 0xa6, 0xc6, 0x79, 0x58, 0xce, 0xa6, 0xd5, 0x5d, 0xd6, 0x5b, 0xba, 0x53, 0x1a, 0xf1, 0xd2, + 0x78, 0xc0, 0x98, 0x26, 0x09, 0xfd, 0x24, 0x91, 0x0b, 0xdf, 0x85, 0x46, 0x3a, 0x9a, 0x6b, 0x43, + 0xac, 0x1f, 0x05, 0xfe, 0x42, 0x18, 0x98, 0xaa, 0xbc, 0x95, 0x88, 0x5e, 0x48, 0x9b, 0xa3, 0x5e, + 0x5e, 0xd8, 0x0d, 0x2f, 0x9f, 0x4c, 0xf7, 0x70, 0xf5, 0xe3, 0x1c, 0x9a, 0x8a, 0x07, 0x4d, 0xb6, + 0xe7, 0x99, 0x6b, 0x36, 0xb5, 0xb6, 0x68, 0xe3, 0x9c, 0x77, 0x3e, 0x02, 0x78, 0xee, 0xa6, 0xf9, + 0x70, 0xd5, 0x5e, 0xea, 0xa1, 0x20, 0x09, 0x5c, 0xf8, 0xbe, 0x88, 0xa3, 0x7b, 0xbb, 0x66, 0x30, + 0x6d, 0x09, 0xce, 0x0e, 0xd3, 0x26, 0x56, 0xbe, 0xdf, 0x29, 0xb6, 0xc6, 0x60, 0xda, 0x2e, 0xcb, + 0xdd, 0x24, 0x4e, 0x8f, 0xcf, 0xa1, 0x83, 0xda, 0x96, 0xa6, 0x1b, 0xda, 0x9a, 0x41, 0x03, 0x90, + 0x21, 0x0e, 0x72, 0xb3, 0x00, 0x39, 0x38, 0x17, 0x27, 0x20, 0xbd, 0x3c, 0x78, 0x05, 0x1d, 0x72, + 0xdb, 0xbd, 0x50, 0x9e, 0x1b, 0xdd, 0x22, 0xa0, 0x0e, 0x5d, 0xee, 0x25, 0x21, 0x49, 0x7c, 0xea, + 0xaf, 0x94, 0x68, 0x7c, 0xf6, 0x5d, 0x16, 0x9f, 0x41, 0x43, 0x4e, 0xb7, 0xe3, 0xc7, 0xe7, 0xbb, + 0xfc, 0xf8, 0xbc, 0x0a, 0x6d, 0x9f, 0xf0, 0x4c, 0x20, 0xce, 0xc1, 0x7a, 0x08, 0xe7, 0xc1, 0x9f, + 0x47, 0x13, 0x6c, 0x2a, 0xf5, 0x76, 0xd3, 0xb3, 0x8a, 0x88, 0x0f, 0x4b, 0x03, 0xb8, 0x4b, 0x80, + 0x11, 0xd9, 0x67, 0x0e, 0x82, 0x22, 0x13, 0x52, 0x27, 0x91, 0xe5, 0xc1, 0xe9, 0x77, 0x62, 0x71, + 0xbb, 0x63, 0x5a, 0xce, 0xa5, 0x8e, 0x17, 0xa3, 0xc1, 0xcb, 0x29, 0x6f, 0xe0, 0xe3, 0x89, 0x78, + 0xb9, 0x47, 0x46, 0x44, 0x2f, 0xbe, 0x13, 0x0d, 0xd3, 0x6d, 0xad, 0xee, 0x70, 0x8d, 0x0b, 0xe1, + 0x8e, 0xb6, 0xc8, 0x1a, 0x89, 0xd7, 0xa7, 0xfe, 0x00, 0x0e, 0x50, 0x4b, 0xb5, 0x73, 0x96, 0xe9, + 0x76, 0xfc, 0xc1, 0xfb, 0x72, 0x3e, 0x85, 0x86, 0x2c, 0x48, 0x7d, 0x84, 0xd5, 0xee, 0xf4, 0xad, + 0x46, 0xa0, 0x0d, 0xac, 0x76, 0x28, 0xc6, 0xe5, 0x99, 0x8c, 0x31, 0xc0, 0x2e, 0x3c, 0x62, 0x69, + 0xed, 0x26, 0xf5, 0xf7, 0xb7, 0x07, 0x33, 0xda, 0xea, 0xc2, 0x02, 0x61, 0xec, 0xe1, 0xc0, 0xf8, + 0x27, 0xe4, 0x15, 0x1e, 0xaa, 0xfa, 0x4d, 0x05, 0x1d, 0x38, 0xbf, 0xba, 0x5a, 0xbd, 0xd0, 0x6e, + 0xc2, 0x69, 0xd1, 0xae, 0x6a, 0xce, 0x06, 0xdb, 0x82, 0x3b, 0xf0, 0x6f, 0x7c, 0x0b, 0x66, 0x7d, + 0x84, 0xf7, 0xe0, 0x0d, 0x34, 0xca, 0xd6, 0x23, 0x6d, 0x37, 0x06, 0x4c, 0xad, 0x84, 0xb8, 0x8a, + 0x07, 0x52, 0x39, 0x20, 0x64, 0x8c, 0x8a, 0x06, 0xe2, 0xc3, 0xab, 0x9f, 0x45, 0xd3, 0x11, 0xf5, + 0x98, 0xbd, 0xf8, 0x99, 0x15, 0xd7, 0xd1, 0x30, 0xd3, 0xc4, 0x3f, 0x91, 0x66, 0x3d, 0x60, 0xc5, + 0x86, 0x1c, 0x4e, 0x28, 0xfb, 0x82, 0x14, 0x85, 0x63, 0xab, 0xbf, 0xcb, 0xa1, 0xa3, 0xe7, 0x4d, + 0x4b, 0x7f, 0xd5, 0x6c, 0x3b, 0x9a, 0x01, 0xfb, 0xc7, 0x9c, 0xeb, 0x98, 0x76, 0x5d, 0x33, 0xa8, + 0xb5, 0x87, 0x49, 0xab, 0x21, 0x25, 0xad, 0x4f, 0x64, 0x1d, 0x59, 0xb2, 0xbe, 0xa9, 0x19, 0xac, + 0x13, 0xcb, 0x60, 0x97, 0x77, 0x49, 0x5e, 0xff, 0x74, 0xf6, 0x6f, 0x0a, 0xba, 0x25, 0x85, 0x73, + 0x3f, 0x72, 0xdb, 0x4d, 0x39, 0xb7, 0x5d, 0xda, 0x9d, 0x31, 0xa7, 0x24, 0xba, 0x7f, 0xcf, 0xa5, + 0x8e, 0x95, 0xa7, 0x56, 0x2f, 0x43, 0xae, 0xc1, 0xbe, 0x08, 0x5d, 0x17, 0x63, 0x9d, 0xcf, 0xa8, + 0x4f, 0xcd, 0x5d, 0xf3, 0xaf, 0x7a, 0x00, 0x84, 0xc2, 0xb1, 0xb0, 0x4e, 0x23, 0xd9, 0x86, 0x00, + 0x27, 0x81, 0x18, 0x7c, 0x12, 0x8d, 0xf1, 0xec, 0x41, 0xda, 0xe7, 0x0e, 0xb0, 0x7b, 0xa1, 0x95, + 0xb0, 0x99, 0x44, 0x69, 0xf0, 0x03, 0xc0, 0xa2, 0x6d, 0xc7, 0x76, 0xb9, 0xe0, 0x3a, 0x69, 0x25, + 0xec, 0x22, 0x51, 0x3a, 0x08, 0xf9, 0x93, 0xf5, 0x8e, 0x1b, 0xb9, 0x69, 0x14, 0xe9, 0x54, 0xd6, + 0x21, 0x26, 0x5d, 0x5a, 0x56, 0x30, 0x88, 0x9e, 0x84, 0x9e, 0x48, 0x1b, 0x89, 0x89, 0x53, 0xdf, + 0xcd, 0xa3, 0xdb, 0xfa, 0xfa, 0x28, 0x5e, 0xea, 0x93, 0x3d, 0x1c, 0xc9, 0x90, 0x39, 0x34, 0xd0, + 0x84, 0xa1, 0xd9, 0x0e, 0x37, 0xf7, 0xaa, 0xde, 0xf2, 0x77, 0xb7, 0xff, 0xbd, 0x41, 0xc7, 0x65, + 0x2c, 0xde, 0x16, 0xb6, 0x1c, 0x45, 0x21, 0x32, 0x28, 0xcb, 0x38, 0xc4, 0xc9, 0x3f, 0x2d, 0xe3, + 0x98, 0x97, 0xbb, 0x49, 0x9c, 0x9e, 0x41, 0x88, 0x83, 0x79, 0x2c, 0xdf, 0x08, 0x20, 0x16, 0xe4, + 0x6e, 0x12, 0xa7, 0x87, 0xac, 0xef, 0xb8, 0x40, 0x95, 0xcd, 0x1f, 0xb9, 0x3d, 0xf6, 0xf2, 0x8e, + 0x3b, 0x01, 0xee, 0xf8, 0x7c, 0x7f, 0x52, 0x72, 0x3d, 0x2c, 0x75, 0x05, 0x4d, 0x9c, 0x37, 0x6d, + 0xa7, 0xca, 0xb6, 0x64, 0xb6, 0x6f, 0xe1, 0xdb, 0x50, 0x1e, 0x9c, 0x53, 0x9c, 0x44, 0xc6, 0x84, + 0xda, 0x79, 0xe6, 0xbc, 0xac, 0x9d, 0x77, 0x6b, 0xdb, 0xc2, 0xaf, 0xc3, 0x6e, 0xf0, 0x4b, 0xd6, + 0xae, 0x9e, 0x43, 0xa3, 0x62, 0x5f, 0x8c, 0x02, 0xe5, 0xfb, 0x03, 0xe5, 0x13, 0x80, 0xbe, 0x9b, + 0x03, 0x24, 0x6f, 0x1b, 0xd9, 0xc3, 0x0d, 0xe1, 0x79, 0x69, 0x43, 0x38, 0x33, 0xd8, 0x56, 0x9b, + 0xba, 0x01, 0x34, 0x62, 0x1b, 0xc0, 0x23, 0x03, 0xe2, 0xf7, 0x0f, 0xf8, 0x6f, 0x2b, 0x68, 0x52, + 0xde, 0xf4, 0x59, 0x44, 0x61, 0x6b, 0x48, 0xaf, 0xd3, 0x8b, 0xe1, 0x81, 0x3f, 0x88, 0x28, 0xb5, + 0xb0, 0x8b, 0x44, 0xe9, 0x30, 0x0d, 0xd8, 0x98, 0x3b, 0x08, 0xa3, 0x94, 0x53, 0x94, 0x66, 0x4f, + 0x27, 0x65, 0xef, 0xe9, 0x04, 0x14, 0x75, 0x2e, 0xc1, 0x9a, 0xb7, 0x20, 0x1d, 0xec, 0x11, 0xc3, + 0x3d, 0x2b, 0x8a, 0xab, 0xfe, 0x5c, 0x41, 0x63, 0x42, 0xe1, 0xfd, 0xd8, 0x91, 0x9e, 0x93, 0x77, + 0xa4, 0x07, 0x07, 0xcc, 0xa7, 0x92, 0x77, 0xa0, 0x77, 0xc2, 0xb1, 0xb0, 0x0c, 0x8a, 0x25, 0x78, + 0x1b, 0xb0, 0x9c, 0xe2, 0x09, 0x1e, 0x5b, 0x62, 0x84, 0xf7, 0xe0, 0x2f, 0x2b, 0x68, 0x4a, 0x8f, + 0xe5, 0x5c, 0xc2, 0xd4, 0x8f, 0x0d, 0xa6, 0x5a, 0x00, 0x13, 0x3e, 0x28, 0xc5, 0x7b, 0x48, 0x8f, + 0x48, 0xd5, 0x45, 0x3d, 0x54, 0x58, 0x03, 0xed, 0x1d, 0xa7, 0x33, 0xe0, 0x5e, 0x99, 0x94, 0x4d, + 0x56, 0x0a, 0x7c, 0xf8, 0xd0, 0x43, 0x38, 0xb4, 0xfa, 0x76, 0x2e, 0x30, 0x58, 0xcd, 0x5b, 0x23, + 0x41, 0xbe, 0xab, 0xec, 0x46, 0xbe, 0x3b, 0x96, 0x94, 0xeb, 0x42, 0x04, 0xc9, 0x3b, 0xc6, 0xa0, + 0xf7, 0x6d, 0x42, 0xc2, 0xea, 0x72, 0x2d, 0x8c, 0x53, 0xf0, 0x41, 0x18, 0x24, 0x7e, 0x09, 0x0d, + 0xb3, 0xd3, 0x04, 0x5b, 0xe2, 0xf9, 0xc1, 0x43, 0x08, 0xb3, 0x57, 0xe8, 0x61, 0xec, 0x0b, 0x3c, + 0x8c, 0xe3, 0x42, 0x9a, 0x3e, 0x21, 0xc5, 0x01, 0x7c, 0x15, 0x8d, 0x1b, 0xa6, 0xd6, 0xa8, 0x68, + 0x86, 0x06, 0xc9, 0x88, 0x7f, 0x77, 0xff, 0x7f, 0xfd, 0x23, 0xe2, 0x72, 0x84, 0x43, 0xc4, 0x93, + 0xe0, 0x51, 0x2f, 0xda, 0x47, 0x24, 0x6c, 0x55, 0x43, 0x28, 0x1c, 0x3d, 0x3e, 0x8e, 0x86, 0x99, + 0x0b, 0x7b, 0x27, 0x83, 0x62, 0xa5, 0xc8, 0x74, 0x65, 0x9e, 0x0d, 0xba, 0xf2, 0x76, 0x7c, 0x0a, + 0x21, 0x9b, 0xd6, 0x2d, 0xea, 0xf0, 0xb0, 0xc3, 0x2f, 0xbf, 0xc2, 0x00, 0x5c, 0x0b, 0x7a, 0x48, + 0x84, 0x4a, 0xfd, 0x7a, 0x0e, 0xe5, 0x9f, 0x30, 0xd7, 0xf6, 0x30, 0xc8, 0x3f, 0x23, 0x05, 0xf9, + 0xac, 0xeb, 0x1f, 0x74, 0x4b, 0x0d, 0xf0, 0x9f, 0x89, 0x05, 0xf8, 0xd3, 0x03, 0x60, 0xf7, 0x0f, + 0xee, 0xbf, 0xce, 0xa3, 0x71, 0xa0, 0x9a, 0x37, 0xdb, 0x0d, 0x9d, 0xa7, 0x42, 0xf7, 0x4b, 0x97, + 0x04, 0xb7, 0xc7, 0x2e, 0x09, 0xa6, 0xa2, 0xb4, 0x91, 0xeb, 0x81, 0x2b, 0x81, 0xa2, 0xde, 0xa4, + 0x9c, 0x95, 0xc5, 0x01, 0x67, 0xdf, 0xd7, 0xf7, 0x72, 0x80, 0x29, 0xab, 0x07, 0xa7, 0x55, 0x9e, + 0x43, 0x55, 0x2d, 0x73, 0xcd, 0x4b, 0xcc, 0xf2, 0xd9, 0x13, 0xb3, 0xc3, 0x42, 0x17, 0x9e, 0x9c, + 0x05, 0x48, 0x44, 0x06, 0xc6, 0xaf, 0x20, 0xcc, 0x1a, 0x56, 0xe1, 0x70, 0x6d, 0x7b, 0xa3, 0x63, + 0xe2, 0x86, 0xb2, 0x8b, 0x0b, 0x6e, 0xad, 0x96, 0x7b, 0xe0, 0x48, 0x82, 0x08, 0x76, 0x8f, 0x61, + 0x51, 0xcd, 0x86, 0xbc, 0x75, 0x98, 0x9b, 0x2e, 0x3c, 0xee, 0xf3, 0x56, 0x22, 0x7a, 0xf1, 0xbd, + 0x68, 0xb4, 0x05, 0xeb, 0x84, 0xe5, 0x67, 0x23, 0x9c, 0x30, 0x38, 0x79, 0xaf, 0x78, 0xcd, 0xc4, + 0xef, 0x57, 0x7f, 0xa2, 0xa0, 0x51, 0x98, 0xa8, 0xfd, 0xd8, 0xfc, 0x9e, 0x96, 0x37, 0xbf, 0x53, + 0xd9, 0x1d, 0x34, 0x65, 0xe3, 0xfb, 0x51, 0x9e, 0x8f, 0x81, 0xc7, 0x70, 0x38, 0xf3, 0x74, 0x34, + 0x4b, 0x33, 0x0c, 0x6a, 0xe8, 0x76, 0x4b, 0xa4, 0x8e, 0xfc, 0xcc, 0x53, 0x0d, 0x9b, 0x49, 0x94, + 0x86, 0xb1, 0xd4, 0xcd, 0x56, 0xc7, 0xa0, 0xfe, 0x0b, 0x43, 0xc0, 0x32, 0x1f, 0x36, 0x93, 0x28, + 0x0d, 0xbe, 0x84, 0x0e, 0x6b, 0x75, 0x47, 0xdf, 0xa2, 0x0b, 0x54, 0x6b, 0x18, 0x7a, 0x9b, 0xfa, + 0xb7, 0xb9, 0x79, 0x9e, 0x42, 0xde, 0x0c, 0xcc, 0x87, 0xe7, 0x92, 0x08, 0x48, 0x32, 0x9f, 0x74, + 0x9d, 0x3e, 0xb4, 0x87, 0xd7, 0xe9, 0xf7, 0xa3, 0x71, 0x0d, 0x4e, 0x46, 0x7e, 0x0f, 0xf7, 0xa3, + 0x42, 0x65, 0x8a, 0x85, 0xde, 0xb9, 0x48, 0x3b, 0x91, 0xa8, 0xa4, 0x4b, 0xf8, 0x91, 0xdd, 0x7e, + 0x36, 0xfd, 0x71, 0x1e, 0x15, 0x83, 0xe0, 0x83, 0x4d, 0x84, 0xea, 0xfe, 0x02, 0xf7, 0xaf, 0x7d, + 0x1e, 0xce, 0xee, 0x29, 0x41, 0x90, 0x08, 0xe3, 0x71, 0xd0, 0x64, 0x93, 0x88, 0x08, 0x88, 0xc8, + 0x45, 0x08, 0x20, 0x96, 0x33, 0xe8, 0x59, 0x6e, 0x02, 0xb0, 0x8b, 0x35, 0x1f, 0x81, 0x84, 0x60, + 0xb8, 0x09, 0x87, 0xe2, 0xc0, 0x67, 0x06, 0x8d, 0x48, 0xde, 0xe1, 0x57, 0x82, 0x21, 0x31, 0x58, + 0x16, 0x16, 0x3c, 0xaf, 0x12, 0x07, 0xbc, 0x20, 0x2c, 0x78, 0x2e, 0x48, 0x44, 0x2f, 0x9e, 0x85, + 0xa1, 0xba, 0xf5, 0x3a, 0xa5, 0x0d, 0xda, 0x10, 0x07, 0xb7, 0x83, 0x82, 0xb4, 0x58, 0xf3, 0x3b, + 0x48, 0x48, 0xc3, 0x80, 0xd7, 0x35, 0x9d, 0xbd, 0x04, 0x8f, 0xc8, 0xc0, 0x4b, 0xbc, 0x95, 0x88, + 0x5e, 0xf5, 0xaf, 0x39, 0x34, 0x21, 0xf9, 0x1f, 0xfe, 0x92, 0xc2, 0x2e, 0x12, 0x9c, 0xfa, 0x06, + 0x6f, 0xf6, 0x27, 0x72, 0x65, 0x27, 0x3e, 0x5d, 0x5e, 0x09, 0xf1, 0xbc, 0xa7, 0xba, 0xc8, 0xbd, + 0x44, 0xd0, 0x43, 0xa2, 0x62, 0xf1, 0xeb, 0x90, 0xe0, 0xf2, 0xef, 0xc5, 0xed, 0x0e, 0xcb, 0x1c, + 0x22, 0x4f, 0x88, 0xe7, 0x76, 0xa2, 0x0b, 0xa1, 0x2f, 0xbb, 0x70, 0x52, 0xe6, 0xf7, 0xd1, 0x41, + 0xa2, 0xbb, 0x12, 0x13, 0x44, 0x7a, 0x44, 0xcf, 0x9c, 0x45, 0x53, 0xf1, 0x51, 0x64, 0x7a, 0xb2, + 0xfb, 0xb6, 0x82, 0x4a, 0x69, 0x8a, 0xb0, 0x53, 0x6c, 0x00, 0x14, 0x66, 0x87, 0x4f, 0xd2, 0xae, + 0x87, 0xba, 0x88, 0x0a, 0x66, 0x87, 0xdd, 0x62, 0x88, 0x17, 0xbb, 0x62, 0xe5, 0x5e, 0x7f, 0x55, + 0x5e, 0x12, 0xed, 0xb0, 0xf7, 0x1e, 0x96, 0xe0, 0xfd, 0x0e, 0x12, 0xb0, 0x62, 0x15, 0x8d, 0x70, + 0x7d, 0xbc, 0x2c, 0xb3, 0x58, 0x41, 0xcc, 0x1f, 0x78, 0x7e, 0x0d, 0x5b, 0xb1, 0xd7, 0xc3, 0x0b, + 0x56, 0x2e, 0x52, 0xe7, 0x15, 0xd3, 0xda, 0xac, 0x9a, 0x86, 0x5e, 0xef, 0xee, 0x61, 0x46, 0xb5, + 0x26, 0x65, 0x54, 0x8f, 0x67, 0x9c, 0x55, 0x49, 0xcb, 0xb4, 0xdc, 0x4a, 0xfd, 0x0b, 0x98, 0x5d, + 0xa2, 0x8c, 0x1e, 0xb3, 0x28, 0x1a, 0x66, 0x8f, 0x07, 0xbe, 0x8f, 0xef, 0x48, 0x03, 0x76, 0x26, + 0x8d, 0xdc, 0x52, 0x33, 0x58, 0xe2, 0xa1, 0xb3, 0x71, 0xae, 0x5b, 0x66, 0x4b, 0x78, 0xef, 0xce, + 0xa4, 0x50, 0x6a, 0x85, 0xe3, 0x5c, 0x02, 0x54, 0xc2, 0xb1, 0xd5, 0xdf, 0x2a, 0xe8, 0xa0, 0x44, + 0xb9, 0x1f, 0x69, 0x81, 0x26, 0xa7, 0x05, 0x8f, 0xec, 0x64, 0x64, 0x29, 0x09, 0xc2, 0x57, 0x72, + 0xb1, 0x71, 0x31, 0x0b, 0xc0, 0x56, 0x33, 0xd6, 0x31, 0x1b, 0xb5, 0xdd, 0xac, 0x3b, 0xf2, 0x12, + 0x8d, 0x10, 0x94, 0x44, 0x25, 0xe0, 0x2f, 0x80, 0x79, 0x59, 0x6d, 0x83, 0xdd, 0xd1, 0xea, 0xb4, + 0xb6, 0x9b, 0xaf, 0xe7, 0x87, 0xd9, 0xf3, 0xe1, 0xc5, 0x38, 0x34, 0xe9, 0x95, 0xa6, 0xfe, 0x30, + 0x3e, 0xc5, 0xcc, 0xc9, 0xf0, 0x53, 0xa8, 0xc0, 0x0b, 0x4d, 0xeb, 0xa6, 0x21, 0xe2, 0xc7, 0x03, + 0x6c, 0xb6, 0xaa, 0xa2, 0x0d, 0xe2, 0xc2, 0xff, 0xf4, 0xcd, 0xc9, 0x7d, 0x42, 0x12, 0xc0, 0xe0, + 0x65, 0x34, 0xd4, 0x19, 0xfc, 0xe6, 0x86, 0x1f, 0xd5, 0xf9, 0x75, 0x0d, 0x47, 0x51, 0xff, 0x11, + 0x57, 0x9b, 0x27, 0x7b, 0xf6, 0xee, 0xcf, 0x60, 0xb0, 0xa7, 0xa4, 0xce, 0xa2, 0x85, 0x46, 0xc5, + 0x05, 0xc6, 0x80, 0x3b, 0x49, 0x5a, 0x24, 0x09, 0xb3, 0x74, 0xbf, 0xd1, 0x17, 0xc4, 0x17, 0x26, + 0x57, 0xa8, 0xee, 0x5a, 0xba, 0xd3, 0xdd, 0xf3, 0xa0, 0xba, 0x2e, 0x05, 0xd5, 0x85, 0x8c, 0x03, + 0xec, 0xd1, 0x34, 0x35, 0xb0, 0xfe, 0x51, 0x41, 0x87, 0x7b, 0xa8, 0xf7, 0x23, 0xe8, 0x50, 0x39, + 0xe8, 0x3c, 0xbe, 0xd3, 0x11, 0xa6, 0x04, 0x9e, 0x6b, 0x28, 0x61, 0x7c, 0xdc, 0x75, 0x4f, 0x21, + 0xd4, 0xb1, 0xf4, 0x2d, 0x48, 0x9f, 0x9a, 0xa2, 0x18, 0xb0, 0x10, 0xce, 0x49, 0x35, 0xe8, 0x21, + 0x11, 0x2a, 0xfc, 0x39, 0x56, 0xa8, 0xb7, 0xae, 0xb9, 0x86, 0x33, 0xd7, 0x68, 0xcc, 0x6b, 0x1d, + 0x6d, 0x4d, 0x37, 0x20, 0x8b, 0x15, 0xaf, 0xc6, 0xc5, 0xca, 0xa2, 0x57, 0xa4, 0x97, 0x44, 0x01, + 0x2b, 0xf8, 0xee, 0xfe, 0xa7, 0x6a, 0x9f, 0xb8, 0x4b, 0x52, 0x84, 0xe0, 0x2f, 0xc2, 0x2e, 0x68, + 0x79, 0xf9, 0x46, 0x63, 0xc1, 0x32, 0x3b, 0x92, 0x06, 0x5e, 0x32, 0x70, 0x0e, 0x34, 0x28, 0x91, + 0x14, 0x9a, 0x2c, 0x3a, 0xa4, 0x0a, 0xc2, 0x0e, 0x3a, 0x04, 0x27, 0x37, 0xf3, 0x15, 0x2a, 0x5b, + 0x60, 0x88, 0xcb, 0xaf, 0xb0, 0xda, 0x87, 0xb9, 0xde, 0xee, 0x2c, 0xa2, 0x93, 0xe0, 0x21, 0x75, + 0x1e, 0xdd, 0x32, 0x0d, 0x17, 0xa2, 0x29, 0x24, 0xce, 0x4c, 0x12, 0x8b, 0xb8, 0xa3, 0x57, 0xbc, + 0xa6, 0x4f, 0x58, 0x46, 0x5c, 0xe3, 0x57, 0x1c, 0x3e, 0x15, 0xbb, 0xf6, 0x66, 0xf7, 0x50, 0x62, + 0xad, 0xf3, 0xfc, 0xb9, 0x10, 0x06, 0x97, 0xf3, 0x61, 0x17, 0x89, 0xd2, 0xe1, 0x16, 0x2a, 0x6e, + 0x88, 0x27, 0x10, 0xbb, 0x34, 0x3a, 0xd0, 0x86, 0x28, 0x3d, 0xa1, 0x84, 0x09, 0xbe, 0xdf, 0x6c, + 0x93, 0x50, 0x02, 0xbb, 0x28, 0xe0, 0x1f, 0x17, 0x16, 0x78, 0x4d, 0x4f, 0x21, 0x0c, 0x41, 0xe7, + 0xbd, 0x66, 0xe2, 0xf7, 0xfb, 0xa4, 0x17, 0xaa, 0xf3, 0xa5, 0x62, 0x2f, 0x29, 0x34, 0x13, 0xbf, + 0x1f, 0x77, 0xd0, 0xa8, 0x4d, 0x97, 0xf5, 0xb6, 0xbb, 0x5d, 0x42, 0x7c, 0xe9, 0x2e, 0x66, 0x7d, + 0xe9, 0x5c, 0xe4, 0xdc, 0xb1, 0xf2, 0x8a, 0x50, 0xa2, 0xe8, 0x27, 0xbe, 0x18, 0xbc, 0x8d, 0x8a, + 0x96, 0xdb, 0x9e, 0xb3, 0x2f, 0xdb, 0xd4, 0x2a, 0x8d, 0x71, 0x99, 0x59, 0xa3, 0x32, 0xf1, 0xf9, + 0xe3, 0x52, 0x03, 0x0b, 0x06, 0x14, 0x24, 0x14, 0x86, 0xbf, 0xa1, 0x20, 0x6c, 0xbb, 0x1d, 0x38, + 0x8e, 0xb1, 0x1c, 0x5c, 0x33, 0x78, 0x85, 0x87, 0x5d, 0x1a, 0xe7, 0x3a, 0x54, 0x33, 0xbf, 0xf0, + 0xc6, 0x81, 0xe2, 0xca, 0x04, 0x37, 0x46, 0xbd, 0xa4, 0x24, 0x41, 0x0f, 0x36, 0x15, 0xeb, 0x36, + 0xff, 0x7f, 0x69, 0x62, 0xa0, 0xa9, 0x48, 0xae, 0x74, 0x09, 0xa7, 0x42, 0xf4, 0x13, 0x5f, 0x0c, + 0xab, 0x26, 0xb6, 0xa8, 0xd6, 0xb8, 0xd4, 0x36, 0xba, 0xc4, 0x34, 0x9d, 0x25, 0x88, 0x5d, 0x76, + 0xd7, 0x86, 0x68, 0x58, 0x9a, 0xe4, 0x6e, 0x13, 0x54, 0x13, 0x93, 0x44, 0x2a, 0x92, 0xc2, 0xcd, + 0xab, 0x89, 0xc5, 0xc3, 0xe4, 0xde, 0xfe, 0x6a, 0x60, 0x67, 0xd5, 0xc4, 0xa1, 0x8a, 0x7b, 0x56, + 0x4d, 0x1c, 0x11, 0xd1, 0xff, 0xc2, 0xf6, 0xc3, 0x3c, 0x3a, 0x14, 0x12, 0x87, 0xf7, 0xb6, 0x0f, + 0x4b, 0xf7, 0xb6, 0x77, 0xc7, 0xee, 0x6d, 0x8f, 0x26, 0xb0, 0xfc, 0xf7, 0xfa, 0xf6, 0x5f, 0xf4, + 0xfa, 0x96, 0x15, 0x8c, 0x87, 0xf3, 0xf5, 0x6f, 0x50, 0x30, 0x1e, 0x2a, 0x9b, 0x92, 0x32, 0xbd, + 0x9b, 0x8b, 0x8e, 0xe8, 0x3f, 0xb1, 0x2a, 0x39, 0xa1, 0x48, 0x78, 0x28, 0x5b, 0x91, 0xb0, 0xfa, + 0x87, 0x3c, 0x9a, 0x8a, 0x87, 0x09, 0xa9, 0xe6, 0x55, 0xb9, 0x6e, 0xcd, 0x6b, 0x15, 0x4d, 0xaf, + 0xbb, 0x86, 0xd1, 0xe5, 0x06, 0x89, 0xd4, 0x90, 0x78, 0xd7, 0xe3, 0xb7, 0x0a, 0xce, 0xe9, 0xa5, + 0x04, 0x1a, 0x92, 0xc8, 0x99, 0x52, 0xbf, 0x9b, 0x1f, 0xa8, 0x7e, 0xf7, 0x61, 0x34, 0xc1, 0xf6, + 0x89, 0x6e, 0xac, 0xb4, 0x25, 0x08, 0x00, 0x24, 0xda, 0x49, 0x64, 0xda, 0xe4, 0x5a, 0xdc, 0xe1, + 0x01, 0x6a, 0x71, 0xb7, 0xa4, 0xcb, 0xea, 0x11, 0xbe, 0x20, 0x2a, 0x03, 0x2f, 0x88, 0x1b, 0xbe, + 0xb3, 0x56, 0x6f, 0x45, 0x33, 0x82, 0x8d, 0x7d, 0x03, 0x91, 0xc3, 0x0a, 0x60, 0xa9, 0xb5, 0xe0, + 0xb6, 0x5a, 0x5d, 0xf5, 0x2c, 0x2c, 0x20, 0xa9, 0xd4, 0xda, 0x9b, 0x79, 0xaf, 0xfa, 0x5b, 0xd4, + 0xc0, 0x44, 0x66, 0xde, 0x6b, 0x27, 0x01, 0x85, 0xfa, 0x81, 0x82, 0x8e, 0xa6, 0x14, 0xdf, 0xe2, + 0xab, 0x68, 0xb2, 0xa5, 0x6d, 0x47, 0xaa, 0x8b, 0x45, 0x88, 0xc9, 0x7a, 0xbe, 0xe7, 0xd7, 0xda, + 0x2b, 0x12, 0x12, 0x89, 0x21, 0xf3, 0x2d, 0x5e, 0xdb, 0xae, 0xb9, 0x56, 0x93, 0x0e, 0x78, 0x8b, + 0xc0, 0x97, 0xef, 0x8a, 0xc0, 0x20, 0x01, 0x1a, 0x2b, 0xe1, 0x2d, 0xa5, 0xe5, 0x7b, 0x90, 0xb9, + 0x47, 0x8b, 0x78, 0xef, 0x88, 0x15, 0xf1, 0x1e, 0xec, 0xe1, 0xdb, 0xa7, 0x12, 0xde, 0x77, 0x14, + 0x74, 0x24, 0x39, 0x2f, 0xc6, 0xff, 0x2f, 0x69, 0x7c, 0x3c, 0xa6, 0xf1, 0x81, 0x18, 0x97, 0xd0, + 0x77, 0x03, 0x4d, 0x8a, 0xec, 0x59, 0xc0, 0xdc, 0xc0, 0x2f, 0x4d, 0xb7, 0x82, 0xd4, 0xdc, 0xcf, + 0x03, 0xf9, 0x3c, 0xca, 0x6d, 0x24, 0x86, 0xab, 0x7e, 0x2b, 0x87, 0x86, 0x79, 0x65, 0xdb, 0x1e, + 0x26, 0x6d, 0xcf, 0x4a, 0x49, 0x5b, 0xd6, 0xb7, 0x6f, 0xae, 0x5d, 0x6a, 0xbe, 0xb6, 0x16, 0xcb, + 0xd7, 0xce, 0x0c, 0x84, 0xde, 0x3f, 0x55, 0x7b, 0x08, 0x15, 0x03, 0x25, 0xb2, 0x05, 0x6a, 0x96, + 0x18, 0x8f, 0x45, 0x44, 0x64, 0x0c, 0xf3, 0x5b, 0xd2, 0x8e, 0x39, 0xc8, 0x4f, 0xa2, 0x23, 0xb2, + 0xcb, 0xfe, 0x56, 0xe9, 0xbd, 0xcf, 0x84, 0xb5, 0xa9, 0xbd, 0x3b, 0x28, 0x04, 0x29, 0xef, 0x77, + 0xe5, 0xc1, 0xed, 0x5d, 0x9e, 0x7b, 0xef, 0x11, 0xc1, 0x33, 0xb9, 0x2a, 0xf5, 0x92, 0x18, 0xf5, + 0x0c, 0x6c, 0x00, 0x92, 0xb0, 0x4c, 0xcf, 0x28, 0x3f, 0x55, 0xd0, 0x74, 0x52, 0x35, 0x2d, 0x2b, + 0x99, 0xda, 0xd4, 0x45, 0xf9, 0x4f, 0xa4, 0x64, 0xea, 0x49, 0x68, 0x23, 0xbc, 0x27, 0xf8, 0xe1, + 0x5a, 0x2e, 0xf5, 0x87, 0x6b, 0xa7, 0x10, 0x02, 0x53, 0x89, 0xdf, 0xea, 0x8b, 0x51, 0x05, 0xce, + 0x1b, 0xfe, 0x8a, 0x9f, 0x44, 0xa8, 0x78, 0x91, 0x5c, 0xa8, 0x0f, 0xdf, 0xcc, 0xa2, 0x45, 0x72, + 0x11, 0x55, 0xa3, 0x74, 0xea, 0xcf, 0x14, 0x74, 0xc7, 0x75, 0xcf, 0x8c, 0xb8, 0x22, 0x85, 0x87, + 0x72, 0x2c, 0x3c, 0x1c, 0x4b, 0x07, 0xd8, 0xc7, 0x1f, 0x28, 0xbc, 0x91, 0x43, 0x78, 0x75, 0x43, + 0xb7, 0x1a, 0x55, 0xcd, 0x72, 0x60, 0xa7, 0xf6, 0x06, 0xb8, 0x87, 0x01, 0x03, 0x2c, 0xde, 0xa0, + 0x76, 0xdd, 0xd2, 0xb9, 0x91, 0xc4, 0x74, 0x06, 0x16, 0x5f, 0x08, 0xbb, 0x48, 0x94, 0x0e, 0xce, + 0x6e, 0x05, 0x91, 0x2f, 0xfb, 0x55, 0x56, 0x59, 0x13, 0xe0, 0xd0, 0x03, 0xc2, 0xf5, 0x21, 0x1a, + 0x60, 0x5d, 0xfa, 0xe0, 0xea, 0x9b, 0x10, 0xee, 0x7b, 0x0d, 0xb2, 0xe0, 0xd5, 0x10, 0xed, 0x95, + 0x51, 0x6e, 0x45, 0x43, 0x1c, 0x95, 0x59, 0x63, 0xdc, 0xbb, 0x83, 0x67, 0x12, 0x09, 0x6f, 0x55, + 0x3f, 0x56, 0xd0, 0x4c, 0xb2, 0x4a, 0xfb, 0x71, 0xee, 0xb8, 0x2a, 0x9f, 0x3b, 0xb2, 0xde, 0x63, + 0x24, 0x2b, 0x9e, 0x72, 0x06, 0xf9, 0x20, 0xd1, 0xf8, 0xfb, 0x31, 0xca, 0x75, 0x79, 0x94, 0x73, + 0x3b, 0x1e, 0x65, 0xf2, 0x08, 0x2b, 0xf7, 0x5e, 0xfb, 0xd3, 0xb1, 0x9b, 0xde, 0x83, 0xbf, 0xdf, + 0xc3, 0xdf, 0x6b, 0x1f, 0x1d, 0x53, 0xae, 0xc1, 0xdf, 0x7b, 0xf0, 0xf7, 0x21, 0xfc, 0xbd, 0xf9, + 0xe7, 0x63, 0x37, 0x3d, 0x3b, 0x2a, 0x30, 0xff, 0x19, 0x00, 0x00, 0xff, 0xff, 0xdd, 0x50, 0x26, + 0x17, 0x14, 0x46, 0x00, 0x00, } diff --git a/pkg/apis/extensions/v1beta1/generated.proto b/pkg/apis/extensions/v1beta1/generated.proto index be301e7bcaf1..3165bab03a14 100644 --- a/pkg/apis/extensions/v1beta1/generated.proto +++ b/pkg/apis/extensions/v1beta1/generated.proto @@ -785,6 +785,27 @@ message ReplicaSet { optional ReplicaSetStatus status = 3; } +// ReplicaSetCondition describes the state of a replica set at a certain point. +message ReplicaSetCondition { + // Type of replica set condition. + optional string type = 1; + + // Status of the condition, one of True, False, Unknown. + optional string status = 2; + + // Last time we probed the condition. + optional k8s.io.kubernetes.pkg.api.unversioned.Time lastProbeTime = 3; + + // The last time the condition transitioned from one status to another. + optional k8s.io.kubernetes.pkg.api.unversioned.Time lastTransitionTime = 4; + + // The reason for the condition's last transition. + optional string reason = 5; + + // A human readable message indicating details about the transition. + optional string message = 6; +} + // ReplicaSetList is a collection of ReplicaSets. message ReplicaSetList { // Standard list metadata. @@ -838,6 +859,9 @@ message ReplicaSetStatus { // ObservedGeneration reflects the generation of the most recently observed ReplicaSet. optional int64 observedGeneration = 3; + + // Represents the latest available observations of a replica set's current state. + repeated ReplicaSetCondition conditions = 6; } // Dummy definition diff --git a/pkg/apis/extensions/v1beta1/types.generated.go b/pkg/apis/extensions/v1beta1/types.generated.go index 4d3debbcb4bd..09016a904cbd 100644 --- a/pkg/apis/extensions/v1beta1/types.generated.go +++ b/pkg/apis/extensions/v1beta1/types.generated.go @@ -15775,16 +15775,17 @@ func (x *ReplicaSetStatus) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep1320 := !z.EncBinary() yy2arr1320 := z.EncBasicHandle().StructToArray - var yyq1320 [5]bool + var yyq1320 [6]bool _, _, _ = yysep1320, yyq1320, yy2arr1320 const yyr1320 bool = false yyq1320[1] = x.FullyLabeledReplicas != 0 yyq1320[2] = x.ReadyReplicas != 0 yyq1320[3] = x.AvailableReplicas != 0 yyq1320[4] = x.ObservedGeneration != 0 + yyq1320[5] = len(x.Conditions) != 0 var yynn1320 int if yyr1320 || yy2arr1320 { - r.EncodeArrayStart(5) + r.EncodeArrayStart(6) } else { yynn1320 = 1 for _, b := range yyq1320 { @@ -15914,6 +15915,39 @@ func (x *ReplicaSetStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } + if yyr1320 || yy2arr1320 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1320[5] { + if x.Conditions == nil { + r.EncodeNil() + } else { + yym1337 := z.EncBinary() + _ = yym1337 + if false { + } else { + h.encSliceReplicaSetCondition(([]ReplicaSetCondition)(x.Conditions), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1320[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("conditions")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Conditions == nil { + r.EncodeNil() + } else { + yym1338 := z.EncBinary() + _ = yym1338 + if false { + } else { + h.encSliceReplicaSetCondition(([]ReplicaSetCondition)(x.Conditions), e) + } + } + } + } if yyr1320 || yy2arr1320 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { @@ -15927,25 +15961,25 @@ func (x *ReplicaSetStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1336 := z.DecBinary() - _ = yym1336 + yym1339 := z.DecBinary() + _ = yym1339 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1337 := r.ContainerType() - if yyct1337 == codecSelferValueTypeMap1234 { - yyl1337 := r.ReadMapStart() - if yyl1337 == 0 { + yyct1340 := r.ContainerType() + if yyct1340 == codecSelferValueTypeMap1234 { + yyl1340 := r.ReadMapStart() + if yyl1340 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1337, d) + x.codecDecodeSelfFromMap(yyl1340, d) } - } else if yyct1337 == codecSelferValueTypeArray1234 { - yyl1337 := r.ReadArrayStart() - if yyl1337 == 0 { + } else if yyct1340 == codecSelferValueTypeArray1234 { + yyl1340 := r.ReadArrayStart() + if yyl1340 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1337, d) + x.codecDecodeSelfFromArray(yyl1340, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15957,12 +15991,12 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1338Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1338Slc - var yyhl1338 bool = l >= 0 - for yyj1338 := 0; ; yyj1338++ { - if yyhl1338 { - if yyj1338 >= l { + var yys1341Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1341Slc + var yyhl1341 bool = l >= 0 + for yyj1341 := 0; ; yyj1341++ { + if yyhl1341 { + if yyj1341 >= l { break } } else { @@ -15971,10 +16005,10 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1338Slc = r.DecodeBytes(yys1338Slc, true, true) - yys1338 := string(yys1338Slc) + yys1341Slc = r.DecodeBytes(yys1341Slc, true, true) + yys1341 := string(yys1341Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1338 { + switch yys1341 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -16005,10 +16039,22 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } else { x.ObservedGeneration = int64(r.DecodeInt(64)) } + case "conditions": + if r.TryDecodeAsNil() { + x.Conditions = nil + } else { + yyv1347 := &x.Conditions + yym1348 := z.DecBinary() + _ = yym1348 + if false { + } else { + h.decSliceReplicaSetCondition((*[]ReplicaSetCondition)(yyv1347), d) + } + } default: - z.DecStructFieldNotFound(-1, yys1338) - } // end switch yys1338 - } // end for yyj1338 + z.DecStructFieldNotFound(-1, yys1341) + } // end switch yys1341 + } // end for yyj1341 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16016,16 +16062,16 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1344 int - var yyb1344 bool - var yyhl1344 bool = l >= 0 - yyj1344++ - if yyhl1344 { - yyb1344 = yyj1344 > l + var yyj1349 int + var yyb1349 bool + var yyhl1349 bool = l >= 0 + yyj1349++ + if yyhl1349 { + yyb1349 = yyj1349 > l } else { - yyb1344 = r.CheckBreak() + yyb1349 = r.CheckBreak() } - if yyb1344 { + if yyb1349 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16035,13 +16081,13 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Replicas = int32(r.DecodeInt(32)) } - yyj1344++ - if yyhl1344 { - yyb1344 = yyj1344 > l + yyj1349++ + if yyhl1349 { + yyb1349 = yyj1349 > l } else { - yyb1344 = r.CheckBreak() + yyb1349 = r.CheckBreak() } - if yyb1344 { + if yyb1349 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16051,13 +16097,13 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.FullyLabeledReplicas = int32(r.DecodeInt(32)) } - yyj1344++ - if yyhl1344 { - yyb1344 = yyj1344 > l + yyj1349++ + if yyhl1349 { + yyb1349 = yyj1349 > l } else { - yyb1344 = r.CheckBreak() + yyb1349 = r.CheckBreak() } - if yyb1344 { + if yyb1349 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16067,13 +16113,13 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ReadyReplicas = int32(r.DecodeInt(32)) } - yyj1344++ - if yyhl1344 { - yyb1344 = yyj1344 > l + yyj1349++ + if yyhl1349 { + yyb1349 = yyj1349 > l } else { - yyb1344 = r.CheckBreak() + yyb1349 = r.CheckBreak() } - if yyb1344 { + if yyb1349 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16083,13 +16129,13 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.AvailableReplicas = int32(r.DecodeInt(32)) } - yyj1344++ - if yyhl1344 { - yyb1344 = yyj1344 > l + yyj1349++ + if yyhl1349 { + yyb1349 = yyj1349 > l } else { - yyb1344 = r.CheckBreak() + yyb1349 = r.CheckBreak() } - if yyb1344 { + if yyb1349 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16099,18 +16145,521 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ObservedGeneration = int64(r.DecodeInt(64)) } + yyj1349++ + if yyhl1349 { + yyb1349 = yyj1349 > l + } else { + yyb1349 = r.CheckBreak() + } + if yyb1349 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Conditions = nil + } else { + yyv1355 := &x.Conditions + yym1356 := z.DecBinary() + _ = yym1356 + if false { + } else { + h.decSliceReplicaSetCondition((*[]ReplicaSetCondition)(yyv1355), d) + } + } + for { + yyj1349++ + if yyhl1349 { + yyb1349 = yyj1349 > l + } else { + yyb1349 = r.CheckBreak() + } + if yyb1349 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1349-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x ReplicaSetConditionType) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym1357 := z.EncBinary() + _ = yym1357 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *ReplicaSetConditionType) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1358 := z.DecBinary() + _ = yym1358 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *ReplicaSetCondition) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1359 := z.EncBinary() + _ = yym1359 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1360 := !z.EncBinary() + yy2arr1360 := z.EncBasicHandle().StructToArray + var yyq1360 [6]bool + _, _, _ = yysep1360, yyq1360, yy2arr1360 + const yyr1360 bool = false + yyq1360[2] = true + yyq1360[3] = true + yyq1360[4] = x.Reason != "" + yyq1360[5] = x.Message != "" + var yynn1360 int + if yyr1360 || yy2arr1360 { + r.EncodeArrayStart(6) + } else { + yynn1360 = 2 + for _, b := range yyq1360 { + if b { + yynn1360++ + } + } + r.EncodeMapStart(yynn1360) + yynn1360 = 0 + } + if yyr1360 || yy2arr1360 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + x.Type.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("type")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Type.CodecEncodeSelf(e) + } + if yyr1360 || yy2arr1360 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym1363 := z.EncBinary() + _ = yym1363 + if false { + } else if z.HasExtensions() && z.EncExt(x.Status) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Status)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1364 := z.EncBinary() + _ = yym1364 + if false { + } else if z.HasExtensions() && z.EncExt(x.Status) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Status)) + } + } + if yyr1360 || yy2arr1360 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1360[2] { + yy1366 := &x.LastProbeTime + yym1367 := z.EncBinary() + _ = yym1367 + if false { + } else if z.HasExtensions() && z.EncExt(yy1366) { + } else if yym1367 { + z.EncBinaryMarshal(yy1366) + } else if !yym1367 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1366) + } else { + z.EncFallback(yy1366) + } + } else { + r.EncodeNil() + } + } else { + if yyq1360[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("lastProbeTime")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1368 := &x.LastProbeTime + yym1369 := z.EncBinary() + _ = yym1369 + if false { + } else if z.HasExtensions() && z.EncExt(yy1368) { + } else if yym1369 { + z.EncBinaryMarshal(yy1368) + } else if !yym1369 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1368) + } else { + z.EncFallback(yy1368) + } + } + } + if yyr1360 || yy2arr1360 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1360[3] { + yy1371 := &x.LastTransitionTime + yym1372 := z.EncBinary() + _ = yym1372 + if false { + } else if z.HasExtensions() && z.EncExt(yy1371) { + } else if yym1372 { + z.EncBinaryMarshal(yy1371) + } else if !yym1372 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1371) + } else { + z.EncFallback(yy1371) + } + } else { + r.EncodeNil() + } + } else { + if yyq1360[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1373 := &x.LastTransitionTime + yym1374 := z.EncBinary() + _ = yym1374 + if false { + } else if z.HasExtensions() && z.EncExt(yy1373) { + } else if yym1374 { + z.EncBinaryMarshal(yy1373) + } else if !yym1374 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1373) + } else { + z.EncFallback(yy1373) + } + } + } + if yyr1360 || yy2arr1360 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1360[4] { + yym1376 := z.EncBinary() + _ = yym1376 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1360[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("reason")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1377 := z.EncBinary() + _ = yym1377 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } + } + if yyr1360 || yy2arr1360 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1360[5] { + yym1379 := z.EncBinary() + _ = yym1379 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1360[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1380 := z.EncBinary() + _ = yym1380 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } + } + if yyr1360 || yy2arr1360 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ReplicaSetCondition) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1381 := z.DecBinary() + _ = yym1381 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1382 := r.ContainerType() + if yyct1382 == codecSelferValueTypeMap1234 { + yyl1382 := r.ReadMapStart() + if yyl1382 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1382, d) + } + } else if yyct1382 == codecSelferValueTypeArray1234 { + yyl1382 := r.ReadArrayStart() + if yyl1382 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1382, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ReplicaSetCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1383Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1383Slc + var yyhl1383 bool = l >= 0 + for yyj1383 := 0; ; yyj1383++ { + if yyhl1383 { + if yyj1383 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1383Slc = r.DecodeBytes(yys1383Slc, true, true) + yys1383 := string(yys1383Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1383 { + case "type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = ReplicaSetConditionType(r.DecodeString()) + } + case "status": + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = pkg2_v1.ConditionStatus(r.DecodeString()) + } + case "lastProbeTime": + if r.TryDecodeAsNil() { + x.LastProbeTime = pkg1_unversioned.Time{} + } else { + yyv1386 := &x.LastProbeTime + yym1387 := z.DecBinary() + _ = yym1387 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1386) { + } else if yym1387 { + z.DecBinaryUnmarshal(yyv1386) + } else if !yym1387 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1386) + } else { + z.DecFallback(yyv1386, false) + } + } + case "lastTransitionTime": + if r.TryDecodeAsNil() { + x.LastTransitionTime = pkg1_unversioned.Time{} + } else { + yyv1388 := &x.LastTransitionTime + yym1389 := z.DecBinary() + _ = yym1389 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1388) { + } else if yym1389 { + z.DecBinaryUnmarshal(yyv1388) + } else if !yym1389 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1388) + } else { + z.DecFallback(yyv1388, false) + } + } + case "reason": + if r.TryDecodeAsNil() { + x.Reason = "" + } else { + x.Reason = string(r.DecodeString()) + } + case "message": + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys1383) + } // end switch yys1383 + } // end for yyj1383 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ReplicaSetCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1392 int + var yyb1392 bool + var yyhl1392 bool = l >= 0 + yyj1392++ + if yyhl1392 { + yyb1392 = yyj1392 > l + } else { + yyb1392 = r.CheckBreak() + } + if yyb1392 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = ReplicaSetConditionType(r.DecodeString()) + } + yyj1392++ + if yyhl1392 { + yyb1392 = yyj1392 > l + } else { + yyb1392 = r.CheckBreak() + } + if yyb1392 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = pkg2_v1.ConditionStatus(r.DecodeString()) + } + yyj1392++ + if yyhl1392 { + yyb1392 = yyj1392 > l + } else { + yyb1392 = r.CheckBreak() + } + if yyb1392 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.LastProbeTime = pkg1_unversioned.Time{} + } else { + yyv1395 := &x.LastProbeTime + yym1396 := z.DecBinary() + _ = yym1396 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1395) { + } else if yym1396 { + z.DecBinaryUnmarshal(yyv1395) + } else if !yym1396 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1395) + } else { + z.DecFallback(yyv1395, false) + } + } + yyj1392++ + if yyhl1392 { + yyb1392 = yyj1392 > l + } else { + yyb1392 = r.CheckBreak() + } + if yyb1392 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.LastTransitionTime = pkg1_unversioned.Time{} + } else { + yyv1397 := &x.LastTransitionTime + yym1398 := z.DecBinary() + _ = yym1398 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1397) { + } else if yym1398 { + z.DecBinaryUnmarshal(yyv1397) + } else if !yym1398 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1397) + } else { + z.DecFallback(yyv1397, false) + } + } + yyj1392++ + if yyhl1392 { + yyb1392 = yyj1392 > l + } else { + yyb1392 = r.CheckBreak() + } + if yyb1392 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Reason = "" + } else { + x.Reason = string(r.DecodeString()) + } + yyj1392++ + if yyhl1392 { + yyb1392 = yyj1392 > l + } else { + yyb1392 = r.CheckBreak() + } + if yyb1392 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } for { - yyj1344++ - if yyhl1344 { - yyb1344 = yyj1344 > l + yyj1392++ + if yyhl1392 { + yyb1392 = yyj1392 > l } else { - yyb1344 = r.CheckBreak() + yyb1392 = r.CheckBreak() } - if yyb1344 { + if yyb1392 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1344-1, "") + z.DecStructFieldNotFound(yyj1392-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16122,38 +16671,38 @@ func (x *PodSecurityPolicy) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1350 := z.EncBinary() - _ = yym1350 + yym1401 := z.EncBinary() + _ = yym1401 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1351 := !z.EncBinary() - yy2arr1351 := z.EncBasicHandle().StructToArray - var yyq1351 [4]bool - _, _, _ = yysep1351, yyq1351, yy2arr1351 - const yyr1351 bool = false - yyq1351[0] = x.Kind != "" - yyq1351[1] = x.APIVersion != "" - yyq1351[2] = true - yyq1351[3] = true - var yynn1351 int - if yyr1351 || yy2arr1351 { + yysep1402 := !z.EncBinary() + yy2arr1402 := z.EncBasicHandle().StructToArray + var yyq1402 [4]bool + _, _, _ = yysep1402, yyq1402, yy2arr1402 + const yyr1402 bool = false + yyq1402[0] = x.Kind != "" + yyq1402[1] = x.APIVersion != "" + yyq1402[2] = true + yyq1402[3] = true + var yynn1402 int + if yyr1402 || yy2arr1402 { r.EncodeArrayStart(4) } else { - yynn1351 = 0 - for _, b := range yyq1351 { + yynn1402 = 0 + for _, b := range yyq1402 { if b { - yynn1351++ + yynn1402++ } } - r.EncodeMapStart(yynn1351) - yynn1351 = 0 + r.EncodeMapStart(yynn1402) + yynn1402 = 0 } - if yyr1351 || yy2arr1351 { + if yyr1402 || yy2arr1402 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1351[0] { - yym1353 := z.EncBinary() - _ = yym1353 + if yyq1402[0] { + yym1404 := z.EncBinary() + _ = yym1404 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -16162,23 +16711,23 @@ func (x *PodSecurityPolicy) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1351[0] { + if yyq1402[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1354 := z.EncBinary() - _ = yym1354 + yym1405 := z.EncBinary() + _ = yym1405 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1351 || yy2arr1351 { + if yyr1402 || yy2arr1402 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1351[1] { - yym1356 := z.EncBinary() - _ = yym1356 + if yyq1402[1] { + yym1407 := z.EncBinary() + _ = yym1407 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -16187,53 +16736,53 @@ func (x *PodSecurityPolicy) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1351[1] { + if yyq1402[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1357 := z.EncBinary() - _ = yym1357 + yym1408 := z.EncBinary() + _ = yym1408 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1351 || yy2arr1351 { + if yyr1402 || yy2arr1402 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1351[2] { - yy1359 := &x.ObjectMeta - yy1359.CodecEncodeSelf(e) + if yyq1402[2] { + yy1410 := &x.ObjectMeta + yy1410.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1351[2] { + if yyq1402[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1360 := &x.ObjectMeta - yy1360.CodecEncodeSelf(e) + yy1411 := &x.ObjectMeta + yy1411.CodecEncodeSelf(e) } } - if yyr1351 || yy2arr1351 { + if yyr1402 || yy2arr1402 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1351[3] { - yy1362 := &x.Spec - yy1362.CodecEncodeSelf(e) + if yyq1402[3] { + yy1413 := &x.Spec + yy1413.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1351[3] { + if yyq1402[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1363 := &x.Spec - yy1363.CodecEncodeSelf(e) + yy1414 := &x.Spec + yy1414.CodecEncodeSelf(e) } } - if yyr1351 || yy2arr1351 { + if yyr1402 || yy2arr1402 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16246,25 +16795,25 @@ func (x *PodSecurityPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1364 := z.DecBinary() - _ = yym1364 + yym1415 := z.DecBinary() + _ = yym1415 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1365 := r.ContainerType() - if yyct1365 == codecSelferValueTypeMap1234 { - yyl1365 := r.ReadMapStart() - if yyl1365 == 0 { + yyct1416 := r.ContainerType() + if yyct1416 == codecSelferValueTypeMap1234 { + yyl1416 := r.ReadMapStart() + if yyl1416 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1365, d) + x.codecDecodeSelfFromMap(yyl1416, d) } - } else if yyct1365 == codecSelferValueTypeArray1234 { - yyl1365 := r.ReadArrayStart() - if yyl1365 == 0 { + } else if yyct1416 == codecSelferValueTypeArray1234 { + yyl1416 := r.ReadArrayStart() + if yyl1416 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1365, d) + x.codecDecodeSelfFromArray(yyl1416, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16276,12 +16825,12 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1366Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1366Slc - var yyhl1366 bool = l >= 0 - for yyj1366 := 0; ; yyj1366++ { - if yyhl1366 { - if yyj1366 >= l { + var yys1417Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1417Slc + var yyhl1417 bool = l >= 0 + for yyj1417 := 0; ; yyj1417++ { + if yyhl1417 { + if yyj1417 >= l { break } } else { @@ -16290,10 +16839,10 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1366Slc = r.DecodeBytes(yys1366Slc, true, true) - yys1366 := string(yys1366Slc) + yys1417Slc = r.DecodeBytes(yys1417Slc, true, true) + yys1417 := string(yys1417Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1366 { + switch yys1417 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -16310,20 +16859,20 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = pkg2_v1.ObjectMeta{} } else { - yyv1369 := &x.ObjectMeta - yyv1369.CodecDecodeSelf(d) + yyv1420 := &x.ObjectMeta + yyv1420.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSecurityPolicySpec{} } else { - yyv1370 := &x.Spec - yyv1370.CodecDecodeSelf(d) + yyv1421 := &x.Spec + yyv1421.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1366) - } // end switch yys1366 - } // end for yyj1366 + z.DecStructFieldNotFound(-1, yys1417) + } // end switch yys1417 + } // end for yyj1417 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16331,16 +16880,16 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1371 int - var yyb1371 bool - var yyhl1371 bool = l >= 0 - yyj1371++ - if yyhl1371 { - yyb1371 = yyj1371 > l + var yyj1422 int + var yyb1422 bool + var yyhl1422 bool = l >= 0 + yyj1422++ + if yyhl1422 { + yyb1422 = yyj1422 > l } else { - yyb1371 = r.CheckBreak() + yyb1422 = r.CheckBreak() } - if yyb1371 { + if yyb1422 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16350,13 +16899,13 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj1371++ - if yyhl1371 { - yyb1371 = yyj1371 > l + yyj1422++ + if yyhl1422 { + yyb1422 = yyj1422 > l } else { - yyb1371 = r.CheckBreak() + yyb1422 = r.CheckBreak() } - if yyb1371 { + if yyb1422 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16366,13 +16915,13 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj1371++ - if yyhl1371 { - yyb1371 = yyj1371 > l + yyj1422++ + if yyhl1422 { + yyb1422 = yyj1422 > l } else { - yyb1371 = r.CheckBreak() + yyb1422 = r.CheckBreak() } - if yyb1371 { + if yyb1422 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16380,16 +16929,16 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ObjectMeta = pkg2_v1.ObjectMeta{} } else { - yyv1374 := &x.ObjectMeta - yyv1374.CodecDecodeSelf(d) + yyv1425 := &x.ObjectMeta + yyv1425.CodecDecodeSelf(d) } - yyj1371++ - if yyhl1371 { - yyb1371 = yyj1371 > l + yyj1422++ + if yyhl1422 { + yyb1422 = yyj1422 > l } else { - yyb1371 = r.CheckBreak() + yyb1422 = r.CheckBreak() } - if yyb1371 { + if yyb1422 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16397,21 +16946,21 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Spec = PodSecurityPolicySpec{} } else { - yyv1375 := &x.Spec - yyv1375.CodecDecodeSelf(d) + yyv1426 := &x.Spec + yyv1426.CodecDecodeSelf(d) } for { - yyj1371++ - if yyhl1371 { - yyb1371 = yyj1371 > l + yyj1422++ + if yyhl1422 { + yyb1422 = yyj1422 > l } else { - yyb1371 = r.CheckBreak() + yyb1422 = r.CheckBreak() } - if yyb1371 { + if yyb1422 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1371-1, "") + z.DecStructFieldNotFound(yyj1422-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16423,44 +16972,44 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1376 := z.EncBinary() - _ = yym1376 + yym1427 := z.EncBinary() + _ = yym1427 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1377 := !z.EncBinary() - yy2arr1377 := z.EncBasicHandle().StructToArray - var yyq1377 [14]bool - _, _, _ = yysep1377, yyq1377, yy2arr1377 - const yyr1377 bool = false - yyq1377[0] = x.Privileged != false - yyq1377[1] = len(x.DefaultAddCapabilities) != 0 - yyq1377[2] = len(x.RequiredDropCapabilities) != 0 - yyq1377[3] = len(x.AllowedCapabilities) != 0 - yyq1377[4] = len(x.Volumes) != 0 - yyq1377[5] = x.HostNetwork != false - yyq1377[6] = len(x.HostPorts) != 0 - yyq1377[7] = x.HostPID != false - yyq1377[8] = x.HostIPC != false - yyq1377[13] = x.ReadOnlyRootFilesystem != false - var yynn1377 int - if yyr1377 || yy2arr1377 { + yysep1428 := !z.EncBinary() + yy2arr1428 := z.EncBasicHandle().StructToArray + var yyq1428 [14]bool + _, _, _ = yysep1428, yyq1428, yy2arr1428 + const yyr1428 bool = false + yyq1428[0] = x.Privileged != false + yyq1428[1] = len(x.DefaultAddCapabilities) != 0 + yyq1428[2] = len(x.RequiredDropCapabilities) != 0 + yyq1428[3] = len(x.AllowedCapabilities) != 0 + yyq1428[4] = len(x.Volumes) != 0 + yyq1428[5] = x.HostNetwork != false + yyq1428[6] = len(x.HostPorts) != 0 + yyq1428[7] = x.HostPID != false + yyq1428[8] = x.HostIPC != false + yyq1428[13] = x.ReadOnlyRootFilesystem != false + var yynn1428 int + if yyr1428 || yy2arr1428 { r.EncodeArrayStart(14) } else { - yynn1377 = 4 - for _, b := range yyq1377 { + yynn1428 = 4 + for _, b := range yyq1428 { if b { - yynn1377++ + yynn1428++ } } - r.EncodeMapStart(yynn1377) - yynn1377 = 0 + r.EncodeMapStart(yynn1428) + yynn1428 = 0 } - if yyr1377 || yy2arr1377 { + if yyr1428 || yy2arr1428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1377[0] { - yym1379 := z.EncBinary() - _ = yym1379 + if yyq1428[0] { + yym1430 := z.EncBinary() + _ = yym1430 if false { } else { r.EncodeBool(bool(x.Privileged)) @@ -16469,26 +17018,26 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1377[0] { + if yyq1428[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1380 := z.EncBinary() - _ = yym1380 + yym1431 := z.EncBinary() + _ = yym1431 if false { } else { r.EncodeBool(bool(x.Privileged)) } } } - if yyr1377 || yy2arr1377 { + if yyr1428 || yy2arr1428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1377[1] { + if yyq1428[1] { if x.DefaultAddCapabilities == nil { r.EncodeNil() } else { - yym1382 := z.EncBinary() - _ = yym1382 + yym1433 := z.EncBinary() + _ = yym1433 if false { } else { h.encSlicev1_Capability(([]pkg2_v1.Capability)(x.DefaultAddCapabilities), e) @@ -16498,15 +17047,15 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1377[1] { + if yyq1428[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultAddCapabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultAddCapabilities == nil { r.EncodeNil() } else { - yym1383 := z.EncBinary() - _ = yym1383 + yym1434 := z.EncBinary() + _ = yym1434 if false { } else { h.encSlicev1_Capability(([]pkg2_v1.Capability)(x.DefaultAddCapabilities), e) @@ -16514,14 +17063,14 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1377 || yy2arr1377 { + if yyr1428 || yy2arr1428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1377[2] { + if yyq1428[2] { if x.RequiredDropCapabilities == nil { r.EncodeNil() } else { - yym1385 := z.EncBinary() - _ = yym1385 + yym1436 := z.EncBinary() + _ = yym1436 if false { } else { h.encSlicev1_Capability(([]pkg2_v1.Capability)(x.RequiredDropCapabilities), e) @@ -16531,15 +17080,15 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1377[2] { + if yyq1428[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDropCapabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RequiredDropCapabilities == nil { r.EncodeNil() } else { - yym1386 := z.EncBinary() - _ = yym1386 + yym1437 := z.EncBinary() + _ = yym1437 if false { } else { h.encSlicev1_Capability(([]pkg2_v1.Capability)(x.RequiredDropCapabilities), e) @@ -16547,14 +17096,14 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1377 || yy2arr1377 { + if yyr1428 || yy2arr1428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1377[3] { + if yyq1428[3] { if x.AllowedCapabilities == nil { r.EncodeNil() } else { - yym1388 := z.EncBinary() - _ = yym1388 + yym1439 := z.EncBinary() + _ = yym1439 if false { } else { h.encSlicev1_Capability(([]pkg2_v1.Capability)(x.AllowedCapabilities), e) @@ -16564,15 +17113,15 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1377[3] { + if yyq1428[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allowedCapabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AllowedCapabilities == nil { r.EncodeNil() } else { - yym1389 := z.EncBinary() - _ = yym1389 + yym1440 := z.EncBinary() + _ = yym1440 if false { } else { h.encSlicev1_Capability(([]pkg2_v1.Capability)(x.AllowedCapabilities), e) @@ -16580,14 +17129,14 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1377 || yy2arr1377 { + if yyr1428 || yy2arr1428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1377[4] { + if yyq1428[4] { if x.Volumes == nil { r.EncodeNil() } else { - yym1391 := z.EncBinary() - _ = yym1391 + yym1442 := z.EncBinary() + _ = yym1442 if false { } else { h.encSliceFSType(([]FSType)(x.Volumes), e) @@ -16597,15 +17146,15 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1377[4] { + if yyq1428[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Volumes == nil { r.EncodeNil() } else { - yym1392 := z.EncBinary() - _ = yym1392 + yym1443 := z.EncBinary() + _ = yym1443 if false { } else { h.encSliceFSType(([]FSType)(x.Volumes), e) @@ -16613,11 +17162,11 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1377 || yy2arr1377 { + if yyr1428 || yy2arr1428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1377[5] { - yym1394 := z.EncBinary() - _ = yym1394 + if yyq1428[5] { + yym1445 := z.EncBinary() + _ = yym1445 if false { } else { r.EncodeBool(bool(x.HostNetwork)) @@ -16626,26 +17175,26 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1377[5] { + if yyq1428[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostNetwork")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1395 := z.EncBinary() - _ = yym1395 + yym1446 := z.EncBinary() + _ = yym1446 if false { } else { r.EncodeBool(bool(x.HostNetwork)) } } } - if yyr1377 || yy2arr1377 { + if yyr1428 || yy2arr1428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1377[6] { + if yyq1428[6] { if x.HostPorts == nil { r.EncodeNil() } else { - yym1397 := z.EncBinary() - _ = yym1397 + yym1448 := z.EncBinary() + _ = yym1448 if false { } else { h.encSliceHostPortRange(([]HostPortRange)(x.HostPorts), e) @@ -16655,15 +17204,15 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1377[6] { + if yyq1428[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPorts")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.HostPorts == nil { r.EncodeNil() } else { - yym1398 := z.EncBinary() - _ = yym1398 + yym1449 := z.EncBinary() + _ = yym1449 if false { } else { h.encSliceHostPortRange(([]HostPortRange)(x.HostPorts), e) @@ -16671,11 +17220,11 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1377 || yy2arr1377 { + if yyr1428 || yy2arr1428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1377[7] { - yym1400 := z.EncBinary() - _ = yym1400 + if yyq1428[7] { + yym1451 := z.EncBinary() + _ = yym1451 if false { } else { r.EncodeBool(bool(x.HostPID)) @@ -16684,23 +17233,23 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1377[7] { + if yyq1428[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1401 := z.EncBinary() - _ = yym1401 + yym1452 := z.EncBinary() + _ = yym1452 if false { } else { r.EncodeBool(bool(x.HostPID)) } } } - if yyr1377 || yy2arr1377 { + if yyr1428 || yy2arr1428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1377[8] { - yym1403 := z.EncBinary() - _ = yym1403 + if yyq1428[8] { + yym1454 := z.EncBinary() + _ = yym1454 if false { } else { r.EncodeBool(bool(x.HostIPC)) @@ -16709,67 +17258,67 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1377[8] { + if yyq1428[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIPC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1404 := z.EncBinary() - _ = yym1404 + yym1455 := z.EncBinary() + _ = yym1455 if false { } else { r.EncodeBool(bool(x.HostIPC)) } } } - if yyr1377 || yy2arr1377 { + if yyr1428 || yy2arr1428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1406 := &x.SELinux - yy1406.CodecEncodeSelf(e) + yy1457 := &x.SELinux + yy1457.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinux")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1407 := &x.SELinux - yy1407.CodecEncodeSelf(e) + yy1458 := &x.SELinux + yy1458.CodecEncodeSelf(e) } - if yyr1377 || yy2arr1377 { + if yyr1428 || yy2arr1428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1409 := &x.RunAsUser - yy1409.CodecEncodeSelf(e) + yy1460 := &x.RunAsUser + yy1460.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1410 := &x.RunAsUser - yy1410.CodecEncodeSelf(e) + yy1461 := &x.RunAsUser + yy1461.CodecEncodeSelf(e) } - if yyr1377 || yy2arr1377 { + if yyr1428 || yy2arr1428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1412 := &x.SupplementalGroups - yy1412.CodecEncodeSelf(e) + yy1463 := &x.SupplementalGroups + yy1463.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("supplementalGroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1413 := &x.SupplementalGroups - yy1413.CodecEncodeSelf(e) + yy1464 := &x.SupplementalGroups + yy1464.CodecEncodeSelf(e) } - if yyr1377 || yy2arr1377 { + if yyr1428 || yy2arr1428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1415 := &x.FSGroup - yy1415.CodecEncodeSelf(e) + yy1466 := &x.FSGroup + yy1466.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1416 := &x.FSGroup - yy1416.CodecEncodeSelf(e) + yy1467 := &x.FSGroup + yy1467.CodecEncodeSelf(e) } - if yyr1377 || yy2arr1377 { + if yyr1428 || yy2arr1428 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1377[13] { - yym1418 := z.EncBinary() - _ = yym1418 + if yyq1428[13] { + yym1469 := z.EncBinary() + _ = yym1469 if false { } else { r.EncodeBool(bool(x.ReadOnlyRootFilesystem)) @@ -16778,19 +17327,19 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1377[13] { + if yyq1428[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1419 := z.EncBinary() - _ = yym1419 + yym1470 := z.EncBinary() + _ = yym1470 if false { } else { r.EncodeBool(bool(x.ReadOnlyRootFilesystem)) } } } - if yyr1377 || yy2arr1377 { + if yyr1428 || yy2arr1428 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16803,25 +17352,25 @@ func (x *PodSecurityPolicySpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1420 := z.DecBinary() - _ = yym1420 + yym1471 := z.DecBinary() + _ = yym1471 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1421 := r.ContainerType() - if yyct1421 == codecSelferValueTypeMap1234 { - yyl1421 := r.ReadMapStart() - if yyl1421 == 0 { + yyct1472 := r.ContainerType() + if yyct1472 == codecSelferValueTypeMap1234 { + yyl1472 := r.ReadMapStart() + if yyl1472 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1421, d) + x.codecDecodeSelfFromMap(yyl1472, d) } - } else if yyct1421 == codecSelferValueTypeArray1234 { - yyl1421 := r.ReadArrayStart() - if yyl1421 == 0 { + } else if yyct1472 == codecSelferValueTypeArray1234 { + yyl1472 := r.ReadArrayStart() + if yyl1472 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1421, d) + x.codecDecodeSelfFromArray(yyl1472, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16833,12 +17382,12 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1422Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1422Slc - var yyhl1422 bool = l >= 0 - for yyj1422 := 0; ; yyj1422++ { - if yyhl1422 { - if yyj1422 >= l { + var yys1473Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1473Slc + var yyhl1473 bool = l >= 0 + for yyj1473 := 0; ; yyj1473++ { + if yyhl1473 { + if yyj1473 >= l { break } } else { @@ -16847,10 +17396,10 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1422Slc = r.DecodeBytes(yys1422Slc, true, true) - yys1422 := string(yys1422Slc) + yys1473Slc = r.DecodeBytes(yys1473Slc, true, true) + yys1473 := string(yys1473Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1422 { + switch yys1473 { case "privileged": if r.TryDecodeAsNil() { x.Privileged = false @@ -16861,48 +17410,48 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.DefaultAddCapabilities = nil } else { - yyv1424 := &x.DefaultAddCapabilities - yym1425 := z.DecBinary() - _ = yym1425 + yyv1475 := &x.DefaultAddCapabilities + yym1476 := z.DecBinary() + _ = yym1476 if false { } else { - h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1424), d) + h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1475), d) } } case "requiredDropCapabilities": if r.TryDecodeAsNil() { x.RequiredDropCapabilities = nil } else { - yyv1426 := &x.RequiredDropCapabilities - yym1427 := z.DecBinary() - _ = yym1427 + yyv1477 := &x.RequiredDropCapabilities + yym1478 := z.DecBinary() + _ = yym1478 if false { } else { - h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1426), d) + h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1477), d) } } case "allowedCapabilities": if r.TryDecodeAsNil() { x.AllowedCapabilities = nil } else { - yyv1428 := &x.AllowedCapabilities - yym1429 := z.DecBinary() - _ = yym1429 + yyv1479 := &x.AllowedCapabilities + yym1480 := z.DecBinary() + _ = yym1480 if false { } else { - h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1428), d) + h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1479), d) } } case "volumes": if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1430 := &x.Volumes - yym1431 := z.DecBinary() - _ = yym1431 + yyv1481 := &x.Volumes + yym1482 := z.DecBinary() + _ = yym1482 if false { } else { - h.decSliceFSType((*[]FSType)(yyv1430), d) + h.decSliceFSType((*[]FSType)(yyv1481), d) } } case "hostNetwork": @@ -16915,12 +17464,12 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.HostPorts = nil } else { - yyv1433 := &x.HostPorts - yym1434 := z.DecBinary() - _ = yym1434 + yyv1484 := &x.HostPorts + yym1485 := z.DecBinary() + _ = yym1485 if false { } else { - h.decSliceHostPortRange((*[]HostPortRange)(yyv1433), d) + h.decSliceHostPortRange((*[]HostPortRange)(yyv1484), d) } } case "hostPID": @@ -16939,29 +17488,29 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.SELinux = SELinuxStrategyOptions{} } else { - yyv1437 := &x.SELinux - yyv1437.CodecDecodeSelf(d) + yyv1488 := &x.SELinux + yyv1488.CodecDecodeSelf(d) } case "runAsUser": if r.TryDecodeAsNil() { x.RunAsUser = RunAsUserStrategyOptions{} } else { - yyv1438 := &x.RunAsUser - yyv1438.CodecDecodeSelf(d) + yyv1489 := &x.RunAsUser + yyv1489.CodecDecodeSelf(d) } case "supplementalGroups": if r.TryDecodeAsNil() { x.SupplementalGroups = SupplementalGroupsStrategyOptions{} } else { - yyv1439 := &x.SupplementalGroups - yyv1439.CodecDecodeSelf(d) + yyv1490 := &x.SupplementalGroups + yyv1490.CodecDecodeSelf(d) } case "fsGroup": if r.TryDecodeAsNil() { x.FSGroup = FSGroupStrategyOptions{} } else { - yyv1440 := &x.FSGroup - yyv1440.CodecDecodeSelf(d) + yyv1491 := &x.FSGroup + yyv1491.CodecDecodeSelf(d) } case "readOnlyRootFilesystem": if r.TryDecodeAsNil() { @@ -16970,9 +17519,9 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.ReadOnlyRootFilesystem = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys1422) - } // end switch yys1422 - } // end for yyj1422 + z.DecStructFieldNotFound(-1, yys1473) + } // end switch yys1473 + } // end for yyj1473 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16980,16 +17529,16 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1442 int - var yyb1442 bool - var yyhl1442 bool = l >= 0 - yyj1442++ - if yyhl1442 { - yyb1442 = yyj1442 > l + var yyj1493 int + var yyb1493 bool + var yyhl1493 bool = l >= 0 + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1442 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1442 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16999,13 +17548,13 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Privileged = bool(r.DecodeBool()) } - yyj1442++ - if yyhl1442 { - yyb1442 = yyj1442 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1442 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1442 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17013,21 +17562,21 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.DefaultAddCapabilities = nil } else { - yyv1444 := &x.DefaultAddCapabilities - yym1445 := z.DecBinary() - _ = yym1445 + yyv1495 := &x.DefaultAddCapabilities + yym1496 := z.DecBinary() + _ = yym1496 if false { } else { - h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1444), d) + h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1495), d) } } - yyj1442++ - if yyhl1442 { - yyb1442 = yyj1442 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1442 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1442 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17035,21 +17584,21 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.RequiredDropCapabilities = nil } else { - yyv1446 := &x.RequiredDropCapabilities - yym1447 := z.DecBinary() - _ = yym1447 + yyv1497 := &x.RequiredDropCapabilities + yym1498 := z.DecBinary() + _ = yym1498 if false { } else { - h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1446), d) + h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1497), d) } } - yyj1442++ - if yyhl1442 { - yyb1442 = yyj1442 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1442 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1442 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17057,21 +17606,21 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.AllowedCapabilities = nil } else { - yyv1448 := &x.AllowedCapabilities - yym1449 := z.DecBinary() - _ = yym1449 + yyv1499 := &x.AllowedCapabilities + yym1500 := z.DecBinary() + _ = yym1500 if false { } else { - h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1448), d) + h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1499), d) } } - yyj1442++ - if yyhl1442 { - yyb1442 = yyj1442 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1442 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1442 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17079,21 +17628,21 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1450 := &x.Volumes - yym1451 := z.DecBinary() - _ = yym1451 + yyv1501 := &x.Volumes + yym1502 := z.DecBinary() + _ = yym1502 if false { } else { - h.decSliceFSType((*[]FSType)(yyv1450), d) + h.decSliceFSType((*[]FSType)(yyv1501), d) } } - yyj1442++ - if yyhl1442 { - yyb1442 = yyj1442 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1442 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1442 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17103,13 +17652,13 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.HostNetwork = bool(r.DecodeBool()) } - yyj1442++ - if yyhl1442 { - yyb1442 = yyj1442 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1442 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1442 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17117,21 +17666,21 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.HostPorts = nil } else { - yyv1453 := &x.HostPorts - yym1454 := z.DecBinary() - _ = yym1454 + yyv1504 := &x.HostPorts + yym1505 := z.DecBinary() + _ = yym1505 if false { } else { - h.decSliceHostPortRange((*[]HostPortRange)(yyv1453), d) + h.decSliceHostPortRange((*[]HostPortRange)(yyv1504), d) } } - yyj1442++ - if yyhl1442 { - yyb1442 = yyj1442 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1442 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1442 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17141,13 +17690,13 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.HostPID = bool(r.DecodeBool()) } - yyj1442++ - if yyhl1442 { - yyb1442 = yyj1442 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1442 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1442 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17157,13 +17706,13 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.HostIPC = bool(r.DecodeBool()) } - yyj1442++ - if yyhl1442 { - yyb1442 = yyj1442 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1442 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1442 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17171,16 +17720,16 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.SELinux = SELinuxStrategyOptions{} } else { - yyv1457 := &x.SELinux - yyv1457.CodecDecodeSelf(d) + yyv1508 := &x.SELinux + yyv1508.CodecDecodeSelf(d) } - yyj1442++ - if yyhl1442 { - yyb1442 = yyj1442 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1442 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1442 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17188,16 +17737,16 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.RunAsUser = RunAsUserStrategyOptions{} } else { - yyv1458 := &x.RunAsUser - yyv1458.CodecDecodeSelf(d) + yyv1509 := &x.RunAsUser + yyv1509.CodecDecodeSelf(d) } - yyj1442++ - if yyhl1442 { - yyb1442 = yyj1442 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1442 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1442 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17205,16 +17754,16 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.SupplementalGroups = SupplementalGroupsStrategyOptions{} } else { - yyv1459 := &x.SupplementalGroups - yyv1459.CodecDecodeSelf(d) + yyv1510 := &x.SupplementalGroups + yyv1510.CodecDecodeSelf(d) } - yyj1442++ - if yyhl1442 { - yyb1442 = yyj1442 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1442 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1442 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17222,16 +17771,16 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.FSGroup = FSGroupStrategyOptions{} } else { - yyv1460 := &x.FSGroup - yyv1460.CodecDecodeSelf(d) + yyv1511 := &x.FSGroup + yyv1511.CodecDecodeSelf(d) } - yyj1442++ - if yyhl1442 { - yyb1442 = yyj1442 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1442 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1442 { + if yyb1493 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17242,17 +17791,17 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.ReadOnlyRootFilesystem = bool(r.DecodeBool()) } for { - yyj1442++ - if yyhl1442 { - yyb1442 = yyj1442 > l + yyj1493++ + if yyhl1493 { + yyb1493 = yyj1493 > l } else { - yyb1442 = r.CheckBreak() + yyb1493 = r.CheckBreak() } - if yyb1442 { + if yyb1493 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1442-1, "") + z.DecStructFieldNotFound(yyj1493-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17261,8 +17810,8 @@ func (x FSType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1462 := z.EncBinary() - _ = yym1462 + yym1513 := z.EncBinary() + _ = yym1513 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -17274,8 +17823,8 @@ func (x *FSType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1463 := z.DecBinary() - _ = yym1463 + yym1514 := z.DecBinary() + _ = yym1514 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -17290,33 +17839,33 @@ func (x *HostPortRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1464 := z.EncBinary() - _ = yym1464 + yym1515 := z.EncBinary() + _ = yym1515 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1465 := !z.EncBinary() - yy2arr1465 := z.EncBasicHandle().StructToArray - var yyq1465 [2]bool - _, _, _ = yysep1465, yyq1465, yy2arr1465 - const yyr1465 bool = false - var yynn1465 int - if yyr1465 || yy2arr1465 { + yysep1516 := !z.EncBinary() + yy2arr1516 := z.EncBasicHandle().StructToArray + var yyq1516 [2]bool + _, _, _ = yysep1516, yyq1516, yy2arr1516 + const yyr1516 bool = false + var yynn1516 int + if yyr1516 || yy2arr1516 { r.EncodeArrayStart(2) } else { - yynn1465 = 2 - for _, b := range yyq1465 { + yynn1516 = 2 + for _, b := range yyq1516 { if b { - yynn1465++ + yynn1516++ } } - r.EncodeMapStart(yynn1465) - yynn1465 = 0 + r.EncodeMapStart(yynn1516) + yynn1516 = 0 } - if yyr1465 || yy2arr1465 { + if yyr1516 || yy2arr1516 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1467 := z.EncBinary() - _ = yym1467 + yym1518 := z.EncBinary() + _ = yym1518 if false { } else { r.EncodeInt(int64(x.Min)) @@ -17325,17 +17874,17 @@ func (x *HostPortRange) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1468 := z.EncBinary() - _ = yym1468 + yym1519 := z.EncBinary() + _ = yym1519 if false { } else { r.EncodeInt(int64(x.Min)) } } - if yyr1465 || yy2arr1465 { + if yyr1516 || yy2arr1516 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1470 := z.EncBinary() - _ = yym1470 + yym1521 := z.EncBinary() + _ = yym1521 if false { } else { r.EncodeInt(int64(x.Max)) @@ -17344,14 +17893,14 @@ func (x *HostPortRange) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1471 := z.EncBinary() - _ = yym1471 + yym1522 := z.EncBinary() + _ = yym1522 if false { } else { r.EncodeInt(int64(x.Max)) } } - if yyr1465 || yy2arr1465 { + if yyr1516 || yy2arr1516 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17364,25 +17913,25 @@ func (x *HostPortRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1472 := z.DecBinary() - _ = yym1472 + yym1523 := z.DecBinary() + _ = yym1523 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1473 := r.ContainerType() - if yyct1473 == codecSelferValueTypeMap1234 { - yyl1473 := r.ReadMapStart() - if yyl1473 == 0 { + yyct1524 := r.ContainerType() + if yyct1524 == codecSelferValueTypeMap1234 { + yyl1524 := r.ReadMapStart() + if yyl1524 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1473, d) + x.codecDecodeSelfFromMap(yyl1524, d) } - } else if yyct1473 == codecSelferValueTypeArray1234 { - yyl1473 := r.ReadArrayStart() - if yyl1473 == 0 { + } else if yyct1524 == codecSelferValueTypeArray1234 { + yyl1524 := r.ReadArrayStart() + if yyl1524 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1473, d) + x.codecDecodeSelfFromArray(yyl1524, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17394,12 +17943,12 @@ func (x *HostPortRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1474Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1474Slc - var yyhl1474 bool = l >= 0 - for yyj1474 := 0; ; yyj1474++ { - if yyhl1474 { - if yyj1474 >= l { + var yys1525Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1525Slc + var yyhl1525 bool = l >= 0 + for yyj1525 := 0; ; yyj1525++ { + if yyhl1525 { + if yyj1525 >= l { break } } else { @@ -17408,10 +17957,10 @@ func (x *HostPortRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1474Slc = r.DecodeBytes(yys1474Slc, true, true) - yys1474 := string(yys1474Slc) + yys1525Slc = r.DecodeBytes(yys1525Slc, true, true) + yys1525 := string(yys1525Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1474 { + switch yys1525 { case "min": if r.TryDecodeAsNil() { x.Min = 0 @@ -17425,9 +17974,9 @@ func (x *HostPortRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Max = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys1474) - } // end switch yys1474 - } // end for yyj1474 + z.DecStructFieldNotFound(-1, yys1525) + } // end switch yys1525 + } // end for yyj1525 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17435,16 +17984,16 @@ func (x *HostPortRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1477 int - var yyb1477 bool - var yyhl1477 bool = l >= 0 - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + var yyj1528 int + var yyb1528 bool + var yyhl1528 bool = l >= 0 + yyj1528++ + if yyhl1528 { + yyb1528 = yyj1528 > l } else { - yyb1477 = r.CheckBreak() + yyb1528 = r.CheckBreak() } - if yyb1477 { + if yyb1528 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17454,13 +18003,13 @@ func (x *HostPortRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Min = int32(r.DecodeInt(32)) } - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + yyj1528++ + if yyhl1528 { + yyb1528 = yyj1528 > l } else { - yyb1477 = r.CheckBreak() + yyb1528 = r.CheckBreak() } - if yyb1477 { + if yyb1528 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17471,17 +18020,17 @@ func (x *HostPortRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Max = int32(r.DecodeInt(32)) } for { - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + yyj1528++ + if yyhl1528 { + yyb1528 = yyj1528 > l } else { - yyb1477 = r.CheckBreak() + yyb1528 = r.CheckBreak() } - if yyb1477 { + if yyb1528 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1477-1, "") + z.DecStructFieldNotFound(yyj1528-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17493,31 +18042,31 @@ func (x *SELinuxStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1480 := z.EncBinary() - _ = yym1480 + yym1531 := z.EncBinary() + _ = yym1531 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1481 := !z.EncBinary() - yy2arr1481 := z.EncBasicHandle().StructToArray - var yyq1481 [2]bool - _, _, _ = yysep1481, yyq1481, yy2arr1481 - const yyr1481 bool = false - yyq1481[1] = x.SELinuxOptions != nil - var yynn1481 int - if yyr1481 || yy2arr1481 { + yysep1532 := !z.EncBinary() + yy2arr1532 := z.EncBasicHandle().StructToArray + var yyq1532 [2]bool + _, _, _ = yysep1532, yyq1532, yy2arr1532 + const yyr1532 bool = false + yyq1532[1] = x.SELinuxOptions != nil + var yynn1532 int + if yyr1532 || yy2arr1532 { r.EncodeArrayStart(2) } else { - yynn1481 = 1 - for _, b := range yyq1481 { + yynn1532 = 1 + for _, b := range yyq1532 { if b { - yynn1481++ + yynn1532++ } } - r.EncodeMapStart(yynn1481) - yynn1481 = 0 + r.EncodeMapStart(yynn1532) + yynn1532 = 0 } - if yyr1481 || yy2arr1481 { + if yyr1532 || yy2arr1532 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Rule.CodecEncodeSelf(e) } else { @@ -17526,9 +18075,9 @@ func (x *SELinuxStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Rule.CodecEncodeSelf(e) } - if yyr1481 || yy2arr1481 { + if yyr1532 || yy2arr1532 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1481[1] { + if yyq1532[1] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -17538,7 +18087,7 @@ func (x *SELinuxStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1481[1] { + if yyq1532[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17549,7 +18098,7 @@ func (x *SELinuxStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1481 || yy2arr1481 { + if yyr1532 || yy2arr1532 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17562,25 +18111,25 @@ func (x *SELinuxStrategyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1484 := z.DecBinary() - _ = yym1484 + yym1535 := z.DecBinary() + _ = yym1535 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1485 := r.ContainerType() - if yyct1485 == codecSelferValueTypeMap1234 { - yyl1485 := r.ReadMapStart() - if yyl1485 == 0 { + yyct1536 := r.ContainerType() + if yyct1536 == codecSelferValueTypeMap1234 { + yyl1536 := r.ReadMapStart() + if yyl1536 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1485, d) + x.codecDecodeSelfFromMap(yyl1536, d) } - } else if yyct1485 == codecSelferValueTypeArray1234 { - yyl1485 := r.ReadArrayStart() - if yyl1485 == 0 { + } else if yyct1536 == codecSelferValueTypeArray1234 { + yyl1536 := r.ReadArrayStart() + if yyl1536 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1485, d) + x.codecDecodeSelfFromArray(yyl1536, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17592,12 +18141,12 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1486Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1486Slc - var yyhl1486 bool = l >= 0 - for yyj1486 := 0; ; yyj1486++ { - if yyhl1486 { - if yyj1486 >= l { + var yys1537Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1537Slc + var yyhl1537 bool = l >= 0 + for yyj1537 := 0; ; yyj1537++ { + if yyhl1537 { + if yyj1537 >= l { break } } else { @@ -17606,10 +18155,10 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1486Slc = r.DecodeBytes(yys1486Slc, true, true) - yys1486 := string(yys1486Slc) + yys1537Slc = r.DecodeBytes(yys1537Slc, true, true) + yys1537 := string(yys1537Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1486 { + switch yys1537 { case "rule": if r.TryDecodeAsNil() { x.Rule = "" @@ -17628,9 +18177,9 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco x.SELinuxOptions.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1486) - } // end switch yys1486 - } // end for yyj1486 + z.DecStructFieldNotFound(-1, yys1537) + } // end switch yys1537 + } // end for yyj1537 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17638,16 +18187,16 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1489 int - var yyb1489 bool - var yyhl1489 bool = l >= 0 - yyj1489++ - if yyhl1489 { - yyb1489 = yyj1489 > l + var yyj1540 int + var yyb1540 bool + var yyhl1540 bool = l >= 0 + yyj1540++ + if yyhl1540 { + yyb1540 = yyj1540 > l } else { - yyb1489 = r.CheckBreak() + yyb1540 = r.CheckBreak() } - if yyb1489 { + if yyb1540 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17657,13 +18206,13 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Rule = SELinuxStrategy(r.DecodeString()) } - yyj1489++ - if yyhl1489 { - yyb1489 = yyj1489 > l + yyj1540++ + if yyhl1540 { + yyb1540 = yyj1540 > l } else { - yyb1489 = r.CheckBreak() + yyb1540 = r.CheckBreak() } - if yyb1489 { + if yyb1540 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17679,17 +18228,17 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De x.SELinuxOptions.CodecDecodeSelf(d) } for { - yyj1489++ - if yyhl1489 { - yyb1489 = yyj1489 > l + yyj1540++ + if yyhl1540 { + yyb1540 = yyj1540 > l } else { - yyb1489 = r.CheckBreak() + yyb1540 = r.CheckBreak() } - if yyb1489 { + if yyb1540 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1489-1, "") + z.DecStructFieldNotFound(yyj1540-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17698,8 +18247,8 @@ func (x SELinuxStrategy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1492 := z.EncBinary() - _ = yym1492 + yym1543 := z.EncBinary() + _ = yym1543 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -17711,8 +18260,8 @@ func (x *SELinuxStrategy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1493 := z.DecBinary() - _ = yym1493 + yym1544 := z.DecBinary() + _ = yym1544 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -17727,31 +18276,31 @@ func (x *RunAsUserStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1494 := z.EncBinary() - _ = yym1494 + yym1545 := z.EncBinary() + _ = yym1545 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1495 := !z.EncBinary() - yy2arr1495 := z.EncBasicHandle().StructToArray - var yyq1495 [2]bool - _, _, _ = yysep1495, yyq1495, yy2arr1495 - const yyr1495 bool = false - yyq1495[1] = len(x.Ranges) != 0 - var yynn1495 int - if yyr1495 || yy2arr1495 { + yysep1546 := !z.EncBinary() + yy2arr1546 := z.EncBasicHandle().StructToArray + var yyq1546 [2]bool + _, _, _ = yysep1546, yyq1546, yy2arr1546 + const yyr1546 bool = false + yyq1546[1] = len(x.Ranges) != 0 + var yynn1546 int + if yyr1546 || yy2arr1546 { r.EncodeArrayStart(2) } else { - yynn1495 = 1 - for _, b := range yyq1495 { + yynn1546 = 1 + for _, b := range yyq1546 { if b { - yynn1495++ + yynn1546++ } } - r.EncodeMapStart(yynn1495) - yynn1495 = 0 + r.EncodeMapStart(yynn1546) + yynn1546 = 0 } - if yyr1495 || yy2arr1495 { + if yyr1546 || yy2arr1546 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Rule.CodecEncodeSelf(e) } else { @@ -17760,14 +18309,14 @@ func (x *RunAsUserStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Rule.CodecEncodeSelf(e) } - if yyr1495 || yy2arr1495 { + if yyr1546 || yy2arr1546 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1495[1] { + if yyq1546[1] { if x.Ranges == nil { r.EncodeNil() } else { - yym1498 := z.EncBinary() - _ = yym1498 + yym1549 := z.EncBinary() + _ = yym1549 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -17777,15 +18326,15 @@ func (x *RunAsUserStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1495[1] { + if yyq1546[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ranges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ranges == nil { r.EncodeNil() } else { - yym1499 := z.EncBinary() - _ = yym1499 + yym1550 := z.EncBinary() + _ = yym1550 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -17793,7 +18342,7 @@ func (x *RunAsUserStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1495 || yy2arr1495 { + if yyr1546 || yy2arr1546 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17806,25 +18355,25 @@ func (x *RunAsUserStrategyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1500 := z.DecBinary() - _ = yym1500 + yym1551 := z.DecBinary() + _ = yym1551 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1501 := r.ContainerType() - if yyct1501 == codecSelferValueTypeMap1234 { - yyl1501 := r.ReadMapStart() - if yyl1501 == 0 { + yyct1552 := r.ContainerType() + if yyct1552 == codecSelferValueTypeMap1234 { + yyl1552 := r.ReadMapStart() + if yyl1552 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1501, d) + x.codecDecodeSelfFromMap(yyl1552, d) } - } else if yyct1501 == codecSelferValueTypeArray1234 { - yyl1501 := r.ReadArrayStart() - if yyl1501 == 0 { + } else if yyct1552 == codecSelferValueTypeArray1234 { + yyl1552 := r.ReadArrayStart() + if yyl1552 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1501, d) + x.codecDecodeSelfFromArray(yyl1552, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17836,12 +18385,12 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1502Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1502Slc - var yyhl1502 bool = l >= 0 - for yyj1502 := 0; ; yyj1502++ { - if yyhl1502 { - if yyj1502 >= l { + var yys1553Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1553Slc + var yyhl1553 bool = l >= 0 + for yyj1553 := 0; ; yyj1553++ { + if yyhl1553 { + if yyj1553 >= l { break } } else { @@ -17850,10 +18399,10 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1502Slc = r.DecodeBytes(yys1502Slc, true, true) - yys1502 := string(yys1502Slc) + yys1553Slc = r.DecodeBytes(yys1553Slc, true, true) + yys1553 := string(yys1553Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1502 { + switch yys1553 { case "rule": if r.TryDecodeAsNil() { x.Rule = "" @@ -17864,18 +18413,18 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.De if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1504 := &x.Ranges - yym1505 := z.DecBinary() - _ = yym1505 + yyv1555 := &x.Ranges + yym1556 := z.DecBinary() + _ = yym1556 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1504), d) + h.decSliceIDRange((*[]IDRange)(yyv1555), d) } } default: - z.DecStructFieldNotFound(-1, yys1502) - } // end switch yys1502 - } // end for yyj1502 + z.DecStructFieldNotFound(-1, yys1553) + } // end switch yys1553 + } // end for yyj1553 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17883,16 +18432,16 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1506 int - var yyb1506 bool - var yyhl1506 bool = l >= 0 - yyj1506++ - if yyhl1506 { - yyb1506 = yyj1506 > l + var yyj1557 int + var yyb1557 bool + var yyhl1557 bool = l >= 0 + yyj1557++ + if yyhl1557 { + yyb1557 = yyj1557 > l } else { - yyb1506 = r.CheckBreak() + yyb1557 = r.CheckBreak() } - if yyb1506 { + if yyb1557 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17902,13 +18451,13 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Rule = RunAsUserStrategy(r.DecodeString()) } - yyj1506++ - if yyhl1506 { - yyb1506 = yyj1506 > l + yyj1557++ + if yyhl1557 { + yyb1557 = yyj1557 > l } else { - yyb1506 = r.CheckBreak() + yyb1557 = r.CheckBreak() } - if yyb1506 { + if yyb1557 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17916,26 +18465,26 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1508 := &x.Ranges - yym1509 := z.DecBinary() - _ = yym1509 + yyv1559 := &x.Ranges + yym1560 := z.DecBinary() + _ = yym1560 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1508), d) + h.decSliceIDRange((*[]IDRange)(yyv1559), d) } } for { - yyj1506++ - if yyhl1506 { - yyb1506 = yyj1506 > l + yyj1557++ + if yyhl1557 { + yyb1557 = yyj1557 > l } else { - yyb1506 = r.CheckBreak() + yyb1557 = r.CheckBreak() } - if yyb1506 { + if yyb1557 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1506-1, "") + z.DecStructFieldNotFound(yyj1557-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17947,33 +18496,33 @@ func (x *IDRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1510 := z.EncBinary() - _ = yym1510 + yym1561 := z.EncBinary() + _ = yym1561 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1511 := !z.EncBinary() - yy2arr1511 := z.EncBasicHandle().StructToArray - var yyq1511 [2]bool - _, _, _ = yysep1511, yyq1511, yy2arr1511 - const yyr1511 bool = false - var yynn1511 int - if yyr1511 || yy2arr1511 { + yysep1562 := !z.EncBinary() + yy2arr1562 := z.EncBasicHandle().StructToArray + var yyq1562 [2]bool + _, _, _ = yysep1562, yyq1562, yy2arr1562 + const yyr1562 bool = false + var yynn1562 int + if yyr1562 || yy2arr1562 { r.EncodeArrayStart(2) } else { - yynn1511 = 2 - for _, b := range yyq1511 { + yynn1562 = 2 + for _, b := range yyq1562 { if b { - yynn1511++ + yynn1562++ } } - r.EncodeMapStart(yynn1511) - yynn1511 = 0 + r.EncodeMapStart(yynn1562) + yynn1562 = 0 } - if yyr1511 || yy2arr1511 { + if yyr1562 || yy2arr1562 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1513 := z.EncBinary() - _ = yym1513 + yym1564 := z.EncBinary() + _ = yym1564 if false { } else { r.EncodeInt(int64(x.Min)) @@ -17982,17 +18531,17 @@ func (x *IDRange) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1514 := z.EncBinary() - _ = yym1514 + yym1565 := z.EncBinary() + _ = yym1565 if false { } else { r.EncodeInt(int64(x.Min)) } } - if yyr1511 || yy2arr1511 { + if yyr1562 || yy2arr1562 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1516 := z.EncBinary() - _ = yym1516 + yym1567 := z.EncBinary() + _ = yym1567 if false { } else { r.EncodeInt(int64(x.Max)) @@ -18001,14 +18550,14 @@ func (x *IDRange) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1517 := z.EncBinary() - _ = yym1517 + yym1568 := z.EncBinary() + _ = yym1568 if false { } else { r.EncodeInt(int64(x.Max)) } } - if yyr1511 || yy2arr1511 { + if yyr1562 || yy2arr1562 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18021,25 +18570,25 @@ func (x *IDRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1518 := z.DecBinary() - _ = yym1518 + yym1569 := z.DecBinary() + _ = yym1569 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1519 := r.ContainerType() - if yyct1519 == codecSelferValueTypeMap1234 { - yyl1519 := r.ReadMapStart() - if yyl1519 == 0 { + yyct1570 := r.ContainerType() + if yyct1570 == codecSelferValueTypeMap1234 { + yyl1570 := r.ReadMapStart() + if yyl1570 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1519, d) + x.codecDecodeSelfFromMap(yyl1570, d) } - } else if yyct1519 == codecSelferValueTypeArray1234 { - yyl1519 := r.ReadArrayStart() - if yyl1519 == 0 { + } else if yyct1570 == codecSelferValueTypeArray1234 { + yyl1570 := r.ReadArrayStart() + if yyl1570 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1519, d) + x.codecDecodeSelfFromArray(yyl1570, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18051,12 +18600,12 @@ func (x *IDRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1520Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1520Slc - var yyhl1520 bool = l >= 0 - for yyj1520 := 0; ; yyj1520++ { - if yyhl1520 { - if yyj1520 >= l { + var yys1571Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1571Slc + var yyhl1571 bool = l >= 0 + for yyj1571 := 0; ; yyj1571++ { + if yyhl1571 { + if yyj1571 >= l { break } } else { @@ -18065,10 +18614,10 @@ func (x *IDRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1520Slc = r.DecodeBytes(yys1520Slc, true, true) - yys1520 := string(yys1520Slc) + yys1571Slc = r.DecodeBytes(yys1571Slc, true, true) + yys1571 := string(yys1571Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1520 { + switch yys1571 { case "min": if r.TryDecodeAsNil() { x.Min = 0 @@ -18082,9 +18631,9 @@ func (x *IDRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Max = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys1520) - } // end switch yys1520 - } // end for yyj1520 + z.DecStructFieldNotFound(-1, yys1571) + } // end switch yys1571 + } // end for yyj1571 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18092,16 +18641,16 @@ func (x *IDRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1523 int - var yyb1523 bool - var yyhl1523 bool = l >= 0 - yyj1523++ - if yyhl1523 { - yyb1523 = yyj1523 > l + var yyj1574 int + var yyb1574 bool + var yyhl1574 bool = l >= 0 + yyj1574++ + if yyhl1574 { + yyb1574 = yyj1574 > l } else { - yyb1523 = r.CheckBreak() + yyb1574 = r.CheckBreak() } - if yyb1523 { + if yyb1574 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18111,13 +18660,13 @@ func (x *IDRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Min = int64(r.DecodeInt(64)) } - yyj1523++ - if yyhl1523 { - yyb1523 = yyj1523 > l + yyj1574++ + if yyhl1574 { + yyb1574 = yyj1574 > l } else { - yyb1523 = r.CheckBreak() + yyb1574 = r.CheckBreak() } - if yyb1523 { + if yyb1574 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18128,17 +18677,17 @@ func (x *IDRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Max = int64(r.DecodeInt(64)) } for { - yyj1523++ - if yyhl1523 { - yyb1523 = yyj1523 > l + yyj1574++ + if yyhl1574 { + yyb1574 = yyj1574 > l } else { - yyb1523 = r.CheckBreak() + yyb1574 = r.CheckBreak() } - if yyb1523 { + if yyb1574 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1523-1, "") + z.DecStructFieldNotFound(yyj1574-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18147,8 +18696,8 @@ func (x RunAsUserStrategy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1526 := z.EncBinary() - _ = yym1526 + yym1577 := z.EncBinary() + _ = yym1577 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18160,8 +18709,8 @@ func (x *RunAsUserStrategy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1527 := z.DecBinary() - _ = yym1527 + yym1578 := z.DecBinary() + _ = yym1578 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18176,54 +18725,54 @@ func (x *FSGroupStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1528 := z.EncBinary() - _ = yym1528 + yym1579 := z.EncBinary() + _ = yym1579 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1529 := !z.EncBinary() - yy2arr1529 := z.EncBasicHandle().StructToArray - var yyq1529 [2]bool - _, _, _ = yysep1529, yyq1529, yy2arr1529 - const yyr1529 bool = false - yyq1529[0] = x.Rule != "" - yyq1529[1] = len(x.Ranges) != 0 - var yynn1529 int - if yyr1529 || yy2arr1529 { + yysep1580 := !z.EncBinary() + yy2arr1580 := z.EncBasicHandle().StructToArray + var yyq1580 [2]bool + _, _, _ = yysep1580, yyq1580, yy2arr1580 + const yyr1580 bool = false + yyq1580[0] = x.Rule != "" + yyq1580[1] = len(x.Ranges) != 0 + var yynn1580 int + if yyr1580 || yy2arr1580 { r.EncodeArrayStart(2) } else { - yynn1529 = 0 - for _, b := range yyq1529 { + yynn1580 = 0 + for _, b := range yyq1580 { if b { - yynn1529++ + yynn1580++ } } - r.EncodeMapStart(yynn1529) - yynn1529 = 0 + r.EncodeMapStart(yynn1580) + yynn1580 = 0 } - if yyr1529 || yy2arr1529 { + if yyr1580 || yy2arr1580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1529[0] { + if yyq1580[0] { x.Rule.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1529[0] { + if yyq1580[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rule")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Rule.CodecEncodeSelf(e) } } - if yyr1529 || yy2arr1529 { + if yyr1580 || yy2arr1580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1529[1] { + if yyq1580[1] { if x.Ranges == nil { r.EncodeNil() } else { - yym1532 := z.EncBinary() - _ = yym1532 + yym1583 := z.EncBinary() + _ = yym1583 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -18233,15 +18782,15 @@ func (x *FSGroupStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1529[1] { + if yyq1580[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ranges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ranges == nil { r.EncodeNil() } else { - yym1533 := z.EncBinary() - _ = yym1533 + yym1584 := z.EncBinary() + _ = yym1584 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -18249,7 +18798,7 @@ func (x *FSGroupStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1529 || yy2arr1529 { + if yyr1580 || yy2arr1580 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18262,25 +18811,25 @@ func (x *FSGroupStrategyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1534 := z.DecBinary() - _ = yym1534 + yym1585 := z.DecBinary() + _ = yym1585 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1535 := r.ContainerType() - if yyct1535 == codecSelferValueTypeMap1234 { - yyl1535 := r.ReadMapStart() - if yyl1535 == 0 { + yyct1586 := r.ContainerType() + if yyct1586 == codecSelferValueTypeMap1234 { + yyl1586 := r.ReadMapStart() + if yyl1586 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1535, d) + x.codecDecodeSelfFromMap(yyl1586, d) } - } else if yyct1535 == codecSelferValueTypeArray1234 { - yyl1535 := r.ReadArrayStart() - if yyl1535 == 0 { + } else if yyct1586 == codecSelferValueTypeArray1234 { + yyl1586 := r.ReadArrayStart() + if yyl1586 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1535, d) + x.codecDecodeSelfFromArray(yyl1586, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18292,12 +18841,12 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1536Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1536Slc - var yyhl1536 bool = l >= 0 - for yyj1536 := 0; ; yyj1536++ { - if yyhl1536 { - if yyj1536 >= l { + var yys1587Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1587Slc + var yyhl1587 bool = l >= 0 + for yyj1587 := 0; ; yyj1587++ { + if yyhl1587 { + if yyj1587 >= l { break } } else { @@ -18306,10 +18855,10 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1536Slc = r.DecodeBytes(yys1536Slc, true, true) - yys1536 := string(yys1536Slc) + yys1587Slc = r.DecodeBytes(yys1587Slc, true, true) + yys1587 := string(yys1587Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1536 { + switch yys1587 { case "rule": if r.TryDecodeAsNil() { x.Rule = "" @@ -18320,18 +18869,18 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1538 := &x.Ranges - yym1539 := z.DecBinary() - _ = yym1539 + yyv1589 := &x.Ranges + yym1590 := z.DecBinary() + _ = yym1590 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1538), d) + h.decSliceIDRange((*[]IDRange)(yyv1589), d) } } default: - z.DecStructFieldNotFound(-1, yys1536) - } // end switch yys1536 - } // end for yyj1536 + z.DecStructFieldNotFound(-1, yys1587) + } // end switch yys1587 + } // end for yyj1587 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18339,16 +18888,16 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1540 int - var yyb1540 bool - var yyhl1540 bool = l >= 0 - yyj1540++ - if yyhl1540 { - yyb1540 = yyj1540 > l + var yyj1591 int + var yyb1591 bool + var yyhl1591 bool = l >= 0 + yyj1591++ + if yyhl1591 { + yyb1591 = yyj1591 > l } else { - yyb1540 = r.CheckBreak() + yyb1591 = r.CheckBreak() } - if yyb1540 { + if yyb1591 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18358,13 +18907,13 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Rule = FSGroupStrategyType(r.DecodeString()) } - yyj1540++ - if yyhl1540 { - yyb1540 = yyj1540 > l + yyj1591++ + if yyhl1591 { + yyb1591 = yyj1591 > l } else { - yyb1540 = r.CheckBreak() + yyb1591 = r.CheckBreak() } - if yyb1540 { + if yyb1591 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18372,26 +18921,26 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1542 := &x.Ranges - yym1543 := z.DecBinary() - _ = yym1543 + yyv1593 := &x.Ranges + yym1594 := z.DecBinary() + _ = yym1594 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1542), d) + h.decSliceIDRange((*[]IDRange)(yyv1593), d) } } for { - yyj1540++ - if yyhl1540 { - yyb1540 = yyj1540 > l + yyj1591++ + if yyhl1591 { + yyb1591 = yyj1591 > l } else { - yyb1540 = r.CheckBreak() + yyb1591 = r.CheckBreak() } - if yyb1540 { + if yyb1591 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1540-1, "") + z.DecStructFieldNotFound(yyj1591-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18400,8 +18949,8 @@ func (x FSGroupStrategyType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1544 := z.EncBinary() - _ = yym1544 + yym1595 := z.EncBinary() + _ = yym1595 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18413,8 +18962,8 @@ func (x *FSGroupStrategyType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1545 := z.DecBinary() - _ = yym1545 + yym1596 := z.DecBinary() + _ = yym1596 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18429,54 +18978,54 @@ func (x *SupplementalGroupsStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder if x == nil { r.EncodeNil() } else { - yym1546 := z.EncBinary() - _ = yym1546 + yym1597 := z.EncBinary() + _ = yym1597 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1547 := !z.EncBinary() - yy2arr1547 := z.EncBasicHandle().StructToArray - var yyq1547 [2]bool - _, _, _ = yysep1547, yyq1547, yy2arr1547 - const yyr1547 bool = false - yyq1547[0] = x.Rule != "" - yyq1547[1] = len(x.Ranges) != 0 - var yynn1547 int - if yyr1547 || yy2arr1547 { + yysep1598 := !z.EncBinary() + yy2arr1598 := z.EncBasicHandle().StructToArray + var yyq1598 [2]bool + _, _, _ = yysep1598, yyq1598, yy2arr1598 + const yyr1598 bool = false + yyq1598[0] = x.Rule != "" + yyq1598[1] = len(x.Ranges) != 0 + var yynn1598 int + if yyr1598 || yy2arr1598 { r.EncodeArrayStart(2) } else { - yynn1547 = 0 - for _, b := range yyq1547 { + yynn1598 = 0 + for _, b := range yyq1598 { if b { - yynn1547++ + yynn1598++ } } - r.EncodeMapStart(yynn1547) - yynn1547 = 0 + r.EncodeMapStart(yynn1598) + yynn1598 = 0 } - if yyr1547 || yy2arr1547 { + if yyr1598 || yy2arr1598 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1547[0] { + if yyq1598[0] { x.Rule.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1547[0] { + if yyq1598[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rule")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Rule.CodecEncodeSelf(e) } } - if yyr1547 || yy2arr1547 { + if yyr1598 || yy2arr1598 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1547[1] { + if yyq1598[1] { if x.Ranges == nil { r.EncodeNil() } else { - yym1550 := z.EncBinary() - _ = yym1550 + yym1601 := z.EncBinary() + _ = yym1601 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -18486,15 +19035,15 @@ func (x *SupplementalGroupsStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder r.EncodeNil() } } else { - if yyq1547[1] { + if yyq1598[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ranges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ranges == nil { r.EncodeNil() } else { - yym1551 := z.EncBinary() - _ = yym1551 + yym1602 := z.EncBinary() + _ = yym1602 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -18502,7 +19051,7 @@ func (x *SupplementalGroupsStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder } } } - if yyr1547 || yy2arr1547 { + if yyr1598 || yy2arr1598 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18515,25 +19064,25 @@ func (x *SupplementalGroupsStrategyOptions) CodecDecodeSelf(d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1552 := z.DecBinary() - _ = yym1552 + yym1603 := z.DecBinary() + _ = yym1603 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1553 := r.ContainerType() - if yyct1553 == codecSelferValueTypeMap1234 { - yyl1553 := r.ReadMapStart() - if yyl1553 == 0 { + yyct1604 := r.ContainerType() + if yyct1604 == codecSelferValueTypeMap1234 { + yyl1604 := r.ReadMapStart() + if yyl1604 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1553, d) + x.codecDecodeSelfFromMap(yyl1604, d) } - } else if yyct1553 == codecSelferValueTypeArray1234 { - yyl1553 := r.ReadArrayStart() - if yyl1553 == 0 { + } else if yyct1604 == codecSelferValueTypeArray1234 { + yyl1604 := r.ReadArrayStart() + if yyl1604 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1553, d) + x.codecDecodeSelfFromArray(yyl1604, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18545,12 +19094,12 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromMap(l int, d *cod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1554Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1554Slc - var yyhl1554 bool = l >= 0 - for yyj1554 := 0; ; yyj1554++ { - if yyhl1554 { - if yyj1554 >= l { + var yys1605Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1605Slc + var yyhl1605 bool = l >= 0 + for yyj1605 := 0; ; yyj1605++ { + if yyhl1605 { + if yyj1605 >= l { break } } else { @@ -18559,10 +19108,10 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromMap(l int, d *cod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1554Slc = r.DecodeBytes(yys1554Slc, true, true) - yys1554 := string(yys1554Slc) + yys1605Slc = r.DecodeBytes(yys1605Slc, true, true) + yys1605 := string(yys1605Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1554 { + switch yys1605 { case "rule": if r.TryDecodeAsNil() { x.Rule = "" @@ -18573,18 +19122,18 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromMap(l int, d *cod if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1556 := &x.Ranges - yym1557 := z.DecBinary() - _ = yym1557 + yyv1607 := &x.Ranges + yym1608 := z.DecBinary() + _ = yym1608 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1556), d) + h.decSliceIDRange((*[]IDRange)(yyv1607), d) } } default: - z.DecStructFieldNotFound(-1, yys1554) - } // end switch yys1554 - } // end for yyj1554 + z.DecStructFieldNotFound(-1, yys1605) + } // end switch yys1605 + } // end for yyj1605 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18592,16 +19141,16 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromArray(l int, d *c var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1558 int - var yyb1558 bool - var yyhl1558 bool = l >= 0 - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + var yyj1609 int + var yyb1609 bool + var yyhl1609 bool = l >= 0 + yyj1609++ + if yyhl1609 { + yyb1609 = yyj1609 > l } else { - yyb1558 = r.CheckBreak() + yyb1609 = r.CheckBreak() } - if yyb1558 { + if yyb1609 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18611,13 +19160,13 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromArray(l int, d *c } else { x.Rule = SupplementalGroupsStrategyType(r.DecodeString()) } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1609++ + if yyhl1609 { + yyb1609 = yyj1609 > l } else { - yyb1558 = r.CheckBreak() + yyb1609 = r.CheckBreak() } - if yyb1558 { + if yyb1609 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18625,26 +19174,26 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromArray(l int, d *c if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1560 := &x.Ranges - yym1561 := z.DecBinary() - _ = yym1561 + yyv1611 := &x.Ranges + yym1612 := z.DecBinary() + _ = yym1612 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1560), d) + h.decSliceIDRange((*[]IDRange)(yyv1611), d) } } for { - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1609++ + if yyhl1609 { + yyb1609 = yyj1609 > l } else { - yyb1558 = r.CheckBreak() + yyb1609 = r.CheckBreak() } - if yyb1558 { + if yyb1609 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1558-1, "") + z.DecStructFieldNotFound(yyj1609-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18653,8 +19202,8 @@ func (x SupplementalGroupsStrategyType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1562 := z.EncBinary() - _ = yym1562 + yym1613 := z.EncBinary() + _ = yym1613 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18666,8 +19215,8 @@ func (x *SupplementalGroupsStrategyType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1563 := z.DecBinary() - _ = yym1563 + yym1614 := z.DecBinary() + _ = yym1614 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18682,37 +19231,37 @@ func (x *PodSecurityPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1564 := z.EncBinary() - _ = yym1564 + yym1615 := z.EncBinary() + _ = yym1615 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1565 := !z.EncBinary() - yy2arr1565 := z.EncBasicHandle().StructToArray - var yyq1565 [4]bool - _, _, _ = yysep1565, yyq1565, yy2arr1565 - const yyr1565 bool = false - yyq1565[0] = x.Kind != "" - yyq1565[1] = x.APIVersion != "" - yyq1565[2] = true - var yynn1565 int - if yyr1565 || yy2arr1565 { + yysep1616 := !z.EncBinary() + yy2arr1616 := z.EncBasicHandle().StructToArray + var yyq1616 [4]bool + _, _, _ = yysep1616, yyq1616, yy2arr1616 + const yyr1616 bool = false + yyq1616[0] = x.Kind != "" + yyq1616[1] = x.APIVersion != "" + yyq1616[2] = true + var yynn1616 int + if yyr1616 || yy2arr1616 { r.EncodeArrayStart(4) } else { - yynn1565 = 1 - for _, b := range yyq1565 { + yynn1616 = 1 + for _, b := range yyq1616 { if b { - yynn1565++ + yynn1616++ } } - r.EncodeMapStart(yynn1565) - yynn1565 = 0 + r.EncodeMapStart(yynn1616) + yynn1616 = 0 } - if yyr1565 || yy2arr1565 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1565[0] { - yym1567 := z.EncBinary() - _ = yym1567 + if yyq1616[0] { + yym1618 := z.EncBinary() + _ = yym1618 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -18721,23 +19270,23 @@ func (x *PodSecurityPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1565[0] { + if yyq1616[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1568 := z.EncBinary() - _ = yym1568 + yym1619 := z.EncBinary() + _ = yym1619 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1565 || yy2arr1565 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1565[1] { - yym1570 := z.EncBinary() - _ = yym1570 + if yyq1616[1] { + yym1621 := z.EncBinary() + _ = yym1621 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -18746,54 +19295,54 @@ func (x *PodSecurityPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1565[1] { + if yyq1616[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1571 := z.EncBinary() - _ = yym1571 + yym1622 := z.EncBinary() + _ = yym1622 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1565 || yy2arr1565 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1565[2] { - yy1573 := &x.ListMeta - yym1574 := z.EncBinary() - _ = yym1574 + if yyq1616[2] { + yy1624 := &x.ListMeta + yym1625 := z.EncBinary() + _ = yym1625 if false { - } else if z.HasExtensions() && z.EncExt(yy1573) { + } else if z.HasExtensions() && z.EncExt(yy1624) { } else { - z.EncFallback(yy1573) + z.EncFallback(yy1624) } } else { r.EncodeNil() } } else { - if yyq1565[2] { + if yyq1616[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1575 := &x.ListMeta - yym1576 := z.EncBinary() - _ = yym1576 + yy1626 := &x.ListMeta + yym1627 := z.EncBinary() + _ = yym1627 if false { - } else if z.HasExtensions() && z.EncExt(yy1575) { + } else if z.HasExtensions() && z.EncExt(yy1626) { } else { - z.EncFallback(yy1575) + z.EncFallback(yy1626) } } } - if yyr1565 || yy2arr1565 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1578 := z.EncBinary() - _ = yym1578 + yym1629 := z.EncBinary() + _ = yym1629 if false { } else { h.encSlicePodSecurityPolicy(([]PodSecurityPolicy)(x.Items), e) @@ -18806,15 +19355,15 @@ func (x *PodSecurityPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1579 := z.EncBinary() - _ = yym1579 + yym1630 := z.EncBinary() + _ = yym1630 if false { } else { h.encSlicePodSecurityPolicy(([]PodSecurityPolicy)(x.Items), e) } } } - if yyr1565 || yy2arr1565 { + if yyr1616 || yy2arr1616 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18827,25 +19376,25 @@ func (x *PodSecurityPolicyList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1580 := z.DecBinary() - _ = yym1580 + yym1631 := z.DecBinary() + _ = yym1631 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1581 := r.ContainerType() - if yyct1581 == codecSelferValueTypeMap1234 { - yyl1581 := r.ReadMapStart() - if yyl1581 == 0 { + yyct1632 := r.ContainerType() + if yyct1632 == codecSelferValueTypeMap1234 { + yyl1632 := r.ReadMapStart() + if yyl1632 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1581, d) + x.codecDecodeSelfFromMap(yyl1632, d) } - } else if yyct1581 == codecSelferValueTypeArray1234 { - yyl1581 := r.ReadArrayStart() - if yyl1581 == 0 { + } else if yyct1632 == codecSelferValueTypeArray1234 { + yyl1632 := r.ReadArrayStart() + if yyl1632 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1581, d) + x.codecDecodeSelfFromArray(yyl1632, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18857,12 +19406,12 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1582Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1582Slc - var yyhl1582 bool = l >= 0 - for yyj1582 := 0; ; yyj1582++ { - if yyhl1582 { - if yyj1582 >= l { + var yys1633Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1633Slc + var yyhl1633 bool = l >= 0 + for yyj1633 := 0; ; yyj1633++ { + if yyhl1633 { + if yyj1633 >= l { break } } else { @@ -18871,10 +19420,10 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1582Slc = r.DecodeBytes(yys1582Slc, true, true) - yys1582 := string(yys1582Slc) + yys1633Slc = r.DecodeBytes(yys1633Slc, true, true) + yys1633 := string(yys1633Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1582 { + switch yys1633 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -18891,31 +19440,31 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg1_unversioned.ListMeta{} } else { - yyv1585 := &x.ListMeta - yym1586 := z.DecBinary() - _ = yym1586 + yyv1636 := &x.ListMeta + yym1637 := z.DecBinary() + _ = yym1637 if false { - } else if z.HasExtensions() && z.DecExt(yyv1585) { + } else if z.HasExtensions() && z.DecExt(yyv1636) { } else { - z.DecFallback(yyv1585, false) + z.DecFallback(yyv1636, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1587 := &x.Items - yym1588 := z.DecBinary() - _ = yym1588 + yyv1638 := &x.Items + yym1639 := z.DecBinary() + _ = yym1639 if false { } else { - h.decSlicePodSecurityPolicy((*[]PodSecurityPolicy)(yyv1587), d) + h.decSlicePodSecurityPolicy((*[]PodSecurityPolicy)(yyv1638), d) } } default: - z.DecStructFieldNotFound(-1, yys1582) - } // end switch yys1582 - } // end for yyj1582 + z.DecStructFieldNotFound(-1, yys1633) + } // end switch yys1633 + } // end for yyj1633 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18923,16 +19472,16 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1589 int - var yyb1589 bool - var yyhl1589 bool = l >= 0 - yyj1589++ - if yyhl1589 { - yyb1589 = yyj1589 > l + var yyj1640 int + var yyb1640 bool + var yyhl1640 bool = l >= 0 + yyj1640++ + if yyhl1640 { + yyb1640 = yyj1640 > l } else { - yyb1589 = r.CheckBreak() + yyb1640 = r.CheckBreak() } - if yyb1589 { + if yyb1640 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18942,13 +19491,13 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj1589++ - if yyhl1589 { - yyb1589 = yyj1589 > l + yyj1640++ + if yyhl1640 { + yyb1640 = yyj1640 > l } else { - yyb1589 = r.CheckBreak() + yyb1640 = r.CheckBreak() } - if yyb1589 { + if yyb1640 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18958,13 +19507,13 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj1589++ - if yyhl1589 { - yyb1589 = yyj1589 > l + yyj1640++ + if yyhl1640 { + yyb1640 = yyj1640 > l } else { - yyb1589 = r.CheckBreak() + yyb1640 = r.CheckBreak() } - if yyb1589 { + if yyb1640 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18972,22 +19521,22 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ListMeta = pkg1_unversioned.ListMeta{} } else { - yyv1592 := &x.ListMeta - yym1593 := z.DecBinary() - _ = yym1593 + yyv1643 := &x.ListMeta + yym1644 := z.DecBinary() + _ = yym1644 if false { - } else if z.HasExtensions() && z.DecExt(yyv1592) { + } else if z.HasExtensions() && z.DecExt(yyv1643) { } else { - z.DecFallback(yyv1592, false) + z.DecFallback(yyv1643, false) } } - yyj1589++ - if yyhl1589 { - yyb1589 = yyj1589 > l + yyj1640++ + if yyhl1640 { + yyb1640 = yyj1640 > l } else { - yyb1589 = r.CheckBreak() + yyb1640 = r.CheckBreak() } - if yyb1589 { + if yyb1640 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18995,26 +19544,26 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1594 := &x.Items - yym1595 := z.DecBinary() - _ = yym1595 + yyv1645 := &x.Items + yym1646 := z.DecBinary() + _ = yym1646 if false { } else { - h.decSlicePodSecurityPolicy((*[]PodSecurityPolicy)(yyv1594), d) + h.decSlicePodSecurityPolicy((*[]PodSecurityPolicy)(yyv1645), d) } } for { - yyj1589++ - if yyhl1589 { - yyb1589 = yyj1589 > l + yyj1640++ + if yyhl1640 { + yyb1640 = yyj1640 > l } else { - yyb1589 = r.CheckBreak() + yyb1640 = r.CheckBreak() } - if yyb1589 { + if yyb1640 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1589-1, "") + z.DecStructFieldNotFound(yyj1640-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19026,38 +19575,38 @@ func (x *NetworkPolicy) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1596 := z.EncBinary() - _ = yym1596 + yym1647 := z.EncBinary() + _ = yym1647 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1597 := !z.EncBinary() - yy2arr1597 := z.EncBasicHandle().StructToArray - var yyq1597 [4]bool - _, _, _ = yysep1597, yyq1597, yy2arr1597 - const yyr1597 bool = false - yyq1597[0] = x.Kind != "" - yyq1597[1] = x.APIVersion != "" - yyq1597[2] = true - yyq1597[3] = true - var yynn1597 int - if yyr1597 || yy2arr1597 { + yysep1648 := !z.EncBinary() + yy2arr1648 := z.EncBasicHandle().StructToArray + var yyq1648 [4]bool + _, _, _ = yysep1648, yyq1648, yy2arr1648 + const yyr1648 bool = false + yyq1648[0] = x.Kind != "" + yyq1648[1] = x.APIVersion != "" + yyq1648[2] = true + yyq1648[3] = true + var yynn1648 int + if yyr1648 || yy2arr1648 { r.EncodeArrayStart(4) } else { - yynn1597 = 0 - for _, b := range yyq1597 { + yynn1648 = 0 + for _, b := range yyq1648 { if b { - yynn1597++ + yynn1648++ } } - r.EncodeMapStart(yynn1597) - yynn1597 = 0 + r.EncodeMapStart(yynn1648) + yynn1648 = 0 } - if yyr1597 || yy2arr1597 { + if yyr1648 || yy2arr1648 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1597[0] { - yym1599 := z.EncBinary() - _ = yym1599 + if yyq1648[0] { + yym1650 := z.EncBinary() + _ = yym1650 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -19066,23 +19615,23 @@ func (x *NetworkPolicy) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1597[0] { + if yyq1648[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1600 := z.EncBinary() - _ = yym1600 + yym1651 := z.EncBinary() + _ = yym1651 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1597 || yy2arr1597 { + if yyr1648 || yy2arr1648 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1597[1] { - yym1602 := z.EncBinary() - _ = yym1602 + if yyq1648[1] { + yym1653 := z.EncBinary() + _ = yym1653 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -19091,53 +19640,53 @@ func (x *NetworkPolicy) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1597[1] { + if yyq1648[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1603 := z.EncBinary() - _ = yym1603 + yym1654 := z.EncBinary() + _ = yym1654 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1597 || yy2arr1597 { + if yyr1648 || yy2arr1648 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1597[2] { - yy1605 := &x.ObjectMeta - yy1605.CodecEncodeSelf(e) + if yyq1648[2] { + yy1656 := &x.ObjectMeta + yy1656.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1597[2] { + if yyq1648[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1606 := &x.ObjectMeta - yy1606.CodecEncodeSelf(e) + yy1657 := &x.ObjectMeta + yy1657.CodecEncodeSelf(e) } } - if yyr1597 || yy2arr1597 { + if yyr1648 || yy2arr1648 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1597[3] { - yy1608 := &x.Spec - yy1608.CodecEncodeSelf(e) + if yyq1648[3] { + yy1659 := &x.Spec + yy1659.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1597[3] { + if yyq1648[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1609 := &x.Spec - yy1609.CodecEncodeSelf(e) + yy1660 := &x.Spec + yy1660.CodecEncodeSelf(e) } } - if yyr1597 || yy2arr1597 { + if yyr1648 || yy2arr1648 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19150,25 +19699,25 @@ func (x *NetworkPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1610 := z.DecBinary() - _ = yym1610 + yym1661 := z.DecBinary() + _ = yym1661 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1611 := r.ContainerType() - if yyct1611 == codecSelferValueTypeMap1234 { - yyl1611 := r.ReadMapStart() - if yyl1611 == 0 { + yyct1662 := r.ContainerType() + if yyct1662 == codecSelferValueTypeMap1234 { + yyl1662 := r.ReadMapStart() + if yyl1662 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1611, d) + x.codecDecodeSelfFromMap(yyl1662, d) } - } else if yyct1611 == codecSelferValueTypeArray1234 { - yyl1611 := r.ReadArrayStart() - if yyl1611 == 0 { + } else if yyct1662 == codecSelferValueTypeArray1234 { + yyl1662 := r.ReadArrayStart() + if yyl1662 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1611, d) + x.codecDecodeSelfFromArray(yyl1662, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19180,12 +19729,12 @@ func (x *NetworkPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1612Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1612Slc - var yyhl1612 bool = l >= 0 - for yyj1612 := 0; ; yyj1612++ { - if yyhl1612 { - if yyj1612 >= l { + var yys1663Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1663Slc + var yyhl1663 bool = l >= 0 + for yyj1663 := 0; ; yyj1663++ { + if yyhl1663 { + if yyj1663 >= l { break } } else { @@ -19194,10 +19743,10 @@ func (x *NetworkPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1612Slc = r.DecodeBytes(yys1612Slc, true, true) - yys1612 := string(yys1612Slc) + yys1663Slc = r.DecodeBytes(yys1663Slc, true, true) + yys1663 := string(yys1663Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1612 { + switch yys1663 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -19214,20 +19763,20 @@ func (x *NetworkPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = pkg2_v1.ObjectMeta{} } else { - yyv1615 := &x.ObjectMeta - yyv1615.CodecDecodeSelf(d) + yyv1666 := &x.ObjectMeta + yyv1666.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NetworkPolicySpec{} } else { - yyv1616 := &x.Spec - yyv1616.CodecDecodeSelf(d) + yyv1667 := &x.Spec + yyv1667.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1612) - } // end switch yys1612 - } // end for yyj1612 + z.DecStructFieldNotFound(-1, yys1663) + } // end switch yys1663 + } // end for yyj1663 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19235,16 +19784,16 @@ func (x *NetworkPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1617 int - var yyb1617 bool - var yyhl1617 bool = l >= 0 - yyj1617++ - if yyhl1617 { - yyb1617 = yyj1617 > l + var yyj1668 int + var yyb1668 bool + var yyhl1668 bool = l >= 0 + yyj1668++ + if yyhl1668 { + yyb1668 = yyj1668 > l } else { - yyb1617 = r.CheckBreak() + yyb1668 = r.CheckBreak() } - if yyb1617 { + if yyb1668 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19254,13 +19803,13 @@ func (x *NetworkPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1617++ - if yyhl1617 { - yyb1617 = yyj1617 > l + yyj1668++ + if yyhl1668 { + yyb1668 = yyj1668 > l } else { - yyb1617 = r.CheckBreak() + yyb1668 = r.CheckBreak() } - if yyb1617 { + if yyb1668 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19270,13 +19819,13 @@ func (x *NetworkPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1617++ - if yyhl1617 { - yyb1617 = yyj1617 > l + yyj1668++ + if yyhl1668 { + yyb1668 = yyj1668 > l } else { - yyb1617 = r.CheckBreak() + yyb1668 = r.CheckBreak() } - if yyb1617 { + if yyb1668 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19284,16 +19833,16 @@ func (x *NetworkPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = pkg2_v1.ObjectMeta{} } else { - yyv1620 := &x.ObjectMeta - yyv1620.CodecDecodeSelf(d) + yyv1671 := &x.ObjectMeta + yyv1671.CodecDecodeSelf(d) } - yyj1617++ - if yyhl1617 { - yyb1617 = yyj1617 > l + yyj1668++ + if yyhl1668 { + yyb1668 = yyj1668 > l } else { - yyb1617 = r.CheckBreak() + yyb1668 = r.CheckBreak() } - if yyb1617 { + if yyb1668 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19301,21 +19850,21 @@ func (x *NetworkPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NetworkPolicySpec{} } else { - yyv1621 := &x.Spec - yyv1621.CodecDecodeSelf(d) + yyv1672 := &x.Spec + yyv1672.CodecDecodeSelf(d) } for { - yyj1617++ - if yyhl1617 { - yyb1617 = yyj1617 > l + yyj1668++ + if yyhl1668 { + yyb1668 = yyj1668 > l } else { - yyb1617 = r.CheckBreak() + yyb1668 = r.CheckBreak() } - if yyb1617 { + if yyb1668 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1617-1, "") + z.DecStructFieldNotFound(yyj1668-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19327,49 +19876,49 @@ func (x *NetworkPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1622 := z.EncBinary() - _ = yym1622 + yym1673 := z.EncBinary() + _ = yym1673 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1623 := !z.EncBinary() - yy2arr1623 := z.EncBasicHandle().StructToArray - var yyq1623 [2]bool - _, _, _ = yysep1623, yyq1623, yy2arr1623 - const yyr1623 bool = false - yyq1623[1] = len(x.Ingress) != 0 - var yynn1623 int - if yyr1623 || yy2arr1623 { + yysep1674 := !z.EncBinary() + yy2arr1674 := z.EncBasicHandle().StructToArray + var yyq1674 [2]bool + _, _, _ = yysep1674, yyq1674, yy2arr1674 + const yyr1674 bool = false + yyq1674[1] = len(x.Ingress) != 0 + var yynn1674 int + if yyr1674 || yy2arr1674 { r.EncodeArrayStart(2) } else { - yynn1623 = 1 - for _, b := range yyq1623 { + yynn1674 = 1 + for _, b := range yyq1674 { if b { - yynn1623++ + yynn1674++ } } - r.EncodeMapStart(yynn1623) - yynn1623 = 0 + r.EncodeMapStart(yynn1674) + yynn1674 = 0 } - if yyr1623 || yy2arr1623 { + if yyr1674 || yy2arr1674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1625 := &x.PodSelector - yy1625.CodecEncodeSelf(e) + yy1676 := &x.PodSelector + yy1676.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1626 := &x.PodSelector - yy1626.CodecEncodeSelf(e) + yy1677 := &x.PodSelector + yy1677.CodecEncodeSelf(e) } - if yyr1623 || yy2arr1623 { + if yyr1674 || yy2arr1674 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1623[1] { + if yyq1674[1] { if x.Ingress == nil { r.EncodeNil() } else { - yym1628 := z.EncBinary() - _ = yym1628 + yym1679 := z.EncBinary() + _ = yym1679 if false { } else { h.encSliceNetworkPolicyIngressRule(([]NetworkPolicyIngressRule)(x.Ingress), e) @@ -19379,15 +19928,15 @@ func (x *NetworkPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1623[1] { + if yyq1674[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym1629 := z.EncBinary() - _ = yym1629 + yym1680 := z.EncBinary() + _ = yym1680 if false { } else { h.encSliceNetworkPolicyIngressRule(([]NetworkPolicyIngressRule)(x.Ingress), e) @@ -19395,7 +19944,7 @@ func (x *NetworkPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1623 || yy2arr1623 { + if yyr1674 || yy2arr1674 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19408,25 +19957,25 @@ func (x *NetworkPolicySpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1630 := z.DecBinary() - _ = yym1630 + yym1681 := z.DecBinary() + _ = yym1681 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1631 := r.ContainerType() - if yyct1631 == codecSelferValueTypeMap1234 { - yyl1631 := r.ReadMapStart() - if yyl1631 == 0 { + yyct1682 := r.ContainerType() + if yyct1682 == codecSelferValueTypeMap1234 { + yyl1682 := r.ReadMapStart() + if yyl1682 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1631, d) + x.codecDecodeSelfFromMap(yyl1682, d) } - } else if yyct1631 == codecSelferValueTypeArray1234 { - yyl1631 := r.ReadArrayStart() - if yyl1631 == 0 { + } else if yyct1682 == codecSelferValueTypeArray1234 { + yyl1682 := r.ReadArrayStart() + if yyl1682 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1631, d) + x.codecDecodeSelfFromArray(yyl1682, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19438,12 +19987,12 @@ func (x *NetworkPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1632Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1632Slc - var yyhl1632 bool = l >= 0 - for yyj1632 := 0; ; yyj1632++ { - if yyhl1632 { - if yyj1632 >= l { + var yys1683Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1683Slc + var yyhl1683 bool = l >= 0 + for yyj1683 := 0; ; yyj1683++ { + if yyhl1683 { + if yyj1683 >= l { break } } else { @@ -19452,33 +20001,33 @@ func (x *NetworkPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1632Slc = r.DecodeBytes(yys1632Slc, true, true) - yys1632 := string(yys1632Slc) + yys1683Slc = r.DecodeBytes(yys1683Slc, true, true) + yys1683 := string(yys1683Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1632 { + switch yys1683 { case "podSelector": if r.TryDecodeAsNil() { x.PodSelector = LabelSelector{} } else { - yyv1633 := &x.PodSelector - yyv1633.CodecDecodeSelf(d) + yyv1684 := &x.PodSelector + yyv1684.CodecDecodeSelf(d) } case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv1634 := &x.Ingress - yym1635 := z.DecBinary() - _ = yym1635 + yyv1685 := &x.Ingress + yym1686 := z.DecBinary() + _ = yym1686 if false { } else { - h.decSliceNetworkPolicyIngressRule((*[]NetworkPolicyIngressRule)(yyv1634), d) + h.decSliceNetworkPolicyIngressRule((*[]NetworkPolicyIngressRule)(yyv1685), d) } } default: - z.DecStructFieldNotFound(-1, yys1632) - } // end switch yys1632 - } // end for yyj1632 + z.DecStructFieldNotFound(-1, yys1683) + } // end switch yys1683 + } // end for yyj1683 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19486,16 +20035,16 @@ func (x *NetworkPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1636 int - var yyb1636 bool - var yyhl1636 bool = l >= 0 - yyj1636++ - if yyhl1636 { - yyb1636 = yyj1636 > l + var yyj1687 int + var yyb1687 bool + var yyhl1687 bool = l >= 0 + yyj1687++ + if yyhl1687 { + yyb1687 = yyj1687 > l } else { - yyb1636 = r.CheckBreak() + yyb1687 = r.CheckBreak() } - if yyb1636 { + if yyb1687 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19503,16 +20052,16 @@ func (x *NetworkPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.PodSelector = LabelSelector{} } else { - yyv1637 := &x.PodSelector - yyv1637.CodecDecodeSelf(d) + yyv1688 := &x.PodSelector + yyv1688.CodecDecodeSelf(d) } - yyj1636++ - if yyhl1636 { - yyb1636 = yyj1636 > l + yyj1687++ + if yyhl1687 { + yyb1687 = yyj1687 > l } else { - yyb1636 = r.CheckBreak() + yyb1687 = r.CheckBreak() } - if yyb1636 { + if yyb1687 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19520,26 +20069,26 @@ func (x *NetworkPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv1638 := &x.Ingress - yym1639 := z.DecBinary() - _ = yym1639 + yyv1689 := &x.Ingress + yym1690 := z.DecBinary() + _ = yym1690 if false { } else { - h.decSliceNetworkPolicyIngressRule((*[]NetworkPolicyIngressRule)(yyv1638), d) + h.decSliceNetworkPolicyIngressRule((*[]NetworkPolicyIngressRule)(yyv1689), d) } } for { - yyj1636++ - if yyhl1636 { - yyb1636 = yyj1636 > l + yyj1687++ + if yyhl1687 { + yyb1687 = yyj1687 > l } else { - yyb1636 = r.CheckBreak() + yyb1687 = r.CheckBreak() } - if yyb1636 { + if yyb1687 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1636-1, "") + z.DecStructFieldNotFound(yyj1687-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19551,39 +20100,39 @@ func (x *NetworkPolicyIngressRule) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1640 := z.EncBinary() - _ = yym1640 + yym1691 := z.EncBinary() + _ = yym1691 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1641 := !z.EncBinary() - yy2arr1641 := z.EncBasicHandle().StructToArray - var yyq1641 [2]bool - _, _, _ = yysep1641, yyq1641, yy2arr1641 - const yyr1641 bool = false - yyq1641[0] = len(x.Ports) != 0 - yyq1641[1] = len(x.From) != 0 - var yynn1641 int - if yyr1641 || yy2arr1641 { + yysep1692 := !z.EncBinary() + yy2arr1692 := z.EncBasicHandle().StructToArray + var yyq1692 [2]bool + _, _, _ = yysep1692, yyq1692, yy2arr1692 + const yyr1692 bool = false + yyq1692[0] = len(x.Ports) != 0 + yyq1692[1] = len(x.From) != 0 + var yynn1692 int + if yyr1692 || yy2arr1692 { r.EncodeArrayStart(2) } else { - yynn1641 = 0 - for _, b := range yyq1641 { + yynn1692 = 0 + for _, b := range yyq1692 { if b { - yynn1641++ + yynn1692++ } } - r.EncodeMapStart(yynn1641) - yynn1641 = 0 + r.EncodeMapStart(yynn1692) + yynn1692 = 0 } - if yyr1641 || yy2arr1641 { + if yyr1692 || yy2arr1692 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1641[0] { + if yyq1692[0] { if x.Ports == nil { r.EncodeNil() } else { - yym1643 := z.EncBinary() - _ = yym1643 + yym1694 := z.EncBinary() + _ = yym1694 if false { } else { h.encSliceNetworkPolicyPort(([]NetworkPolicyPort)(x.Ports), e) @@ -19593,15 +20142,15 @@ func (x *NetworkPolicyIngressRule) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1641[0] { + if yyq1692[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym1644 := z.EncBinary() - _ = yym1644 + yym1695 := z.EncBinary() + _ = yym1695 if false { } else { h.encSliceNetworkPolicyPort(([]NetworkPolicyPort)(x.Ports), e) @@ -19609,14 +20158,14 @@ func (x *NetworkPolicyIngressRule) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1641 || yy2arr1641 { + if yyr1692 || yy2arr1692 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1641[1] { + if yyq1692[1] { if x.From == nil { r.EncodeNil() } else { - yym1646 := z.EncBinary() - _ = yym1646 + yym1697 := z.EncBinary() + _ = yym1697 if false { } else { h.encSliceNetworkPolicyPeer(([]NetworkPolicyPeer)(x.From), e) @@ -19626,15 +20175,15 @@ func (x *NetworkPolicyIngressRule) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1641[1] { + if yyq1692[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("from")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.From == nil { r.EncodeNil() } else { - yym1647 := z.EncBinary() - _ = yym1647 + yym1698 := z.EncBinary() + _ = yym1698 if false { } else { h.encSliceNetworkPolicyPeer(([]NetworkPolicyPeer)(x.From), e) @@ -19642,7 +20191,7 @@ func (x *NetworkPolicyIngressRule) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1641 || yy2arr1641 { + if yyr1692 || yy2arr1692 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19655,25 +20204,25 @@ func (x *NetworkPolicyIngressRule) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1648 := z.DecBinary() - _ = yym1648 + yym1699 := z.DecBinary() + _ = yym1699 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1649 := r.ContainerType() - if yyct1649 == codecSelferValueTypeMap1234 { - yyl1649 := r.ReadMapStart() - if yyl1649 == 0 { + yyct1700 := r.ContainerType() + if yyct1700 == codecSelferValueTypeMap1234 { + yyl1700 := r.ReadMapStart() + if yyl1700 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1649, d) + x.codecDecodeSelfFromMap(yyl1700, d) } - } else if yyct1649 == codecSelferValueTypeArray1234 { - yyl1649 := r.ReadArrayStart() - if yyl1649 == 0 { + } else if yyct1700 == codecSelferValueTypeArray1234 { + yyl1700 := r.ReadArrayStart() + if yyl1700 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1649, d) + x.codecDecodeSelfFromArray(yyl1700, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19685,12 +20234,12 @@ func (x *NetworkPolicyIngressRule) codecDecodeSelfFromMap(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1650Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1650Slc - var yyhl1650 bool = l >= 0 - for yyj1650 := 0; ; yyj1650++ { - if yyhl1650 { - if yyj1650 >= l { + var yys1701Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1701Slc + var yyhl1701 bool = l >= 0 + for yyj1701 := 0; ; yyj1701++ { + if yyhl1701 { + if yyj1701 >= l { break } } else { @@ -19699,38 +20248,38 @@ func (x *NetworkPolicyIngressRule) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1650Slc = r.DecodeBytes(yys1650Slc, true, true) - yys1650 := string(yys1650Slc) + yys1701Slc = r.DecodeBytes(yys1701Slc, true, true) + yys1701 := string(yys1701Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1650 { + switch yys1701 { case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1651 := &x.Ports - yym1652 := z.DecBinary() - _ = yym1652 + yyv1702 := &x.Ports + yym1703 := z.DecBinary() + _ = yym1703 if false { } else { - h.decSliceNetworkPolicyPort((*[]NetworkPolicyPort)(yyv1651), d) + h.decSliceNetworkPolicyPort((*[]NetworkPolicyPort)(yyv1702), d) } } case "from": if r.TryDecodeAsNil() { x.From = nil } else { - yyv1653 := &x.From - yym1654 := z.DecBinary() - _ = yym1654 + yyv1704 := &x.From + yym1705 := z.DecBinary() + _ = yym1705 if false { } else { - h.decSliceNetworkPolicyPeer((*[]NetworkPolicyPeer)(yyv1653), d) + h.decSliceNetworkPolicyPeer((*[]NetworkPolicyPeer)(yyv1704), d) } } default: - z.DecStructFieldNotFound(-1, yys1650) - } // end switch yys1650 - } // end for yyj1650 + z.DecStructFieldNotFound(-1, yys1701) + } // end switch yys1701 + } // end for yyj1701 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19738,16 +20287,16 @@ func (x *NetworkPolicyIngressRule) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1655 int - var yyb1655 bool - var yyhl1655 bool = l >= 0 - yyj1655++ - if yyhl1655 { - yyb1655 = yyj1655 > l + var yyj1706 int + var yyb1706 bool + var yyhl1706 bool = l >= 0 + yyj1706++ + if yyhl1706 { + yyb1706 = yyj1706 > l } else { - yyb1655 = r.CheckBreak() + yyb1706 = r.CheckBreak() } - if yyb1655 { + if yyb1706 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19755,21 +20304,21 @@ func (x *NetworkPolicyIngressRule) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1656 := &x.Ports - yym1657 := z.DecBinary() - _ = yym1657 + yyv1707 := &x.Ports + yym1708 := z.DecBinary() + _ = yym1708 if false { } else { - h.decSliceNetworkPolicyPort((*[]NetworkPolicyPort)(yyv1656), d) + h.decSliceNetworkPolicyPort((*[]NetworkPolicyPort)(yyv1707), d) } } - yyj1655++ - if yyhl1655 { - yyb1655 = yyj1655 > l + yyj1706++ + if yyhl1706 { + yyb1706 = yyj1706 > l } else { - yyb1655 = r.CheckBreak() + yyb1706 = r.CheckBreak() } - if yyb1655 { + if yyb1706 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19777,26 +20326,26 @@ func (x *NetworkPolicyIngressRule) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.From = nil } else { - yyv1658 := &x.From - yym1659 := z.DecBinary() - _ = yym1659 + yyv1709 := &x.From + yym1710 := z.DecBinary() + _ = yym1710 if false { } else { - h.decSliceNetworkPolicyPeer((*[]NetworkPolicyPeer)(yyv1658), d) + h.decSliceNetworkPolicyPeer((*[]NetworkPolicyPeer)(yyv1709), d) } } for { - yyj1655++ - if yyhl1655 { - yyb1655 = yyj1655 > l + yyj1706++ + if yyhl1706 { + yyb1706 = yyj1706 > l } else { - yyb1655 = r.CheckBreak() + yyb1706 = r.CheckBreak() } - if yyb1655 { + if yyb1706 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1655-1, "") + z.DecStructFieldNotFound(yyj1706-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19808,79 +20357,79 @@ func (x *NetworkPolicyPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1660 := z.EncBinary() - _ = yym1660 + yym1711 := z.EncBinary() + _ = yym1711 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1661 := !z.EncBinary() - yy2arr1661 := z.EncBasicHandle().StructToArray - var yyq1661 [2]bool - _, _, _ = yysep1661, yyq1661, yy2arr1661 - const yyr1661 bool = false - yyq1661[0] = x.Protocol != nil - yyq1661[1] = x.Port != nil - var yynn1661 int - if yyr1661 || yy2arr1661 { + yysep1712 := !z.EncBinary() + yy2arr1712 := z.EncBasicHandle().StructToArray + var yyq1712 [2]bool + _, _, _ = yysep1712, yyq1712, yy2arr1712 + const yyr1712 bool = false + yyq1712[0] = x.Protocol != nil + yyq1712[1] = x.Port != nil + var yynn1712 int + if yyr1712 || yy2arr1712 { r.EncodeArrayStart(2) } else { - yynn1661 = 0 - for _, b := range yyq1661 { + yynn1712 = 0 + for _, b := range yyq1712 { if b { - yynn1661++ + yynn1712++ } } - r.EncodeMapStart(yynn1661) - yynn1661 = 0 + r.EncodeMapStart(yynn1712) + yynn1712 = 0 } - if yyr1661 || yy2arr1661 { + if yyr1712 || yy2arr1712 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1661[0] { + if yyq1712[0] { if x.Protocol == nil { r.EncodeNil() } else { - yy1663 := *x.Protocol - yym1664 := z.EncBinary() - _ = yym1664 + yy1714 := *x.Protocol + yym1715 := z.EncBinary() + _ = yym1715 if false { - } else if z.HasExtensions() && z.EncExt(yy1663) { + } else if z.HasExtensions() && z.EncExt(yy1714) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy1663)) + r.EncodeString(codecSelferC_UTF81234, string(yy1714)) } } } else { r.EncodeNil() } } else { - if yyq1661[0] { + if yyq1712[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Protocol == nil { r.EncodeNil() } else { - yy1665 := *x.Protocol - yym1666 := z.EncBinary() - _ = yym1666 + yy1716 := *x.Protocol + yym1717 := z.EncBinary() + _ = yym1717 if false { - } else if z.HasExtensions() && z.EncExt(yy1665) { + } else if z.HasExtensions() && z.EncExt(yy1716) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy1665)) + r.EncodeString(codecSelferC_UTF81234, string(yy1716)) } } } } - if yyr1661 || yy2arr1661 { + if yyr1712 || yy2arr1712 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1661[1] { + if yyq1712[1] { if x.Port == nil { r.EncodeNil() } else { - yym1668 := z.EncBinary() - _ = yym1668 + yym1719 := z.EncBinary() + _ = yym1719 if false { } else if z.HasExtensions() && z.EncExt(x.Port) { - } else if !yym1668 && z.IsJSONHandle() { + } else if !yym1719 && z.IsJSONHandle() { z.EncJSONMarshal(x.Port) } else { z.EncFallback(x.Port) @@ -19890,18 +20439,18 @@ func (x *NetworkPolicyPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1661[1] { + if yyq1712[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Port == nil { r.EncodeNil() } else { - yym1669 := z.EncBinary() - _ = yym1669 + yym1720 := z.EncBinary() + _ = yym1720 if false { } else if z.HasExtensions() && z.EncExt(x.Port) { - } else if !yym1669 && z.IsJSONHandle() { + } else if !yym1720 && z.IsJSONHandle() { z.EncJSONMarshal(x.Port) } else { z.EncFallback(x.Port) @@ -19909,7 +20458,7 @@ func (x *NetworkPolicyPort) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1661 || yy2arr1661 { + if yyr1712 || yy2arr1712 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19922,25 +20471,25 @@ func (x *NetworkPolicyPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1670 := z.DecBinary() - _ = yym1670 + yym1721 := z.DecBinary() + _ = yym1721 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1671 := r.ContainerType() - if yyct1671 == codecSelferValueTypeMap1234 { - yyl1671 := r.ReadMapStart() - if yyl1671 == 0 { + yyct1722 := r.ContainerType() + if yyct1722 == codecSelferValueTypeMap1234 { + yyl1722 := r.ReadMapStart() + if yyl1722 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1671, d) + x.codecDecodeSelfFromMap(yyl1722, d) } - } else if yyct1671 == codecSelferValueTypeArray1234 { - yyl1671 := r.ReadArrayStart() - if yyl1671 == 0 { + } else if yyct1722 == codecSelferValueTypeArray1234 { + yyl1722 := r.ReadArrayStart() + if yyl1722 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1671, d) + x.codecDecodeSelfFromArray(yyl1722, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19952,12 +20501,12 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1672Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1672Slc - var yyhl1672 bool = l >= 0 - for yyj1672 := 0; ; yyj1672++ { - if yyhl1672 { - if yyj1672 >= l { + var yys1723Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1723Slc + var yyhl1723 bool = l >= 0 + for yyj1723 := 0; ; yyj1723++ { + if yyhl1723 { + if yyj1723 >= l { break } } else { @@ -19966,10 +20515,10 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1672Slc = r.DecodeBytes(yys1672Slc, true, true) - yys1672 := string(yys1672Slc) + yys1723Slc = r.DecodeBytes(yys1723Slc, true, true) + yys1723 := string(yys1723Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1672 { + switch yys1723 { case "protocol": if r.TryDecodeAsNil() { if x.Protocol != nil { @@ -19990,20 +20539,20 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.Port == nil { x.Port = new(pkg5_intstr.IntOrString) } - yym1675 := z.DecBinary() - _ = yym1675 + yym1726 := z.DecBinary() + _ = yym1726 if false { } else if z.HasExtensions() && z.DecExt(x.Port) { - } else if !yym1675 && z.IsJSONHandle() { + } else if !yym1726 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.Port) } else { z.DecFallback(x.Port, false) } } default: - z.DecStructFieldNotFound(-1, yys1672) - } // end switch yys1672 - } // end for yyj1672 + z.DecStructFieldNotFound(-1, yys1723) + } // end switch yys1723 + } // end for yyj1723 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20011,16 +20560,16 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1676 int - var yyb1676 bool - var yyhl1676 bool = l >= 0 - yyj1676++ - if yyhl1676 { - yyb1676 = yyj1676 > l + var yyj1727 int + var yyb1727 bool + var yyhl1727 bool = l >= 0 + yyj1727++ + if yyhl1727 { + yyb1727 = yyj1727 > l } else { - yyb1676 = r.CheckBreak() + yyb1727 = r.CheckBreak() } - if yyb1676 { + if yyb1727 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20035,13 +20584,13 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } x.Protocol.CodecDecodeSelf(d) } - yyj1676++ - if yyhl1676 { - yyb1676 = yyj1676 > l + yyj1727++ + if yyhl1727 { + yyb1727 = yyj1727 > l } else { - yyb1676 = r.CheckBreak() + yyb1727 = r.CheckBreak() } - if yyb1676 { + if yyb1727 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20054,28 +20603,28 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if x.Port == nil { x.Port = new(pkg5_intstr.IntOrString) } - yym1679 := z.DecBinary() - _ = yym1679 + yym1730 := z.DecBinary() + _ = yym1730 if false { } else if z.HasExtensions() && z.DecExt(x.Port) { - } else if !yym1679 && z.IsJSONHandle() { + } else if !yym1730 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.Port) } else { z.DecFallback(x.Port, false) } } for { - yyj1676++ - if yyhl1676 { - yyb1676 = yyj1676 > l + yyj1727++ + if yyhl1727 { + yyb1727 = yyj1727 > l } else { - yyb1676 = r.CheckBreak() + yyb1727 = r.CheckBreak() } - if yyb1676 { + if yyb1727 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1676-1, "") + z.DecStructFieldNotFound(yyj1727-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20087,34 +20636,34 @@ func (x *NetworkPolicyPeer) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1680 := z.EncBinary() - _ = yym1680 + yym1731 := z.EncBinary() + _ = yym1731 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1681 := !z.EncBinary() - yy2arr1681 := z.EncBasicHandle().StructToArray - var yyq1681 [2]bool - _, _, _ = yysep1681, yyq1681, yy2arr1681 - const yyr1681 bool = false - yyq1681[0] = x.PodSelector != nil - yyq1681[1] = x.NamespaceSelector != nil - var yynn1681 int - if yyr1681 || yy2arr1681 { + yysep1732 := !z.EncBinary() + yy2arr1732 := z.EncBasicHandle().StructToArray + var yyq1732 [2]bool + _, _, _ = yysep1732, yyq1732, yy2arr1732 + const yyr1732 bool = false + yyq1732[0] = x.PodSelector != nil + yyq1732[1] = x.NamespaceSelector != nil + var yynn1732 int + if yyr1732 || yy2arr1732 { r.EncodeArrayStart(2) } else { - yynn1681 = 0 - for _, b := range yyq1681 { + yynn1732 = 0 + for _, b := range yyq1732 { if b { - yynn1681++ + yynn1732++ } } - r.EncodeMapStart(yynn1681) - yynn1681 = 0 + r.EncodeMapStart(yynn1732) + yynn1732 = 0 } - if yyr1681 || yy2arr1681 { + if yyr1732 || yy2arr1732 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1681[0] { + if yyq1732[0] { if x.PodSelector == nil { r.EncodeNil() } else { @@ -20124,7 +20673,7 @@ func (x *NetworkPolicyPeer) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1681[0] { + if yyq1732[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20135,9 +20684,9 @@ func (x *NetworkPolicyPeer) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1681 || yy2arr1681 { + if yyr1732 || yy2arr1732 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1681[1] { + if yyq1732[1] { if x.NamespaceSelector == nil { r.EncodeNil() } else { @@ -20147,7 +20696,7 @@ func (x *NetworkPolicyPeer) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1681[1] { + if yyq1732[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespaceSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20158,7 +20707,7 @@ func (x *NetworkPolicyPeer) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1681 || yy2arr1681 { + if yyr1732 || yy2arr1732 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20171,25 +20720,25 @@ func (x *NetworkPolicyPeer) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1684 := z.DecBinary() - _ = yym1684 + yym1735 := z.DecBinary() + _ = yym1735 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1685 := r.ContainerType() - if yyct1685 == codecSelferValueTypeMap1234 { - yyl1685 := r.ReadMapStart() - if yyl1685 == 0 { + yyct1736 := r.ContainerType() + if yyct1736 == codecSelferValueTypeMap1234 { + yyl1736 := r.ReadMapStart() + if yyl1736 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1685, d) + x.codecDecodeSelfFromMap(yyl1736, d) } - } else if yyct1685 == codecSelferValueTypeArray1234 { - yyl1685 := r.ReadArrayStart() - if yyl1685 == 0 { + } else if yyct1736 == codecSelferValueTypeArray1234 { + yyl1736 := r.ReadArrayStart() + if yyl1736 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1685, d) + x.codecDecodeSelfFromArray(yyl1736, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20201,12 +20750,12 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1686Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1686Slc - var yyhl1686 bool = l >= 0 - for yyj1686 := 0; ; yyj1686++ { - if yyhl1686 { - if yyj1686 >= l { + var yys1737Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1737Slc + var yyhl1737 bool = l >= 0 + for yyj1737 := 0; ; yyj1737++ { + if yyhl1737 { + if yyj1737 >= l { break } } else { @@ -20215,10 +20764,10 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1686Slc = r.DecodeBytes(yys1686Slc, true, true) - yys1686 := string(yys1686Slc) + yys1737Slc = r.DecodeBytes(yys1737Slc, true, true) + yys1737 := string(yys1737Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1686 { + switch yys1737 { case "podSelector": if r.TryDecodeAsNil() { if x.PodSelector != nil { @@ -20242,9 +20791,9 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.NamespaceSelector.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1686) - } // end switch yys1686 - } // end for yyj1686 + z.DecStructFieldNotFound(-1, yys1737) + } // end switch yys1737 + } // end for yyj1737 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20252,16 +20801,16 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1689 int - var yyb1689 bool - var yyhl1689 bool = l >= 0 - yyj1689++ - if yyhl1689 { - yyb1689 = yyj1689 > l + var yyj1740 int + var yyb1740 bool + var yyhl1740 bool = l >= 0 + yyj1740++ + if yyhl1740 { + yyb1740 = yyj1740 > l } else { - yyb1689 = r.CheckBreak() + yyb1740 = r.CheckBreak() } - if yyb1689 { + if yyb1740 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20276,13 +20825,13 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } x.PodSelector.CodecDecodeSelf(d) } - yyj1689++ - if yyhl1689 { - yyb1689 = yyj1689 > l + yyj1740++ + if yyhl1740 { + yyb1740 = yyj1740 > l } else { - yyb1689 = r.CheckBreak() + yyb1740 = r.CheckBreak() } - if yyb1689 { + if yyb1740 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20298,17 +20847,17 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromArray(l int, d *codec1978.Decoder x.NamespaceSelector.CodecDecodeSelf(d) } for { - yyj1689++ - if yyhl1689 { - yyb1689 = yyj1689 > l + yyj1740++ + if yyhl1740 { + yyb1740 = yyj1740 > l } else { - yyb1689 = r.CheckBreak() + yyb1740 = r.CheckBreak() } - if yyb1689 { + if yyb1740 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1689-1, "") + z.DecStructFieldNotFound(yyj1740-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20320,37 +20869,37 @@ func (x *NetworkPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1692 := z.EncBinary() - _ = yym1692 + yym1743 := z.EncBinary() + _ = yym1743 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1693 := !z.EncBinary() - yy2arr1693 := z.EncBasicHandle().StructToArray - var yyq1693 [4]bool - _, _, _ = yysep1693, yyq1693, yy2arr1693 - const yyr1693 bool = false - yyq1693[0] = x.Kind != "" - yyq1693[1] = x.APIVersion != "" - yyq1693[2] = true - var yynn1693 int - if yyr1693 || yy2arr1693 { + yysep1744 := !z.EncBinary() + yy2arr1744 := z.EncBasicHandle().StructToArray + var yyq1744 [4]bool + _, _, _ = yysep1744, yyq1744, yy2arr1744 + const yyr1744 bool = false + yyq1744[0] = x.Kind != "" + yyq1744[1] = x.APIVersion != "" + yyq1744[2] = true + var yynn1744 int + if yyr1744 || yy2arr1744 { r.EncodeArrayStart(4) } else { - yynn1693 = 1 - for _, b := range yyq1693 { + yynn1744 = 1 + for _, b := range yyq1744 { if b { - yynn1693++ + yynn1744++ } } - r.EncodeMapStart(yynn1693) - yynn1693 = 0 + r.EncodeMapStart(yynn1744) + yynn1744 = 0 } - if yyr1693 || yy2arr1693 { + if yyr1744 || yy2arr1744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1693[0] { - yym1695 := z.EncBinary() - _ = yym1695 + if yyq1744[0] { + yym1746 := z.EncBinary() + _ = yym1746 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -20359,23 +20908,23 @@ func (x *NetworkPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1693[0] { + if yyq1744[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1696 := z.EncBinary() - _ = yym1696 + yym1747 := z.EncBinary() + _ = yym1747 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1693 || yy2arr1693 { + if yyr1744 || yy2arr1744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1693[1] { - yym1698 := z.EncBinary() - _ = yym1698 + if yyq1744[1] { + yym1749 := z.EncBinary() + _ = yym1749 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -20384,54 +20933,54 @@ func (x *NetworkPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1693[1] { + if yyq1744[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1699 := z.EncBinary() - _ = yym1699 + yym1750 := z.EncBinary() + _ = yym1750 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1693 || yy2arr1693 { + if yyr1744 || yy2arr1744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1693[2] { - yy1701 := &x.ListMeta - yym1702 := z.EncBinary() - _ = yym1702 + if yyq1744[2] { + yy1752 := &x.ListMeta + yym1753 := z.EncBinary() + _ = yym1753 if false { - } else if z.HasExtensions() && z.EncExt(yy1701) { + } else if z.HasExtensions() && z.EncExt(yy1752) { } else { - z.EncFallback(yy1701) + z.EncFallback(yy1752) } } else { r.EncodeNil() } } else { - if yyq1693[2] { + if yyq1744[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1703 := &x.ListMeta - yym1704 := z.EncBinary() - _ = yym1704 + yy1754 := &x.ListMeta + yym1755 := z.EncBinary() + _ = yym1755 if false { - } else if z.HasExtensions() && z.EncExt(yy1703) { + } else if z.HasExtensions() && z.EncExt(yy1754) { } else { - z.EncFallback(yy1703) + z.EncFallback(yy1754) } } } - if yyr1693 || yy2arr1693 { + if yyr1744 || yy2arr1744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1706 := z.EncBinary() - _ = yym1706 + yym1757 := z.EncBinary() + _ = yym1757 if false { } else { h.encSliceNetworkPolicy(([]NetworkPolicy)(x.Items), e) @@ -20444,15 +20993,15 @@ func (x *NetworkPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1707 := z.EncBinary() - _ = yym1707 + yym1758 := z.EncBinary() + _ = yym1758 if false { } else { h.encSliceNetworkPolicy(([]NetworkPolicy)(x.Items), e) } } } - if yyr1693 || yy2arr1693 { + if yyr1744 || yy2arr1744 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20465,25 +21014,25 @@ func (x *NetworkPolicyList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1708 := z.DecBinary() - _ = yym1708 + yym1759 := z.DecBinary() + _ = yym1759 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1709 := r.ContainerType() - if yyct1709 == codecSelferValueTypeMap1234 { - yyl1709 := r.ReadMapStart() - if yyl1709 == 0 { + yyct1760 := r.ContainerType() + if yyct1760 == codecSelferValueTypeMap1234 { + yyl1760 := r.ReadMapStart() + if yyl1760 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1709, d) + x.codecDecodeSelfFromMap(yyl1760, d) } - } else if yyct1709 == codecSelferValueTypeArray1234 { - yyl1709 := r.ReadArrayStart() - if yyl1709 == 0 { + } else if yyct1760 == codecSelferValueTypeArray1234 { + yyl1760 := r.ReadArrayStart() + if yyl1760 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1709, d) + x.codecDecodeSelfFromArray(yyl1760, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20495,12 +21044,12 @@ func (x *NetworkPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1710Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1710Slc - var yyhl1710 bool = l >= 0 - for yyj1710 := 0; ; yyj1710++ { - if yyhl1710 { - if yyj1710 >= l { + var yys1761Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1761Slc + var yyhl1761 bool = l >= 0 + for yyj1761 := 0; ; yyj1761++ { + if yyhl1761 { + if yyj1761 >= l { break } } else { @@ -20509,10 +21058,10 @@ func (x *NetworkPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1710Slc = r.DecodeBytes(yys1710Slc, true, true) - yys1710 := string(yys1710Slc) + yys1761Slc = r.DecodeBytes(yys1761Slc, true, true) + yys1761 := string(yys1761Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1710 { + switch yys1761 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -20529,31 +21078,31 @@ func (x *NetworkPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg1_unversioned.ListMeta{} } else { - yyv1713 := &x.ListMeta - yym1714 := z.DecBinary() - _ = yym1714 + yyv1764 := &x.ListMeta + yym1765 := z.DecBinary() + _ = yym1765 if false { - } else if z.HasExtensions() && z.DecExt(yyv1713) { + } else if z.HasExtensions() && z.DecExt(yyv1764) { } else { - z.DecFallback(yyv1713, false) + z.DecFallback(yyv1764, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1715 := &x.Items - yym1716 := z.DecBinary() - _ = yym1716 + yyv1766 := &x.Items + yym1767 := z.DecBinary() + _ = yym1767 if false { } else { - h.decSliceNetworkPolicy((*[]NetworkPolicy)(yyv1715), d) + h.decSliceNetworkPolicy((*[]NetworkPolicy)(yyv1766), d) } } default: - z.DecStructFieldNotFound(-1, yys1710) - } // end switch yys1710 - } // end for yyj1710 + z.DecStructFieldNotFound(-1, yys1761) + } // end switch yys1761 + } // end for yyj1761 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20561,16 +21110,16 @@ func (x *NetworkPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1717 int - var yyb1717 bool - var yyhl1717 bool = l >= 0 - yyj1717++ - if yyhl1717 { - yyb1717 = yyj1717 > l + var yyj1768 int + var yyb1768 bool + var yyhl1768 bool = l >= 0 + yyj1768++ + if yyhl1768 { + yyb1768 = yyj1768 > l } else { - yyb1717 = r.CheckBreak() + yyb1768 = r.CheckBreak() } - if yyb1717 { + if yyb1768 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20580,13 +21129,13 @@ func (x *NetworkPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj1717++ - if yyhl1717 { - yyb1717 = yyj1717 > l + yyj1768++ + if yyhl1768 { + yyb1768 = yyj1768 > l } else { - yyb1717 = r.CheckBreak() + yyb1768 = r.CheckBreak() } - if yyb1717 { + if yyb1768 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20596,13 +21145,13 @@ func (x *NetworkPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj1717++ - if yyhl1717 { - yyb1717 = yyj1717 > l + yyj1768++ + if yyhl1768 { + yyb1768 = yyj1768 > l } else { - yyb1717 = r.CheckBreak() + yyb1768 = r.CheckBreak() } - if yyb1717 { + if yyb1768 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20610,22 +21159,22 @@ func (x *NetworkPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg1_unversioned.ListMeta{} } else { - yyv1720 := &x.ListMeta - yym1721 := z.DecBinary() - _ = yym1721 + yyv1771 := &x.ListMeta + yym1772 := z.DecBinary() + _ = yym1772 if false { - } else if z.HasExtensions() && z.DecExt(yyv1720) { + } else if z.HasExtensions() && z.DecExt(yyv1771) { } else { - z.DecFallback(yyv1720, false) + z.DecFallback(yyv1771, false) } } - yyj1717++ - if yyhl1717 { - yyb1717 = yyj1717 > l + yyj1768++ + if yyhl1768 { + yyb1768 = yyj1768 > l } else { - yyb1717 = r.CheckBreak() + yyb1768 = r.CheckBreak() } - if yyb1717 { + if yyb1768 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20633,26 +21182,26 @@ func (x *NetworkPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1722 := &x.Items - yym1723 := z.DecBinary() - _ = yym1723 + yyv1773 := &x.Items + yym1774 := z.DecBinary() + _ = yym1774 if false { } else { - h.decSliceNetworkPolicy((*[]NetworkPolicy)(yyv1722), d) + h.decSliceNetworkPolicy((*[]NetworkPolicy)(yyv1773), d) } } for { - yyj1717++ - if yyhl1717 { - yyb1717 = yyj1717 > l + yyj1768++ + if yyhl1768 { + yyb1768 = yyj1768 > l } else { - yyb1717 = r.CheckBreak() + yyb1768 = r.CheckBreak() } - if yyb1717 { + if yyb1768 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1717-1, "") + z.DecStructFieldNotFound(yyj1768-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20662,10 +21211,10 @@ func (x codecSelfer1234) encSliceCustomMetricTarget(v []CustomMetricTarget, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1724 := range v { + for _, yyv1775 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1725 := &yyv1724 - yy1725.CodecEncodeSelf(e) + yy1776 := &yyv1775 + yy1776.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20675,83 +21224,83 @@ func (x codecSelfer1234) decSliceCustomMetricTarget(v *[]CustomMetricTarget, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1726 := *v - yyh1726, yyl1726 := z.DecSliceHelperStart() - var yyc1726 bool - if yyl1726 == 0 { - if yyv1726 == nil { - yyv1726 = []CustomMetricTarget{} - yyc1726 = true - } else if len(yyv1726) != 0 { - yyv1726 = yyv1726[:0] - yyc1726 = true + yyv1777 := *v + yyh1777, yyl1777 := z.DecSliceHelperStart() + var yyc1777 bool + if yyl1777 == 0 { + if yyv1777 == nil { + yyv1777 = []CustomMetricTarget{} + yyc1777 = true + } else if len(yyv1777) != 0 { + yyv1777 = yyv1777[:0] + yyc1777 = true } - } else if yyl1726 > 0 { - var yyrr1726, yyrl1726 int - var yyrt1726 bool - if yyl1726 > cap(yyv1726) { + } else if yyl1777 > 0 { + var yyrr1777, yyrl1777 int + var yyrt1777 bool + if yyl1777 > cap(yyv1777) { - yyrg1726 := len(yyv1726) > 0 - yyv21726 := yyv1726 - yyrl1726, yyrt1726 = z.DecInferLen(yyl1726, z.DecBasicHandle().MaxInitLen, 72) - if yyrt1726 { - if yyrl1726 <= cap(yyv1726) { - yyv1726 = yyv1726[:yyrl1726] + yyrg1777 := len(yyv1777) > 0 + yyv21777 := yyv1777 + yyrl1777, yyrt1777 = z.DecInferLen(yyl1777, z.DecBasicHandle().MaxInitLen, 72) + if yyrt1777 { + if yyrl1777 <= cap(yyv1777) { + yyv1777 = yyv1777[:yyrl1777] } else { - yyv1726 = make([]CustomMetricTarget, yyrl1726) + yyv1777 = make([]CustomMetricTarget, yyrl1777) } } else { - yyv1726 = make([]CustomMetricTarget, yyrl1726) + yyv1777 = make([]CustomMetricTarget, yyrl1777) } - yyc1726 = true - yyrr1726 = len(yyv1726) - if yyrg1726 { - copy(yyv1726, yyv21726) + yyc1777 = true + yyrr1777 = len(yyv1777) + if yyrg1777 { + copy(yyv1777, yyv21777) } - } else if yyl1726 != len(yyv1726) { - yyv1726 = yyv1726[:yyl1726] - yyc1726 = true + } else if yyl1777 != len(yyv1777) { + yyv1777 = yyv1777[:yyl1777] + yyc1777 = true } - yyj1726 := 0 - for ; yyj1726 < yyrr1726; yyj1726++ { - yyh1726.ElemContainerState(yyj1726) + yyj1777 := 0 + for ; yyj1777 < yyrr1777; yyj1777++ { + yyh1777.ElemContainerState(yyj1777) if r.TryDecodeAsNil() { - yyv1726[yyj1726] = CustomMetricTarget{} + yyv1777[yyj1777] = CustomMetricTarget{} } else { - yyv1727 := &yyv1726[yyj1726] - yyv1727.CodecDecodeSelf(d) + yyv1778 := &yyv1777[yyj1777] + yyv1778.CodecDecodeSelf(d) } } - if yyrt1726 { - for ; yyj1726 < yyl1726; yyj1726++ { - yyv1726 = append(yyv1726, CustomMetricTarget{}) - yyh1726.ElemContainerState(yyj1726) + if yyrt1777 { + for ; yyj1777 < yyl1777; yyj1777++ { + yyv1777 = append(yyv1777, CustomMetricTarget{}) + yyh1777.ElemContainerState(yyj1777) if r.TryDecodeAsNil() { - yyv1726[yyj1726] = CustomMetricTarget{} + yyv1777[yyj1777] = CustomMetricTarget{} } else { - yyv1728 := &yyv1726[yyj1726] - yyv1728.CodecDecodeSelf(d) + yyv1779 := &yyv1777[yyj1777] + yyv1779.CodecDecodeSelf(d) } } } } else { - yyj1726 := 0 - for ; !r.CheckBreak(); yyj1726++ { + yyj1777 := 0 + for ; !r.CheckBreak(); yyj1777++ { - if yyj1726 >= len(yyv1726) { - yyv1726 = append(yyv1726, CustomMetricTarget{}) // var yyz1726 CustomMetricTarget - yyc1726 = true + if yyj1777 >= len(yyv1777) { + yyv1777 = append(yyv1777, CustomMetricTarget{}) // var yyz1777 CustomMetricTarget + yyc1777 = true } - yyh1726.ElemContainerState(yyj1726) - if yyj1726 < len(yyv1726) { + yyh1777.ElemContainerState(yyj1777) + if yyj1777 < len(yyv1777) { if r.TryDecodeAsNil() { - yyv1726[yyj1726] = CustomMetricTarget{} + yyv1777[yyj1777] = CustomMetricTarget{} } else { - yyv1729 := &yyv1726[yyj1726] - yyv1729.CodecDecodeSelf(d) + yyv1780 := &yyv1777[yyj1777] + yyv1780.CodecDecodeSelf(d) } } else { @@ -20759,17 +21308,17 @@ func (x codecSelfer1234) decSliceCustomMetricTarget(v *[]CustomMetricTarget, d * } } - if yyj1726 < len(yyv1726) { - yyv1726 = yyv1726[:yyj1726] - yyc1726 = true - } else if yyj1726 == 0 && yyv1726 == nil { - yyv1726 = []CustomMetricTarget{} - yyc1726 = true + if yyj1777 < len(yyv1777) { + yyv1777 = yyv1777[:yyj1777] + yyc1777 = true + } else if yyj1777 == 0 && yyv1777 == nil { + yyv1777 = []CustomMetricTarget{} + yyc1777 = true } } - yyh1726.End() - if yyc1726 { - *v = yyv1726 + yyh1777.End() + if yyc1777 { + *v = yyv1777 } } @@ -20778,10 +21327,10 @@ func (x codecSelfer1234) encSliceCustomMetricCurrentStatus(v []CustomMetricCurre z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1730 := range v { + for _, yyv1781 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1731 := &yyv1730 - yy1731.CodecEncodeSelf(e) + yy1782 := &yyv1781 + yy1782.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20791,83 +21340,83 @@ func (x codecSelfer1234) decSliceCustomMetricCurrentStatus(v *[]CustomMetricCurr z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1732 := *v - yyh1732, yyl1732 := z.DecSliceHelperStart() - var yyc1732 bool - if yyl1732 == 0 { - if yyv1732 == nil { - yyv1732 = []CustomMetricCurrentStatus{} - yyc1732 = true - } else if len(yyv1732) != 0 { - yyv1732 = yyv1732[:0] - yyc1732 = true + yyv1783 := *v + yyh1783, yyl1783 := z.DecSliceHelperStart() + var yyc1783 bool + if yyl1783 == 0 { + if yyv1783 == nil { + yyv1783 = []CustomMetricCurrentStatus{} + yyc1783 = true + } else if len(yyv1783) != 0 { + yyv1783 = yyv1783[:0] + yyc1783 = true } - } else if yyl1732 > 0 { - var yyrr1732, yyrl1732 int - var yyrt1732 bool - if yyl1732 > cap(yyv1732) { + } else if yyl1783 > 0 { + var yyrr1783, yyrl1783 int + var yyrt1783 bool + if yyl1783 > cap(yyv1783) { - yyrg1732 := len(yyv1732) > 0 - yyv21732 := yyv1732 - yyrl1732, yyrt1732 = z.DecInferLen(yyl1732, z.DecBasicHandle().MaxInitLen, 72) - if yyrt1732 { - if yyrl1732 <= cap(yyv1732) { - yyv1732 = yyv1732[:yyrl1732] + yyrg1783 := len(yyv1783) > 0 + yyv21783 := yyv1783 + yyrl1783, yyrt1783 = z.DecInferLen(yyl1783, z.DecBasicHandle().MaxInitLen, 72) + if yyrt1783 { + if yyrl1783 <= cap(yyv1783) { + yyv1783 = yyv1783[:yyrl1783] } else { - yyv1732 = make([]CustomMetricCurrentStatus, yyrl1732) + yyv1783 = make([]CustomMetricCurrentStatus, yyrl1783) } } else { - yyv1732 = make([]CustomMetricCurrentStatus, yyrl1732) + yyv1783 = make([]CustomMetricCurrentStatus, yyrl1783) } - yyc1732 = true - yyrr1732 = len(yyv1732) - if yyrg1732 { - copy(yyv1732, yyv21732) + yyc1783 = true + yyrr1783 = len(yyv1783) + if yyrg1783 { + copy(yyv1783, yyv21783) } - } else if yyl1732 != len(yyv1732) { - yyv1732 = yyv1732[:yyl1732] - yyc1732 = true + } else if yyl1783 != len(yyv1783) { + yyv1783 = yyv1783[:yyl1783] + yyc1783 = true } - yyj1732 := 0 - for ; yyj1732 < yyrr1732; yyj1732++ { - yyh1732.ElemContainerState(yyj1732) + yyj1783 := 0 + for ; yyj1783 < yyrr1783; yyj1783++ { + yyh1783.ElemContainerState(yyj1783) if r.TryDecodeAsNil() { - yyv1732[yyj1732] = CustomMetricCurrentStatus{} + yyv1783[yyj1783] = CustomMetricCurrentStatus{} } else { - yyv1733 := &yyv1732[yyj1732] - yyv1733.CodecDecodeSelf(d) + yyv1784 := &yyv1783[yyj1783] + yyv1784.CodecDecodeSelf(d) } } - if yyrt1732 { - for ; yyj1732 < yyl1732; yyj1732++ { - yyv1732 = append(yyv1732, CustomMetricCurrentStatus{}) - yyh1732.ElemContainerState(yyj1732) + if yyrt1783 { + for ; yyj1783 < yyl1783; yyj1783++ { + yyv1783 = append(yyv1783, CustomMetricCurrentStatus{}) + yyh1783.ElemContainerState(yyj1783) if r.TryDecodeAsNil() { - yyv1732[yyj1732] = CustomMetricCurrentStatus{} + yyv1783[yyj1783] = CustomMetricCurrentStatus{} } else { - yyv1734 := &yyv1732[yyj1732] - yyv1734.CodecDecodeSelf(d) + yyv1785 := &yyv1783[yyj1783] + yyv1785.CodecDecodeSelf(d) } } } } else { - yyj1732 := 0 - for ; !r.CheckBreak(); yyj1732++ { + yyj1783 := 0 + for ; !r.CheckBreak(); yyj1783++ { - if yyj1732 >= len(yyv1732) { - yyv1732 = append(yyv1732, CustomMetricCurrentStatus{}) // var yyz1732 CustomMetricCurrentStatus - yyc1732 = true + if yyj1783 >= len(yyv1783) { + yyv1783 = append(yyv1783, CustomMetricCurrentStatus{}) // var yyz1783 CustomMetricCurrentStatus + yyc1783 = true } - yyh1732.ElemContainerState(yyj1732) - if yyj1732 < len(yyv1732) { + yyh1783.ElemContainerState(yyj1783) + if yyj1783 < len(yyv1783) { if r.TryDecodeAsNil() { - yyv1732[yyj1732] = CustomMetricCurrentStatus{} + yyv1783[yyj1783] = CustomMetricCurrentStatus{} } else { - yyv1735 := &yyv1732[yyj1732] - yyv1735.CodecDecodeSelf(d) + yyv1786 := &yyv1783[yyj1783] + yyv1786.CodecDecodeSelf(d) } } else { @@ -20875,17 +21424,17 @@ func (x codecSelfer1234) decSliceCustomMetricCurrentStatus(v *[]CustomMetricCurr } } - if yyj1732 < len(yyv1732) { - yyv1732 = yyv1732[:yyj1732] - yyc1732 = true - } else if yyj1732 == 0 && yyv1732 == nil { - yyv1732 = []CustomMetricCurrentStatus{} - yyc1732 = true + if yyj1783 < len(yyv1783) { + yyv1783 = yyv1783[:yyj1783] + yyc1783 = true + } else if yyj1783 == 0 && yyv1783 == nil { + yyv1783 = []CustomMetricCurrentStatus{} + yyc1783 = true } } - yyh1732.End() - if yyc1732 { - *v = yyv1732 + yyh1783.End() + if yyc1783 { + *v = yyv1783 } } @@ -20894,10 +21443,10 @@ func (x codecSelfer1234) encSliceHorizontalPodAutoscaler(v []HorizontalPodAutosc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1736 := range v { + for _, yyv1787 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1737 := &yyv1736 - yy1737.CodecEncodeSelf(e) + yy1788 := &yyv1787 + yy1788.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20907,83 +21456,83 @@ func (x codecSelfer1234) decSliceHorizontalPodAutoscaler(v *[]HorizontalPodAutos z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1738 := *v - yyh1738, yyl1738 := z.DecSliceHelperStart() - var yyc1738 bool - if yyl1738 == 0 { - if yyv1738 == nil { - yyv1738 = []HorizontalPodAutoscaler{} - yyc1738 = true - } else if len(yyv1738) != 0 { - yyv1738 = yyv1738[:0] - yyc1738 = true + yyv1789 := *v + yyh1789, yyl1789 := z.DecSliceHelperStart() + var yyc1789 bool + if yyl1789 == 0 { + if yyv1789 == nil { + yyv1789 = []HorizontalPodAutoscaler{} + yyc1789 = true + } else if len(yyv1789) != 0 { + yyv1789 = yyv1789[:0] + yyc1789 = true } - } else if yyl1738 > 0 { - var yyrr1738, yyrl1738 int - var yyrt1738 bool - if yyl1738 > cap(yyv1738) { + } else if yyl1789 > 0 { + var yyrr1789, yyrl1789 int + var yyrt1789 bool + if yyl1789 > cap(yyv1789) { - yyrg1738 := len(yyv1738) > 0 - yyv21738 := yyv1738 - yyrl1738, yyrt1738 = z.DecInferLen(yyl1738, z.DecBasicHandle().MaxInitLen, 376) - if yyrt1738 { - if yyrl1738 <= cap(yyv1738) { - yyv1738 = yyv1738[:yyrl1738] + yyrg1789 := len(yyv1789) > 0 + yyv21789 := yyv1789 + yyrl1789, yyrt1789 = z.DecInferLen(yyl1789, z.DecBasicHandle().MaxInitLen, 376) + if yyrt1789 { + if yyrl1789 <= cap(yyv1789) { + yyv1789 = yyv1789[:yyrl1789] } else { - yyv1738 = make([]HorizontalPodAutoscaler, yyrl1738) + yyv1789 = make([]HorizontalPodAutoscaler, yyrl1789) } } else { - yyv1738 = make([]HorizontalPodAutoscaler, yyrl1738) + yyv1789 = make([]HorizontalPodAutoscaler, yyrl1789) } - yyc1738 = true - yyrr1738 = len(yyv1738) - if yyrg1738 { - copy(yyv1738, yyv21738) + yyc1789 = true + yyrr1789 = len(yyv1789) + if yyrg1789 { + copy(yyv1789, yyv21789) } - } else if yyl1738 != len(yyv1738) { - yyv1738 = yyv1738[:yyl1738] - yyc1738 = true + } else if yyl1789 != len(yyv1789) { + yyv1789 = yyv1789[:yyl1789] + yyc1789 = true } - yyj1738 := 0 - for ; yyj1738 < yyrr1738; yyj1738++ { - yyh1738.ElemContainerState(yyj1738) + yyj1789 := 0 + for ; yyj1789 < yyrr1789; yyj1789++ { + yyh1789.ElemContainerState(yyj1789) if r.TryDecodeAsNil() { - yyv1738[yyj1738] = HorizontalPodAutoscaler{} + yyv1789[yyj1789] = HorizontalPodAutoscaler{} } else { - yyv1739 := &yyv1738[yyj1738] - yyv1739.CodecDecodeSelf(d) + yyv1790 := &yyv1789[yyj1789] + yyv1790.CodecDecodeSelf(d) } } - if yyrt1738 { - for ; yyj1738 < yyl1738; yyj1738++ { - yyv1738 = append(yyv1738, HorizontalPodAutoscaler{}) - yyh1738.ElemContainerState(yyj1738) + if yyrt1789 { + for ; yyj1789 < yyl1789; yyj1789++ { + yyv1789 = append(yyv1789, HorizontalPodAutoscaler{}) + yyh1789.ElemContainerState(yyj1789) if r.TryDecodeAsNil() { - yyv1738[yyj1738] = HorizontalPodAutoscaler{} + yyv1789[yyj1789] = HorizontalPodAutoscaler{} } else { - yyv1740 := &yyv1738[yyj1738] - yyv1740.CodecDecodeSelf(d) + yyv1791 := &yyv1789[yyj1789] + yyv1791.CodecDecodeSelf(d) } } } } else { - yyj1738 := 0 - for ; !r.CheckBreak(); yyj1738++ { + yyj1789 := 0 + for ; !r.CheckBreak(); yyj1789++ { - if yyj1738 >= len(yyv1738) { - yyv1738 = append(yyv1738, HorizontalPodAutoscaler{}) // var yyz1738 HorizontalPodAutoscaler - yyc1738 = true + if yyj1789 >= len(yyv1789) { + yyv1789 = append(yyv1789, HorizontalPodAutoscaler{}) // var yyz1789 HorizontalPodAutoscaler + yyc1789 = true } - yyh1738.ElemContainerState(yyj1738) - if yyj1738 < len(yyv1738) { + yyh1789.ElemContainerState(yyj1789) + if yyj1789 < len(yyv1789) { if r.TryDecodeAsNil() { - yyv1738[yyj1738] = HorizontalPodAutoscaler{} + yyv1789[yyj1789] = HorizontalPodAutoscaler{} } else { - yyv1741 := &yyv1738[yyj1738] - yyv1741.CodecDecodeSelf(d) + yyv1792 := &yyv1789[yyj1789] + yyv1792.CodecDecodeSelf(d) } } else { @@ -20991,17 +21540,17 @@ func (x codecSelfer1234) decSliceHorizontalPodAutoscaler(v *[]HorizontalPodAutos } } - if yyj1738 < len(yyv1738) { - yyv1738 = yyv1738[:yyj1738] - yyc1738 = true - } else if yyj1738 == 0 && yyv1738 == nil { - yyv1738 = []HorizontalPodAutoscaler{} - yyc1738 = true + if yyj1789 < len(yyv1789) { + yyv1789 = yyv1789[:yyj1789] + yyc1789 = true + } else if yyj1789 == 0 && yyv1789 == nil { + yyv1789 = []HorizontalPodAutoscaler{} + yyc1789 = true } } - yyh1738.End() - if yyc1738 { - *v = yyv1738 + yyh1789.End() + if yyc1789 { + *v = yyv1789 } } @@ -21010,10 +21559,10 @@ func (x codecSelfer1234) encSliceAPIVersion(v []APIVersion, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1742 := range v { + for _, yyv1793 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1743 := &yyv1742 - yy1743.CodecEncodeSelf(e) + yy1794 := &yyv1793 + yy1794.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21023,83 +21572,83 @@ func (x codecSelfer1234) decSliceAPIVersion(v *[]APIVersion, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1744 := *v - yyh1744, yyl1744 := z.DecSliceHelperStart() - var yyc1744 bool - if yyl1744 == 0 { - if yyv1744 == nil { - yyv1744 = []APIVersion{} - yyc1744 = true - } else if len(yyv1744) != 0 { - yyv1744 = yyv1744[:0] - yyc1744 = true + yyv1795 := *v + yyh1795, yyl1795 := z.DecSliceHelperStart() + var yyc1795 bool + if yyl1795 == 0 { + if yyv1795 == nil { + yyv1795 = []APIVersion{} + yyc1795 = true + } else if len(yyv1795) != 0 { + yyv1795 = yyv1795[:0] + yyc1795 = true } - } else if yyl1744 > 0 { - var yyrr1744, yyrl1744 int - var yyrt1744 bool - if yyl1744 > cap(yyv1744) { + } else if yyl1795 > 0 { + var yyrr1795, yyrl1795 int + var yyrt1795 bool + if yyl1795 > cap(yyv1795) { - yyrg1744 := len(yyv1744) > 0 - yyv21744 := yyv1744 - yyrl1744, yyrt1744 = z.DecInferLen(yyl1744, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1744 { - if yyrl1744 <= cap(yyv1744) { - yyv1744 = yyv1744[:yyrl1744] + yyrg1795 := len(yyv1795) > 0 + yyv21795 := yyv1795 + yyrl1795, yyrt1795 = z.DecInferLen(yyl1795, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1795 { + if yyrl1795 <= cap(yyv1795) { + yyv1795 = yyv1795[:yyrl1795] } else { - yyv1744 = make([]APIVersion, yyrl1744) + yyv1795 = make([]APIVersion, yyrl1795) } } else { - yyv1744 = make([]APIVersion, yyrl1744) + yyv1795 = make([]APIVersion, yyrl1795) } - yyc1744 = true - yyrr1744 = len(yyv1744) - if yyrg1744 { - copy(yyv1744, yyv21744) + yyc1795 = true + yyrr1795 = len(yyv1795) + if yyrg1795 { + copy(yyv1795, yyv21795) } - } else if yyl1744 != len(yyv1744) { - yyv1744 = yyv1744[:yyl1744] - yyc1744 = true + } else if yyl1795 != len(yyv1795) { + yyv1795 = yyv1795[:yyl1795] + yyc1795 = true } - yyj1744 := 0 - for ; yyj1744 < yyrr1744; yyj1744++ { - yyh1744.ElemContainerState(yyj1744) + yyj1795 := 0 + for ; yyj1795 < yyrr1795; yyj1795++ { + yyh1795.ElemContainerState(yyj1795) if r.TryDecodeAsNil() { - yyv1744[yyj1744] = APIVersion{} + yyv1795[yyj1795] = APIVersion{} } else { - yyv1745 := &yyv1744[yyj1744] - yyv1745.CodecDecodeSelf(d) + yyv1796 := &yyv1795[yyj1795] + yyv1796.CodecDecodeSelf(d) } } - if yyrt1744 { - for ; yyj1744 < yyl1744; yyj1744++ { - yyv1744 = append(yyv1744, APIVersion{}) - yyh1744.ElemContainerState(yyj1744) + if yyrt1795 { + for ; yyj1795 < yyl1795; yyj1795++ { + yyv1795 = append(yyv1795, APIVersion{}) + yyh1795.ElemContainerState(yyj1795) if r.TryDecodeAsNil() { - yyv1744[yyj1744] = APIVersion{} + yyv1795[yyj1795] = APIVersion{} } else { - yyv1746 := &yyv1744[yyj1744] - yyv1746.CodecDecodeSelf(d) + yyv1797 := &yyv1795[yyj1795] + yyv1797.CodecDecodeSelf(d) } } } } else { - yyj1744 := 0 - for ; !r.CheckBreak(); yyj1744++ { + yyj1795 := 0 + for ; !r.CheckBreak(); yyj1795++ { - if yyj1744 >= len(yyv1744) { - yyv1744 = append(yyv1744, APIVersion{}) // var yyz1744 APIVersion - yyc1744 = true + if yyj1795 >= len(yyv1795) { + yyv1795 = append(yyv1795, APIVersion{}) // var yyz1795 APIVersion + yyc1795 = true } - yyh1744.ElemContainerState(yyj1744) - if yyj1744 < len(yyv1744) { + yyh1795.ElemContainerState(yyj1795) + if yyj1795 < len(yyv1795) { if r.TryDecodeAsNil() { - yyv1744[yyj1744] = APIVersion{} + yyv1795[yyj1795] = APIVersion{} } else { - yyv1747 := &yyv1744[yyj1744] - yyv1747.CodecDecodeSelf(d) + yyv1798 := &yyv1795[yyj1795] + yyv1798.CodecDecodeSelf(d) } } else { @@ -21107,17 +21656,17 @@ func (x codecSelfer1234) decSliceAPIVersion(v *[]APIVersion, d *codec1978.Decode } } - if yyj1744 < len(yyv1744) { - yyv1744 = yyv1744[:yyj1744] - yyc1744 = true - } else if yyj1744 == 0 && yyv1744 == nil { - yyv1744 = []APIVersion{} - yyc1744 = true + if yyj1795 < len(yyv1795) { + yyv1795 = yyv1795[:yyj1795] + yyc1795 = true + } else if yyj1795 == 0 && yyv1795 == nil { + yyv1795 = []APIVersion{} + yyc1795 = true } } - yyh1744.End() - if yyc1744 { - *v = yyv1744 + yyh1795.End() + if yyc1795 { + *v = yyv1795 } } @@ -21126,10 +21675,10 @@ func (x codecSelfer1234) encSliceThirdPartyResource(v []ThirdPartyResource, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1748 := range v { + for _, yyv1799 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1749 := &yyv1748 - yy1749.CodecEncodeSelf(e) + yy1800 := &yyv1799 + yy1800.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21139,83 +21688,83 @@ func (x codecSelfer1234) decSliceThirdPartyResource(v *[]ThirdPartyResource, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1750 := *v - yyh1750, yyl1750 := z.DecSliceHelperStart() - var yyc1750 bool - if yyl1750 == 0 { - if yyv1750 == nil { - yyv1750 = []ThirdPartyResource{} - yyc1750 = true - } else if len(yyv1750) != 0 { - yyv1750 = yyv1750[:0] - yyc1750 = true + yyv1801 := *v + yyh1801, yyl1801 := z.DecSliceHelperStart() + var yyc1801 bool + if yyl1801 == 0 { + if yyv1801 == nil { + yyv1801 = []ThirdPartyResource{} + yyc1801 = true + } else if len(yyv1801) != 0 { + yyv1801 = yyv1801[:0] + yyc1801 = true } - } else if yyl1750 > 0 { - var yyrr1750, yyrl1750 int - var yyrt1750 bool - if yyl1750 > cap(yyv1750) { + } else if yyl1801 > 0 { + var yyrr1801, yyrl1801 int + var yyrt1801 bool + if yyl1801 > cap(yyv1801) { - yyrg1750 := len(yyv1750) > 0 - yyv21750 := yyv1750 - yyrl1750, yyrt1750 = z.DecInferLen(yyl1750, z.DecBasicHandle().MaxInitLen, 296) - if yyrt1750 { - if yyrl1750 <= cap(yyv1750) { - yyv1750 = yyv1750[:yyrl1750] + yyrg1801 := len(yyv1801) > 0 + yyv21801 := yyv1801 + yyrl1801, yyrt1801 = z.DecInferLen(yyl1801, z.DecBasicHandle().MaxInitLen, 296) + if yyrt1801 { + if yyrl1801 <= cap(yyv1801) { + yyv1801 = yyv1801[:yyrl1801] } else { - yyv1750 = make([]ThirdPartyResource, yyrl1750) + yyv1801 = make([]ThirdPartyResource, yyrl1801) } } else { - yyv1750 = make([]ThirdPartyResource, yyrl1750) + yyv1801 = make([]ThirdPartyResource, yyrl1801) } - yyc1750 = true - yyrr1750 = len(yyv1750) - if yyrg1750 { - copy(yyv1750, yyv21750) + yyc1801 = true + yyrr1801 = len(yyv1801) + if yyrg1801 { + copy(yyv1801, yyv21801) } - } else if yyl1750 != len(yyv1750) { - yyv1750 = yyv1750[:yyl1750] - yyc1750 = true + } else if yyl1801 != len(yyv1801) { + yyv1801 = yyv1801[:yyl1801] + yyc1801 = true } - yyj1750 := 0 - for ; yyj1750 < yyrr1750; yyj1750++ { - yyh1750.ElemContainerState(yyj1750) + yyj1801 := 0 + for ; yyj1801 < yyrr1801; yyj1801++ { + yyh1801.ElemContainerState(yyj1801) if r.TryDecodeAsNil() { - yyv1750[yyj1750] = ThirdPartyResource{} + yyv1801[yyj1801] = ThirdPartyResource{} } else { - yyv1751 := &yyv1750[yyj1750] - yyv1751.CodecDecodeSelf(d) + yyv1802 := &yyv1801[yyj1801] + yyv1802.CodecDecodeSelf(d) } } - if yyrt1750 { - for ; yyj1750 < yyl1750; yyj1750++ { - yyv1750 = append(yyv1750, ThirdPartyResource{}) - yyh1750.ElemContainerState(yyj1750) + if yyrt1801 { + for ; yyj1801 < yyl1801; yyj1801++ { + yyv1801 = append(yyv1801, ThirdPartyResource{}) + yyh1801.ElemContainerState(yyj1801) if r.TryDecodeAsNil() { - yyv1750[yyj1750] = ThirdPartyResource{} + yyv1801[yyj1801] = ThirdPartyResource{} } else { - yyv1752 := &yyv1750[yyj1750] - yyv1752.CodecDecodeSelf(d) + yyv1803 := &yyv1801[yyj1801] + yyv1803.CodecDecodeSelf(d) } } } } else { - yyj1750 := 0 - for ; !r.CheckBreak(); yyj1750++ { + yyj1801 := 0 + for ; !r.CheckBreak(); yyj1801++ { - if yyj1750 >= len(yyv1750) { - yyv1750 = append(yyv1750, ThirdPartyResource{}) // var yyz1750 ThirdPartyResource - yyc1750 = true + if yyj1801 >= len(yyv1801) { + yyv1801 = append(yyv1801, ThirdPartyResource{}) // var yyz1801 ThirdPartyResource + yyc1801 = true } - yyh1750.ElemContainerState(yyj1750) - if yyj1750 < len(yyv1750) { + yyh1801.ElemContainerState(yyj1801) + if yyj1801 < len(yyv1801) { if r.TryDecodeAsNil() { - yyv1750[yyj1750] = ThirdPartyResource{} + yyv1801[yyj1801] = ThirdPartyResource{} } else { - yyv1753 := &yyv1750[yyj1750] - yyv1753.CodecDecodeSelf(d) + yyv1804 := &yyv1801[yyj1801] + yyv1804.CodecDecodeSelf(d) } } else { @@ -21223,17 +21772,17 @@ func (x codecSelfer1234) decSliceThirdPartyResource(v *[]ThirdPartyResource, d * } } - if yyj1750 < len(yyv1750) { - yyv1750 = yyv1750[:yyj1750] - yyc1750 = true - } else if yyj1750 == 0 && yyv1750 == nil { - yyv1750 = []ThirdPartyResource{} - yyc1750 = true + if yyj1801 < len(yyv1801) { + yyv1801 = yyv1801[:yyj1801] + yyc1801 = true + } else if yyj1801 == 0 && yyv1801 == nil { + yyv1801 = []ThirdPartyResource{} + yyc1801 = true } } - yyh1750.End() - if yyc1750 { - *v = yyv1750 + yyh1801.End() + if yyc1801 { + *v = yyv1801 } } @@ -21242,10 +21791,10 @@ func (x codecSelfer1234) encSliceDeployment(v []Deployment, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1754 := range v { + for _, yyv1805 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1755 := &yyv1754 - yy1755.CodecEncodeSelf(e) + yy1806 := &yyv1805 + yy1806.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21255,83 +21804,83 @@ func (x codecSelfer1234) decSliceDeployment(v *[]Deployment, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1756 := *v - yyh1756, yyl1756 := z.DecSliceHelperStart() - var yyc1756 bool - if yyl1756 == 0 { - if yyv1756 == nil { - yyv1756 = []Deployment{} - yyc1756 = true - } else if len(yyv1756) != 0 { - yyv1756 = yyv1756[:0] - yyc1756 = true + yyv1807 := *v + yyh1807, yyl1807 := z.DecSliceHelperStart() + var yyc1807 bool + if yyl1807 == 0 { + if yyv1807 == nil { + yyv1807 = []Deployment{} + yyc1807 = true + } else if len(yyv1807) != 0 { + yyv1807 = yyv1807[:0] + yyc1807 = true } - } else if yyl1756 > 0 { - var yyrr1756, yyrl1756 int - var yyrt1756 bool - if yyl1756 > cap(yyv1756) { + } else if yyl1807 > 0 { + var yyrr1807, yyrl1807 int + var yyrt1807 bool + if yyl1807 > cap(yyv1807) { - yyrg1756 := len(yyv1756) > 0 - yyv21756 := yyv1756 - yyrl1756, yyrt1756 = z.DecInferLen(yyl1756, z.DecBasicHandle().MaxInitLen, 824) - if yyrt1756 { - if yyrl1756 <= cap(yyv1756) { - yyv1756 = yyv1756[:yyrl1756] + yyrg1807 := len(yyv1807) > 0 + yyv21807 := yyv1807 + yyrl1807, yyrt1807 = z.DecInferLen(yyl1807, z.DecBasicHandle().MaxInitLen, 824) + if yyrt1807 { + if yyrl1807 <= cap(yyv1807) { + yyv1807 = yyv1807[:yyrl1807] } else { - yyv1756 = make([]Deployment, yyrl1756) + yyv1807 = make([]Deployment, yyrl1807) } } else { - yyv1756 = make([]Deployment, yyrl1756) + yyv1807 = make([]Deployment, yyrl1807) } - yyc1756 = true - yyrr1756 = len(yyv1756) - if yyrg1756 { - copy(yyv1756, yyv21756) + yyc1807 = true + yyrr1807 = len(yyv1807) + if yyrg1807 { + copy(yyv1807, yyv21807) } - } else if yyl1756 != len(yyv1756) { - yyv1756 = yyv1756[:yyl1756] - yyc1756 = true + } else if yyl1807 != len(yyv1807) { + yyv1807 = yyv1807[:yyl1807] + yyc1807 = true } - yyj1756 := 0 - for ; yyj1756 < yyrr1756; yyj1756++ { - yyh1756.ElemContainerState(yyj1756) + yyj1807 := 0 + for ; yyj1807 < yyrr1807; yyj1807++ { + yyh1807.ElemContainerState(yyj1807) if r.TryDecodeAsNil() { - yyv1756[yyj1756] = Deployment{} + yyv1807[yyj1807] = Deployment{} } else { - yyv1757 := &yyv1756[yyj1756] - yyv1757.CodecDecodeSelf(d) + yyv1808 := &yyv1807[yyj1807] + yyv1808.CodecDecodeSelf(d) } } - if yyrt1756 { - for ; yyj1756 < yyl1756; yyj1756++ { - yyv1756 = append(yyv1756, Deployment{}) - yyh1756.ElemContainerState(yyj1756) + if yyrt1807 { + for ; yyj1807 < yyl1807; yyj1807++ { + yyv1807 = append(yyv1807, Deployment{}) + yyh1807.ElemContainerState(yyj1807) if r.TryDecodeAsNil() { - yyv1756[yyj1756] = Deployment{} + yyv1807[yyj1807] = Deployment{} } else { - yyv1758 := &yyv1756[yyj1756] - yyv1758.CodecDecodeSelf(d) + yyv1809 := &yyv1807[yyj1807] + yyv1809.CodecDecodeSelf(d) } } } } else { - yyj1756 := 0 - for ; !r.CheckBreak(); yyj1756++ { + yyj1807 := 0 + for ; !r.CheckBreak(); yyj1807++ { - if yyj1756 >= len(yyv1756) { - yyv1756 = append(yyv1756, Deployment{}) // var yyz1756 Deployment - yyc1756 = true + if yyj1807 >= len(yyv1807) { + yyv1807 = append(yyv1807, Deployment{}) // var yyz1807 Deployment + yyc1807 = true } - yyh1756.ElemContainerState(yyj1756) - if yyj1756 < len(yyv1756) { + yyh1807.ElemContainerState(yyj1807) + if yyj1807 < len(yyv1807) { if r.TryDecodeAsNil() { - yyv1756[yyj1756] = Deployment{} + yyv1807[yyj1807] = Deployment{} } else { - yyv1759 := &yyv1756[yyj1756] - yyv1759.CodecDecodeSelf(d) + yyv1810 := &yyv1807[yyj1807] + yyv1810.CodecDecodeSelf(d) } } else { @@ -21339,17 +21888,17 @@ func (x codecSelfer1234) decSliceDeployment(v *[]Deployment, d *codec1978.Decode } } - if yyj1756 < len(yyv1756) { - yyv1756 = yyv1756[:yyj1756] - yyc1756 = true - } else if yyj1756 == 0 && yyv1756 == nil { - yyv1756 = []Deployment{} - yyc1756 = true + if yyj1807 < len(yyv1807) { + yyv1807 = yyv1807[:yyj1807] + yyc1807 = true + } else if yyj1807 == 0 && yyv1807 == nil { + yyv1807 = []Deployment{} + yyc1807 = true } } - yyh1756.End() - if yyc1756 { - *v = yyv1756 + yyh1807.End() + if yyc1807 { + *v = yyv1807 } } @@ -21358,10 +21907,10 @@ func (x codecSelfer1234) encSliceDaemonSet(v []DaemonSet, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1760 := range v { + for _, yyv1811 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1761 := &yyv1760 - yy1761.CodecEncodeSelf(e) + yy1812 := &yyv1811 + yy1812.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21371,83 +21920,83 @@ func (x codecSelfer1234) decSliceDaemonSet(v *[]DaemonSet, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1762 := *v - yyh1762, yyl1762 := z.DecSliceHelperStart() - var yyc1762 bool - if yyl1762 == 0 { - if yyv1762 == nil { - yyv1762 = []DaemonSet{} - yyc1762 = true - } else if len(yyv1762) != 0 { - yyv1762 = yyv1762[:0] - yyc1762 = true + yyv1813 := *v + yyh1813, yyl1813 := z.DecSliceHelperStart() + var yyc1813 bool + if yyl1813 == 0 { + if yyv1813 == nil { + yyv1813 = []DaemonSet{} + yyc1813 = true + } else if len(yyv1813) != 0 { + yyv1813 = yyv1813[:0] + yyc1813 = true } - } else if yyl1762 > 0 { - var yyrr1762, yyrl1762 int - var yyrt1762 bool - if yyl1762 > cap(yyv1762) { + } else if yyl1813 > 0 { + var yyrr1813, yyrl1813 int + var yyrt1813 bool + if yyl1813 > cap(yyv1813) { - yyrg1762 := len(yyv1762) > 0 - yyv21762 := yyv1762 - yyrl1762, yyrt1762 = z.DecInferLen(yyl1762, z.DecBasicHandle().MaxInitLen, 752) - if yyrt1762 { - if yyrl1762 <= cap(yyv1762) { - yyv1762 = yyv1762[:yyrl1762] + yyrg1813 := len(yyv1813) > 0 + yyv21813 := yyv1813 + yyrl1813, yyrt1813 = z.DecInferLen(yyl1813, z.DecBasicHandle().MaxInitLen, 752) + if yyrt1813 { + if yyrl1813 <= cap(yyv1813) { + yyv1813 = yyv1813[:yyrl1813] } else { - yyv1762 = make([]DaemonSet, yyrl1762) + yyv1813 = make([]DaemonSet, yyrl1813) } } else { - yyv1762 = make([]DaemonSet, yyrl1762) + yyv1813 = make([]DaemonSet, yyrl1813) } - yyc1762 = true - yyrr1762 = len(yyv1762) - if yyrg1762 { - copy(yyv1762, yyv21762) + yyc1813 = true + yyrr1813 = len(yyv1813) + if yyrg1813 { + copy(yyv1813, yyv21813) } - } else if yyl1762 != len(yyv1762) { - yyv1762 = yyv1762[:yyl1762] - yyc1762 = true + } else if yyl1813 != len(yyv1813) { + yyv1813 = yyv1813[:yyl1813] + yyc1813 = true } - yyj1762 := 0 - for ; yyj1762 < yyrr1762; yyj1762++ { - yyh1762.ElemContainerState(yyj1762) + yyj1813 := 0 + for ; yyj1813 < yyrr1813; yyj1813++ { + yyh1813.ElemContainerState(yyj1813) if r.TryDecodeAsNil() { - yyv1762[yyj1762] = DaemonSet{} + yyv1813[yyj1813] = DaemonSet{} } else { - yyv1763 := &yyv1762[yyj1762] - yyv1763.CodecDecodeSelf(d) + yyv1814 := &yyv1813[yyj1813] + yyv1814.CodecDecodeSelf(d) } } - if yyrt1762 { - for ; yyj1762 < yyl1762; yyj1762++ { - yyv1762 = append(yyv1762, DaemonSet{}) - yyh1762.ElemContainerState(yyj1762) + if yyrt1813 { + for ; yyj1813 < yyl1813; yyj1813++ { + yyv1813 = append(yyv1813, DaemonSet{}) + yyh1813.ElemContainerState(yyj1813) if r.TryDecodeAsNil() { - yyv1762[yyj1762] = DaemonSet{} + yyv1813[yyj1813] = DaemonSet{} } else { - yyv1764 := &yyv1762[yyj1762] - yyv1764.CodecDecodeSelf(d) + yyv1815 := &yyv1813[yyj1813] + yyv1815.CodecDecodeSelf(d) } } } } else { - yyj1762 := 0 - for ; !r.CheckBreak(); yyj1762++ { + yyj1813 := 0 + for ; !r.CheckBreak(); yyj1813++ { - if yyj1762 >= len(yyv1762) { - yyv1762 = append(yyv1762, DaemonSet{}) // var yyz1762 DaemonSet - yyc1762 = true + if yyj1813 >= len(yyv1813) { + yyv1813 = append(yyv1813, DaemonSet{}) // var yyz1813 DaemonSet + yyc1813 = true } - yyh1762.ElemContainerState(yyj1762) - if yyj1762 < len(yyv1762) { + yyh1813.ElemContainerState(yyj1813) + if yyj1813 < len(yyv1813) { if r.TryDecodeAsNil() { - yyv1762[yyj1762] = DaemonSet{} + yyv1813[yyj1813] = DaemonSet{} } else { - yyv1765 := &yyv1762[yyj1762] - yyv1765.CodecDecodeSelf(d) + yyv1816 := &yyv1813[yyj1813] + yyv1816.CodecDecodeSelf(d) } } else { @@ -21455,17 +22004,17 @@ func (x codecSelfer1234) decSliceDaemonSet(v *[]DaemonSet, d *codec1978.Decoder) } } - if yyj1762 < len(yyv1762) { - yyv1762 = yyv1762[:yyj1762] - yyc1762 = true - } else if yyj1762 == 0 && yyv1762 == nil { - yyv1762 = []DaemonSet{} - yyc1762 = true + if yyj1813 < len(yyv1813) { + yyv1813 = yyv1813[:yyj1813] + yyc1813 = true + } else if yyj1813 == 0 && yyv1813 == nil { + yyv1813 = []DaemonSet{} + yyc1813 = true } } - yyh1762.End() - if yyc1762 { - *v = yyv1762 + yyh1813.End() + if yyc1813 { + *v = yyv1813 } } @@ -21474,10 +22023,10 @@ func (x codecSelfer1234) encSliceThirdPartyResourceData(v []ThirdPartyResourceDa z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1766 := range v { + for _, yyv1817 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1767 := &yyv1766 - yy1767.CodecEncodeSelf(e) + yy1818 := &yyv1817 + yy1818.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21487,83 +22036,83 @@ func (x codecSelfer1234) decSliceThirdPartyResourceData(v *[]ThirdPartyResourceD z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1768 := *v - yyh1768, yyl1768 := z.DecSliceHelperStart() - var yyc1768 bool - if yyl1768 == 0 { - if yyv1768 == nil { - yyv1768 = []ThirdPartyResourceData{} - yyc1768 = true - } else if len(yyv1768) != 0 { - yyv1768 = yyv1768[:0] - yyc1768 = true + yyv1819 := *v + yyh1819, yyl1819 := z.DecSliceHelperStart() + var yyc1819 bool + if yyl1819 == 0 { + if yyv1819 == nil { + yyv1819 = []ThirdPartyResourceData{} + yyc1819 = true + } else if len(yyv1819) != 0 { + yyv1819 = yyv1819[:0] + yyc1819 = true } - } else if yyl1768 > 0 { - var yyrr1768, yyrl1768 int - var yyrt1768 bool - if yyl1768 > cap(yyv1768) { + } else if yyl1819 > 0 { + var yyrr1819, yyrl1819 int + var yyrt1819 bool + if yyl1819 > cap(yyv1819) { - yyrg1768 := len(yyv1768) > 0 - yyv21768 := yyv1768 - yyrl1768, yyrt1768 = z.DecInferLen(yyl1768, z.DecBasicHandle().MaxInitLen, 280) - if yyrt1768 { - if yyrl1768 <= cap(yyv1768) { - yyv1768 = yyv1768[:yyrl1768] + yyrg1819 := len(yyv1819) > 0 + yyv21819 := yyv1819 + yyrl1819, yyrt1819 = z.DecInferLen(yyl1819, z.DecBasicHandle().MaxInitLen, 280) + if yyrt1819 { + if yyrl1819 <= cap(yyv1819) { + yyv1819 = yyv1819[:yyrl1819] } else { - yyv1768 = make([]ThirdPartyResourceData, yyrl1768) + yyv1819 = make([]ThirdPartyResourceData, yyrl1819) } } else { - yyv1768 = make([]ThirdPartyResourceData, yyrl1768) + yyv1819 = make([]ThirdPartyResourceData, yyrl1819) } - yyc1768 = true - yyrr1768 = len(yyv1768) - if yyrg1768 { - copy(yyv1768, yyv21768) + yyc1819 = true + yyrr1819 = len(yyv1819) + if yyrg1819 { + copy(yyv1819, yyv21819) } - } else if yyl1768 != len(yyv1768) { - yyv1768 = yyv1768[:yyl1768] - yyc1768 = true + } else if yyl1819 != len(yyv1819) { + yyv1819 = yyv1819[:yyl1819] + yyc1819 = true } - yyj1768 := 0 - for ; yyj1768 < yyrr1768; yyj1768++ { - yyh1768.ElemContainerState(yyj1768) + yyj1819 := 0 + for ; yyj1819 < yyrr1819; yyj1819++ { + yyh1819.ElemContainerState(yyj1819) if r.TryDecodeAsNil() { - yyv1768[yyj1768] = ThirdPartyResourceData{} + yyv1819[yyj1819] = ThirdPartyResourceData{} } else { - yyv1769 := &yyv1768[yyj1768] - yyv1769.CodecDecodeSelf(d) + yyv1820 := &yyv1819[yyj1819] + yyv1820.CodecDecodeSelf(d) } } - if yyrt1768 { - for ; yyj1768 < yyl1768; yyj1768++ { - yyv1768 = append(yyv1768, ThirdPartyResourceData{}) - yyh1768.ElemContainerState(yyj1768) + if yyrt1819 { + for ; yyj1819 < yyl1819; yyj1819++ { + yyv1819 = append(yyv1819, ThirdPartyResourceData{}) + yyh1819.ElemContainerState(yyj1819) if r.TryDecodeAsNil() { - yyv1768[yyj1768] = ThirdPartyResourceData{} + yyv1819[yyj1819] = ThirdPartyResourceData{} } else { - yyv1770 := &yyv1768[yyj1768] - yyv1770.CodecDecodeSelf(d) + yyv1821 := &yyv1819[yyj1819] + yyv1821.CodecDecodeSelf(d) } } } } else { - yyj1768 := 0 - for ; !r.CheckBreak(); yyj1768++ { + yyj1819 := 0 + for ; !r.CheckBreak(); yyj1819++ { - if yyj1768 >= len(yyv1768) { - yyv1768 = append(yyv1768, ThirdPartyResourceData{}) // var yyz1768 ThirdPartyResourceData - yyc1768 = true + if yyj1819 >= len(yyv1819) { + yyv1819 = append(yyv1819, ThirdPartyResourceData{}) // var yyz1819 ThirdPartyResourceData + yyc1819 = true } - yyh1768.ElemContainerState(yyj1768) - if yyj1768 < len(yyv1768) { + yyh1819.ElemContainerState(yyj1819) + if yyj1819 < len(yyv1819) { if r.TryDecodeAsNil() { - yyv1768[yyj1768] = ThirdPartyResourceData{} + yyv1819[yyj1819] = ThirdPartyResourceData{} } else { - yyv1771 := &yyv1768[yyj1768] - yyv1771.CodecDecodeSelf(d) + yyv1822 := &yyv1819[yyj1819] + yyv1822.CodecDecodeSelf(d) } } else { @@ -21571,17 +22120,17 @@ func (x codecSelfer1234) decSliceThirdPartyResourceData(v *[]ThirdPartyResourceD } } - if yyj1768 < len(yyv1768) { - yyv1768 = yyv1768[:yyj1768] - yyc1768 = true - } else if yyj1768 == 0 && yyv1768 == nil { - yyv1768 = []ThirdPartyResourceData{} - yyc1768 = true + if yyj1819 < len(yyv1819) { + yyv1819 = yyv1819[:yyj1819] + yyc1819 = true + } else if yyj1819 == 0 && yyv1819 == nil { + yyv1819 = []ThirdPartyResourceData{} + yyc1819 = true } } - yyh1768.End() - if yyc1768 { - *v = yyv1768 + yyh1819.End() + if yyc1819 { + *v = yyv1819 } } @@ -21590,10 +22139,10 @@ func (x codecSelfer1234) encSliceJob(v []Job, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1772 := range v { + for _, yyv1823 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1773 := &yyv1772 - yy1773.CodecEncodeSelf(e) + yy1824 := &yyv1823 + yy1824.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21603,83 +22152,83 @@ func (x codecSelfer1234) decSliceJob(v *[]Job, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1774 := *v - yyh1774, yyl1774 := z.DecSliceHelperStart() - var yyc1774 bool - if yyl1774 == 0 { - if yyv1774 == nil { - yyv1774 = []Job{} - yyc1774 = true - } else if len(yyv1774) != 0 { - yyv1774 = yyv1774[:0] - yyc1774 = true + yyv1825 := *v + yyh1825, yyl1825 := z.DecSliceHelperStart() + var yyc1825 bool + if yyl1825 == 0 { + if yyv1825 == nil { + yyv1825 = []Job{} + yyc1825 = true + } else if len(yyv1825) != 0 { + yyv1825 = yyv1825[:0] + yyc1825 = true } - } else if yyl1774 > 0 { - var yyrr1774, yyrl1774 int - var yyrt1774 bool - if yyl1774 > cap(yyv1774) { + } else if yyl1825 > 0 { + var yyrr1825, yyrl1825 int + var yyrt1825 bool + if yyl1825 > cap(yyv1825) { - yyrg1774 := len(yyv1774) > 0 - yyv21774 := yyv1774 - yyrl1774, yyrt1774 = z.DecInferLen(yyl1774, z.DecBasicHandle().MaxInitLen, 824) - if yyrt1774 { - if yyrl1774 <= cap(yyv1774) { - yyv1774 = yyv1774[:yyrl1774] + yyrg1825 := len(yyv1825) > 0 + yyv21825 := yyv1825 + yyrl1825, yyrt1825 = z.DecInferLen(yyl1825, z.DecBasicHandle().MaxInitLen, 824) + if yyrt1825 { + if yyrl1825 <= cap(yyv1825) { + yyv1825 = yyv1825[:yyrl1825] } else { - yyv1774 = make([]Job, yyrl1774) + yyv1825 = make([]Job, yyrl1825) } } else { - yyv1774 = make([]Job, yyrl1774) + yyv1825 = make([]Job, yyrl1825) } - yyc1774 = true - yyrr1774 = len(yyv1774) - if yyrg1774 { - copy(yyv1774, yyv21774) + yyc1825 = true + yyrr1825 = len(yyv1825) + if yyrg1825 { + copy(yyv1825, yyv21825) } - } else if yyl1774 != len(yyv1774) { - yyv1774 = yyv1774[:yyl1774] - yyc1774 = true + } else if yyl1825 != len(yyv1825) { + yyv1825 = yyv1825[:yyl1825] + yyc1825 = true } - yyj1774 := 0 - for ; yyj1774 < yyrr1774; yyj1774++ { - yyh1774.ElemContainerState(yyj1774) + yyj1825 := 0 + for ; yyj1825 < yyrr1825; yyj1825++ { + yyh1825.ElemContainerState(yyj1825) if r.TryDecodeAsNil() { - yyv1774[yyj1774] = Job{} + yyv1825[yyj1825] = Job{} } else { - yyv1775 := &yyv1774[yyj1774] - yyv1775.CodecDecodeSelf(d) + yyv1826 := &yyv1825[yyj1825] + yyv1826.CodecDecodeSelf(d) } } - if yyrt1774 { - for ; yyj1774 < yyl1774; yyj1774++ { - yyv1774 = append(yyv1774, Job{}) - yyh1774.ElemContainerState(yyj1774) + if yyrt1825 { + for ; yyj1825 < yyl1825; yyj1825++ { + yyv1825 = append(yyv1825, Job{}) + yyh1825.ElemContainerState(yyj1825) if r.TryDecodeAsNil() { - yyv1774[yyj1774] = Job{} + yyv1825[yyj1825] = Job{} } else { - yyv1776 := &yyv1774[yyj1774] - yyv1776.CodecDecodeSelf(d) + yyv1827 := &yyv1825[yyj1825] + yyv1827.CodecDecodeSelf(d) } } } } else { - yyj1774 := 0 - for ; !r.CheckBreak(); yyj1774++ { + yyj1825 := 0 + for ; !r.CheckBreak(); yyj1825++ { - if yyj1774 >= len(yyv1774) { - yyv1774 = append(yyv1774, Job{}) // var yyz1774 Job - yyc1774 = true + if yyj1825 >= len(yyv1825) { + yyv1825 = append(yyv1825, Job{}) // var yyz1825 Job + yyc1825 = true } - yyh1774.ElemContainerState(yyj1774) - if yyj1774 < len(yyv1774) { + yyh1825.ElemContainerState(yyj1825) + if yyj1825 < len(yyv1825) { if r.TryDecodeAsNil() { - yyv1774[yyj1774] = Job{} + yyv1825[yyj1825] = Job{} } else { - yyv1777 := &yyv1774[yyj1774] - yyv1777.CodecDecodeSelf(d) + yyv1828 := &yyv1825[yyj1825] + yyv1828.CodecDecodeSelf(d) } } else { @@ -21687,17 +22236,17 @@ func (x codecSelfer1234) decSliceJob(v *[]Job, d *codec1978.Decoder) { } } - if yyj1774 < len(yyv1774) { - yyv1774 = yyv1774[:yyj1774] - yyc1774 = true - } else if yyj1774 == 0 && yyv1774 == nil { - yyv1774 = []Job{} - yyc1774 = true + if yyj1825 < len(yyv1825) { + yyv1825 = yyv1825[:yyj1825] + yyc1825 = true + } else if yyj1825 == 0 && yyv1825 == nil { + yyv1825 = []Job{} + yyc1825 = true } } - yyh1774.End() - if yyc1774 { - *v = yyv1774 + yyh1825.End() + if yyc1825 { + *v = yyv1825 } } @@ -21706,10 +22255,10 @@ func (x codecSelfer1234) encSliceJobCondition(v []JobCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1778 := range v { + for _, yyv1829 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1779 := &yyv1778 - yy1779.CodecEncodeSelf(e) + yy1830 := &yyv1829 + yy1830.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21719,83 +22268,83 @@ func (x codecSelfer1234) decSliceJobCondition(v *[]JobCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1780 := *v - yyh1780, yyl1780 := z.DecSliceHelperStart() - var yyc1780 bool - if yyl1780 == 0 { - if yyv1780 == nil { - yyv1780 = []JobCondition{} - yyc1780 = true - } else if len(yyv1780) != 0 { - yyv1780 = yyv1780[:0] - yyc1780 = true + yyv1831 := *v + yyh1831, yyl1831 := z.DecSliceHelperStart() + var yyc1831 bool + if yyl1831 == 0 { + if yyv1831 == nil { + yyv1831 = []JobCondition{} + yyc1831 = true + } else if len(yyv1831) != 0 { + yyv1831 = yyv1831[:0] + yyc1831 = true } - } else if yyl1780 > 0 { - var yyrr1780, yyrl1780 int - var yyrt1780 bool - if yyl1780 > cap(yyv1780) { + } else if yyl1831 > 0 { + var yyrr1831, yyrl1831 int + var yyrt1831 bool + if yyl1831 > cap(yyv1831) { - yyrg1780 := len(yyv1780) > 0 - yyv21780 := yyv1780 - yyrl1780, yyrt1780 = z.DecInferLen(yyl1780, z.DecBasicHandle().MaxInitLen, 112) - if yyrt1780 { - if yyrl1780 <= cap(yyv1780) { - yyv1780 = yyv1780[:yyrl1780] + yyrg1831 := len(yyv1831) > 0 + yyv21831 := yyv1831 + yyrl1831, yyrt1831 = z.DecInferLen(yyl1831, z.DecBasicHandle().MaxInitLen, 112) + if yyrt1831 { + if yyrl1831 <= cap(yyv1831) { + yyv1831 = yyv1831[:yyrl1831] } else { - yyv1780 = make([]JobCondition, yyrl1780) + yyv1831 = make([]JobCondition, yyrl1831) } } else { - yyv1780 = make([]JobCondition, yyrl1780) + yyv1831 = make([]JobCondition, yyrl1831) } - yyc1780 = true - yyrr1780 = len(yyv1780) - if yyrg1780 { - copy(yyv1780, yyv21780) + yyc1831 = true + yyrr1831 = len(yyv1831) + if yyrg1831 { + copy(yyv1831, yyv21831) } - } else if yyl1780 != len(yyv1780) { - yyv1780 = yyv1780[:yyl1780] - yyc1780 = true + } else if yyl1831 != len(yyv1831) { + yyv1831 = yyv1831[:yyl1831] + yyc1831 = true } - yyj1780 := 0 - for ; yyj1780 < yyrr1780; yyj1780++ { - yyh1780.ElemContainerState(yyj1780) + yyj1831 := 0 + for ; yyj1831 < yyrr1831; yyj1831++ { + yyh1831.ElemContainerState(yyj1831) if r.TryDecodeAsNil() { - yyv1780[yyj1780] = JobCondition{} + yyv1831[yyj1831] = JobCondition{} } else { - yyv1781 := &yyv1780[yyj1780] - yyv1781.CodecDecodeSelf(d) + yyv1832 := &yyv1831[yyj1831] + yyv1832.CodecDecodeSelf(d) } } - if yyrt1780 { - for ; yyj1780 < yyl1780; yyj1780++ { - yyv1780 = append(yyv1780, JobCondition{}) - yyh1780.ElemContainerState(yyj1780) + if yyrt1831 { + for ; yyj1831 < yyl1831; yyj1831++ { + yyv1831 = append(yyv1831, JobCondition{}) + yyh1831.ElemContainerState(yyj1831) if r.TryDecodeAsNil() { - yyv1780[yyj1780] = JobCondition{} + yyv1831[yyj1831] = JobCondition{} } else { - yyv1782 := &yyv1780[yyj1780] - yyv1782.CodecDecodeSelf(d) + yyv1833 := &yyv1831[yyj1831] + yyv1833.CodecDecodeSelf(d) } } } } else { - yyj1780 := 0 - for ; !r.CheckBreak(); yyj1780++ { + yyj1831 := 0 + for ; !r.CheckBreak(); yyj1831++ { - if yyj1780 >= len(yyv1780) { - yyv1780 = append(yyv1780, JobCondition{}) // var yyz1780 JobCondition - yyc1780 = true + if yyj1831 >= len(yyv1831) { + yyv1831 = append(yyv1831, JobCondition{}) // var yyz1831 JobCondition + yyc1831 = true } - yyh1780.ElemContainerState(yyj1780) - if yyj1780 < len(yyv1780) { + yyh1831.ElemContainerState(yyj1831) + if yyj1831 < len(yyv1831) { if r.TryDecodeAsNil() { - yyv1780[yyj1780] = JobCondition{} + yyv1831[yyj1831] = JobCondition{} } else { - yyv1783 := &yyv1780[yyj1780] - yyv1783.CodecDecodeSelf(d) + yyv1834 := &yyv1831[yyj1831] + yyv1834.CodecDecodeSelf(d) } } else { @@ -21803,17 +22352,17 @@ func (x codecSelfer1234) decSliceJobCondition(v *[]JobCondition, d *codec1978.De } } - if yyj1780 < len(yyv1780) { - yyv1780 = yyv1780[:yyj1780] - yyc1780 = true - } else if yyj1780 == 0 && yyv1780 == nil { - yyv1780 = []JobCondition{} - yyc1780 = true + if yyj1831 < len(yyv1831) { + yyv1831 = yyv1831[:yyj1831] + yyc1831 = true + } else if yyj1831 == 0 && yyv1831 == nil { + yyv1831 = []JobCondition{} + yyc1831 = true } } - yyh1780.End() - if yyc1780 { - *v = yyv1780 + yyh1831.End() + if yyc1831 { + *v = yyv1831 } } @@ -21822,10 +22371,10 @@ func (x codecSelfer1234) encSliceIngress(v []Ingress, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1784 := range v { + for _, yyv1835 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1785 := &yyv1784 - yy1785.CodecEncodeSelf(e) + yy1836 := &yyv1835 + yy1836.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21835,83 +22384,83 @@ func (x codecSelfer1234) decSliceIngress(v *[]Ingress, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1786 := *v - yyh1786, yyl1786 := z.DecSliceHelperStart() - var yyc1786 bool - if yyl1786 == 0 { - if yyv1786 == nil { - yyv1786 = []Ingress{} - yyc1786 = true - } else if len(yyv1786) != 0 { - yyv1786 = yyv1786[:0] - yyc1786 = true + yyv1837 := *v + yyh1837, yyl1837 := z.DecSliceHelperStart() + var yyc1837 bool + if yyl1837 == 0 { + if yyv1837 == nil { + yyv1837 = []Ingress{} + yyc1837 = true + } else if len(yyv1837) != 0 { + yyv1837 = yyv1837[:0] + yyc1837 = true } - } else if yyl1786 > 0 { - var yyrr1786, yyrl1786 int - var yyrt1786 bool - if yyl1786 > cap(yyv1786) { + } else if yyl1837 > 0 { + var yyrr1837, yyrl1837 int + var yyrt1837 bool + if yyl1837 > cap(yyv1837) { - yyrg1786 := len(yyv1786) > 0 - yyv21786 := yyv1786 - yyrl1786, yyrt1786 = z.DecInferLen(yyl1786, z.DecBasicHandle().MaxInitLen, 336) - if yyrt1786 { - if yyrl1786 <= cap(yyv1786) { - yyv1786 = yyv1786[:yyrl1786] + yyrg1837 := len(yyv1837) > 0 + yyv21837 := yyv1837 + yyrl1837, yyrt1837 = z.DecInferLen(yyl1837, z.DecBasicHandle().MaxInitLen, 336) + if yyrt1837 { + if yyrl1837 <= cap(yyv1837) { + yyv1837 = yyv1837[:yyrl1837] } else { - yyv1786 = make([]Ingress, yyrl1786) + yyv1837 = make([]Ingress, yyrl1837) } } else { - yyv1786 = make([]Ingress, yyrl1786) + yyv1837 = make([]Ingress, yyrl1837) } - yyc1786 = true - yyrr1786 = len(yyv1786) - if yyrg1786 { - copy(yyv1786, yyv21786) + yyc1837 = true + yyrr1837 = len(yyv1837) + if yyrg1837 { + copy(yyv1837, yyv21837) } - } else if yyl1786 != len(yyv1786) { - yyv1786 = yyv1786[:yyl1786] - yyc1786 = true + } else if yyl1837 != len(yyv1837) { + yyv1837 = yyv1837[:yyl1837] + yyc1837 = true } - yyj1786 := 0 - for ; yyj1786 < yyrr1786; yyj1786++ { - yyh1786.ElemContainerState(yyj1786) + yyj1837 := 0 + for ; yyj1837 < yyrr1837; yyj1837++ { + yyh1837.ElemContainerState(yyj1837) if r.TryDecodeAsNil() { - yyv1786[yyj1786] = Ingress{} + yyv1837[yyj1837] = Ingress{} } else { - yyv1787 := &yyv1786[yyj1786] - yyv1787.CodecDecodeSelf(d) + yyv1838 := &yyv1837[yyj1837] + yyv1838.CodecDecodeSelf(d) } } - if yyrt1786 { - for ; yyj1786 < yyl1786; yyj1786++ { - yyv1786 = append(yyv1786, Ingress{}) - yyh1786.ElemContainerState(yyj1786) + if yyrt1837 { + for ; yyj1837 < yyl1837; yyj1837++ { + yyv1837 = append(yyv1837, Ingress{}) + yyh1837.ElemContainerState(yyj1837) if r.TryDecodeAsNil() { - yyv1786[yyj1786] = Ingress{} + yyv1837[yyj1837] = Ingress{} } else { - yyv1788 := &yyv1786[yyj1786] - yyv1788.CodecDecodeSelf(d) + yyv1839 := &yyv1837[yyj1837] + yyv1839.CodecDecodeSelf(d) } } } } else { - yyj1786 := 0 - for ; !r.CheckBreak(); yyj1786++ { + yyj1837 := 0 + for ; !r.CheckBreak(); yyj1837++ { - if yyj1786 >= len(yyv1786) { - yyv1786 = append(yyv1786, Ingress{}) // var yyz1786 Ingress - yyc1786 = true + if yyj1837 >= len(yyv1837) { + yyv1837 = append(yyv1837, Ingress{}) // var yyz1837 Ingress + yyc1837 = true } - yyh1786.ElemContainerState(yyj1786) - if yyj1786 < len(yyv1786) { + yyh1837.ElemContainerState(yyj1837) + if yyj1837 < len(yyv1837) { if r.TryDecodeAsNil() { - yyv1786[yyj1786] = Ingress{} + yyv1837[yyj1837] = Ingress{} } else { - yyv1789 := &yyv1786[yyj1786] - yyv1789.CodecDecodeSelf(d) + yyv1840 := &yyv1837[yyj1837] + yyv1840.CodecDecodeSelf(d) } } else { @@ -21919,17 +22468,17 @@ func (x codecSelfer1234) decSliceIngress(v *[]Ingress, d *codec1978.Decoder) { } } - if yyj1786 < len(yyv1786) { - yyv1786 = yyv1786[:yyj1786] - yyc1786 = true - } else if yyj1786 == 0 && yyv1786 == nil { - yyv1786 = []Ingress{} - yyc1786 = true + if yyj1837 < len(yyv1837) { + yyv1837 = yyv1837[:yyj1837] + yyc1837 = true + } else if yyj1837 == 0 && yyv1837 == nil { + yyv1837 = []Ingress{} + yyc1837 = true } } - yyh1786.End() - if yyc1786 { - *v = yyv1786 + yyh1837.End() + if yyc1837 { + *v = yyv1837 } } @@ -21938,10 +22487,10 @@ func (x codecSelfer1234) encSliceIngressTLS(v []IngressTLS, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1790 := range v { + for _, yyv1841 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1791 := &yyv1790 - yy1791.CodecEncodeSelf(e) + yy1842 := &yyv1841 + yy1842.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21951,83 +22500,83 @@ func (x codecSelfer1234) decSliceIngressTLS(v *[]IngressTLS, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1792 := *v - yyh1792, yyl1792 := z.DecSliceHelperStart() - var yyc1792 bool - if yyl1792 == 0 { - if yyv1792 == nil { - yyv1792 = []IngressTLS{} - yyc1792 = true - } else if len(yyv1792) != 0 { - yyv1792 = yyv1792[:0] - yyc1792 = true + yyv1843 := *v + yyh1843, yyl1843 := z.DecSliceHelperStart() + var yyc1843 bool + if yyl1843 == 0 { + if yyv1843 == nil { + yyv1843 = []IngressTLS{} + yyc1843 = true + } else if len(yyv1843) != 0 { + yyv1843 = yyv1843[:0] + yyc1843 = true } - } else if yyl1792 > 0 { - var yyrr1792, yyrl1792 int - var yyrt1792 bool - if yyl1792 > cap(yyv1792) { + } else if yyl1843 > 0 { + var yyrr1843, yyrl1843 int + var yyrt1843 bool + if yyl1843 > cap(yyv1843) { - yyrg1792 := len(yyv1792) > 0 - yyv21792 := yyv1792 - yyrl1792, yyrt1792 = z.DecInferLen(yyl1792, z.DecBasicHandle().MaxInitLen, 40) - if yyrt1792 { - if yyrl1792 <= cap(yyv1792) { - yyv1792 = yyv1792[:yyrl1792] + yyrg1843 := len(yyv1843) > 0 + yyv21843 := yyv1843 + yyrl1843, yyrt1843 = z.DecInferLen(yyl1843, z.DecBasicHandle().MaxInitLen, 40) + if yyrt1843 { + if yyrl1843 <= cap(yyv1843) { + yyv1843 = yyv1843[:yyrl1843] } else { - yyv1792 = make([]IngressTLS, yyrl1792) + yyv1843 = make([]IngressTLS, yyrl1843) } } else { - yyv1792 = make([]IngressTLS, yyrl1792) + yyv1843 = make([]IngressTLS, yyrl1843) } - yyc1792 = true - yyrr1792 = len(yyv1792) - if yyrg1792 { - copy(yyv1792, yyv21792) + yyc1843 = true + yyrr1843 = len(yyv1843) + if yyrg1843 { + copy(yyv1843, yyv21843) } - } else if yyl1792 != len(yyv1792) { - yyv1792 = yyv1792[:yyl1792] - yyc1792 = true + } else if yyl1843 != len(yyv1843) { + yyv1843 = yyv1843[:yyl1843] + yyc1843 = true } - yyj1792 := 0 - for ; yyj1792 < yyrr1792; yyj1792++ { - yyh1792.ElemContainerState(yyj1792) + yyj1843 := 0 + for ; yyj1843 < yyrr1843; yyj1843++ { + yyh1843.ElemContainerState(yyj1843) if r.TryDecodeAsNil() { - yyv1792[yyj1792] = IngressTLS{} + yyv1843[yyj1843] = IngressTLS{} } else { - yyv1793 := &yyv1792[yyj1792] - yyv1793.CodecDecodeSelf(d) + yyv1844 := &yyv1843[yyj1843] + yyv1844.CodecDecodeSelf(d) } } - if yyrt1792 { - for ; yyj1792 < yyl1792; yyj1792++ { - yyv1792 = append(yyv1792, IngressTLS{}) - yyh1792.ElemContainerState(yyj1792) + if yyrt1843 { + for ; yyj1843 < yyl1843; yyj1843++ { + yyv1843 = append(yyv1843, IngressTLS{}) + yyh1843.ElemContainerState(yyj1843) if r.TryDecodeAsNil() { - yyv1792[yyj1792] = IngressTLS{} + yyv1843[yyj1843] = IngressTLS{} } else { - yyv1794 := &yyv1792[yyj1792] - yyv1794.CodecDecodeSelf(d) + yyv1845 := &yyv1843[yyj1843] + yyv1845.CodecDecodeSelf(d) } } } } else { - yyj1792 := 0 - for ; !r.CheckBreak(); yyj1792++ { + yyj1843 := 0 + for ; !r.CheckBreak(); yyj1843++ { - if yyj1792 >= len(yyv1792) { - yyv1792 = append(yyv1792, IngressTLS{}) // var yyz1792 IngressTLS - yyc1792 = true + if yyj1843 >= len(yyv1843) { + yyv1843 = append(yyv1843, IngressTLS{}) // var yyz1843 IngressTLS + yyc1843 = true } - yyh1792.ElemContainerState(yyj1792) - if yyj1792 < len(yyv1792) { + yyh1843.ElemContainerState(yyj1843) + if yyj1843 < len(yyv1843) { if r.TryDecodeAsNil() { - yyv1792[yyj1792] = IngressTLS{} + yyv1843[yyj1843] = IngressTLS{} } else { - yyv1795 := &yyv1792[yyj1792] - yyv1795.CodecDecodeSelf(d) + yyv1846 := &yyv1843[yyj1843] + yyv1846.CodecDecodeSelf(d) } } else { @@ -22035,17 +22584,17 @@ func (x codecSelfer1234) decSliceIngressTLS(v *[]IngressTLS, d *codec1978.Decode } } - if yyj1792 < len(yyv1792) { - yyv1792 = yyv1792[:yyj1792] - yyc1792 = true - } else if yyj1792 == 0 && yyv1792 == nil { - yyv1792 = []IngressTLS{} - yyc1792 = true + if yyj1843 < len(yyv1843) { + yyv1843 = yyv1843[:yyj1843] + yyc1843 = true + } else if yyj1843 == 0 && yyv1843 == nil { + yyv1843 = []IngressTLS{} + yyc1843 = true } } - yyh1792.End() - if yyc1792 { - *v = yyv1792 + yyh1843.End() + if yyc1843 { + *v = yyv1843 } } @@ -22054,10 +22603,10 @@ func (x codecSelfer1234) encSliceIngressRule(v []IngressRule, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1796 := range v { + for _, yyv1847 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1797 := &yyv1796 - yy1797.CodecEncodeSelf(e) + yy1848 := &yyv1847 + yy1848.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22067,83 +22616,83 @@ func (x codecSelfer1234) decSliceIngressRule(v *[]IngressRule, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1798 := *v - yyh1798, yyl1798 := z.DecSliceHelperStart() - var yyc1798 bool - if yyl1798 == 0 { - if yyv1798 == nil { - yyv1798 = []IngressRule{} - yyc1798 = true - } else if len(yyv1798) != 0 { - yyv1798 = yyv1798[:0] - yyc1798 = true + yyv1849 := *v + yyh1849, yyl1849 := z.DecSliceHelperStart() + var yyc1849 bool + if yyl1849 == 0 { + if yyv1849 == nil { + yyv1849 = []IngressRule{} + yyc1849 = true + } else if len(yyv1849) != 0 { + yyv1849 = yyv1849[:0] + yyc1849 = true } - } else if yyl1798 > 0 { - var yyrr1798, yyrl1798 int - var yyrt1798 bool - if yyl1798 > cap(yyv1798) { + } else if yyl1849 > 0 { + var yyrr1849, yyrl1849 int + var yyrt1849 bool + if yyl1849 > cap(yyv1849) { - yyrg1798 := len(yyv1798) > 0 - yyv21798 := yyv1798 - yyrl1798, yyrt1798 = z.DecInferLen(yyl1798, z.DecBasicHandle().MaxInitLen, 24) - if yyrt1798 { - if yyrl1798 <= cap(yyv1798) { - yyv1798 = yyv1798[:yyrl1798] + yyrg1849 := len(yyv1849) > 0 + yyv21849 := yyv1849 + yyrl1849, yyrt1849 = z.DecInferLen(yyl1849, z.DecBasicHandle().MaxInitLen, 24) + if yyrt1849 { + if yyrl1849 <= cap(yyv1849) { + yyv1849 = yyv1849[:yyrl1849] } else { - yyv1798 = make([]IngressRule, yyrl1798) + yyv1849 = make([]IngressRule, yyrl1849) } } else { - yyv1798 = make([]IngressRule, yyrl1798) + yyv1849 = make([]IngressRule, yyrl1849) } - yyc1798 = true - yyrr1798 = len(yyv1798) - if yyrg1798 { - copy(yyv1798, yyv21798) + yyc1849 = true + yyrr1849 = len(yyv1849) + if yyrg1849 { + copy(yyv1849, yyv21849) } - } else if yyl1798 != len(yyv1798) { - yyv1798 = yyv1798[:yyl1798] - yyc1798 = true + } else if yyl1849 != len(yyv1849) { + yyv1849 = yyv1849[:yyl1849] + yyc1849 = true } - yyj1798 := 0 - for ; yyj1798 < yyrr1798; yyj1798++ { - yyh1798.ElemContainerState(yyj1798) + yyj1849 := 0 + for ; yyj1849 < yyrr1849; yyj1849++ { + yyh1849.ElemContainerState(yyj1849) if r.TryDecodeAsNil() { - yyv1798[yyj1798] = IngressRule{} + yyv1849[yyj1849] = IngressRule{} } else { - yyv1799 := &yyv1798[yyj1798] - yyv1799.CodecDecodeSelf(d) + yyv1850 := &yyv1849[yyj1849] + yyv1850.CodecDecodeSelf(d) } } - if yyrt1798 { - for ; yyj1798 < yyl1798; yyj1798++ { - yyv1798 = append(yyv1798, IngressRule{}) - yyh1798.ElemContainerState(yyj1798) + if yyrt1849 { + for ; yyj1849 < yyl1849; yyj1849++ { + yyv1849 = append(yyv1849, IngressRule{}) + yyh1849.ElemContainerState(yyj1849) if r.TryDecodeAsNil() { - yyv1798[yyj1798] = IngressRule{} + yyv1849[yyj1849] = IngressRule{} } else { - yyv1800 := &yyv1798[yyj1798] - yyv1800.CodecDecodeSelf(d) + yyv1851 := &yyv1849[yyj1849] + yyv1851.CodecDecodeSelf(d) } } } } else { - yyj1798 := 0 - for ; !r.CheckBreak(); yyj1798++ { + yyj1849 := 0 + for ; !r.CheckBreak(); yyj1849++ { - if yyj1798 >= len(yyv1798) { - yyv1798 = append(yyv1798, IngressRule{}) // var yyz1798 IngressRule - yyc1798 = true + if yyj1849 >= len(yyv1849) { + yyv1849 = append(yyv1849, IngressRule{}) // var yyz1849 IngressRule + yyc1849 = true } - yyh1798.ElemContainerState(yyj1798) - if yyj1798 < len(yyv1798) { + yyh1849.ElemContainerState(yyj1849) + if yyj1849 < len(yyv1849) { if r.TryDecodeAsNil() { - yyv1798[yyj1798] = IngressRule{} + yyv1849[yyj1849] = IngressRule{} } else { - yyv1801 := &yyv1798[yyj1798] - yyv1801.CodecDecodeSelf(d) + yyv1852 := &yyv1849[yyj1849] + yyv1852.CodecDecodeSelf(d) } } else { @@ -22151,17 +22700,17 @@ func (x codecSelfer1234) decSliceIngressRule(v *[]IngressRule, d *codec1978.Deco } } - if yyj1798 < len(yyv1798) { - yyv1798 = yyv1798[:yyj1798] - yyc1798 = true - } else if yyj1798 == 0 && yyv1798 == nil { - yyv1798 = []IngressRule{} - yyc1798 = true + if yyj1849 < len(yyv1849) { + yyv1849 = yyv1849[:yyj1849] + yyc1849 = true + } else if yyj1849 == 0 && yyv1849 == nil { + yyv1849 = []IngressRule{} + yyc1849 = true } } - yyh1798.End() - if yyc1798 { - *v = yyv1798 + yyh1849.End() + if yyc1849 { + *v = yyv1849 } } @@ -22170,10 +22719,10 @@ func (x codecSelfer1234) encSliceHTTPIngressPath(v []HTTPIngressPath, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1802 := range v { + for _, yyv1853 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1803 := &yyv1802 - yy1803.CodecEncodeSelf(e) + yy1854 := &yyv1853 + yy1854.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22183,83 +22732,83 @@ func (x codecSelfer1234) decSliceHTTPIngressPath(v *[]HTTPIngressPath, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1804 := *v - yyh1804, yyl1804 := z.DecSliceHelperStart() - var yyc1804 bool - if yyl1804 == 0 { - if yyv1804 == nil { - yyv1804 = []HTTPIngressPath{} - yyc1804 = true - } else if len(yyv1804) != 0 { - yyv1804 = yyv1804[:0] - yyc1804 = true + yyv1855 := *v + yyh1855, yyl1855 := z.DecSliceHelperStart() + var yyc1855 bool + if yyl1855 == 0 { + if yyv1855 == nil { + yyv1855 = []HTTPIngressPath{} + yyc1855 = true + } else if len(yyv1855) != 0 { + yyv1855 = yyv1855[:0] + yyc1855 = true } - } else if yyl1804 > 0 { - var yyrr1804, yyrl1804 int - var yyrt1804 bool - if yyl1804 > cap(yyv1804) { + } else if yyl1855 > 0 { + var yyrr1855, yyrl1855 int + var yyrt1855 bool + if yyl1855 > cap(yyv1855) { - yyrg1804 := len(yyv1804) > 0 - yyv21804 := yyv1804 - yyrl1804, yyrt1804 = z.DecInferLen(yyl1804, z.DecBasicHandle().MaxInitLen, 64) - if yyrt1804 { - if yyrl1804 <= cap(yyv1804) { - yyv1804 = yyv1804[:yyrl1804] + yyrg1855 := len(yyv1855) > 0 + yyv21855 := yyv1855 + yyrl1855, yyrt1855 = z.DecInferLen(yyl1855, z.DecBasicHandle().MaxInitLen, 64) + if yyrt1855 { + if yyrl1855 <= cap(yyv1855) { + yyv1855 = yyv1855[:yyrl1855] } else { - yyv1804 = make([]HTTPIngressPath, yyrl1804) + yyv1855 = make([]HTTPIngressPath, yyrl1855) } } else { - yyv1804 = make([]HTTPIngressPath, yyrl1804) + yyv1855 = make([]HTTPIngressPath, yyrl1855) } - yyc1804 = true - yyrr1804 = len(yyv1804) - if yyrg1804 { - copy(yyv1804, yyv21804) + yyc1855 = true + yyrr1855 = len(yyv1855) + if yyrg1855 { + copy(yyv1855, yyv21855) } - } else if yyl1804 != len(yyv1804) { - yyv1804 = yyv1804[:yyl1804] - yyc1804 = true + } else if yyl1855 != len(yyv1855) { + yyv1855 = yyv1855[:yyl1855] + yyc1855 = true } - yyj1804 := 0 - for ; yyj1804 < yyrr1804; yyj1804++ { - yyh1804.ElemContainerState(yyj1804) + yyj1855 := 0 + for ; yyj1855 < yyrr1855; yyj1855++ { + yyh1855.ElemContainerState(yyj1855) if r.TryDecodeAsNil() { - yyv1804[yyj1804] = HTTPIngressPath{} + yyv1855[yyj1855] = HTTPIngressPath{} } else { - yyv1805 := &yyv1804[yyj1804] - yyv1805.CodecDecodeSelf(d) + yyv1856 := &yyv1855[yyj1855] + yyv1856.CodecDecodeSelf(d) } } - if yyrt1804 { - for ; yyj1804 < yyl1804; yyj1804++ { - yyv1804 = append(yyv1804, HTTPIngressPath{}) - yyh1804.ElemContainerState(yyj1804) + if yyrt1855 { + for ; yyj1855 < yyl1855; yyj1855++ { + yyv1855 = append(yyv1855, HTTPIngressPath{}) + yyh1855.ElemContainerState(yyj1855) if r.TryDecodeAsNil() { - yyv1804[yyj1804] = HTTPIngressPath{} + yyv1855[yyj1855] = HTTPIngressPath{} } else { - yyv1806 := &yyv1804[yyj1804] - yyv1806.CodecDecodeSelf(d) + yyv1857 := &yyv1855[yyj1855] + yyv1857.CodecDecodeSelf(d) } } } } else { - yyj1804 := 0 - for ; !r.CheckBreak(); yyj1804++ { + yyj1855 := 0 + for ; !r.CheckBreak(); yyj1855++ { - if yyj1804 >= len(yyv1804) { - yyv1804 = append(yyv1804, HTTPIngressPath{}) // var yyz1804 HTTPIngressPath - yyc1804 = true + if yyj1855 >= len(yyv1855) { + yyv1855 = append(yyv1855, HTTPIngressPath{}) // var yyz1855 HTTPIngressPath + yyc1855 = true } - yyh1804.ElemContainerState(yyj1804) - if yyj1804 < len(yyv1804) { + yyh1855.ElemContainerState(yyj1855) + if yyj1855 < len(yyv1855) { if r.TryDecodeAsNil() { - yyv1804[yyj1804] = HTTPIngressPath{} + yyv1855[yyj1855] = HTTPIngressPath{} } else { - yyv1807 := &yyv1804[yyj1804] - yyv1807.CodecDecodeSelf(d) + yyv1858 := &yyv1855[yyj1855] + yyv1858.CodecDecodeSelf(d) } } else { @@ -22267,17 +22816,17 @@ func (x codecSelfer1234) decSliceHTTPIngressPath(v *[]HTTPIngressPath, d *codec1 } } - if yyj1804 < len(yyv1804) { - yyv1804 = yyv1804[:yyj1804] - yyc1804 = true - } else if yyj1804 == 0 && yyv1804 == nil { - yyv1804 = []HTTPIngressPath{} - yyc1804 = true + if yyj1855 < len(yyv1855) { + yyv1855 = yyv1855[:yyj1855] + yyc1855 = true + } else if yyj1855 == 0 && yyv1855 == nil { + yyv1855 = []HTTPIngressPath{} + yyc1855 = true } } - yyh1804.End() - if yyc1804 { - *v = yyv1804 + yyh1855.End() + if yyc1855 { + *v = yyv1855 } } @@ -22286,10 +22835,10 @@ func (x codecSelfer1234) encSliceLabelSelectorRequirement(v []LabelSelectorRequi z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1808 := range v { + for _, yyv1859 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1809 := &yyv1808 - yy1809.CodecEncodeSelf(e) + yy1860 := &yyv1859 + yy1860.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22299,83 +22848,83 @@ func (x codecSelfer1234) decSliceLabelSelectorRequirement(v *[]LabelSelectorRequ z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1810 := *v - yyh1810, yyl1810 := z.DecSliceHelperStart() - var yyc1810 bool - if yyl1810 == 0 { - if yyv1810 == nil { - yyv1810 = []LabelSelectorRequirement{} - yyc1810 = true - } else if len(yyv1810) != 0 { - yyv1810 = yyv1810[:0] - yyc1810 = true + yyv1861 := *v + yyh1861, yyl1861 := z.DecSliceHelperStart() + var yyc1861 bool + if yyl1861 == 0 { + if yyv1861 == nil { + yyv1861 = []LabelSelectorRequirement{} + yyc1861 = true + } else if len(yyv1861) != 0 { + yyv1861 = yyv1861[:0] + yyc1861 = true } - } else if yyl1810 > 0 { - var yyrr1810, yyrl1810 int - var yyrt1810 bool - if yyl1810 > cap(yyv1810) { + } else if yyl1861 > 0 { + var yyrr1861, yyrl1861 int + var yyrt1861 bool + if yyl1861 > cap(yyv1861) { - yyrg1810 := len(yyv1810) > 0 - yyv21810 := yyv1810 - yyrl1810, yyrt1810 = z.DecInferLen(yyl1810, z.DecBasicHandle().MaxInitLen, 56) - if yyrt1810 { - if yyrl1810 <= cap(yyv1810) { - yyv1810 = yyv1810[:yyrl1810] + yyrg1861 := len(yyv1861) > 0 + yyv21861 := yyv1861 + yyrl1861, yyrt1861 = z.DecInferLen(yyl1861, z.DecBasicHandle().MaxInitLen, 56) + if yyrt1861 { + if yyrl1861 <= cap(yyv1861) { + yyv1861 = yyv1861[:yyrl1861] } else { - yyv1810 = make([]LabelSelectorRequirement, yyrl1810) + yyv1861 = make([]LabelSelectorRequirement, yyrl1861) } } else { - yyv1810 = make([]LabelSelectorRequirement, yyrl1810) + yyv1861 = make([]LabelSelectorRequirement, yyrl1861) } - yyc1810 = true - yyrr1810 = len(yyv1810) - if yyrg1810 { - copy(yyv1810, yyv21810) + yyc1861 = true + yyrr1861 = len(yyv1861) + if yyrg1861 { + copy(yyv1861, yyv21861) } - } else if yyl1810 != len(yyv1810) { - yyv1810 = yyv1810[:yyl1810] - yyc1810 = true + } else if yyl1861 != len(yyv1861) { + yyv1861 = yyv1861[:yyl1861] + yyc1861 = true } - yyj1810 := 0 - for ; yyj1810 < yyrr1810; yyj1810++ { - yyh1810.ElemContainerState(yyj1810) + yyj1861 := 0 + for ; yyj1861 < yyrr1861; yyj1861++ { + yyh1861.ElemContainerState(yyj1861) if r.TryDecodeAsNil() { - yyv1810[yyj1810] = LabelSelectorRequirement{} + yyv1861[yyj1861] = LabelSelectorRequirement{} } else { - yyv1811 := &yyv1810[yyj1810] - yyv1811.CodecDecodeSelf(d) + yyv1862 := &yyv1861[yyj1861] + yyv1862.CodecDecodeSelf(d) } } - if yyrt1810 { - for ; yyj1810 < yyl1810; yyj1810++ { - yyv1810 = append(yyv1810, LabelSelectorRequirement{}) - yyh1810.ElemContainerState(yyj1810) + if yyrt1861 { + for ; yyj1861 < yyl1861; yyj1861++ { + yyv1861 = append(yyv1861, LabelSelectorRequirement{}) + yyh1861.ElemContainerState(yyj1861) if r.TryDecodeAsNil() { - yyv1810[yyj1810] = LabelSelectorRequirement{} + yyv1861[yyj1861] = LabelSelectorRequirement{} } else { - yyv1812 := &yyv1810[yyj1810] - yyv1812.CodecDecodeSelf(d) + yyv1863 := &yyv1861[yyj1861] + yyv1863.CodecDecodeSelf(d) } } } } else { - yyj1810 := 0 - for ; !r.CheckBreak(); yyj1810++ { + yyj1861 := 0 + for ; !r.CheckBreak(); yyj1861++ { - if yyj1810 >= len(yyv1810) { - yyv1810 = append(yyv1810, LabelSelectorRequirement{}) // var yyz1810 LabelSelectorRequirement - yyc1810 = true + if yyj1861 >= len(yyv1861) { + yyv1861 = append(yyv1861, LabelSelectorRequirement{}) // var yyz1861 LabelSelectorRequirement + yyc1861 = true } - yyh1810.ElemContainerState(yyj1810) - if yyj1810 < len(yyv1810) { + yyh1861.ElemContainerState(yyj1861) + if yyj1861 < len(yyv1861) { if r.TryDecodeAsNil() { - yyv1810[yyj1810] = LabelSelectorRequirement{} + yyv1861[yyj1861] = LabelSelectorRequirement{} } else { - yyv1813 := &yyv1810[yyj1810] - yyv1813.CodecDecodeSelf(d) + yyv1864 := &yyv1861[yyj1861] + yyv1864.CodecDecodeSelf(d) } } else { @@ -22383,17 +22932,17 @@ func (x codecSelfer1234) decSliceLabelSelectorRequirement(v *[]LabelSelectorRequ } } - if yyj1810 < len(yyv1810) { - yyv1810 = yyv1810[:yyj1810] - yyc1810 = true - } else if yyj1810 == 0 && yyv1810 == nil { - yyv1810 = []LabelSelectorRequirement{} - yyc1810 = true + if yyj1861 < len(yyv1861) { + yyv1861 = yyv1861[:yyj1861] + yyc1861 = true + } else if yyj1861 == 0 && yyv1861 == nil { + yyv1861 = []LabelSelectorRequirement{} + yyc1861 = true } } - yyh1810.End() - if yyc1810 { - *v = yyv1810 + yyh1861.End() + if yyc1861 { + *v = yyv1861 } } @@ -22402,10 +22951,10 @@ func (x codecSelfer1234) encSliceReplicaSet(v []ReplicaSet, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1814 := range v { + for _, yyv1865 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1815 := &yyv1814 - yy1815.CodecEncodeSelf(e) + yy1866 := &yyv1865 + yy1866.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22415,83 +22964,199 @@ func (x codecSelfer1234) decSliceReplicaSet(v *[]ReplicaSet, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1816 := *v - yyh1816, yyl1816 := z.DecSliceHelperStart() - var yyc1816 bool - if yyl1816 == 0 { - if yyv1816 == nil { - yyv1816 = []ReplicaSet{} - yyc1816 = true - } else if len(yyv1816) != 0 { - yyv1816 = yyv1816[:0] - yyc1816 = true + yyv1867 := *v + yyh1867, yyl1867 := z.DecSliceHelperStart() + var yyc1867 bool + if yyl1867 == 0 { + if yyv1867 == nil { + yyv1867 = []ReplicaSet{} + yyc1867 = true + } else if len(yyv1867) != 0 { + yyv1867 = yyv1867[:0] + yyc1867 = true + } + } else if yyl1867 > 0 { + var yyrr1867, yyrl1867 int + var yyrt1867 bool + if yyl1867 > cap(yyv1867) { + + yyrg1867 := len(yyv1867) > 0 + yyv21867 := yyv1867 + yyrl1867, yyrt1867 = z.DecInferLen(yyl1867, z.DecBasicHandle().MaxInitLen, 800) + if yyrt1867 { + if yyrl1867 <= cap(yyv1867) { + yyv1867 = yyv1867[:yyrl1867] + } else { + yyv1867 = make([]ReplicaSet, yyrl1867) + } + } else { + yyv1867 = make([]ReplicaSet, yyrl1867) + } + yyc1867 = true + yyrr1867 = len(yyv1867) + if yyrg1867 { + copy(yyv1867, yyv21867) + } + } else if yyl1867 != len(yyv1867) { + yyv1867 = yyv1867[:yyl1867] + yyc1867 = true + } + yyj1867 := 0 + for ; yyj1867 < yyrr1867; yyj1867++ { + yyh1867.ElemContainerState(yyj1867) + if r.TryDecodeAsNil() { + yyv1867[yyj1867] = ReplicaSet{} + } else { + yyv1868 := &yyv1867[yyj1867] + yyv1868.CodecDecodeSelf(d) + } + + } + if yyrt1867 { + for ; yyj1867 < yyl1867; yyj1867++ { + yyv1867 = append(yyv1867, ReplicaSet{}) + yyh1867.ElemContainerState(yyj1867) + if r.TryDecodeAsNil() { + yyv1867[yyj1867] = ReplicaSet{} + } else { + yyv1869 := &yyv1867[yyj1867] + yyv1869.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj1867 := 0 + for ; !r.CheckBreak(); yyj1867++ { + + if yyj1867 >= len(yyv1867) { + yyv1867 = append(yyv1867, ReplicaSet{}) // var yyz1867 ReplicaSet + yyc1867 = true + } + yyh1867.ElemContainerState(yyj1867) + if yyj1867 < len(yyv1867) { + if r.TryDecodeAsNil() { + yyv1867[yyj1867] = ReplicaSet{} + } else { + yyv1870 := &yyv1867[yyj1867] + yyv1870.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj1867 < len(yyv1867) { + yyv1867 = yyv1867[:yyj1867] + yyc1867 = true + } else if yyj1867 == 0 && yyv1867 == nil { + yyv1867 = []ReplicaSet{} + yyc1867 = true + } + } + yyh1867.End() + if yyc1867 { + *v = yyv1867 + } +} + +func (x codecSelfer1234) encSliceReplicaSetCondition(v []ReplicaSetCondition, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv1871 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy1872 := &yyv1871 + yy1872.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceReplicaSetCondition(v *[]ReplicaSetCondition, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1873 := *v + yyh1873, yyl1873 := z.DecSliceHelperStart() + var yyc1873 bool + if yyl1873 == 0 { + if yyv1873 == nil { + yyv1873 = []ReplicaSetCondition{} + yyc1873 = true + } else if len(yyv1873) != 0 { + yyv1873 = yyv1873[:0] + yyc1873 = true } - } else if yyl1816 > 0 { - var yyrr1816, yyrl1816 int - var yyrt1816 bool - if yyl1816 > cap(yyv1816) { + } else if yyl1873 > 0 { + var yyrr1873, yyrl1873 int + var yyrt1873 bool + if yyl1873 > cap(yyv1873) { - yyrg1816 := len(yyv1816) > 0 - yyv21816 := yyv1816 - yyrl1816, yyrt1816 = z.DecInferLen(yyl1816, z.DecBasicHandle().MaxInitLen, 776) - if yyrt1816 { - if yyrl1816 <= cap(yyv1816) { - yyv1816 = yyv1816[:yyrl1816] + yyrg1873 := len(yyv1873) > 0 + yyv21873 := yyv1873 + yyrl1873, yyrt1873 = z.DecInferLen(yyl1873, z.DecBasicHandle().MaxInitLen, 112) + if yyrt1873 { + if yyrl1873 <= cap(yyv1873) { + yyv1873 = yyv1873[:yyrl1873] } else { - yyv1816 = make([]ReplicaSet, yyrl1816) + yyv1873 = make([]ReplicaSetCondition, yyrl1873) } } else { - yyv1816 = make([]ReplicaSet, yyrl1816) + yyv1873 = make([]ReplicaSetCondition, yyrl1873) } - yyc1816 = true - yyrr1816 = len(yyv1816) - if yyrg1816 { - copy(yyv1816, yyv21816) + yyc1873 = true + yyrr1873 = len(yyv1873) + if yyrg1873 { + copy(yyv1873, yyv21873) } - } else if yyl1816 != len(yyv1816) { - yyv1816 = yyv1816[:yyl1816] - yyc1816 = true + } else if yyl1873 != len(yyv1873) { + yyv1873 = yyv1873[:yyl1873] + yyc1873 = true } - yyj1816 := 0 - for ; yyj1816 < yyrr1816; yyj1816++ { - yyh1816.ElemContainerState(yyj1816) + yyj1873 := 0 + for ; yyj1873 < yyrr1873; yyj1873++ { + yyh1873.ElemContainerState(yyj1873) if r.TryDecodeAsNil() { - yyv1816[yyj1816] = ReplicaSet{} + yyv1873[yyj1873] = ReplicaSetCondition{} } else { - yyv1817 := &yyv1816[yyj1816] - yyv1817.CodecDecodeSelf(d) + yyv1874 := &yyv1873[yyj1873] + yyv1874.CodecDecodeSelf(d) } } - if yyrt1816 { - for ; yyj1816 < yyl1816; yyj1816++ { - yyv1816 = append(yyv1816, ReplicaSet{}) - yyh1816.ElemContainerState(yyj1816) + if yyrt1873 { + for ; yyj1873 < yyl1873; yyj1873++ { + yyv1873 = append(yyv1873, ReplicaSetCondition{}) + yyh1873.ElemContainerState(yyj1873) if r.TryDecodeAsNil() { - yyv1816[yyj1816] = ReplicaSet{} + yyv1873[yyj1873] = ReplicaSetCondition{} } else { - yyv1818 := &yyv1816[yyj1816] - yyv1818.CodecDecodeSelf(d) + yyv1875 := &yyv1873[yyj1873] + yyv1875.CodecDecodeSelf(d) } } } } else { - yyj1816 := 0 - for ; !r.CheckBreak(); yyj1816++ { + yyj1873 := 0 + for ; !r.CheckBreak(); yyj1873++ { - if yyj1816 >= len(yyv1816) { - yyv1816 = append(yyv1816, ReplicaSet{}) // var yyz1816 ReplicaSet - yyc1816 = true + if yyj1873 >= len(yyv1873) { + yyv1873 = append(yyv1873, ReplicaSetCondition{}) // var yyz1873 ReplicaSetCondition + yyc1873 = true } - yyh1816.ElemContainerState(yyj1816) - if yyj1816 < len(yyv1816) { + yyh1873.ElemContainerState(yyj1873) + if yyj1873 < len(yyv1873) { if r.TryDecodeAsNil() { - yyv1816[yyj1816] = ReplicaSet{} + yyv1873[yyj1873] = ReplicaSetCondition{} } else { - yyv1819 := &yyv1816[yyj1816] - yyv1819.CodecDecodeSelf(d) + yyv1876 := &yyv1873[yyj1873] + yyv1876.CodecDecodeSelf(d) } } else { @@ -22499,17 +23164,17 @@ func (x codecSelfer1234) decSliceReplicaSet(v *[]ReplicaSet, d *codec1978.Decode } } - if yyj1816 < len(yyv1816) { - yyv1816 = yyv1816[:yyj1816] - yyc1816 = true - } else if yyj1816 == 0 && yyv1816 == nil { - yyv1816 = []ReplicaSet{} - yyc1816 = true + if yyj1873 < len(yyv1873) { + yyv1873 = yyv1873[:yyj1873] + yyc1873 = true + } else if yyj1873 == 0 && yyv1873 == nil { + yyv1873 = []ReplicaSetCondition{} + yyc1873 = true } } - yyh1816.End() - if yyc1816 { - *v = yyv1816 + yyh1873.End() + if yyc1873 { + *v = yyv1873 } } @@ -22518,14 +23183,14 @@ func (x codecSelfer1234) encSlicev1_Capability(v []pkg2_v1.Capability, e *codec1 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1820 := range v { + for _, yyv1877 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1821 := z.EncBinary() - _ = yym1821 + yym1878 := z.EncBinary() + _ = yym1878 if false { - } else if z.HasExtensions() && z.EncExt(yyv1820) { + } else if z.HasExtensions() && z.EncExt(yyv1877) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyv1820)) + r.EncodeString(codecSelferC_UTF81234, string(yyv1877)) } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) @@ -22536,75 +23201,75 @@ func (x codecSelfer1234) decSlicev1_Capability(v *[]pkg2_v1.Capability, d *codec z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1822 := *v - yyh1822, yyl1822 := z.DecSliceHelperStart() - var yyc1822 bool - if yyl1822 == 0 { - if yyv1822 == nil { - yyv1822 = []pkg2_v1.Capability{} - yyc1822 = true - } else if len(yyv1822) != 0 { - yyv1822 = yyv1822[:0] - yyc1822 = true + yyv1879 := *v + yyh1879, yyl1879 := z.DecSliceHelperStart() + var yyc1879 bool + if yyl1879 == 0 { + if yyv1879 == nil { + yyv1879 = []pkg2_v1.Capability{} + yyc1879 = true + } else if len(yyv1879) != 0 { + yyv1879 = yyv1879[:0] + yyc1879 = true } - } else if yyl1822 > 0 { - var yyrr1822, yyrl1822 int - var yyrt1822 bool - if yyl1822 > cap(yyv1822) { + } else if yyl1879 > 0 { + var yyrr1879, yyrl1879 int + var yyrt1879 bool + if yyl1879 > cap(yyv1879) { - yyrl1822, yyrt1822 = z.DecInferLen(yyl1822, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1822 { - if yyrl1822 <= cap(yyv1822) { - yyv1822 = yyv1822[:yyrl1822] + yyrl1879, yyrt1879 = z.DecInferLen(yyl1879, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1879 { + if yyrl1879 <= cap(yyv1879) { + yyv1879 = yyv1879[:yyrl1879] } else { - yyv1822 = make([]pkg2_v1.Capability, yyrl1822) + yyv1879 = make([]pkg2_v1.Capability, yyrl1879) } } else { - yyv1822 = make([]pkg2_v1.Capability, yyrl1822) + yyv1879 = make([]pkg2_v1.Capability, yyrl1879) } - yyc1822 = true - yyrr1822 = len(yyv1822) - } else if yyl1822 != len(yyv1822) { - yyv1822 = yyv1822[:yyl1822] - yyc1822 = true + yyc1879 = true + yyrr1879 = len(yyv1879) + } else if yyl1879 != len(yyv1879) { + yyv1879 = yyv1879[:yyl1879] + yyc1879 = true } - yyj1822 := 0 - for ; yyj1822 < yyrr1822; yyj1822++ { - yyh1822.ElemContainerState(yyj1822) + yyj1879 := 0 + for ; yyj1879 < yyrr1879; yyj1879++ { + yyh1879.ElemContainerState(yyj1879) if r.TryDecodeAsNil() { - yyv1822[yyj1822] = "" + yyv1879[yyj1879] = "" } else { - yyv1822[yyj1822] = pkg2_v1.Capability(r.DecodeString()) + yyv1879[yyj1879] = pkg2_v1.Capability(r.DecodeString()) } } - if yyrt1822 { - for ; yyj1822 < yyl1822; yyj1822++ { - yyv1822 = append(yyv1822, "") - yyh1822.ElemContainerState(yyj1822) + if yyrt1879 { + for ; yyj1879 < yyl1879; yyj1879++ { + yyv1879 = append(yyv1879, "") + yyh1879.ElemContainerState(yyj1879) if r.TryDecodeAsNil() { - yyv1822[yyj1822] = "" + yyv1879[yyj1879] = "" } else { - yyv1822[yyj1822] = pkg2_v1.Capability(r.DecodeString()) + yyv1879[yyj1879] = pkg2_v1.Capability(r.DecodeString()) } } } } else { - yyj1822 := 0 - for ; !r.CheckBreak(); yyj1822++ { + yyj1879 := 0 + for ; !r.CheckBreak(); yyj1879++ { - if yyj1822 >= len(yyv1822) { - yyv1822 = append(yyv1822, "") // var yyz1822 pkg2_v1.Capability - yyc1822 = true + if yyj1879 >= len(yyv1879) { + yyv1879 = append(yyv1879, "") // var yyz1879 pkg2_v1.Capability + yyc1879 = true } - yyh1822.ElemContainerState(yyj1822) - if yyj1822 < len(yyv1822) { + yyh1879.ElemContainerState(yyj1879) + if yyj1879 < len(yyv1879) { if r.TryDecodeAsNil() { - yyv1822[yyj1822] = "" + yyv1879[yyj1879] = "" } else { - yyv1822[yyj1822] = pkg2_v1.Capability(r.DecodeString()) + yyv1879[yyj1879] = pkg2_v1.Capability(r.DecodeString()) } } else { @@ -22612,17 +23277,17 @@ func (x codecSelfer1234) decSlicev1_Capability(v *[]pkg2_v1.Capability, d *codec } } - if yyj1822 < len(yyv1822) { - yyv1822 = yyv1822[:yyj1822] - yyc1822 = true - } else if yyj1822 == 0 && yyv1822 == nil { - yyv1822 = []pkg2_v1.Capability{} - yyc1822 = true + if yyj1879 < len(yyv1879) { + yyv1879 = yyv1879[:yyj1879] + yyc1879 = true + } else if yyj1879 == 0 && yyv1879 == nil { + yyv1879 = []pkg2_v1.Capability{} + yyc1879 = true } } - yyh1822.End() - if yyc1822 { - *v = yyv1822 + yyh1879.End() + if yyc1879 { + *v = yyv1879 } } @@ -22631,9 +23296,9 @@ func (x codecSelfer1234) encSliceFSType(v []FSType, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1826 := range v { + for _, yyv1883 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv1826.CodecEncodeSelf(e) + yyv1883.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22643,75 +23308,75 @@ func (x codecSelfer1234) decSliceFSType(v *[]FSType, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1827 := *v - yyh1827, yyl1827 := z.DecSliceHelperStart() - var yyc1827 bool - if yyl1827 == 0 { - if yyv1827 == nil { - yyv1827 = []FSType{} - yyc1827 = true - } else if len(yyv1827) != 0 { - yyv1827 = yyv1827[:0] - yyc1827 = true + yyv1884 := *v + yyh1884, yyl1884 := z.DecSliceHelperStart() + var yyc1884 bool + if yyl1884 == 0 { + if yyv1884 == nil { + yyv1884 = []FSType{} + yyc1884 = true + } else if len(yyv1884) != 0 { + yyv1884 = yyv1884[:0] + yyc1884 = true } - } else if yyl1827 > 0 { - var yyrr1827, yyrl1827 int - var yyrt1827 bool - if yyl1827 > cap(yyv1827) { + } else if yyl1884 > 0 { + var yyrr1884, yyrl1884 int + var yyrt1884 bool + if yyl1884 > cap(yyv1884) { - yyrl1827, yyrt1827 = z.DecInferLen(yyl1827, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1827 { - if yyrl1827 <= cap(yyv1827) { - yyv1827 = yyv1827[:yyrl1827] + yyrl1884, yyrt1884 = z.DecInferLen(yyl1884, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1884 { + if yyrl1884 <= cap(yyv1884) { + yyv1884 = yyv1884[:yyrl1884] } else { - yyv1827 = make([]FSType, yyrl1827) + yyv1884 = make([]FSType, yyrl1884) } } else { - yyv1827 = make([]FSType, yyrl1827) + yyv1884 = make([]FSType, yyrl1884) } - yyc1827 = true - yyrr1827 = len(yyv1827) - } else if yyl1827 != len(yyv1827) { - yyv1827 = yyv1827[:yyl1827] - yyc1827 = true + yyc1884 = true + yyrr1884 = len(yyv1884) + } else if yyl1884 != len(yyv1884) { + yyv1884 = yyv1884[:yyl1884] + yyc1884 = true } - yyj1827 := 0 - for ; yyj1827 < yyrr1827; yyj1827++ { - yyh1827.ElemContainerState(yyj1827) + yyj1884 := 0 + for ; yyj1884 < yyrr1884; yyj1884++ { + yyh1884.ElemContainerState(yyj1884) if r.TryDecodeAsNil() { - yyv1827[yyj1827] = "" + yyv1884[yyj1884] = "" } else { - yyv1827[yyj1827] = FSType(r.DecodeString()) + yyv1884[yyj1884] = FSType(r.DecodeString()) } } - if yyrt1827 { - for ; yyj1827 < yyl1827; yyj1827++ { - yyv1827 = append(yyv1827, "") - yyh1827.ElemContainerState(yyj1827) + if yyrt1884 { + for ; yyj1884 < yyl1884; yyj1884++ { + yyv1884 = append(yyv1884, "") + yyh1884.ElemContainerState(yyj1884) if r.TryDecodeAsNil() { - yyv1827[yyj1827] = "" + yyv1884[yyj1884] = "" } else { - yyv1827[yyj1827] = FSType(r.DecodeString()) + yyv1884[yyj1884] = FSType(r.DecodeString()) } } } } else { - yyj1827 := 0 - for ; !r.CheckBreak(); yyj1827++ { + yyj1884 := 0 + for ; !r.CheckBreak(); yyj1884++ { - if yyj1827 >= len(yyv1827) { - yyv1827 = append(yyv1827, "") // var yyz1827 FSType - yyc1827 = true + if yyj1884 >= len(yyv1884) { + yyv1884 = append(yyv1884, "") // var yyz1884 FSType + yyc1884 = true } - yyh1827.ElemContainerState(yyj1827) - if yyj1827 < len(yyv1827) { + yyh1884.ElemContainerState(yyj1884) + if yyj1884 < len(yyv1884) { if r.TryDecodeAsNil() { - yyv1827[yyj1827] = "" + yyv1884[yyj1884] = "" } else { - yyv1827[yyj1827] = FSType(r.DecodeString()) + yyv1884[yyj1884] = FSType(r.DecodeString()) } } else { @@ -22719,17 +23384,17 @@ func (x codecSelfer1234) decSliceFSType(v *[]FSType, d *codec1978.Decoder) { } } - if yyj1827 < len(yyv1827) { - yyv1827 = yyv1827[:yyj1827] - yyc1827 = true - } else if yyj1827 == 0 && yyv1827 == nil { - yyv1827 = []FSType{} - yyc1827 = true + if yyj1884 < len(yyv1884) { + yyv1884 = yyv1884[:yyj1884] + yyc1884 = true + } else if yyj1884 == 0 && yyv1884 == nil { + yyv1884 = []FSType{} + yyc1884 = true } } - yyh1827.End() - if yyc1827 { - *v = yyv1827 + yyh1884.End() + if yyc1884 { + *v = yyv1884 } } @@ -22738,10 +23403,10 @@ func (x codecSelfer1234) encSliceHostPortRange(v []HostPortRange, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1831 := range v { + for _, yyv1888 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1832 := &yyv1831 - yy1832.CodecEncodeSelf(e) + yy1889 := &yyv1888 + yy1889.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22751,83 +23416,83 @@ func (x codecSelfer1234) decSliceHostPortRange(v *[]HostPortRange, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1833 := *v - yyh1833, yyl1833 := z.DecSliceHelperStart() - var yyc1833 bool - if yyl1833 == 0 { - if yyv1833 == nil { - yyv1833 = []HostPortRange{} - yyc1833 = true - } else if len(yyv1833) != 0 { - yyv1833 = yyv1833[:0] - yyc1833 = true + yyv1890 := *v + yyh1890, yyl1890 := z.DecSliceHelperStart() + var yyc1890 bool + if yyl1890 == 0 { + if yyv1890 == nil { + yyv1890 = []HostPortRange{} + yyc1890 = true + } else if len(yyv1890) != 0 { + yyv1890 = yyv1890[:0] + yyc1890 = true } - } else if yyl1833 > 0 { - var yyrr1833, yyrl1833 int - var yyrt1833 bool - if yyl1833 > cap(yyv1833) { + } else if yyl1890 > 0 { + var yyrr1890, yyrl1890 int + var yyrt1890 bool + if yyl1890 > cap(yyv1890) { - yyrg1833 := len(yyv1833) > 0 - yyv21833 := yyv1833 - yyrl1833, yyrt1833 = z.DecInferLen(yyl1833, z.DecBasicHandle().MaxInitLen, 8) - if yyrt1833 { - if yyrl1833 <= cap(yyv1833) { - yyv1833 = yyv1833[:yyrl1833] + yyrg1890 := len(yyv1890) > 0 + yyv21890 := yyv1890 + yyrl1890, yyrt1890 = z.DecInferLen(yyl1890, z.DecBasicHandle().MaxInitLen, 8) + if yyrt1890 { + if yyrl1890 <= cap(yyv1890) { + yyv1890 = yyv1890[:yyrl1890] } else { - yyv1833 = make([]HostPortRange, yyrl1833) + yyv1890 = make([]HostPortRange, yyrl1890) } } else { - yyv1833 = make([]HostPortRange, yyrl1833) + yyv1890 = make([]HostPortRange, yyrl1890) } - yyc1833 = true - yyrr1833 = len(yyv1833) - if yyrg1833 { - copy(yyv1833, yyv21833) + yyc1890 = true + yyrr1890 = len(yyv1890) + if yyrg1890 { + copy(yyv1890, yyv21890) } - } else if yyl1833 != len(yyv1833) { - yyv1833 = yyv1833[:yyl1833] - yyc1833 = true + } else if yyl1890 != len(yyv1890) { + yyv1890 = yyv1890[:yyl1890] + yyc1890 = true } - yyj1833 := 0 - for ; yyj1833 < yyrr1833; yyj1833++ { - yyh1833.ElemContainerState(yyj1833) + yyj1890 := 0 + for ; yyj1890 < yyrr1890; yyj1890++ { + yyh1890.ElemContainerState(yyj1890) if r.TryDecodeAsNil() { - yyv1833[yyj1833] = HostPortRange{} + yyv1890[yyj1890] = HostPortRange{} } else { - yyv1834 := &yyv1833[yyj1833] - yyv1834.CodecDecodeSelf(d) + yyv1891 := &yyv1890[yyj1890] + yyv1891.CodecDecodeSelf(d) } } - if yyrt1833 { - for ; yyj1833 < yyl1833; yyj1833++ { - yyv1833 = append(yyv1833, HostPortRange{}) - yyh1833.ElemContainerState(yyj1833) + if yyrt1890 { + for ; yyj1890 < yyl1890; yyj1890++ { + yyv1890 = append(yyv1890, HostPortRange{}) + yyh1890.ElemContainerState(yyj1890) if r.TryDecodeAsNil() { - yyv1833[yyj1833] = HostPortRange{} + yyv1890[yyj1890] = HostPortRange{} } else { - yyv1835 := &yyv1833[yyj1833] - yyv1835.CodecDecodeSelf(d) + yyv1892 := &yyv1890[yyj1890] + yyv1892.CodecDecodeSelf(d) } } } } else { - yyj1833 := 0 - for ; !r.CheckBreak(); yyj1833++ { + yyj1890 := 0 + for ; !r.CheckBreak(); yyj1890++ { - if yyj1833 >= len(yyv1833) { - yyv1833 = append(yyv1833, HostPortRange{}) // var yyz1833 HostPortRange - yyc1833 = true + if yyj1890 >= len(yyv1890) { + yyv1890 = append(yyv1890, HostPortRange{}) // var yyz1890 HostPortRange + yyc1890 = true } - yyh1833.ElemContainerState(yyj1833) - if yyj1833 < len(yyv1833) { + yyh1890.ElemContainerState(yyj1890) + if yyj1890 < len(yyv1890) { if r.TryDecodeAsNil() { - yyv1833[yyj1833] = HostPortRange{} + yyv1890[yyj1890] = HostPortRange{} } else { - yyv1836 := &yyv1833[yyj1833] - yyv1836.CodecDecodeSelf(d) + yyv1893 := &yyv1890[yyj1890] + yyv1893.CodecDecodeSelf(d) } } else { @@ -22835,17 +23500,17 @@ func (x codecSelfer1234) decSliceHostPortRange(v *[]HostPortRange, d *codec1978. } } - if yyj1833 < len(yyv1833) { - yyv1833 = yyv1833[:yyj1833] - yyc1833 = true - } else if yyj1833 == 0 && yyv1833 == nil { - yyv1833 = []HostPortRange{} - yyc1833 = true + if yyj1890 < len(yyv1890) { + yyv1890 = yyv1890[:yyj1890] + yyc1890 = true + } else if yyj1890 == 0 && yyv1890 == nil { + yyv1890 = []HostPortRange{} + yyc1890 = true } } - yyh1833.End() - if yyc1833 { - *v = yyv1833 + yyh1890.End() + if yyc1890 { + *v = yyv1890 } } @@ -22854,10 +23519,10 @@ func (x codecSelfer1234) encSliceIDRange(v []IDRange, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1837 := range v { + for _, yyv1894 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1838 := &yyv1837 - yy1838.CodecEncodeSelf(e) + yy1895 := &yyv1894 + yy1895.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22867,83 +23532,83 @@ func (x codecSelfer1234) decSliceIDRange(v *[]IDRange, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1839 := *v - yyh1839, yyl1839 := z.DecSliceHelperStart() - var yyc1839 bool - if yyl1839 == 0 { - if yyv1839 == nil { - yyv1839 = []IDRange{} - yyc1839 = true - } else if len(yyv1839) != 0 { - yyv1839 = yyv1839[:0] - yyc1839 = true + yyv1896 := *v + yyh1896, yyl1896 := z.DecSliceHelperStart() + var yyc1896 bool + if yyl1896 == 0 { + if yyv1896 == nil { + yyv1896 = []IDRange{} + yyc1896 = true + } else if len(yyv1896) != 0 { + yyv1896 = yyv1896[:0] + yyc1896 = true } - } else if yyl1839 > 0 { - var yyrr1839, yyrl1839 int - var yyrt1839 bool - if yyl1839 > cap(yyv1839) { + } else if yyl1896 > 0 { + var yyrr1896, yyrl1896 int + var yyrt1896 bool + if yyl1896 > cap(yyv1896) { - yyrg1839 := len(yyv1839) > 0 - yyv21839 := yyv1839 - yyrl1839, yyrt1839 = z.DecInferLen(yyl1839, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1839 { - if yyrl1839 <= cap(yyv1839) { - yyv1839 = yyv1839[:yyrl1839] + yyrg1896 := len(yyv1896) > 0 + yyv21896 := yyv1896 + yyrl1896, yyrt1896 = z.DecInferLen(yyl1896, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1896 { + if yyrl1896 <= cap(yyv1896) { + yyv1896 = yyv1896[:yyrl1896] } else { - yyv1839 = make([]IDRange, yyrl1839) + yyv1896 = make([]IDRange, yyrl1896) } } else { - yyv1839 = make([]IDRange, yyrl1839) + yyv1896 = make([]IDRange, yyrl1896) } - yyc1839 = true - yyrr1839 = len(yyv1839) - if yyrg1839 { - copy(yyv1839, yyv21839) + yyc1896 = true + yyrr1896 = len(yyv1896) + if yyrg1896 { + copy(yyv1896, yyv21896) } - } else if yyl1839 != len(yyv1839) { - yyv1839 = yyv1839[:yyl1839] - yyc1839 = true + } else if yyl1896 != len(yyv1896) { + yyv1896 = yyv1896[:yyl1896] + yyc1896 = true } - yyj1839 := 0 - for ; yyj1839 < yyrr1839; yyj1839++ { - yyh1839.ElemContainerState(yyj1839) + yyj1896 := 0 + for ; yyj1896 < yyrr1896; yyj1896++ { + yyh1896.ElemContainerState(yyj1896) if r.TryDecodeAsNil() { - yyv1839[yyj1839] = IDRange{} + yyv1896[yyj1896] = IDRange{} } else { - yyv1840 := &yyv1839[yyj1839] - yyv1840.CodecDecodeSelf(d) + yyv1897 := &yyv1896[yyj1896] + yyv1897.CodecDecodeSelf(d) } } - if yyrt1839 { - for ; yyj1839 < yyl1839; yyj1839++ { - yyv1839 = append(yyv1839, IDRange{}) - yyh1839.ElemContainerState(yyj1839) + if yyrt1896 { + for ; yyj1896 < yyl1896; yyj1896++ { + yyv1896 = append(yyv1896, IDRange{}) + yyh1896.ElemContainerState(yyj1896) if r.TryDecodeAsNil() { - yyv1839[yyj1839] = IDRange{} + yyv1896[yyj1896] = IDRange{} } else { - yyv1841 := &yyv1839[yyj1839] - yyv1841.CodecDecodeSelf(d) + yyv1898 := &yyv1896[yyj1896] + yyv1898.CodecDecodeSelf(d) } } } } else { - yyj1839 := 0 - for ; !r.CheckBreak(); yyj1839++ { + yyj1896 := 0 + for ; !r.CheckBreak(); yyj1896++ { - if yyj1839 >= len(yyv1839) { - yyv1839 = append(yyv1839, IDRange{}) // var yyz1839 IDRange - yyc1839 = true + if yyj1896 >= len(yyv1896) { + yyv1896 = append(yyv1896, IDRange{}) // var yyz1896 IDRange + yyc1896 = true } - yyh1839.ElemContainerState(yyj1839) - if yyj1839 < len(yyv1839) { + yyh1896.ElemContainerState(yyj1896) + if yyj1896 < len(yyv1896) { if r.TryDecodeAsNil() { - yyv1839[yyj1839] = IDRange{} + yyv1896[yyj1896] = IDRange{} } else { - yyv1842 := &yyv1839[yyj1839] - yyv1842.CodecDecodeSelf(d) + yyv1899 := &yyv1896[yyj1896] + yyv1899.CodecDecodeSelf(d) } } else { @@ -22951,17 +23616,17 @@ func (x codecSelfer1234) decSliceIDRange(v *[]IDRange, d *codec1978.Decoder) { } } - if yyj1839 < len(yyv1839) { - yyv1839 = yyv1839[:yyj1839] - yyc1839 = true - } else if yyj1839 == 0 && yyv1839 == nil { - yyv1839 = []IDRange{} - yyc1839 = true + if yyj1896 < len(yyv1896) { + yyv1896 = yyv1896[:yyj1896] + yyc1896 = true + } else if yyj1896 == 0 && yyv1896 == nil { + yyv1896 = []IDRange{} + yyc1896 = true } } - yyh1839.End() - if yyc1839 { - *v = yyv1839 + yyh1896.End() + if yyc1896 { + *v = yyv1896 } } @@ -22970,10 +23635,10 @@ func (x codecSelfer1234) encSlicePodSecurityPolicy(v []PodSecurityPolicy, e *cod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1843 := range v { + for _, yyv1900 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1844 := &yyv1843 - yy1844.CodecEncodeSelf(e) + yy1901 := &yyv1900 + yy1901.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22983,83 +23648,83 @@ func (x codecSelfer1234) decSlicePodSecurityPolicy(v *[]PodSecurityPolicy, d *co z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1845 := *v - yyh1845, yyl1845 := z.DecSliceHelperStart() - var yyc1845 bool - if yyl1845 == 0 { - if yyv1845 == nil { - yyv1845 = []PodSecurityPolicy{} - yyc1845 = true - } else if len(yyv1845) != 0 { - yyv1845 = yyv1845[:0] - yyc1845 = true + yyv1902 := *v + yyh1902, yyl1902 := z.DecSliceHelperStart() + var yyc1902 bool + if yyl1902 == 0 { + if yyv1902 == nil { + yyv1902 = []PodSecurityPolicy{} + yyc1902 = true + } else if len(yyv1902) != 0 { + yyv1902 = yyv1902[:0] + yyc1902 = true } - } else if yyl1845 > 0 { - var yyrr1845, yyrl1845 int - var yyrt1845 bool - if yyl1845 > cap(yyv1845) { + } else if yyl1902 > 0 { + var yyrr1902, yyrl1902 int + var yyrt1902 bool + if yyl1902 > cap(yyv1902) { - yyrg1845 := len(yyv1845) > 0 - yyv21845 := yyv1845 - yyrl1845, yyrt1845 = z.DecInferLen(yyl1845, z.DecBasicHandle().MaxInitLen, 552) - if yyrt1845 { - if yyrl1845 <= cap(yyv1845) { - yyv1845 = yyv1845[:yyrl1845] + yyrg1902 := len(yyv1902) > 0 + yyv21902 := yyv1902 + yyrl1902, yyrt1902 = z.DecInferLen(yyl1902, z.DecBasicHandle().MaxInitLen, 552) + if yyrt1902 { + if yyrl1902 <= cap(yyv1902) { + yyv1902 = yyv1902[:yyrl1902] } else { - yyv1845 = make([]PodSecurityPolicy, yyrl1845) + yyv1902 = make([]PodSecurityPolicy, yyrl1902) } } else { - yyv1845 = make([]PodSecurityPolicy, yyrl1845) + yyv1902 = make([]PodSecurityPolicy, yyrl1902) } - yyc1845 = true - yyrr1845 = len(yyv1845) - if yyrg1845 { - copy(yyv1845, yyv21845) + yyc1902 = true + yyrr1902 = len(yyv1902) + if yyrg1902 { + copy(yyv1902, yyv21902) } - } else if yyl1845 != len(yyv1845) { - yyv1845 = yyv1845[:yyl1845] - yyc1845 = true + } else if yyl1902 != len(yyv1902) { + yyv1902 = yyv1902[:yyl1902] + yyc1902 = true } - yyj1845 := 0 - for ; yyj1845 < yyrr1845; yyj1845++ { - yyh1845.ElemContainerState(yyj1845) + yyj1902 := 0 + for ; yyj1902 < yyrr1902; yyj1902++ { + yyh1902.ElemContainerState(yyj1902) if r.TryDecodeAsNil() { - yyv1845[yyj1845] = PodSecurityPolicy{} + yyv1902[yyj1902] = PodSecurityPolicy{} } else { - yyv1846 := &yyv1845[yyj1845] - yyv1846.CodecDecodeSelf(d) + yyv1903 := &yyv1902[yyj1902] + yyv1903.CodecDecodeSelf(d) } } - if yyrt1845 { - for ; yyj1845 < yyl1845; yyj1845++ { - yyv1845 = append(yyv1845, PodSecurityPolicy{}) - yyh1845.ElemContainerState(yyj1845) + if yyrt1902 { + for ; yyj1902 < yyl1902; yyj1902++ { + yyv1902 = append(yyv1902, PodSecurityPolicy{}) + yyh1902.ElemContainerState(yyj1902) if r.TryDecodeAsNil() { - yyv1845[yyj1845] = PodSecurityPolicy{} + yyv1902[yyj1902] = PodSecurityPolicy{} } else { - yyv1847 := &yyv1845[yyj1845] - yyv1847.CodecDecodeSelf(d) + yyv1904 := &yyv1902[yyj1902] + yyv1904.CodecDecodeSelf(d) } } } } else { - yyj1845 := 0 - for ; !r.CheckBreak(); yyj1845++ { + yyj1902 := 0 + for ; !r.CheckBreak(); yyj1902++ { - if yyj1845 >= len(yyv1845) { - yyv1845 = append(yyv1845, PodSecurityPolicy{}) // var yyz1845 PodSecurityPolicy - yyc1845 = true + if yyj1902 >= len(yyv1902) { + yyv1902 = append(yyv1902, PodSecurityPolicy{}) // var yyz1902 PodSecurityPolicy + yyc1902 = true } - yyh1845.ElemContainerState(yyj1845) - if yyj1845 < len(yyv1845) { + yyh1902.ElemContainerState(yyj1902) + if yyj1902 < len(yyv1902) { if r.TryDecodeAsNil() { - yyv1845[yyj1845] = PodSecurityPolicy{} + yyv1902[yyj1902] = PodSecurityPolicy{} } else { - yyv1848 := &yyv1845[yyj1845] - yyv1848.CodecDecodeSelf(d) + yyv1905 := &yyv1902[yyj1902] + yyv1905.CodecDecodeSelf(d) } } else { @@ -23067,17 +23732,17 @@ func (x codecSelfer1234) decSlicePodSecurityPolicy(v *[]PodSecurityPolicy, d *co } } - if yyj1845 < len(yyv1845) { - yyv1845 = yyv1845[:yyj1845] - yyc1845 = true - } else if yyj1845 == 0 && yyv1845 == nil { - yyv1845 = []PodSecurityPolicy{} - yyc1845 = true + if yyj1902 < len(yyv1902) { + yyv1902 = yyv1902[:yyj1902] + yyc1902 = true + } else if yyj1902 == 0 && yyv1902 == nil { + yyv1902 = []PodSecurityPolicy{} + yyc1902 = true } } - yyh1845.End() - if yyc1845 { - *v = yyv1845 + yyh1902.End() + if yyc1902 { + *v = yyv1902 } } @@ -23086,10 +23751,10 @@ func (x codecSelfer1234) encSliceNetworkPolicyIngressRule(v []NetworkPolicyIngre z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1849 := range v { + for _, yyv1906 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1850 := &yyv1849 - yy1850.CodecEncodeSelf(e) + yy1907 := &yyv1906 + yy1907.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23099,83 +23764,83 @@ func (x codecSelfer1234) decSliceNetworkPolicyIngressRule(v *[]NetworkPolicyIngr z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1851 := *v - yyh1851, yyl1851 := z.DecSliceHelperStart() - var yyc1851 bool - if yyl1851 == 0 { - if yyv1851 == nil { - yyv1851 = []NetworkPolicyIngressRule{} - yyc1851 = true - } else if len(yyv1851) != 0 { - yyv1851 = yyv1851[:0] - yyc1851 = true + yyv1908 := *v + yyh1908, yyl1908 := z.DecSliceHelperStart() + var yyc1908 bool + if yyl1908 == 0 { + if yyv1908 == nil { + yyv1908 = []NetworkPolicyIngressRule{} + yyc1908 = true + } else if len(yyv1908) != 0 { + yyv1908 = yyv1908[:0] + yyc1908 = true } - } else if yyl1851 > 0 { - var yyrr1851, yyrl1851 int - var yyrt1851 bool - if yyl1851 > cap(yyv1851) { + } else if yyl1908 > 0 { + var yyrr1908, yyrl1908 int + var yyrt1908 bool + if yyl1908 > cap(yyv1908) { - yyrg1851 := len(yyv1851) > 0 - yyv21851 := yyv1851 - yyrl1851, yyrt1851 = z.DecInferLen(yyl1851, z.DecBasicHandle().MaxInitLen, 48) - if yyrt1851 { - if yyrl1851 <= cap(yyv1851) { - yyv1851 = yyv1851[:yyrl1851] + yyrg1908 := len(yyv1908) > 0 + yyv21908 := yyv1908 + yyrl1908, yyrt1908 = z.DecInferLen(yyl1908, z.DecBasicHandle().MaxInitLen, 48) + if yyrt1908 { + if yyrl1908 <= cap(yyv1908) { + yyv1908 = yyv1908[:yyrl1908] } else { - yyv1851 = make([]NetworkPolicyIngressRule, yyrl1851) + yyv1908 = make([]NetworkPolicyIngressRule, yyrl1908) } } else { - yyv1851 = make([]NetworkPolicyIngressRule, yyrl1851) + yyv1908 = make([]NetworkPolicyIngressRule, yyrl1908) } - yyc1851 = true - yyrr1851 = len(yyv1851) - if yyrg1851 { - copy(yyv1851, yyv21851) + yyc1908 = true + yyrr1908 = len(yyv1908) + if yyrg1908 { + copy(yyv1908, yyv21908) } - } else if yyl1851 != len(yyv1851) { - yyv1851 = yyv1851[:yyl1851] - yyc1851 = true + } else if yyl1908 != len(yyv1908) { + yyv1908 = yyv1908[:yyl1908] + yyc1908 = true } - yyj1851 := 0 - for ; yyj1851 < yyrr1851; yyj1851++ { - yyh1851.ElemContainerState(yyj1851) + yyj1908 := 0 + for ; yyj1908 < yyrr1908; yyj1908++ { + yyh1908.ElemContainerState(yyj1908) if r.TryDecodeAsNil() { - yyv1851[yyj1851] = NetworkPolicyIngressRule{} + yyv1908[yyj1908] = NetworkPolicyIngressRule{} } else { - yyv1852 := &yyv1851[yyj1851] - yyv1852.CodecDecodeSelf(d) + yyv1909 := &yyv1908[yyj1908] + yyv1909.CodecDecodeSelf(d) } } - if yyrt1851 { - for ; yyj1851 < yyl1851; yyj1851++ { - yyv1851 = append(yyv1851, NetworkPolicyIngressRule{}) - yyh1851.ElemContainerState(yyj1851) + if yyrt1908 { + for ; yyj1908 < yyl1908; yyj1908++ { + yyv1908 = append(yyv1908, NetworkPolicyIngressRule{}) + yyh1908.ElemContainerState(yyj1908) if r.TryDecodeAsNil() { - yyv1851[yyj1851] = NetworkPolicyIngressRule{} + yyv1908[yyj1908] = NetworkPolicyIngressRule{} } else { - yyv1853 := &yyv1851[yyj1851] - yyv1853.CodecDecodeSelf(d) + yyv1910 := &yyv1908[yyj1908] + yyv1910.CodecDecodeSelf(d) } } } } else { - yyj1851 := 0 - for ; !r.CheckBreak(); yyj1851++ { + yyj1908 := 0 + for ; !r.CheckBreak(); yyj1908++ { - if yyj1851 >= len(yyv1851) { - yyv1851 = append(yyv1851, NetworkPolicyIngressRule{}) // var yyz1851 NetworkPolicyIngressRule - yyc1851 = true + if yyj1908 >= len(yyv1908) { + yyv1908 = append(yyv1908, NetworkPolicyIngressRule{}) // var yyz1908 NetworkPolicyIngressRule + yyc1908 = true } - yyh1851.ElemContainerState(yyj1851) - if yyj1851 < len(yyv1851) { + yyh1908.ElemContainerState(yyj1908) + if yyj1908 < len(yyv1908) { if r.TryDecodeAsNil() { - yyv1851[yyj1851] = NetworkPolicyIngressRule{} + yyv1908[yyj1908] = NetworkPolicyIngressRule{} } else { - yyv1854 := &yyv1851[yyj1851] - yyv1854.CodecDecodeSelf(d) + yyv1911 := &yyv1908[yyj1908] + yyv1911.CodecDecodeSelf(d) } } else { @@ -23183,17 +23848,17 @@ func (x codecSelfer1234) decSliceNetworkPolicyIngressRule(v *[]NetworkPolicyIngr } } - if yyj1851 < len(yyv1851) { - yyv1851 = yyv1851[:yyj1851] - yyc1851 = true - } else if yyj1851 == 0 && yyv1851 == nil { - yyv1851 = []NetworkPolicyIngressRule{} - yyc1851 = true + if yyj1908 < len(yyv1908) { + yyv1908 = yyv1908[:yyj1908] + yyc1908 = true + } else if yyj1908 == 0 && yyv1908 == nil { + yyv1908 = []NetworkPolicyIngressRule{} + yyc1908 = true } } - yyh1851.End() - if yyc1851 { - *v = yyv1851 + yyh1908.End() + if yyc1908 { + *v = yyv1908 } } @@ -23202,10 +23867,10 @@ func (x codecSelfer1234) encSliceNetworkPolicyPort(v []NetworkPolicyPort, e *cod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1855 := range v { + for _, yyv1912 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1856 := &yyv1855 - yy1856.CodecEncodeSelf(e) + yy1913 := &yyv1912 + yy1913.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23215,83 +23880,83 @@ func (x codecSelfer1234) decSliceNetworkPolicyPort(v *[]NetworkPolicyPort, d *co z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1857 := *v - yyh1857, yyl1857 := z.DecSliceHelperStart() - var yyc1857 bool - if yyl1857 == 0 { - if yyv1857 == nil { - yyv1857 = []NetworkPolicyPort{} - yyc1857 = true - } else if len(yyv1857) != 0 { - yyv1857 = yyv1857[:0] - yyc1857 = true + yyv1914 := *v + yyh1914, yyl1914 := z.DecSliceHelperStart() + var yyc1914 bool + if yyl1914 == 0 { + if yyv1914 == nil { + yyv1914 = []NetworkPolicyPort{} + yyc1914 = true + } else if len(yyv1914) != 0 { + yyv1914 = yyv1914[:0] + yyc1914 = true } - } else if yyl1857 > 0 { - var yyrr1857, yyrl1857 int - var yyrt1857 bool - if yyl1857 > cap(yyv1857) { + } else if yyl1914 > 0 { + var yyrr1914, yyrl1914 int + var yyrt1914 bool + if yyl1914 > cap(yyv1914) { - yyrg1857 := len(yyv1857) > 0 - yyv21857 := yyv1857 - yyrl1857, yyrt1857 = z.DecInferLen(yyl1857, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1857 { - if yyrl1857 <= cap(yyv1857) { - yyv1857 = yyv1857[:yyrl1857] + yyrg1914 := len(yyv1914) > 0 + yyv21914 := yyv1914 + yyrl1914, yyrt1914 = z.DecInferLen(yyl1914, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1914 { + if yyrl1914 <= cap(yyv1914) { + yyv1914 = yyv1914[:yyrl1914] } else { - yyv1857 = make([]NetworkPolicyPort, yyrl1857) + yyv1914 = make([]NetworkPolicyPort, yyrl1914) } } else { - yyv1857 = make([]NetworkPolicyPort, yyrl1857) + yyv1914 = make([]NetworkPolicyPort, yyrl1914) } - yyc1857 = true - yyrr1857 = len(yyv1857) - if yyrg1857 { - copy(yyv1857, yyv21857) + yyc1914 = true + yyrr1914 = len(yyv1914) + if yyrg1914 { + copy(yyv1914, yyv21914) } - } else if yyl1857 != len(yyv1857) { - yyv1857 = yyv1857[:yyl1857] - yyc1857 = true + } else if yyl1914 != len(yyv1914) { + yyv1914 = yyv1914[:yyl1914] + yyc1914 = true } - yyj1857 := 0 - for ; yyj1857 < yyrr1857; yyj1857++ { - yyh1857.ElemContainerState(yyj1857) + yyj1914 := 0 + for ; yyj1914 < yyrr1914; yyj1914++ { + yyh1914.ElemContainerState(yyj1914) if r.TryDecodeAsNil() { - yyv1857[yyj1857] = NetworkPolicyPort{} + yyv1914[yyj1914] = NetworkPolicyPort{} } else { - yyv1858 := &yyv1857[yyj1857] - yyv1858.CodecDecodeSelf(d) + yyv1915 := &yyv1914[yyj1914] + yyv1915.CodecDecodeSelf(d) } } - if yyrt1857 { - for ; yyj1857 < yyl1857; yyj1857++ { - yyv1857 = append(yyv1857, NetworkPolicyPort{}) - yyh1857.ElemContainerState(yyj1857) + if yyrt1914 { + for ; yyj1914 < yyl1914; yyj1914++ { + yyv1914 = append(yyv1914, NetworkPolicyPort{}) + yyh1914.ElemContainerState(yyj1914) if r.TryDecodeAsNil() { - yyv1857[yyj1857] = NetworkPolicyPort{} + yyv1914[yyj1914] = NetworkPolicyPort{} } else { - yyv1859 := &yyv1857[yyj1857] - yyv1859.CodecDecodeSelf(d) + yyv1916 := &yyv1914[yyj1914] + yyv1916.CodecDecodeSelf(d) } } } } else { - yyj1857 := 0 - for ; !r.CheckBreak(); yyj1857++ { + yyj1914 := 0 + for ; !r.CheckBreak(); yyj1914++ { - if yyj1857 >= len(yyv1857) { - yyv1857 = append(yyv1857, NetworkPolicyPort{}) // var yyz1857 NetworkPolicyPort - yyc1857 = true + if yyj1914 >= len(yyv1914) { + yyv1914 = append(yyv1914, NetworkPolicyPort{}) // var yyz1914 NetworkPolicyPort + yyc1914 = true } - yyh1857.ElemContainerState(yyj1857) - if yyj1857 < len(yyv1857) { + yyh1914.ElemContainerState(yyj1914) + if yyj1914 < len(yyv1914) { if r.TryDecodeAsNil() { - yyv1857[yyj1857] = NetworkPolicyPort{} + yyv1914[yyj1914] = NetworkPolicyPort{} } else { - yyv1860 := &yyv1857[yyj1857] - yyv1860.CodecDecodeSelf(d) + yyv1917 := &yyv1914[yyj1914] + yyv1917.CodecDecodeSelf(d) } } else { @@ -23299,17 +23964,17 @@ func (x codecSelfer1234) decSliceNetworkPolicyPort(v *[]NetworkPolicyPort, d *co } } - if yyj1857 < len(yyv1857) { - yyv1857 = yyv1857[:yyj1857] - yyc1857 = true - } else if yyj1857 == 0 && yyv1857 == nil { - yyv1857 = []NetworkPolicyPort{} - yyc1857 = true + if yyj1914 < len(yyv1914) { + yyv1914 = yyv1914[:yyj1914] + yyc1914 = true + } else if yyj1914 == 0 && yyv1914 == nil { + yyv1914 = []NetworkPolicyPort{} + yyc1914 = true } } - yyh1857.End() - if yyc1857 { - *v = yyv1857 + yyh1914.End() + if yyc1914 { + *v = yyv1914 } } @@ -23318,10 +23983,10 @@ func (x codecSelfer1234) encSliceNetworkPolicyPeer(v []NetworkPolicyPeer, e *cod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1861 := range v { + for _, yyv1918 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1862 := &yyv1861 - yy1862.CodecEncodeSelf(e) + yy1919 := &yyv1918 + yy1919.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23331,83 +23996,83 @@ func (x codecSelfer1234) decSliceNetworkPolicyPeer(v *[]NetworkPolicyPeer, d *co z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1863 := *v - yyh1863, yyl1863 := z.DecSliceHelperStart() - var yyc1863 bool - if yyl1863 == 0 { - if yyv1863 == nil { - yyv1863 = []NetworkPolicyPeer{} - yyc1863 = true - } else if len(yyv1863) != 0 { - yyv1863 = yyv1863[:0] - yyc1863 = true + yyv1920 := *v + yyh1920, yyl1920 := z.DecSliceHelperStart() + var yyc1920 bool + if yyl1920 == 0 { + if yyv1920 == nil { + yyv1920 = []NetworkPolicyPeer{} + yyc1920 = true + } else if len(yyv1920) != 0 { + yyv1920 = yyv1920[:0] + yyc1920 = true } - } else if yyl1863 > 0 { - var yyrr1863, yyrl1863 int - var yyrt1863 bool - if yyl1863 > cap(yyv1863) { + } else if yyl1920 > 0 { + var yyrr1920, yyrl1920 int + var yyrt1920 bool + if yyl1920 > cap(yyv1920) { - yyrg1863 := len(yyv1863) > 0 - yyv21863 := yyv1863 - yyrl1863, yyrt1863 = z.DecInferLen(yyl1863, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1863 { - if yyrl1863 <= cap(yyv1863) { - yyv1863 = yyv1863[:yyrl1863] + yyrg1920 := len(yyv1920) > 0 + yyv21920 := yyv1920 + yyrl1920, yyrt1920 = z.DecInferLen(yyl1920, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1920 { + if yyrl1920 <= cap(yyv1920) { + yyv1920 = yyv1920[:yyrl1920] } else { - yyv1863 = make([]NetworkPolicyPeer, yyrl1863) + yyv1920 = make([]NetworkPolicyPeer, yyrl1920) } } else { - yyv1863 = make([]NetworkPolicyPeer, yyrl1863) + yyv1920 = make([]NetworkPolicyPeer, yyrl1920) } - yyc1863 = true - yyrr1863 = len(yyv1863) - if yyrg1863 { - copy(yyv1863, yyv21863) + yyc1920 = true + yyrr1920 = len(yyv1920) + if yyrg1920 { + copy(yyv1920, yyv21920) } - } else if yyl1863 != len(yyv1863) { - yyv1863 = yyv1863[:yyl1863] - yyc1863 = true + } else if yyl1920 != len(yyv1920) { + yyv1920 = yyv1920[:yyl1920] + yyc1920 = true } - yyj1863 := 0 - for ; yyj1863 < yyrr1863; yyj1863++ { - yyh1863.ElemContainerState(yyj1863) + yyj1920 := 0 + for ; yyj1920 < yyrr1920; yyj1920++ { + yyh1920.ElemContainerState(yyj1920) if r.TryDecodeAsNil() { - yyv1863[yyj1863] = NetworkPolicyPeer{} + yyv1920[yyj1920] = NetworkPolicyPeer{} } else { - yyv1864 := &yyv1863[yyj1863] - yyv1864.CodecDecodeSelf(d) + yyv1921 := &yyv1920[yyj1920] + yyv1921.CodecDecodeSelf(d) } } - if yyrt1863 { - for ; yyj1863 < yyl1863; yyj1863++ { - yyv1863 = append(yyv1863, NetworkPolicyPeer{}) - yyh1863.ElemContainerState(yyj1863) + if yyrt1920 { + for ; yyj1920 < yyl1920; yyj1920++ { + yyv1920 = append(yyv1920, NetworkPolicyPeer{}) + yyh1920.ElemContainerState(yyj1920) if r.TryDecodeAsNil() { - yyv1863[yyj1863] = NetworkPolicyPeer{} + yyv1920[yyj1920] = NetworkPolicyPeer{} } else { - yyv1865 := &yyv1863[yyj1863] - yyv1865.CodecDecodeSelf(d) + yyv1922 := &yyv1920[yyj1920] + yyv1922.CodecDecodeSelf(d) } } } } else { - yyj1863 := 0 - for ; !r.CheckBreak(); yyj1863++ { + yyj1920 := 0 + for ; !r.CheckBreak(); yyj1920++ { - if yyj1863 >= len(yyv1863) { - yyv1863 = append(yyv1863, NetworkPolicyPeer{}) // var yyz1863 NetworkPolicyPeer - yyc1863 = true + if yyj1920 >= len(yyv1920) { + yyv1920 = append(yyv1920, NetworkPolicyPeer{}) // var yyz1920 NetworkPolicyPeer + yyc1920 = true } - yyh1863.ElemContainerState(yyj1863) - if yyj1863 < len(yyv1863) { + yyh1920.ElemContainerState(yyj1920) + if yyj1920 < len(yyv1920) { if r.TryDecodeAsNil() { - yyv1863[yyj1863] = NetworkPolicyPeer{} + yyv1920[yyj1920] = NetworkPolicyPeer{} } else { - yyv1866 := &yyv1863[yyj1863] - yyv1866.CodecDecodeSelf(d) + yyv1923 := &yyv1920[yyj1920] + yyv1923.CodecDecodeSelf(d) } } else { @@ -23415,17 +24080,17 @@ func (x codecSelfer1234) decSliceNetworkPolicyPeer(v *[]NetworkPolicyPeer, d *co } } - if yyj1863 < len(yyv1863) { - yyv1863 = yyv1863[:yyj1863] - yyc1863 = true - } else if yyj1863 == 0 && yyv1863 == nil { - yyv1863 = []NetworkPolicyPeer{} - yyc1863 = true + if yyj1920 < len(yyv1920) { + yyv1920 = yyv1920[:yyj1920] + yyc1920 = true + } else if yyj1920 == 0 && yyv1920 == nil { + yyv1920 = []NetworkPolicyPeer{} + yyc1920 = true } } - yyh1863.End() - if yyc1863 { - *v = yyv1863 + yyh1920.End() + if yyc1920 { + *v = yyv1920 } } @@ -23434,10 +24099,10 @@ func (x codecSelfer1234) encSliceNetworkPolicy(v []NetworkPolicy, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1867 := range v { + for _, yyv1924 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1868 := &yyv1867 - yy1868.CodecEncodeSelf(e) + yy1925 := &yyv1924 + yy1925.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23447,83 +24112,83 @@ func (x codecSelfer1234) decSliceNetworkPolicy(v *[]NetworkPolicy, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1869 := *v - yyh1869, yyl1869 := z.DecSliceHelperStart() - var yyc1869 bool - if yyl1869 == 0 { - if yyv1869 == nil { - yyv1869 = []NetworkPolicy{} - yyc1869 = true - } else if len(yyv1869) != 0 { - yyv1869 = yyv1869[:0] - yyc1869 = true + yyv1926 := *v + yyh1926, yyl1926 := z.DecSliceHelperStart() + var yyc1926 bool + if yyl1926 == 0 { + if yyv1926 == nil { + yyv1926 = []NetworkPolicy{} + yyc1926 = true + } else if len(yyv1926) != 0 { + yyv1926 = yyv1926[:0] + yyc1926 = true } - } else if yyl1869 > 0 { - var yyrr1869, yyrl1869 int - var yyrt1869 bool - if yyl1869 > cap(yyv1869) { + } else if yyl1926 > 0 { + var yyrr1926, yyrl1926 int + var yyrt1926 bool + if yyl1926 > cap(yyv1926) { - yyrg1869 := len(yyv1869) > 0 - yyv21869 := yyv1869 - yyrl1869, yyrt1869 = z.DecInferLen(yyl1869, z.DecBasicHandle().MaxInitLen, 312) - if yyrt1869 { - if yyrl1869 <= cap(yyv1869) { - yyv1869 = yyv1869[:yyrl1869] + yyrg1926 := len(yyv1926) > 0 + yyv21926 := yyv1926 + yyrl1926, yyrt1926 = z.DecInferLen(yyl1926, z.DecBasicHandle().MaxInitLen, 312) + if yyrt1926 { + if yyrl1926 <= cap(yyv1926) { + yyv1926 = yyv1926[:yyrl1926] } else { - yyv1869 = make([]NetworkPolicy, yyrl1869) + yyv1926 = make([]NetworkPolicy, yyrl1926) } } else { - yyv1869 = make([]NetworkPolicy, yyrl1869) + yyv1926 = make([]NetworkPolicy, yyrl1926) } - yyc1869 = true - yyrr1869 = len(yyv1869) - if yyrg1869 { - copy(yyv1869, yyv21869) + yyc1926 = true + yyrr1926 = len(yyv1926) + if yyrg1926 { + copy(yyv1926, yyv21926) } - } else if yyl1869 != len(yyv1869) { - yyv1869 = yyv1869[:yyl1869] - yyc1869 = true + } else if yyl1926 != len(yyv1926) { + yyv1926 = yyv1926[:yyl1926] + yyc1926 = true } - yyj1869 := 0 - for ; yyj1869 < yyrr1869; yyj1869++ { - yyh1869.ElemContainerState(yyj1869) + yyj1926 := 0 + for ; yyj1926 < yyrr1926; yyj1926++ { + yyh1926.ElemContainerState(yyj1926) if r.TryDecodeAsNil() { - yyv1869[yyj1869] = NetworkPolicy{} + yyv1926[yyj1926] = NetworkPolicy{} } else { - yyv1870 := &yyv1869[yyj1869] - yyv1870.CodecDecodeSelf(d) + yyv1927 := &yyv1926[yyj1926] + yyv1927.CodecDecodeSelf(d) } } - if yyrt1869 { - for ; yyj1869 < yyl1869; yyj1869++ { - yyv1869 = append(yyv1869, NetworkPolicy{}) - yyh1869.ElemContainerState(yyj1869) + if yyrt1926 { + for ; yyj1926 < yyl1926; yyj1926++ { + yyv1926 = append(yyv1926, NetworkPolicy{}) + yyh1926.ElemContainerState(yyj1926) if r.TryDecodeAsNil() { - yyv1869[yyj1869] = NetworkPolicy{} + yyv1926[yyj1926] = NetworkPolicy{} } else { - yyv1871 := &yyv1869[yyj1869] - yyv1871.CodecDecodeSelf(d) + yyv1928 := &yyv1926[yyj1926] + yyv1928.CodecDecodeSelf(d) } } } } else { - yyj1869 := 0 - for ; !r.CheckBreak(); yyj1869++ { + yyj1926 := 0 + for ; !r.CheckBreak(); yyj1926++ { - if yyj1869 >= len(yyv1869) { - yyv1869 = append(yyv1869, NetworkPolicy{}) // var yyz1869 NetworkPolicy - yyc1869 = true + if yyj1926 >= len(yyv1926) { + yyv1926 = append(yyv1926, NetworkPolicy{}) // var yyz1926 NetworkPolicy + yyc1926 = true } - yyh1869.ElemContainerState(yyj1869) - if yyj1869 < len(yyv1869) { + yyh1926.ElemContainerState(yyj1926) + if yyj1926 < len(yyv1926) { if r.TryDecodeAsNil() { - yyv1869[yyj1869] = NetworkPolicy{} + yyv1926[yyj1926] = NetworkPolicy{} } else { - yyv1872 := &yyv1869[yyj1869] - yyv1872.CodecDecodeSelf(d) + yyv1929 := &yyv1926[yyj1926] + yyv1929.CodecDecodeSelf(d) } } else { @@ -23531,16 +24196,16 @@ func (x codecSelfer1234) decSliceNetworkPolicy(v *[]NetworkPolicy, d *codec1978. } } - if yyj1869 < len(yyv1869) { - yyv1869 = yyv1869[:yyj1869] - yyc1869 = true - } else if yyj1869 == 0 && yyv1869 == nil { - yyv1869 = []NetworkPolicy{} - yyc1869 = true + if yyj1926 < len(yyv1926) { + yyv1926 = yyv1926[:yyj1926] + yyc1926 = true + } else if yyj1926 == 0 && yyv1926 == nil { + yyv1926 = []NetworkPolicy{} + yyc1926 = true } } - yyh1869.End() - if yyc1869 { - *v = yyv1869 + yyh1926.End() + if yyc1926 { + *v = yyv1926 } } diff --git a/pkg/apis/extensions/v1beta1/types_swagger_doc_generated.go b/pkg/apis/extensions/v1beta1/types_swagger_doc_generated.go index 248487fe33cc..de74aa31944b 100644 --- a/pkg/apis/extensions/v1beta1/types_swagger_doc_generated.go +++ b/pkg/apis/extensions/v1beta1/types_swagger_doc_generated.go @@ -552,6 +552,20 @@ func (ReplicaSet) SwaggerDoc() map[string]string { return map_ReplicaSet } +var map_ReplicaSetCondition = map[string]string{ + "": "ReplicaSetCondition describes the state of a replica set at a certain point.", + "type": "Type of replica set condition.", + "status": "Status of the condition, one of True, False, Unknown.", + "lastProbeTime": "Last time we probed the condition.", + "lastTransitionTime": "The last time the condition transitioned from one status to another.", + "reason": "The reason for the condition's last transition.", + "message": "A human readable message indicating details about the transition.", +} + +func (ReplicaSetCondition) SwaggerDoc() map[string]string { + return map_ReplicaSetCondition +} + var map_ReplicaSetList = map[string]string{ "": "ReplicaSetList is a collection of ReplicaSets.", "metadata": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds", @@ -581,6 +595,7 @@ var map_ReplicaSetStatus = map[string]string{ "readyReplicas": "The number of ready replicas for this replica set.", "availableReplicas": "The number of available replicas (ready for at least minReadySeconds) for this replica set.", "observedGeneration": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.", + "conditions": "Represents the latest available observations of a replica set's current state.", } func (ReplicaSetStatus) SwaggerDoc() map[string]string { diff --git a/pkg/apis/extensions/v1beta1/zz_generated.conversion.go b/pkg/apis/extensions/v1beta1/zz_generated.conversion.go index 84863960daf8..7332e50a6664 100644 --- a/pkg/apis/extensions/v1beta1/zz_generated.conversion.go +++ b/pkg/apis/extensions/v1beta1/zz_generated.conversion.go @@ -139,6 +139,8 @@ func RegisterConversions(scheme *runtime.Scheme) error { Convert_extensions_PodSecurityPolicySpec_To_v1beta1_PodSecurityPolicySpec, Convert_v1beta1_ReplicaSet_To_extensions_ReplicaSet, Convert_extensions_ReplicaSet_To_v1beta1_ReplicaSet, + Convert_v1beta1_ReplicaSetCondition_To_extensions_ReplicaSetCondition, + Convert_extensions_ReplicaSetCondition_To_v1beta1_ReplicaSetCondition, Convert_v1beta1_ReplicaSetList_To_extensions_ReplicaSetList, Convert_extensions_ReplicaSetList_To_v1beta1_ReplicaSetList, Convert_v1beta1_ReplicaSetSpec_To_extensions_ReplicaSetSpec, @@ -2144,6 +2146,42 @@ func Convert_extensions_ReplicaSet_To_v1beta1_ReplicaSet(in *extensions.ReplicaS return autoConvert_extensions_ReplicaSet_To_v1beta1_ReplicaSet(in, out, s) } +func autoConvert_v1beta1_ReplicaSetCondition_To_extensions_ReplicaSetCondition(in *ReplicaSetCondition, out *extensions.ReplicaSetCondition, s conversion.Scope) error { + out.Type = extensions.ReplicaSetConditionType(in.Type) + out.Status = api.ConditionStatus(in.Status) + if err := api.Convert_unversioned_Time_To_unversioned_Time(&in.LastProbeTime, &out.LastProbeTime, s); err != nil { + return err + } + if err := api.Convert_unversioned_Time_To_unversioned_Time(&in.LastTransitionTime, &out.LastTransitionTime, s); err != nil { + return err + } + out.Reason = in.Reason + out.Message = in.Message + return nil +} + +func Convert_v1beta1_ReplicaSetCondition_To_extensions_ReplicaSetCondition(in *ReplicaSetCondition, out *extensions.ReplicaSetCondition, s conversion.Scope) error { + return autoConvert_v1beta1_ReplicaSetCondition_To_extensions_ReplicaSetCondition(in, out, s) +} + +func autoConvert_extensions_ReplicaSetCondition_To_v1beta1_ReplicaSetCondition(in *extensions.ReplicaSetCondition, out *ReplicaSetCondition, s conversion.Scope) error { + out.Type = ReplicaSetConditionType(in.Type) + out.Status = v1.ConditionStatus(in.Status) + if err := api.Convert_unversioned_Time_To_unversioned_Time(&in.LastProbeTime, &out.LastProbeTime, s); err != nil { + return err + } + if err := api.Convert_unversioned_Time_To_unversioned_Time(&in.LastTransitionTime, &out.LastTransitionTime, s); err != nil { + return err + } + out.Reason = in.Reason + out.Message = in.Message + return nil +} + +func Convert_extensions_ReplicaSetCondition_To_v1beta1_ReplicaSetCondition(in *extensions.ReplicaSetCondition, out *ReplicaSetCondition, s conversion.Scope) error { + return autoConvert_extensions_ReplicaSetCondition_To_v1beta1_ReplicaSetCondition(in, out, s) +} + func autoConvert_v1beta1_ReplicaSetList_To_extensions_ReplicaSetList(in *ReplicaSetList, out *extensions.ReplicaSetList, s conversion.Scope) error { if err := api.Convert_unversioned_TypeMeta_To_unversioned_TypeMeta(&in.TypeMeta, &out.TypeMeta, s); err != nil { return err @@ -2240,6 +2278,17 @@ func autoConvert_v1beta1_ReplicaSetStatus_To_extensions_ReplicaSetStatus(in *Rep out.ReadyReplicas = in.ReadyReplicas out.AvailableReplicas = in.AvailableReplicas out.ObservedGeneration = in.ObservedGeneration + if in.Conditions != nil { + in, out := &in.Conditions, &out.Conditions + *out = make([]extensions.ReplicaSetCondition, len(*in)) + for i := range *in { + if err := Convert_v1beta1_ReplicaSetCondition_To_extensions_ReplicaSetCondition(&(*in)[i], &(*out)[i], s); err != nil { + return err + } + } + } else { + out.Conditions = nil + } return nil } @@ -2253,6 +2302,17 @@ func autoConvert_extensions_ReplicaSetStatus_To_v1beta1_ReplicaSetStatus(in *ext out.ReadyReplicas = in.ReadyReplicas out.AvailableReplicas = in.AvailableReplicas out.ObservedGeneration = in.ObservedGeneration + if in.Conditions != nil { + in, out := &in.Conditions, &out.Conditions + *out = make([]ReplicaSetCondition, len(*in)) + for i := range *in { + if err := Convert_extensions_ReplicaSetCondition_To_v1beta1_ReplicaSetCondition(&(*in)[i], &(*out)[i], s); err != nil { + return err + } + } + } else { + out.Conditions = nil + } return nil } diff --git a/pkg/apis/extensions/v1beta1/zz_generated.deepcopy.go b/pkg/apis/extensions/v1beta1/zz_generated.deepcopy.go index 505f31f8f3e7..e4a0e76eaf11 100644 --- a/pkg/apis/extensions/v1beta1/zz_generated.deepcopy.go +++ b/pkg/apis/extensions/v1beta1/zz_generated.deepcopy.go @@ -88,6 +88,7 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1beta1_PodSecurityPolicyList, InType: reflect.TypeOf(&PodSecurityPolicyList{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1beta1_PodSecurityPolicySpec, InType: reflect.TypeOf(&PodSecurityPolicySpec{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1beta1_ReplicaSet, InType: reflect.TypeOf(&ReplicaSet{})}, + conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1beta1_ReplicaSetCondition, InType: reflect.TypeOf(&ReplicaSetCondition{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1beta1_ReplicaSetList, InType: reflect.TypeOf(&ReplicaSetList{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1beta1_ReplicaSetSpec, InType: reflect.TypeOf(&ReplicaSetSpec{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1beta1_ReplicaSetStatus, InType: reflect.TypeOf(&ReplicaSetStatus{})}, @@ -1133,7 +1134,23 @@ func DeepCopy_v1beta1_ReplicaSet(in interface{}, out interface{}, c *conversion. if err := DeepCopy_v1beta1_ReplicaSetSpec(&in.Spec, &out.Spec, c); err != nil { return err } + if err := DeepCopy_v1beta1_ReplicaSetStatus(&in.Status, &out.Status, c); err != nil { + return err + } + return nil + } +} + +func DeepCopy_v1beta1_ReplicaSetCondition(in interface{}, out interface{}, c *conversion.Cloner) error { + { + in := in.(*ReplicaSetCondition) + out := out.(*ReplicaSetCondition) + out.Type = in.Type out.Status = in.Status + out.LastProbeTime = in.LastProbeTime.DeepCopy() + out.LastTransitionTime = in.LastTransitionTime.DeepCopy() + out.Reason = in.Reason + out.Message = in.Message return nil } } @@ -1196,6 +1213,17 @@ func DeepCopy_v1beta1_ReplicaSetStatus(in interface{}, out interface{}, c *conve out.ReadyReplicas = in.ReadyReplicas out.AvailableReplicas = in.AvailableReplicas out.ObservedGeneration = in.ObservedGeneration + if in.Conditions != nil { + in, out := &in.Conditions, &out.Conditions + *out = make([]ReplicaSetCondition, len(*in)) + for i := range *in { + if err := DeepCopy_v1beta1_ReplicaSetCondition(&(*in)[i], &(*out)[i], c); err != nil { + return err + } + } + } else { + out.Conditions = nil + } return nil } } diff --git a/pkg/apis/extensions/zz_generated.deepcopy.go b/pkg/apis/extensions/zz_generated.deepcopy.go index 8a9e4d988e83..86dc3cb14294 100644 --- a/pkg/apis/extensions/zz_generated.deepcopy.go +++ b/pkg/apis/extensions/zz_generated.deepcopy.go @@ -75,6 +75,7 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_extensions_PodSecurityPolicyList, InType: reflect.TypeOf(&PodSecurityPolicyList{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_extensions_PodSecurityPolicySpec, InType: reflect.TypeOf(&PodSecurityPolicySpec{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_extensions_ReplicaSet, InType: reflect.TypeOf(&ReplicaSet{})}, + conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_extensions_ReplicaSetCondition, InType: reflect.TypeOf(&ReplicaSetCondition{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_extensions_ReplicaSetList, InType: reflect.TypeOf(&ReplicaSetList{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_extensions_ReplicaSetSpec, InType: reflect.TypeOf(&ReplicaSetSpec{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_extensions_ReplicaSetStatus, InType: reflect.TypeOf(&ReplicaSetStatus{})}, @@ -815,7 +816,23 @@ func DeepCopy_extensions_ReplicaSet(in interface{}, out interface{}, c *conversi if err := DeepCopy_extensions_ReplicaSetSpec(&in.Spec, &out.Spec, c); err != nil { return err } + if err := DeepCopy_extensions_ReplicaSetStatus(&in.Status, &out.Status, c); err != nil { + return err + } + return nil + } +} + +func DeepCopy_extensions_ReplicaSetCondition(in interface{}, out interface{}, c *conversion.Cloner) error { + { + in := in.(*ReplicaSetCondition) + out := out.(*ReplicaSetCondition) + out.Type = in.Type out.Status = in.Status + out.LastProbeTime = in.LastProbeTime.DeepCopy() + out.LastTransitionTime = in.LastTransitionTime.DeepCopy() + out.Reason = in.Reason + out.Message = in.Message return nil } } @@ -872,6 +889,17 @@ func DeepCopy_extensions_ReplicaSetStatus(in interface{}, out interface{}, c *co out.ReadyReplicas = in.ReadyReplicas out.AvailableReplicas = in.AvailableReplicas out.ObservedGeneration = in.ObservedGeneration + if in.Conditions != nil { + in, out := &in.Conditions, &out.Conditions + *out = make([]ReplicaSetCondition, len(*in)) + for i := range *in { + if err := DeepCopy_extensions_ReplicaSetCondition(&(*in)[i], &(*out)[i], c); err != nil { + return err + } + } + } else { + out.Conditions = nil + } return nil } } diff --git a/pkg/generated/openapi/zz_generated.openapi.go b/pkg/generated/openapi/zz_generated.openapi.go index dfa85bdbd813..20f20593351e 100644 --- a/pkg/generated/openapi/zz_generated.openapi.go +++ b/pkg/generated/openapi/zz_generated.openapi.go @@ -4220,6 +4220,58 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ Dependencies: []string{ "api.ObjectMeta", "extensions.ReplicaSetSpec", "extensions.ReplicaSetStatus"}, }, + "extensions.ReplicaSetCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicaSetCondition describes the state of a replica set at a certain point.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of replica set condition.", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status of the condition, one of True, False, Unknown.", + Type: []string{"string"}, + Format: "", + }, + }, + "lastProbeTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time we probed the condition.", + Ref: spec.MustCreateRef("#/definitions/unversioned.Time"), + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "The last time the condition transitioned from one status to another.", + Ref: spec.MustCreateRef("#/definitions/unversioned.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "The reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "A human readable message indicating details about the transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "unversioned.Time"}, + }, "extensions.ReplicaSetList": { Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4327,11 +4379,25 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ Format: "int64", }, }, + "conditions": { + SchemaProps: spec.SchemaProps{ + Description: "Represents the latest available observations of a replica set's current state.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: spec.MustCreateRef("#/definitions/extensions.ReplicaSetCondition"), + }, + }, + }, + }, + }, }, Required: []string{"replicas"}, }, }, - Dependencies: []string{}, + Dependencies: []string{ + "extensions.ReplicaSetCondition"}, }, "extensions.ReplicationControllerDummy": { Schema: spec.Schema{ @@ -11491,6 +11557,58 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ Dependencies: []string{ "v1.ObjectMeta", "v1.ReplicationControllerSpec", "v1.ReplicationControllerStatus"}, }, + "v1.ReplicationControllerCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicationControllerCondition describes the state of a replication controller at a certain point.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of replication controller condition.", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status of the condition, one of True, False, Unknown.", + Type: []string{"string"}, + Format: "", + }, + }, + "lastProbeTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time we probed the condition.", + Ref: spec.MustCreateRef("#/definitions/unversioned.Time"), + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "The last time the condition transitioned from one status to another.", + Ref: spec.MustCreateRef("#/definitions/unversioned.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "The reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "A human readable message indicating details about the transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "unversioned.Time"}, + }, "v1.ReplicationControllerList": { Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -11607,11 +11725,25 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ Format: "int64", }, }, + "conditions": { + SchemaProps: spec.SchemaProps{ + Description: "Represents the latest available observations of a replication controller's current state.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: spec.MustCreateRef("#/definitions/v1.ReplicationControllerCondition"), + }, + }, + }, + }, + }, }, Required: []string{"replicas"}, }, }, - Dependencies: []string{}, + Dependencies: []string{ + "v1.ReplicationControllerCondition"}, }, "v1.ResourceFieldSelector": { Schema: spec.Schema{ @@ -16836,6 +16968,58 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ Dependencies: []string{ "v1.ObjectMeta", "v1beta1.ReplicaSetSpec", "v1beta1.ReplicaSetStatus"}, }, + "v1beta1.ReplicaSetCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicaSetCondition describes the state of a replica set at a certain point.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of replica set condition.", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status of the condition, one of True, False, Unknown.", + Type: []string{"string"}, + Format: "", + }, + }, + "lastProbeTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time we probed the condition.", + Ref: spec.MustCreateRef("#/definitions/unversioned.Time"), + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "The last time the condition transitioned from one status to another.", + Ref: spec.MustCreateRef("#/definitions/unversioned.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "The reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "A human readable message indicating details about the transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "unversioned.Time"}, + }, "v1beta1.ReplicaSetList": { Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -16944,11 +17128,25 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ Format: "int64", }, }, + "conditions": { + SchemaProps: spec.SchemaProps{ + Description: "Represents the latest available observations of a replica set's current state.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: spec.MustCreateRef("#/definitions/v1beta1.ReplicaSetCondition"), + }, + }, + }, + }, + }, }, Required: []string{"replicas"}, }, }, - Dependencies: []string{}, + Dependencies: []string{ + "v1beta1.ReplicaSetCondition"}, }, "v1beta1.ReplicationControllerDummy": { Schema: spec.Schema{