From c43bdfbf0d6b7e6bdb7b122eb6251fcaf3615684 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Sun, 27 Nov 2016 18:53:00 -0500 Subject: [PATCH 1/3] Remove duplicate ExportOptions objects There should only be a single type unversioned.ExportOptions that is referenced from multiple group versions. --- pkg/api/types.go | 9 --------- pkg/api/unversioned/types.go | 4 ++-- pkg/api/v1/types.go | 10 ---------- pkg/apis/extensions/v1beta1/types.go | 9 --------- 4 files changed, 2 insertions(+), 30 deletions(-) diff --git a/pkg/api/types.go b/pkg/api/types.go index 6599fd6b3d8..89d44798923 100644 --- a/pkg/api/types.go +++ b/pkg/api/types.go @@ -2786,15 +2786,6 @@ type DeleteOptions struct { OrphanDependents *bool `json:"orphanDependents,omitempty"` } -// ExportOptions is the query options to the standard REST get call. -type ExportOptions struct { - unversioned.TypeMeta `json:",inline"` - // Should this value be exported. Export strips fields that a user can not specify. - Export bool `json:"export"` - // Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' - Exact bool `json:"exact"` -} - // ListOptions is the query options to a standard REST list call, and has future support for // watch calls. type ListOptions struct { diff --git a/pkg/api/unversioned/types.go b/pkg/api/unversioned/types.go index 6178f199b84..b45817caacb 100644 --- a/pkg/api/unversioned/types.go +++ b/pkg/api/unversioned/types.go @@ -69,9 +69,9 @@ type ListMeta struct { // ExportOptions is the query options to the standard REST get call. type ExportOptions struct { TypeMeta `json:",inline"` - // Should this value be exported. Export strips fields that a user can not specify.` + // Should this value be exported. Export strips fields that a user can not specify. Export bool `json:"export" protobuf:"varint,1,opt,name=export"` - // Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' + // Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Exact bool `json:"exact" protobuf:"varint,2,opt,name=exact"` } diff --git a/pkg/api/v1/types.go b/pkg/api/v1/types.go index ba06fd4489f..663490dae8f 100644 --- a/pkg/api/v1/types.go +++ b/pkg/api/v1/types.go @@ -3215,16 +3215,6 @@ type DeleteOptions struct { OrphanDependents *bool `json:"orphanDependents,omitempty" protobuf:"varint,3,opt,name=orphanDependents"` } -// ExportOptions is the query options to the standard REST get call. -type ExportOptions struct { - unversioned.TypeMeta `json:",inline"` - - // Should this value be exported. Export strips fields that a user can not specify. - Export bool `json:"export" protobuf:"varint,1,opt,name=export"` - // Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' - Exact bool `json:"exact" protobuf:"varint,2,opt,name=exact"` -} - // ListOptions is the query options to a standard REST list call. type ListOptions struct { unversioned.TypeMeta `json:",inline"` diff --git a/pkg/apis/extensions/v1beta1/types.go b/pkg/apis/extensions/v1beta1/types.go index 9dfbc0e5d38..e474cd90d13 100644 --- a/pkg/apis/extensions/v1beta1/types.go +++ b/pkg/apis/extensions/v1beta1/types.go @@ -923,15 +923,6 @@ type IngressBackend struct { ServicePort intstr.IntOrString `json:"servicePort" protobuf:"bytes,2,opt,name=servicePort"` } -// ExportOptions is the query options to the standard REST get call. -type ExportOptions struct { - unversioned.TypeMeta `json:",inline"` - // Should this value be exported. Export strips fields that a user can not specify. - Export bool `json:"export" protobuf:"varint,1,opt,name=export"` - // Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' - Exact bool `json:"exact" protobuf:"varint,2,opt,name=exact"` -} - // +genclient=true // ReplicaSet represents the configuration of a ReplicaSet. From 3dde81f8d0a1e9e5e6642c18fa582d1bbf65624c Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Sun, 27 Nov 2016 19:04:05 -0500 Subject: [PATCH 2/3] Remove references to v1/internal ExportOptions --- cmd/kubeadm/app/apis/kubeadm/register.go | 3 ++- cmd/kubeadm/app/apis/kubeadm/v1alpha1/register.go | 3 ++- .../client-gen/test_apis/testgroup/v1/register.go | 2 +- federation/apis/core/v1/conversion.go | 2 -- federation/apis/federation/v1beta1/register.go | 3 ++- pkg/api/install/install_test.go | 1 - pkg/api/register.go | 1 - pkg/api/v1/register.go | 2 +- pkg/apis/apps/v1beta1/register.go | 3 ++- pkg/apis/authentication/register.go | 3 ++- pkg/apis/authentication/v1beta1/register.go | 3 ++- pkg/apis/authorization/v1beta1/register.go | 3 ++- pkg/apis/autoscaling/v1/register.go | 3 ++- pkg/apis/batch/v1/register.go | 3 ++- pkg/apis/certificates/v1alpha1/register.go | 3 ++- pkg/apis/extensions/register.go | 3 ++- pkg/apis/extensions/v1beta1/register.go | 3 ++- pkg/apis/imagepolicy/register.go | 3 ++- pkg/apis/imagepolicy/v1alpha1/register.go | 3 ++- pkg/apis/policy/v1alpha1/register.go | 3 ++- pkg/apis/policy/v1beta1/register.go | 3 ++- pkg/apis/rbac/register.go | 3 ++- pkg/apis/rbac/v1alpha1/register.go | 3 ++- pkg/apis/storage/register.go | 3 ++- pkg/apis/storage/v1beta1/register.go | 3 ++- pkg/apiserver/apiserver_test.go | 14 +++++++------- pkg/apiserver/resthandler.go | 1 - 27 files changed, 49 insertions(+), 34 deletions(-) diff --git a/cmd/kubeadm/app/apis/kubeadm/register.go b/cmd/kubeadm/app/apis/kubeadm/register.go index f014a229604..0dddf1cd6a8 100644 --- a/cmd/kubeadm/app/apis/kubeadm/register.go +++ b/cmd/kubeadm/app/apis/kubeadm/register.go @@ -18,6 +18,7 @@ package kubeadm import ( "k8s.io/kubernetes/pkg/api" + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" ) @@ -50,7 +51,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { &ClusterInfo{}, &api.ListOptions{}, &api.DeleteOptions{}, - &api.ExportOptions{}, + &unversioned.ExportOptions{}, ) return nil } diff --git a/cmd/kubeadm/app/apis/kubeadm/v1alpha1/register.go b/cmd/kubeadm/app/apis/kubeadm/v1alpha1/register.go index 7b2e8f7f6a9..d566621d906 100644 --- a/cmd/kubeadm/app/apis/kubeadm/v1alpha1/register.go +++ b/cmd/kubeadm/app/apis/kubeadm/v1alpha1/register.go @@ -17,6 +17,7 @@ limitations under the License. package v1alpha1 import ( + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/api/v1" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" @@ -50,7 +51,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { &ClusterInfo{}, &v1.ListOptions{}, &v1.DeleteOptions{}, - &v1.ExportOptions{}, + &unversioned.ExportOptions{}, ) return nil } diff --git a/cmd/libs/go2idl/client-gen/test_apis/testgroup/v1/register.go b/cmd/libs/go2idl/client-gen/test_apis/testgroup/v1/register.go index eeb9ca7e619..3945d71759c 100644 --- a/cmd/libs/go2idl/client-gen/test_apis/testgroup/v1/register.go +++ b/cmd/libs/go2idl/client-gen/test_apis/testgroup/v1/register.go @@ -42,7 +42,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { &v1.ListOptions{}, &v1.DeleteOptions{}, &unversioned.Status{}, - &v1.ExportOptions{}, + &unversioned.ExportOptions{}, ) versionedwatch.AddToGroupVersion(scheme, SchemeGroupVersion) return nil diff --git a/federation/apis/core/v1/conversion.go b/federation/apis/core/v1/conversion.go index 082688a6343..6211812d175 100644 --- a/federation/apis/core/v1/conversion.go +++ b/federation/apis/core/v1/conversion.go @@ -28,8 +28,6 @@ func addConversionFuncs(scheme *runtime.Scheme) error { err := scheme.AddConversionFuncs( v1.Convert_v1_DeleteOptions_To_api_DeleteOptions, v1.Convert_api_DeleteOptions_To_v1_DeleteOptions, - v1.Convert_v1_ExportOptions_To_api_ExportOptions, - v1.Convert_api_ExportOptions_To_v1_ExportOptions, v1.Convert_v1_List_To_api_List, v1.Convert_api_List_To_v1_List, v1.Convert_v1_ListOptions_To_api_ListOptions, diff --git a/federation/apis/federation/v1beta1/register.go b/federation/apis/federation/v1beta1/register.go index 5ef3032e235..1edc4445880 100644 --- a/federation/apis/federation/v1beta1/register.go +++ b/federation/apis/federation/v1beta1/register.go @@ -17,6 +17,7 @@ limitations under the License. package v1beta1 import ( + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/api/v1" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" @@ -40,7 +41,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { &ClusterList{}, &v1.ListOptions{}, &v1.DeleteOptions{}, - &v1.ExportOptions{}, + &unversioned.ExportOptions{}, ) versionedwatch.AddToGroupVersion(scheme, SchemeGroupVersion) return nil diff --git a/pkg/api/install/install_test.go b/pkg/api/install/install_test.go index 1ff49c80ff3..47b418e6bb0 100644 --- a/pkg/api/install/install_test.go +++ b/pkg/api/install/install_test.go @@ -121,7 +121,6 @@ func TestRESTMapper(t *testing.T) { func TestUnversioned(t *testing.T) { for _, obj := range []runtime.Object{ &unversioned.Status{}, - &unversioned.ExportOptions{}, } { if unversioned, ok := internal.Scheme.IsUnversioned(obj); !unversioned || !ok { t.Errorf("%v is expected to be unversioned", reflect.TypeOf(obj)) diff --git a/pkg/api/register.go b/pkg/api/register.go index a8e819ede49..7e9a6aaa576 100644 --- a/pkg/api/register.go +++ b/pkg/api/register.go @@ -129,7 +129,6 @@ func addKnownTypes(scheme *runtime.Scheme) error { // Register Unversioned types under their own special group scheme.AddUnversionedTypes(Unversioned, - &unversioned.ExportOptions{}, &unversioned.Status{}, &unversioned.APIVersions{}, &unversioned.APIGroupList{}, diff --git a/pkg/api/v1/register.go b/pkg/api/v1/register.go index 5e9e8575cef..dc8a04a9c20 100644 --- a/pkg/api/v1/register.go +++ b/pkg/api/v1/register.go @@ -71,7 +71,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { &PersistentVolumeClaim{}, &PersistentVolumeClaimList{}, &DeleteOptions{}, - &ExportOptions{}, + &unversioned.ExportOptions{}, &ListOptions{}, &PodAttachOptions{}, &PodLogOptions{}, diff --git a/pkg/apis/apps/v1beta1/register.go b/pkg/apis/apps/v1beta1/register.go index 4255fee4a31..c41e8c0f557 100644 --- a/pkg/apis/apps/v1beta1/register.go +++ b/pkg/apis/apps/v1beta1/register.go @@ -17,6 +17,7 @@ limitations under the License. package v1beta1 import ( + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/api/v1" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" @@ -41,7 +42,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { &StatefulSetList{}, &v1.ListOptions{}, &v1.DeleteOptions{}, - &v1.ExportOptions{}, + &unversioned.ExportOptions{}, ) versionedwatch.AddToGroupVersion(scheme, SchemeGroupVersion) return nil diff --git a/pkg/apis/authentication/register.go b/pkg/apis/authentication/register.go index e69c5bf3d85..6bc28500a18 100644 --- a/pkg/apis/authentication/register.go +++ b/pkg/apis/authentication/register.go @@ -18,6 +18,7 @@ package authentication import ( "k8s.io/kubernetes/pkg/api" + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" ) @@ -47,7 +48,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { scheme.AddKnownTypes(SchemeGroupVersion, &api.ListOptions{}, &api.DeleteOptions{}, - &api.ExportOptions{}, + &unversioned.ExportOptions{}, &TokenReview{}, ) diff --git a/pkg/apis/authentication/v1beta1/register.go b/pkg/apis/authentication/v1beta1/register.go index 5e3d489afcb..0d74d18b746 100644 --- a/pkg/apis/authentication/v1beta1/register.go +++ b/pkg/apis/authentication/v1beta1/register.go @@ -17,6 +17,7 @@ limitations under the License. package v1beta1 import ( + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/api/v1" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" @@ -38,7 +39,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { scheme.AddKnownTypes(SchemeGroupVersion, &v1.ListOptions{}, &v1.DeleteOptions{}, - &v1.ExportOptions{}, + &unversioned.ExportOptions{}, &TokenReview{}, ) diff --git a/pkg/apis/authorization/v1beta1/register.go b/pkg/apis/authorization/v1beta1/register.go index 4251932dd04..81f828a652c 100644 --- a/pkg/apis/authorization/v1beta1/register.go +++ b/pkg/apis/authorization/v1beta1/register.go @@ -17,6 +17,7 @@ limitations under the License. package v1beta1 import ( + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/api/v1" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" @@ -39,7 +40,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { scheme.AddKnownTypes(SchemeGroupVersion, &v1.ListOptions{}, &v1.DeleteOptions{}, - &v1.ExportOptions{}, + &unversioned.ExportOptions{}, &SelfSubjectAccessReview{}, &SubjectAccessReview{}, diff --git a/pkg/apis/autoscaling/v1/register.go b/pkg/apis/autoscaling/v1/register.go index 9f9d720e0fb..53a378606e5 100644 --- a/pkg/apis/autoscaling/v1/register.go +++ b/pkg/apis/autoscaling/v1/register.go @@ -17,6 +17,7 @@ limitations under the License. package v1 import ( + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/api/v1" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" @@ -42,7 +43,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { &Scale{}, &v1.ListOptions{}, &v1.DeleteOptions{}, - &v1.ExportOptions{}, + &unversioned.ExportOptions{}, ) versionedwatch.AddToGroupVersion(scheme, SchemeGroupVersion) return nil diff --git a/pkg/apis/batch/v1/register.go b/pkg/apis/batch/v1/register.go index 0b07cad94b2..bfad4da463f 100644 --- a/pkg/apis/batch/v1/register.go +++ b/pkg/apis/batch/v1/register.go @@ -17,6 +17,7 @@ limitations under the License. package v1 import ( + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/api/v1" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" @@ -41,7 +42,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { &JobList{}, &v1.ListOptions{}, &v1.DeleteOptions{}, - &v1.ExportOptions{}, + &unversioned.ExportOptions{}, ) versionedwatch.AddToGroupVersion(scheme, SchemeGroupVersion) return nil diff --git a/pkg/apis/certificates/v1alpha1/register.go b/pkg/apis/certificates/v1alpha1/register.go index e82d2b1f5cf..420b836de2f 100644 --- a/pkg/apis/certificates/v1alpha1/register.go +++ b/pkg/apis/certificates/v1alpha1/register.go @@ -17,6 +17,7 @@ limitations under the License. package v1alpha1 import ( + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/api/v1" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" @@ -51,7 +52,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { &CertificateSigningRequestList{}, &v1.ListOptions{}, &v1.DeleteOptions{}, - &v1.ExportOptions{}, + &unversioned.ExportOptions{}, ) // Add the watch version that applies diff --git a/pkg/apis/extensions/register.go b/pkg/apis/extensions/register.go index 18f0a30b178..7a836eb3fad 100644 --- a/pkg/apis/extensions/register.go +++ b/pkg/apis/extensions/register.go @@ -18,6 +18,7 @@ package extensions import ( "k8s.io/kubernetes/pkg/api" + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/apis/autoscaling" "k8s.io/kubernetes/pkg/apis/batch" "k8s.io/kubernetes/pkg/runtime" @@ -71,7 +72,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { &api.DeleteOptions{}, &ReplicaSet{}, &ReplicaSetList{}, - &api.ExportOptions{}, + &unversioned.ExportOptions{}, &PodSecurityPolicy{}, &PodSecurityPolicyList{}, &NetworkPolicy{}, diff --git a/pkg/apis/extensions/v1beta1/register.go b/pkg/apis/extensions/v1beta1/register.go index e0c7c7c8ff4..859283c985b 100644 --- a/pkg/apis/extensions/v1beta1/register.go +++ b/pkg/apis/extensions/v1beta1/register.go @@ -17,6 +17,7 @@ limitations under the License. package v1beta1 import ( + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/api/v1" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" @@ -56,7 +57,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { &IngressList{}, &v1.ListOptions{}, &v1.DeleteOptions{}, - &v1.ExportOptions{}, + &unversioned.ExportOptions{}, &ReplicaSet{}, &ReplicaSetList{}, &PodSecurityPolicy{}, diff --git a/pkg/apis/imagepolicy/register.go b/pkg/apis/imagepolicy/register.go index 4238b35135f..d5afee0a68d 100644 --- a/pkg/apis/imagepolicy/register.go +++ b/pkg/apis/imagepolicy/register.go @@ -18,6 +18,7 @@ package imagepolicy import ( "k8s.io/kubernetes/pkg/api" + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" ) @@ -47,7 +48,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { scheme.AddKnownTypes(SchemeGroupVersion, &api.ListOptions{}, &api.DeleteOptions{}, - &api.ExportOptions{}, + &unversioned.ExportOptions{}, &ImageReview{}, ) diff --git a/pkg/apis/imagepolicy/v1alpha1/register.go b/pkg/apis/imagepolicy/v1alpha1/register.go index ad4cc5a8cd6..39f9bd11ec3 100644 --- a/pkg/apis/imagepolicy/v1alpha1/register.go +++ b/pkg/apis/imagepolicy/v1alpha1/register.go @@ -17,6 +17,7 @@ limitations under the License. package v1alpha1 import ( + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/api/v1" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" @@ -38,7 +39,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { scheme.AddKnownTypes(SchemeGroupVersion, &v1.ListOptions{}, &v1.DeleteOptions{}, - &v1.ExportOptions{}, + &unversioned.ExportOptions{}, &ImageReview{}, ) diff --git a/pkg/apis/policy/v1alpha1/register.go b/pkg/apis/policy/v1alpha1/register.go index c3f2f5b09b2..17b8abe8432 100644 --- a/pkg/apis/policy/v1alpha1/register.go +++ b/pkg/apis/policy/v1alpha1/register.go @@ -17,6 +17,7 @@ limitations under the License. package v1alpha1 import ( + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/api/v1" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" @@ -42,7 +43,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { &Eviction{}, &v1.ListOptions{}, &v1.DeleteOptions{}, - &v1.ExportOptions{}, + &unversioned.ExportOptions{}, ) // Add the watch version that applies versionedwatch.AddToGroupVersion(scheme, SchemeGroupVersion) diff --git a/pkg/apis/policy/v1beta1/register.go b/pkg/apis/policy/v1beta1/register.go index b9b8aee44fa..6c99b425449 100644 --- a/pkg/apis/policy/v1beta1/register.go +++ b/pkg/apis/policy/v1beta1/register.go @@ -17,6 +17,7 @@ limitations under the License. package v1beta1 import ( + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/api/v1" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" @@ -42,7 +43,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { &Eviction{}, &v1.ListOptions{}, &v1.DeleteOptions{}, - &v1.ExportOptions{}, + &unversioned.ExportOptions{}, ) // Add the watch version that applies versionedwatch.AddToGroupVersion(scheme, SchemeGroupVersion) diff --git a/pkg/apis/rbac/register.go b/pkg/apis/rbac/register.go index b502947513f..6b298409cbf 100644 --- a/pkg/apis/rbac/register.go +++ b/pkg/apis/rbac/register.go @@ -18,6 +18,7 @@ package rbac import ( "k8s.io/kubernetes/pkg/api" + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" "k8s.io/kubernetes/pkg/watch/versioned" @@ -58,7 +59,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { &api.ListOptions{}, &api.DeleteOptions{}, - &api.ExportOptions{}, + &unversioned.ExportOptions{}, ) versioned.AddToGroupVersion(scheme, SchemeGroupVersion) return nil diff --git a/pkg/apis/rbac/v1alpha1/register.go b/pkg/apis/rbac/v1alpha1/register.go index 31221ade413..3f5c22174b3 100644 --- a/pkg/apis/rbac/v1alpha1/register.go +++ b/pkg/apis/rbac/v1alpha1/register.go @@ -17,6 +17,7 @@ limitations under the License. package v1alpha1 import ( + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/api/v1" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" @@ -48,7 +49,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { &v1.ListOptions{}, &v1.DeleteOptions{}, - &v1.ExportOptions{}, + &unversioned.ExportOptions{}, ) versioned.AddToGroupVersion(scheme, SchemeGroupVersion) return nil diff --git a/pkg/apis/storage/register.go b/pkg/apis/storage/register.go index 93452b46488..8ded5e9b08d 100644 --- a/pkg/apis/storage/register.go +++ b/pkg/apis/storage/register.go @@ -18,6 +18,7 @@ package storage import ( "k8s.io/kubernetes/pkg/api" + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" ) @@ -47,7 +48,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { scheme.AddKnownTypes(SchemeGroupVersion, &api.ListOptions{}, &api.DeleteOptions{}, - &api.ExportOptions{}, + &unversioned.ExportOptions{}, &StorageClass{}, &StorageClassList{}, diff --git a/pkg/apis/storage/v1beta1/register.go b/pkg/apis/storage/v1beta1/register.go index 6dbb8017f52..aa37c8216bc 100644 --- a/pkg/apis/storage/v1beta1/register.go +++ b/pkg/apis/storage/v1beta1/register.go @@ -17,6 +17,7 @@ limitations under the License. package v1beta1 import ( + "k8s.io/kubernetes/pkg/api/unversioned" "k8s.io/kubernetes/pkg/api/v1" "k8s.io/kubernetes/pkg/runtime" "k8s.io/kubernetes/pkg/runtime/schema" @@ -39,7 +40,7 @@ func addKnownTypes(scheme *runtime.Scheme) error { scheme.AddKnownTypes(SchemeGroupVersion, &v1.ListOptions{}, &v1.DeleteOptions{}, - &v1.ExportOptions{}, + &unversioned.ExportOptions{}, &StorageClass{}, &StorageClassList{}, diff --git a/pkg/apiserver/apiserver_test.go b/pkg/apiserver/apiserver_test.go index 3d472396373..6f4591ea7d1 100644 --- a/pkg/apiserver/apiserver_test.go +++ b/pkg/apiserver/apiserver_test.go @@ -131,10 +131,10 @@ func addGrouplessTypes() { TimeoutSeconds *int64 `json:"timeoutSeconds,omitempty"` } api.Scheme.AddKnownTypes(grouplessGroupVersion, - &apiservertesting.Simple{}, &apiservertesting.SimpleList{}, &ListOptions{}, + &apiservertesting.Simple{}, &apiservertesting.SimpleList{}, &ListOptions{}, &unversioned.ExportOptions{}, &api.DeleteOptions{}, &apiservertesting.SimpleGetOptions{}, &apiservertesting.SimpleRoot{}) api.Scheme.AddKnownTypes(grouplessInternalGroupVersion, - &apiservertesting.Simple{}, &apiservertesting.SimpleList{}, &api.ListOptions{}, + &apiservertesting.Simple{}, &apiservertesting.SimpleList{}, &api.ListOptions{}, &unversioned.ExportOptions{}, &apiservertesting.SimpleGetOptions{}, &apiservertesting.SimpleRoot{}) } @@ -149,20 +149,20 @@ func addTestTypes() { TimeoutSeconds *int64 `json:"timeoutSeconds,omitempty"` } api.Scheme.AddKnownTypes(testGroupVersion, - &apiservertesting.Simple{}, &apiservertesting.SimpleList{}, &ListOptions{}, + &apiservertesting.Simple{}, &apiservertesting.SimpleList{}, &ListOptions{}, &unversioned.ExportOptions{}, &api.DeleteOptions{}, &apiservertesting.SimpleGetOptions{}, &apiservertesting.SimpleRoot{}, &SimpleXGSubresource{}) api.Scheme.AddKnownTypes(testGroupVersion, &v1.Pod{}) api.Scheme.AddKnownTypes(testInternalGroupVersion, - &apiservertesting.Simple{}, &apiservertesting.SimpleList{}, &api.ListOptions{}, + &apiservertesting.Simple{}, &apiservertesting.SimpleList{}, &api.ListOptions{}, &unversioned.ExportOptions{}, &apiservertesting.SimpleGetOptions{}, &apiservertesting.SimpleRoot{}, &SimpleXGSubresource{}) api.Scheme.AddKnownTypes(testInternalGroupVersion, &api.Pod{}) // Register SimpleXGSubresource in both testGroupVersion and testGroup2Version, and also their // their corresponding internal versions, to verify that the desired group version object is // served in the tests. - api.Scheme.AddKnownTypes(testGroup2Version, &SimpleXGSubresource{}) - api.Scheme.AddKnownTypes(testInternalGroup2Version, &SimpleXGSubresource{}) + api.Scheme.AddKnownTypes(testGroup2Version, &SimpleXGSubresource{}, &unversioned.ExportOptions{}) + api.Scheme.AddKnownTypes(testInternalGroup2Version, &SimpleXGSubresource{}, &unversioned.ExportOptions{}) versioned.AddToGroupVersion(api.Scheme, testGroupVersion) } @@ -177,7 +177,7 @@ func addNewTestTypes() { TimeoutSeconds *int64 `json:"timeoutSeconds,omitempty"` } api.Scheme.AddKnownTypes(newGroupVersion, - &apiservertesting.Simple{}, &apiservertesting.SimpleList{}, &ListOptions{}, + &apiservertesting.Simple{}, &apiservertesting.SimpleList{}, &ListOptions{}, &unversioned.ExportOptions{}, &api.DeleteOptions{}, &apiservertesting.SimpleGetOptions{}, &apiservertesting.SimpleRoot{}, &v1.Pod{}, ) diff --git a/pkg/apiserver/resthandler.go b/pkg/apiserver/resthandler.go index 575af989e08..a1e0b54b016 100644 --- a/pkg/apiserver/resthandler.go +++ b/pkg/apiserver/resthandler.go @@ -132,7 +132,6 @@ func GetResource(r rest.Getter, e rest.Exporter, scope RequestScope) restful.Rou // check for export if values := req.Request.URL.Query(); len(values) > 0 { - // TODO: this is internal version, not unversioned exports := unversioned.ExportOptions{} if err := scope.ParameterCodec.DecodeParameters(values, schema.GroupVersion{Version: "v1"}, &exports); err != nil { return nil, err From 0b1a806181a55ede3249fda3891d3ffbe196a444 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Sun, 27 Nov 2016 19:03:45 -0500 Subject: [PATCH 3/3] generated: remove ExportOptions --- api/openapi-spec/swagger.json | 64 +- api/swagger-spec/apps_v1beta1.json | 2 +- api/swagger-spec/autoscaling_v1.json | 2 +- api/swagger-spec/batch_v1.json | 2 +- .../certificates.k8s.io_v1alpha1.json | 2 +- api/swagger-spec/extensions_v1beta1.json | 16 +- api/swagger-spec/policy_v1beta1.json | 2 +- api/swagger-spec/storage.k8s.io_v1beta1.json | 2 +- api/swagger-spec/v1.json | 30 +- .../apps/v1beta1/operations.html | 4 +- .../autoscaling/v1/operations.html | 4 +- docs/api-reference/batch/v1/operations.html | 4 +- .../v1alpha1/operations.html | 4 +- .../extensions/v1beta1/operations.html | 18 +- .../policy/v1beta1/operations.html | 4 +- .../storage.k8s.io/v1beta1/operations.html | 4 +- docs/api-reference/v1/operations.html | 32 +- federation/apis/openapi-spec/swagger.json | 30 +- .../apis/swagger-spec/extensions_v1beta1.json | 93 +- .../apis/swagger-spec/federation_v1beta1.json | 18 +- federation/apis/swagger-spec/v1.json | 100 +- .../extensions/v1beta1/definitions.html | 166 +- .../extensions/v1beta1/operations.html | 74 +- .../federation/v1beta1/operations.html | 20 +- .../docs/api-reference/v1/operations.html | 102 +- pkg/api/types.generated.go | 16445 +++++++-------- pkg/api/unversioned/generated.proto | 4 +- .../types_swagger_doc_generated.go | 4 +- pkg/api/v1/generated.pb.go | 1640 +- pkg/api/v1/generated.proto | 9 - pkg/api/v1/types.generated.go | 17365 ++++++++-------- pkg/api/v1/types_swagger_doc_generated.go | 10 - pkg/api/v1/zz_generated.conversion.go | 22 - pkg/api/v1/zz_generated.deepcopy.go | 12 - pkg/api/zz_generated.deepcopy.go | 12 - pkg/apis/extensions/v1beta1/generated.pb.go | 737 +- pkg/apis/extensions/v1beta1/generated.proto | 9 - .../extensions/v1beta1/types.generated.go | 7845 ++++--- .../v1beta1/types_swagger_doc_generated.go | 10 - .../v1beta1/zz_generated.conversion.go | 22 - .../v1beta1/zz_generated.deepcopy.go | 12 - pkg/generated/openapi/zz_generated.openapi.go | 54 +- 42 files changed, 22016 insertions(+), 22995 deletions(-) diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index f1b54e16bc2..7596c51684c 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -958,7 +958,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -1355,7 +1355,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -1752,7 +1752,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -2149,7 +2149,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -2546,7 +2546,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -3079,7 +3079,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -4538,7 +4538,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -4935,7 +4935,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -5604,7 +5604,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -6137,7 +6137,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -6534,7 +6534,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -6865,7 +6865,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -7568,7 +7568,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -8133,7 +8133,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -9089,7 +9089,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -14890,7 +14890,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -16230,7 +16230,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -17161,7 +17161,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -18136,7 +18136,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -18669,7 +18669,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -19202,7 +19202,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -20635,7 +20635,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -21749,7 +21749,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -22282,7 +22282,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -23015,7 +23015,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -23548,7 +23548,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -24081,7 +24081,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -24614,7 +24614,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -25011,7 +25011,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -25962,7 +25962,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -28364,7 +28364,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -31833,7 +31833,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, diff --git a/api/swagger-spec/apps_v1beta1.json b/api/swagger-spec/apps_v1beta1.json index 0259a6eaa2b..df7018463a6 100644 --- a/api/swagger-spec/apps_v1beta1.json +++ b/api/swagger-spec/apps_v1beta1.json @@ -338,7 +338,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, diff --git a/api/swagger-spec/autoscaling_v1.json b/api/swagger-spec/autoscaling_v1.json index 76ab5f78b61..dadcb070ebe 100644 --- a/api/swagger-spec/autoscaling_v1.json +++ b/api/swagger-spec/autoscaling_v1.json @@ -338,7 +338,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, diff --git a/api/swagger-spec/batch_v1.json b/api/swagger-spec/batch_v1.json index 46b6765c579..24505ec3d66 100644 --- a/api/swagger-spec/batch_v1.json +++ b/api/swagger-spec/batch_v1.json @@ -338,7 +338,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, diff --git a/api/swagger-spec/certificates.k8s.io_v1alpha1.json b/api/swagger-spec/certificates.k8s.io_v1alpha1.json index 22cd5c4fa42..60db9515378 100644 --- a/api/swagger-spec/certificates.k8s.io_v1alpha1.json +++ b/api/swagger-spec/certificates.k8s.io_v1alpha1.json @@ -306,7 +306,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, diff --git a/api/swagger-spec/extensions_v1beta1.json b/api/swagger-spec/extensions_v1beta1.json index 10ed09470b1..38991e37303 100644 --- a/api/swagger-spec/extensions_v1beta1.json +++ b/api/swagger-spec/extensions_v1beta1.json @@ -338,7 +338,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -1308,7 +1308,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -2504,7 +2504,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -3474,7 +3474,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -4444,7 +4444,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -5414,7 +5414,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -6219,7 +6219,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -7487,7 +7487,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, diff --git a/api/swagger-spec/policy_v1beta1.json b/api/swagger-spec/policy_v1beta1.json index 48e8cf9df20..b79449f2adb 100644 --- a/api/swagger-spec/policy_v1beta1.json +++ b/api/swagger-spec/policy_v1beta1.json @@ -338,7 +338,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, diff --git a/api/swagger-spec/storage.k8s.io_v1beta1.json b/api/swagger-spec/storage.k8s.io_v1beta1.json index aa8252fb8e7..35b339ebd7e 100644 --- a/api/swagger-spec/storage.k8s.io_v1beta1.json +++ b/api/swagger-spec/storage.k8s.io_v1beta1.json @@ -306,7 +306,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index 20956dda1e5..d4d42a32b81 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -515,7 +515,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -1320,7 +1320,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -2125,7 +2125,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -2930,7 +2930,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -3703,7 +3703,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -4472,7 +4472,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -5964,7 +5964,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -6902,7 +6902,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -7650,7 +7650,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -10170,7 +10170,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -10975,7 +10975,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -12110,7 +12110,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -13080,7 +13080,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -13885,7 +13885,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -14611,7 +14611,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, diff --git a/docs/api-reference/apps/v1beta1/operations.html b/docs/api-reference/apps/v1beta1/operations.html index 5a2dfe61f1b..c0d7c17bc68 100755 --- a/docs/api-reference/apps/v1beta1/operations.html +++ b/docs/api-reference/apps/v1beta1/operations.html @@ -917,7 +917,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -2411,7 +2411,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/docs/api-reference/autoscaling/v1/operations.html b/docs/api-reference/autoscaling/v1/operations.html index e68fc5874e3..ba756d808c7 100755 --- a/docs/api-reference/autoscaling/v1/operations.html +++ b/docs/api-reference/autoscaling/v1/operations.html @@ -1066,7 +1066,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -2411,7 +2411,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/docs/api-reference/batch/v1/operations.html b/docs/api-reference/batch/v1/operations.html index 36c16d91242..4196b896b1c 100755 --- a/docs/api-reference/batch/v1/operations.html +++ b/docs/api-reference/batch/v1/operations.html @@ -1066,7 +1066,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -2411,7 +2411,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/docs/api-reference/certificates.k8s.io/v1alpha1/operations.html b/docs/api-reference/certificates.k8s.io/v1alpha1/operations.html index cbf05542c77..5fa4cad5355 100755 --- a/docs/api-reference/certificates.k8s.io/v1alpha1/operations.html +++ b/docs/api-reference/certificates.k8s.io/v1alpha1/operations.html @@ -893,7 +893,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -1900,7 +1900,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/docs/api-reference/extensions/v1beta1/operations.html b/docs/api-reference/extensions/v1beta1/operations.html index e6187377266..6e2c8b52d3d 100755 --- a/docs/api-reference/extensions/v1beta1/operations.html +++ b/docs/api-reference/extensions/v1beta1/operations.html @@ -1662,7 +1662,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -3006,7 +3006,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -4856,7 +4856,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -6200,7 +6200,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -7544,7 +7544,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -8888,7 +8888,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -9853,7 +9853,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -12229,7 +12229,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -16295,7 +16295,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/docs/api-reference/policy/v1beta1/operations.html b/docs/api-reference/policy/v1beta1/operations.html index bf198751fe2..3594854d2cb 100755 --- a/docs/api-reference/policy/v1beta1/operations.html +++ b/docs/api-reference/policy/v1beta1/operations.html @@ -917,7 +917,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -2411,7 +2411,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/docs/api-reference/storage.k8s.io/v1beta1/operations.html b/docs/api-reference/storage.k8s.io/v1beta1/operations.html index fdcc641fe8d..edbe25f7c8d 100755 --- a/docs/api-reference/storage.k8s.io/v1beta1/operations.html +++ b/docs/api-reference/storage.k8s.io/v1beta1/operations.html @@ -893,7 +893,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -1662,7 +1662,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/docs/api-reference/v1/operations.html b/docs/api-reference/v1/operations.html index 4c8f17c81fa..bc611b1fa50 100755 --- a/docs/api-reference/v1/operations.html +++ b/docs/api-reference/v1/operations.html @@ -2295,7 +2295,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -3260,7 +3260,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -4225,7 +4225,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -5190,7 +5190,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -6155,7 +6155,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -7499,7 +7499,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -11025,7 +11025,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -11990,7 +11990,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -13713,7 +13713,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -15057,7 +15057,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -16022,7 +16022,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -16836,7 +16836,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -18665,7 +18665,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -20048,7 +20048,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -22333,7 +22333,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -33316,7 +33316,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/federation/apis/openapi-spec/swagger.json b/federation/apis/openapi-spec/swagger.json index 968949b5cae..32f215b6c9e 100644 --- a/federation/apis/openapi-spec/swagger.json +++ b/federation/apis/openapi-spec/swagger.json @@ -593,14 +593,14 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, { "uniqueItems": true, "type": "boolean", - "description": "Should this value be exported. Export strips fields that a user can not specify.`", + "description": "Should this value be exported. Export strips fields that a user can not specify.", "name": "export", "in": "query" } @@ -969,14 +969,14 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, { "uniqueItems": true, "type": "boolean", - "description": "Should this value be exported. Export strips fields that a user can not specify.`", + "description": "Should this value be exported. Export strips fields that a user can not specify.", "name": "export", "in": "query" } @@ -1345,14 +1345,14 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, { "uniqueItems": true, "type": "boolean", - "description": "Should this value be exported. Export strips fields that a user can not specify.`", + "description": "Should this value be exported. Export strips fields that a user can not specify.", "name": "export", "in": "query" } @@ -1721,14 +1721,14 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, { "uniqueItems": true, "type": "boolean", - "description": "Should this value be exported. Export strips fields that a user can not specify.`", + "description": "Should this value be exported. Export strips fields that a user can not specify.", "name": "export", "in": "query" } @@ -2041,14 +2041,14 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, { "uniqueItems": true, "type": "boolean", - "description": "Should this value be exported. Export strips fields that a user can not specify.`", + "description": "Should this value be exported. Export strips fields that a user can not specify.", "name": "export", "in": "query" } @@ -4181,7 +4181,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -4684,7 +4684,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -5375,7 +5375,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -5878,7 +5878,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, @@ -7618,7 +7618,7 @@ { "uniqueItems": true, "type": "boolean", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "name": "exact", "in": "query" }, diff --git a/federation/apis/swagger-spec/extensions_v1beta1.json b/federation/apis/swagger-spec/extensions_v1beta1.json index d8d28d02c54..ed2569f5c21 100644 --- a/federation/apis/swagger-spec/extensions_v1beta1.json +++ b/federation/apis/swagger-spec/extensions_v1beta1.json @@ -338,7 +338,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -509,6 +509,22 @@ "required": true, "allowMultiple": false }, + { + "type": "integer", + "paramType": "query", + "name": "gracePeriodSeconds", + "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", + "required": false, + "allowMultiple": false + }, + { + "type": "boolean", + "paramType": "query", + "name": "orphanDependents", + "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "required": false, + "allowMultiple": false + }, { "type": "string", "paramType": "path", @@ -1292,7 +1308,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -1463,6 +1479,22 @@ "required": true, "allowMultiple": false }, + { + "type": "integer", + "paramType": "query", + "name": "gracePeriodSeconds", + "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", + "required": false, + "allowMultiple": false + }, + { + "type": "boolean", + "paramType": "query", + "name": "orphanDependents", + "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "required": false, + "allowMultiple": false + }, { "type": "string", "paramType": "path", @@ -2472,7 +2504,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -2643,6 +2675,22 @@ "required": true, "allowMultiple": false }, + { + "type": "integer", + "paramType": "query", + "name": "gracePeriodSeconds", + "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", + "required": false, + "allowMultiple": false + }, + { + "type": "boolean", + "paramType": "query", + "name": "orphanDependents", + "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "required": false, + "allowMultiple": false + }, { "type": "string", "paramType": "path", @@ -3426,7 +3474,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -3597,6 +3645,22 @@ "required": true, "allowMultiple": false }, + { + "type": "integer", + "paramType": "query", + "name": "gracePeriodSeconds", + "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", + "required": false, + "allowMultiple": false + }, + { + "type": "boolean", + "paramType": "query", + "name": "orphanDependents", + "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "required": false, + "allowMultiple": false + }, { "type": "string", "paramType": "path", @@ -4675,6 +4739,10 @@ "azureDisk": { "$ref": "v1.AzureDiskVolumeSource", "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." + }, + "photonPersistentDisk": { + "$ref": "v1.PhotonPersistentDiskVolumeSource", + "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" } } }, @@ -5308,6 +5376,23 @@ "id": "v1.AzureDataDiskCachingMode", "properties": {} }, + "v1.PhotonPersistentDiskVolumeSource": { + "id": "v1.PhotonPersistentDiskVolumeSource", + "description": "Represents a Photon Controller persistent disk resource.", + "required": [ + "pdID" + ], + "properties": { + "pdID": { + "type": "string", + "description": "ID that identifies Photon Controller persistent disk" + }, + "fsType": { + "type": "string", + "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified." + } + } + }, "v1.Container": { "id": "v1.Container", "description": "A single application container that you want to run within a pod.", diff --git a/federation/apis/swagger-spec/federation_v1beta1.json b/federation/apis/swagger-spec/federation_v1beta1.json index c57757ef2de..931eb19eb44 100644 --- a/federation/apis/swagger-spec/federation_v1beta1.json +++ b/federation/apis/swagger-spec/federation_v1beta1.json @@ -306,7 +306,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -453,6 +453,22 @@ "required": true, "allowMultiple": false }, + { + "type": "integer", + "paramType": "query", + "name": "gracePeriodSeconds", + "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", + "required": false, + "allowMultiple": false + }, + { + "type": "boolean", + "paramType": "query", + "name": "orphanDependents", + "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "required": false, + "allowMultiple": false + }, { "type": "string", "paramType": "path", diff --git a/federation/apis/swagger-spec/v1.json b/federation/apis/swagger-spec/v1.json index ccb420892f8..f5448fdf2a6 100644 --- a/federation/apis/swagger-spec/v1.json +++ b/federation/apis/swagger-spec/v1.json @@ -330,7 +330,7 @@ "type": "boolean", "paramType": "query", "name": "export", - "description": "Should this value be exported. Export strips fields that a user can not specify.`", + "description": "Should this value be exported. Export strips fields that a user can not specify.", "required": false, "allowMultiple": false }, @@ -338,7 +338,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -509,6 +509,22 @@ "required": true, "allowMultiple": false }, + { + "type": "integer", + "paramType": "query", + "name": "gracePeriodSeconds", + "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", + "required": false, + "allowMultiple": false + }, + { + "type": "boolean", + "paramType": "query", + "name": "orphanDependents", + "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "required": false, + "allowMultiple": false + }, { "type": "string", "paramType": "path", @@ -1119,7 +1135,7 @@ "type": "boolean", "paramType": "query", "name": "export", - "description": "Should this value be exported. Export strips fields that a user can not specify.`", + "description": "Should this value be exported. Export strips fields that a user can not specify.", "required": false, "allowMultiple": false }, @@ -1127,7 +1143,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -1298,6 +1314,22 @@ "required": true, "allowMultiple": false }, + { + "type": "integer", + "paramType": "query", + "name": "gracePeriodSeconds", + "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", + "required": false, + "allowMultiple": false + }, + { + "type": "boolean", + "paramType": "query", + "name": "orphanDependents", + "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "required": false, + "allowMultiple": false + }, { "type": "string", "paramType": "path", @@ -1876,7 +1908,7 @@ "type": "boolean", "paramType": "query", "name": "export", - "description": "Should this value be exported. Export strips fields that a user can not specify.`", + "description": "Should this value be exported. Export strips fields that a user can not specify.", "required": false, "allowMultiple": false }, @@ -1884,7 +1916,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -2031,6 +2063,22 @@ "required": true, "allowMultiple": false }, + { + "type": "integer", + "paramType": "query", + "name": "gracePeriodSeconds", + "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", + "required": false, + "allowMultiple": false + }, + { + "type": "boolean", + "paramType": "query", + "name": "orphanDependents", + "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "required": false, + "allowMultiple": false + }, { "type": "string", "paramType": "path", @@ -2661,7 +2709,7 @@ "type": "boolean", "paramType": "query", "name": "export", - "description": "Should this value be exported. Export strips fields that a user can not specify.`", + "description": "Should this value be exported. Export strips fields that a user can not specify.", "required": false, "allowMultiple": false }, @@ -2669,7 +2717,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -2840,6 +2888,22 @@ "required": true, "allowMultiple": false }, + { + "type": "integer", + "paramType": "query", + "name": "gracePeriodSeconds", + "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", + "required": false, + "allowMultiple": false + }, + { + "type": "boolean", + "paramType": "query", + "name": "orphanDependents", + "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "required": false, + "allowMultiple": false + }, { "type": "string", "paramType": "path", @@ -3450,7 +3514,7 @@ "type": "boolean", "paramType": "query", "name": "export", - "description": "Should this value be exported. Export strips fields that a user can not specify.`", + "description": "Should this value be exported. Export strips fields that a user can not specify.", "required": false, "allowMultiple": false }, @@ -3458,7 +3522,7 @@ "type": "boolean", "paramType": "query", "name": "exact", - "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", "required": false, "allowMultiple": false }, @@ -3629,6 +3693,22 @@ "required": true, "allowMultiple": false }, + { + "type": "integer", + "paramType": "query", + "name": "gracePeriodSeconds", + "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", + "required": false, + "allowMultiple": false + }, + { + "type": "boolean", + "paramType": "query", + "name": "orphanDependents", + "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "required": false, + "allowMultiple": false + }, { "type": "string", "paramType": "path", diff --git a/federation/docs/api-reference/extensions/v1beta1/definitions.html b/federation/docs/api-reference/extensions/v1beta1/definitions.html index 8ff17b89f24..ed8cf8c8dca 100755 --- a/federation/docs/api-reference/extensions/v1beta1/definitions.html +++ b/federation/docs/api-reference/extensions/v1beta1/definitions.html @@ -1054,64 +1054,6 @@ Examples:
- -
-

v1.GCEPersistentDiskVolumeSource

-
-

Represents a Persistent Disk resource in Google Compute Engine.

-
-
-

A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.

-
- ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameDescriptionRequiredSchemaDefault

pdName

Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk

true

string

fsType

Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk

false

string

partition

The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk

false

integer (int32)

readOnly

ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk

false

boolean

false

-

v1beta1.ReplicaSetCondition

@@ -1174,6 +1116,64 @@ Examples:
+
+
+

v1.GCEPersistentDiskVolumeSource

+
+

Represents a Persistent Disk resource in Google Compute Engine.

+
+
+

A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.

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

pdName

Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk

true

string

fsType

Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk

false

string

partition

The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk

false

integer (int32)

readOnly

ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk

false

boolean

false

+

v1beta1.RollingUpdateDeployment

@@ -2813,6 +2813,13 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

v1.AzureDiskVolumeSource

+ +

photonPersistentDisk

+

PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine

+

false

+

v1.PhotonPersistentDiskVolumeSource

+ + @@ -3826,6 +3833,47 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1.PhotonPersistentDiskVolumeSource

+
+

Represents a Photon Controller persistent disk resource.

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

pdID

ID that identifies Photon Controller persistent disk

true

string

fsType

Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

false

string

+

versioned.Event

@@ -5685,7 +5733,7 @@ Both these may change in the future. Incoming requests are matched against the h
diff --git a/federation/docs/api-reference/extensions/v1beta1/operations.html b/federation/docs/api-reference/extensions/v1beta1/operations.html index 7c292ae5ea8..02079d04779 100755 --- a/federation/docs/api-reference/extensions/v1beta1/operations.html +++ b/federation/docs/api-reference/extensions/v1beta1/operations.html @@ -1364,7 +1364,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -1624,6 +1624,22 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +

QueryParameter

+

gracePeriodSeconds

+

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

+

false

+

integer (int32)

+ + + +

QueryParameter

+

orphanDependents

+

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

false

+

boolean

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -2692,7 +2708,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -2952,6 +2968,22 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +

QueryParameter

+

gracePeriodSeconds

+

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

+

false

+

integer (int32)

+ + + +

QueryParameter

+

orphanDependents

+

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

false

+

boolean

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -4526,7 +4558,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -4786,6 +4818,22 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +

QueryParameter

+

gracePeriodSeconds

+

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

+

false

+

integer (int32)

+ + + +

QueryParameter

+

orphanDependents

+

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

false

+

boolean

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -5854,7 +5902,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -6114,6 +6162,22 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +

QueryParameter

+

gracePeriodSeconds

+

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

+

false

+

integer (int32)

+ + + +

QueryParameter

+

orphanDependents

+

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

false

+

boolean

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -9124,7 +9188,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/federation/docs/api-reference/federation/v1beta1/operations.html b/federation/docs/api-reference/federation/v1beta1/operations.html index cee32536e9c..54d5c3e7c60 100755 --- a/federation/docs/api-reference/federation/v1beta1/operations.html +++ b/federation/docs/api-reference/federation/v1beta1/operations.html @@ -893,7 +893,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -1137,6 +1137,22 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +

QueryParameter

+

gracePeriodSeconds

+

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

+

false

+

integer (int32)

+ + + +

QueryParameter

+

orphanDependents

+

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

false

+

boolean

+ + +

PathParameter

name

name of the Cluster

@@ -1765,7 +1781,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/federation/docs/api-reference/v1/operations.html b/federation/docs/api-reference/v1/operations.html index 5f7741f3fe2..0bc75c3bb3b 100755 --- a/federation/docs/api-reference/v1/operations.html +++ b/federation/docs/api-reference/v1/operations.html @@ -1610,7 +1610,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

export

-

Should this value be exported. Export strips fields that a user can not specify.`

+

Should this value be exported. Export strips fields that a user can not specify.

false

boolean

@@ -1618,7 +1618,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -1878,6 +1878,22 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +

QueryParameter

+

gracePeriodSeconds

+

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

+

false

+

integer (int32)

+ + + +

QueryParameter

+

orphanDependents

+

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

false

+

boolean

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -2559,7 +2575,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

export

-

Should this value be exported. Export strips fields that a user can not specify.`

+

Should this value be exported. Export strips fields that a user can not specify.

false

boolean

@@ -2567,7 +2583,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -2827,6 +2843,22 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +

QueryParameter

+

gracePeriodSeconds

+

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

+

false

+

integer (int32)

+ + + +

QueryParameter

+

orphanDependents

+

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

false

+

boolean

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -3508,7 +3540,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

export

-

Should this value be exported. Export strips fields that a user can not specify.`

+

Should this value be exported. Export strips fields that a user can not specify.

false

boolean

@@ -3516,7 +3548,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -3776,6 +3808,22 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +

QueryParameter

+

gracePeriodSeconds

+

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

+

false

+

integer (int32)

+ + + +

QueryParameter

+

orphanDependents

+

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

false

+

boolean

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -4457,7 +4505,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

export

-

Should this value be exported. Export strips fields that a user can not specify.`

+

Should this value be exported. Export strips fields that a user can not specify.

false

boolean

@@ -4465,7 +4513,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -4725,6 +4773,22 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +

QueryParameter

+

gracePeriodSeconds

+

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

+

false

+

integer (int32)

+ + + +

QueryParameter

+

orphanDependents

+

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

false

+

boolean

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -5358,7 +5422,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

export

-

Should this value be exported. Export strips fields that a user can not specify.`

+

Should this value be exported. Export strips fields that a user can not specify.

false

boolean

@@ -5366,7 +5430,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

exact

-

Should the export be exact. Exact export maintains cluster-specific fields like Namespace

+

Should the export be exact. Exact export maintains cluster-specific fields like Namespace.

false

boolean

@@ -5610,6 +5674,22 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +

QueryParameter

+

gracePeriodSeconds

+

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

+

false

+

integer (int32)

+ + + +

QueryParameter

+

orphanDependents

+

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

false

+

boolean

+ + +

PathParameter

name

name of the Namespace

@@ -8775,7 +8855,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/pkg/api/types.generated.go b/pkg/api/types.generated.go index 82cbe1f2698..dcf3977fca0 100644 --- a/pkg/api/types.generated.go +++ b/pkg/api/types.generated.go @@ -45177,7 +45177,7 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -45191,16 +45191,16 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep3548 := !z.EncBinary() yy2arr3548 := z.EncBasicHandle().StructToArray - var yyq3548 [4]bool + var yyq3548 [7]bool _, _, _ = yysep3548, yyq3548, yy2arr3548 const yyr3548 bool = false yyq3548[0] = x.Kind != "" yyq3548[1] = x.APIVersion != "" var yynn3548 int if yyr3548 || yy2arr3548 { - r.EncodeArrayStart(4) + r.EncodeArrayStart(7) } else { - yynn3548 = 2 + yynn3548 = 5 for _, b := range yyq3548 { if b { yynn3548++ @@ -45260,311 +45260,12 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } if yyr3548 || yy2arr3548 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3556 := z.EncBinary() - _ = yym3556 - if false { - } else { - r.EncodeBool(bool(x.Export)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("export")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3557 := z.EncBinary() - _ = yym3557 - if false { - } else { - r.EncodeBool(bool(x.Export)) - } - } - if yyr3548 || yy2arr3548 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3559 := z.EncBinary() - _ = yym3559 - if false { - } else { - r.EncodeBool(bool(x.Exact)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("exact")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3560 := z.EncBinary() - _ = yym3560 - if false { - } else { - r.EncodeBool(bool(x.Exact)) - } - } - if yyr3548 || yy2arr3548 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3561 := z.DecBinary() - _ = yym3561 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3562 := r.ContainerType() - if yyct3562 == codecSelferValueTypeMap1234 { - yyl3562 := r.ReadMapStart() - if yyl3562 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3562, d) - } - } else if yyct3562 == codecSelferValueTypeArray1234 { - yyl3562 := r.ReadArrayStart() - if yyl3562 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3562, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3563Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3563Slc - var yyhl3563 bool = l >= 0 - for yyj3563 := 0; ; yyj3563++ { - if yyhl3563 { - if yyj3563 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3563Slc = r.DecodeBytes(yys3563Slc, true, true) - yys3563 := string(yys3563Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3563 { - 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 "export": - if r.TryDecodeAsNil() { - x.Export = false - } else { - x.Export = bool(r.DecodeBool()) - } - case "exact": - if r.TryDecodeAsNil() { - x.Exact = false - } else { - x.Exact = bool(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3563) - } // end switch yys3563 - } // end for yyj3563 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3568 int - var yyb3568 bool - var yyhl3568 bool = l >= 0 - yyj3568++ - if yyhl3568 { - yyb3568 = yyj3568 > l - } else { - yyb3568 = r.CheckBreak() - } - if yyb3568 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj3568++ - if yyhl3568 { - yyb3568 = yyj3568 > l - } else { - yyb3568 = r.CheckBreak() - } - if yyb3568 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3568++ - if yyhl3568 { - yyb3568 = yyj3568 > l - } else { - yyb3568 = r.CheckBreak() - } - if yyb3568 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Export = false - } else { - x.Export = bool(r.DecodeBool()) - } - yyj3568++ - if yyhl3568 { - yyb3568 = yyj3568 > l - } else { - yyb3568 = r.CheckBreak() - } - if yyb3568 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Exact = false - } else { - x.Exact = bool(r.DecodeBool()) - } - for { - yyj3568++ - if yyhl3568 { - yyb3568 = yyj3568 > l - } else { - yyb3568 = r.CheckBreak() - } - if yyb3568 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3568-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3573 := z.EncBinary() - _ = yym3573 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3574 := !z.EncBinary() - yy2arr3574 := z.EncBasicHandle().StructToArray - var yyq3574 [7]bool - _, _, _ = yysep3574, yyq3574, yy2arr3574 - const yyr3574 bool = false - yyq3574[0] = x.Kind != "" - yyq3574[1] = x.APIVersion != "" - var yynn3574 int - if yyr3574 || yy2arr3574 { - r.EncodeArrayStart(7) - } else { - yynn3574 = 5 - for _, b := range yyq3574 { - if b { - yynn3574++ - } - } - r.EncodeMapStart(yynn3574) - yynn3574 = 0 - } - if yyr3574 || yy2arr3574 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3574[0] { - yym3576 := z.EncBinary() - _ = yym3576 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3574[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3577 := z.EncBinary() - _ = yym3577 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3574 || yy2arr3574 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3574[1] { - yym3579 := z.EncBinary() - _ = yym3579 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3574[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3580 := z.EncBinary() - _ = yym3580 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3574 || yy2arr3574 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LabelSelector == nil { r.EncodeNil() } else { - yym3582 := z.EncBinary() - _ = yym3582 + yym3556 := z.EncBinary() + _ = yym3556 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -45578,8 +45279,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LabelSelector == nil { r.EncodeNil() } else { - yym3583 := z.EncBinary() - _ = yym3583 + yym3557 := z.EncBinary() + _ = yym3557 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -45587,13 +45288,13 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3574 || yy2arr3574 { + if yyr3548 || yy2arr3548 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.FieldSelector == nil { r.EncodeNil() } else { - yym3585 := z.EncBinary() - _ = yym3585 + yym3559 := z.EncBinary() + _ = yym3559 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -45607,8 +45308,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.FieldSelector == nil { r.EncodeNil() } else { - yym3586 := z.EncBinary() - _ = yym3586 + yym3560 := z.EncBinary() + _ = yym3560 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -45616,10 +45317,10 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3574 || yy2arr3574 { + if yyr3548 || yy2arr3548 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3588 := z.EncBinary() - _ = yym3588 + yym3562 := z.EncBinary() + _ = yym3562 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -45628,17 +45329,17 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3589 := z.EncBinary() - _ = yym3589 + yym3563 := z.EncBinary() + _ = yym3563 if false { } else { r.EncodeBool(bool(x.Watch)) } } - if yyr3574 || yy2arr3574 { + if yyr3548 || yy2arr3548 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3591 := z.EncBinary() - _ = yym3591 + yym3565 := z.EncBinary() + _ = yym3565 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -45647,24 +45348,24 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ResourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3592 := z.EncBinary() - _ = yym3592 + yym3566 := z.EncBinary() + _ = yym3566 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } - if yyr3574 || yy2arr3574 { + if yyr3548 || yy2arr3548 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3594 := *x.TimeoutSeconds - yym3595 := z.EncBinary() - _ = yym3595 + yy3568 := *x.TimeoutSeconds + yym3569 := z.EncBinary() + _ = yym3569 if false { } else { - r.EncodeInt(int64(yy3594)) + r.EncodeInt(int64(yy3568)) } } } else { @@ -45674,16 +45375,16 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3596 := *x.TimeoutSeconds - yym3597 := z.EncBinary() - _ = yym3597 + yy3570 := *x.TimeoutSeconds + yym3571 := z.EncBinary() + _ = yym3571 if false { } else { - r.EncodeInt(int64(yy3596)) + r.EncodeInt(int64(yy3570)) } } } - if yyr3574 || yy2arr3574 { + if yyr3548 || yy2arr3548 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45696,25 +45397,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3598 := z.DecBinary() - _ = yym3598 + yym3572 := z.DecBinary() + _ = yym3572 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3599 := r.ContainerType() - if yyct3599 == codecSelferValueTypeMap1234 { - yyl3599 := r.ReadMapStart() - if yyl3599 == 0 { + yyct3573 := r.ContainerType() + if yyct3573 == codecSelferValueTypeMap1234 { + yyl3573 := r.ReadMapStart() + if yyl3573 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3599, d) + x.codecDecodeSelfFromMap(yyl3573, d) } - } else if yyct3599 == codecSelferValueTypeArray1234 { - yyl3599 := r.ReadArrayStart() - if yyl3599 == 0 { + } else if yyct3573 == codecSelferValueTypeArray1234 { + yyl3573 := r.ReadArrayStart() + if yyl3573 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3599, d) + x.codecDecodeSelfFromArray(yyl3573, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45726,12 +45427,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3600Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3600Slc - var yyhl3600 bool = l >= 0 - for yyj3600 := 0; ; yyj3600++ { - if yyhl3600 { - if yyj3600 >= l { + var yys3574Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3574Slc + var yyhl3574 bool = l >= 0 + for yyj3574 := 0; ; yyj3574++ { + if yyhl3574 { + if yyj3574 >= l { break } } else { @@ -45740,10 +45441,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3600Slc = r.DecodeBytes(yys3600Slc, true, true) - yys3600 := string(yys3600Slc) + yys3574Slc = r.DecodeBytes(yys3574Slc, true, true) + yys3574 := string(yys3574Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3600 { + switch yys3574 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45760,26 +45461,26 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv3603 := &x.LabelSelector - yym3604 := z.DecBinary() - _ = yym3604 + yyv3577 := &x.LabelSelector + yym3578 := z.DecBinary() + _ = yym3578 if false { - } else if z.HasExtensions() && z.DecExt(yyv3603) { + } else if z.HasExtensions() && z.DecExt(yyv3577) { } else { - z.DecFallback(yyv3603, true) + z.DecFallback(yyv3577, true) } } case "FieldSelector": if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv3605 := &x.FieldSelector - yym3606 := z.DecBinary() - _ = yym3606 + yyv3579 := &x.FieldSelector + yym3580 := z.DecBinary() + _ = yym3580 if false { - } else if z.HasExtensions() && z.DecExt(yyv3605) { + } else if z.HasExtensions() && z.DecExt(yyv3579) { } else { - z.DecFallback(yyv3605, true) + z.DecFallback(yyv3579, true) } } case "Watch": @@ -45803,17 +45504,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3610 := z.DecBinary() - _ = yym3610 + yym3584 := z.DecBinary() + _ = yym3584 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3600) - } // end switch yys3600 - } // end for yyj3600 + z.DecStructFieldNotFound(-1, yys3574) + } // end switch yys3574 + } // end for yyj3574 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45821,16 +45522,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3611 int - var yyb3611 bool - var yyhl3611 bool = l >= 0 - yyj3611++ - if yyhl3611 { - yyb3611 = yyj3611 > l + var yyj3585 int + var yyb3585 bool + var yyhl3585 bool = l >= 0 + yyj3585++ + if yyhl3585 { + yyb3585 = yyj3585 > l } else { - yyb3611 = r.CheckBreak() + yyb3585 = r.CheckBreak() } - if yyb3611 { + if yyb3585 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45840,13 +45541,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3611++ - if yyhl3611 { - yyb3611 = yyj3611 > l + yyj3585++ + if yyhl3585 { + yyb3585 = yyj3585 > l } else { - yyb3611 = r.CheckBreak() + yyb3585 = r.CheckBreak() } - if yyb3611 { + if yyb3585 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45856,13 +45557,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3611++ - if yyhl3611 { - yyb3611 = yyj3611 > l + yyj3585++ + if yyhl3585 { + yyb3585 = yyj3585 > l } else { - yyb3611 = r.CheckBreak() + yyb3585 = r.CheckBreak() } - if yyb3611 { + if yyb3585 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45870,22 +45571,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv3614 := &x.LabelSelector - yym3615 := z.DecBinary() - _ = yym3615 + yyv3588 := &x.LabelSelector + yym3589 := z.DecBinary() + _ = yym3589 if false { - } else if z.HasExtensions() && z.DecExt(yyv3614) { + } else if z.HasExtensions() && z.DecExt(yyv3588) { } else { - z.DecFallback(yyv3614, true) + z.DecFallback(yyv3588, true) } } - yyj3611++ - if yyhl3611 { - yyb3611 = yyj3611 > l + yyj3585++ + if yyhl3585 { + yyb3585 = yyj3585 > l } else { - yyb3611 = r.CheckBreak() + yyb3585 = r.CheckBreak() } - if yyb3611 { + if yyb3585 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45893,22 +45594,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv3616 := &x.FieldSelector - yym3617 := z.DecBinary() - _ = yym3617 + yyv3590 := &x.FieldSelector + yym3591 := z.DecBinary() + _ = yym3591 if false { - } else if z.HasExtensions() && z.DecExt(yyv3616) { + } else if z.HasExtensions() && z.DecExt(yyv3590) { } else { - z.DecFallback(yyv3616, true) + z.DecFallback(yyv3590, true) } } - yyj3611++ - if yyhl3611 { - yyb3611 = yyj3611 > l + yyj3585++ + if yyhl3585 { + yyb3585 = yyj3585 > l } else { - yyb3611 = r.CheckBreak() + yyb3585 = r.CheckBreak() } - if yyb3611 { + if yyb3585 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45918,13 +45619,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3611++ - if yyhl3611 { - yyb3611 = yyj3611 > l + yyj3585++ + if yyhl3585 { + yyb3585 = yyj3585 > l } else { - yyb3611 = r.CheckBreak() + yyb3585 = r.CheckBreak() } - if yyb3611 { + if yyb3585 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45934,13 +45635,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3611++ - if yyhl3611 { - yyb3611 = yyj3611 > l + yyj3585++ + if yyhl3585 { + yyb3585 = yyj3585 > l } else { - yyb3611 = r.CheckBreak() + yyb3585 = r.CheckBreak() } - if yyb3611 { + if yyb3585 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45953,25 +45654,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3621 := z.DecBinary() - _ = yym3621 + yym3595 := z.DecBinary() + _ = yym3595 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3611++ - if yyhl3611 { - yyb3611 = yyj3611 > l + yyj3585++ + if yyhl3585 { + yyb3585 = yyj3585 > l } else { - yyb3611 = r.CheckBreak() + yyb3585 = r.CheckBreak() } - if yyb3611 { + if yyb3585 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3611-1, "") + z.DecStructFieldNotFound(yyj3585-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45983,36 +45684,36 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3622 := z.EncBinary() - _ = yym3622 + yym3596 := z.EncBinary() + _ = yym3596 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3623 := !z.EncBinary() - yy2arr3623 := z.EncBasicHandle().StructToArray - var yyq3623 [10]bool - _, _, _ = yysep3623, yyq3623, yy2arr3623 - const yyr3623 bool = false - yyq3623[0] = x.Kind != "" - yyq3623[1] = x.APIVersion != "" - var yynn3623 int - if yyr3623 || yy2arr3623 { + yysep3597 := !z.EncBinary() + yy2arr3597 := z.EncBasicHandle().StructToArray + var yyq3597 [10]bool + _, _, _ = yysep3597, yyq3597, yy2arr3597 + const yyr3597 bool = false + yyq3597[0] = x.Kind != "" + yyq3597[1] = x.APIVersion != "" + var yynn3597 int + if yyr3597 || yy2arr3597 { r.EncodeArrayStart(10) } else { - yynn3623 = 8 - for _, b := range yyq3623 { + yynn3597 = 8 + for _, b := range yyq3597 { if b { - yynn3623++ + yynn3597++ } } - r.EncodeMapStart(yynn3623) - yynn3623 = 0 + r.EncodeMapStart(yynn3597) + yynn3597 = 0 } - if yyr3623 || yy2arr3623 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3623[0] { - yym3625 := z.EncBinary() - _ = yym3625 + if yyq3597[0] { + yym3599 := z.EncBinary() + _ = yym3599 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46021,23 +45722,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3623[0] { + if yyq3597[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3626 := z.EncBinary() - _ = yym3626 + yym3600 := z.EncBinary() + _ = yym3600 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3623 || yy2arr3623 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3623[1] { - yym3628 := z.EncBinary() - _ = yym3628 + if yyq3597[1] { + yym3602 := z.EncBinary() + _ = yym3602 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46046,22 +45747,22 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3623[1] { + if yyq3597[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3629 := z.EncBinary() - _ = yym3629 + yym3603 := z.EncBinary() + _ = yym3603 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3623 || yy2arr3623 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3631 := z.EncBinary() - _ = yym3631 + yym3605 := z.EncBinary() + _ = yym3605 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -46070,17 +45771,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3632 := z.EncBinary() - _ = yym3632 + yym3606 := z.EncBinary() + _ = yym3606 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr3623 || yy2arr3623 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3634 := z.EncBinary() - _ = yym3634 + yym3608 := z.EncBinary() + _ = yym3608 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -46089,17 +45790,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3635 := z.EncBinary() - _ = yym3635 + yym3609 := z.EncBinary() + _ = yym3609 if false { } else { r.EncodeBool(bool(x.Follow)) } } - if yyr3623 || yy2arr3623 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3637 := z.EncBinary() - _ = yym3637 + yym3611 := z.EncBinary() + _ = yym3611 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -46108,24 +45809,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3638 := z.EncBinary() - _ = yym3638 + yym3612 := z.EncBinary() + _ = yym3612 if false { } else { r.EncodeBool(bool(x.Previous)) } } - if yyr3623 || yy2arr3623 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3640 := *x.SinceSeconds - yym3641 := z.EncBinary() - _ = yym3641 + yy3614 := *x.SinceSeconds + yym3615 := z.EncBinary() + _ = yym3615 if false { } else { - r.EncodeInt(int64(yy3640)) + r.EncodeInt(int64(yy3614)) } } } else { @@ -46135,27 +45836,27 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3642 := *x.SinceSeconds - yym3643 := z.EncBinary() - _ = yym3643 + yy3616 := *x.SinceSeconds + yym3617 := z.EncBinary() + _ = yym3617 if false { } else { - r.EncodeInt(int64(yy3642)) + r.EncodeInt(int64(yy3616)) } } } - if yyr3623 || yy2arr3623 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3645 := z.EncBinary() - _ = yym3645 + yym3619 := z.EncBinary() + _ = yym3619 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3645 { + } else if yym3619 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3645 && z.IsJSONHandle() { + } else if !yym3619 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -46168,23 +45869,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceTime == nil { r.EncodeNil() } else { - yym3646 := z.EncBinary() - _ = yym3646 + yym3620 := z.EncBinary() + _ = yym3620 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3646 { + } else if yym3620 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3646 && z.IsJSONHandle() { + } else if !yym3620 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) } } } - if yyr3623 || yy2arr3623 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3648 := z.EncBinary() - _ = yym3648 + yym3622 := z.EncBinary() + _ = yym3622 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -46193,24 +45894,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3649 := z.EncBinary() - _ = yym3649 + yym3623 := z.EncBinary() + _ = yym3623 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } - if yyr3623 || yy2arr3623 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3651 := *x.TailLines - yym3652 := z.EncBinary() - _ = yym3652 + yy3625 := *x.TailLines + yym3626 := z.EncBinary() + _ = yym3626 if false { } else { - r.EncodeInt(int64(yy3651)) + r.EncodeInt(int64(yy3625)) } } } else { @@ -46220,26 +45921,26 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TailLines == nil { r.EncodeNil() } else { - yy3653 := *x.TailLines - yym3654 := z.EncBinary() - _ = yym3654 + yy3627 := *x.TailLines + yym3628 := z.EncBinary() + _ = yym3628 if false { } else { - r.EncodeInt(int64(yy3653)) + r.EncodeInt(int64(yy3627)) } } } - if yyr3623 || yy2arr3623 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3656 := *x.LimitBytes - yym3657 := z.EncBinary() - _ = yym3657 + yy3630 := *x.LimitBytes + yym3631 := z.EncBinary() + _ = yym3631 if false { } else { - r.EncodeInt(int64(yy3656)) + r.EncodeInt(int64(yy3630)) } } } else { @@ -46249,16 +45950,16 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LimitBytes == nil { r.EncodeNil() } else { - yy3658 := *x.LimitBytes - yym3659 := z.EncBinary() - _ = yym3659 + yy3632 := *x.LimitBytes + yym3633 := z.EncBinary() + _ = yym3633 if false { } else { - r.EncodeInt(int64(yy3658)) + r.EncodeInt(int64(yy3632)) } } } - if yyr3623 || yy2arr3623 { + if yyr3597 || yy2arr3597 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46271,25 +45972,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3660 := z.DecBinary() - _ = yym3660 + yym3634 := z.DecBinary() + _ = yym3634 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3661 := r.ContainerType() - if yyct3661 == codecSelferValueTypeMap1234 { - yyl3661 := r.ReadMapStart() - if yyl3661 == 0 { + yyct3635 := r.ContainerType() + if yyct3635 == codecSelferValueTypeMap1234 { + yyl3635 := r.ReadMapStart() + if yyl3635 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3661, d) + x.codecDecodeSelfFromMap(yyl3635, d) } - } else if yyct3661 == codecSelferValueTypeArray1234 { - yyl3661 := r.ReadArrayStart() - if yyl3661 == 0 { + } else if yyct3635 == codecSelferValueTypeArray1234 { + yyl3635 := r.ReadArrayStart() + if yyl3635 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3661, d) + x.codecDecodeSelfFromArray(yyl3635, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46301,12 +46002,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3662Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3662Slc - var yyhl3662 bool = l >= 0 - for yyj3662 := 0; ; yyj3662++ { - if yyhl3662 { - if yyj3662 >= l { + var yys3636Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3636Slc + var yyhl3636 bool = l >= 0 + for yyj3636 := 0; ; yyj3636++ { + if yyhl3636 { + if yyj3636 >= l { break } } else { @@ -46315,10 +46016,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3662Slc = r.DecodeBytes(yys3662Slc, true, true) - yys3662 := string(yys3662Slc) + yys3636Slc = r.DecodeBytes(yys3636Slc, true, true) + yys3636 := string(yys3636Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3662 { + switch yys3636 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46358,8 +46059,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3669 := z.DecBinary() - _ = yym3669 + yym3643 := z.DecBinary() + _ = yym3643 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -46374,13 +46075,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3671 := z.DecBinary() - _ = yym3671 + yym3645 := z.DecBinary() + _ = yym3645 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3671 { + } else if yym3645 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3671 && z.IsJSONHandle() { + } else if !yym3645 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -46401,8 +46102,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3674 := z.DecBinary() - _ = yym3674 + yym3648 := z.DecBinary() + _ = yym3648 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -46417,17 +46118,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3676 := z.DecBinary() - _ = yym3676 + yym3650 := z.DecBinary() + _ = yym3650 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3662) - } // end switch yys3662 - } // end for yyj3662 + z.DecStructFieldNotFound(-1, yys3636) + } // end switch yys3636 + } // end for yyj3636 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46435,16 +46136,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3677 int - var yyb3677 bool - var yyhl3677 bool = l >= 0 - yyj3677++ - if yyhl3677 { - yyb3677 = yyj3677 > l + var yyj3651 int + var yyb3651 bool + var yyhl3651 bool = l >= 0 + yyj3651++ + if yyhl3651 { + yyb3651 = yyj3651 > l } else { - yyb3677 = r.CheckBreak() + yyb3651 = r.CheckBreak() } - if yyb3677 { + if yyb3651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46454,13 +46155,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3677++ - if yyhl3677 { - yyb3677 = yyj3677 > l + yyj3651++ + if yyhl3651 { + yyb3651 = yyj3651 > l } else { - yyb3677 = r.CheckBreak() + yyb3651 = r.CheckBreak() } - if yyb3677 { + if yyb3651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46470,13 +46171,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3677++ - if yyhl3677 { - yyb3677 = yyj3677 > l + yyj3651++ + if yyhl3651 { + yyb3651 = yyj3651 > l } else { - yyb3677 = r.CheckBreak() + yyb3651 = r.CheckBreak() } - if yyb3677 { + if yyb3651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46486,13 +46187,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3677++ - if yyhl3677 { - yyb3677 = yyj3677 > l + yyj3651++ + if yyhl3651 { + yyb3651 = yyj3651 > l } else { - yyb3677 = r.CheckBreak() + yyb3651 = r.CheckBreak() } - if yyb3677 { + if yyb3651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46502,13 +46203,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3677++ - if yyhl3677 { - yyb3677 = yyj3677 > l + yyj3651++ + if yyhl3651 { + yyb3651 = yyj3651 > l } else { - yyb3677 = r.CheckBreak() + yyb3651 = r.CheckBreak() } - if yyb3677 { + if yyb3651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46518,13 +46219,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3677++ - if yyhl3677 { - yyb3677 = yyj3677 > l + yyj3651++ + if yyhl3651 { + yyb3651 = yyj3651 > l } else { - yyb3677 = r.CheckBreak() + yyb3651 = r.CheckBreak() } - if yyb3677 { + if yyb3651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46537,20 +46238,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3684 := z.DecBinary() - _ = yym3684 + yym3658 := z.DecBinary() + _ = yym3658 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3677++ - if yyhl3677 { - yyb3677 = yyj3677 > l + yyj3651++ + if yyhl3651 { + yyb3651 = yyj3651 > l } else { - yyb3677 = r.CheckBreak() + yyb3651 = r.CheckBreak() } - if yyb3677 { + if yyb3651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46563,25 +46264,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3686 := z.DecBinary() - _ = yym3686 + yym3660 := z.DecBinary() + _ = yym3660 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3686 { + } else if yym3660 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3686 && z.IsJSONHandle() { + } else if !yym3660 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3677++ - if yyhl3677 { - yyb3677 = yyj3677 > l + yyj3651++ + if yyhl3651 { + yyb3651 = yyj3651 > l } else { - yyb3677 = r.CheckBreak() + yyb3651 = r.CheckBreak() } - if yyb3677 { + if yyb3651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46591,13 +46292,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3677++ - if yyhl3677 { - yyb3677 = yyj3677 > l + yyj3651++ + if yyhl3651 { + yyb3651 = yyj3651 > l } else { - yyb3677 = r.CheckBreak() + yyb3651 = r.CheckBreak() } - if yyb3677 { + if yyb3651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46610,20 +46311,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3689 := z.DecBinary() - _ = yym3689 + yym3663 := z.DecBinary() + _ = yym3663 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3677++ - if yyhl3677 { - yyb3677 = yyj3677 > l + yyj3651++ + if yyhl3651 { + yyb3651 = yyj3651 > l } else { - yyb3677 = r.CheckBreak() + yyb3651 = r.CheckBreak() } - if yyb3677 { + if yyb3651 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46636,25 +46337,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3691 := z.DecBinary() - _ = yym3691 + yym3665 := z.DecBinary() + _ = yym3665 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3677++ - if yyhl3677 { - yyb3677 = yyj3677 > l + yyj3651++ + if yyhl3651 { + yyb3651 = yyj3651 > l } else { - yyb3677 = r.CheckBreak() + yyb3651 = r.CheckBreak() } - if yyb3677 { + if yyb3651 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3677-1, "") + z.DecStructFieldNotFound(yyj3651-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46666,41 +46367,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3692 := z.EncBinary() - _ = yym3692 + yym3666 := z.EncBinary() + _ = yym3666 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3693 := !z.EncBinary() - yy2arr3693 := z.EncBasicHandle().StructToArray - var yyq3693 [7]bool - _, _, _ = yysep3693, yyq3693, yy2arr3693 - const yyr3693 bool = false - yyq3693[0] = x.Kind != "" - yyq3693[1] = x.APIVersion != "" - yyq3693[2] = x.Stdin != false - yyq3693[3] = x.Stdout != false - yyq3693[4] = x.Stderr != false - yyq3693[5] = x.TTY != false - yyq3693[6] = x.Container != "" - var yynn3693 int - if yyr3693 || yy2arr3693 { + yysep3667 := !z.EncBinary() + yy2arr3667 := z.EncBasicHandle().StructToArray + var yyq3667 [7]bool + _, _, _ = yysep3667, yyq3667, yy2arr3667 + const yyr3667 bool = false + yyq3667[0] = x.Kind != "" + yyq3667[1] = x.APIVersion != "" + yyq3667[2] = x.Stdin != false + yyq3667[3] = x.Stdout != false + yyq3667[4] = x.Stderr != false + yyq3667[5] = x.TTY != false + yyq3667[6] = x.Container != "" + var yynn3667 int + if yyr3667 || yy2arr3667 { r.EncodeArrayStart(7) } else { - yynn3693 = 0 - for _, b := range yyq3693 { + yynn3667 = 0 + for _, b := range yyq3667 { if b { - yynn3693++ + yynn3667++ } } - r.EncodeMapStart(yynn3693) - yynn3693 = 0 + r.EncodeMapStart(yynn3667) + yynn3667 = 0 } - if yyr3693 || yy2arr3693 { + if yyr3667 || yy2arr3667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3693[0] { - yym3695 := z.EncBinary() - _ = yym3695 + if yyq3667[0] { + yym3669 := z.EncBinary() + _ = yym3669 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46709,23 +46410,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3693[0] { + if yyq3667[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3696 := z.EncBinary() - _ = yym3696 + yym3670 := z.EncBinary() + _ = yym3670 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3693 || yy2arr3693 { + if yyr3667 || yy2arr3667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3693[1] { - yym3698 := z.EncBinary() - _ = yym3698 + if yyq3667[1] { + yym3672 := z.EncBinary() + _ = yym3672 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46734,23 +46435,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3693[1] { + if yyq3667[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3699 := z.EncBinary() - _ = yym3699 + yym3673 := z.EncBinary() + _ = yym3673 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3693 || yy2arr3693 { + if yyr3667 || yy2arr3667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3693[2] { - yym3701 := z.EncBinary() - _ = yym3701 + if yyq3667[2] { + yym3675 := z.EncBinary() + _ = yym3675 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -46759,23 +46460,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3693[2] { + if yyq3667[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3702 := z.EncBinary() - _ = yym3702 + yym3676 := z.EncBinary() + _ = yym3676 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3693 || yy2arr3693 { + if yyr3667 || yy2arr3667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3693[3] { - yym3704 := z.EncBinary() - _ = yym3704 + if yyq3667[3] { + yym3678 := z.EncBinary() + _ = yym3678 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -46784,23 +46485,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3693[3] { + if yyq3667[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3705 := z.EncBinary() - _ = yym3705 + yym3679 := z.EncBinary() + _ = yym3679 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3693 || yy2arr3693 { + if yyr3667 || yy2arr3667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3693[4] { - yym3707 := z.EncBinary() - _ = yym3707 + if yyq3667[4] { + yym3681 := z.EncBinary() + _ = yym3681 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -46809,23 +46510,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3693[4] { + if yyq3667[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3708 := z.EncBinary() - _ = yym3708 + yym3682 := z.EncBinary() + _ = yym3682 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3693 || yy2arr3693 { + if yyr3667 || yy2arr3667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3693[5] { - yym3710 := z.EncBinary() - _ = yym3710 + if yyq3667[5] { + yym3684 := z.EncBinary() + _ = yym3684 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -46834,23 +46535,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3693[5] { + if yyq3667[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3711 := z.EncBinary() - _ = yym3711 + yym3685 := z.EncBinary() + _ = yym3685 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3693 || yy2arr3693 { + if yyr3667 || yy2arr3667 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3693[6] { - yym3713 := z.EncBinary() - _ = yym3713 + if yyq3667[6] { + yym3687 := z.EncBinary() + _ = yym3687 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -46859,19 +46560,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3693[6] { + if yyq3667[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3714 := z.EncBinary() - _ = yym3714 + yym3688 := z.EncBinary() + _ = yym3688 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3693 || yy2arr3693 { + if yyr3667 || yy2arr3667 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46884,25 +46585,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3715 := z.DecBinary() - _ = yym3715 + yym3689 := z.DecBinary() + _ = yym3689 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3716 := r.ContainerType() - if yyct3716 == codecSelferValueTypeMap1234 { - yyl3716 := r.ReadMapStart() - if yyl3716 == 0 { + yyct3690 := r.ContainerType() + if yyct3690 == codecSelferValueTypeMap1234 { + yyl3690 := r.ReadMapStart() + if yyl3690 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3716, d) + x.codecDecodeSelfFromMap(yyl3690, d) } - } else if yyct3716 == codecSelferValueTypeArray1234 { - yyl3716 := r.ReadArrayStart() - if yyl3716 == 0 { + } else if yyct3690 == codecSelferValueTypeArray1234 { + yyl3690 := r.ReadArrayStart() + if yyl3690 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3716, d) + x.codecDecodeSelfFromArray(yyl3690, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46914,12 +46615,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3717Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3717Slc - var yyhl3717 bool = l >= 0 - for yyj3717 := 0; ; yyj3717++ { - if yyhl3717 { - if yyj3717 >= l { + var yys3691Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3691Slc + var yyhl3691 bool = l >= 0 + for yyj3691 := 0; ; yyj3691++ { + if yyhl3691 { + if yyj3691 >= l { break } } else { @@ -46928,10 +46629,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3717Slc = r.DecodeBytes(yys3717Slc, true, true) - yys3717 := string(yys3717Slc) + yys3691Slc = r.DecodeBytes(yys3691Slc, true, true) + yys3691 := string(yys3691Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3717 { + switch yys3691 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46975,9 +46676,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3717) - } // end switch yys3717 - } // end for yyj3717 + z.DecStructFieldNotFound(-1, yys3691) + } // end switch yys3691 + } // end for yyj3691 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46985,16 +46686,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3725 int - var yyb3725 bool - var yyhl3725 bool = l >= 0 - yyj3725++ - if yyhl3725 { - yyb3725 = yyj3725 > l + var yyj3699 int + var yyb3699 bool + var yyhl3699 bool = l >= 0 + yyj3699++ + if yyhl3699 { + yyb3699 = yyj3699 > l } else { - yyb3725 = r.CheckBreak() + yyb3699 = r.CheckBreak() } - if yyb3725 { + if yyb3699 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47004,13 +46705,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3725++ - if yyhl3725 { - yyb3725 = yyj3725 > l + yyj3699++ + if yyhl3699 { + yyb3699 = yyj3699 > l } else { - yyb3725 = r.CheckBreak() + yyb3699 = r.CheckBreak() } - if yyb3725 { + if yyb3699 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47020,13 +46721,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3725++ - if yyhl3725 { - yyb3725 = yyj3725 > l + yyj3699++ + if yyhl3699 { + yyb3699 = yyj3699 > l } else { - yyb3725 = r.CheckBreak() + yyb3699 = r.CheckBreak() } - if yyb3725 { + if yyb3699 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47036,13 +46737,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3725++ - if yyhl3725 { - yyb3725 = yyj3725 > l + yyj3699++ + if yyhl3699 { + yyb3699 = yyj3699 > l } else { - yyb3725 = r.CheckBreak() + yyb3699 = r.CheckBreak() } - if yyb3725 { + if yyb3699 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47052,13 +46753,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3725++ - if yyhl3725 { - yyb3725 = yyj3725 > l + yyj3699++ + if yyhl3699 { + yyb3699 = yyj3699 > l } else { - yyb3725 = r.CheckBreak() + yyb3699 = r.CheckBreak() } - if yyb3725 { + if yyb3699 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47068,13 +46769,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3725++ - if yyhl3725 { - yyb3725 = yyj3725 > l + yyj3699++ + if yyhl3699 { + yyb3699 = yyj3699 > l } else { - yyb3725 = r.CheckBreak() + yyb3699 = r.CheckBreak() } - if yyb3725 { + if yyb3699 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47084,13 +46785,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3725++ - if yyhl3725 { - yyb3725 = yyj3725 > l + yyj3699++ + if yyhl3699 { + yyb3699 = yyj3699 > l } else { - yyb3725 = r.CheckBreak() + yyb3699 = r.CheckBreak() } - if yyb3725 { + if yyb3699 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47101,17 +46802,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3725++ - if yyhl3725 { - yyb3725 = yyj3725 > l + yyj3699++ + if yyhl3699 { + yyb3699 = yyj3699 > l } else { - yyb3725 = r.CheckBreak() + yyb3699 = r.CheckBreak() } - if yyb3725 { + if yyb3699 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3725-1, "") + z.DecStructFieldNotFound(yyj3699-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47123,36 +46824,36 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3733 := z.EncBinary() - _ = yym3733 + yym3707 := z.EncBinary() + _ = yym3707 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3734 := !z.EncBinary() - yy2arr3734 := z.EncBasicHandle().StructToArray - var yyq3734 [8]bool - _, _, _ = yysep3734, yyq3734, yy2arr3734 - const yyr3734 bool = false - yyq3734[0] = x.Kind != "" - yyq3734[1] = x.APIVersion != "" - var yynn3734 int - if yyr3734 || yy2arr3734 { + yysep3708 := !z.EncBinary() + yy2arr3708 := z.EncBasicHandle().StructToArray + var yyq3708 [8]bool + _, _, _ = yysep3708, yyq3708, yy2arr3708 + const yyr3708 bool = false + yyq3708[0] = x.Kind != "" + yyq3708[1] = x.APIVersion != "" + var yynn3708 int + if yyr3708 || yy2arr3708 { r.EncodeArrayStart(8) } else { - yynn3734 = 6 - for _, b := range yyq3734 { + yynn3708 = 6 + for _, b := range yyq3708 { if b { - yynn3734++ + yynn3708++ } } - r.EncodeMapStart(yynn3734) - yynn3734 = 0 + r.EncodeMapStart(yynn3708) + yynn3708 = 0 } - if yyr3734 || yy2arr3734 { + if yyr3708 || yy2arr3708 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3734[0] { - yym3736 := z.EncBinary() - _ = yym3736 + if yyq3708[0] { + yym3710 := z.EncBinary() + _ = yym3710 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47161,23 +46862,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3734[0] { + if yyq3708[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3737 := z.EncBinary() - _ = yym3737 + yym3711 := z.EncBinary() + _ = yym3711 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3734 || yy2arr3734 { + if yyr3708 || yy2arr3708 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3734[1] { - yym3739 := z.EncBinary() - _ = yym3739 + if yyq3708[1] { + yym3713 := z.EncBinary() + _ = yym3713 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47186,22 +46887,22 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3734[1] { + if yyq3708[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3740 := z.EncBinary() - _ = yym3740 + yym3714 := z.EncBinary() + _ = yym3714 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3734 || yy2arr3734 { + if yyr3708 || yy2arr3708 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3742 := z.EncBinary() - _ = yym3742 + yym3716 := z.EncBinary() + _ = yym3716 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -47210,17 +46911,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3743 := z.EncBinary() - _ = yym3743 + yym3717 := z.EncBinary() + _ = yym3717 if false { } else { r.EncodeBool(bool(x.Stdin)) } } - if yyr3734 || yy2arr3734 { + if yyr3708 || yy2arr3708 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3745 := z.EncBinary() - _ = yym3745 + yym3719 := z.EncBinary() + _ = yym3719 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -47229,17 +46930,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3746 := z.EncBinary() - _ = yym3746 + yym3720 := z.EncBinary() + _ = yym3720 if false { } else { r.EncodeBool(bool(x.Stdout)) } } - if yyr3734 || yy2arr3734 { + if yyr3708 || yy2arr3708 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3748 := z.EncBinary() - _ = yym3748 + yym3722 := z.EncBinary() + _ = yym3722 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -47248,17 +46949,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3749 := z.EncBinary() - _ = yym3749 + yym3723 := z.EncBinary() + _ = yym3723 if false { } else { r.EncodeBool(bool(x.Stderr)) } } - if yyr3734 || yy2arr3734 { + if yyr3708 || yy2arr3708 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3751 := z.EncBinary() - _ = yym3751 + yym3725 := z.EncBinary() + _ = yym3725 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -47267,17 +46968,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("TTY")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3752 := z.EncBinary() - _ = yym3752 + yym3726 := z.EncBinary() + _ = yym3726 if false { } else { r.EncodeBool(bool(x.TTY)) } } - if yyr3734 || yy2arr3734 { + if yyr3708 || yy2arr3708 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3754 := z.EncBinary() - _ = yym3754 + yym3728 := z.EncBinary() + _ = yym3728 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -47286,20 +46987,20 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3755 := z.EncBinary() - _ = yym3755 + yym3729 := z.EncBinary() + _ = yym3729 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr3734 || yy2arr3734 { + if yyr3708 || yy2arr3708 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3757 := z.EncBinary() - _ = yym3757 + yym3731 := z.EncBinary() + _ = yym3731 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -47312,15 +47013,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3758 := z.EncBinary() - _ = yym3758 + yym3732 := z.EncBinary() + _ = yym3732 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3734 || yy2arr3734 { + if yyr3708 || yy2arr3708 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47333,25 +47034,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3759 := z.DecBinary() - _ = yym3759 + yym3733 := z.DecBinary() + _ = yym3733 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3760 := r.ContainerType() - if yyct3760 == codecSelferValueTypeMap1234 { - yyl3760 := r.ReadMapStart() - if yyl3760 == 0 { + yyct3734 := r.ContainerType() + if yyct3734 == codecSelferValueTypeMap1234 { + yyl3734 := r.ReadMapStart() + if yyl3734 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3760, d) + x.codecDecodeSelfFromMap(yyl3734, d) } - } else if yyct3760 == codecSelferValueTypeArray1234 { - yyl3760 := r.ReadArrayStart() - if yyl3760 == 0 { + } else if yyct3734 == codecSelferValueTypeArray1234 { + yyl3734 := r.ReadArrayStart() + if yyl3734 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3760, d) + x.codecDecodeSelfFromArray(yyl3734, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47363,12 +47064,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3761Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3761Slc - var yyhl3761 bool = l >= 0 - for yyj3761 := 0; ; yyj3761++ { - if yyhl3761 { - if yyj3761 >= 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 { @@ -47377,10 +47078,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3761Slc = r.DecodeBytes(yys3761Slc, true, true) - yys3761 := string(yys3761Slc) + yys3735Slc = r.DecodeBytes(yys3735Slc, true, true) + yys3735 := string(yys3735Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3761 { + switch yys3735 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47427,18 +47128,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3769 := &x.Command - yym3770 := z.DecBinary() - _ = yym3770 + yyv3743 := &x.Command + yym3744 := z.DecBinary() + _ = yym3744 if false { } else { - z.F.DecSliceStringX(yyv3769, false, d) + z.F.DecSliceStringX(yyv3743, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3761) - } // end switch yys3761 - } // end for yyj3761 + z.DecStructFieldNotFound(-1, yys3735) + } // end switch yys3735 + } // end for yyj3735 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47446,16 +47147,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3771 int - var yyb3771 bool - var yyhl3771 bool = l >= 0 - yyj3771++ - if yyhl3771 { - yyb3771 = yyj3771 > l + var yyj3745 int + var yyb3745 bool + var yyhl3745 bool = l >= 0 + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3771 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3771 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47465,13 +47166,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3771++ - if yyhl3771 { - yyb3771 = yyj3771 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3771 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3771 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47481,13 +47182,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3771++ - if yyhl3771 { - yyb3771 = yyj3771 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3771 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3771 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47497,13 +47198,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3771++ - if yyhl3771 { - yyb3771 = yyj3771 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3771 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3771 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47513,13 +47214,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3771++ - if yyhl3771 { - yyb3771 = yyj3771 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3771 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3771 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47529,13 +47230,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3771++ - if yyhl3771 { - yyb3771 = yyj3771 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3771 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3771 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47545,13 +47246,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3771++ - if yyhl3771 { - yyb3771 = yyj3771 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3771 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3771 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47561,13 +47262,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3771++ - if yyhl3771 { - yyb3771 = yyj3771 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3771 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3771 { + if yyb3745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47575,26 +47276,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3779 := &x.Command - yym3780 := z.DecBinary() - _ = yym3780 + yyv3753 := &x.Command + yym3754 := z.DecBinary() + _ = yym3754 if false { } else { - z.F.DecSliceStringX(yyv3779, false, d) + z.F.DecSliceStringX(yyv3753, false, d) } } for { - yyj3771++ - if yyhl3771 { - yyb3771 = yyj3771 > l + yyj3745++ + if yyhl3745 { + yyb3745 = yyj3745 > l } else { - yyb3771 = r.CheckBreak() + yyb3745 = r.CheckBreak() } - if yyb3771 { + if yyb3745 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3771-1, "") + z.DecStructFieldNotFound(yyj3745-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47606,36 +47307,36 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3781 := z.EncBinary() - _ = yym3781 + yym3755 := z.EncBinary() + _ = yym3755 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3782 := !z.EncBinary() - yy2arr3782 := z.EncBasicHandle().StructToArray - var yyq3782 [3]bool - _, _, _ = yysep3782, yyq3782, yy2arr3782 - const yyr3782 bool = false - yyq3782[0] = x.Kind != "" - yyq3782[1] = x.APIVersion != "" - var yynn3782 int - if yyr3782 || yy2arr3782 { + 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 { r.EncodeArrayStart(3) } else { - yynn3782 = 1 - for _, b := range yyq3782 { + yynn3756 = 1 + for _, b := range yyq3756 { if b { - yynn3782++ + yynn3756++ } } - r.EncodeMapStart(yynn3782) - yynn3782 = 0 + r.EncodeMapStart(yynn3756) + yynn3756 = 0 } - if yyr3782 || yy2arr3782 { + if yyr3756 || yy2arr3756 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3782[0] { - yym3784 := z.EncBinary() - _ = yym3784 + if yyq3756[0] { + yym3758 := z.EncBinary() + _ = yym3758 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47644,23 +47345,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3782[0] { + if yyq3756[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3785 := z.EncBinary() - _ = yym3785 + yym3759 := z.EncBinary() + _ = yym3759 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3782 || yy2arr3782 { + if yyr3756 || yy2arr3756 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3782[1] { - yym3787 := z.EncBinary() - _ = yym3787 + if yyq3756[1] { + yym3761 := z.EncBinary() + _ = yym3761 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47669,22 +47370,22 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3782[1] { + if yyq3756[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3788 := z.EncBinary() - _ = yym3788 + yym3762 := z.EncBinary() + _ = yym3762 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3782 || yy2arr3782 { + if yyr3756 || yy2arr3756 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3790 := z.EncBinary() - _ = yym3790 + yym3764 := z.EncBinary() + _ = yym3764 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -47693,14 +47394,14 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3791 := z.EncBinary() - _ = yym3791 + yym3765 := z.EncBinary() + _ = yym3765 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3782 || yy2arr3782 { + if yyr3756 || yy2arr3756 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47713,25 +47414,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3792 := z.DecBinary() - _ = yym3792 + yym3766 := z.DecBinary() + _ = yym3766 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3793 := r.ContainerType() - if yyct3793 == codecSelferValueTypeMap1234 { - yyl3793 := r.ReadMapStart() - if yyl3793 == 0 { + yyct3767 := r.ContainerType() + if yyct3767 == codecSelferValueTypeMap1234 { + yyl3767 := r.ReadMapStart() + if yyl3767 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3793, d) + x.codecDecodeSelfFromMap(yyl3767, d) } - } else if yyct3793 == codecSelferValueTypeArray1234 { - yyl3793 := r.ReadArrayStart() - if yyl3793 == 0 { + } else if yyct3767 == codecSelferValueTypeArray1234 { + yyl3767 := r.ReadArrayStart() + if yyl3767 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3793, d) + x.codecDecodeSelfFromArray(yyl3767, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47743,12 +47444,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3794Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3794Slc - var yyhl3794 bool = l >= 0 - for yyj3794 := 0; ; yyj3794++ { - if yyhl3794 { - if yyj3794 >= l { + var yys3768Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3768Slc + var yyhl3768 bool = l >= 0 + for yyj3768 := 0; ; yyj3768++ { + if yyhl3768 { + if yyj3768 >= l { break } } else { @@ -47757,10 +47458,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3794Slc = r.DecodeBytes(yys3794Slc, true, true) - yys3794 := string(yys3794Slc) + yys3768Slc = r.DecodeBytes(yys3768Slc, true, true) + yys3768 := string(yys3768Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3794 { + switch yys3768 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47780,9 +47481,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3794) - } // end switch yys3794 - } // end for yyj3794 + z.DecStructFieldNotFound(-1, yys3768) + } // end switch yys3768 + } // end for yyj3768 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47790,16 +47491,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3798 int - var yyb3798 bool - var yyhl3798 bool = l >= 0 - yyj3798++ - if yyhl3798 { - yyb3798 = yyj3798 > l + var yyj3772 int + var yyb3772 bool + var yyhl3772 bool = l >= 0 + yyj3772++ + if yyhl3772 { + yyb3772 = yyj3772 > l } else { - yyb3798 = r.CheckBreak() + yyb3772 = r.CheckBreak() } - if yyb3798 { + if yyb3772 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47809,13 +47510,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3798++ - if yyhl3798 { - yyb3798 = yyj3798 > l + yyj3772++ + if yyhl3772 { + yyb3772 = yyj3772 > l } else { - yyb3798 = r.CheckBreak() + yyb3772 = r.CheckBreak() } - if yyb3798 { + if yyb3772 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47825,13 +47526,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3798++ - if yyhl3798 { - yyb3798 = yyj3798 > l + yyj3772++ + if yyhl3772 { + yyb3772 = yyj3772 > l } else { - yyb3798 = r.CheckBreak() + yyb3772 = r.CheckBreak() } - if yyb3798 { + if yyb3772 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47842,17 +47543,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3798++ - if yyhl3798 { - yyb3798 = yyj3798 > l + yyj3772++ + if yyhl3772 { + yyb3772 = yyj3772 > l } else { - yyb3798 = r.CheckBreak() + yyb3772 = r.CheckBreak() } - if yyb3798 { + if yyb3772 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3798-1, "") + z.DecStructFieldNotFound(yyj3772-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47864,36 +47565,36 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3802 := z.EncBinary() - _ = yym3802 + yym3776 := z.EncBinary() + _ = yym3776 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 != "" - var yynn3803 int - if yyr3803 || yy2arr3803 { + yysep3777 := !z.EncBinary() + yy2arr3777 := z.EncBasicHandle().StructToArray + var yyq3777 [3]bool + _, _, _ = yysep3777, yyq3777, yy2arr3777 + const yyr3777 bool = false + yyq3777[0] = x.Kind != "" + yyq3777[1] = x.APIVersion != "" + var yynn3777 int + if yyr3777 || yy2arr3777 { r.EncodeArrayStart(3) } else { - yynn3803 = 1 - for _, b := range yyq3803 { + yynn3777 = 1 + for _, b := range yyq3777 { if b { - yynn3803++ + yynn3777++ } } - r.EncodeMapStart(yynn3803) - yynn3803 = 0 + r.EncodeMapStart(yynn3777) + yynn3777 = 0 } - if yyr3803 || yy2arr3803 { + if yyr3777 || yy2arr3777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3803[0] { - yym3805 := z.EncBinary() - _ = yym3805 + if yyq3777[0] { + yym3779 := z.EncBinary() + _ = yym3779 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47902,23 +47603,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3803[0] { + if yyq3777[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3806 := z.EncBinary() - _ = yym3806 + yym3780 := z.EncBinary() + _ = yym3780 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3803 || yy2arr3803 { + if yyr3777 || yy2arr3777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3803[1] { - yym3808 := z.EncBinary() - _ = yym3808 + if yyq3777[1] { + yym3782 := z.EncBinary() + _ = yym3782 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47927,22 +47628,22 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3803[1] { + if yyq3777[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3809 := z.EncBinary() - _ = yym3809 + yym3783 := z.EncBinary() + _ = yym3783 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3803 || yy2arr3803 { + if yyr3777 || yy2arr3777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3811 := z.EncBinary() - _ = yym3811 + yym3785 := z.EncBinary() + _ = yym3785 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -47951,14 +47652,14 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3812 := z.EncBinary() - _ = yym3812 + yym3786 := z.EncBinary() + _ = yym3786 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3803 || yy2arr3803 { + if yyr3777 || yy2arr3777 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47971,25 +47672,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3813 := z.DecBinary() - _ = yym3813 + yym3787 := z.DecBinary() + _ = yym3787 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3814 := r.ContainerType() - if yyct3814 == codecSelferValueTypeMap1234 { - yyl3814 := r.ReadMapStart() - if yyl3814 == 0 { + yyct3788 := r.ContainerType() + if yyct3788 == codecSelferValueTypeMap1234 { + yyl3788 := r.ReadMapStart() + if yyl3788 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3814, d) + x.codecDecodeSelfFromMap(yyl3788, d) } - } else if yyct3814 == codecSelferValueTypeArray1234 { - yyl3814 := r.ReadArrayStart() - if yyl3814 == 0 { + } else if yyct3788 == codecSelferValueTypeArray1234 { + yyl3788 := r.ReadArrayStart() + if yyl3788 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3814, d) + x.codecDecodeSelfFromArray(yyl3788, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48001,12 +47702,12 @@ func (x *NodeProxyOptions) 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 yys3789Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3789Slc + var yyhl3789 bool = l >= 0 + for yyj3789 := 0; ; yyj3789++ { + if yyhl3789 { + if yyj3789 >= l { break } } else { @@ -48015,10 +47716,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3815Slc = r.DecodeBytes(yys3815Slc, true, true) - yys3815 := string(yys3815Slc) + yys3789Slc = r.DecodeBytes(yys3789Slc, true, true) + yys3789 := string(yys3789Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3815 { + switch yys3789 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48038,9 +47739,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3815) - } // end switch yys3815 - } // end for yyj3815 + z.DecStructFieldNotFound(-1, yys3789) + } // end switch yys3789 + } // end for yyj3789 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48048,16 +47749,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) 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 yyj3793 int + var yyb3793 bool + var yyhl3793 bool = l >= 0 + yyj3793++ + if yyhl3793 { + yyb3793 = yyj3793 > l } else { - yyb3819 = r.CheckBreak() + yyb3793 = r.CheckBreak() } - if yyb3819 { + if yyb3793 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48067,13 +47768,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3819++ - if yyhl3819 { - yyb3819 = yyj3819 > l + yyj3793++ + if yyhl3793 { + yyb3793 = yyj3793 > l } else { - yyb3819 = r.CheckBreak() + yyb3793 = r.CheckBreak() } - if yyb3819 { + if yyb3793 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48083,13 +47784,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3819++ - if yyhl3819 { - yyb3819 = yyj3819 > l + yyj3793++ + if yyhl3793 { + yyb3793 = yyj3793 > l } else { - yyb3819 = r.CheckBreak() + yyb3793 = r.CheckBreak() } - if yyb3819 { + if yyb3793 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48100,17 +47801,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3819++ - if yyhl3819 { - yyb3819 = yyj3819 > l + yyj3793++ + if yyhl3793 { + yyb3793 = yyj3793 > l } else { - yyb3819 = r.CheckBreak() + yyb3793 = r.CheckBreak() } - if yyb3819 { + if yyb3793 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3819-1, "") + z.DecStructFieldNotFound(yyj3793-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48122,36 +47823,36 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3823 := z.EncBinary() - _ = yym3823 + yym3797 := z.EncBinary() + _ = yym3797 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3824 := !z.EncBinary() - yy2arr3824 := z.EncBasicHandle().StructToArray - var yyq3824 [3]bool - _, _, _ = yysep3824, yyq3824, yy2arr3824 - const yyr3824 bool = false - yyq3824[0] = x.Kind != "" - yyq3824[1] = x.APIVersion != "" - var yynn3824 int - if yyr3824 || yy2arr3824 { + yysep3798 := !z.EncBinary() + yy2arr3798 := z.EncBasicHandle().StructToArray + var yyq3798 [3]bool + _, _, _ = yysep3798, yyq3798, yy2arr3798 + const yyr3798 bool = false + yyq3798[0] = x.Kind != "" + yyq3798[1] = x.APIVersion != "" + var yynn3798 int + if yyr3798 || yy2arr3798 { r.EncodeArrayStart(3) } else { - yynn3824 = 1 - for _, b := range yyq3824 { + yynn3798 = 1 + for _, b := range yyq3798 { if b { - yynn3824++ + yynn3798++ } } - r.EncodeMapStart(yynn3824) - yynn3824 = 0 + r.EncodeMapStart(yynn3798) + yynn3798 = 0 } - if yyr3824 || yy2arr3824 { + if yyr3798 || yy2arr3798 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3824[0] { - yym3826 := z.EncBinary() - _ = yym3826 + if yyq3798[0] { + yym3800 := z.EncBinary() + _ = yym3800 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48160,23 +47861,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3824[0] { + if yyq3798[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3827 := z.EncBinary() - _ = yym3827 + yym3801 := z.EncBinary() + _ = yym3801 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3824 || yy2arr3824 { + if yyr3798 || yy2arr3798 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3824[1] { - yym3829 := z.EncBinary() - _ = yym3829 + if yyq3798[1] { + yym3803 := z.EncBinary() + _ = yym3803 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48185,22 +47886,22 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3824[1] { + if yyq3798[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3830 := z.EncBinary() - _ = yym3830 + yym3804 := z.EncBinary() + _ = yym3804 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3824 || yy2arr3824 { + if yyr3798 || yy2arr3798 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3832 := z.EncBinary() - _ = yym3832 + yym3806 := z.EncBinary() + _ = yym3806 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -48209,14 +47910,14 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3833 := z.EncBinary() - _ = yym3833 + yym3807 := z.EncBinary() + _ = yym3807 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3824 || yy2arr3824 { + if yyr3798 || yy2arr3798 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48229,25 +47930,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3834 := z.DecBinary() - _ = yym3834 + yym3808 := z.DecBinary() + _ = yym3808 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3835 := r.ContainerType() - if yyct3835 == codecSelferValueTypeMap1234 { - yyl3835 := r.ReadMapStart() - if yyl3835 == 0 { + yyct3809 := r.ContainerType() + if yyct3809 == codecSelferValueTypeMap1234 { + yyl3809 := r.ReadMapStart() + if yyl3809 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3835, d) + x.codecDecodeSelfFromMap(yyl3809, d) } - } else if yyct3835 == codecSelferValueTypeArray1234 { - yyl3835 := r.ReadArrayStart() - if yyl3835 == 0 { + } else if yyct3809 == codecSelferValueTypeArray1234 { + yyl3809 := r.ReadArrayStart() + if yyl3809 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3835, d) + x.codecDecodeSelfFromArray(yyl3809, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48259,12 +47960,12 @@ func (x *ServiceProxyOptions) 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 yys3810Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3810Slc + var yyhl3810 bool = l >= 0 + for yyj3810 := 0; ; yyj3810++ { + if yyhl3810 { + if yyj3810 >= l { break } } else { @@ -48273,10 +47974,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3836Slc = r.DecodeBytes(yys3836Slc, true, true) - yys3836 := string(yys3836Slc) + yys3810Slc = r.DecodeBytes(yys3810Slc, true, true) + yys3810 := string(yys3810Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3836 { + switch yys3810 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48296,9 +47997,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3836) - } // end switch yys3836 - } // end for yyj3836 + z.DecStructFieldNotFound(-1, yys3810) + } // end switch yys3810 + } // end for yyj3810 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48306,16 +48007,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3840 int - var yyb3840 bool - var yyhl3840 bool = l >= 0 - yyj3840++ - if yyhl3840 { - yyb3840 = yyj3840 > l + var yyj3814 int + var yyb3814 bool + var yyhl3814 bool = l >= 0 + yyj3814++ + if yyhl3814 { + yyb3814 = yyj3814 > l } else { - yyb3840 = r.CheckBreak() + yyb3814 = r.CheckBreak() } - if yyb3840 { + if yyb3814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48325,13 +48026,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3840++ - if yyhl3840 { - yyb3840 = yyj3840 > l + yyj3814++ + if yyhl3814 { + yyb3814 = yyj3814 > l } else { - yyb3840 = r.CheckBreak() + yyb3814 = r.CheckBreak() } - if yyb3840 { + if yyb3814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48341,13 +48042,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3840++ - if yyhl3840 { - yyb3840 = yyj3840 > l + yyj3814++ + if yyhl3814 { + yyb3814 = yyj3814 > l } else { - yyb3840 = r.CheckBreak() + yyb3814 = r.CheckBreak() } - if yyb3840 { + if yyb3814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48358,17 +48059,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3840++ - if yyhl3840 { - yyb3840 = yyj3840 > l + yyj3814++ + if yyhl3814 { + yyb3814 = yyj3814 > l } else { - yyb3840 = r.CheckBreak() + yyb3814 = r.CheckBreak() } - if yyb3840 { + if yyb3814 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3840-1, "") + z.DecStructFieldNotFound(yyj3814-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48380,34 +48081,34 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3844 := z.EncBinary() - _ = yym3844 + yym3818 := z.EncBinary() + _ = yym3818 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3845 := !z.EncBinary() - yy2arr3845 := z.EncBasicHandle().StructToArray - var yyq3845 [5]bool - _, _, _ = yysep3845, yyq3845, yy2arr3845 - const yyr3845 bool = false - yyq3845[4] = x.Controller != nil - var yynn3845 int - if yyr3845 || yy2arr3845 { + yysep3819 := !z.EncBinary() + yy2arr3819 := z.EncBasicHandle().StructToArray + var yyq3819 [5]bool + _, _, _ = yysep3819, yyq3819, yy2arr3819 + const yyr3819 bool = false + yyq3819[4] = x.Controller != nil + var yynn3819 int + if yyr3819 || yy2arr3819 { r.EncodeArrayStart(5) } else { - yynn3845 = 4 - for _, b := range yyq3845 { + yynn3819 = 4 + for _, b := range yyq3819 { if b { - yynn3845++ + yynn3819++ } } - r.EncodeMapStart(yynn3845) - yynn3845 = 0 + r.EncodeMapStart(yynn3819) + yynn3819 = 0 } - if yyr3845 || yy2arr3845 { + if yyr3819 || yy2arr3819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3847 := z.EncBinary() - _ = yym3847 + yym3821 := z.EncBinary() + _ = yym3821 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48416,17 +48117,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3848 := z.EncBinary() - _ = yym3848 + yym3822 := z.EncBinary() + _ = yym3822 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr3845 || yy2arr3845 { + if yyr3819 || yy2arr3819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3850 := z.EncBinary() - _ = yym3850 + yym3824 := z.EncBinary() + _ = yym3824 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48435,17 +48136,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3851 := z.EncBinary() - _ = yym3851 + yym3825 := z.EncBinary() + _ = yym3825 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } - if yyr3845 || yy2arr3845 { + if yyr3819 || yy2arr3819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3853 := z.EncBinary() - _ = yym3853 + yym3827 := z.EncBinary() + _ = yym3827 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -48454,17 +48155,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3854 := z.EncBinary() - _ = yym3854 + yym3828 := z.EncBinary() + _ = yym3828 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3845 || yy2arr3845 { + if yyr3819 || yy2arr3819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3856 := z.EncBinary() - _ = yym3856 + yym3830 := z.EncBinary() + _ = yym3830 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -48474,50 +48175,50 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3857 := z.EncBinary() - _ = yym3857 + yym3831 := z.EncBinary() + _ = yym3831 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.UID)) } } - if yyr3845 || yy2arr3845 { + if yyr3819 || yy2arr3819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3845[4] { + if yyq3819[4] { if x.Controller == nil { r.EncodeNil() } else { - yy3859 := *x.Controller - yym3860 := z.EncBinary() - _ = yym3860 + yy3833 := *x.Controller + yym3834 := z.EncBinary() + _ = yym3834 if false { } else { - r.EncodeBool(bool(yy3859)) + r.EncodeBool(bool(yy3833)) } } } else { r.EncodeNil() } } else { - if yyq3845[4] { + if yyq3819[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controller")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Controller == nil { r.EncodeNil() } else { - yy3861 := *x.Controller - yym3862 := z.EncBinary() - _ = yym3862 + yy3835 := *x.Controller + yym3836 := z.EncBinary() + _ = yym3836 if false { } else { - r.EncodeBool(bool(yy3861)) + r.EncodeBool(bool(yy3835)) } } } } - if yyr3845 || yy2arr3845 { + if yyr3819 || yy2arr3819 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48530,25 +48231,25 @@ func (x *OwnerReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3863 := z.DecBinary() - _ = yym3863 + yym3837 := z.DecBinary() + _ = yym3837 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3864 := r.ContainerType() - if yyct3864 == codecSelferValueTypeMap1234 { - yyl3864 := r.ReadMapStart() - if yyl3864 == 0 { + yyct3838 := r.ContainerType() + if yyct3838 == codecSelferValueTypeMap1234 { + yyl3838 := r.ReadMapStart() + if yyl3838 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3864, d) + x.codecDecodeSelfFromMap(yyl3838, d) } - } else if yyct3864 == codecSelferValueTypeArray1234 { - yyl3864 := r.ReadArrayStart() - if yyl3864 == 0 { + } else if yyct3838 == codecSelferValueTypeArray1234 { + yyl3838 := r.ReadArrayStart() + if yyl3838 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3864, d) + x.codecDecodeSelfFromArray(yyl3838, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48560,12 +48261,12 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3865Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3865Slc - var yyhl3865 bool = l >= 0 - for yyj3865 := 0; ; yyj3865++ { - if yyhl3865 { - if yyj3865 >= l { + var yys3839Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3839Slc + var yyhl3839 bool = l >= 0 + for yyj3839 := 0; ; yyj3839++ { + if yyhl3839 { + if yyj3839 >= l { break } } else { @@ -48574,10 +48275,10 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3865Slc = r.DecodeBytes(yys3865Slc, true, true) - yys3865 := string(yys3865Slc) + yys3839Slc = r.DecodeBytes(yys3839Slc, true, true) + yys3839 := string(yys3839Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3865 { + switch yys3839 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -48611,17 +48312,17 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3871 := z.DecBinary() - _ = yym3871 + yym3845 := z.DecBinary() + _ = yym3845 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3865) - } // end switch yys3865 - } // end for yyj3865 + z.DecStructFieldNotFound(-1, yys3839) + } // end switch yys3839 + } // end for yyj3839 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48629,16 +48330,16 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3872 int - var yyb3872 bool - var yyhl3872 bool = l >= 0 - yyj3872++ - if yyhl3872 { - yyb3872 = yyj3872 > l + var yyj3846 int + var yyb3846 bool + var yyhl3846 bool = l >= 0 + yyj3846++ + if yyhl3846 { + yyb3846 = yyj3846 > l } else { - yyb3872 = r.CheckBreak() + yyb3846 = r.CheckBreak() } - if yyb3872 { + if yyb3846 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48648,13 +48349,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3872++ - if yyhl3872 { - yyb3872 = yyj3872 > l + yyj3846++ + if yyhl3846 { + yyb3846 = yyj3846 > l } else { - yyb3872 = r.CheckBreak() + yyb3846 = r.CheckBreak() } - if yyb3872 { + if yyb3846 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48664,13 +48365,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3872++ - if yyhl3872 { - yyb3872 = yyj3872 > l + yyj3846++ + if yyhl3846 { + yyb3846 = yyj3846 > l } else { - yyb3872 = r.CheckBreak() + yyb3846 = r.CheckBreak() } - if yyb3872 { + if yyb3846 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48680,13 +48381,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj3872++ - if yyhl3872 { - yyb3872 = yyj3872 > l + yyj3846++ + if yyhl3846 { + yyb3846 = yyj3846 > l } else { - yyb3872 = r.CheckBreak() + yyb3846 = r.CheckBreak() } - if yyb3872 { + if yyb3846 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48696,13 +48397,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3872++ - if yyhl3872 { - yyb3872 = yyj3872 > l + yyj3846++ + if yyhl3846 { + yyb3846 = yyj3846 > l } else { - yyb3872 = r.CheckBreak() + yyb3846 = r.CheckBreak() } - if yyb3872 { + if yyb3846 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48715,25 +48416,25 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3878 := z.DecBinary() - _ = yym3878 + yym3852 := z.DecBinary() + _ = yym3852 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } for { - yyj3872++ - if yyhl3872 { - yyb3872 = yyj3872 > l + yyj3846++ + if yyhl3846 { + yyb3846 = yyj3846 > l } else { - yyb3872 = r.CheckBreak() + yyb3846 = r.CheckBreak() } - if yyb3872 { + if yyb3846 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3872-1, "") + z.DecStructFieldNotFound(yyj3846-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48745,41 +48446,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3879 := z.EncBinary() - _ = yym3879 + yym3853 := z.EncBinary() + _ = yym3853 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3880 := !z.EncBinary() - yy2arr3880 := z.EncBasicHandle().StructToArray - var yyq3880 [7]bool - _, _, _ = yysep3880, yyq3880, yy2arr3880 - const yyr3880 bool = false - yyq3880[0] = x.Kind != "" - yyq3880[1] = x.Namespace != "" - yyq3880[2] = x.Name != "" - yyq3880[3] = x.UID != "" - yyq3880[4] = x.APIVersion != "" - yyq3880[5] = x.ResourceVersion != "" - yyq3880[6] = x.FieldPath != "" - var yynn3880 int - if yyr3880 || yy2arr3880 { + yysep3854 := !z.EncBinary() + yy2arr3854 := z.EncBasicHandle().StructToArray + var yyq3854 [7]bool + _, _, _ = yysep3854, yyq3854, yy2arr3854 + const yyr3854 bool = false + yyq3854[0] = x.Kind != "" + yyq3854[1] = x.Namespace != "" + yyq3854[2] = x.Name != "" + yyq3854[3] = x.UID != "" + yyq3854[4] = x.APIVersion != "" + yyq3854[5] = x.ResourceVersion != "" + yyq3854[6] = x.FieldPath != "" + var yynn3854 int + if yyr3854 || yy2arr3854 { r.EncodeArrayStart(7) } else { - yynn3880 = 0 - for _, b := range yyq3880 { + yynn3854 = 0 + for _, b := range yyq3854 { if b { - yynn3880++ + yynn3854++ } } - r.EncodeMapStart(yynn3880) - yynn3880 = 0 + r.EncodeMapStart(yynn3854) + yynn3854 = 0 } - if yyr3880 || yy2arr3880 { + if yyr3854 || yy2arr3854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3880[0] { - yym3882 := z.EncBinary() - _ = yym3882 + if yyq3854[0] { + yym3856 := z.EncBinary() + _ = yym3856 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48788,23 +48489,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3880[0] { + if yyq3854[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3883 := z.EncBinary() - _ = yym3883 + yym3857 := z.EncBinary() + _ = yym3857 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3880 || yy2arr3880 { + if yyr3854 || yy2arr3854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3880[1] { - yym3885 := z.EncBinary() - _ = yym3885 + if yyq3854[1] { + yym3859 := z.EncBinary() + _ = yym3859 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -48813,23 +48514,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3880[1] { + if yyq3854[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3886 := z.EncBinary() - _ = yym3886 + yym3860 := z.EncBinary() + _ = yym3860 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3880 || yy2arr3880 { + if yyr3854 || yy2arr3854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3880[2] { - yym3888 := z.EncBinary() - _ = yym3888 + if yyq3854[2] { + yym3862 := z.EncBinary() + _ = yym3862 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -48838,23 +48539,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3880[2] { + if yyq3854[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3889 := z.EncBinary() - _ = yym3889 + yym3863 := z.EncBinary() + _ = yym3863 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3880 || yy2arr3880 { + if yyr3854 || yy2arr3854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3880[3] { - yym3891 := z.EncBinary() - _ = yym3891 + if yyq3854[3] { + yym3865 := z.EncBinary() + _ = yym3865 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -48864,12 +48565,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3880[3] { + if yyq3854[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3892 := z.EncBinary() - _ = yym3892 + yym3866 := z.EncBinary() + _ = yym3866 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -48877,11 +48578,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3880 || yy2arr3880 { + if yyr3854 || yy2arr3854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3880[4] { - yym3894 := z.EncBinary() - _ = yym3894 + if yyq3854[4] { + yym3868 := z.EncBinary() + _ = yym3868 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48890,23 +48591,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3880[4] { + if yyq3854[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3895 := z.EncBinary() - _ = yym3895 + yym3869 := z.EncBinary() + _ = yym3869 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3880 || yy2arr3880 { + if yyr3854 || yy2arr3854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3880[5] { - yym3897 := z.EncBinary() - _ = yym3897 + if yyq3854[5] { + yym3871 := z.EncBinary() + _ = yym3871 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -48915,23 +48616,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3880[5] { + if yyq3854[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3898 := z.EncBinary() - _ = yym3898 + yym3872 := z.EncBinary() + _ = yym3872 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3880 || yy2arr3880 { + if yyr3854 || yy2arr3854 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3880[6] { - yym3900 := z.EncBinary() - _ = yym3900 + if yyq3854[6] { + yym3874 := z.EncBinary() + _ = yym3874 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -48940,19 +48641,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3880[6] { + if yyq3854[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3901 := z.EncBinary() - _ = yym3901 + yym3875 := z.EncBinary() + _ = yym3875 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3880 || yy2arr3880 { + if yyr3854 || yy2arr3854 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48965,25 +48666,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3902 := z.DecBinary() - _ = yym3902 + yym3876 := z.DecBinary() + _ = yym3876 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3903 := r.ContainerType() - if yyct3903 == codecSelferValueTypeMap1234 { - yyl3903 := r.ReadMapStart() - if yyl3903 == 0 { + yyct3877 := r.ContainerType() + if yyct3877 == codecSelferValueTypeMap1234 { + yyl3877 := r.ReadMapStart() + if yyl3877 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3903, d) + x.codecDecodeSelfFromMap(yyl3877, d) } - } else if yyct3903 == codecSelferValueTypeArray1234 { - yyl3903 := r.ReadArrayStart() - if yyl3903 == 0 { + } else if yyct3877 == codecSelferValueTypeArray1234 { + yyl3877 := r.ReadArrayStart() + if yyl3877 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3903, d) + x.codecDecodeSelfFromArray(yyl3877, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48995,12 +48696,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3904Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3904Slc - var yyhl3904 bool = l >= 0 - for yyj3904 := 0; ; yyj3904++ { - if yyhl3904 { - if yyj3904 >= l { + var yys3878Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3878Slc + var yyhl3878 bool = l >= 0 + for yyj3878 := 0; ; yyj3878++ { + if yyhl3878 { + if yyj3878 >= l { break } } else { @@ -49009,10 +48710,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3904Slc = r.DecodeBytes(yys3904Slc, true, true) - yys3904 := string(yys3904Slc) + yys3878Slc = r.DecodeBytes(yys3878Slc, true, true) + yys3878 := string(yys3878Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3904 { + switch yys3878 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49056,9 +48757,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3904) - } // end switch yys3904 - } // end for yyj3904 + z.DecStructFieldNotFound(-1, yys3878) + } // end switch yys3878 + } // end for yyj3878 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49066,16 +48767,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3912 int - var yyb3912 bool - var yyhl3912 bool = l >= 0 - yyj3912++ - if yyhl3912 { - yyb3912 = yyj3912 > l + var yyj3886 int + var yyb3886 bool + var yyhl3886 bool = l >= 0 + yyj3886++ + if yyhl3886 { + yyb3886 = yyj3886 > l } else { - yyb3912 = r.CheckBreak() + yyb3886 = r.CheckBreak() } - if yyb3912 { + if yyb3886 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49085,13 +48786,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3912++ - if yyhl3912 { - yyb3912 = yyj3912 > l + yyj3886++ + if yyhl3886 { + yyb3886 = yyj3886 > l } else { - yyb3912 = r.CheckBreak() + yyb3886 = r.CheckBreak() } - if yyb3912 { + if yyb3886 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49101,13 +48802,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3912++ - if yyhl3912 { - yyb3912 = yyj3912 > l + yyj3886++ + if yyhl3886 { + yyb3886 = yyj3886 > l } else { - yyb3912 = r.CheckBreak() + yyb3886 = r.CheckBreak() } - if yyb3912 { + if yyb3886 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49117,13 +48818,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3912++ - if yyhl3912 { - yyb3912 = yyj3912 > l + yyj3886++ + if yyhl3886 { + yyb3886 = yyj3886 > l } else { - yyb3912 = r.CheckBreak() + yyb3886 = r.CheckBreak() } - if yyb3912 { + if yyb3886 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49133,13 +48834,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3912++ - if yyhl3912 { - yyb3912 = yyj3912 > l + yyj3886++ + if yyhl3886 { + yyb3886 = yyj3886 > l } else { - yyb3912 = r.CheckBreak() + yyb3886 = r.CheckBreak() } - if yyb3912 { + if yyb3886 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49149,13 +48850,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3912++ - if yyhl3912 { - yyb3912 = yyj3912 > l + yyj3886++ + if yyhl3886 { + yyb3886 = yyj3886 > l } else { - yyb3912 = r.CheckBreak() + yyb3886 = r.CheckBreak() } - if yyb3912 { + if yyb3886 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49165,13 +48866,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3912++ - if yyhl3912 { - yyb3912 = yyj3912 > l + yyj3886++ + if yyhl3886 { + yyb3886 = yyj3886 > l } else { - yyb3912 = r.CheckBreak() + yyb3886 = r.CheckBreak() } - if yyb3912 { + if yyb3886 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49182,17 +48883,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3912++ - if yyhl3912 { - yyb3912 = yyj3912 > l + yyj3886++ + if yyhl3886 { + yyb3886 = yyj3886 > l } else { - yyb3912 = r.CheckBreak() + yyb3886 = r.CheckBreak() } - if yyb3912 { + if yyb3886 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3912-1, "") + z.DecStructFieldNotFound(yyj3886-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49204,33 +48905,33 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3920 := z.EncBinary() - _ = yym3920 + yym3894 := z.EncBinary() + _ = yym3894 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3921 := !z.EncBinary() - yy2arr3921 := z.EncBasicHandle().StructToArray - var yyq3921 [1]bool - _, _, _ = yysep3921, yyq3921, yy2arr3921 - const yyr3921 bool = false - var yynn3921 int - if yyr3921 || yy2arr3921 { + yysep3895 := !z.EncBinary() + yy2arr3895 := z.EncBasicHandle().StructToArray + var yyq3895 [1]bool + _, _, _ = yysep3895, yyq3895, yy2arr3895 + const yyr3895 bool = false + var yynn3895 int + if yyr3895 || yy2arr3895 { r.EncodeArrayStart(1) } else { - yynn3921 = 1 - for _, b := range yyq3921 { + yynn3895 = 1 + for _, b := range yyq3895 { if b { - yynn3921++ + yynn3895++ } } - r.EncodeMapStart(yynn3921) - yynn3921 = 0 + r.EncodeMapStart(yynn3895) + yynn3895 = 0 } - if yyr3921 || yy2arr3921 { + if yyr3895 || yy2arr3895 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3923 := z.EncBinary() - _ = yym3923 + yym3897 := z.EncBinary() + _ = yym3897 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -49239,14 +48940,14 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3924 := z.EncBinary() - _ = yym3924 + yym3898 := z.EncBinary() + _ = yym3898 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3921 || yy2arr3921 { + if yyr3895 || yy2arr3895 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49259,25 +48960,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3925 := z.DecBinary() - _ = yym3925 + yym3899 := z.DecBinary() + _ = yym3899 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3926 := r.ContainerType() - if yyct3926 == codecSelferValueTypeMap1234 { - yyl3926 := r.ReadMapStart() - if yyl3926 == 0 { + yyct3900 := r.ContainerType() + if yyct3900 == codecSelferValueTypeMap1234 { + yyl3900 := r.ReadMapStart() + if yyl3900 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3926, d) + x.codecDecodeSelfFromMap(yyl3900, d) } - } else if yyct3926 == codecSelferValueTypeArray1234 { - yyl3926 := r.ReadArrayStart() - if yyl3926 == 0 { + } else if yyct3900 == codecSelferValueTypeArray1234 { + yyl3900 := r.ReadArrayStart() + if yyl3900 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3926, d) + x.codecDecodeSelfFromArray(yyl3900, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49289,12 +48990,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3927Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3927Slc - var yyhl3927 bool = l >= 0 - for yyj3927 := 0; ; yyj3927++ { - if yyhl3927 { - if yyj3927 >= l { + var yys3901Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3901Slc + var yyhl3901 bool = l >= 0 + for yyj3901 := 0; ; yyj3901++ { + if yyhl3901 { + if yyj3901 >= l { break } } else { @@ -49303,10 +49004,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3927Slc = r.DecodeBytes(yys3927Slc, true, true) - yys3927 := string(yys3927Slc) + yys3901Slc = r.DecodeBytes(yys3901Slc, true, true) + yys3901 := string(yys3901Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3927 { + switch yys3901 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -49314,9 +49015,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3927) - } // end switch yys3927 - } // end for yyj3927 + z.DecStructFieldNotFound(-1, yys3901) + } // end switch yys3901 + } // end for yyj3901 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49324,16 +49025,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3929 int - var yyb3929 bool - var yyhl3929 bool = l >= 0 - yyj3929++ - if yyhl3929 { - yyb3929 = yyj3929 > l + var yyj3903 int + var yyb3903 bool + var yyhl3903 bool = l >= 0 + yyj3903++ + if yyhl3903 { + yyb3903 = yyj3903 > l } else { - yyb3929 = r.CheckBreak() + yyb3903 = r.CheckBreak() } - if yyb3929 { + if yyb3903 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49344,17 +49045,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj3929++ - if yyhl3929 { - yyb3929 = yyj3929 > l + yyj3903++ + if yyhl3903 { + yyb3903 = yyj3903 > l } else { - yyb3929 = r.CheckBreak() + yyb3903 = r.CheckBreak() } - if yyb3929 { + if yyb3903 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3929-1, "") + z.DecStructFieldNotFound(yyj3903-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49366,37 +49067,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3931 := z.EncBinary() - _ = yym3931 + yym3905 := z.EncBinary() + _ = yym3905 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3932 := !z.EncBinary() - yy2arr3932 := z.EncBasicHandle().StructToArray - var yyq3932 [3]bool - _, _, _ = yysep3932, yyq3932, yy2arr3932 - const yyr3932 bool = false - yyq3932[0] = x.Kind != "" - yyq3932[1] = x.APIVersion != "" - yyq3932[2] = true - var yynn3932 int - if yyr3932 || yy2arr3932 { + yysep3906 := !z.EncBinary() + yy2arr3906 := z.EncBasicHandle().StructToArray + var yyq3906 [3]bool + _, _, _ = yysep3906, yyq3906, yy2arr3906 + const yyr3906 bool = false + yyq3906[0] = x.Kind != "" + yyq3906[1] = x.APIVersion != "" + yyq3906[2] = true + var yynn3906 int + if yyr3906 || yy2arr3906 { r.EncodeArrayStart(3) } else { - yynn3932 = 0 - for _, b := range yyq3932 { + yynn3906 = 0 + for _, b := range yyq3906 { if b { - yynn3932++ + yynn3906++ } } - r.EncodeMapStart(yynn3932) - yynn3932 = 0 + r.EncodeMapStart(yynn3906) + yynn3906 = 0 } - if yyr3932 || yy2arr3932 { + if yyr3906 || yy2arr3906 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3932[0] { - yym3934 := z.EncBinary() - _ = yym3934 + if yyq3906[0] { + yym3908 := z.EncBinary() + _ = yym3908 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49405,23 +49106,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3932[0] { + if yyq3906[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3935 := z.EncBinary() - _ = yym3935 + yym3909 := z.EncBinary() + _ = yym3909 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3932 || yy2arr3932 { + if yyr3906 || yy2arr3906 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3932[1] { - yym3937 := z.EncBinary() - _ = yym3937 + if yyq3906[1] { + yym3911 := z.EncBinary() + _ = yym3911 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49430,36 +49131,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3932[1] { + if yyq3906[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3938 := z.EncBinary() - _ = yym3938 + yym3912 := z.EncBinary() + _ = yym3912 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3932 || yy2arr3932 { + if yyr3906 || yy2arr3906 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3932[2] { - yy3940 := &x.Reference - yy3940.CodecEncodeSelf(e) + if yyq3906[2] { + yy3914 := &x.Reference + yy3914.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3932[2] { + if yyq3906[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3941 := &x.Reference - yy3941.CodecEncodeSelf(e) + yy3915 := &x.Reference + yy3915.CodecEncodeSelf(e) } } - if yyr3932 || yy2arr3932 { + if yyr3906 || yy2arr3906 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49472,25 +49173,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3942 := z.DecBinary() - _ = yym3942 + yym3916 := z.DecBinary() + _ = yym3916 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3943 := r.ContainerType() - if yyct3943 == codecSelferValueTypeMap1234 { - yyl3943 := r.ReadMapStart() - if yyl3943 == 0 { + yyct3917 := r.ContainerType() + if yyct3917 == codecSelferValueTypeMap1234 { + yyl3917 := r.ReadMapStart() + if yyl3917 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3943, d) + x.codecDecodeSelfFromMap(yyl3917, d) } - } else if yyct3943 == codecSelferValueTypeArray1234 { - yyl3943 := r.ReadArrayStart() - if yyl3943 == 0 { + } else if yyct3917 == codecSelferValueTypeArray1234 { + yyl3917 := r.ReadArrayStart() + if yyl3917 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3943, d) + x.codecDecodeSelfFromArray(yyl3917, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49502,12 +49203,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3944Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3944Slc - var yyhl3944 bool = l >= 0 - for yyj3944 := 0; ; yyj3944++ { - if yyhl3944 { - if yyj3944 >= l { + var yys3918Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3918Slc + var yyhl3918 bool = l >= 0 + for yyj3918 := 0; ; yyj3918++ { + if yyhl3918 { + if yyj3918 >= l { break } } else { @@ -49516,10 +49217,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3944Slc = r.DecodeBytes(yys3944Slc, true, true) - yys3944 := string(yys3944Slc) + yys3918Slc = r.DecodeBytes(yys3918Slc, true, true) + yys3918 := string(yys3918Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3944 { + switch yys3918 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49536,13 +49237,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3947 := &x.Reference - yyv3947.CodecDecodeSelf(d) + yyv3921 := &x.Reference + yyv3921.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3944) - } // end switch yys3944 - } // end for yyj3944 + z.DecStructFieldNotFound(-1, yys3918) + } // end switch yys3918 + } // end for yyj3918 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49550,16 +49251,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3948 int - var yyb3948 bool - var yyhl3948 bool = l >= 0 - yyj3948++ - if yyhl3948 { - yyb3948 = yyj3948 > l + var yyj3922 int + var yyb3922 bool + var yyhl3922 bool = l >= 0 + yyj3922++ + if yyhl3922 { + yyb3922 = yyj3922 > l } else { - yyb3948 = r.CheckBreak() + yyb3922 = r.CheckBreak() } - if yyb3948 { + if yyb3922 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49569,13 +49270,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3948++ - if yyhl3948 { - yyb3948 = yyj3948 > l + yyj3922++ + if yyhl3922 { + yyb3922 = yyj3922 > l } else { - yyb3948 = r.CheckBreak() + yyb3922 = r.CheckBreak() } - if yyb3948 { + if yyb3922 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49585,13 +49286,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3948++ - if yyhl3948 { - yyb3948 = yyj3948 > l + yyj3922++ + if yyhl3922 { + yyb3922 = yyj3922 > l } else { - yyb3948 = r.CheckBreak() + yyb3922 = r.CheckBreak() } - if yyb3948 { + if yyb3922 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49599,21 +49300,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3951 := &x.Reference - yyv3951.CodecDecodeSelf(d) + yyv3925 := &x.Reference + yyv3925.CodecDecodeSelf(d) } for { - yyj3948++ - if yyhl3948 { - yyb3948 = yyj3948 > l + yyj3922++ + if yyhl3922 { + yyb3922 = yyj3922 > l } else { - yyb3948 = r.CheckBreak() + yyb3922 = r.CheckBreak() } - if yyb3948 { + if yyb3922 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3948-1, "") + z.DecStructFieldNotFound(yyj3922-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49625,36 +49326,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3952 := z.EncBinary() - _ = yym3952 + yym3926 := z.EncBinary() + _ = yym3926 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3953 := !z.EncBinary() - yy2arr3953 := z.EncBasicHandle().StructToArray - var yyq3953 [2]bool - _, _, _ = yysep3953, yyq3953, yy2arr3953 - const yyr3953 bool = false - yyq3953[0] = x.Component != "" - yyq3953[1] = x.Host != "" - var yynn3953 int - if yyr3953 || yy2arr3953 { + yysep3927 := !z.EncBinary() + yy2arr3927 := z.EncBasicHandle().StructToArray + var yyq3927 [2]bool + _, _, _ = yysep3927, yyq3927, yy2arr3927 + const yyr3927 bool = false + yyq3927[0] = x.Component != "" + yyq3927[1] = x.Host != "" + var yynn3927 int + if yyr3927 || yy2arr3927 { r.EncodeArrayStart(2) } else { - yynn3953 = 0 - for _, b := range yyq3953 { + yynn3927 = 0 + for _, b := range yyq3927 { if b { - yynn3953++ + yynn3927++ } } - r.EncodeMapStart(yynn3953) - yynn3953 = 0 + r.EncodeMapStart(yynn3927) + yynn3927 = 0 } - if yyr3953 || yy2arr3953 { + if yyr3927 || yy2arr3927 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3953[0] { - yym3955 := z.EncBinary() - _ = yym3955 + if yyq3927[0] { + yym3929 := z.EncBinary() + _ = yym3929 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -49663,23 +49364,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3953[0] { + if yyq3927[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3956 := z.EncBinary() - _ = yym3956 + yym3930 := z.EncBinary() + _ = yym3930 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr3953 || yy2arr3953 { + if yyr3927 || yy2arr3927 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3953[1] { - yym3958 := z.EncBinary() - _ = yym3958 + if yyq3927[1] { + yym3932 := z.EncBinary() + _ = yym3932 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -49688,19 +49389,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3953[1] { + if yyq3927[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3959 := z.EncBinary() - _ = yym3959 + yym3933 := z.EncBinary() + _ = yym3933 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3953 || yy2arr3953 { + if yyr3927 || yy2arr3927 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49713,25 +49414,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3960 := z.DecBinary() - _ = yym3960 + yym3934 := z.DecBinary() + _ = yym3934 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3961 := r.ContainerType() - if yyct3961 == codecSelferValueTypeMap1234 { - yyl3961 := r.ReadMapStart() - if yyl3961 == 0 { + yyct3935 := r.ContainerType() + if yyct3935 == codecSelferValueTypeMap1234 { + yyl3935 := r.ReadMapStart() + if yyl3935 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3961, d) + x.codecDecodeSelfFromMap(yyl3935, d) } - } else if yyct3961 == codecSelferValueTypeArray1234 { - yyl3961 := r.ReadArrayStart() - if yyl3961 == 0 { + } else if yyct3935 == codecSelferValueTypeArray1234 { + yyl3935 := r.ReadArrayStart() + if yyl3935 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3961, d) + x.codecDecodeSelfFromArray(yyl3935, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49743,12 +49444,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3962Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3962Slc - var yyhl3962 bool = l >= 0 - for yyj3962 := 0; ; yyj3962++ { - if yyhl3962 { - if yyj3962 >= l { + var yys3936Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3936Slc + var yyhl3936 bool = l >= 0 + for yyj3936 := 0; ; yyj3936++ { + if yyhl3936 { + if yyj3936 >= l { break } } else { @@ -49757,10 +49458,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3962Slc = r.DecodeBytes(yys3962Slc, true, true) - yys3962 := string(yys3962Slc) + yys3936Slc = r.DecodeBytes(yys3936Slc, true, true) + yys3936 := string(yys3936Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3962 { + switch yys3936 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -49774,9 +49475,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3962) - } // end switch yys3962 - } // end for yyj3962 + z.DecStructFieldNotFound(-1, yys3936) + } // end switch yys3936 + } // end for yyj3936 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49784,16 +49485,16 @@ func (x *EventSource) 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 yyj3939 int + var yyb3939 bool + var yyhl3939 bool = l >= 0 + yyj3939++ + if yyhl3939 { + yyb3939 = yyj3939 > l } else { - yyb3965 = r.CheckBreak() + yyb3939 = r.CheckBreak() } - if yyb3965 { + if yyb3939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49803,13 +49504,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3965++ - if yyhl3965 { - yyb3965 = yyj3965 > l + yyj3939++ + if yyhl3939 { + yyb3939 = yyj3939 > l } else { - yyb3965 = r.CheckBreak() + yyb3939 = r.CheckBreak() } - if yyb3965 { + if yyb3939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49820,17 +49521,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3965++ - if yyhl3965 { - yyb3965 = yyj3965 > l + yyj3939++ + if yyhl3939 { + yyb3939 = yyj3939 > l } else { - yyb3965 = r.CheckBreak() + yyb3939 = r.CheckBreak() } - if yyb3965 { + if yyb3939 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3965-1, "") + z.DecStructFieldNotFound(yyj3939-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49842,45 +49543,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3968 := z.EncBinary() - _ = yym3968 + yym3942 := z.EncBinary() + _ = yym3942 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3969 := !z.EncBinary() - yy2arr3969 := z.EncBasicHandle().StructToArray - var yyq3969 [11]bool - _, _, _ = yysep3969, yyq3969, yy2arr3969 - const yyr3969 bool = false - yyq3969[0] = x.Kind != "" - yyq3969[1] = x.APIVersion != "" - yyq3969[2] = true - yyq3969[3] = true - yyq3969[4] = x.Reason != "" - yyq3969[5] = x.Message != "" - yyq3969[6] = true - yyq3969[7] = true - yyq3969[8] = true - yyq3969[9] = x.Count != 0 - yyq3969[10] = x.Type != "" - var yynn3969 int - if yyr3969 || yy2arr3969 { + yysep3943 := !z.EncBinary() + yy2arr3943 := z.EncBasicHandle().StructToArray + var yyq3943 [11]bool + _, _, _ = yysep3943, yyq3943, yy2arr3943 + const yyr3943 bool = false + yyq3943[0] = x.Kind != "" + yyq3943[1] = x.APIVersion != "" + yyq3943[2] = true + yyq3943[3] = true + yyq3943[4] = x.Reason != "" + yyq3943[5] = x.Message != "" + yyq3943[6] = true + yyq3943[7] = true + yyq3943[8] = true + yyq3943[9] = x.Count != 0 + yyq3943[10] = x.Type != "" + var yynn3943 int + if yyr3943 || yy2arr3943 { r.EncodeArrayStart(11) } else { - yynn3969 = 0 - for _, b := range yyq3969 { + yynn3943 = 0 + for _, b := range yyq3943 { if b { - yynn3969++ + yynn3943++ } } - r.EncodeMapStart(yynn3969) - yynn3969 = 0 + r.EncodeMapStart(yynn3943) + yynn3943 = 0 } - if yyr3969 || yy2arr3969 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3969[0] { - yym3971 := z.EncBinary() - _ = yym3971 + if yyq3943[0] { + yym3945 := z.EncBinary() + _ = yym3945 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49889,23 +49590,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3969[0] { + if yyq3943[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3972 := z.EncBinary() - _ = yym3972 + yym3946 := z.EncBinary() + _ = yym3946 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3969 || yy2arr3969 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3969[1] { - yym3974 := z.EncBinary() - _ = yym3974 + if yyq3943[1] { + yym3948 := z.EncBinary() + _ = yym3948 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49914,57 +49615,57 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3969[1] { + if yyq3943[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3975 := z.EncBinary() - _ = yym3975 + yym3949 := z.EncBinary() + _ = yym3949 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3969 || yy2arr3969 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3969[2] { - yy3977 := &x.ObjectMeta - yy3977.CodecEncodeSelf(e) + if yyq3943[2] { + yy3951 := &x.ObjectMeta + yy3951.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3969[2] { + if yyq3943[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3978 := &x.ObjectMeta - yy3978.CodecEncodeSelf(e) + yy3952 := &x.ObjectMeta + yy3952.CodecEncodeSelf(e) } } - if yyr3969 || yy2arr3969 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3969[3] { - yy3980 := &x.InvolvedObject - yy3980.CodecEncodeSelf(e) + if yyq3943[3] { + yy3954 := &x.InvolvedObject + yy3954.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3969[3] { + if yyq3943[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3981 := &x.InvolvedObject - yy3981.CodecEncodeSelf(e) + yy3955 := &x.InvolvedObject + yy3955.CodecEncodeSelf(e) } } - if yyr3969 || yy2arr3969 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3969[4] { - yym3983 := z.EncBinary() - _ = yym3983 + if yyq3943[4] { + yym3957 := z.EncBinary() + _ = yym3957 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -49973,23 +49674,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3969[4] { + if yyq3943[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3984 := z.EncBinary() - _ = yym3984 + yym3958 := z.EncBinary() + _ = yym3958 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3969 || yy2arr3969 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3969[5] { - yym3986 := z.EncBinary() - _ = yym3986 + if yyq3943[5] { + yym3960 := z.EncBinary() + _ = yym3960 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -49998,114 +49699,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3969[5] { + if yyq3943[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3987 := z.EncBinary() - _ = yym3987 + yym3961 := z.EncBinary() + _ = yym3961 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3969 || yy2arr3969 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3969[6] { - yy3989 := &x.Source - yy3989.CodecEncodeSelf(e) + if yyq3943[6] { + yy3963 := &x.Source + yy3963.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3969[6] { + if yyq3943[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3990 := &x.Source - yy3990.CodecEncodeSelf(e) + yy3964 := &x.Source + yy3964.CodecEncodeSelf(e) } } - if yyr3969 || yy2arr3969 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3969[7] { - yy3992 := &x.FirstTimestamp - yym3993 := z.EncBinary() - _ = yym3993 + if yyq3943[7] { + yy3966 := &x.FirstTimestamp + yym3967 := z.EncBinary() + _ = yym3967 if false { - } else if z.HasExtensions() && z.EncExt(yy3992) { - } else if yym3993 { - z.EncBinaryMarshal(yy3992) - } else if !yym3993 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3992) + } else if z.HasExtensions() && z.EncExt(yy3966) { + } else if yym3967 { + z.EncBinaryMarshal(yy3966) + } else if !yym3967 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3966) } else { - z.EncFallback(yy3992) + z.EncFallback(yy3966) } } else { r.EncodeNil() } } else { - if yyq3969[7] { + if yyq3943[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3994 := &x.FirstTimestamp - yym3995 := z.EncBinary() - _ = yym3995 + yy3968 := &x.FirstTimestamp + yym3969 := z.EncBinary() + _ = yym3969 if false { - } else if z.HasExtensions() && z.EncExt(yy3994) { - } else if yym3995 { - z.EncBinaryMarshal(yy3994) - } else if !yym3995 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3994) + } else if z.HasExtensions() && z.EncExt(yy3968) { + } else if yym3969 { + z.EncBinaryMarshal(yy3968) + } else if !yym3969 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3968) } else { - z.EncFallback(yy3994) + z.EncFallback(yy3968) } } } - if yyr3969 || yy2arr3969 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3969[8] { - yy3997 := &x.LastTimestamp - yym3998 := z.EncBinary() - _ = yym3998 + if yyq3943[8] { + yy3971 := &x.LastTimestamp + yym3972 := z.EncBinary() + _ = yym3972 if false { - } else if z.HasExtensions() && z.EncExt(yy3997) { - } else if yym3998 { - z.EncBinaryMarshal(yy3997) - } else if !yym3998 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3997) + } else if z.HasExtensions() && z.EncExt(yy3971) { + } else if yym3972 { + z.EncBinaryMarshal(yy3971) + } else if !yym3972 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3971) } else { - z.EncFallback(yy3997) + z.EncFallback(yy3971) } } else { r.EncodeNil() } } else { - if yyq3969[8] { + if yyq3943[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3999 := &x.LastTimestamp - yym4000 := z.EncBinary() - _ = yym4000 + yy3973 := &x.LastTimestamp + yym3974 := z.EncBinary() + _ = yym3974 if false { - } else if z.HasExtensions() && z.EncExt(yy3999) { - } else if yym4000 { - z.EncBinaryMarshal(yy3999) - } else if !yym4000 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3999) + } else if z.HasExtensions() && z.EncExt(yy3973) { + } else if yym3974 { + z.EncBinaryMarshal(yy3973) + } else if !yym3974 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3973) } else { - z.EncFallback(yy3999) + z.EncFallback(yy3973) } } } - if yyr3969 || yy2arr3969 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3969[9] { - yym4002 := z.EncBinary() - _ = yym4002 + if yyq3943[9] { + yym3976 := z.EncBinary() + _ = yym3976 if false { } else { r.EncodeInt(int64(x.Count)) @@ -50114,23 +49815,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3969[9] { + if yyq3943[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4003 := z.EncBinary() - _ = yym4003 + yym3977 := z.EncBinary() + _ = yym3977 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3969 || yy2arr3969 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3969[10] { - yym4005 := z.EncBinary() - _ = yym4005 + if yyq3943[10] { + yym3979 := z.EncBinary() + _ = yym3979 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -50139,19 +49840,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3969[10] { + if yyq3943[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4006 := z.EncBinary() - _ = yym4006 + yym3980 := z.EncBinary() + _ = yym3980 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3969 || yy2arr3969 { + if yyr3943 || yy2arr3943 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50164,25 +49865,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4007 := z.DecBinary() - _ = yym4007 + yym3981 := z.DecBinary() + _ = yym3981 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4008 := r.ContainerType() - if yyct4008 == codecSelferValueTypeMap1234 { - yyl4008 := r.ReadMapStart() - if yyl4008 == 0 { + yyct3982 := r.ContainerType() + if yyct3982 == codecSelferValueTypeMap1234 { + yyl3982 := r.ReadMapStart() + if yyl3982 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4008, d) + x.codecDecodeSelfFromMap(yyl3982, d) } - } else if yyct4008 == codecSelferValueTypeArray1234 { - yyl4008 := r.ReadArrayStart() - if yyl4008 == 0 { + } else if yyct3982 == codecSelferValueTypeArray1234 { + yyl3982 := r.ReadArrayStart() + if yyl3982 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4008, d) + x.codecDecodeSelfFromArray(yyl3982, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50194,12 +49895,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4009Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4009Slc - var yyhl4009 bool = l >= 0 - for yyj4009 := 0; ; yyj4009++ { - if yyhl4009 { - if yyj4009 >= l { + var yys3983Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3983Slc + var yyhl3983 bool = l >= 0 + for yyj3983 := 0; ; yyj3983++ { + if yyhl3983 { + if yyj3983 >= l { break } } else { @@ -50208,10 +49909,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4009Slc = r.DecodeBytes(yys4009Slc, true, true) - yys4009 := string(yys4009Slc) + yys3983Slc = r.DecodeBytes(yys3983Slc, true, true) + yys3983 := string(yys3983Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4009 { + switch yys3983 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50228,15 +49929,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4012 := &x.ObjectMeta - yyv4012.CodecDecodeSelf(d) + yyv3986 := &x.ObjectMeta + yyv3986.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv4013 := &x.InvolvedObject - yyv4013.CodecDecodeSelf(d) + yyv3987 := &x.InvolvedObject + yyv3987.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -50254,41 +49955,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv4016 := &x.Source - yyv4016.CodecDecodeSelf(d) + yyv3990 := &x.Source + yyv3990.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv4017 := &x.FirstTimestamp - yym4018 := z.DecBinary() - _ = yym4018 + yyv3991 := &x.FirstTimestamp + yym3992 := z.DecBinary() + _ = yym3992 if false { - } else if z.HasExtensions() && z.DecExt(yyv4017) { - } else if yym4018 { - z.DecBinaryUnmarshal(yyv4017) - } else if !yym4018 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4017) + } else if z.HasExtensions() && z.DecExt(yyv3991) { + } else if yym3992 { + z.DecBinaryUnmarshal(yyv3991) + } else if !yym3992 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3991) } else { - z.DecFallback(yyv4017, false) + z.DecFallback(yyv3991, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv4019 := &x.LastTimestamp - yym4020 := z.DecBinary() - _ = yym4020 + yyv3993 := &x.LastTimestamp + yym3994 := z.DecBinary() + _ = yym3994 if false { - } else if z.HasExtensions() && z.DecExt(yyv4019) { - } else if yym4020 { - z.DecBinaryUnmarshal(yyv4019) - } else if !yym4020 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4019) + } else if z.HasExtensions() && z.DecExt(yyv3993) { + } else if yym3994 { + z.DecBinaryUnmarshal(yyv3993) + } else if !yym3994 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3993) } else { - z.DecFallback(yyv4019, false) + z.DecFallback(yyv3993, false) } } case "count": @@ -50304,9 +50005,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4009) - } // end switch yys4009 - } // end for yyj4009 + z.DecStructFieldNotFound(-1, yys3983) + } // end switch yys3983 + } // end for yyj3983 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50314,16 +50015,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4023 int - var yyb4023 bool - var yyhl4023 bool = l >= 0 - yyj4023++ - if yyhl4023 { - yyb4023 = yyj4023 > l + var yyj3997 int + var yyb3997 bool + var yyhl3997 bool = l >= 0 + yyj3997++ + if yyhl3997 { + yyb3997 = yyj3997 > l } else { - yyb4023 = r.CheckBreak() + yyb3997 = r.CheckBreak() } - if yyb4023 { + if yyb3997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50333,13 +50034,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4023++ - if yyhl4023 { - yyb4023 = yyj4023 > l + yyj3997++ + if yyhl3997 { + yyb3997 = yyj3997 > l } else { - yyb4023 = r.CheckBreak() + yyb3997 = r.CheckBreak() } - if yyb4023 { + if yyb3997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50349,13 +50050,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4023++ - if yyhl4023 { - yyb4023 = yyj4023 > l + yyj3997++ + if yyhl3997 { + yyb3997 = yyj3997 > l } else { - yyb4023 = r.CheckBreak() + yyb3997 = r.CheckBreak() } - if yyb4023 { + if yyb3997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50363,16 +50064,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4026 := &x.ObjectMeta - yyv4026.CodecDecodeSelf(d) + yyv4000 := &x.ObjectMeta + yyv4000.CodecDecodeSelf(d) } - yyj4023++ - if yyhl4023 { - yyb4023 = yyj4023 > l + yyj3997++ + if yyhl3997 { + yyb3997 = yyj3997 > l } else { - yyb4023 = r.CheckBreak() + yyb3997 = r.CheckBreak() } - if yyb4023 { + if yyb3997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50380,16 +50081,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv4027 := &x.InvolvedObject - yyv4027.CodecDecodeSelf(d) + yyv4001 := &x.InvolvedObject + yyv4001.CodecDecodeSelf(d) } - yyj4023++ - if yyhl4023 { - yyb4023 = yyj4023 > l + yyj3997++ + if yyhl3997 { + yyb3997 = yyj3997 > l } else { - yyb4023 = r.CheckBreak() + yyb3997 = r.CheckBreak() } - if yyb4023 { + if yyb3997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50399,13 +50100,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj4023++ - if yyhl4023 { - yyb4023 = yyj4023 > l + yyj3997++ + if yyhl3997 { + yyb3997 = yyj3997 > l } else { - yyb4023 = r.CheckBreak() + yyb3997 = r.CheckBreak() } - if yyb4023 { + if yyb3997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50415,13 +50116,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj4023++ - if yyhl4023 { - yyb4023 = yyj4023 > l + yyj3997++ + if yyhl3997 { + yyb3997 = yyj3997 > l } else { - yyb4023 = r.CheckBreak() + yyb3997 = r.CheckBreak() } - if yyb4023 { + if yyb3997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50429,16 +50130,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv4030 := &x.Source - yyv4030.CodecDecodeSelf(d) + yyv4004 := &x.Source + yyv4004.CodecDecodeSelf(d) } - yyj4023++ - if yyhl4023 { - yyb4023 = yyj4023 > l + yyj3997++ + if yyhl3997 { + yyb3997 = yyj3997 > l } else { - yyb4023 = r.CheckBreak() + yyb3997 = r.CheckBreak() } - if yyb4023 { + if yyb3997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50446,26 +50147,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv4031 := &x.FirstTimestamp - yym4032 := z.DecBinary() - _ = yym4032 + yyv4005 := &x.FirstTimestamp + yym4006 := z.DecBinary() + _ = yym4006 if false { - } else if z.HasExtensions() && z.DecExt(yyv4031) { - } else if yym4032 { - z.DecBinaryUnmarshal(yyv4031) - } else if !yym4032 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4031) + } else if z.HasExtensions() && z.DecExt(yyv4005) { + } else if yym4006 { + z.DecBinaryUnmarshal(yyv4005) + } else if !yym4006 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4005) } else { - z.DecFallback(yyv4031, false) + z.DecFallback(yyv4005, false) } } - yyj4023++ - if yyhl4023 { - yyb4023 = yyj4023 > l + yyj3997++ + if yyhl3997 { + yyb3997 = yyj3997 > l } else { - yyb4023 = r.CheckBreak() + yyb3997 = r.CheckBreak() } - if yyb4023 { + if yyb3997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50473,26 +50174,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv4033 := &x.LastTimestamp - yym4034 := z.DecBinary() - _ = yym4034 + yyv4007 := &x.LastTimestamp + yym4008 := z.DecBinary() + _ = yym4008 if false { - } else if z.HasExtensions() && z.DecExt(yyv4033) { - } else if yym4034 { - z.DecBinaryUnmarshal(yyv4033) - } else if !yym4034 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4033) + } else if z.HasExtensions() && z.DecExt(yyv4007) { + } else if yym4008 { + z.DecBinaryUnmarshal(yyv4007) + } else if !yym4008 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4007) } else { - z.DecFallback(yyv4033, false) + z.DecFallback(yyv4007, false) } } - yyj4023++ - if yyhl4023 { - yyb4023 = yyj4023 > l + yyj3997++ + if yyhl3997 { + yyb3997 = yyj3997 > l } else { - yyb4023 = r.CheckBreak() + yyb3997 = r.CheckBreak() } - if yyb4023 { + if yyb3997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50502,13 +50203,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj4023++ - if yyhl4023 { - yyb4023 = yyj4023 > l + yyj3997++ + if yyhl3997 { + yyb3997 = yyj3997 > l } else { - yyb4023 = r.CheckBreak() + yyb3997 = r.CheckBreak() } - if yyb4023 { + if yyb3997 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50519,17 +50220,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj4023++ - if yyhl4023 { - yyb4023 = yyj4023 > l + yyj3997++ + if yyhl3997 { + yyb3997 = yyj3997 > l } else { - yyb4023 = r.CheckBreak() + yyb3997 = r.CheckBreak() } - if yyb4023 { + if yyb3997 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4023-1, "") + z.DecStructFieldNotFound(yyj3997-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50541,37 +50242,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4037 := z.EncBinary() - _ = yym4037 + yym4011 := z.EncBinary() + _ = yym4011 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 { + 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 + var yynn4012 int + if yyr4012 || yy2arr4012 { r.EncodeArrayStart(4) } else { - yynn4038 = 1 - for _, b := range yyq4038 { + yynn4012 = 1 + for _, b := range yyq4012 { if b { - yynn4038++ + yynn4012++ } } - r.EncodeMapStart(yynn4038) - yynn4038 = 0 + r.EncodeMapStart(yynn4012) + yynn4012 = 0 } - if yyr4038 || yy2arr4038 { + if yyr4012 || yy2arr4012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4038[0] { - yym4040 := z.EncBinary() - _ = yym4040 + if yyq4012[0] { + yym4014 := z.EncBinary() + _ = yym4014 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50580,23 +50281,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4038[0] { + if yyq4012[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4041 := z.EncBinary() - _ = yym4041 + yym4015 := z.EncBinary() + _ = yym4015 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4038 || yy2arr4038 { + if yyr4012 || yy2arr4012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4038[1] { - yym4043 := z.EncBinary() - _ = yym4043 + if yyq4012[1] { + yym4017 := z.EncBinary() + _ = yym4017 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50605,54 +50306,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4038[1] { + if yyq4012[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4044 := z.EncBinary() - _ = yym4044 + yym4018 := z.EncBinary() + _ = yym4018 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4038 || yy2arr4038 { + if yyr4012 || yy2arr4012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4038[2] { - yy4046 := &x.ListMeta - yym4047 := z.EncBinary() - _ = yym4047 + if yyq4012[2] { + yy4020 := &x.ListMeta + yym4021 := z.EncBinary() + _ = yym4021 if false { - } else if z.HasExtensions() && z.EncExt(yy4046) { + } else if z.HasExtensions() && z.EncExt(yy4020) { } else { - z.EncFallback(yy4046) + z.EncFallback(yy4020) } } else { r.EncodeNil() } } else { - if yyq4038[2] { + if yyq4012[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4048 := &x.ListMeta - yym4049 := z.EncBinary() - _ = yym4049 + yy4022 := &x.ListMeta + yym4023 := z.EncBinary() + _ = yym4023 if false { - } else if z.HasExtensions() && z.EncExt(yy4048) { + } else if z.HasExtensions() && z.EncExt(yy4022) { } else { - z.EncFallback(yy4048) + z.EncFallback(yy4022) } } } - if yyr4038 || yy2arr4038 { + if yyr4012 || yy2arr4012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4051 := z.EncBinary() - _ = yym4051 + yym4025 := z.EncBinary() + _ = yym4025 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -50665,15 +50366,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4052 := z.EncBinary() - _ = yym4052 + yym4026 := z.EncBinary() + _ = yym4026 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr4038 || yy2arr4038 { + if yyr4012 || yy2arr4012 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50686,25 +50387,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4053 := z.DecBinary() - _ = yym4053 + yym4027 := z.DecBinary() + _ = yym4027 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4054 := r.ContainerType() - if yyct4054 == codecSelferValueTypeMap1234 { - yyl4054 := r.ReadMapStart() - if yyl4054 == 0 { + yyct4028 := r.ContainerType() + if yyct4028 == codecSelferValueTypeMap1234 { + yyl4028 := r.ReadMapStart() + if yyl4028 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4054, d) + x.codecDecodeSelfFromMap(yyl4028, d) } - } else if yyct4054 == codecSelferValueTypeArray1234 { - yyl4054 := r.ReadArrayStart() - if yyl4054 == 0 { + } else if yyct4028 == codecSelferValueTypeArray1234 { + yyl4028 := r.ReadArrayStart() + if yyl4028 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4054, d) + x.codecDecodeSelfFromArray(yyl4028, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50716,12 +50417,12 @@ func (x *EventList) 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 yys4029Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4029Slc + var yyhl4029 bool = l >= 0 + for yyj4029 := 0; ; yyj4029++ { + if yyhl4029 { + if yyj4029 >= l { break } } else { @@ -50730,10 +50431,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4055Slc = r.DecodeBytes(yys4055Slc, true, true) - yys4055 := string(yys4055Slc) + yys4029Slc = r.DecodeBytes(yys4029Slc, true, true) + yys4029 := string(yys4029Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4055 { + switch yys4029 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50750,31 +50451,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4058 := &x.ListMeta - yym4059 := z.DecBinary() - _ = yym4059 + yyv4032 := &x.ListMeta + yym4033 := z.DecBinary() + _ = yym4033 if false { - } else if z.HasExtensions() && z.DecExt(yyv4058) { + } else if z.HasExtensions() && z.DecExt(yyv4032) { } else { - z.DecFallback(yyv4058, false) + z.DecFallback(yyv4032, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4060 := &x.Items - yym4061 := z.DecBinary() - _ = yym4061 + yyv4034 := &x.Items + yym4035 := z.DecBinary() + _ = yym4035 if false { } else { - h.decSliceEvent((*[]Event)(yyv4060), d) + h.decSliceEvent((*[]Event)(yyv4034), d) } } default: - z.DecStructFieldNotFound(-1, yys4055) - } // end switch yys4055 - } // end for yyj4055 + z.DecStructFieldNotFound(-1, yys4029) + } // end switch yys4029 + } // end for yyj4029 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50782,16 +50483,16 @@ func (x *EventList) 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 yyj4036 int + var yyb4036 bool + var yyhl4036 bool = l >= 0 + yyj4036++ + if yyhl4036 { + yyb4036 = yyj4036 > l } else { - yyb4062 = r.CheckBreak() + yyb4036 = r.CheckBreak() } - if yyb4062 { + if yyb4036 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50801,13 +50502,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4062++ - if yyhl4062 { - yyb4062 = yyj4062 > l + yyj4036++ + if yyhl4036 { + yyb4036 = yyj4036 > l } else { - yyb4062 = r.CheckBreak() + yyb4036 = r.CheckBreak() } - if yyb4062 { + if yyb4036 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50817,13 +50518,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4062++ - if yyhl4062 { - yyb4062 = yyj4062 > l + yyj4036++ + if yyhl4036 { + yyb4036 = yyj4036 > l } else { - yyb4062 = r.CheckBreak() + yyb4036 = r.CheckBreak() } - if yyb4062 { + if yyb4036 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50831,22 +50532,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4065 := &x.ListMeta - yym4066 := z.DecBinary() - _ = yym4066 + yyv4039 := &x.ListMeta + yym4040 := z.DecBinary() + _ = yym4040 if false { - } else if z.HasExtensions() && z.DecExt(yyv4065) { + } else if z.HasExtensions() && z.DecExt(yyv4039) { } else { - z.DecFallback(yyv4065, false) + z.DecFallback(yyv4039, false) } } - yyj4062++ - if yyhl4062 { - yyb4062 = yyj4062 > l + yyj4036++ + if yyhl4036 { + yyb4036 = yyj4036 > l } else { - yyb4062 = r.CheckBreak() + yyb4036 = r.CheckBreak() } - if yyb4062 { + if yyb4036 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50854,26 +50555,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4067 := &x.Items - yym4068 := z.DecBinary() - _ = yym4068 + yyv4041 := &x.Items + yym4042 := z.DecBinary() + _ = yym4042 if false { } else { - h.decSliceEvent((*[]Event)(yyv4067), d) + h.decSliceEvent((*[]Event)(yyv4041), d) } } for { - yyj4062++ - if yyhl4062 { - yyb4062 = yyj4062 > l + yyj4036++ + if yyhl4036 { + yyb4036 = yyj4036 > l } else { - yyb4062 = r.CheckBreak() + yyb4036 = r.CheckBreak() } - if yyb4062 { + if yyb4036 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4062-1, "") + z.DecStructFieldNotFound(yyj4036-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50885,37 +50586,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4069 := z.EncBinary() - _ = yym4069 + yym4043 := z.EncBinary() + _ = yym4043 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4070 := !z.EncBinary() - yy2arr4070 := z.EncBasicHandle().StructToArray - var yyq4070 [4]bool - _, _, _ = yysep4070, yyq4070, yy2arr4070 - const yyr4070 bool = false - yyq4070[0] = x.Kind != "" - yyq4070[1] = x.APIVersion != "" - yyq4070[2] = true - var yynn4070 int - if yyr4070 || yy2arr4070 { + yysep4044 := !z.EncBinary() + yy2arr4044 := z.EncBasicHandle().StructToArray + var yyq4044 [4]bool + _, _, _ = yysep4044, yyq4044, yy2arr4044 + const yyr4044 bool = false + yyq4044[0] = x.Kind != "" + yyq4044[1] = x.APIVersion != "" + yyq4044[2] = true + var yynn4044 int + if yyr4044 || yy2arr4044 { r.EncodeArrayStart(4) } else { - yynn4070 = 1 - for _, b := range yyq4070 { + yynn4044 = 1 + for _, b := range yyq4044 { if b { - yynn4070++ + yynn4044++ } } - r.EncodeMapStart(yynn4070) - yynn4070 = 0 + r.EncodeMapStart(yynn4044) + yynn4044 = 0 } - if yyr4070 || yy2arr4070 { + if yyr4044 || yy2arr4044 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4070[0] { - yym4072 := z.EncBinary() - _ = yym4072 + if yyq4044[0] { + yym4046 := z.EncBinary() + _ = yym4046 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50924,23 +50625,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4070[0] { + if yyq4044[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4073 := z.EncBinary() - _ = yym4073 + yym4047 := z.EncBinary() + _ = yym4047 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4070 || yy2arr4070 { + if yyr4044 || yy2arr4044 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4070[1] { - yym4075 := z.EncBinary() - _ = yym4075 + if yyq4044[1] { + yym4049 := z.EncBinary() + _ = yym4049 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50949,54 +50650,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4070[1] { + if yyq4044[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4076 := z.EncBinary() - _ = yym4076 + yym4050 := z.EncBinary() + _ = yym4050 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4070 || yy2arr4070 { + if yyr4044 || yy2arr4044 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4070[2] { - yy4078 := &x.ListMeta - yym4079 := z.EncBinary() - _ = yym4079 + if yyq4044[2] { + yy4052 := &x.ListMeta + yym4053 := z.EncBinary() + _ = yym4053 if false { - } else if z.HasExtensions() && z.EncExt(yy4078) { + } else if z.HasExtensions() && z.EncExt(yy4052) { } else { - z.EncFallback(yy4078) + z.EncFallback(yy4052) } } else { r.EncodeNil() } } else { - if yyq4070[2] { + if yyq4044[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4080 := &x.ListMeta - yym4081 := z.EncBinary() - _ = yym4081 + yy4054 := &x.ListMeta + yym4055 := z.EncBinary() + _ = yym4055 if false { - } else if z.HasExtensions() && z.EncExt(yy4080) { + } else if z.HasExtensions() && z.EncExt(yy4054) { } else { - z.EncFallback(yy4080) + z.EncFallback(yy4054) } } } - if yyr4070 || yy2arr4070 { + if yyr4044 || yy2arr4044 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4083 := z.EncBinary() - _ = yym4083 + yym4057 := z.EncBinary() + _ = yym4057 if false { } else { h.encSliceruntime_Object(([]pkg7_runtime.Object)(x.Items), e) @@ -51009,15 +50710,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4084 := z.EncBinary() - _ = yym4084 + yym4058 := z.EncBinary() + _ = yym4058 if false { } else { h.encSliceruntime_Object(([]pkg7_runtime.Object)(x.Items), e) } } } - if yyr4070 || yy2arr4070 { + if yyr4044 || yy2arr4044 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51027,6 +50728,403 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { } func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4059 := z.DecBinary() + _ = yym4059 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct4060 := r.ContainerType() + if yyct4060 == codecSelferValueTypeMap1234 { + yyl4060 := r.ReadMapStart() + if yyl4060 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl4060, d) + } + } else if yyct4060 == codecSelferValueTypeArray1234 { + yyl4060 := r.ReadArrayStart() + if yyl4060 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl4060, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys4061Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4061Slc + var yyhl4061 bool = l >= 0 + for yyj4061 := 0; ; yyj4061++ { + if yyhl4061 { + if yyj4061 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys4061Slc = r.DecodeBytes(yys4061Slc, true, true) + yys4061 := string(yys4061Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys4061 { + 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 { + yyv4064 := &x.ListMeta + yym4065 := z.DecBinary() + _ = yym4065 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4064) { + } else { + z.DecFallback(yyv4064, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv4066 := &x.Items + yym4067 := z.DecBinary() + _ = yym4067 + if false { + } else { + h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv4066), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys4061) + } // end switch yys4061 + } // end for yyj4061 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4068 int + var yyb4068 bool + var yyhl4068 bool = l >= 0 + yyj4068++ + if yyhl4068 { + yyb4068 = yyj4068 > l + } else { + yyb4068 = r.CheckBreak() + } + if yyb4068 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj4068++ + if yyhl4068 { + yyb4068 = yyj4068 > l + } else { + yyb4068 = r.CheckBreak() + } + if yyb4068 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj4068++ + if yyhl4068 { + yyb4068 = yyj4068 > l + } else { + yyb4068 = r.CheckBreak() + } + if yyb4068 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv4071 := &x.ListMeta + yym4072 := z.DecBinary() + _ = yym4072 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4071) { + } else { + z.DecFallback(yyv4071, false) + } + } + yyj4068++ + if yyhl4068 { + yyb4068 = yyj4068 > l + } else { + yyb4068 = r.CheckBreak() + } + if yyb4068 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv4073 := &x.Items + yym4074 := z.DecBinary() + _ = yym4074 + if false { + } else { + h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv4073), d) + } + } + for { + yyj4068++ + if yyhl4068 { + yyb4068 = yyj4068 > l + } else { + yyb4068 = r.CheckBreak() + } + if yyb4068 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj4068-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym4075 := z.EncBinary() + _ = yym4075 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4076 := z.DecBinary() + _ = yym4076 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym4077 := z.EncBinary() + _ = yym4077 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep4078 := !z.EncBinary() + yy2arr4078 := z.EncBasicHandle().StructToArray + var yyq4078 [6]bool + _, _, _ = yysep4078, yyq4078, yy2arr4078 + const yyr4078 bool = false + yyq4078[0] = x.Type != "" + yyq4078[1] = len(x.Max) != 0 + yyq4078[2] = len(x.Min) != 0 + yyq4078[3] = len(x.Default) != 0 + yyq4078[4] = len(x.DefaultRequest) != 0 + yyq4078[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn4078 int + if yyr4078 || yy2arr4078 { + r.EncodeArrayStart(6) + } else { + yynn4078 = 0 + for _, b := range yyq4078 { + if b { + yynn4078++ + } + } + r.EncodeMapStart(yynn4078) + yynn4078 = 0 + } + if yyr4078 || yy2arr4078 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4078[0] { + x.Type.CodecEncodeSelf(e) + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4078[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("type")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Type.CodecEncodeSelf(e) + } + } + if yyr4078 || yy2arr4078 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4078[1] { + if x.Max == nil { + r.EncodeNil() + } else { + x.Max.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq4078[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("max")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Max == nil { + r.EncodeNil() + } else { + x.Max.CodecEncodeSelf(e) + } + } + } + if yyr4078 || yy2arr4078 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4078[2] { + if x.Min == nil { + r.EncodeNil() + } else { + x.Min.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq4078[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("min")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Min == nil { + r.EncodeNil() + } else { + x.Min.CodecEncodeSelf(e) + } + } + } + if yyr4078 || yy2arr4078 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4078[3] { + if x.Default == nil { + r.EncodeNil() + } else { + x.Default.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq4078[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("default")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Default == nil { + r.EncodeNil() + } else { + x.Default.CodecEncodeSelf(e) + } + } + } + if yyr4078 || yy2arr4078 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4078[4] { + if x.DefaultRequest == nil { + r.EncodeNil() + } else { + x.DefaultRequest.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq4078[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.DefaultRequest == nil { + r.EncodeNil() + } else { + x.DefaultRequest.CodecEncodeSelf(e) + } + } + } + if yyr4078 || yy2arr4078 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4078[5] { + if x.MaxLimitRequestRatio == nil { + r.EncodeNil() + } else { + x.MaxLimitRequestRatio.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq4078[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.MaxLimitRequestRatio == nil { + r.EncodeNil() + } else { + x.MaxLimitRequestRatio.CodecEncodeSelf(e) + } + } + } + if yyr4078 || yy2arr4078 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -51056,7 +51154,7 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -51078,42 +51176,46 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { yys4087 := string(yys4087Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys4087 { - case "kind": + case "type": if r.TryDecodeAsNil() { - x.Kind = "" + x.Type = "" } else { - x.Kind = string(r.DecodeString()) + x.Type = LimitType(r.DecodeString()) } - case "apiVersion": + case "max": if r.TryDecodeAsNil() { - x.APIVersion = "" + x.Max = nil } else { - x.APIVersion = string(r.DecodeString()) + yyv4089 := &x.Max + yyv4089.CodecDecodeSelf(d) } - case "metadata": + case "min": if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} + x.Min = nil } else { - yyv4090 := &x.ListMeta - yym4091 := z.DecBinary() - _ = yym4091 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4090) { - } else { - z.DecFallback(yyv4090, false) - } + yyv4090 := &x.Min + yyv4090.CodecDecodeSelf(d) } - case "items": + case "default": if r.TryDecodeAsNil() { - x.Items = nil + x.Default = nil } else { - yyv4092 := &x.Items - yym4093 := z.DecBinary() - _ = yym4093 - if false { - } else { - h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv4092), d) - } + yyv4091 := &x.Default + yyv4091.CodecDecodeSelf(d) + } + case "defaultRequest": + if r.TryDecodeAsNil() { + x.DefaultRequest = nil + } else { + yyv4092 := &x.DefaultRequest + yyv4092.CodecDecodeSelf(d) + } + case "maxLimitRequestRatio": + if r.TryDecodeAsNil() { + x.MaxLimitRequestRatio = nil + } else { + yyv4093 := &x.MaxLimitRequestRatio + yyv4093.CodecDecodeSelf(d) } default: z.DecStructFieldNotFound(-1, yys4087) @@ -51122,7 +51224,7 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -51141,9 +51243,9 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Kind = "" + x.Type = "" } else { - x.Kind = string(r.DecodeString()) + x.Type = LimitType(r.DecodeString()) } yyj4094++ if yyhl4094 { @@ -51157,9 +51259,10 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.APIVersion = "" + x.Max = nil } else { - x.APIVersion = string(r.DecodeString()) + yyv4096 := &x.Max + yyv4096.CodecDecodeSelf(d) } yyj4094++ if yyhl4094 { @@ -51173,16 +51276,10 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} + x.Min = nil } else { - yyv4097 := &x.ListMeta - yym4098 := z.DecBinary() - _ = yym4098 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4097) { - } else { - z.DecFallback(yyv4097, false) - } + yyv4097 := &x.Min + yyv4097.CodecDecodeSelf(d) } yyj4094++ if yyhl4094 { @@ -51196,15 +51293,44 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Items = nil + x.Default = nil } else { - yyv4099 := &x.Items - yym4100 := z.DecBinary() - _ = yym4100 - if false { - } else { - h.decSliceruntime_Object((*[]pkg7_runtime.Object)(yyv4099), d) - } + yyv4098 := &x.Default + yyv4098.CodecDecodeSelf(d) + } + yyj4094++ + if yyhl4094 { + yyb4094 = yyj4094 > l + } else { + yyb4094 = r.CheckBreak() + } + if yyb4094 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.DefaultRequest = nil + } else { + yyv4099 := &x.DefaultRequest + yyv4099.CodecDecodeSelf(d) + } + yyj4094++ + if yyhl4094 { + yyb4094 = yyj4094 > l + } else { + yyb4094 = r.CheckBreak() + } + if yyb4094 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.MaxLimitRequestRatio = nil + } else { + yyv4100 := &x.MaxLimitRequestRatio + yyv4100.CodecDecodeSelf(d) } for { yyj4094++ @@ -51222,431 +51348,6 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym4101 := z.EncBinary() - _ = yym4101 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4102 := z.DecBinary() - _ = yym4102 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym4103 := z.EncBinary() - _ = yym4103 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep4104 := !z.EncBinary() - yy2arr4104 := z.EncBasicHandle().StructToArray - var yyq4104 [6]bool - _, _, _ = yysep4104, yyq4104, yy2arr4104 - const yyr4104 bool = false - yyq4104[0] = x.Type != "" - yyq4104[1] = len(x.Max) != 0 - yyq4104[2] = len(x.Min) != 0 - yyq4104[3] = len(x.Default) != 0 - yyq4104[4] = len(x.DefaultRequest) != 0 - yyq4104[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn4104 int - if yyr4104 || yy2arr4104 { - r.EncodeArrayStart(6) - } else { - yynn4104 = 0 - for _, b := range yyq4104 { - if b { - yynn4104++ - } - } - r.EncodeMapStart(yynn4104) - yynn4104 = 0 - } - if yyr4104 || yy2arr4104 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4104[0] { - x.Type.CodecEncodeSelf(e) - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4104[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("type")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Type.CodecEncodeSelf(e) - } - } - if yyr4104 || yy2arr4104 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4104[1] { - if x.Max == nil { - r.EncodeNil() - } else { - x.Max.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq4104[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("max")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Max == nil { - r.EncodeNil() - } else { - x.Max.CodecEncodeSelf(e) - } - } - } - if yyr4104 || yy2arr4104 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4104[2] { - if x.Min == nil { - r.EncodeNil() - } else { - x.Min.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq4104[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("min")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Min == nil { - r.EncodeNil() - } else { - x.Min.CodecEncodeSelf(e) - } - } - } - if yyr4104 || yy2arr4104 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4104[3] { - if x.Default == nil { - r.EncodeNil() - } else { - x.Default.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq4104[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("default")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Default == nil { - r.EncodeNil() - } else { - x.Default.CodecEncodeSelf(e) - } - } - } - if yyr4104 || yy2arr4104 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4104[4] { - if x.DefaultRequest == nil { - r.EncodeNil() - } else { - x.DefaultRequest.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq4104[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.DefaultRequest == nil { - r.EncodeNil() - } else { - x.DefaultRequest.CodecEncodeSelf(e) - } - } - } - if yyr4104 || yy2arr4104 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4104[5] { - if x.MaxLimitRequestRatio == nil { - r.EncodeNil() - } else { - x.MaxLimitRequestRatio.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq4104[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.MaxLimitRequestRatio == nil { - r.EncodeNil() - } else { - x.MaxLimitRequestRatio.CodecEncodeSelf(e) - } - } - } - if yyr4104 || yy2arr4104 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4111 := z.DecBinary() - _ = yym4111 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct4112 := r.ContainerType() - if yyct4112 == codecSelferValueTypeMap1234 { - yyl4112 := r.ReadMapStart() - if yyl4112 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl4112, d) - } - } else if yyct4112 == codecSelferValueTypeArray1234 { - yyl4112 := r.ReadArrayStart() - if yyl4112 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl4112, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys4113Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4113Slc - var yyhl4113 bool = l >= 0 - for yyj4113 := 0; ; yyj4113++ { - if yyhl4113 { - if yyj4113 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4113Slc = r.DecodeBytes(yys4113Slc, true, true) - yys4113 := string(yys4113Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4113 { - case "type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = LimitType(r.DecodeString()) - } - case "max": - if r.TryDecodeAsNil() { - x.Max = nil - } else { - yyv4115 := &x.Max - yyv4115.CodecDecodeSelf(d) - } - case "min": - if r.TryDecodeAsNil() { - x.Min = nil - } else { - yyv4116 := &x.Min - yyv4116.CodecDecodeSelf(d) - } - case "default": - if r.TryDecodeAsNil() { - x.Default = nil - } else { - yyv4117 := &x.Default - yyv4117.CodecDecodeSelf(d) - } - case "defaultRequest": - if r.TryDecodeAsNil() { - x.DefaultRequest = nil - } else { - yyv4118 := &x.DefaultRequest - yyv4118.CodecDecodeSelf(d) - } - case "maxLimitRequestRatio": - if r.TryDecodeAsNil() { - x.MaxLimitRequestRatio = nil - } else { - yyv4119 := &x.MaxLimitRequestRatio - yyv4119.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys4113) - } // end switch yys4113 - } // end for yyj4113 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj4120 int - var yyb4120 bool - var yyhl4120 bool = l >= 0 - yyj4120++ - if yyhl4120 { - yyb4120 = yyj4120 > l - } else { - yyb4120 = r.CheckBreak() - } - if yyb4120 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = LimitType(r.DecodeString()) - } - yyj4120++ - if yyhl4120 { - yyb4120 = yyj4120 > l - } else { - yyb4120 = r.CheckBreak() - } - if yyb4120 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Max = nil - } else { - yyv4122 := &x.Max - yyv4122.CodecDecodeSelf(d) - } - yyj4120++ - if yyhl4120 { - yyb4120 = yyj4120 > l - } else { - yyb4120 = r.CheckBreak() - } - if yyb4120 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Min = nil - } else { - yyv4123 := &x.Min - yyv4123.CodecDecodeSelf(d) - } - yyj4120++ - if yyhl4120 { - yyb4120 = yyj4120 > l - } else { - yyb4120 = r.CheckBreak() - } - if yyb4120 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Default = nil - } else { - yyv4124 := &x.Default - yyv4124.CodecDecodeSelf(d) - } - yyj4120++ - if yyhl4120 { - yyb4120 = yyj4120 > l - } else { - yyb4120 = r.CheckBreak() - } - if yyb4120 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.DefaultRequest = nil - } else { - yyv4125 := &x.DefaultRequest - yyv4125.CodecDecodeSelf(d) - } - yyj4120++ - if yyhl4120 { - yyb4120 = yyj4120 > l - } else { - yyb4120 = r.CheckBreak() - } - if yyb4120 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.MaxLimitRequestRatio = nil - } else { - yyv4126 := &x.MaxLimitRequestRatio - yyv4126.CodecDecodeSelf(d) - } - for { - yyj4120++ - if yyhl4120 { - yyb4120 = yyj4120 > l - } else { - yyb4120 = r.CheckBreak() - } - if yyb4120 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4120-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -51654,36 +51355,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4127 := z.EncBinary() - _ = yym4127 + yym4101 := z.EncBinary() + _ = yym4101 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4128 := !z.EncBinary() - yy2arr4128 := z.EncBasicHandle().StructToArray - var yyq4128 [1]bool - _, _, _ = yysep4128, yyq4128, yy2arr4128 - const yyr4128 bool = false - var yynn4128 int - if yyr4128 || yy2arr4128 { + yysep4102 := !z.EncBinary() + yy2arr4102 := z.EncBasicHandle().StructToArray + var yyq4102 [1]bool + _, _, _ = yysep4102, yyq4102, yy2arr4102 + const yyr4102 bool = false + var yynn4102 int + if yyr4102 || yy2arr4102 { r.EncodeArrayStart(1) } else { - yynn4128 = 1 - for _, b := range yyq4128 { + yynn4102 = 1 + for _, b := range yyq4102 { if b { - yynn4128++ + yynn4102++ } } - r.EncodeMapStart(yynn4128) - yynn4128 = 0 + r.EncodeMapStart(yynn4102) + yynn4102 = 0 } - if yyr4128 || yy2arr4128 { + if yyr4102 || yy2arr4102 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym4130 := z.EncBinary() - _ = yym4130 + yym4104 := z.EncBinary() + _ = yym4104 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -51696,15 +51397,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym4131 := z.EncBinary() - _ = yym4131 + yym4105 := z.EncBinary() + _ = yym4105 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr4128 || yy2arr4128 { + if yyr4102 || yy2arr4102 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51717,25 +51418,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4132 := z.DecBinary() - _ = yym4132 + yym4106 := z.DecBinary() + _ = yym4106 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4133 := r.ContainerType() - if yyct4133 == codecSelferValueTypeMap1234 { - yyl4133 := r.ReadMapStart() - if yyl4133 == 0 { + yyct4107 := r.ContainerType() + if yyct4107 == codecSelferValueTypeMap1234 { + yyl4107 := r.ReadMapStart() + if yyl4107 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4133, d) + x.codecDecodeSelfFromMap(yyl4107, d) } - } else if yyct4133 == codecSelferValueTypeArray1234 { - yyl4133 := r.ReadArrayStart() - if yyl4133 == 0 { + } else if yyct4107 == codecSelferValueTypeArray1234 { + yyl4107 := r.ReadArrayStart() + if yyl4107 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4133, d) + x.codecDecodeSelfFromArray(yyl4107, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51747,12 +51448,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4134Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4134Slc - var yyhl4134 bool = l >= 0 - for yyj4134 := 0; ; yyj4134++ { - if yyhl4134 { - if yyj4134 >= l { + var yys4108Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4108Slc + var yyhl4108 bool = l >= 0 + for yyj4108 := 0; ; yyj4108++ { + if yyhl4108 { + if yyj4108 >= l { break } } else { @@ -51761,26 +51462,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4134Slc = r.DecodeBytes(yys4134Slc, true, true) - yys4134 := string(yys4134Slc) + yys4108Slc = r.DecodeBytes(yys4108Slc, true, true) + yys4108 := string(yys4108Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4134 { + switch yys4108 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv4135 := &x.Limits - yym4136 := z.DecBinary() - _ = yym4136 + yyv4109 := &x.Limits + yym4110 := z.DecBinary() + _ = yym4110 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4135), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4109), d) } } default: - z.DecStructFieldNotFound(-1, yys4134) - } // end switch yys4134 - } // end for yyj4134 + z.DecStructFieldNotFound(-1, yys4108) + } // end switch yys4108 + } // end for yyj4108 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51788,16 +51489,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4137 int - var yyb4137 bool - var yyhl4137 bool = l >= 0 - yyj4137++ - if yyhl4137 { - yyb4137 = yyj4137 > l + var yyj4111 int + var yyb4111 bool + var yyhl4111 bool = l >= 0 + yyj4111++ + if yyhl4111 { + yyb4111 = yyj4111 > l } else { - yyb4137 = r.CheckBreak() + yyb4111 = r.CheckBreak() } - if yyb4137 { + if yyb4111 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51805,31 +51506,332 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv4138 := &x.Limits - yym4139 := z.DecBinary() - _ = yym4139 + yyv4112 := &x.Limits + yym4113 := z.DecBinary() + _ = yym4113 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4138), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4112), d) } } for { - yyj4137++ - if yyhl4137 { - yyb4137 = yyj4137 > l + yyj4111++ + if yyhl4111 { + yyb4111 = yyj4111 > l } else { - yyb4137 = r.CheckBreak() + yyb4111 = r.CheckBreak() } - if yyb4137 { + if yyb4111 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4137-1, "") + z.DecStructFieldNotFound(yyj4111-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym4114 := z.EncBinary() + _ = yym4114 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep4115 := !z.EncBinary() + yy2arr4115 := z.EncBasicHandle().StructToArray + var yyq4115 [4]bool + _, _, _ = yysep4115, yyq4115, yy2arr4115 + const yyr4115 bool = false + yyq4115[0] = x.Kind != "" + yyq4115[1] = x.APIVersion != "" + yyq4115[2] = true + yyq4115[3] = true + var yynn4115 int + if yyr4115 || yy2arr4115 { + r.EncodeArrayStart(4) + } else { + yynn4115 = 0 + for _, b := range yyq4115 { + if b { + yynn4115++ + } + } + r.EncodeMapStart(yynn4115) + yynn4115 = 0 + } + if yyr4115 || yy2arr4115 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4115[0] { + yym4117 := z.EncBinary() + _ = yym4117 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4115[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4118 := z.EncBinary() + _ = yym4118 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4115 || yy2arr4115 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4115[1] { + yym4120 := z.EncBinary() + _ = yym4120 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4115[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4121 := z.EncBinary() + _ = yym4121 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr4115 || yy2arr4115 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4115[2] { + yy4123 := &x.ObjectMeta + yy4123.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq4115[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy4124 := &x.ObjectMeta + yy4124.CodecEncodeSelf(e) + } + } + if yyr4115 || yy2arr4115 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4115[3] { + yy4126 := &x.Spec + yy4126.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq4115[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("spec")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy4127 := &x.Spec + yy4127.CodecEncodeSelf(e) + } + } + if yyr4115 || yy2arr4115 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4128 := z.DecBinary() + _ = yym4128 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct4129 := r.ContainerType() + if yyct4129 == codecSelferValueTypeMap1234 { + yyl4129 := r.ReadMapStart() + if yyl4129 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl4129, d) + } + } else if yyct4129 == codecSelferValueTypeArray1234 { + yyl4129 := r.ReadArrayStart() + if yyl4129 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl4129, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys4130Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4130Slc + var yyhl4130 bool = l >= 0 + for yyj4130 := 0; ; yyj4130++ { + if yyhl4130 { + if yyj4130 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys4130Slc = r.DecodeBytes(yys4130Slc, true, true) + yys4130 := string(yys4130Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys4130 { + 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.ObjectMeta = ObjectMeta{} + } else { + yyv4133 := &x.ObjectMeta + yyv4133.CodecDecodeSelf(d) + } + case "spec": + if r.TryDecodeAsNil() { + x.Spec = LimitRangeSpec{} + } else { + yyv4134 := &x.Spec + yyv4134.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys4130) + } // end switch yys4130 + } // end for yyj4130 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4135 int + var yyb4135 bool + var yyhl4135 bool = l >= 0 + yyj4135++ + if yyhl4135 { + yyb4135 = yyj4135 > l + } else { + yyb4135 = r.CheckBreak() + } + if yyb4135 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj4135++ + if yyhl4135 { + yyb4135 = yyj4135 > l + } else { + yyb4135 = r.CheckBreak() + } + if yyb4135 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj4135++ + if yyhl4135 { + yyb4135 = yyj4135 > l + } else { + yyb4135 = r.CheckBreak() + } + if yyb4135 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv4138 := &x.ObjectMeta + yyv4138.CodecDecodeSelf(d) + } + yyj4135++ + if yyhl4135 { + yyb4135 = yyj4135 > l + } else { + yyb4135 = r.CheckBreak() + } + if yyb4135 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Spec = LimitRangeSpec{} + } else { + yyv4139 := &x.Spec + yyv4139.CodecDecodeSelf(d) + } + for { + yyj4135++ + if yyhl4135 { + yyb4135 = yyj4135 > l + } else { + yyb4135 = r.CheckBreak() + } + if yyb4135 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj4135-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -51849,12 +51851,11 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { yyq4141[0] = x.Kind != "" yyq4141[1] = x.APIVersion != "" yyq4141[2] = true - yyq4141[3] = true var yynn4141 int if yyr4141 || yy2arr4141 { r.EncodeArrayStart(4) } else { - yynn4141 = 0 + yynn4141 = 1 for _, b := range yyq4141 { if b { yynn4141++ @@ -51916,8 +51917,14 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if yyr4141 || yy2arr4141 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq4141[2] { - yy4149 := &x.ObjectMeta - yy4149.CodecEncodeSelf(e) + yy4149 := &x.ListMeta + yym4150 := z.EncBinary() + _ = yym4150 + if false { + } else if z.HasExtensions() && z.EncExt(yy4149) { + } else { + z.EncFallback(yy4149) + } } else { r.EncodeNil() } @@ -51926,329 +51933,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4150 := &x.ObjectMeta - yy4150.CodecEncodeSelf(e) + yy4151 := &x.ListMeta + yym4152 := z.EncBinary() + _ = yym4152 + if false { + } else if z.HasExtensions() && z.EncExt(yy4151) { + } else { + z.EncFallback(yy4151) + } } } if yyr4141 || yy2arr4141 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4141[3] { - yy4152 := &x.Spec - yy4152.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq4141[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4153 := &x.Spec - yy4153.CodecEncodeSelf(e) - } - } - if yyr4141 || yy2arr4141 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4154 := z.DecBinary() - _ = yym4154 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct4155 := r.ContainerType() - if yyct4155 == codecSelferValueTypeMap1234 { - yyl4155 := r.ReadMapStart() - if yyl4155 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl4155, d) - } - } else if yyct4155 == codecSelferValueTypeArray1234 { - yyl4155 := r.ReadArrayStart() - if yyl4155 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl4155, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys4156Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4156Slc - var yyhl4156 bool = l >= 0 - for yyj4156 := 0; ; yyj4156++ { - if yyhl4156 { - if yyj4156 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4156Slc = r.DecodeBytes(yys4156Slc, true, true) - yys4156 := string(yys4156Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4156 { - 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.ObjectMeta = ObjectMeta{} - } else { - yyv4159 := &x.ObjectMeta - yyv4159.CodecDecodeSelf(d) - } - case "spec": - if r.TryDecodeAsNil() { - x.Spec = LimitRangeSpec{} - } else { - yyv4160 := &x.Spec - yyv4160.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys4156) - } // end switch yys4156 - } // end for yyj4156 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj4161 int - var yyb4161 bool - var yyhl4161 bool = l >= 0 - yyj4161++ - if yyhl4161 { - yyb4161 = yyj4161 > l - } else { - yyb4161 = r.CheckBreak() - } - if yyb4161 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj4161++ - if yyhl4161 { - yyb4161 = yyj4161 > l - } else { - yyb4161 = r.CheckBreak() - } - if yyb4161 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj4161++ - if yyhl4161 { - yyb4161 = yyj4161 > l - } else { - yyb4161 = r.CheckBreak() - } - if yyb4161 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv4164 := &x.ObjectMeta - yyv4164.CodecDecodeSelf(d) - } - yyj4161++ - if yyhl4161 { - yyb4161 = yyj4161 > l - } else { - yyb4161 = r.CheckBreak() - } - if yyb4161 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Spec = LimitRangeSpec{} - } else { - yyv4165 := &x.Spec - yyv4165.CodecDecodeSelf(d) - } - for { - yyj4161++ - if yyhl4161 { - yyb4161 = yyj4161 > l - } else { - yyb4161 = r.CheckBreak() - } - if yyb4161 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4161-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym4166 := z.EncBinary() - _ = yym4166 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep4167 := !z.EncBinary() - yy2arr4167 := z.EncBasicHandle().StructToArray - var yyq4167 [4]bool - _, _, _ = yysep4167, yyq4167, yy2arr4167 - const yyr4167 bool = false - yyq4167[0] = x.Kind != "" - yyq4167[1] = x.APIVersion != "" - yyq4167[2] = true - var yynn4167 int - if yyr4167 || yy2arr4167 { - r.EncodeArrayStart(4) - } else { - yynn4167 = 1 - for _, b := range yyq4167 { - if b { - yynn4167++ - } - } - r.EncodeMapStart(yynn4167) - yynn4167 = 0 - } - if yyr4167 || yy2arr4167 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4167[0] { - yym4169 := z.EncBinary() - _ = yym4169 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4167[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4170 := z.EncBinary() - _ = yym4170 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4167 || yy2arr4167 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4167[1] { - yym4172 := z.EncBinary() - _ = yym4172 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4167[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4173 := z.EncBinary() - _ = yym4173 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr4167 || yy2arr4167 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4167[2] { - yy4175 := &x.ListMeta - yym4176 := z.EncBinary() - _ = yym4176 - if false { - } else if z.HasExtensions() && z.EncExt(yy4175) { - } else { - z.EncFallback(yy4175) - } - } else { - r.EncodeNil() - } - } else { - if yyq4167[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4177 := &x.ListMeta - yym4178 := z.EncBinary() - _ = yym4178 - if false { - } else if z.HasExtensions() && z.EncExt(yy4177) { - } else { - z.EncFallback(yy4177) - } - } - } - if yyr4167 || yy2arr4167 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4180 := z.EncBinary() - _ = yym4180 + yym4154 := z.EncBinary() + _ = yym4154 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -52261,15 +51962,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4181 := z.EncBinary() - _ = yym4181 + yym4155 := z.EncBinary() + _ = yym4155 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr4167 || yy2arr4167 { + if yyr4141 || yy2arr4141 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52282,25 +51983,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4182 := z.DecBinary() - _ = yym4182 + yym4156 := z.DecBinary() + _ = yym4156 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4183 := r.ContainerType() - if yyct4183 == codecSelferValueTypeMap1234 { - yyl4183 := r.ReadMapStart() - if yyl4183 == 0 { + yyct4157 := r.ContainerType() + if yyct4157 == codecSelferValueTypeMap1234 { + yyl4157 := r.ReadMapStart() + if yyl4157 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4183, d) + x.codecDecodeSelfFromMap(yyl4157, d) } - } else if yyct4183 == codecSelferValueTypeArray1234 { - yyl4183 := r.ReadArrayStart() - if yyl4183 == 0 { + } else if yyct4157 == codecSelferValueTypeArray1234 { + yyl4157 := r.ReadArrayStart() + if yyl4157 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4183, d) + x.codecDecodeSelfFromArray(yyl4157, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52312,12 +52013,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4184Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4184Slc - var yyhl4184 bool = l >= 0 - for yyj4184 := 0; ; yyj4184++ { - if yyhl4184 { - if yyj4184 >= l { + var yys4158Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4158Slc + var yyhl4158 bool = l >= 0 + for yyj4158 := 0; ; yyj4158++ { + if yyhl4158 { + if yyj4158 >= l { break } } else { @@ -52326,10 +52027,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4184Slc = r.DecodeBytes(yys4184Slc, true, true) - yys4184 := string(yys4184Slc) + yys4158Slc = r.DecodeBytes(yys4158Slc, true, true) + yys4158 := string(yys4158Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4184 { + switch yys4158 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52346,31 +52047,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4187 := &x.ListMeta - yym4188 := z.DecBinary() - _ = yym4188 + yyv4161 := &x.ListMeta + yym4162 := z.DecBinary() + _ = yym4162 if false { - } else if z.HasExtensions() && z.DecExt(yyv4187) { + } else if z.HasExtensions() && z.DecExt(yyv4161) { } else { - z.DecFallback(yyv4187, false) + z.DecFallback(yyv4161, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4189 := &x.Items - yym4190 := z.DecBinary() - _ = yym4190 + yyv4163 := &x.Items + yym4164 := z.DecBinary() + _ = yym4164 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4189), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4163), d) } } default: - z.DecStructFieldNotFound(-1, yys4184) - } // end switch yys4184 - } // end for yyj4184 + z.DecStructFieldNotFound(-1, yys4158) + } // end switch yys4158 + } // end for yyj4158 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52378,16 +52079,16 @@ func (x *LimitRangeList) 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 yyj4165 int + var yyb4165 bool + var yyhl4165 bool = l >= 0 + yyj4165++ + if yyhl4165 { + yyb4165 = yyj4165 > l } else { - yyb4191 = r.CheckBreak() + yyb4165 = r.CheckBreak() } - if yyb4191 { + if yyb4165 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52397,13 +52098,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4191++ - if yyhl4191 { - yyb4191 = yyj4191 > l + yyj4165++ + if yyhl4165 { + yyb4165 = yyj4165 > l } else { - yyb4191 = r.CheckBreak() + yyb4165 = r.CheckBreak() } - if yyb4191 { + if yyb4165 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52413,13 +52114,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4191++ - if yyhl4191 { - yyb4191 = yyj4191 > l + yyj4165++ + if yyhl4165 { + yyb4165 = yyj4165 > l } else { - yyb4191 = r.CheckBreak() + yyb4165 = r.CheckBreak() } - if yyb4191 { + if yyb4165 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52427,22 +52128,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4194 := &x.ListMeta - yym4195 := z.DecBinary() - _ = yym4195 + yyv4168 := &x.ListMeta + yym4169 := z.DecBinary() + _ = yym4169 if false { - } else if z.HasExtensions() && z.DecExt(yyv4194) { + } else if z.HasExtensions() && z.DecExt(yyv4168) { } else { - z.DecFallback(yyv4194, false) + z.DecFallback(yyv4168, false) } } - yyj4191++ - if yyhl4191 { - yyb4191 = yyj4191 > l + yyj4165++ + if yyhl4165 { + yyb4165 = yyj4165 > l } else { - yyb4191 = r.CheckBreak() + yyb4165 = r.CheckBreak() } - if yyb4191 { + if yyb4165 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52450,26 +52151,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4196 := &x.Items - yym4197 := z.DecBinary() - _ = yym4197 + yyv4170 := &x.Items + yym4171 := z.DecBinary() + _ = yym4171 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4196), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4170), d) } } for { - yyj4191++ - if yyhl4191 { - yyb4191 = yyj4191 > l + yyj4165++ + if yyhl4165 { + yyb4165 = yyj4165 > l } else { - yyb4191 = r.CheckBreak() + yyb4165 = r.CheckBreak() } - if yyb4191 { + if yyb4165 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4191-1, "") + z.DecStructFieldNotFound(yyj4165-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52478,8 +52179,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4198 := z.EncBinary() - _ = yym4198 + yym4172 := z.EncBinary() + _ = yym4172 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -52491,8 +52192,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4199 := z.DecBinary() - _ = yym4199 + yym4173 := z.DecBinary() + _ = yym4173 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -52507,34 +52208,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4200 := z.EncBinary() - _ = yym4200 + yym4174 := z.EncBinary() + _ = yym4174 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4201 := !z.EncBinary() - yy2arr4201 := z.EncBasicHandle().StructToArray - var yyq4201 [2]bool - _, _, _ = yysep4201, yyq4201, yy2arr4201 - const yyr4201 bool = false - yyq4201[0] = len(x.Hard) != 0 - yyq4201[1] = len(x.Scopes) != 0 - var yynn4201 int - if yyr4201 || yy2arr4201 { + yysep4175 := !z.EncBinary() + yy2arr4175 := z.EncBasicHandle().StructToArray + var yyq4175 [2]bool + _, _, _ = yysep4175, yyq4175, yy2arr4175 + const yyr4175 bool = false + yyq4175[0] = len(x.Hard) != 0 + yyq4175[1] = len(x.Scopes) != 0 + var yynn4175 int + if yyr4175 || yy2arr4175 { r.EncodeArrayStart(2) } else { - yynn4201 = 0 - for _, b := range yyq4201 { + yynn4175 = 0 + for _, b := range yyq4175 { if b { - yynn4201++ + yynn4175++ } } - r.EncodeMapStart(yynn4201) - yynn4201 = 0 + r.EncodeMapStart(yynn4175) + yynn4175 = 0 } - if yyr4201 || yy2arr4201 { + if yyr4175 || yy2arr4175 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4201[0] { + if yyq4175[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -52544,7 +52245,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4201[0] { + if yyq4175[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -52555,14 +52256,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4201 || yy2arr4201 { + if yyr4175 || yy2arr4175 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4201[1] { + if yyq4175[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym4204 := z.EncBinary() - _ = yym4204 + yym4178 := z.EncBinary() + _ = yym4178 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -52572,15 +52273,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4201[1] { + if yyq4175[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym4205 := z.EncBinary() - _ = yym4205 + yym4179 := z.EncBinary() + _ = yym4179 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -52588,7 +52289,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4201 || yy2arr4201 { + if yyr4175 || yy2arr4175 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52601,25 +52302,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4206 := z.DecBinary() - _ = yym4206 + yym4180 := z.DecBinary() + _ = yym4180 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4207 := r.ContainerType() - if yyct4207 == codecSelferValueTypeMap1234 { - yyl4207 := r.ReadMapStart() - if yyl4207 == 0 { + yyct4181 := r.ContainerType() + if yyct4181 == codecSelferValueTypeMap1234 { + yyl4181 := r.ReadMapStart() + if yyl4181 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4207, d) + x.codecDecodeSelfFromMap(yyl4181, d) } - } else if yyct4207 == codecSelferValueTypeArray1234 { - yyl4207 := r.ReadArrayStart() - if yyl4207 == 0 { + } else if yyct4181 == codecSelferValueTypeArray1234 { + yyl4181 := r.ReadArrayStart() + if yyl4181 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4207, d) + x.codecDecodeSelfFromArray(yyl4181, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52631,12 +52332,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4208Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4208Slc - var yyhl4208 bool = l >= 0 - for yyj4208 := 0; ; yyj4208++ { - if yyhl4208 { - if yyj4208 >= l { + var yys4182Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4182Slc + var yyhl4182 bool = l >= 0 + for yyj4182 := 0; ; yyj4182++ { + if yyhl4182 { + if yyj4182 >= l { break } } else { @@ -52645,33 +52346,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4208Slc = r.DecodeBytes(yys4208Slc, true, true) - yys4208 := string(yys4208Slc) + yys4182Slc = r.DecodeBytes(yys4182Slc, true, true) + yys4182 := string(yys4182Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4208 { + switch yys4182 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4209 := &x.Hard - yyv4209.CodecDecodeSelf(d) + yyv4183 := &x.Hard + yyv4183.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4210 := &x.Scopes - yym4211 := z.DecBinary() - _ = yym4211 + yyv4184 := &x.Scopes + yym4185 := z.DecBinary() + _ = yym4185 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4210), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4184), d) } } default: - z.DecStructFieldNotFound(-1, yys4208) - } // end switch yys4208 - } // end for yyj4208 + z.DecStructFieldNotFound(-1, yys4182) + } // end switch yys4182 + } // end for yyj4182 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52679,16 +52380,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4212 int - var yyb4212 bool - var yyhl4212 bool = l >= 0 - yyj4212++ - if yyhl4212 { - yyb4212 = yyj4212 > l + var yyj4186 int + var yyb4186 bool + var yyhl4186 bool = l >= 0 + yyj4186++ + if yyhl4186 { + yyb4186 = yyj4186 > l } else { - yyb4212 = r.CheckBreak() + yyb4186 = r.CheckBreak() } - if yyb4212 { + if yyb4186 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52696,16 +52397,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4213 := &x.Hard - yyv4213.CodecDecodeSelf(d) + yyv4187 := &x.Hard + yyv4187.CodecDecodeSelf(d) } - yyj4212++ - if yyhl4212 { - yyb4212 = yyj4212 > l + yyj4186++ + if yyhl4186 { + yyb4186 = yyj4186 > l } else { - yyb4212 = r.CheckBreak() + yyb4186 = r.CheckBreak() } - if yyb4212 { + if yyb4186 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52713,26 +52414,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4214 := &x.Scopes - yym4215 := z.DecBinary() - _ = yym4215 + yyv4188 := &x.Scopes + yym4189 := z.DecBinary() + _ = yym4189 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4214), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4188), d) } } for { - yyj4212++ - if yyhl4212 { - yyb4212 = yyj4212 > l + yyj4186++ + if yyhl4186 { + yyb4186 = yyj4186 > l } else { - yyb4212 = r.CheckBreak() + yyb4186 = r.CheckBreak() } - if yyb4212 { + if yyb4186 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4212-1, "") + z.DecStructFieldNotFound(yyj4186-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52744,34 +52445,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4216 := z.EncBinary() - _ = yym4216 + yym4190 := z.EncBinary() + _ = yym4190 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4217 := !z.EncBinary() - yy2arr4217 := z.EncBasicHandle().StructToArray - var yyq4217 [2]bool - _, _, _ = yysep4217, yyq4217, yy2arr4217 - const yyr4217 bool = false - yyq4217[0] = len(x.Hard) != 0 - yyq4217[1] = len(x.Used) != 0 - var yynn4217 int - if yyr4217 || yy2arr4217 { + yysep4191 := !z.EncBinary() + yy2arr4191 := z.EncBasicHandle().StructToArray + var yyq4191 [2]bool + _, _, _ = yysep4191, yyq4191, yy2arr4191 + const yyr4191 bool = false + yyq4191[0] = len(x.Hard) != 0 + yyq4191[1] = len(x.Used) != 0 + var yynn4191 int + if yyr4191 || yy2arr4191 { r.EncodeArrayStart(2) } else { - yynn4217 = 0 - for _, b := range yyq4217 { + yynn4191 = 0 + for _, b := range yyq4191 { if b { - yynn4217++ + yynn4191++ } } - r.EncodeMapStart(yynn4217) - yynn4217 = 0 + r.EncodeMapStart(yynn4191) + yynn4191 = 0 } - if yyr4217 || yy2arr4217 { + if yyr4191 || yy2arr4191 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4217[0] { + if yyq4191[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -52781,7 +52482,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4217[0] { + if yyq4191[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -52792,9 +52493,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4217 || yy2arr4217 { + if yyr4191 || yy2arr4191 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4217[1] { + if yyq4191[1] { if x.Used == nil { r.EncodeNil() } else { @@ -52804,7 +52505,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4217[1] { + if yyq4191[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -52815,7 +52516,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4217 || yy2arr4217 { + if yyr4191 || yy2arr4191 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52828,25 +52529,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4220 := z.DecBinary() - _ = yym4220 + yym4194 := z.DecBinary() + _ = yym4194 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4221 := r.ContainerType() - if yyct4221 == codecSelferValueTypeMap1234 { - yyl4221 := r.ReadMapStart() - if yyl4221 == 0 { + yyct4195 := r.ContainerType() + if yyct4195 == codecSelferValueTypeMap1234 { + yyl4195 := r.ReadMapStart() + if yyl4195 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4221, d) + x.codecDecodeSelfFromMap(yyl4195, d) } - } else if yyct4221 == codecSelferValueTypeArray1234 { - yyl4221 := r.ReadArrayStart() - if yyl4221 == 0 { + } else if yyct4195 == codecSelferValueTypeArray1234 { + yyl4195 := r.ReadArrayStart() + if yyl4195 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4221, d) + x.codecDecodeSelfFromArray(yyl4195, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52858,12 +52559,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4222Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4222Slc - var yyhl4222 bool = l >= 0 - for yyj4222 := 0; ; yyj4222++ { - if yyhl4222 { - if yyj4222 >= l { + var yys4196Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4196Slc + var yyhl4196 bool = l >= 0 + for yyj4196 := 0; ; yyj4196++ { + if yyhl4196 { + if yyj4196 >= l { break } } else { @@ -52872,28 +52573,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4222Slc = r.DecodeBytes(yys4222Slc, true, true) - yys4222 := string(yys4222Slc) + yys4196Slc = r.DecodeBytes(yys4196Slc, true, true) + yys4196 := string(yys4196Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4222 { + switch yys4196 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4223 := &x.Hard - yyv4223.CodecDecodeSelf(d) + yyv4197 := &x.Hard + yyv4197.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4224 := &x.Used - yyv4224.CodecDecodeSelf(d) + yyv4198 := &x.Used + yyv4198.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4222) - } // end switch yys4222 - } // end for yyj4222 + z.DecStructFieldNotFound(-1, yys4196) + } // end switch yys4196 + } // end for yyj4196 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52901,16 +52602,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4225 int - var yyb4225 bool - var yyhl4225 bool = l >= 0 - yyj4225++ - if yyhl4225 { - yyb4225 = yyj4225 > l + var yyj4199 int + var yyb4199 bool + var yyhl4199 bool = l >= 0 + yyj4199++ + if yyhl4199 { + yyb4199 = yyj4199 > l } else { - yyb4225 = r.CheckBreak() + yyb4199 = r.CheckBreak() } - if yyb4225 { + if yyb4199 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52918,16 +52619,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4226 := &x.Hard - yyv4226.CodecDecodeSelf(d) + yyv4200 := &x.Hard + yyv4200.CodecDecodeSelf(d) } - yyj4225++ - if yyhl4225 { - yyb4225 = yyj4225 > l + yyj4199++ + if yyhl4199 { + yyb4199 = yyj4199 > l } else { - yyb4225 = r.CheckBreak() + yyb4199 = r.CheckBreak() } - if yyb4225 { + if yyb4199 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52935,21 +52636,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4227 := &x.Used - yyv4227.CodecDecodeSelf(d) + yyv4201 := &x.Used + yyv4201.CodecDecodeSelf(d) } for { - yyj4225++ - if yyhl4225 { - yyb4225 = yyj4225 > l + yyj4199++ + if yyhl4199 { + yyb4199 = yyj4199 > l } else { - yyb4225 = r.CheckBreak() + yyb4199 = r.CheckBreak() } - if yyb4225 { + if yyb4199 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4225-1, "") + z.DecStructFieldNotFound(yyj4199-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52961,39 +52662,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4228 := z.EncBinary() - _ = yym4228 + yym4202 := z.EncBinary() + _ = yym4202 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4229 := !z.EncBinary() - yy2arr4229 := z.EncBasicHandle().StructToArray - var yyq4229 [5]bool - _, _, _ = yysep4229, yyq4229, yy2arr4229 - const yyr4229 bool = false - yyq4229[0] = x.Kind != "" - yyq4229[1] = x.APIVersion != "" - yyq4229[2] = true - yyq4229[3] = true - yyq4229[4] = true - var yynn4229 int - if yyr4229 || yy2arr4229 { + yysep4203 := !z.EncBinary() + yy2arr4203 := z.EncBasicHandle().StructToArray + var yyq4203 [5]bool + _, _, _ = yysep4203, yyq4203, yy2arr4203 + const yyr4203 bool = false + yyq4203[0] = x.Kind != "" + yyq4203[1] = x.APIVersion != "" + yyq4203[2] = true + yyq4203[3] = true + yyq4203[4] = true + var yynn4203 int + if yyr4203 || yy2arr4203 { r.EncodeArrayStart(5) } else { - yynn4229 = 0 - for _, b := range yyq4229 { + yynn4203 = 0 + for _, b := range yyq4203 { if b { - yynn4229++ + yynn4203++ } } - r.EncodeMapStart(yynn4229) - yynn4229 = 0 + r.EncodeMapStart(yynn4203) + yynn4203 = 0 } - if yyr4229 || yy2arr4229 { + if yyr4203 || yy2arr4203 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4229[0] { - yym4231 := z.EncBinary() - _ = yym4231 + if yyq4203[0] { + yym4205 := z.EncBinary() + _ = yym4205 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53002,23 +52703,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4229[0] { + if yyq4203[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4232 := z.EncBinary() - _ = yym4232 + yym4206 := z.EncBinary() + _ = yym4206 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4229 || yy2arr4229 { + if yyr4203 || yy2arr4203 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4229[1] { - yym4234 := z.EncBinary() - _ = yym4234 + if yyq4203[1] { + yym4208 := z.EncBinary() + _ = yym4208 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53027,70 +52728,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4229[1] { + if yyq4203[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4235 := z.EncBinary() - _ = yym4235 + yym4209 := z.EncBinary() + _ = yym4209 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4229 || yy2arr4229 { + if yyr4203 || yy2arr4203 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4229[2] { - yy4237 := &x.ObjectMeta - yy4237.CodecEncodeSelf(e) + if yyq4203[2] { + yy4211 := &x.ObjectMeta + yy4211.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4229[2] { + if yyq4203[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4238 := &x.ObjectMeta - yy4238.CodecEncodeSelf(e) + yy4212 := &x.ObjectMeta + yy4212.CodecEncodeSelf(e) } } - if yyr4229 || yy2arr4229 { + if yyr4203 || yy2arr4203 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4229[3] { - yy4240 := &x.Spec - yy4240.CodecEncodeSelf(e) + if yyq4203[3] { + yy4214 := &x.Spec + yy4214.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4229[3] { + if yyq4203[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4241 := &x.Spec - yy4241.CodecEncodeSelf(e) + yy4215 := &x.Spec + yy4215.CodecEncodeSelf(e) } } - if yyr4229 || yy2arr4229 { + if yyr4203 || yy2arr4203 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4229[4] { - yy4243 := &x.Status - yy4243.CodecEncodeSelf(e) + if yyq4203[4] { + yy4217 := &x.Status + yy4217.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4229[4] { + if yyq4203[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4244 := &x.Status - yy4244.CodecEncodeSelf(e) + yy4218 := &x.Status + yy4218.CodecEncodeSelf(e) } } - if yyr4229 || yy2arr4229 { + if yyr4203 || yy2arr4203 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53103,25 +52804,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4245 := z.DecBinary() - _ = yym4245 + yym4219 := z.DecBinary() + _ = yym4219 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4246 := r.ContainerType() - if yyct4246 == codecSelferValueTypeMap1234 { - yyl4246 := r.ReadMapStart() - if yyl4246 == 0 { + yyct4220 := r.ContainerType() + if yyct4220 == codecSelferValueTypeMap1234 { + yyl4220 := r.ReadMapStart() + if yyl4220 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4246, d) + x.codecDecodeSelfFromMap(yyl4220, d) } - } else if yyct4246 == codecSelferValueTypeArray1234 { - yyl4246 := r.ReadArrayStart() - if yyl4246 == 0 { + } else if yyct4220 == codecSelferValueTypeArray1234 { + yyl4220 := r.ReadArrayStart() + if yyl4220 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4246, d) + x.codecDecodeSelfFromArray(yyl4220, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53133,12 +52834,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4247Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4247Slc - var yyhl4247 bool = l >= 0 - for yyj4247 := 0; ; yyj4247++ { - if yyhl4247 { - if yyj4247 >= l { + var yys4221Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4221Slc + var yyhl4221 bool = l >= 0 + for yyj4221 := 0; ; yyj4221++ { + if yyhl4221 { + if yyj4221 >= l { break } } else { @@ -53147,10 +52848,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4247Slc = r.DecodeBytes(yys4247Slc, true, true) - yys4247 := string(yys4247Slc) + yys4221Slc = r.DecodeBytes(yys4221Slc, true, true) + yys4221 := string(yys4221Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4247 { + switch yys4221 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53167,27 +52868,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4250 := &x.ObjectMeta - yyv4250.CodecDecodeSelf(d) + yyv4224 := &x.ObjectMeta + yyv4224.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4251 := &x.Spec - yyv4251.CodecDecodeSelf(d) + yyv4225 := &x.Spec + yyv4225.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4252 := &x.Status - yyv4252.CodecDecodeSelf(d) + yyv4226 := &x.Status + yyv4226.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4247) - } // end switch yys4247 - } // end for yyj4247 + z.DecStructFieldNotFound(-1, yys4221) + } // end switch yys4221 + } // end for yyj4221 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53195,16 +52896,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4253 int - var yyb4253 bool - var yyhl4253 bool = l >= 0 - yyj4253++ - if yyhl4253 { - yyb4253 = yyj4253 > l + var yyj4227 int + var yyb4227 bool + var yyhl4227 bool = l >= 0 + yyj4227++ + if yyhl4227 { + yyb4227 = yyj4227 > l } else { - yyb4253 = r.CheckBreak() + yyb4227 = r.CheckBreak() } - if yyb4253 { + if yyb4227 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53214,13 +52915,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4253++ - if yyhl4253 { - yyb4253 = yyj4253 > l + yyj4227++ + if yyhl4227 { + yyb4227 = yyj4227 > l } else { - yyb4253 = r.CheckBreak() + yyb4227 = r.CheckBreak() } - if yyb4253 { + if yyb4227 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53230,13 +52931,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4253++ - if yyhl4253 { - yyb4253 = yyj4253 > l + yyj4227++ + if yyhl4227 { + yyb4227 = yyj4227 > l } else { - yyb4253 = r.CheckBreak() + yyb4227 = r.CheckBreak() } - if yyb4253 { + if yyb4227 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53244,16 +52945,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4256 := &x.ObjectMeta - yyv4256.CodecDecodeSelf(d) + yyv4230 := &x.ObjectMeta + yyv4230.CodecDecodeSelf(d) } - yyj4253++ - if yyhl4253 { - yyb4253 = yyj4253 > l + yyj4227++ + if yyhl4227 { + yyb4227 = yyj4227 > l } else { - yyb4253 = r.CheckBreak() + yyb4227 = r.CheckBreak() } - if yyb4253 { + if yyb4227 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53261,16 +52962,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4257 := &x.Spec - yyv4257.CodecDecodeSelf(d) + yyv4231 := &x.Spec + yyv4231.CodecDecodeSelf(d) } - yyj4253++ - if yyhl4253 { - yyb4253 = yyj4253 > l + yyj4227++ + if yyhl4227 { + yyb4227 = yyj4227 > l } else { - yyb4253 = r.CheckBreak() + yyb4227 = r.CheckBreak() } - if yyb4253 { + if yyb4227 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53278,21 +52979,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4258 := &x.Status - yyv4258.CodecDecodeSelf(d) + yyv4232 := &x.Status + yyv4232.CodecDecodeSelf(d) } for { - yyj4253++ - if yyhl4253 { - yyb4253 = yyj4253 > l + yyj4227++ + if yyhl4227 { + yyb4227 = yyj4227 > l } else { - yyb4253 = r.CheckBreak() + yyb4227 = r.CheckBreak() } - if yyb4253 { + if yyb4227 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4253-1, "") + z.DecStructFieldNotFound(yyj4227-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53304,37 +53005,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4259 := z.EncBinary() - _ = yym4259 + yym4233 := z.EncBinary() + _ = yym4233 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4260 := !z.EncBinary() - yy2arr4260 := z.EncBasicHandle().StructToArray - var yyq4260 [4]bool - _, _, _ = yysep4260, yyq4260, yy2arr4260 - const yyr4260 bool = false - yyq4260[0] = x.Kind != "" - yyq4260[1] = x.APIVersion != "" - yyq4260[2] = true - var yynn4260 int - if yyr4260 || yy2arr4260 { + yysep4234 := !z.EncBinary() + yy2arr4234 := z.EncBasicHandle().StructToArray + var yyq4234 [4]bool + _, _, _ = yysep4234, yyq4234, yy2arr4234 + const yyr4234 bool = false + yyq4234[0] = x.Kind != "" + yyq4234[1] = x.APIVersion != "" + yyq4234[2] = true + var yynn4234 int + if yyr4234 || yy2arr4234 { r.EncodeArrayStart(4) } else { - yynn4260 = 1 - for _, b := range yyq4260 { + yynn4234 = 1 + for _, b := range yyq4234 { if b { - yynn4260++ + yynn4234++ } } - r.EncodeMapStart(yynn4260) - yynn4260 = 0 + r.EncodeMapStart(yynn4234) + yynn4234 = 0 } - if yyr4260 || yy2arr4260 { + if yyr4234 || yy2arr4234 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4260[0] { - yym4262 := z.EncBinary() - _ = yym4262 + if yyq4234[0] { + yym4236 := z.EncBinary() + _ = yym4236 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53343,23 +53044,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4260[0] { + if yyq4234[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4263 := z.EncBinary() - _ = yym4263 + yym4237 := z.EncBinary() + _ = yym4237 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4260 || yy2arr4260 { + if yyr4234 || yy2arr4234 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4260[1] { - yym4265 := z.EncBinary() - _ = yym4265 + if yyq4234[1] { + yym4239 := z.EncBinary() + _ = yym4239 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53368,54 +53069,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4260[1] { + if yyq4234[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4266 := z.EncBinary() - _ = yym4266 + yym4240 := z.EncBinary() + _ = yym4240 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4260 || yy2arr4260 { + if yyr4234 || yy2arr4234 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4260[2] { - yy4268 := &x.ListMeta - yym4269 := z.EncBinary() - _ = yym4269 + if yyq4234[2] { + yy4242 := &x.ListMeta + yym4243 := z.EncBinary() + _ = yym4243 if false { - } else if z.HasExtensions() && z.EncExt(yy4268) { + } else if z.HasExtensions() && z.EncExt(yy4242) { } else { - z.EncFallback(yy4268) + z.EncFallback(yy4242) } } else { r.EncodeNil() } } else { - if yyq4260[2] { + if yyq4234[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4270 := &x.ListMeta - yym4271 := z.EncBinary() - _ = yym4271 + yy4244 := &x.ListMeta + yym4245 := z.EncBinary() + _ = yym4245 if false { - } else if z.HasExtensions() && z.EncExt(yy4270) { + } else if z.HasExtensions() && z.EncExt(yy4244) { } else { - z.EncFallback(yy4270) + z.EncFallback(yy4244) } } } - if yyr4260 || yy2arr4260 { + if yyr4234 || yy2arr4234 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4273 := z.EncBinary() - _ = yym4273 + yym4247 := z.EncBinary() + _ = yym4247 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -53428,15 +53129,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4274 := z.EncBinary() - _ = yym4274 + yym4248 := z.EncBinary() + _ = yym4248 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr4260 || yy2arr4260 { + if yyr4234 || yy2arr4234 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53449,25 +53150,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4275 := z.DecBinary() - _ = yym4275 + yym4249 := z.DecBinary() + _ = yym4249 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4276 := r.ContainerType() - if yyct4276 == codecSelferValueTypeMap1234 { - yyl4276 := r.ReadMapStart() - if yyl4276 == 0 { + yyct4250 := r.ContainerType() + if yyct4250 == codecSelferValueTypeMap1234 { + yyl4250 := r.ReadMapStart() + if yyl4250 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4276, d) + x.codecDecodeSelfFromMap(yyl4250, d) } - } else if yyct4276 == codecSelferValueTypeArray1234 { - yyl4276 := r.ReadArrayStart() - if yyl4276 == 0 { + } else if yyct4250 == codecSelferValueTypeArray1234 { + yyl4250 := r.ReadArrayStart() + if yyl4250 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4276, d) + x.codecDecodeSelfFromArray(yyl4250, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53479,12 +53180,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4277Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4277Slc - var yyhl4277 bool = l >= 0 - for yyj4277 := 0; ; yyj4277++ { - if yyhl4277 { - if yyj4277 >= l { + var yys4251Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4251Slc + var yyhl4251 bool = l >= 0 + for yyj4251 := 0; ; yyj4251++ { + if yyhl4251 { + if yyj4251 >= l { break } } else { @@ -53493,10 +53194,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4277Slc = r.DecodeBytes(yys4277Slc, true, true) - yys4277 := string(yys4277Slc) + yys4251Slc = r.DecodeBytes(yys4251Slc, true, true) + yys4251 := string(yys4251Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4277 { + switch yys4251 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53513,31 +53214,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4280 := &x.ListMeta - yym4281 := z.DecBinary() - _ = yym4281 + yyv4254 := &x.ListMeta + yym4255 := z.DecBinary() + _ = yym4255 if false { - } else if z.HasExtensions() && z.DecExt(yyv4280) { + } else if z.HasExtensions() && z.DecExt(yyv4254) { } else { - z.DecFallback(yyv4280, false) + z.DecFallback(yyv4254, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4282 := &x.Items - yym4283 := z.DecBinary() - _ = yym4283 + yyv4256 := &x.Items + yym4257 := z.DecBinary() + _ = yym4257 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4282), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4256), d) } } default: - z.DecStructFieldNotFound(-1, yys4277) - } // end switch yys4277 - } // end for yyj4277 + z.DecStructFieldNotFound(-1, yys4251) + } // end switch yys4251 + } // end for yyj4251 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53545,16 +53246,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4284 int - var yyb4284 bool - var yyhl4284 bool = l >= 0 - yyj4284++ - if yyhl4284 { - yyb4284 = yyj4284 > l + var yyj4258 int + var yyb4258 bool + var yyhl4258 bool = l >= 0 + yyj4258++ + if yyhl4258 { + yyb4258 = yyj4258 > l } else { - yyb4284 = r.CheckBreak() + yyb4258 = r.CheckBreak() } - if yyb4284 { + if yyb4258 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53564,13 +53265,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj4284++ - if yyhl4284 { - yyb4284 = yyj4284 > l + yyj4258++ + if yyhl4258 { + yyb4258 = yyj4258 > l } else { - yyb4284 = r.CheckBreak() + yyb4258 = r.CheckBreak() } - if yyb4284 { + if yyb4258 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53580,13 +53281,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj4284++ - if yyhl4284 { - yyb4284 = yyj4284 > l + yyj4258++ + if yyhl4258 { + yyb4258 = yyj4258 > l } else { - yyb4284 = r.CheckBreak() + yyb4258 = r.CheckBreak() } - if yyb4284 { + if yyb4258 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53594,22 +53295,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4287 := &x.ListMeta - yym4288 := z.DecBinary() - _ = yym4288 + yyv4261 := &x.ListMeta + yym4262 := z.DecBinary() + _ = yym4262 if false { - } else if z.HasExtensions() && z.DecExt(yyv4287) { + } else if z.HasExtensions() && z.DecExt(yyv4261) { } else { - z.DecFallback(yyv4287, false) + z.DecFallback(yyv4261, false) } } - yyj4284++ - if yyhl4284 { - yyb4284 = yyj4284 > l + yyj4258++ + if yyhl4258 { + yyb4258 = yyj4258 > l } else { - yyb4284 = r.CheckBreak() + yyb4258 = r.CheckBreak() } - if yyb4284 { + if yyb4258 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53617,26 +53318,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4289 := &x.Items - yym4290 := z.DecBinary() - _ = yym4290 + yyv4263 := &x.Items + yym4264 := z.DecBinary() + _ = yym4264 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4289), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4263), d) } } for { - yyj4284++ - if yyhl4284 { - yyb4284 = yyj4284 > l + yyj4258++ + if yyhl4258 { + yyb4258 = yyj4258 > l } else { - yyb4284 = r.CheckBreak() + yyb4258 = r.CheckBreak() } - if yyb4284 { + if yyb4258 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4284-1, "") + z.DecStructFieldNotFound(yyj4258-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53648,39 +53349,39 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4291 := z.EncBinary() - _ = yym4291 + yym4265 := z.EncBinary() + _ = yym4265 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4292 := !z.EncBinary() - yy2arr4292 := z.EncBasicHandle().StructToArray - var yyq4292 [5]bool - _, _, _ = yysep4292, yyq4292, yy2arr4292 - const yyr4292 bool = false - yyq4292[0] = x.Kind != "" - yyq4292[1] = x.APIVersion != "" - yyq4292[2] = true - yyq4292[3] = len(x.Data) != 0 - yyq4292[4] = x.Type != "" - var yynn4292 int - if yyr4292 || yy2arr4292 { + yysep4266 := !z.EncBinary() + yy2arr4266 := z.EncBasicHandle().StructToArray + var yyq4266 [5]bool + _, _, _ = yysep4266, yyq4266, yy2arr4266 + const yyr4266 bool = false + yyq4266[0] = x.Kind != "" + yyq4266[1] = x.APIVersion != "" + yyq4266[2] = true + yyq4266[3] = len(x.Data) != 0 + yyq4266[4] = x.Type != "" + var yynn4266 int + if yyr4266 || yy2arr4266 { r.EncodeArrayStart(5) } else { - yynn4292 = 0 - for _, b := range yyq4292 { + yynn4266 = 0 + for _, b := range yyq4266 { if b { - yynn4292++ + yynn4266++ } } - r.EncodeMapStart(yynn4292) - yynn4292 = 0 + r.EncodeMapStart(yynn4266) + yynn4266 = 0 } - if yyr4292 || yy2arr4292 { + if yyr4266 || yy2arr4266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4292[0] { - yym4294 := z.EncBinary() - _ = yym4294 + if yyq4266[0] { + yym4268 := z.EncBinary() + _ = yym4268 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53689,23 +53390,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4292[0] { + if yyq4266[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4295 := z.EncBinary() - _ = yym4295 + yym4269 := z.EncBinary() + _ = yym4269 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4292 || yy2arr4292 { + if yyr4266 || yy2arr4266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4292[1] { - yym4297 := z.EncBinary() - _ = yym4297 + if yyq4266[1] { + yym4271 := z.EncBinary() + _ = yym4271 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53714,43 +53415,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4292[1] { + if yyq4266[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4298 := z.EncBinary() - _ = yym4298 + yym4272 := z.EncBinary() + _ = yym4272 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4292 || yy2arr4292 { + if yyr4266 || yy2arr4266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4292[2] { - yy4300 := &x.ObjectMeta - yy4300.CodecEncodeSelf(e) + if yyq4266[2] { + yy4274 := &x.ObjectMeta + yy4274.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4292[2] { + if yyq4266[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4301 := &x.ObjectMeta - yy4301.CodecEncodeSelf(e) + yy4275 := &x.ObjectMeta + yy4275.CodecEncodeSelf(e) } } - if yyr4292 || yy2arr4292 { + if yyr4266 || yy2arr4266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4292[3] { + if yyq4266[3] { if x.Data == nil { r.EncodeNil() } else { - yym4303 := z.EncBinary() - _ = yym4303 + yym4277 := z.EncBinary() + _ = yym4277 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -53760,15 +53461,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4292[3] { + if yyq4266[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4304 := z.EncBinary() - _ = yym4304 + yym4278 := z.EncBinary() + _ = yym4278 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -53776,22 +53477,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4292 || yy2arr4292 { + if yyr4266 || yy2arr4266 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4292[4] { + if yyq4266[4] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4292[4] { + if yyq4266[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4292 || yy2arr4292 { + if yyr4266 || yy2arr4266 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53804,25 +53505,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4306 := z.DecBinary() - _ = yym4306 + yym4280 := z.DecBinary() + _ = yym4280 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4307 := r.ContainerType() - if yyct4307 == codecSelferValueTypeMap1234 { - yyl4307 := r.ReadMapStart() - if yyl4307 == 0 { + yyct4281 := r.ContainerType() + if yyct4281 == codecSelferValueTypeMap1234 { + yyl4281 := r.ReadMapStart() + if yyl4281 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4307, d) + x.codecDecodeSelfFromMap(yyl4281, d) } - } else if yyct4307 == codecSelferValueTypeArray1234 { - yyl4307 := r.ReadArrayStart() - if yyl4307 == 0 { + } else if yyct4281 == codecSelferValueTypeArray1234 { + yyl4281 := r.ReadArrayStart() + if yyl4281 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4307, d) + x.codecDecodeSelfFromArray(yyl4281, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53834,12 +53535,12 @@ func (x *Secret) 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 yys4282Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4282Slc + var yyhl4282 bool = l >= 0 + for yyj4282 := 0; ; yyj4282++ { + if yyhl4282 { + if yyj4282 >= l { break } } else { @@ -53848,10 +53549,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4308Slc = r.DecodeBytes(yys4308Slc, true, true) - yys4308 := string(yys4308Slc) + yys4282Slc = r.DecodeBytes(yys4282Slc, true, true) + yys4282 := string(yys4282Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4308 { + switch yys4282 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53868,19 +53569,19 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4311 := &x.ObjectMeta - yyv4311.CodecDecodeSelf(d) + yyv4285 := &x.ObjectMeta + yyv4285.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4312 := &x.Data - yym4313 := z.DecBinary() - _ = yym4313 + yyv4286 := &x.Data + yym4287 := z.DecBinary() + _ = yym4287 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4312), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4286), d) } } case "type": @@ -53890,9 +53591,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4308) - } // end switch yys4308 - } // end for yyj4308 + z.DecStructFieldNotFound(-1, yys4282) + } // end switch yys4282 + } // end for yyj4282 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53900,16 +53601,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4315 int - var yyb4315 bool - var yyhl4315 bool = l >= 0 - yyj4315++ - if yyhl4315 { - yyb4315 = yyj4315 > l + var yyj4289 int + var yyb4289 bool + var yyhl4289 bool = l >= 0 + yyj4289++ + if yyhl4289 { + yyb4289 = yyj4289 > l } else { - yyb4315 = r.CheckBreak() + yyb4289 = r.CheckBreak() } - if yyb4315 { + if yyb4289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53919,13 +53620,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4315++ - if yyhl4315 { - yyb4315 = yyj4315 > l + yyj4289++ + if yyhl4289 { + yyb4289 = yyj4289 > l } else { - yyb4315 = r.CheckBreak() + yyb4289 = r.CheckBreak() } - if yyb4315 { + if yyb4289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53935,13 +53636,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4315++ - if yyhl4315 { - yyb4315 = yyj4315 > l + yyj4289++ + if yyhl4289 { + yyb4289 = yyj4289 > l } else { - yyb4315 = r.CheckBreak() + yyb4289 = r.CheckBreak() } - if yyb4315 { + if yyb4289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53949,16 +53650,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4318 := &x.ObjectMeta - yyv4318.CodecDecodeSelf(d) + yyv4292 := &x.ObjectMeta + yyv4292.CodecDecodeSelf(d) } - yyj4315++ - if yyhl4315 { - yyb4315 = yyj4315 > l + yyj4289++ + if yyhl4289 { + yyb4289 = yyj4289 > l } else { - yyb4315 = r.CheckBreak() + yyb4289 = r.CheckBreak() } - if yyb4315 { + if yyb4289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53966,21 +53667,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4319 := &x.Data - yym4320 := z.DecBinary() - _ = yym4320 + yyv4293 := &x.Data + yym4294 := z.DecBinary() + _ = yym4294 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4319), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4293), d) } } - yyj4315++ - if yyhl4315 { - yyb4315 = yyj4315 > l + yyj4289++ + if yyhl4289 { + yyb4289 = yyj4289 > l } else { - yyb4315 = r.CheckBreak() + yyb4289 = r.CheckBreak() } - if yyb4315 { + if yyb4289 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53991,17 +53692,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj4315++ - if yyhl4315 { - yyb4315 = yyj4315 > l + yyj4289++ + if yyhl4289 { + yyb4289 = yyj4289 > l } else { - yyb4315 = r.CheckBreak() + yyb4289 = r.CheckBreak() } - if yyb4315 { + if yyb4289 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4315-1, "") + z.DecStructFieldNotFound(yyj4289-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54010,8 +53711,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4322 := z.EncBinary() - _ = yym4322 + yym4296 := z.EncBinary() + _ = yym4296 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -54023,8 +53724,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4323 := z.DecBinary() - _ = yym4323 + yym4297 := z.DecBinary() + _ = yym4297 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -54039,37 +53740,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4324 := z.EncBinary() - _ = yym4324 + yym4298 := z.EncBinary() + _ = yym4298 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4325 := !z.EncBinary() - yy2arr4325 := z.EncBasicHandle().StructToArray - var yyq4325 [4]bool - _, _, _ = yysep4325, yyq4325, yy2arr4325 - const yyr4325 bool = false - yyq4325[0] = x.Kind != "" - yyq4325[1] = x.APIVersion != "" - yyq4325[2] = true - var yynn4325 int - if yyr4325 || yy2arr4325 { + yysep4299 := !z.EncBinary() + yy2arr4299 := z.EncBasicHandle().StructToArray + var yyq4299 [4]bool + _, _, _ = yysep4299, yyq4299, yy2arr4299 + const yyr4299 bool = false + yyq4299[0] = x.Kind != "" + yyq4299[1] = x.APIVersion != "" + yyq4299[2] = true + var yynn4299 int + if yyr4299 || yy2arr4299 { r.EncodeArrayStart(4) } else { - yynn4325 = 1 - for _, b := range yyq4325 { + yynn4299 = 1 + for _, b := range yyq4299 { if b { - yynn4325++ + yynn4299++ } } - r.EncodeMapStart(yynn4325) - yynn4325 = 0 + r.EncodeMapStart(yynn4299) + yynn4299 = 0 } - if yyr4325 || yy2arr4325 { + if yyr4299 || yy2arr4299 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4325[0] { - yym4327 := z.EncBinary() - _ = yym4327 + if yyq4299[0] { + yym4301 := z.EncBinary() + _ = yym4301 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -54078,23 +53779,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4325[0] { + if yyq4299[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4328 := z.EncBinary() - _ = yym4328 + yym4302 := z.EncBinary() + _ = yym4302 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4325 || yy2arr4325 { + if yyr4299 || yy2arr4299 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4325[1] { - yym4330 := z.EncBinary() - _ = yym4330 + if yyq4299[1] { + yym4304 := z.EncBinary() + _ = yym4304 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -54103,54 +53804,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4325[1] { + if yyq4299[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4331 := z.EncBinary() - _ = yym4331 + yym4305 := z.EncBinary() + _ = yym4305 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4325 || yy2arr4325 { + if yyr4299 || yy2arr4299 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4325[2] { - yy4333 := &x.ListMeta - yym4334 := z.EncBinary() - _ = yym4334 + if yyq4299[2] { + yy4307 := &x.ListMeta + yym4308 := z.EncBinary() + _ = yym4308 if false { - } else if z.HasExtensions() && z.EncExt(yy4333) { + } else if z.HasExtensions() && z.EncExt(yy4307) { } else { - z.EncFallback(yy4333) + z.EncFallback(yy4307) } } else { r.EncodeNil() } } else { - if yyq4325[2] { + if yyq4299[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4335 := &x.ListMeta - yym4336 := z.EncBinary() - _ = yym4336 + yy4309 := &x.ListMeta + yym4310 := z.EncBinary() + _ = yym4310 if false { - } else if z.HasExtensions() && z.EncExt(yy4335) { + } else if z.HasExtensions() && z.EncExt(yy4309) { } else { - z.EncFallback(yy4335) + z.EncFallback(yy4309) } } } - if yyr4325 || yy2arr4325 { + if yyr4299 || yy2arr4299 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4338 := z.EncBinary() - _ = yym4338 + yym4312 := z.EncBinary() + _ = yym4312 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -54163,15 +53864,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4339 := z.EncBinary() - _ = yym4339 + yym4313 := z.EncBinary() + _ = yym4313 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4325 || yy2arr4325 { + if yyr4299 || yy2arr4299 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54184,25 +53885,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4340 := z.DecBinary() - _ = yym4340 + yym4314 := z.DecBinary() + _ = yym4314 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4341 := r.ContainerType() - if yyct4341 == codecSelferValueTypeMap1234 { - yyl4341 := r.ReadMapStart() - if yyl4341 == 0 { + yyct4315 := r.ContainerType() + if yyct4315 == codecSelferValueTypeMap1234 { + yyl4315 := r.ReadMapStart() + if yyl4315 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4341, d) + x.codecDecodeSelfFromMap(yyl4315, d) } - } else if yyct4341 == codecSelferValueTypeArray1234 { - yyl4341 := r.ReadArrayStart() - if yyl4341 == 0 { + } else if yyct4315 == codecSelferValueTypeArray1234 { + yyl4315 := r.ReadArrayStart() + if yyl4315 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4341, d) + x.codecDecodeSelfFromArray(yyl4315, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54214,12 +53915,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4342Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4342Slc - var yyhl4342 bool = l >= 0 - for yyj4342 := 0; ; yyj4342++ { - if yyhl4342 { - if yyj4342 >= l { + var yys4316Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4316Slc + var yyhl4316 bool = l >= 0 + for yyj4316 := 0; ; yyj4316++ { + if yyhl4316 { + if yyj4316 >= l { break } } else { @@ -54228,10 +53929,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4342Slc = r.DecodeBytes(yys4342Slc, true, true) - yys4342 := string(yys4342Slc) + yys4316Slc = r.DecodeBytes(yys4316Slc, true, true) + yys4316 := string(yys4316Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4342 { + switch yys4316 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54248,31 +53949,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4345 := &x.ListMeta - yym4346 := z.DecBinary() - _ = yym4346 + yyv4319 := &x.ListMeta + yym4320 := z.DecBinary() + _ = yym4320 if false { - } else if z.HasExtensions() && z.DecExt(yyv4345) { + } else if z.HasExtensions() && z.DecExt(yyv4319) { } else { - z.DecFallback(yyv4345, false) + z.DecFallback(yyv4319, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4347 := &x.Items - yym4348 := z.DecBinary() - _ = yym4348 + yyv4321 := &x.Items + yym4322 := z.DecBinary() + _ = yym4322 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4347), d) + h.decSliceSecret((*[]Secret)(yyv4321), d) } } default: - z.DecStructFieldNotFound(-1, yys4342) - } // end switch yys4342 - } // end for yyj4342 + z.DecStructFieldNotFound(-1, yys4316) + } // end switch yys4316 + } // end for yyj4316 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54280,16 +53981,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4349 int - var yyb4349 bool - var yyhl4349 bool = l >= 0 - yyj4349++ - if yyhl4349 { - yyb4349 = yyj4349 > l + var yyj4323 int + var yyb4323 bool + var yyhl4323 bool = l >= 0 + yyj4323++ + if yyhl4323 { + yyb4323 = yyj4323 > l } else { - yyb4349 = r.CheckBreak() + yyb4323 = r.CheckBreak() } - if yyb4349 { + if yyb4323 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54299,13 +54000,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4349++ - if yyhl4349 { - yyb4349 = yyj4349 > l + yyj4323++ + if yyhl4323 { + yyb4323 = yyj4323 > l } else { - yyb4349 = r.CheckBreak() + yyb4323 = r.CheckBreak() } - if yyb4349 { + if yyb4323 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54315,13 +54016,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4349++ - if yyhl4349 { - yyb4349 = yyj4349 > l + yyj4323++ + if yyhl4323 { + yyb4323 = yyj4323 > l } else { - yyb4349 = r.CheckBreak() + yyb4323 = r.CheckBreak() } - if yyb4349 { + if yyb4323 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54329,22 +54030,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4352 := &x.ListMeta - yym4353 := z.DecBinary() - _ = yym4353 + yyv4326 := &x.ListMeta + yym4327 := z.DecBinary() + _ = yym4327 if false { - } else if z.HasExtensions() && z.DecExt(yyv4352) { + } else if z.HasExtensions() && z.DecExt(yyv4326) { } else { - z.DecFallback(yyv4352, false) + z.DecFallback(yyv4326, false) } } - yyj4349++ - if yyhl4349 { - yyb4349 = yyj4349 > l + yyj4323++ + if yyhl4323 { + yyb4323 = yyj4323 > l } else { - yyb4349 = r.CheckBreak() + yyb4323 = r.CheckBreak() } - if yyb4349 { + if yyb4323 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54352,26 +54053,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4354 := &x.Items - yym4355 := z.DecBinary() - _ = yym4355 + yyv4328 := &x.Items + yym4329 := z.DecBinary() + _ = yym4329 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4354), d) + h.decSliceSecret((*[]Secret)(yyv4328), d) } } for { - yyj4349++ - if yyhl4349 { - yyb4349 = yyj4349 > l + yyj4323++ + if yyhl4323 { + yyb4323 = yyj4323 > l } else { - yyb4349 = r.CheckBreak() + yyb4323 = r.CheckBreak() } - if yyb4349 { + if yyb4323 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4349-1, "") + z.DecStructFieldNotFound(yyj4323-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54383,38 +54084,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4356 := z.EncBinary() - _ = yym4356 + yym4330 := z.EncBinary() + _ = yym4330 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4357 := !z.EncBinary() - yy2arr4357 := z.EncBasicHandle().StructToArray - var yyq4357 [4]bool - _, _, _ = yysep4357, yyq4357, yy2arr4357 - const yyr4357 bool = false - yyq4357[0] = x.Kind != "" - yyq4357[1] = x.APIVersion != "" - yyq4357[2] = true - yyq4357[3] = len(x.Data) != 0 - var yynn4357 int - if yyr4357 || yy2arr4357 { + yysep4331 := !z.EncBinary() + yy2arr4331 := z.EncBasicHandle().StructToArray + var yyq4331 [4]bool + _, _, _ = yysep4331, yyq4331, yy2arr4331 + const yyr4331 bool = false + yyq4331[0] = x.Kind != "" + yyq4331[1] = x.APIVersion != "" + yyq4331[2] = true + yyq4331[3] = len(x.Data) != 0 + var yynn4331 int + if yyr4331 || yy2arr4331 { r.EncodeArrayStart(4) } else { - yynn4357 = 0 - for _, b := range yyq4357 { + yynn4331 = 0 + for _, b := range yyq4331 { if b { - yynn4357++ + yynn4331++ } } - r.EncodeMapStart(yynn4357) - yynn4357 = 0 + r.EncodeMapStart(yynn4331) + yynn4331 = 0 } - if yyr4357 || yy2arr4357 { + if yyr4331 || yy2arr4331 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4357[0] { - yym4359 := z.EncBinary() - _ = yym4359 + if yyq4331[0] { + yym4333 := z.EncBinary() + _ = yym4333 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -54423,23 +54124,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4357[0] { + if yyq4331[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4360 := z.EncBinary() - _ = yym4360 + yym4334 := z.EncBinary() + _ = yym4334 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4357 || yy2arr4357 { + if yyr4331 || yy2arr4331 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4357[1] { - yym4362 := z.EncBinary() - _ = yym4362 + if yyq4331[1] { + yym4336 := z.EncBinary() + _ = yym4336 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -54448,43 +54149,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4357[1] { + if yyq4331[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4363 := z.EncBinary() - _ = yym4363 + yym4337 := z.EncBinary() + _ = yym4337 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4357 || yy2arr4357 { + if yyr4331 || yy2arr4331 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4357[2] { - yy4365 := &x.ObjectMeta - yy4365.CodecEncodeSelf(e) + if yyq4331[2] { + yy4339 := &x.ObjectMeta + yy4339.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4357[2] { + if yyq4331[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4366 := &x.ObjectMeta - yy4366.CodecEncodeSelf(e) + yy4340 := &x.ObjectMeta + yy4340.CodecEncodeSelf(e) } } - if yyr4357 || yy2arr4357 { + if yyr4331 || yy2arr4331 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4357[3] { + if yyq4331[3] { if x.Data == nil { r.EncodeNil() } else { - yym4368 := z.EncBinary() - _ = yym4368 + yym4342 := z.EncBinary() + _ = yym4342 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -54494,15 +54195,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4357[3] { + if yyq4331[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4369 := z.EncBinary() - _ = yym4369 + yym4343 := z.EncBinary() + _ = yym4343 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -54510,7 +54211,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4357 || yy2arr4357 { + if yyr4331 || yy2arr4331 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54523,25 +54224,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4370 := z.DecBinary() - _ = yym4370 + yym4344 := z.DecBinary() + _ = yym4344 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4371 := r.ContainerType() - if yyct4371 == codecSelferValueTypeMap1234 { - yyl4371 := r.ReadMapStart() - if yyl4371 == 0 { + yyct4345 := r.ContainerType() + if yyct4345 == codecSelferValueTypeMap1234 { + yyl4345 := r.ReadMapStart() + if yyl4345 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4371, d) + x.codecDecodeSelfFromMap(yyl4345, d) } - } else if yyct4371 == codecSelferValueTypeArray1234 { - yyl4371 := r.ReadArrayStart() - if yyl4371 == 0 { + } else if yyct4345 == codecSelferValueTypeArray1234 { + yyl4345 := r.ReadArrayStart() + if yyl4345 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4371, d) + x.codecDecodeSelfFromArray(yyl4345, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54553,12 +54254,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4372Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4372Slc - var yyhl4372 bool = l >= 0 - for yyj4372 := 0; ; yyj4372++ { - if yyhl4372 { - if yyj4372 >= l { + var yys4346Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4346Slc + var yyhl4346 bool = l >= 0 + for yyj4346 := 0; ; yyj4346++ { + if yyhl4346 { + if yyj4346 >= l { break } } else { @@ -54567,10 +54268,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4372Slc = r.DecodeBytes(yys4372Slc, true, true) - yys4372 := string(yys4372Slc) + yys4346Slc = r.DecodeBytes(yys4346Slc, true, true) + yys4346 := string(yys4346Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4372 { + switch yys4346 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54587,25 +54288,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4375 := &x.ObjectMeta - yyv4375.CodecDecodeSelf(d) + yyv4349 := &x.ObjectMeta + yyv4349.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4376 := &x.Data - yym4377 := z.DecBinary() - _ = yym4377 + yyv4350 := &x.Data + yym4351 := z.DecBinary() + _ = yym4351 if false { } else { - z.F.DecMapStringStringX(yyv4376, false, d) + z.F.DecMapStringStringX(yyv4350, false, d) } } default: - z.DecStructFieldNotFound(-1, yys4372) - } // end switch yys4372 - } // end for yyj4372 + z.DecStructFieldNotFound(-1, yys4346) + } // end switch yys4346 + } // end for yyj4346 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54613,16 +54314,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4378 int - var yyb4378 bool - var yyhl4378 bool = l >= 0 - yyj4378++ - if yyhl4378 { - yyb4378 = yyj4378 > l + var yyj4352 int + var yyb4352 bool + var yyhl4352 bool = l >= 0 + yyj4352++ + if yyhl4352 { + yyb4352 = yyj4352 > l } else { - yyb4378 = r.CheckBreak() + yyb4352 = r.CheckBreak() } - if yyb4378 { + if yyb4352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54632,13 +54333,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4378++ - if yyhl4378 { - yyb4378 = yyj4378 > l + yyj4352++ + if yyhl4352 { + yyb4352 = yyj4352 > l } else { - yyb4378 = r.CheckBreak() + yyb4352 = r.CheckBreak() } - if yyb4378 { + if yyb4352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54648,13 +54349,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4378++ - if yyhl4378 { - yyb4378 = yyj4378 > l + yyj4352++ + if yyhl4352 { + yyb4352 = yyj4352 > l } else { - yyb4378 = r.CheckBreak() + yyb4352 = r.CheckBreak() } - if yyb4378 { + if yyb4352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54662,16 +54363,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4381 := &x.ObjectMeta - yyv4381.CodecDecodeSelf(d) + yyv4355 := &x.ObjectMeta + yyv4355.CodecDecodeSelf(d) } - yyj4378++ - if yyhl4378 { - yyb4378 = yyj4378 > l + yyj4352++ + if yyhl4352 { + yyb4352 = yyj4352 > l } else { - yyb4378 = r.CheckBreak() + yyb4352 = r.CheckBreak() } - if yyb4378 { + if yyb4352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54679,26 +54380,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4382 := &x.Data - yym4383 := z.DecBinary() - _ = yym4383 + yyv4356 := &x.Data + yym4357 := z.DecBinary() + _ = yym4357 if false { } else { - z.F.DecMapStringStringX(yyv4382, false, d) + z.F.DecMapStringStringX(yyv4356, false, d) } } for { - yyj4378++ - if yyhl4378 { - yyb4378 = yyj4378 > l + yyj4352++ + if yyhl4352 { + yyb4352 = yyj4352 > l } else { - yyb4378 = r.CheckBreak() + yyb4352 = r.CheckBreak() } - if yyb4378 { + if yyb4352 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4378-1, "") + z.DecStructFieldNotFound(yyj4352-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54710,37 +54411,37 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4384 := z.EncBinary() - _ = yym4384 + yym4358 := z.EncBinary() + _ = yym4358 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4385 := !z.EncBinary() - yy2arr4385 := z.EncBasicHandle().StructToArray - var yyq4385 [4]bool - _, _, _ = yysep4385, yyq4385, yy2arr4385 - const yyr4385 bool = false - yyq4385[0] = x.Kind != "" - yyq4385[1] = x.APIVersion != "" - yyq4385[2] = true - var yynn4385 int - if yyr4385 || yy2arr4385 { + yysep4359 := !z.EncBinary() + yy2arr4359 := z.EncBasicHandle().StructToArray + var yyq4359 [4]bool + _, _, _ = yysep4359, yyq4359, yy2arr4359 + const yyr4359 bool = false + yyq4359[0] = x.Kind != "" + yyq4359[1] = x.APIVersion != "" + yyq4359[2] = true + var yynn4359 int + if yyr4359 || yy2arr4359 { r.EncodeArrayStart(4) } else { - yynn4385 = 1 - for _, b := range yyq4385 { + yynn4359 = 1 + for _, b := range yyq4359 { if b { - yynn4385++ + yynn4359++ } } - r.EncodeMapStart(yynn4385) - yynn4385 = 0 + r.EncodeMapStart(yynn4359) + yynn4359 = 0 } - if yyr4385 || yy2arr4385 { + if yyr4359 || yy2arr4359 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4385[0] { - yym4387 := z.EncBinary() - _ = yym4387 + if yyq4359[0] { + yym4361 := z.EncBinary() + _ = yym4361 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -54749,23 +54450,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4385[0] { + if yyq4359[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4388 := z.EncBinary() - _ = yym4388 + yym4362 := z.EncBinary() + _ = yym4362 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4385 || yy2arr4385 { + if yyr4359 || yy2arr4359 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4385[1] { - yym4390 := z.EncBinary() - _ = yym4390 + if yyq4359[1] { + yym4364 := z.EncBinary() + _ = yym4364 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -54774,54 +54475,54 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4385[1] { + if yyq4359[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4391 := z.EncBinary() - _ = yym4391 + yym4365 := z.EncBinary() + _ = yym4365 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4385 || yy2arr4385 { + if yyr4359 || yy2arr4359 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4385[2] { - yy4393 := &x.ListMeta - yym4394 := z.EncBinary() - _ = yym4394 + if yyq4359[2] { + yy4367 := &x.ListMeta + yym4368 := z.EncBinary() + _ = yym4368 if false { - } else if z.HasExtensions() && z.EncExt(yy4393) { + } else if z.HasExtensions() && z.EncExt(yy4367) { } else { - z.EncFallback(yy4393) + z.EncFallback(yy4367) } } else { r.EncodeNil() } } else { - if yyq4385[2] { + if yyq4359[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4395 := &x.ListMeta - yym4396 := z.EncBinary() - _ = yym4396 + yy4369 := &x.ListMeta + yym4370 := z.EncBinary() + _ = yym4370 if false { - } else if z.HasExtensions() && z.EncExt(yy4395) { + } else if z.HasExtensions() && z.EncExt(yy4369) { } else { - z.EncFallback(yy4395) + z.EncFallback(yy4369) } } } - if yyr4385 || yy2arr4385 { + if yyr4359 || yy2arr4359 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4398 := z.EncBinary() - _ = yym4398 + yym4372 := z.EncBinary() + _ = yym4372 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -54834,15 +54535,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4399 := z.EncBinary() - _ = yym4399 + yym4373 := z.EncBinary() + _ = yym4373 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) } } } - if yyr4385 || yy2arr4385 { + if yyr4359 || yy2arr4359 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54855,25 +54556,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4400 := z.DecBinary() - _ = yym4400 + yym4374 := z.DecBinary() + _ = yym4374 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4401 := r.ContainerType() - if yyct4401 == codecSelferValueTypeMap1234 { - yyl4401 := r.ReadMapStart() - if yyl4401 == 0 { + yyct4375 := r.ContainerType() + if yyct4375 == codecSelferValueTypeMap1234 { + yyl4375 := r.ReadMapStart() + if yyl4375 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4401, d) + x.codecDecodeSelfFromMap(yyl4375, d) } - } else if yyct4401 == codecSelferValueTypeArray1234 { - yyl4401 := r.ReadArrayStart() - if yyl4401 == 0 { + } else if yyct4375 == codecSelferValueTypeArray1234 { + yyl4375 := r.ReadArrayStart() + if yyl4375 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4401, d) + x.codecDecodeSelfFromArray(yyl4375, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54885,12 +54586,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4402Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4402Slc - var yyhl4402 bool = l >= 0 - for yyj4402 := 0; ; yyj4402++ { - if yyhl4402 { - if yyj4402 >= l { + var yys4376Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4376Slc + var yyhl4376 bool = l >= 0 + for yyj4376 := 0; ; yyj4376++ { + if yyhl4376 { + if yyj4376 >= l { break } } else { @@ -54899,10 +54600,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4402Slc = r.DecodeBytes(yys4402Slc, true, true) - yys4402 := string(yys4402Slc) + yys4376Slc = r.DecodeBytes(yys4376Slc, true, true) + yys4376 := string(yys4376Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4402 { + switch yys4376 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54919,31 +54620,31 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4405 := &x.ListMeta - yym4406 := z.DecBinary() - _ = yym4406 + yyv4379 := &x.ListMeta + yym4380 := z.DecBinary() + _ = yym4380 if false { - } else if z.HasExtensions() && z.DecExt(yyv4405) { + } else if z.HasExtensions() && z.DecExt(yyv4379) { } else { - z.DecFallback(yyv4405, false) + z.DecFallback(yyv4379, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4407 := &x.Items - yym4408 := z.DecBinary() - _ = yym4408 + yyv4381 := &x.Items + yym4382 := z.DecBinary() + _ = yym4382 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4407), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4381), d) } } default: - z.DecStructFieldNotFound(-1, yys4402) - } // end switch yys4402 - } // end for yyj4402 + z.DecStructFieldNotFound(-1, yys4376) + } // end switch yys4376 + } // end for yyj4376 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54951,16 +54652,16 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4409 int - var yyb4409 bool - var yyhl4409 bool = l >= 0 - yyj4409++ - if yyhl4409 { - yyb4409 = yyj4409 > l + var yyj4383 int + var yyb4383 bool + var yyhl4383 bool = l >= 0 + yyj4383++ + if yyhl4383 { + yyb4383 = yyj4383 > l } else { - yyb4409 = r.CheckBreak() + yyb4383 = r.CheckBreak() } - if yyb4409 { + if yyb4383 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54970,13 +54671,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4409++ - if yyhl4409 { - yyb4409 = yyj4409 > l + yyj4383++ + if yyhl4383 { + yyb4383 = yyj4383 > l } else { - yyb4409 = r.CheckBreak() + yyb4383 = r.CheckBreak() } - if yyb4409 { + if yyb4383 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54986,13 +54687,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4409++ - if yyhl4409 { - yyb4409 = yyj4409 > l + yyj4383++ + if yyhl4383 { + yyb4383 = yyj4383 > l } else { - yyb4409 = r.CheckBreak() + yyb4383 = r.CheckBreak() } - if yyb4409 { + if yyb4383 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55000,22 +54701,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4412 := &x.ListMeta - yym4413 := z.DecBinary() - _ = yym4413 + yyv4386 := &x.ListMeta + yym4387 := z.DecBinary() + _ = yym4387 if false { - } else if z.HasExtensions() && z.DecExt(yyv4412) { + } else if z.HasExtensions() && z.DecExt(yyv4386) { } else { - z.DecFallback(yyv4412, false) + z.DecFallback(yyv4386, false) } } - yyj4409++ - if yyhl4409 { - yyb4409 = yyj4409 > l + yyj4383++ + if yyhl4383 { + yyb4383 = yyj4383 > l } else { - yyb4409 = r.CheckBreak() + yyb4383 = r.CheckBreak() } - if yyb4409 { + if yyb4383 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55023,26 +54724,26 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4414 := &x.Items - yym4415 := z.DecBinary() - _ = yym4415 + yyv4388 := &x.Items + yym4389 := z.DecBinary() + _ = yym4389 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4414), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4388), d) } } for { - yyj4409++ - if yyhl4409 { - yyb4409 = yyj4409 > l + yyj4383++ + if yyhl4383 { + yyb4383 = yyj4383 > l } else { - yyb4409 = r.CheckBreak() + yyb4383 = r.CheckBreak() } - if yyb4409 { + if yyb4383 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4409-1, "") + z.DecStructFieldNotFound(yyj4383-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55051,8 +54752,8 @@ func (x PatchType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4416 := z.EncBinary() - _ = yym4416 + yym4390 := z.EncBinary() + _ = yym4390 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -55064,8 +54765,8 @@ func (x *PatchType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4417 := z.DecBinary() - _ = yym4417 + yym4391 := z.DecBinary() + _ = yym4391 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -55077,8 +54778,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4418 := z.EncBinary() - _ = yym4418 + yym4392 := z.EncBinary() + _ = yym4392 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -55090,8 +54791,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4419 := z.DecBinary() - _ = yym4419 + yym4393 := z.DecBinary() + _ = yym4393 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -55106,32 +54807,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4420 := z.EncBinary() - _ = yym4420 + yym4394 := z.EncBinary() + _ = yym4394 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4421 := !z.EncBinary() - yy2arr4421 := z.EncBasicHandle().StructToArray - var yyq4421 [4]bool - _, _, _ = yysep4421, yyq4421, yy2arr4421 - const yyr4421 bool = false - yyq4421[2] = x.Message != "" - yyq4421[3] = x.Error != "" - var yynn4421 int - if yyr4421 || yy2arr4421 { + yysep4395 := !z.EncBinary() + yy2arr4395 := z.EncBasicHandle().StructToArray + var yyq4395 [4]bool + _, _, _ = yysep4395, yyq4395, yy2arr4395 + const yyr4395 bool = false + yyq4395[2] = x.Message != "" + yyq4395[3] = x.Error != "" + var yynn4395 int + if yyr4395 || yy2arr4395 { r.EncodeArrayStart(4) } else { - yynn4421 = 2 - for _, b := range yyq4421 { + yynn4395 = 2 + for _, b := range yyq4395 { if b { - yynn4421++ + yynn4395++ } } - r.EncodeMapStart(yynn4421) - yynn4421 = 0 + r.EncodeMapStart(yynn4395) + yynn4395 = 0 } - if yyr4421 || yy2arr4421 { + if yyr4395 || yy2arr4395 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -55140,7 +54841,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr4421 || yy2arr4421 { + if yyr4395 || yy2arr4395 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -55149,11 +54850,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr4421 || yy2arr4421 { + if yyr4395 || yy2arr4395 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4421[2] { - yym4425 := z.EncBinary() - _ = yym4425 + if yyq4395[2] { + yym4399 := z.EncBinary() + _ = yym4399 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -55162,23 +54863,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4421[2] { + if yyq4395[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4426 := z.EncBinary() - _ = yym4426 + yym4400 := z.EncBinary() + _ = yym4400 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr4421 || yy2arr4421 { + if yyr4395 || yy2arr4395 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4421[3] { - yym4428 := z.EncBinary() - _ = yym4428 + if yyq4395[3] { + yym4402 := z.EncBinary() + _ = yym4402 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -55187,19 +54888,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4421[3] { + if yyq4395[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4429 := z.EncBinary() - _ = yym4429 + yym4403 := z.EncBinary() + _ = yym4403 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr4421 || yy2arr4421 { + if yyr4395 || yy2arr4395 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55209,6 +54910,319 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { } func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4404 := z.DecBinary() + _ = yym4404 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct4405 := r.ContainerType() + if yyct4405 == codecSelferValueTypeMap1234 { + yyl4405 := r.ReadMapStart() + if yyl4405 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl4405, d) + } + } else if yyct4405 == codecSelferValueTypeArray1234 { + yyl4405 := r.ReadArrayStart() + if yyl4405 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl4405, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys4406Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4406Slc + var yyhl4406 bool = l >= 0 + for yyj4406 := 0; ; yyj4406++ { + if yyhl4406 { + if yyj4406 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys4406Slc = r.DecodeBytes(yys4406Slc, true, true) + yys4406 := string(yys4406Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys4406 { + case "type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = ComponentConditionType(r.DecodeString()) + } + case "status": + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = ConditionStatus(r.DecodeString()) + } + case "message": + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } + case "error": + if r.TryDecodeAsNil() { + x.Error = "" + } else { + x.Error = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys4406) + } // end switch yys4406 + } // end for yyj4406 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4411 int + var yyb4411 bool + var yyhl4411 bool = l >= 0 + yyj4411++ + if yyhl4411 { + yyb4411 = yyj4411 > l + } else { + yyb4411 = r.CheckBreak() + } + if yyb4411 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = ComponentConditionType(r.DecodeString()) + } + yyj4411++ + if yyhl4411 { + yyb4411 = yyj4411 > l + } else { + yyb4411 = r.CheckBreak() + } + if yyb4411 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = ConditionStatus(r.DecodeString()) + } + yyj4411++ + if yyhl4411 { + yyb4411 = yyj4411 > l + } else { + yyb4411 = r.CheckBreak() + } + if yyb4411 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } + yyj4411++ + if yyhl4411 { + yyb4411 = yyj4411 > l + } else { + yyb4411 = r.CheckBreak() + } + if yyb4411 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Error = "" + } else { + x.Error = string(r.DecodeString()) + } + for { + yyj4411++ + if yyhl4411 { + yyb4411 = yyj4411 > l + } else { + yyb4411 = r.CheckBreak() + } + if yyb4411 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj4411-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym4416 := z.EncBinary() + _ = yym4416 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep4417 := !z.EncBinary() + yy2arr4417 := z.EncBasicHandle().StructToArray + var yyq4417 [4]bool + _, _, _ = yysep4417, yyq4417, yy2arr4417 + const yyr4417 bool = false + yyq4417[0] = x.Kind != "" + yyq4417[1] = x.APIVersion != "" + yyq4417[2] = true + yyq4417[3] = len(x.Conditions) != 0 + var yynn4417 int + if yyr4417 || yy2arr4417 { + r.EncodeArrayStart(4) + } else { + yynn4417 = 0 + for _, b := range yyq4417 { + if b { + yynn4417++ + } + } + r.EncodeMapStart(yynn4417) + yynn4417 = 0 + } + if yyr4417 || yy2arr4417 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4417[0] { + yym4419 := z.EncBinary() + _ = yym4419 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4417[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4420 := z.EncBinary() + _ = yym4420 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4417 || yy2arr4417 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4417[1] { + yym4422 := z.EncBinary() + _ = yym4422 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4417[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4423 := z.EncBinary() + _ = yym4423 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr4417 || yy2arr4417 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4417[2] { + yy4425 := &x.ObjectMeta + yy4425.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq4417[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy4426 := &x.ObjectMeta + yy4426.CodecEncodeSelf(e) + } + } + if yyr4417 || yy2arr4417 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4417[3] { + if x.Conditions == nil { + r.EncodeNil() + } else { + yym4428 := z.EncBinary() + _ = yym4428 + if false { + } else { + h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq4417[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("conditions")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Conditions == nil { + r.EncodeNil() + } else { + yym4429 := z.EncBinary() + _ = yym4429 + if false { + } else { + h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) + } + } + } + } + if yyr4417 || yy2arr4417 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -55238,7 +55252,7 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -55260,319 +55274,6 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) yys4432 := string(yys4432Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys4432 { - case "type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = ComponentConditionType(r.DecodeString()) - } - case "status": - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = ConditionStatus(r.DecodeString()) - } - case "message": - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = string(r.DecodeString()) - } - case "error": - if r.TryDecodeAsNil() { - x.Error = "" - } else { - x.Error = string(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys4432) - } // end switch yys4432 - } // end for yyj4432 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj4437 int - var yyb4437 bool - var yyhl4437 bool = l >= 0 - yyj4437++ - if yyhl4437 { - yyb4437 = yyj4437 > l - } else { - yyb4437 = r.CheckBreak() - } - if yyb4437 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = ComponentConditionType(r.DecodeString()) - } - yyj4437++ - if yyhl4437 { - yyb4437 = yyj4437 > l - } else { - yyb4437 = r.CheckBreak() - } - if yyb4437 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = ConditionStatus(r.DecodeString()) - } - yyj4437++ - if yyhl4437 { - yyb4437 = yyj4437 > l - } else { - yyb4437 = r.CheckBreak() - } - if yyb4437 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = string(r.DecodeString()) - } - yyj4437++ - if yyhl4437 { - yyb4437 = yyj4437 > l - } else { - yyb4437 = r.CheckBreak() - } - if yyb4437 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Error = "" - } else { - x.Error = string(r.DecodeString()) - } - for { - yyj4437++ - if yyhl4437 { - yyb4437 = yyj4437 > l - } else { - yyb4437 = r.CheckBreak() - } - if yyb4437 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4437-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym4442 := z.EncBinary() - _ = yym4442 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep4443 := !z.EncBinary() - yy2arr4443 := z.EncBasicHandle().StructToArray - var yyq4443 [4]bool - _, _, _ = yysep4443, yyq4443, yy2arr4443 - const yyr4443 bool = false - yyq4443[0] = x.Kind != "" - yyq4443[1] = x.APIVersion != "" - yyq4443[2] = true - yyq4443[3] = len(x.Conditions) != 0 - var yynn4443 int - if yyr4443 || yy2arr4443 { - r.EncodeArrayStart(4) - } else { - yynn4443 = 0 - for _, b := range yyq4443 { - if b { - yynn4443++ - } - } - r.EncodeMapStart(yynn4443) - yynn4443 = 0 - } - if yyr4443 || yy2arr4443 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4443[0] { - yym4445 := z.EncBinary() - _ = yym4445 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4443[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4446 := z.EncBinary() - _ = yym4446 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4443 || yy2arr4443 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4443[1] { - yym4448 := z.EncBinary() - _ = yym4448 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4443[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4449 := z.EncBinary() - _ = yym4449 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr4443 || yy2arr4443 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4443[2] { - yy4451 := &x.ObjectMeta - yy4451.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq4443[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4452 := &x.ObjectMeta - yy4452.CodecEncodeSelf(e) - } - } - if yyr4443 || yy2arr4443 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4443[3] { - if x.Conditions == nil { - r.EncodeNil() - } else { - yym4454 := z.EncBinary() - _ = yym4454 - if false { - } else { - h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq4443[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("conditions")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Conditions == nil { - r.EncodeNil() - } else { - yym4455 := z.EncBinary() - _ = yym4455 - if false { - } else { - h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) - } - } - } - } - if yyr4443 || yy2arr4443 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4456 := z.DecBinary() - _ = yym4456 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct4457 := r.ContainerType() - if yyct4457 == codecSelferValueTypeMap1234 { - yyl4457 := r.ReadMapStart() - if yyl4457 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl4457, d) - } - } else if yyct4457 == codecSelferValueTypeArray1234 { - yyl4457 := r.ReadArrayStart() - if yyl4457 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl4457, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys4458Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4458Slc - var yyhl4458 bool = l >= 0 - for yyj4458 := 0; ; yyj4458++ { - if yyhl4458 { - if yyj4458 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4458Slc = r.DecodeBytes(yys4458Slc, true, true) - yys4458 := string(yys4458Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4458 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -55589,25 +55290,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4461 := &x.ObjectMeta - yyv4461.CodecDecodeSelf(d) + yyv4435 := &x.ObjectMeta + yyv4435.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4462 := &x.Conditions - yym4463 := z.DecBinary() - _ = yym4463 + yyv4436 := &x.Conditions + yym4437 := z.DecBinary() + _ = yym4437 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4462), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4436), d) } } default: - z.DecStructFieldNotFound(-1, yys4458) - } // end switch yys4458 - } // end for yyj4458 + z.DecStructFieldNotFound(-1, yys4432) + } // end switch yys4432 + } // end for yyj4432 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55615,16 +55316,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4464 int - var yyb4464 bool - var yyhl4464 bool = l >= 0 - yyj4464++ - if yyhl4464 { - yyb4464 = yyj4464 > l + var yyj4438 int + var yyb4438 bool + var yyhl4438 bool = l >= 0 + yyj4438++ + if yyhl4438 { + yyb4438 = yyj4438 > l } else { - yyb4464 = r.CheckBreak() + yyb4438 = r.CheckBreak() } - if yyb4464 { + if yyb4438 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55634,13 +55335,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4464++ - if yyhl4464 { - yyb4464 = yyj4464 > l + yyj4438++ + if yyhl4438 { + yyb4438 = yyj4438 > l } else { - yyb4464 = r.CheckBreak() + yyb4438 = r.CheckBreak() } - if yyb4464 { + if yyb4438 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55650,13 +55351,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4464++ - if yyhl4464 { - yyb4464 = yyj4464 > l + yyj4438++ + if yyhl4438 { + yyb4438 = yyj4438 > l } else { - yyb4464 = r.CheckBreak() + yyb4438 = r.CheckBreak() } - if yyb4464 { + if yyb4438 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55664,16 +55365,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4467 := &x.ObjectMeta - yyv4467.CodecDecodeSelf(d) + yyv4441 := &x.ObjectMeta + yyv4441.CodecDecodeSelf(d) } - yyj4464++ - if yyhl4464 { - yyb4464 = yyj4464 > l + yyj4438++ + if yyhl4438 { + yyb4438 = yyj4438 > l } else { - yyb4464 = r.CheckBreak() + yyb4438 = r.CheckBreak() } - if yyb4464 { + if yyb4438 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55681,26 +55382,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4468 := &x.Conditions - yym4469 := z.DecBinary() - _ = yym4469 + yyv4442 := &x.Conditions + yym4443 := z.DecBinary() + _ = yym4443 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4468), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4442), d) } } for { - yyj4464++ - if yyhl4464 { - yyb4464 = yyj4464 > l + yyj4438++ + if yyhl4438 { + yyb4438 = yyj4438 > l } else { - yyb4464 = r.CheckBreak() + yyb4438 = r.CheckBreak() } - if yyb4464 { + if yyb4438 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4464-1, "") + z.DecStructFieldNotFound(yyj4438-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55712,37 +55413,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4470 := z.EncBinary() - _ = yym4470 + yym4444 := z.EncBinary() + _ = yym4444 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4471 := !z.EncBinary() - yy2arr4471 := z.EncBasicHandle().StructToArray - var yyq4471 [4]bool - _, _, _ = yysep4471, yyq4471, yy2arr4471 - const yyr4471 bool = false - yyq4471[0] = x.Kind != "" - yyq4471[1] = x.APIVersion != "" - yyq4471[2] = true - var yynn4471 int - if yyr4471 || yy2arr4471 { + yysep4445 := !z.EncBinary() + yy2arr4445 := z.EncBasicHandle().StructToArray + var yyq4445 [4]bool + _, _, _ = yysep4445, yyq4445, yy2arr4445 + const yyr4445 bool = false + yyq4445[0] = x.Kind != "" + yyq4445[1] = x.APIVersion != "" + yyq4445[2] = true + var yynn4445 int + if yyr4445 || yy2arr4445 { r.EncodeArrayStart(4) } else { - yynn4471 = 1 - for _, b := range yyq4471 { + yynn4445 = 1 + for _, b := range yyq4445 { if b { - yynn4471++ + yynn4445++ } } - r.EncodeMapStart(yynn4471) - yynn4471 = 0 + r.EncodeMapStart(yynn4445) + yynn4445 = 0 } - if yyr4471 || yy2arr4471 { + if yyr4445 || yy2arr4445 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4471[0] { - yym4473 := z.EncBinary() - _ = yym4473 + if yyq4445[0] { + yym4447 := z.EncBinary() + _ = yym4447 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -55751,23 +55452,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4471[0] { + if yyq4445[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4474 := z.EncBinary() - _ = yym4474 + yym4448 := z.EncBinary() + _ = yym4448 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4471 || yy2arr4471 { + if yyr4445 || yy2arr4445 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4471[1] { - yym4476 := z.EncBinary() - _ = yym4476 + if yyq4445[1] { + yym4450 := z.EncBinary() + _ = yym4450 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -55776,54 +55477,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4471[1] { + if yyq4445[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4477 := z.EncBinary() - _ = yym4477 + yym4451 := z.EncBinary() + _ = yym4451 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4471 || yy2arr4471 { + if yyr4445 || yy2arr4445 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4471[2] { - yy4479 := &x.ListMeta - yym4480 := z.EncBinary() - _ = yym4480 + if yyq4445[2] { + yy4453 := &x.ListMeta + yym4454 := z.EncBinary() + _ = yym4454 if false { - } else if z.HasExtensions() && z.EncExt(yy4479) { + } else if z.HasExtensions() && z.EncExt(yy4453) { } else { - z.EncFallback(yy4479) + z.EncFallback(yy4453) } } else { r.EncodeNil() } } else { - if yyq4471[2] { + if yyq4445[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4481 := &x.ListMeta - yym4482 := z.EncBinary() - _ = yym4482 + yy4455 := &x.ListMeta + yym4456 := z.EncBinary() + _ = yym4456 if false { - } else if z.HasExtensions() && z.EncExt(yy4481) { + } else if z.HasExtensions() && z.EncExt(yy4455) { } else { - z.EncFallback(yy4481) + z.EncFallback(yy4455) } } } - if yyr4471 || yy2arr4471 { + if yyr4445 || yy2arr4445 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4484 := z.EncBinary() - _ = yym4484 + yym4458 := z.EncBinary() + _ = yym4458 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -55836,15 +55537,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4485 := z.EncBinary() - _ = yym4485 + yym4459 := z.EncBinary() + _ = yym4459 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4471 || yy2arr4471 { + if yyr4445 || yy2arr4445 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55857,25 +55558,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4486 := z.DecBinary() - _ = yym4486 + yym4460 := z.DecBinary() + _ = yym4460 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4487 := r.ContainerType() - if yyct4487 == codecSelferValueTypeMap1234 { - yyl4487 := r.ReadMapStart() - if yyl4487 == 0 { + yyct4461 := r.ContainerType() + if yyct4461 == codecSelferValueTypeMap1234 { + yyl4461 := r.ReadMapStart() + if yyl4461 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4487, d) + x.codecDecodeSelfFromMap(yyl4461, d) } - } else if yyct4487 == codecSelferValueTypeArray1234 { - yyl4487 := r.ReadArrayStart() - if yyl4487 == 0 { + } else if yyct4461 == codecSelferValueTypeArray1234 { + yyl4461 := r.ReadArrayStart() + if yyl4461 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4487, d) + x.codecDecodeSelfFromArray(yyl4461, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55887,12 +55588,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4488Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4488Slc - var yyhl4488 bool = l >= 0 - for yyj4488 := 0; ; yyj4488++ { - if yyhl4488 { - if yyj4488 >= l { + var yys4462Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4462Slc + var yyhl4462 bool = l >= 0 + for yyj4462 := 0; ; yyj4462++ { + if yyhl4462 { + if yyj4462 >= l { break } } else { @@ -55901,10 +55602,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4488Slc = r.DecodeBytes(yys4488Slc, true, true) - yys4488 := string(yys4488Slc) + yys4462Slc = r.DecodeBytes(yys4462Slc, true, true) + yys4462 := string(yys4462Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4488 { + switch yys4462 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -55921,31 +55622,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4491 := &x.ListMeta - yym4492 := z.DecBinary() - _ = yym4492 + yyv4465 := &x.ListMeta + yym4466 := z.DecBinary() + _ = yym4466 if false { - } else if z.HasExtensions() && z.DecExt(yyv4491) { + } else if z.HasExtensions() && z.DecExt(yyv4465) { } else { - z.DecFallback(yyv4491, false) + z.DecFallback(yyv4465, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4493 := &x.Items - yym4494 := z.DecBinary() - _ = yym4494 + yyv4467 := &x.Items + yym4468 := z.DecBinary() + _ = yym4468 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4493), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4467), d) } } default: - z.DecStructFieldNotFound(-1, yys4488) - } // end switch yys4488 - } // end for yyj4488 + z.DecStructFieldNotFound(-1, yys4462) + } // end switch yys4462 + } // end for yyj4462 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55953,16 +55654,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod 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 yyj4469 int + var yyb4469 bool + var yyhl4469 bool = l >= 0 + yyj4469++ + if yyhl4469 { + yyb4469 = yyj4469 > l } else { - yyb4495 = r.CheckBreak() + yyb4469 = r.CheckBreak() } - if yyb4495 { + if yyb4469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55972,13 +55673,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj4495++ - if yyhl4495 { - yyb4495 = yyj4495 > l + yyj4469++ + if yyhl4469 { + yyb4469 = yyj4469 > l } else { - yyb4495 = r.CheckBreak() + yyb4469 = r.CheckBreak() } - if yyb4495 { + if yyb4469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55988,13 +55689,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj4495++ - if yyhl4495 { - yyb4495 = yyj4495 > l + yyj4469++ + if yyhl4469 { + yyb4469 = yyj4469 > l } else { - yyb4495 = r.CheckBreak() + yyb4469 = r.CheckBreak() } - if yyb4495 { + if yyb4469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56002,22 +55703,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4498 := &x.ListMeta - yym4499 := z.DecBinary() - _ = yym4499 + yyv4472 := &x.ListMeta + yym4473 := z.DecBinary() + _ = yym4473 if false { - } else if z.HasExtensions() && z.DecExt(yyv4498) { + } else if z.HasExtensions() && z.DecExt(yyv4472) { } else { - z.DecFallback(yyv4498, false) + z.DecFallback(yyv4472, false) } } - yyj4495++ - if yyhl4495 { - yyb4495 = yyj4495 > l + yyj4469++ + if yyhl4469 { + yyb4469 = yyj4469 > l } else { - yyb4495 = r.CheckBreak() + yyb4469 = r.CheckBreak() } - if yyb4495 { + if yyb4469 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56025,26 +55726,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4500 := &x.Items - yym4501 := z.DecBinary() - _ = yym4501 + yyv4474 := &x.Items + yym4475 := z.DecBinary() + _ = yym4475 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4500), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4474), d) } } for { - yyj4495++ - if yyhl4495 { - yyb4495 = yyj4495 > l + yyj4469++ + if yyhl4469 { + yyb4469 = yyj4469 > l } else { - yyb4495 = r.CheckBreak() + yyb4469 = r.CheckBreak() } - if yyb4495 { + if yyb4469 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4495-1, "") + z.DecStructFieldNotFound(yyj4469-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56056,38 +55757,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4502 := z.EncBinary() - _ = yym4502 + yym4476 := z.EncBinary() + _ = yym4476 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4503 := !z.EncBinary() - yy2arr4503 := z.EncBasicHandle().StructToArray - var yyq4503 [6]bool - _, _, _ = yysep4503, yyq4503, yy2arr4503 - const yyr4503 bool = false - yyq4503[0] = x.Capabilities != nil - yyq4503[1] = x.Privileged != nil - yyq4503[2] = x.SELinuxOptions != nil - yyq4503[3] = x.RunAsUser != nil - yyq4503[4] = x.RunAsNonRoot != nil - yyq4503[5] = x.ReadOnlyRootFilesystem != nil - var yynn4503 int - if yyr4503 || yy2arr4503 { + yysep4477 := !z.EncBinary() + yy2arr4477 := z.EncBasicHandle().StructToArray + var yyq4477 [6]bool + _, _, _ = yysep4477, yyq4477, yy2arr4477 + const yyr4477 bool = false + yyq4477[0] = x.Capabilities != nil + yyq4477[1] = x.Privileged != nil + yyq4477[2] = x.SELinuxOptions != nil + yyq4477[3] = x.RunAsUser != nil + yyq4477[4] = x.RunAsNonRoot != nil + yyq4477[5] = x.ReadOnlyRootFilesystem != nil + var yynn4477 int + if yyr4477 || yy2arr4477 { r.EncodeArrayStart(6) } else { - yynn4503 = 0 - for _, b := range yyq4503 { + yynn4477 = 0 + for _, b := range yyq4477 { if b { - yynn4503++ + yynn4477++ } } - r.EncodeMapStart(yynn4503) - yynn4503 = 0 + r.EncodeMapStart(yynn4477) + yynn4477 = 0 } - if yyr4503 || yy2arr4503 { + if yyr4477 || yy2arr4477 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4503[0] { + if yyq4477[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -56097,7 +55798,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4503[0] { + if yyq4477[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -56108,44 +55809,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4503 || yy2arr4503 { + if yyr4477 || yy2arr4477 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4503[1] { + if yyq4477[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4506 := *x.Privileged - yym4507 := z.EncBinary() - _ = yym4507 + yy4480 := *x.Privileged + yym4481 := z.EncBinary() + _ = yym4481 if false { } else { - r.EncodeBool(bool(yy4506)) + r.EncodeBool(bool(yy4480)) } } } else { r.EncodeNil() } } else { - if yyq4503[1] { + if yyq4477[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4508 := *x.Privileged - yym4509 := z.EncBinary() - _ = yym4509 + yy4482 := *x.Privileged + yym4483 := z.EncBinary() + _ = yym4483 if false { } else { - r.EncodeBool(bool(yy4508)) + r.EncodeBool(bool(yy4482)) } } } } - if yyr4503 || yy2arr4503 { + if yyr4477 || yy2arr4477 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4503[2] { + if yyq4477[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -56155,7 +55856,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4503[2] { + if yyq4477[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -56166,112 +55867,112 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4503 || yy2arr4503 { + if yyr4477 || yy2arr4477 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4503[3] { + if yyq4477[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4512 := *x.RunAsUser - yym4513 := z.EncBinary() - _ = yym4513 + yy4486 := *x.RunAsUser + yym4487 := z.EncBinary() + _ = yym4487 if false { } else { - r.EncodeInt(int64(yy4512)) + r.EncodeInt(int64(yy4486)) } } } else { r.EncodeNil() } } else { - if yyq4503[3] { + if yyq4477[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4514 := *x.RunAsUser - yym4515 := z.EncBinary() - _ = yym4515 + yy4488 := *x.RunAsUser + yym4489 := z.EncBinary() + _ = yym4489 if false { } else { - r.EncodeInt(int64(yy4514)) + r.EncodeInt(int64(yy4488)) } } } } - if yyr4503 || yy2arr4503 { + if yyr4477 || yy2arr4477 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4503[4] { + if yyq4477[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4517 := *x.RunAsNonRoot - yym4518 := z.EncBinary() - _ = yym4518 + yy4491 := *x.RunAsNonRoot + yym4492 := z.EncBinary() + _ = yym4492 if false { } else { - r.EncodeBool(bool(yy4517)) + r.EncodeBool(bool(yy4491)) } } } else { r.EncodeNil() } } else { - if yyq4503[4] { + if yyq4477[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4519 := *x.RunAsNonRoot - yym4520 := z.EncBinary() - _ = yym4520 + yy4493 := *x.RunAsNonRoot + yym4494 := z.EncBinary() + _ = yym4494 if false { } else { - r.EncodeBool(bool(yy4519)) + r.EncodeBool(bool(yy4493)) } } } } - if yyr4503 || yy2arr4503 { + if yyr4477 || yy2arr4477 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4503[5] { + if yyq4477[5] { if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4522 := *x.ReadOnlyRootFilesystem - yym4523 := z.EncBinary() - _ = yym4523 + yy4496 := *x.ReadOnlyRootFilesystem + yym4497 := z.EncBinary() + _ = yym4497 if false { } else { - r.EncodeBool(bool(yy4522)) + r.EncodeBool(bool(yy4496)) } } } else { r.EncodeNil() } } else { - if yyq4503[5] { + if yyq4477[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4524 := *x.ReadOnlyRootFilesystem - yym4525 := z.EncBinary() - _ = yym4525 + yy4498 := *x.ReadOnlyRootFilesystem + yym4499 := z.EncBinary() + _ = yym4499 if false { } else { - r.EncodeBool(bool(yy4524)) + r.EncodeBool(bool(yy4498)) } } } } - if yyr4503 || yy2arr4503 { + if yyr4477 || yy2arr4477 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -56284,25 +55985,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4526 := z.DecBinary() - _ = yym4526 + yym4500 := z.DecBinary() + _ = yym4500 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4527 := r.ContainerType() - if yyct4527 == codecSelferValueTypeMap1234 { - yyl4527 := r.ReadMapStart() - if yyl4527 == 0 { + yyct4501 := r.ContainerType() + if yyct4501 == codecSelferValueTypeMap1234 { + yyl4501 := r.ReadMapStart() + if yyl4501 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4527, d) + x.codecDecodeSelfFromMap(yyl4501, d) } - } else if yyct4527 == codecSelferValueTypeArray1234 { - yyl4527 := r.ReadArrayStart() - if yyl4527 == 0 { + } else if yyct4501 == codecSelferValueTypeArray1234 { + yyl4501 := r.ReadArrayStart() + if yyl4501 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4527, d) + x.codecDecodeSelfFromArray(yyl4501, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -56314,12 +56015,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4528Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4528Slc - var yyhl4528 bool = l >= 0 - for yyj4528 := 0; ; yyj4528++ { - if yyhl4528 { - if yyj4528 >= l { + var yys4502Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4502Slc + var yyhl4502 bool = l >= 0 + for yyj4502 := 0; ; yyj4502++ { + if yyhl4502 { + if yyj4502 >= l { break } } else { @@ -56328,10 +56029,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4528Slc = r.DecodeBytes(yys4528Slc, true, true) - yys4528 := string(yys4528Slc) + yys4502Slc = r.DecodeBytes(yys4502Slc, true, true) + yys4502 := string(yys4502Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4528 { + switch yys4502 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -56352,8 +56053,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4531 := z.DecBinary() - _ = yym4531 + yym4505 := z.DecBinary() + _ = yym4505 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -56379,8 +56080,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4534 := z.DecBinary() - _ = yym4534 + yym4508 := z.DecBinary() + _ = yym4508 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -56395,8 +56096,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4536 := z.DecBinary() - _ = yym4536 + yym4510 := z.DecBinary() + _ = yym4510 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -56411,17 +56112,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4538 := z.DecBinary() - _ = yym4538 + yym4512 := z.DecBinary() + _ = yym4512 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4528) - } // end switch yys4528 - } // end for yyj4528 + z.DecStructFieldNotFound(-1, yys4502) + } // end switch yys4502 + } // end for yyj4502 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -56429,16 +56130,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4539 int - var yyb4539 bool - var yyhl4539 bool = l >= 0 - yyj4539++ - if yyhl4539 { - yyb4539 = yyj4539 > l + var yyj4513 int + var yyb4513 bool + var yyhl4513 bool = l >= 0 + yyj4513++ + if yyhl4513 { + yyb4513 = yyj4513 > l } else { - yyb4539 = r.CheckBreak() + yyb4513 = r.CheckBreak() } - if yyb4539 { + if yyb4513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56453,13 +56154,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4539++ - if yyhl4539 { - yyb4539 = yyj4539 > l + yyj4513++ + if yyhl4513 { + yyb4513 = yyj4513 > l } else { - yyb4539 = r.CheckBreak() + yyb4513 = r.CheckBreak() } - if yyb4539 { + if yyb4513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56472,20 +56173,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4542 := z.DecBinary() - _ = yym4542 + yym4516 := z.DecBinary() + _ = yym4516 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4539++ - if yyhl4539 { - yyb4539 = yyj4539 > l + yyj4513++ + if yyhl4513 { + yyb4513 = yyj4513 > l } else { - yyb4539 = r.CheckBreak() + yyb4513 = r.CheckBreak() } - if yyb4539 { + if yyb4513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56500,13 +56201,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4539++ - if yyhl4539 { - yyb4539 = yyj4539 > l + yyj4513++ + if yyhl4513 { + yyb4513 = yyj4513 > l } else { - yyb4539 = r.CheckBreak() + yyb4513 = r.CheckBreak() } - if yyb4539 { + if yyb4513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56519,20 +56220,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4545 := z.DecBinary() - _ = yym4545 + yym4519 := z.DecBinary() + _ = yym4519 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4539++ - if yyhl4539 { - yyb4539 = yyj4539 > l + yyj4513++ + if yyhl4513 { + yyb4513 = yyj4513 > l } else { - yyb4539 = r.CheckBreak() + yyb4513 = r.CheckBreak() } - if yyb4539 { + if yyb4513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56545,20 +56246,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4547 := z.DecBinary() - _ = yym4547 + yym4521 := z.DecBinary() + _ = yym4521 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4539++ - if yyhl4539 { - yyb4539 = yyj4539 > l + yyj4513++ + if yyhl4513 { + yyb4513 = yyj4513 > l } else { - yyb4539 = r.CheckBreak() + yyb4513 = r.CheckBreak() } - if yyb4539 { + if yyb4513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56571,25 +56272,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4549 := z.DecBinary() - _ = yym4549 + yym4523 := z.DecBinary() + _ = yym4523 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4539++ - if yyhl4539 { - yyb4539 = yyj4539 > l + yyj4513++ + if yyhl4513 { + yyb4513 = yyj4513 > l } else { - yyb4539 = r.CheckBreak() + yyb4513 = r.CheckBreak() } - if yyb4539 { + if yyb4513 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4539-1, "") + z.DecStructFieldNotFound(yyj4513-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56601,38 +56302,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4550 := z.EncBinary() - _ = yym4550 + yym4524 := z.EncBinary() + _ = yym4524 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4551 := !z.EncBinary() - yy2arr4551 := z.EncBasicHandle().StructToArray - var yyq4551 [4]bool - _, _, _ = yysep4551, yyq4551, yy2arr4551 - const yyr4551 bool = false - yyq4551[0] = x.User != "" - yyq4551[1] = x.Role != "" - yyq4551[2] = x.Type != "" - yyq4551[3] = x.Level != "" - var yynn4551 int - if yyr4551 || yy2arr4551 { + yysep4525 := !z.EncBinary() + yy2arr4525 := z.EncBasicHandle().StructToArray + var yyq4525 [4]bool + _, _, _ = yysep4525, yyq4525, yy2arr4525 + const yyr4525 bool = false + yyq4525[0] = x.User != "" + yyq4525[1] = x.Role != "" + yyq4525[2] = x.Type != "" + yyq4525[3] = x.Level != "" + var yynn4525 int + if yyr4525 || yy2arr4525 { r.EncodeArrayStart(4) } else { - yynn4551 = 0 - for _, b := range yyq4551 { + yynn4525 = 0 + for _, b := range yyq4525 { if b { - yynn4551++ + yynn4525++ } } - r.EncodeMapStart(yynn4551) - yynn4551 = 0 + r.EncodeMapStart(yynn4525) + yynn4525 = 0 } - if yyr4551 || yy2arr4551 { + if yyr4525 || yy2arr4525 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4551[0] { - yym4553 := z.EncBinary() - _ = yym4553 + if yyq4525[0] { + yym4527 := z.EncBinary() + _ = yym4527 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -56641,23 +56342,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4551[0] { + if yyq4525[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4554 := z.EncBinary() - _ = yym4554 + yym4528 := z.EncBinary() + _ = yym4528 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4551 || yy2arr4551 { + if yyr4525 || yy2arr4525 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4551[1] { - yym4556 := z.EncBinary() - _ = yym4556 + if yyq4525[1] { + yym4530 := z.EncBinary() + _ = yym4530 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -56666,23 +56367,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4551[1] { + if yyq4525[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4557 := z.EncBinary() - _ = yym4557 + yym4531 := z.EncBinary() + _ = yym4531 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr4551 || yy2arr4551 { + if yyr4525 || yy2arr4525 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4551[2] { - yym4559 := z.EncBinary() - _ = yym4559 + if yyq4525[2] { + yym4533 := z.EncBinary() + _ = yym4533 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -56691,23 +56392,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4551[2] { + if yyq4525[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4560 := z.EncBinary() - _ = yym4560 + yym4534 := z.EncBinary() + _ = yym4534 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4551 || yy2arr4551 { + if yyr4525 || yy2arr4525 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4551[3] { - yym4562 := z.EncBinary() - _ = yym4562 + if yyq4525[3] { + yym4536 := z.EncBinary() + _ = yym4536 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -56716,19 +56417,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4551[3] { + if yyq4525[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4563 := z.EncBinary() - _ = yym4563 + yym4537 := z.EncBinary() + _ = yym4537 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4551 || yy2arr4551 { + if yyr4525 || yy2arr4525 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -56741,25 +56442,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4564 := z.DecBinary() - _ = yym4564 + yym4538 := z.DecBinary() + _ = yym4538 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4565 := r.ContainerType() - if yyct4565 == codecSelferValueTypeMap1234 { - yyl4565 := r.ReadMapStart() - if yyl4565 == 0 { + yyct4539 := r.ContainerType() + if yyct4539 == codecSelferValueTypeMap1234 { + yyl4539 := r.ReadMapStart() + if yyl4539 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4565, d) + x.codecDecodeSelfFromMap(yyl4539, d) } - } else if yyct4565 == codecSelferValueTypeArray1234 { - yyl4565 := r.ReadArrayStart() - if yyl4565 == 0 { + } else if yyct4539 == codecSelferValueTypeArray1234 { + yyl4539 := r.ReadArrayStart() + if yyl4539 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4565, d) + x.codecDecodeSelfFromArray(yyl4539, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -56771,12 +56472,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4566Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4566Slc - var yyhl4566 bool = l >= 0 - for yyj4566 := 0; ; yyj4566++ { - if yyhl4566 { - if yyj4566 >= l { + var yys4540Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4540Slc + var yyhl4540 bool = l >= 0 + for yyj4540 := 0; ; yyj4540++ { + if yyhl4540 { + if yyj4540 >= l { break } } else { @@ -56785,10 +56486,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4566Slc = r.DecodeBytes(yys4566Slc, true, true) - yys4566 := string(yys4566Slc) + yys4540Slc = r.DecodeBytes(yys4540Slc, true, true) + yys4540 := string(yys4540Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4566 { + switch yys4540 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -56814,9 +56515,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4566) - } // end switch yys4566 - } // end for yyj4566 + z.DecStructFieldNotFound(-1, yys4540) + } // end switch yys4540 + } // end for yyj4540 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -56824,16 +56525,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4571 int - var yyb4571 bool - var yyhl4571 bool = l >= 0 - yyj4571++ - if yyhl4571 { - yyb4571 = yyj4571 > l + var yyj4545 int + var yyb4545 bool + var yyhl4545 bool = l >= 0 + yyj4545++ + if yyhl4545 { + yyb4545 = yyj4545 > l } else { - yyb4571 = r.CheckBreak() + yyb4545 = r.CheckBreak() } - if yyb4571 { + if yyb4545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56843,13 +56544,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4571++ - if yyhl4571 { - yyb4571 = yyj4571 > l + yyj4545++ + if yyhl4545 { + yyb4545 = yyj4545 > l } else { - yyb4571 = r.CheckBreak() + yyb4545 = r.CheckBreak() } - if yyb4571 { + if yyb4545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56859,13 +56560,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4571++ - if yyhl4571 { - yyb4571 = yyj4571 > l + yyj4545++ + if yyhl4545 { + yyb4545 = yyj4545 > l } else { - yyb4571 = r.CheckBreak() + yyb4545 = r.CheckBreak() } - if yyb4571 { + if yyb4545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56875,13 +56576,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4571++ - if yyhl4571 { - yyb4571 = yyj4571 > l + yyj4545++ + if yyhl4545 { + yyb4545 = yyj4545 > l } else { - yyb4571 = r.CheckBreak() + yyb4545 = r.CheckBreak() } - if yyb4571 { + if yyb4545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56892,17 +56593,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4571++ - if yyhl4571 { - yyb4571 = yyj4571 > l + yyj4545++ + if yyhl4545 { + yyb4545 = yyj4545 > l } else { - yyb4571 = r.CheckBreak() + yyb4545 = r.CheckBreak() } - if yyb4571 { + if yyb4545 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4571-1, "") + z.DecStructFieldNotFound(yyj4545-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56914,37 +56615,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4576 := z.EncBinary() - _ = yym4576 + yym4550 := z.EncBinary() + _ = yym4550 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4577 := !z.EncBinary() - yy2arr4577 := z.EncBasicHandle().StructToArray - var yyq4577 [5]bool - _, _, _ = yysep4577, yyq4577, yy2arr4577 - const yyr4577 bool = false - yyq4577[0] = x.Kind != "" - yyq4577[1] = x.APIVersion != "" - yyq4577[2] = true - var yynn4577 int - if yyr4577 || yy2arr4577 { + yysep4551 := !z.EncBinary() + yy2arr4551 := z.EncBasicHandle().StructToArray + var yyq4551 [5]bool + _, _, _ = yysep4551, yyq4551, yy2arr4551 + const yyr4551 bool = false + yyq4551[0] = x.Kind != "" + yyq4551[1] = x.APIVersion != "" + yyq4551[2] = true + var yynn4551 int + if yyr4551 || yy2arr4551 { r.EncodeArrayStart(5) } else { - yynn4577 = 2 - for _, b := range yyq4577 { + yynn4551 = 2 + for _, b := range yyq4551 { if b { - yynn4577++ + yynn4551++ } } - r.EncodeMapStart(yynn4577) - yynn4577 = 0 + r.EncodeMapStart(yynn4551) + yynn4551 = 0 } - if yyr4577 || yy2arr4577 { + if yyr4551 || yy2arr4551 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4577[0] { - yym4579 := z.EncBinary() - _ = yym4579 + if yyq4551[0] { + yym4553 := z.EncBinary() + _ = yym4553 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -56953,23 +56654,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4577[0] { + if yyq4551[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4580 := z.EncBinary() - _ = yym4580 + yym4554 := z.EncBinary() + _ = yym4554 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4577 || yy2arr4577 { + if yyr4551 || yy2arr4551 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4577[1] { - yym4582 := z.EncBinary() - _ = yym4582 + if yyq4551[1] { + yym4556 := z.EncBinary() + _ = yym4556 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -56978,39 +56679,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4577[1] { + if yyq4551[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4583 := z.EncBinary() - _ = yym4583 + yym4557 := z.EncBinary() + _ = yym4557 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4577 || yy2arr4577 { + if yyr4551 || yy2arr4551 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4577[2] { - yy4585 := &x.ObjectMeta - yy4585.CodecEncodeSelf(e) + if yyq4551[2] { + yy4559 := &x.ObjectMeta + yy4559.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4577[2] { + if yyq4551[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4586 := &x.ObjectMeta - yy4586.CodecEncodeSelf(e) + yy4560 := &x.ObjectMeta + yy4560.CodecEncodeSelf(e) } } - if yyr4577 || yy2arr4577 { + if yyr4551 || yy2arr4551 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4588 := z.EncBinary() - _ = yym4588 + yym4562 := z.EncBinary() + _ = yym4562 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -57019,20 +56720,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4589 := z.EncBinary() - _ = yym4589 + yym4563 := z.EncBinary() + _ = yym4563 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4577 || yy2arr4577 { + if yyr4551 || yy2arr4551 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4591 := z.EncBinary() - _ = yym4591 + yym4565 := z.EncBinary() + _ = yym4565 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -57045,15 +56746,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4592 := z.EncBinary() - _ = yym4592 + yym4566 := z.EncBinary() + _ = yym4566 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4577 || yy2arr4577 { + if yyr4551 || yy2arr4551 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -57066,25 +56767,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4593 := z.DecBinary() - _ = yym4593 + yym4567 := z.DecBinary() + _ = yym4567 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4594 := r.ContainerType() - if yyct4594 == codecSelferValueTypeMap1234 { - yyl4594 := r.ReadMapStart() - if yyl4594 == 0 { + yyct4568 := r.ContainerType() + if yyct4568 == codecSelferValueTypeMap1234 { + yyl4568 := r.ReadMapStart() + if yyl4568 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4594, d) + x.codecDecodeSelfFromMap(yyl4568, d) } - } else if yyct4594 == codecSelferValueTypeArray1234 { - yyl4594 := r.ReadArrayStart() - if yyl4594 == 0 { + } else if yyct4568 == codecSelferValueTypeArray1234 { + yyl4568 := r.ReadArrayStart() + if yyl4568 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4594, d) + x.codecDecodeSelfFromArray(yyl4568, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -57096,12 +56797,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4595Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4595Slc - var yyhl4595 bool = l >= 0 - for yyj4595 := 0; ; yyj4595++ { - if yyhl4595 { - if yyj4595 >= l { + var yys4569Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4569Slc + var yyhl4569 bool = l >= 0 + for yyj4569 := 0; ; yyj4569++ { + if yyhl4569 { + if yyj4569 >= l { break } } else { @@ -57110,10 +56811,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4595Slc = r.DecodeBytes(yys4595Slc, true, true) - yys4595 := string(yys4595Slc) + yys4569Slc = r.DecodeBytes(yys4569Slc, true, true) + yys4569 := string(yys4569Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4595 { + switch yys4569 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -57130,8 +56831,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4598 := &x.ObjectMeta - yyv4598.CodecDecodeSelf(d) + yyv4572 := &x.ObjectMeta + yyv4572.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -57143,18 +56844,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4600 := &x.Data - yym4601 := z.DecBinary() - _ = yym4601 + yyv4574 := &x.Data + yym4575 := z.DecBinary() + _ = yym4575 if false { } else { - *yyv4600 = r.DecodeBytes(*(*[]byte)(yyv4600), false, false) + *yyv4574 = r.DecodeBytes(*(*[]byte)(yyv4574), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4595) - } // end switch yys4595 - } // end for yyj4595 + z.DecStructFieldNotFound(-1, yys4569) + } // end switch yys4569 + } // end for yyj4569 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -57162,16 +56863,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4602 int - var yyb4602 bool - var yyhl4602 bool = l >= 0 - yyj4602++ - if yyhl4602 { - yyb4602 = yyj4602 > l + var yyj4576 int + var yyb4576 bool + var yyhl4576 bool = l >= 0 + yyj4576++ + if yyhl4576 { + yyb4576 = yyj4576 > l } else { - yyb4602 = r.CheckBreak() + yyb4576 = r.CheckBreak() } - if yyb4602 { + if yyb4576 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -57181,13 +56882,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4602++ - if yyhl4602 { - yyb4602 = yyj4602 > l + yyj4576++ + if yyhl4576 { + yyb4576 = yyj4576 > l } else { - yyb4602 = r.CheckBreak() + yyb4576 = r.CheckBreak() } - if yyb4602 { + if yyb4576 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -57197,13 +56898,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4602++ - if yyhl4602 { - yyb4602 = yyj4602 > l + yyj4576++ + if yyhl4576 { + yyb4576 = yyj4576 > l } else { - yyb4602 = r.CheckBreak() + yyb4576 = r.CheckBreak() } - if yyb4602 { + if yyb4576 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -57211,16 +56912,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4605 := &x.ObjectMeta - yyv4605.CodecDecodeSelf(d) + yyv4579 := &x.ObjectMeta + yyv4579.CodecDecodeSelf(d) } - yyj4602++ - if yyhl4602 { - yyb4602 = yyj4602 > l + yyj4576++ + if yyhl4576 { + yyb4576 = yyj4576 > l } else { - yyb4602 = r.CheckBreak() + yyb4576 = r.CheckBreak() } - if yyb4602 { + if yyb4576 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -57230,13 +56931,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4602++ - if yyhl4602 { - yyb4602 = yyj4602 > l + yyj4576++ + if yyhl4576 { + yyb4576 = yyj4576 > l } else { - yyb4602 = r.CheckBreak() + yyb4576 = r.CheckBreak() } - if yyb4602 { + if yyb4576 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -57244,26 +56945,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4607 := &x.Data - yym4608 := z.DecBinary() - _ = yym4608 + yyv4581 := &x.Data + yym4582 := z.DecBinary() + _ = yym4582 if false { } else { - *yyv4607 = r.DecodeBytes(*(*[]byte)(yyv4607), false, false) + *yyv4581 = r.DecodeBytes(*(*[]byte)(yyv4581), false, false) } } for { - yyj4602++ - if yyhl4602 { - yyb4602 = yyj4602 > l + yyj4576++ + if yyhl4576 { + yyb4576 = yyj4576 > l } else { - yyb4602 = r.CheckBreak() + yyb4576 = r.CheckBreak() } - if yyb4602 { + if yyb4576 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4602-1, "") + z.DecStructFieldNotFound(yyj4576-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57273,10 +56974,10 @@ func (x codecSelfer1234) encSliceOwnerReference(v []OwnerReference, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4609 := range v { + for _, yyv4583 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4610 := &yyv4609 - yy4610.CodecEncodeSelf(e) + yy4584 := &yyv4583 + yy4584.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57286,83 +56987,83 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4611 := *v - yyh4611, yyl4611 := z.DecSliceHelperStart() - var yyc4611 bool - if yyl4611 == 0 { - if yyv4611 == nil { - yyv4611 = []OwnerReference{} - yyc4611 = true - } else if len(yyv4611) != 0 { - yyv4611 = yyv4611[:0] - yyc4611 = true + yyv4585 := *v + yyh4585, yyl4585 := z.DecSliceHelperStart() + var yyc4585 bool + if yyl4585 == 0 { + if yyv4585 == nil { + yyv4585 = []OwnerReference{} + yyc4585 = true + } else if len(yyv4585) != 0 { + yyv4585 = yyv4585[:0] + yyc4585 = true } - } else if yyl4611 > 0 { - var yyrr4611, yyrl4611 int - var yyrt4611 bool - if yyl4611 > cap(yyv4611) { + } else if yyl4585 > 0 { + var yyrr4585, yyrl4585 int + var yyrt4585 bool + if yyl4585 > cap(yyv4585) { - yyrg4611 := len(yyv4611) > 0 - yyv24611 := yyv4611 - yyrl4611, yyrt4611 = z.DecInferLen(yyl4611, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4611 { - if yyrl4611 <= cap(yyv4611) { - yyv4611 = yyv4611[:yyrl4611] + yyrg4585 := len(yyv4585) > 0 + yyv24585 := yyv4585 + yyrl4585, yyrt4585 = z.DecInferLen(yyl4585, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4585 { + if yyrl4585 <= cap(yyv4585) { + yyv4585 = yyv4585[:yyrl4585] } else { - yyv4611 = make([]OwnerReference, yyrl4611) + yyv4585 = make([]OwnerReference, yyrl4585) } } else { - yyv4611 = make([]OwnerReference, yyrl4611) + yyv4585 = make([]OwnerReference, yyrl4585) } - yyc4611 = true - yyrr4611 = len(yyv4611) - if yyrg4611 { - copy(yyv4611, yyv24611) + yyc4585 = true + yyrr4585 = len(yyv4585) + if yyrg4585 { + copy(yyv4585, yyv24585) } - } else if yyl4611 != len(yyv4611) { - yyv4611 = yyv4611[:yyl4611] - yyc4611 = true + } else if yyl4585 != len(yyv4585) { + yyv4585 = yyv4585[:yyl4585] + yyc4585 = true } - yyj4611 := 0 - for ; yyj4611 < yyrr4611; yyj4611++ { - yyh4611.ElemContainerState(yyj4611) + yyj4585 := 0 + for ; yyj4585 < yyrr4585; yyj4585++ { + yyh4585.ElemContainerState(yyj4585) if r.TryDecodeAsNil() { - yyv4611[yyj4611] = OwnerReference{} + yyv4585[yyj4585] = OwnerReference{} } else { - yyv4612 := &yyv4611[yyj4611] - yyv4612.CodecDecodeSelf(d) + yyv4586 := &yyv4585[yyj4585] + yyv4586.CodecDecodeSelf(d) } } - if yyrt4611 { - for ; yyj4611 < yyl4611; yyj4611++ { - yyv4611 = append(yyv4611, OwnerReference{}) - yyh4611.ElemContainerState(yyj4611) + if yyrt4585 { + for ; yyj4585 < yyl4585; yyj4585++ { + yyv4585 = append(yyv4585, OwnerReference{}) + yyh4585.ElemContainerState(yyj4585) if r.TryDecodeAsNil() { - yyv4611[yyj4611] = OwnerReference{} + yyv4585[yyj4585] = OwnerReference{} } else { - yyv4613 := &yyv4611[yyj4611] - yyv4613.CodecDecodeSelf(d) + yyv4587 := &yyv4585[yyj4585] + yyv4587.CodecDecodeSelf(d) } } } } else { - yyj4611 := 0 - for ; !r.CheckBreak(); yyj4611++ { + yyj4585 := 0 + for ; !r.CheckBreak(); yyj4585++ { - if yyj4611 >= len(yyv4611) { - yyv4611 = append(yyv4611, OwnerReference{}) // var yyz4611 OwnerReference - yyc4611 = true + if yyj4585 >= len(yyv4585) { + yyv4585 = append(yyv4585, OwnerReference{}) // var yyz4585 OwnerReference + yyc4585 = true } - yyh4611.ElemContainerState(yyj4611) - if yyj4611 < len(yyv4611) { + yyh4585.ElemContainerState(yyj4585) + if yyj4585 < len(yyv4585) { if r.TryDecodeAsNil() { - yyv4611[yyj4611] = OwnerReference{} + yyv4585[yyj4585] = OwnerReference{} } else { - yyv4614 := &yyv4611[yyj4611] - yyv4614.CodecDecodeSelf(d) + yyv4588 := &yyv4585[yyj4585] + yyv4588.CodecDecodeSelf(d) } } else { @@ -57370,17 +57071,17 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 } } - if yyj4611 < len(yyv4611) { - yyv4611 = yyv4611[:yyj4611] - yyc4611 = true - } else if yyj4611 == 0 && yyv4611 == nil { - yyv4611 = []OwnerReference{} - yyc4611 = true + if yyj4585 < len(yyv4585) { + yyv4585 = yyv4585[:yyj4585] + yyc4585 = true + } else if yyj4585 == 0 && yyv4585 == nil { + yyv4585 = []OwnerReference{} + yyc4585 = true } } - yyh4611.End() - if yyc4611 { - *v = yyv4611 + yyh4585.End() + if yyc4585 { + *v = yyv4585 } } @@ -57389,9 +57090,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4615 := range v { + for _, yyv4589 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4615.CodecEncodeSelf(e) + yyv4589.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57401,75 +57102,75 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4616 := *v - yyh4616, yyl4616 := z.DecSliceHelperStart() - var yyc4616 bool - if yyl4616 == 0 { - if yyv4616 == nil { - yyv4616 = []PersistentVolumeAccessMode{} - yyc4616 = true - } else if len(yyv4616) != 0 { - yyv4616 = yyv4616[:0] - yyc4616 = true + yyv4590 := *v + yyh4590, yyl4590 := z.DecSliceHelperStart() + var yyc4590 bool + if yyl4590 == 0 { + if yyv4590 == nil { + yyv4590 = []PersistentVolumeAccessMode{} + yyc4590 = true + } else if len(yyv4590) != 0 { + yyv4590 = yyv4590[:0] + yyc4590 = true } - } else if yyl4616 > 0 { - var yyrr4616, yyrl4616 int - var yyrt4616 bool - if yyl4616 > cap(yyv4616) { + } else if yyl4590 > 0 { + var yyrr4590, yyrl4590 int + var yyrt4590 bool + if yyl4590 > cap(yyv4590) { - yyrl4616, yyrt4616 = z.DecInferLen(yyl4616, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4616 { - if yyrl4616 <= cap(yyv4616) { - yyv4616 = yyv4616[:yyrl4616] + yyrl4590, yyrt4590 = z.DecInferLen(yyl4590, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4590 { + if yyrl4590 <= cap(yyv4590) { + yyv4590 = yyv4590[:yyrl4590] } else { - yyv4616 = make([]PersistentVolumeAccessMode, yyrl4616) + yyv4590 = make([]PersistentVolumeAccessMode, yyrl4590) } } else { - yyv4616 = make([]PersistentVolumeAccessMode, yyrl4616) + yyv4590 = make([]PersistentVolumeAccessMode, yyrl4590) } - yyc4616 = true - yyrr4616 = len(yyv4616) - } else if yyl4616 != len(yyv4616) { - yyv4616 = yyv4616[:yyl4616] - yyc4616 = true + yyc4590 = true + yyrr4590 = len(yyv4590) + } else if yyl4590 != len(yyv4590) { + yyv4590 = yyv4590[:yyl4590] + yyc4590 = true } - yyj4616 := 0 - for ; yyj4616 < yyrr4616; yyj4616++ { - yyh4616.ElemContainerState(yyj4616) + yyj4590 := 0 + for ; yyj4590 < yyrr4590; yyj4590++ { + yyh4590.ElemContainerState(yyj4590) if r.TryDecodeAsNil() { - yyv4616[yyj4616] = "" + yyv4590[yyj4590] = "" } else { - yyv4616[yyj4616] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4590[yyj4590] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt4616 { - for ; yyj4616 < yyl4616; yyj4616++ { - yyv4616 = append(yyv4616, "") - yyh4616.ElemContainerState(yyj4616) + if yyrt4590 { + for ; yyj4590 < yyl4590; yyj4590++ { + yyv4590 = append(yyv4590, "") + yyh4590.ElemContainerState(yyj4590) if r.TryDecodeAsNil() { - yyv4616[yyj4616] = "" + yyv4590[yyj4590] = "" } else { - yyv4616[yyj4616] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4590[yyj4590] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj4616 := 0 - for ; !r.CheckBreak(); yyj4616++ { + yyj4590 := 0 + for ; !r.CheckBreak(); yyj4590++ { - if yyj4616 >= len(yyv4616) { - yyv4616 = append(yyv4616, "") // var yyz4616 PersistentVolumeAccessMode - yyc4616 = true + if yyj4590 >= len(yyv4590) { + yyv4590 = append(yyv4590, "") // var yyz4590 PersistentVolumeAccessMode + yyc4590 = true } - yyh4616.ElemContainerState(yyj4616) - if yyj4616 < len(yyv4616) { + yyh4590.ElemContainerState(yyj4590) + if yyj4590 < len(yyv4590) { if r.TryDecodeAsNil() { - yyv4616[yyj4616] = "" + yyv4590[yyj4590] = "" } else { - yyv4616[yyj4616] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4590[yyj4590] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -57477,17 +57178,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } - if yyj4616 < len(yyv4616) { - yyv4616 = yyv4616[:yyj4616] - yyc4616 = true - } else if yyj4616 == 0 && yyv4616 == nil { - yyv4616 = []PersistentVolumeAccessMode{} - yyc4616 = true + if yyj4590 < len(yyv4590) { + yyv4590 = yyv4590[:yyj4590] + yyc4590 = true + } else if yyj4590 == 0 && yyv4590 == nil { + yyv4590 = []PersistentVolumeAccessMode{} + yyc4590 = true } } - yyh4616.End() - if yyc4616 { - *v = yyv4616 + yyh4590.End() + if yyc4590 { + *v = yyv4590 } } @@ -57496,10 +57197,10 @@ func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4620 := range v { + for _, yyv4594 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4621 := &yyv4620 - yy4621.CodecEncodeSelf(e) + yy4595 := &yyv4594 + yy4595.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57509,83 +57210,83 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4622 := *v - yyh4622, yyl4622 := z.DecSliceHelperStart() - var yyc4622 bool - if yyl4622 == 0 { - if yyv4622 == nil { - yyv4622 = []PersistentVolume{} - yyc4622 = true - } else if len(yyv4622) != 0 { - yyv4622 = yyv4622[:0] - yyc4622 = true + yyv4596 := *v + yyh4596, yyl4596 := z.DecSliceHelperStart() + var yyc4596 bool + if yyl4596 == 0 { + if yyv4596 == nil { + yyv4596 = []PersistentVolume{} + yyc4596 = true + } else if len(yyv4596) != 0 { + yyv4596 = yyv4596[:0] + yyc4596 = true } - } else if yyl4622 > 0 { - var yyrr4622, yyrl4622 int - var yyrt4622 bool - if yyl4622 > cap(yyv4622) { + } else if yyl4596 > 0 { + var yyrr4596, yyrl4596 int + var yyrt4596 bool + if yyl4596 > cap(yyv4596) { - yyrg4622 := len(yyv4622) > 0 - yyv24622 := yyv4622 - yyrl4622, yyrt4622 = z.DecInferLen(yyl4622, z.DecBasicHandle().MaxInitLen, 496) - if yyrt4622 { - if yyrl4622 <= cap(yyv4622) { - yyv4622 = yyv4622[:yyrl4622] + yyrg4596 := len(yyv4596) > 0 + yyv24596 := yyv4596 + yyrl4596, yyrt4596 = z.DecInferLen(yyl4596, z.DecBasicHandle().MaxInitLen, 496) + if yyrt4596 { + if yyrl4596 <= cap(yyv4596) { + yyv4596 = yyv4596[:yyrl4596] } else { - yyv4622 = make([]PersistentVolume, yyrl4622) + yyv4596 = make([]PersistentVolume, yyrl4596) } } else { - yyv4622 = make([]PersistentVolume, yyrl4622) + yyv4596 = make([]PersistentVolume, yyrl4596) } - yyc4622 = true - yyrr4622 = len(yyv4622) - if yyrg4622 { - copy(yyv4622, yyv24622) + yyc4596 = true + yyrr4596 = len(yyv4596) + if yyrg4596 { + copy(yyv4596, yyv24596) } - } else if yyl4622 != len(yyv4622) { - yyv4622 = yyv4622[:yyl4622] - yyc4622 = true + } else if yyl4596 != len(yyv4596) { + yyv4596 = yyv4596[:yyl4596] + yyc4596 = true } - yyj4622 := 0 - for ; yyj4622 < yyrr4622; yyj4622++ { - yyh4622.ElemContainerState(yyj4622) + yyj4596 := 0 + for ; yyj4596 < yyrr4596; yyj4596++ { + yyh4596.ElemContainerState(yyj4596) if r.TryDecodeAsNil() { - yyv4622[yyj4622] = PersistentVolume{} + yyv4596[yyj4596] = PersistentVolume{} } else { - yyv4623 := &yyv4622[yyj4622] - yyv4623.CodecDecodeSelf(d) + yyv4597 := &yyv4596[yyj4596] + yyv4597.CodecDecodeSelf(d) } } - if yyrt4622 { - for ; yyj4622 < yyl4622; yyj4622++ { - yyv4622 = append(yyv4622, PersistentVolume{}) - yyh4622.ElemContainerState(yyj4622) + if yyrt4596 { + for ; yyj4596 < yyl4596; yyj4596++ { + yyv4596 = append(yyv4596, PersistentVolume{}) + yyh4596.ElemContainerState(yyj4596) if r.TryDecodeAsNil() { - yyv4622[yyj4622] = PersistentVolume{} + yyv4596[yyj4596] = PersistentVolume{} } else { - yyv4624 := &yyv4622[yyj4622] - yyv4624.CodecDecodeSelf(d) + yyv4598 := &yyv4596[yyj4596] + yyv4598.CodecDecodeSelf(d) } } } } else { - yyj4622 := 0 - for ; !r.CheckBreak(); yyj4622++ { + yyj4596 := 0 + for ; !r.CheckBreak(); yyj4596++ { - if yyj4622 >= len(yyv4622) { - yyv4622 = append(yyv4622, PersistentVolume{}) // var yyz4622 PersistentVolume - yyc4622 = true + if yyj4596 >= len(yyv4596) { + yyv4596 = append(yyv4596, PersistentVolume{}) // var yyz4596 PersistentVolume + yyc4596 = true } - yyh4622.ElemContainerState(yyj4622) - if yyj4622 < len(yyv4622) { + yyh4596.ElemContainerState(yyj4596) + if yyj4596 < len(yyv4596) { if r.TryDecodeAsNil() { - yyv4622[yyj4622] = PersistentVolume{} + yyv4596[yyj4596] = PersistentVolume{} } else { - yyv4625 := &yyv4622[yyj4622] - yyv4625.CodecDecodeSelf(d) + yyv4599 := &yyv4596[yyj4596] + yyv4599.CodecDecodeSelf(d) } } else { @@ -57593,17 +57294,17 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj4622 < len(yyv4622) { - yyv4622 = yyv4622[:yyj4622] - yyc4622 = true - } else if yyj4622 == 0 && yyv4622 == nil { - yyv4622 = []PersistentVolume{} - yyc4622 = true + if yyj4596 < len(yyv4596) { + yyv4596 = yyv4596[:yyj4596] + yyc4596 = true + } else if yyj4596 == 0 && yyv4596 == nil { + yyv4596 = []PersistentVolume{} + yyc4596 = true } } - yyh4622.End() - if yyc4622 { - *v = yyv4622 + yyh4596.End() + if yyc4596 { + *v = yyv4596 } } @@ -57612,10 +57313,10 @@ func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4626 := range v { + for _, yyv4600 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4627 := &yyv4626 - yy4627.CodecEncodeSelf(e) + yy4601 := &yyv4600 + yy4601.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57625,83 +57326,83 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4628 := *v - yyh4628, yyl4628 := z.DecSliceHelperStart() - var yyc4628 bool - if yyl4628 == 0 { - if yyv4628 == nil { - yyv4628 = []PersistentVolumeClaim{} - yyc4628 = true - } else if len(yyv4628) != 0 { - yyv4628 = yyv4628[:0] - yyc4628 = true + yyv4602 := *v + yyh4602, yyl4602 := z.DecSliceHelperStart() + var yyc4602 bool + if yyl4602 == 0 { + if yyv4602 == nil { + yyv4602 = []PersistentVolumeClaim{} + yyc4602 = true + } else if len(yyv4602) != 0 { + yyv4602 = yyv4602[:0] + yyc4602 = true } - } else if yyl4628 > 0 { - var yyrr4628, yyrl4628 int - var yyrt4628 bool - if yyl4628 > cap(yyv4628) { + } else if yyl4602 > 0 { + var yyrr4602, yyrl4602 int + var yyrt4602 bool + if yyl4602 > cap(yyv4602) { - yyrg4628 := len(yyv4628) > 0 - yyv24628 := yyv4628 - yyrl4628, yyrt4628 = z.DecInferLen(yyl4628, z.DecBasicHandle().MaxInitLen, 368) - if yyrt4628 { - if yyrl4628 <= cap(yyv4628) { - yyv4628 = yyv4628[:yyrl4628] + yyrg4602 := len(yyv4602) > 0 + yyv24602 := yyv4602 + yyrl4602, yyrt4602 = z.DecInferLen(yyl4602, z.DecBasicHandle().MaxInitLen, 368) + if yyrt4602 { + if yyrl4602 <= cap(yyv4602) { + yyv4602 = yyv4602[:yyrl4602] } else { - yyv4628 = make([]PersistentVolumeClaim, yyrl4628) + yyv4602 = make([]PersistentVolumeClaim, yyrl4602) } } else { - yyv4628 = make([]PersistentVolumeClaim, yyrl4628) + yyv4602 = make([]PersistentVolumeClaim, yyrl4602) } - yyc4628 = true - yyrr4628 = len(yyv4628) - if yyrg4628 { - copy(yyv4628, yyv24628) + yyc4602 = true + yyrr4602 = len(yyv4602) + if yyrg4602 { + copy(yyv4602, yyv24602) } - } else if yyl4628 != len(yyv4628) { - yyv4628 = yyv4628[:yyl4628] - yyc4628 = true + } else if yyl4602 != len(yyv4602) { + yyv4602 = yyv4602[:yyl4602] + yyc4602 = true } - yyj4628 := 0 - for ; yyj4628 < yyrr4628; yyj4628++ { - yyh4628.ElemContainerState(yyj4628) + yyj4602 := 0 + for ; yyj4602 < yyrr4602; yyj4602++ { + yyh4602.ElemContainerState(yyj4602) if r.TryDecodeAsNil() { - yyv4628[yyj4628] = PersistentVolumeClaim{} + yyv4602[yyj4602] = PersistentVolumeClaim{} } else { - yyv4629 := &yyv4628[yyj4628] - yyv4629.CodecDecodeSelf(d) + yyv4603 := &yyv4602[yyj4602] + yyv4603.CodecDecodeSelf(d) } } - if yyrt4628 { - for ; yyj4628 < yyl4628; yyj4628++ { - yyv4628 = append(yyv4628, PersistentVolumeClaim{}) - yyh4628.ElemContainerState(yyj4628) + if yyrt4602 { + for ; yyj4602 < yyl4602; yyj4602++ { + yyv4602 = append(yyv4602, PersistentVolumeClaim{}) + yyh4602.ElemContainerState(yyj4602) if r.TryDecodeAsNil() { - yyv4628[yyj4628] = PersistentVolumeClaim{} + yyv4602[yyj4602] = PersistentVolumeClaim{} } else { - yyv4630 := &yyv4628[yyj4628] - yyv4630.CodecDecodeSelf(d) + yyv4604 := &yyv4602[yyj4602] + yyv4604.CodecDecodeSelf(d) } } } } else { - yyj4628 := 0 - for ; !r.CheckBreak(); yyj4628++ { + yyj4602 := 0 + for ; !r.CheckBreak(); yyj4602++ { - if yyj4628 >= len(yyv4628) { - yyv4628 = append(yyv4628, PersistentVolumeClaim{}) // var yyz4628 PersistentVolumeClaim - yyc4628 = true + if yyj4602 >= len(yyv4602) { + yyv4602 = append(yyv4602, PersistentVolumeClaim{}) // var yyz4602 PersistentVolumeClaim + yyc4602 = true } - yyh4628.ElemContainerState(yyj4628) - if yyj4628 < len(yyv4628) { + yyh4602.ElemContainerState(yyj4602) + if yyj4602 < len(yyv4602) { if r.TryDecodeAsNil() { - yyv4628[yyj4628] = PersistentVolumeClaim{} + yyv4602[yyj4602] = PersistentVolumeClaim{} } else { - yyv4631 := &yyv4628[yyj4628] - yyv4631.CodecDecodeSelf(d) + yyv4605 := &yyv4602[yyj4602] + yyv4605.CodecDecodeSelf(d) } } else { @@ -57709,17 +57410,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj4628 < len(yyv4628) { - yyv4628 = yyv4628[:yyj4628] - yyc4628 = true - } else if yyj4628 == 0 && yyv4628 == nil { - yyv4628 = []PersistentVolumeClaim{} - yyc4628 = true + if yyj4602 < len(yyv4602) { + yyv4602 = yyv4602[:yyj4602] + yyc4602 = true + } else if yyj4602 == 0 && yyv4602 == nil { + yyv4602 = []PersistentVolumeClaim{} + yyc4602 = true } } - yyh4628.End() - if yyc4628 { - *v = yyv4628 + yyh4602.End() + if yyc4602 { + *v = yyv4602 } } @@ -57728,10 +57429,10 @@ func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4632 := range v { + for _, yyv4606 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4633 := &yyv4632 - yy4633.CodecEncodeSelf(e) + yy4607 := &yyv4606 + yy4607.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57741,83 +57442,83 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4634 := *v - yyh4634, yyl4634 := z.DecSliceHelperStart() - var yyc4634 bool - if yyl4634 == 0 { - if yyv4634 == nil { - yyv4634 = []KeyToPath{} - yyc4634 = true - } else if len(yyv4634) != 0 { - yyv4634 = yyv4634[:0] - yyc4634 = true + yyv4608 := *v + yyh4608, yyl4608 := z.DecSliceHelperStart() + var yyc4608 bool + if yyl4608 == 0 { + if yyv4608 == nil { + yyv4608 = []KeyToPath{} + yyc4608 = true + } else if len(yyv4608) != 0 { + yyv4608 = yyv4608[:0] + yyc4608 = true } - } else if yyl4634 > 0 { - var yyrr4634, yyrl4634 int - var yyrt4634 bool - if yyl4634 > cap(yyv4634) { + } else if yyl4608 > 0 { + var yyrr4608, yyrl4608 int + var yyrt4608 bool + if yyl4608 > cap(yyv4608) { - yyrg4634 := len(yyv4634) > 0 - yyv24634 := yyv4634 - yyrl4634, yyrt4634 = z.DecInferLen(yyl4634, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4634 { - if yyrl4634 <= cap(yyv4634) { - yyv4634 = yyv4634[:yyrl4634] + yyrg4608 := len(yyv4608) > 0 + yyv24608 := yyv4608 + yyrl4608, yyrt4608 = z.DecInferLen(yyl4608, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4608 { + if yyrl4608 <= cap(yyv4608) { + yyv4608 = yyv4608[:yyrl4608] } else { - yyv4634 = make([]KeyToPath, yyrl4634) + yyv4608 = make([]KeyToPath, yyrl4608) } } else { - yyv4634 = make([]KeyToPath, yyrl4634) + yyv4608 = make([]KeyToPath, yyrl4608) } - yyc4634 = true - yyrr4634 = len(yyv4634) - if yyrg4634 { - copy(yyv4634, yyv24634) + yyc4608 = true + yyrr4608 = len(yyv4608) + if yyrg4608 { + copy(yyv4608, yyv24608) } - } else if yyl4634 != len(yyv4634) { - yyv4634 = yyv4634[:yyl4634] - yyc4634 = true + } else if yyl4608 != len(yyv4608) { + yyv4608 = yyv4608[:yyl4608] + yyc4608 = true } - yyj4634 := 0 - for ; yyj4634 < yyrr4634; yyj4634++ { - yyh4634.ElemContainerState(yyj4634) + yyj4608 := 0 + for ; yyj4608 < yyrr4608; yyj4608++ { + yyh4608.ElemContainerState(yyj4608) if r.TryDecodeAsNil() { - yyv4634[yyj4634] = KeyToPath{} + yyv4608[yyj4608] = KeyToPath{} } else { - yyv4635 := &yyv4634[yyj4634] - yyv4635.CodecDecodeSelf(d) + yyv4609 := &yyv4608[yyj4608] + yyv4609.CodecDecodeSelf(d) } } - if yyrt4634 { - for ; yyj4634 < yyl4634; yyj4634++ { - yyv4634 = append(yyv4634, KeyToPath{}) - yyh4634.ElemContainerState(yyj4634) + if yyrt4608 { + for ; yyj4608 < yyl4608; yyj4608++ { + yyv4608 = append(yyv4608, KeyToPath{}) + yyh4608.ElemContainerState(yyj4608) if r.TryDecodeAsNil() { - yyv4634[yyj4634] = KeyToPath{} + yyv4608[yyj4608] = KeyToPath{} } else { - yyv4636 := &yyv4634[yyj4634] - yyv4636.CodecDecodeSelf(d) + yyv4610 := &yyv4608[yyj4608] + yyv4610.CodecDecodeSelf(d) } } } } else { - yyj4634 := 0 - for ; !r.CheckBreak(); yyj4634++ { + yyj4608 := 0 + for ; !r.CheckBreak(); yyj4608++ { - if yyj4634 >= len(yyv4634) { - yyv4634 = append(yyv4634, KeyToPath{}) // var yyz4634 KeyToPath - yyc4634 = true + if yyj4608 >= len(yyv4608) { + yyv4608 = append(yyv4608, KeyToPath{}) // var yyz4608 KeyToPath + yyc4608 = true } - yyh4634.ElemContainerState(yyj4634) - if yyj4634 < len(yyv4634) { + yyh4608.ElemContainerState(yyj4608) + if yyj4608 < len(yyv4608) { if r.TryDecodeAsNil() { - yyv4634[yyj4634] = KeyToPath{} + yyv4608[yyj4608] = KeyToPath{} } else { - yyv4637 := &yyv4634[yyj4634] - yyv4637.CodecDecodeSelf(d) + yyv4611 := &yyv4608[yyj4608] + yyv4611.CodecDecodeSelf(d) } } else { @@ -57825,17 +57526,17 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) } } - if yyj4634 < len(yyv4634) { - yyv4634 = yyv4634[:yyj4634] - yyc4634 = true - } else if yyj4634 == 0 && yyv4634 == nil { - yyv4634 = []KeyToPath{} - yyc4634 = true + if yyj4608 < len(yyv4608) { + yyv4608 = yyv4608[:yyj4608] + yyc4608 = true + } else if yyj4608 == 0 && yyv4608 == nil { + yyv4608 = []KeyToPath{} + yyc4608 = true } } - yyh4634.End() - if yyc4634 { - *v = yyv4634 + yyh4608.End() + if yyc4608 { + *v = yyv4608 } } @@ -57844,10 +57545,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4638 := range v { + for _, yyv4612 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4639 := &yyv4638 - yy4639.CodecEncodeSelf(e) + yy4613 := &yyv4612 + yy4613.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57857,83 +57558,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4640 := *v - yyh4640, yyl4640 := z.DecSliceHelperStart() - var yyc4640 bool - if yyl4640 == 0 { - if yyv4640 == nil { - yyv4640 = []DownwardAPIVolumeFile{} - yyc4640 = true - } else if len(yyv4640) != 0 { - yyv4640 = yyv4640[:0] - yyc4640 = true + yyv4614 := *v + yyh4614, yyl4614 := z.DecSliceHelperStart() + var yyc4614 bool + if yyl4614 == 0 { + if yyv4614 == nil { + yyv4614 = []DownwardAPIVolumeFile{} + yyc4614 = true + } else if len(yyv4614) != 0 { + yyv4614 = yyv4614[:0] + yyc4614 = true } - } else if yyl4640 > 0 { - var yyrr4640, yyrl4640 int - var yyrt4640 bool - if yyl4640 > cap(yyv4640) { + } else if yyl4614 > 0 { + var yyrr4614, yyrl4614 int + var yyrt4614 bool + if yyl4614 > cap(yyv4614) { - yyrg4640 := len(yyv4640) > 0 - yyv24640 := yyv4640 - yyrl4640, yyrt4640 = z.DecInferLen(yyl4640, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4640 { - if yyrl4640 <= cap(yyv4640) { - yyv4640 = yyv4640[:yyrl4640] + yyrg4614 := len(yyv4614) > 0 + yyv24614 := yyv4614 + yyrl4614, yyrt4614 = z.DecInferLen(yyl4614, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4614 { + if yyrl4614 <= cap(yyv4614) { + yyv4614 = yyv4614[:yyrl4614] } else { - yyv4640 = make([]DownwardAPIVolumeFile, yyrl4640) + yyv4614 = make([]DownwardAPIVolumeFile, yyrl4614) } } else { - yyv4640 = make([]DownwardAPIVolumeFile, yyrl4640) + yyv4614 = make([]DownwardAPIVolumeFile, yyrl4614) } - yyc4640 = true - yyrr4640 = len(yyv4640) - if yyrg4640 { - copy(yyv4640, yyv24640) + yyc4614 = true + yyrr4614 = len(yyv4614) + if yyrg4614 { + copy(yyv4614, yyv24614) } - } else if yyl4640 != len(yyv4640) { - yyv4640 = yyv4640[:yyl4640] - yyc4640 = true + } else if yyl4614 != len(yyv4614) { + yyv4614 = yyv4614[:yyl4614] + yyc4614 = true } - yyj4640 := 0 - for ; yyj4640 < yyrr4640; yyj4640++ { - yyh4640.ElemContainerState(yyj4640) + yyj4614 := 0 + for ; yyj4614 < yyrr4614; yyj4614++ { + yyh4614.ElemContainerState(yyj4614) if r.TryDecodeAsNil() { - yyv4640[yyj4640] = DownwardAPIVolumeFile{} + yyv4614[yyj4614] = DownwardAPIVolumeFile{} } else { - yyv4641 := &yyv4640[yyj4640] - yyv4641.CodecDecodeSelf(d) + yyv4615 := &yyv4614[yyj4614] + yyv4615.CodecDecodeSelf(d) } } - if yyrt4640 { - for ; yyj4640 < yyl4640; yyj4640++ { - yyv4640 = append(yyv4640, DownwardAPIVolumeFile{}) - yyh4640.ElemContainerState(yyj4640) + if yyrt4614 { + for ; yyj4614 < yyl4614; yyj4614++ { + yyv4614 = append(yyv4614, DownwardAPIVolumeFile{}) + yyh4614.ElemContainerState(yyj4614) if r.TryDecodeAsNil() { - yyv4640[yyj4640] = DownwardAPIVolumeFile{} + yyv4614[yyj4614] = DownwardAPIVolumeFile{} } else { - yyv4642 := &yyv4640[yyj4640] - yyv4642.CodecDecodeSelf(d) + yyv4616 := &yyv4614[yyj4614] + yyv4616.CodecDecodeSelf(d) } } } } else { - yyj4640 := 0 - for ; !r.CheckBreak(); yyj4640++ { + yyj4614 := 0 + for ; !r.CheckBreak(); yyj4614++ { - if yyj4640 >= len(yyv4640) { - yyv4640 = append(yyv4640, DownwardAPIVolumeFile{}) // var yyz4640 DownwardAPIVolumeFile - yyc4640 = true + if yyj4614 >= len(yyv4614) { + yyv4614 = append(yyv4614, DownwardAPIVolumeFile{}) // var yyz4614 DownwardAPIVolumeFile + yyc4614 = true } - yyh4640.ElemContainerState(yyj4640) - if yyj4640 < len(yyv4640) { + yyh4614.ElemContainerState(yyj4614) + if yyj4614 < len(yyv4614) { if r.TryDecodeAsNil() { - yyv4640[yyj4640] = DownwardAPIVolumeFile{} + yyv4614[yyj4614] = DownwardAPIVolumeFile{} } else { - yyv4643 := &yyv4640[yyj4640] - yyv4643.CodecDecodeSelf(d) + yyv4617 := &yyv4614[yyj4614] + yyv4617.CodecDecodeSelf(d) } } else { @@ -57941,17 +57642,17 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4640 < len(yyv4640) { - yyv4640 = yyv4640[:yyj4640] - yyc4640 = true - } else if yyj4640 == 0 && yyv4640 == nil { - yyv4640 = []DownwardAPIVolumeFile{} - yyc4640 = true + if yyj4614 < len(yyv4614) { + yyv4614 = yyv4614[:yyj4614] + yyc4614 = true + } else if yyj4614 == 0 && yyv4614 == nil { + yyv4614 = []DownwardAPIVolumeFile{} + yyc4614 = true } } - yyh4640.End() - if yyc4640 { - *v = yyv4640 + yyh4614.End() + if yyc4614 { + *v = yyv4614 } } @@ -57960,10 +57661,10 @@ func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4644 := range v { + for _, yyv4618 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4645 := &yyv4644 - yy4645.CodecEncodeSelf(e) + yy4619 := &yyv4618 + yy4619.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57973,83 +57674,83 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4646 := *v - yyh4646, yyl4646 := z.DecSliceHelperStart() - var yyc4646 bool - if yyl4646 == 0 { - if yyv4646 == nil { - yyv4646 = []HTTPHeader{} - yyc4646 = true - } else if len(yyv4646) != 0 { - yyv4646 = yyv4646[:0] - yyc4646 = true + yyv4620 := *v + yyh4620, yyl4620 := z.DecSliceHelperStart() + var yyc4620 bool + if yyl4620 == 0 { + if yyv4620 == nil { + yyv4620 = []HTTPHeader{} + yyc4620 = true + } else if len(yyv4620) != 0 { + yyv4620 = yyv4620[:0] + yyc4620 = true } - } else if yyl4646 > 0 { - var yyrr4646, yyrl4646 int - var yyrt4646 bool - if yyl4646 > cap(yyv4646) { + } else if yyl4620 > 0 { + var yyrr4620, yyrl4620 int + var yyrt4620 bool + if yyl4620 > cap(yyv4620) { - yyrg4646 := len(yyv4646) > 0 - yyv24646 := yyv4646 - yyrl4646, yyrt4646 = z.DecInferLen(yyl4646, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4646 { - if yyrl4646 <= cap(yyv4646) { - yyv4646 = yyv4646[:yyrl4646] + yyrg4620 := len(yyv4620) > 0 + yyv24620 := yyv4620 + yyrl4620, yyrt4620 = z.DecInferLen(yyl4620, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4620 { + if yyrl4620 <= cap(yyv4620) { + yyv4620 = yyv4620[:yyrl4620] } else { - yyv4646 = make([]HTTPHeader, yyrl4646) + yyv4620 = make([]HTTPHeader, yyrl4620) } } else { - yyv4646 = make([]HTTPHeader, yyrl4646) + yyv4620 = make([]HTTPHeader, yyrl4620) } - yyc4646 = true - yyrr4646 = len(yyv4646) - if yyrg4646 { - copy(yyv4646, yyv24646) + yyc4620 = true + yyrr4620 = len(yyv4620) + if yyrg4620 { + copy(yyv4620, yyv24620) } - } else if yyl4646 != len(yyv4646) { - yyv4646 = yyv4646[:yyl4646] - yyc4646 = true + } else if yyl4620 != len(yyv4620) { + yyv4620 = yyv4620[:yyl4620] + yyc4620 = true } - yyj4646 := 0 - for ; yyj4646 < yyrr4646; yyj4646++ { - yyh4646.ElemContainerState(yyj4646) + yyj4620 := 0 + for ; yyj4620 < yyrr4620; yyj4620++ { + yyh4620.ElemContainerState(yyj4620) if r.TryDecodeAsNil() { - yyv4646[yyj4646] = HTTPHeader{} + yyv4620[yyj4620] = HTTPHeader{} } else { - yyv4647 := &yyv4646[yyj4646] - yyv4647.CodecDecodeSelf(d) + yyv4621 := &yyv4620[yyj4620] + yyv4621.CodecDecodeSelf(d) } } - if yyrt4646 { - for ; yyj4646 < yyl4646; yyj4646++ { - yyv4646 = append(yyv4646, HTTPHeader{}) - yyh4646.ElemContainerState(yyj4646) + if yyrt4620 { + for ; yyj4620 < yyl4620; yyj4620++ { + yyv4620 = append(yyv4620, HTTPHeader{}) + yyh4620.ElemContainerState(yyj4620) if r.TryDecodeAsNil() { - yyv4646[yyj4646] = HTTPHeader{} + yyv4620[yyj4620] = HTTPHeader{} } else { - yyv4648 := &yyv4646[yyj4646] - yyv4648.CodecDecodeSelf(d) + yyv4622 := &yyv4620[yyj4620] + yyv4622.CodecDecodeSelf(d) } } } } else { - yyj4646 := 0 - for ; !r.CheckBreak(); yyj4646++ { + yyj4620 := 0 + for ; !r.CheckBreak(); yyj4620++ { - if yyj4646 >= len(yyv4646) { - yyv4646 = append(yyv4646, HTTPHeader{}) // var yyz4646 HTTPHeader - yyc4646 = true + if yyj4620 >= len(yyv4620) { + yyv4620 = append(yyv4620, HTTPHeader{}) // var yyz4620 HTTPHeader + yyc4620 = true } - yyh4646.ElemContainerState(yyj4646) - if yyj4646 < len(yyv4646) { + yyh4620.ElemContainerState(yyj4620) + if yyj4620 < len(yyv4620) { if r.TryDecodeAsNil() { - yyv4646[yyj4646] = HTTPHeader{} + yyv4620[yyj4620] = HTTPHeader{} } else { - yyv4649 := &yyv4646[yyj4646] - yyv4649.CodecDecodeSelf(d) + yyv4623 := &yyv4620[yyj4620] + yyv4623.CodecDecodeSelf(d) } } else { @@ -58057,17 +57758,17 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode } } - if yyj4646 < len(yyv4646) { - yyv4646 = yyv4646[:yyj4646] - yyc4646 = true - } else if yyj4646 == 0 && yyv4646 == nil { - yyv4646 = []HTTPHeader{} - yyc4646 = true + if yyj4620 < len(yyv4620) { + yyv4620 = yyv4620[:yyj4620] + yyc4620 = true + } else if yyj4620 == 0 && yyv4620 == nil { + yyv4620 = []HTTPHeader{} + yyc4620 = true } } - yyh4646.End() - if yyc4646 { - *v = yyv4646 + yyh4620.End() + if yyc4620 { + *v = yyv4620 } } @@ -58076,9 +57777,9 @@ func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4650 := range v { + for _, yyv4624 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4650.CodecEncodeSelf(e) + yyv4624.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58088,75 +57789,75 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4651 := *v - yyh4651, yyl4651 := z.DecSliceHelperStart() - var yyc4651 bool - if yyl4651 == 0 { - if yyv4651 == nil { - yyv4651 = []Capability{} - yyc4651 = true - } else if len(yyv4651) != 0 { - yyv4651 = yyv4651[:0] - yyc4651 = true + yyv4625 := *v + yyh4625, yyl4625 := z.DecSliceHelperStart() + var yyc4625 bool + if yyl4625 == 0 { + if yyv4625 == nil { + yyv4625 = []Capability{} + yyc4625 = true + } else if len(yyv4625) != 0 { + yyv4625 = yyv4625[:0] + yyc4625 = true } - } else if yyl4651 > 0 { - var yyrr4651, yyrl4651 int - var yyrt4651 bool - if yyl4651 > cap(yyv4651) { + } else if yyl4625 > 0 { + var yyrr4625, yyrl4625 int + var yyrt4625 bool + if yyl4625 > cap(yyv4625) { - yyrl4651, yyrt4651 = z.DecInferLen(yyl4651, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4651 { - if yyrl4651 <= cap(yyv4651) { - yyv4651 = yyv4651[:yyrl4651] + yyrl4625, yyrt4625 = z.DecInferLen(yyl4625, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4625 { + if yyrl4625 <= cap(yyv4625) { + yyv4625 = yyv4625[:yyrl4625] } else { - yyv4651 = make([]Capability, yyrl4651) + yyv4625 = make([]Capability, yyrl4625) } } else { - yyv4651 = make([]Capability, yyrl4651) + yyv4625 = make([]Capability, yyrl4625) } - yyc4651 = true - yyrr4651 = len(yyv4651) - } else if yyl4651 != len(yyv4651) { - yyv4651 = yyv4651[:yyl4651] - yyc4651 = true + yyc4625 = true + yyrr4625 = len(yyv4625) + } else if yyl4625 != len(yyv4625) { + yyv4625 = yyv4625[:yyl4625] + yyc4625 = true } - yyj4651 := 0 - for ; yyj4651 < yyrr4651; yyj4651++ { - yyh4651.ElemContainerState(yyj4651) + yyj4625 := 0 + for ; yyj4625 < yyrr4625; yyj4625++ { + yyh4625.ElemContainerState(yyj4625) if r.TryDecodeAsNil() { - yyv4651[yyj4651] = "" + yyv4625[yyj4625] = "" } else { - yyv4651[yyj4651] = Capability(r.DecodeString()) + yyv4625[yyj4625] = Capability(r.DecodeString()) } } - if yyrt4651 { - for ; yyj4651 < yyl4651; yyj4651++ { - yyv4651 = append(yyv4651, "") - yyh4651.ElemContainerState(yyj4651) + if yyrt4625 { + for ; yyj4625 < yyl4625; yyj4625++ { + yyv4625 = append(yyv4625, "") + yyh4625.ElemContainerState(yyj4625) if r.TryDecodeAsNil() { - yyv4651[yyj4651] = "" + yyv4625[yyj4625] = "" } else { - yyv4651[yyj4651] = Capability(r.DecodeString()) + yyv4625[yyj4625] = Capability(r.DecodeString()) } } } } else { - yyj4651 := 0 - for ; !r.CheckBreak(); yyj4651++ { + yyj4625 := 0 + for ; !r.CheckBreak(); yyj4625++ { - if yyj4651 >= len(yyv4651) { - yyv4651 = append(yyv4651, "") // var yyz4651 Capability - yyc4651 = true + if yyj4625 >= len(yyv4625) { + yyv4625 = append(yyv4625, "") // var yyz4625 Capability + yyc4625 = true } - yyh4651.ElemContainerState(yyj4651) - if yyj4651 < len(yyv4651) { + yyh4625.ElemContainerState(yyj4625) + if yyj4625 < len(yyv4625) { if r.TryDecodeAsNil() { - yyv4651[yyj4651] = "" + yyv4625[yyj4625] = "" } else { - yyv4651[yyj4651] = Capability(r.DecodeString()) + yyv4625[yyj4625] = Capability(r.DecodeString()) } } else { @@ -58164,17 +57865,17 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } - if yyj4651 < len(yyv4651) { - yyv4651 = yyv4651[:yyj4651] - yyc4651 = true - } else if yyj4651 == 0 && yyv4651 == nil { - yyv4651 = []Capability{} - yyc4651 = true + if yyj4625 < len(yyv4625) { + yyv4625 = yyv4625[:yyj4625] + yyc4625 = true + } else if yyj4625 == 0 && yyv4625 == nil { + yyv4625 = []Capability{} + yyc4625 = true } } - yyh4651.End() - if yyc4651 { - *v = yyv4651 + yyh4625.End() + if yyc4625 { + *v = yyv4625 } } @@ -58183,10 +57884,10 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4655 := range v { + for _, yyv4629 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4656 := &yyv4655 - yy4656.CodecEncodeSelf(e) + yy4630 := &yyv4629 + yy4630.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58196,83 +57897,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4657 := *v - yyh4657, yyl4657 := z.DecSliceHelperStart() - var yyc4657 bool - if yyl4657 == 0 { - if yyv4657 == nil { - yyv4657 = []ContainerPort{} - yyc4657 = true - } else if len(yyv4657) != 0 { - yyv4657 = yyv4657[:0] - yyc4657 = true + yyv4631 := *v + yyh4631, yyl4631 := z.DecSliceHelperStart() + var yyc4631 bool + if yyl4631 == 0 { + if yyv4631 == nil { + yyv4631 = []ContainerPort{} + yyc4631 = true + } else if len(yyv4631) != 0 { + yyv4631 = yyv4631[:0] + yyc4631 = true } - } else if yyl4657 > 0 { - var yyrr4657, yyrl4657 int - var yyrt4657 bool - if yyl4657 > cap(yyv4657) { + } else if yyl4631 > 0 { + var yyrr4631, yyrl4631 int + var yyrt4631 bool + if yyl4631 > cap(yyv4631) { - yyrg4657 := len(yyv4657) > 0 - yyv24657 := yyv4657 - yyrl4657, yyrt4657 = z.DecInferLen(yyl4657, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4657 { - if yyrl4657 <= cap(yyv4657) { - yyv4657 = yyv4657[:yyrl4657] + yyrg4631 := len(yyv4631) > 0 + yyv24631 := yyv4631 + yyrl4631, yyrt4631 = z.DecInferLen(yyl4631, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4631 { + if yyrl4631 <= cap(yyv4631) { + yyv4631 = yyv4631[:yyrl4631] } else { - yyv4657 = make([]ContainerPort, yyrl4657) + yyv4631 = make([]ContainerPort, yyrl4631) } } else { - yyv4657 = make([]ContainerPort, yyrl4657) + yyv4631 = make([]ContainerPort, yyrl4631) } - yyc4657 = true - yyrr4657 = len(yyv4657) - if yyrg4657 { - copy(yyv4657, yyv24657) + yyc4631 = true + yyrr4631 = len(yyv4631) + if yyrg4631 { + copy(yyv4631, yyv24631) } - } else if yyl4657 != len(yyv4657) { - yyv4657 = yyv4657[:yyl4657] - yyc4657 = true + } else if yyl4631 != len(yyv4631) { + yyv4631 = yyv4631[:yyl4631] + yyc4631 = true } - yyj4657 := 0 - for ; yyj4657 < yyrr4657; yyj4657++ { - yyh4657.ElemContainerState(yyj4657) + yyj4631 := 0 + for ; yyj4631 < yyrr4631; yyj4631++ { + yyh4631.ElemContainerState(yyj4631) if r.TryDecodeAsNil() { - yyv4657[yyj4657] = ContainerPort{} + yyv4631[yyj4631] = ContainerPort{} } else { - yyv4658 := &yyv4657[yyj4657] - yyv4658.CodecDecodeSelf(d) + yyv4632 := &yyv4631[yyj4631] + yyv4632.CodecDecodeSelf(d) } } - if yyrt4657 { - for ; yyj4657 < yyl4657; yyj4657++ { - yyv4657 = append(yyv4657, ContainerPort{}) - yyh4657.ElemContainerState(yyj4657) + if yyrt4631 { + for ; yyj4631 < yyl4631; yyj4631++ { + yyv4631 = append(yyv4631, ContainerPort{}) + yyh4631.ElemContainerState(yyj4631) if r.TryDecodeAsNil() { - yyv4657[yyj4657] = ContainerPort{} + yyv4631[yyj4631] = ContainerPort{} } else { - yyv4659 := &yyv4657[yyj4657] - yyv4659.CodecDecodeSelf(d) + yyv4633 := &yyv4631[yyj4631] + yyv4633.CodecDecodeSelf(d) } } } } else { - yyj4657 := 0 - for ; !r.CheckBreak(); yyj4657++ { + yyj4631 := 0 + for ; !r.CheckBreak(); yyj4631++ { - if yyj4657 >= len(yyv4657) { - yyv4657 = append(yyv4657, ContainerPort{}) // var yyz4657 ContainerPort - yyc4657 = true + if yyj4631 >= len(yyv4631) { + yyv4631 = append(yyv4631, ContainerPort{}) // var yyz4631 ContainerPort + yyc4631 = true } - yyh4657.ElemContainerState(yyj4657) - if yyj4657 < len(yyv4657) { + yyh4631.ElemContainerState(yyj4631) + if yyj4631 < len(yyv4631) { if r.TryDecodeAsNil() { - yyv4657[yyj4657] = ContainerPort{} + yyv4631[yyj4631] = ContainerPort{} } else { - yyv4660 := &yyv4657[yyj4657] - yyv4660.CodecDecodeSelf(d) + yyv4634 := &yyv4631[yyj4631] + yyv4634.CodecDecodeSelf(d) } } else { @@ -58280,17 +57981,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj4657 < len(yyv4657) { - yyv4657 = yyv4657[:yyj4657] - yyc4657 = true - } else if yyj4657 == 0 && yyv4657 == nil { - yyv4657 = []ContainerPort{} - yyc4657 = true + if yyj4631 < len(yyv4631) { + yyv4631 = yyv4631[:yyj4631] + yyc4631 = true + } else if yyj4631 == 0 && yyv4631 == nil { + yyv4631 = []ContainerPort{} + yyc4631 = true } } - yyh4657.End() - if yyc4657 { - *v = yyv4657 + yyh4631.End() + if yyc4631 { + *v = yyv4631 } } @@ -58299,10 +58000,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4661 := range v { + for _, yyv4635 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4662 := &yyv4661 - yy4662.CodecEncodeSelf(e) + yy4636 := &yyv4635 + yy4636.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58312,83 +58013,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4663 := *v - yyh4663, yyl4663 := z.DecSliceHelperStart() - var yyc4663 bool - if yyl4663 == 0 { - if yyv4663 == nil { - yyv4663 = []EnvVar{} - yyc4663 = true - } else if len(yyv4663) != 0 { - yyv4663 = yyv4663[:0] - yyc4663 = true + yyv4637 := *v + yyh4637, yyl4637 := z.DecSliceHelperStart() + var yyc4637 bool + if yyl4637 == 0 { + if yyv4637 == nil { + yyv4637 = []EnvVar{} + yyc4637 = true + } else if len(yyv4637) != 0 { + yyv4637 = yyv4637[:0] + yyc4637 = true } - } else if yyl4663 > 0 { - var yyrr4663, yyrl4663 int - var yyrt4663 bool - if yyl4663 > cap(yyv4663) { + } else if yyl4637 > 0 { + var yyrr4637, yyrl4637 int + var yyrt4637 bool + if yyl4637 > cap(yyv4637) { - yyrg4663 := len(yyv4663) > 0 - yyv24663 := yyv4663 - yyrl4663, yyrt4663 = z.DecInferLen(yyl4663, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4663 { - if yyrl4663 <= cap(yyv4663) { - yyv4663 = yyv4663[:yyrl4663] + yyrg4637 := len(yyv4637) > 0 + yyv24637 := yyv4637 + yyrl4637, yyrt4637 = z.DecInferLen(yyl4637, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4637 { + if yyrl4637 <= cap(yyv4637) { + yyv4637 = yyv4637[:yyrl4637] } else { - yyv4663 = make([]EnvVar, yyrl4663) + yyv4637 = make([]EnvVar, yyrl4637) } } else { - yyv4663 = make([]EnvVar, yyrl4663) + yyv4637 = make([]EnvVar, yyrl4637) } - yyc4663 = true - yyrr4663 = len(yyv4663) - if yyrg4663 { - copy(yyv4663, yyv24663) + yyc4637 = true + yyrr4637 = len(yyv4637) + if yyrg4637 { + copy(yyv4637, yyv24637) } - } else if yyl4663 != len(yyv4663) { - yyv4663 = yyv4663[:yyl4663] - yyc4663 = true + } else if yyl4637 != len(yyv4637) { + yyv4637 = yyv4637[:yyl4637] + yyc4637 = true } - yyj4663 := 0 - for ; yyj4663 < yyrr4663; yyj4663++ { - yyh4663.ElemContainerState(yyj4663) + yyj4637 := 0 + for ; yyj4637 < yyrr4637; yyj4637++ { + yyh4637.ElemContainerState(yyj4637) if r.TryDecodeAsNil() { - yyv4663[yyj4663] = EnvVar{} + yyv4637[yyj4637] = EnvVar{} } else { - yyv4664 := &yyv4663[yyj4663] - yyv4664.CodecDecodeSelf(d) + yyv4638 := &yyv4637[yyj4637] + yyv4638.CodecDecodeSelf(d) } } - if yyrt4663 { - for ; yyj4663 < yyl4663; yyj4663++ { - yyv4663 = append(yyv4663, EnvVar{}) - yyh4663.ElemContainerState(yyj4663) + if yyrt4637 { + for ; yyj4637 < yyl4637; yyj4637++ { + yyv4637 = append(yyv4637, EnvVar{}) + yyh4637.ElemContainerState(yyj4637) if r.TryDecodeAsNil() { - yyv4663[yyj4663] = EnvVar{} + yyv4637[yyj4637] = EnvVar{} } else { - yyv4665 := &yyv4663[yyj4663] - yyv4665.CodecDecodeSelf(d) + yyv4639 := &yyv4637[yyj4637] + yyv4639.CodecDecodeSelf(d) } } } } else { - yyj4663 := 0 - for ; !r.CheckBreak(); yyj4663++ { + yyj4637 := 0 + for ; !r.CheckBreak(); yyj4637++ { - if yyj4663 >= len(yyv4663) { - yyv4663 = append(yyv4663, EnvVar{}) // var yyz4663 EnvVar - yyc4663 = true + if yyj4637 >= len(yyv4637) { + yyv4637 = append(yyv4637, EnvVar{}) // var yyz4637 EnvVar + yyc4637 = true } - yyh4663.ElemContainerState(yyj4663) - if yyj4663 < len(yyv4663) { + yyh4637.ElemContainerState(yyj4637) + if yyj4637 < len(yyv4637) { if r.TryDecodeAsNil() { - yyv4663[yyj4663] = EnvVar{} + yyv4637[yyj4637] = EnvVar{} } else { - yyv4666 := &yyv4663[yyj4663] - yyv4666.CodecDecodeSelf(d) + yyv4640 := &yyv4637[yyj4637] + yyv4640.CodecDecodeSelf(d) } } else { @@ -58396,17 +58097,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj4663 < len(yyv4663) { - yyv4663 = yyv4663[:yyj4663] - yyc4663 = true - } else if yyj4663 == 0 && yyv4663 == nil { - yyv4663 = []EnvVar{} - yyc4663 = true + if yyj4637 < len(yyv4637) { + yyv4637 = yyv4637[:yyj4637] + yyc4637 = true + } else if yyj4637 == 0 && yyv4637 == nil { + yyv4637 = []EnvVar{} + yyc4637 = true } } - yyh4663.End() - if yyc4663 { - *v = yyv4663 + yyh4637.End() + if yyc4637 { + *v = yyv4637 } } @@ -58415,10 +58116,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4667 := range v { + for _, yyv4641 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4668 := &yyv4667 - yy4668.CodecEncodeSelf(e) + yy4642 := &yyv4641 + yy4642.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58428,83 +58129,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4669 := *v - yyh4669, yyl4669 := z.DecSliceHelperStart() - var yyc4669 bool - if yyl4669 == 0 { - if yyv4669 == nil { - yyv4669 = []VolumeMount{} - yyc4669 = true - } else if len(yyv4669) != 0 { - yyv4669 = yyv4669[:0] - yyc4669 = true + yyv4643 := *v + yyh4643, yyl4643 := z.DecSliceHelperStart() + var yyc4643 bool + if yyl4643 == 0 { + if yyv4643 == nil { + yyv4643 = []VolumeMount{} + yyc4643 = true + } else if len(yyv4643) != 0 { + yyv4643 = yyv4643[:0] + yyc4643 = true } - } else if yyl4669 > 0 { - var yyrr4669, yyrl4669 int - var yyrt4669 bool - if yyl4669 > cap(yyv4669) { + } else if yyl4643 > 0 { + var yyrr4643, yyrl4643 int + var yyrt4643 bool + if yyl4643 > cap(yyv4643) { - yyrg4669 := len(yyv4669) > 0 - yyv24669 := yyv4669 - yyrl4669, yyrt4669 = z.DecInferLen(yyl4669, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4669 { - if yyrl4669 <= cap(yyv4669) { - yyv4669 = yyv4669[:yyrl4669] + yyrg4643 := len(yyv4643) > 0 + yyv24643 := yyv4643 + yyrl4643, yyrt4643 = z.DecInferLen(yyl4643, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4643 { + if yyrl4643 <= cap(yyv4643) { + yyv4643 = yyv4643[:yyrl4643] } else { - yyv4669 = make([]VolumeMount, yyrl4669) + yyv4643 = make([]VolumeMount, yyrl4643) } } else { - yyv4669 = make([]VolumeMount, yyrl4669) + yyv4643 = make([]VolumeMount, yyrl4643) } - yyc4669 = true - yyrr4669 = len(yyv4669) - if yyrg4669 { - copy(yyv4669, yyv24669) + yyc4643 = true + yyrr4643 = len(yyv4643) + if yyrg4643 { + copy(yyv4643, yyv24643) } - } else if yyl4669 != len(yyv4669) { - yyv4669 = yyv4669[:yyl4669] - yyc4669 = true + } else if yyl4643 != len(yyv4643) { + yyv4643 = yyv4643[:yyl4643] + yyc4643 = true } - yyj4669 := 0 - for ; yyj4669 < yyrr4669; yyj4669++ { - yyh4669.ElemContainerState(yyj4669) + yyj4643 := 0 + for ; yyj4643 < yyrr4643; yyj4643++ { + yyh4643.ElemContainerState(yyj4643) if r.TryDecodeAsNil() { - yyv4669[yyj4669] = VolumeMount{} + yyv4643[yyj4643] = VolumeMount{} } else { - yyv4670 := &yyv4669[yyj4669] - yyv4670.CodecDecodeSelf(d) + yyv4644 := &yyv4643[yyj4643] + yyv4644.CodecDecodeSelf(d) } } - if yyrt4669 { - for ; yyj4669 < yyl4669; yyj4669++ { - yyv4669 = append(yyv4669, VolumeMount{}) - yyh4669.ElemContainerState(yyj4669) + if yyrt4643 { + for ; yyj4643 < yyl4643; yyj4643++ { + yyv4643 = append(yyv4643, VolumeMount{}) + yyh4643.ElemContainerState(yyj4643) if r.TryDecodeAsNil() { - yyv4669[yyj4669] = VolumeMount{} + yyv4643[yyj4643] = VolumeMount{} } else { - yyv4671 := &yyv4669[yyj4669] - yyv4671.CodecDecodeSelf(d) + yyv4645 := &yyv4643[yyj4643] + yyv4645.CodecDecodeSelf(d) } } } } else { - yyj4669 := 0 - for ; !r.CheckBreak(); yyj4669++ { + yyj4643 := 0 + for ; !r.CheckBreak(); yyj4643++ { - if yyj4669 >= len(yyv4669) { - yyv4669 = append(yyv4669, VolumeMount{}) // var yyz4669 VolumeMount - yyc4669 = true + if yyj4643 >= len(yyv4643) { + yyv4643 = append(yyv4643, VolumeMount{}) // var yyz4643 VolumeMount + yyc4643 = true } - yyh4669.ElemContainerState(yyj4669) - if yyj4669 < len(yyv4669) { + yyh4643.ElemContainerState(yyj4643) + if yyj4643 < len(yyv4643) { if r.TryDecodeAsNil() { - yyv4669[yyj4669] = VolumeMount{} + yyv4643[yyj4643] = VolumeMount{} } else { - yyv4672 := &yyv4669[yyj4669] - yyv4672.CodecDecodeSelf(d) + yyv4646 := &yyv4643[yyj4643] + yyv4646.CodecDecodeSelf(d) } } else { @@ -58512,17 +58213,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj4669 < len(yyv4669) { - yyv4669 = yyv4669[:yyj4669] - yyc4669 = true - } else if yyj4669 == 0 && yyv4669 == nil { - yyv4669 = []VolumeMount{} - yyc4669 = true + if yyj4643 < len(yyv4643) { + yyv4643 = yyv4643[:yyj4643] + yyc4643 = true + } else if yyj4643 == 0 && yyv4643 == nil { + yyv4643 = []VolumeMount{} + yyc4643 = true } } - yyh4669.End() - if yyc4669 { - *v = yyv4669 + yyh4643.End() + if yyc4643 { + *v = yyv4643 } } @@ -58531,10 +58232,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4673 := range v { + for _, yyv4647 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4674 := &yyv4673 - yy4674.CodecEncodeSelf(e) + yy4648 := &yyv4647 + yy4648.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58544,83 +58245,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4675 := *v - yyh4675, yyl4675 := z.DecSliceHelperStart() - var yyc4675 bool - if yyl4675 == 0 { - if yyv4675 == nil { - yyv4675 = []Pod{} - yyc4675 = true - } else if len(yyv4675) != 0 { - yyv4675 = yyv4675[:0] - yyc4675 = true + yyv4649 := *v + yyh4649, yyl4649 := z.DecSliceHelperStart() + var yyc4649 bool + if yyl4649 == 0 { + if yyv4649 == nil { + yyv4649 = []Pod{} + yyc4649 = true + } else if len(yyv4649) != 0 { + yyv4649 = yyv4649[:0] + yyc4649 = true } - } else if yyl4675 > 0 { - var yyrr4675, yyrl4675 int - var yyrt4675 bool - if yyl4675 > cap(yyv4675) { + } else if yyl4649 > 0 { + var yyrr4649, yyrl4649 int + var yyrt4649 bool + if yyl4649 > cap(yyv4649) { - yyrg4675 := len(yyv4675) > 0 - yyv24675 := yyv4675 - yyrl4675, yyrt4675 = z.DecInferLen(yyl4675, z.DecBasicHandle().MaxInitLen, 640) - if yyrt4675 { - if yyrl4675 <= cap(yyv4675) { - yyv4675 = yyv4675[:yyrl4675] + yyrg4649 := len(yyv4649) > 0 + yyv24649 := yyv4649 + yyrl4649, yyrt4649 = z.DecInferLen(yyl4649, z.DecBasicHandle().MaxInitLen, 640) + if yyrt4649 { + if yyrl4649 <= cap(yyv4649) { + yyv4649 = yyv4649[:yyrl4649] } else { - yyv4675 = make([]Pod, yyrl4675) + yyv4649 = make([]Pod, yyrl4649) } } else { - yyv4675 = make([]Pod, yyrl4675) + yyv4649 = make([]Pod, yyrl4649) } - yyc4675 = true - yyrr4675 = len(yyv4675) - if yyrg4675 { - copy(yyv4675, yyv24675) + yyc4649 = true + yyrr4649 = len(yyv4649) + if yyrg4649 { + copy(yyv4649, yyv24649) } - } else if yyl4675 != len(yyv4675) { - yyv4675 = yyv4675[:yyl4675] - yyc4675 = true + } else if yyl4649 != len(yyv4649) { + yyv4649 = yyv4649[:yyl4649] + yyc4649 = true } - yyj4675 := 0 - for ; yyj4675 < yyrr4675; yyj4675++ { - yyh4675.ElemContainerState(yyj4675) + yyj4649 := 0 + for ; yyj4649 < yyrr4649; yyj4649++ { + yyh4649.ElemContainerState(yyj4649) if r.TryDecodeAsNil() { - yyv4675[yyj4675] = Pod{} + yyv4649[yyj4649] = Pod{} } else { - yyv4676 := &yyv4675[yyj4675] - yyv4676.CodecDecodeSelf(d) + yyv4650 := &yyv4649[yyj4649] + yyv4650.CodecDecodeSelf(d) } } - if yyrt4675 { - for ; yyj4675 < yyl4675; yyj4675++ { - yyv4675 = append(yyv4675, Pod{}) - yyh4675.ElemContainerState(yyj4675) + if yyrt4649 { + for ; yyj4649 < yyl4649; yyj4649++ { + yyv4649 = append(yyv4649, Pod{}) + yyh4649.ElemContainerState(yyj4649) if r.TryDecodeAsNil() { - yyv4675[yyj4675] = Pod{} + yyv4649[yyj4649] = Pod{} } else { - yyv4677 := &yyv4675[yyj4675] - yyv4677.CodecDecodeSelf(d) + yyv4651 := &yyv4649[yyj4649] + yyv4651.CodecDecodeSelf(d) } } } } else { - yyj4675 := 0 - for ; !r.CheckBreak(); yyj4675++ { + yyj4649 := 0 + for ; !r.CheckBreak(); yyj4649++ { - if yyj4675 >= len(yyv4675) { - yyv4675 = append(yyv4675, Pod{}) // var yyz4675 Pod - yyc4675 = true + if yyj4649 >= len(yyv4649) { + yyv4649 = append(yyv4649, Pod{}) // var yyz4649 Pod + yyc4649 = true } - yyh4675.ElemContainerState(yyj4675) - if yyj4675 < len(yyv4675) { + yyh4649.ElemContainerState(yyj4649) + if yyj4649 < len(yyv4649) { if r.TryDecodeAsNil() { - yyv4675[yyj4675] = Pod{} + yyv4649[yyj4649] = Pod{} } else { - yyv4678 := &yyv4675[yyj4675] - yyv4678.CodecDecodeSelf(d) + yyv4652 := &yyv4649[yyj4649] + yyv4652.CodecDecodeSelf(d) } } else { @@ -58628,17 +58329,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj4675 < len(yyv4675) { - yyv4675 = yyv4675[:yyj4675] - yyc4675 = true - } else if yyj4675 == 0 && yyv4675 == nil { - yyv4675 = []Pod{} - yyc4675 = true + if yyj4649 < len(yyv4649) { + yyv4649 = yyv4649[:yyj4649] + yyc4649 = true + } else if yyj4649 == 0 && yyv4649 == nil { + yyv4649 = []Pod{} + yyc4649 = true } } - yyh4675.End() - if yyc4675 { - *v = yyv4675 + yyh4649.End() + if yyc4649 { + *v = yyv4649 } } @@ -58647,10 +58348,10 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4679 := range v { + for _, yyv4653 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4680 := &yyv4679 - yy4680.CodecEncodeSelf(e) + yy4654 := &yyv4653 + yy4654.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58660,83 +58361,83 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4681 := *v - yyh4681, yyl4681 := z.DecSliceHelperStart() - var yyc4681 bool - if yyl4681 == 0 { - if yyv4681 == nil { - yyv4681 = []NodeSelectorTerm{} - yyc4681 = true - } else if len(yyv4681) != 0 { - yyv4681 = yyv4681[:0] - yyc4681 = true + yyv4655 := *v + yyh4655, yyl4655 := z.DecSliceHelperStart() + var yyc4655 bool + if yyl4655 == 0 { + if yyv4655 == nil { + yyv4655 = []NodeSelectorTerm{} + yyc4655 = true + } else if len(yyv4655) != 0 { + yyv4655 = yyv4655[:0] + yyc4655 = true } - } else if yyl4681 > 0 { - var yyrr4681, yyrl4681 int - var yyrt4681 bool - if yyl4681 > cap(yyv4681) { + } else if yyl4655 > 0 { + var yyrr4655, yyrl4655 int + var yyrt4655 bool + if yyl4655 > cap(yyv4655) { - yyrg4681 := len(yyv4681) > 0 - yyv24681 := yyv4681 - yyrl4681, yyrt4681 = z.DecInferLen(yyl4681, z.DecBasicHandle().MaxInitLen, 24) - if yyrt4681 { - if yyrl4681 <= cap(yyv4681) { - yyv4681 = yyv4681[:yyrl4681] + yyrg4655 := len(yyv4655) > 0 + yyv24655 := yyv4655 + yyrl4655, yyrt4655 = z.DecInferLen(yyl4655, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4655 { + if yyrl4655 <= cap(yyv4655) { + yyv4655 = yyv4655[:yyrl4655] } else { - yyv4681 = make([]NodeSelectorTerm, yyrl4681) + yyv4655 = make([]NodeSelectorTerm, yyrl4655) } } else { - yyv4681 = make([]NodeSelectorTerm, yyrl4681) + yyv4655 = make([]NodeSelectorTerm, yyrl4655) } - yyc4681 = true - yyrr4681 = len(yyv4681) - if yyrg4681 { - copy(yyv4681, yyv24681) + yyc4655 = true + yyrr4655 = len(yyv4655) + if yyrg4655 { + copy(yyv4655, yyv24655) } - } else if yyl4681 != len(yyv4681) { - yyv4681 = yyv4681[:yyl4681] - yyc4681 = true + } else if yyl4655 != len(yyv4655) { + yyv4655 = yyv4655[:yyl4655] + yyc4655 = true } - yyj4681 := 0 - for ; yyj4681 < yyrr4681; yyj4681++ { - yyh4681.ElemContainerState(yyj4681) + yyj4655 := 0 + for ; yyj4655 < yyrr4655; yyj4655++ { + yyh4655.ElemContainerState(yyj4655) if r.TryDecodeAsNil() { - yyv4681[yyj4681] = NodeSelectorTerm{} + yyv4655[yyj4655] = NodeSelectorTerm{} } else { - yyv4682 := &yyv4681[yyj4681] - yyv4682.CodecDecodeSelf(d) + yyv4656 := &yyv4655[yyj4655] + yyv4656.CodecDecodeSelf(d) } } - if yyrt4681 { - for ; yyj4681 < yyl4681; yyj4681++ { - yyv4681 = append(yyv4681, NodeSelectorTerm{}) - yyh4681.ElemContainerState(yyj4681) + if yyrt4655 { + for ; yyj4655 < yyl4655; yyj4655++ { + yyv4655 = append(yyv4655, NodeSelectorTerm{}) + yyh4655.ElemContainerState(yyj4655) if r.TryDecodeAsNil() { - yyv4681[yyj4681] = NodeSelectorTerm{} + yyv4655[yyj4655] = NodeSelectorTerm{} } else { - yyv4683 := &yyv4681[yyj4681] - yyv4683.CodecDecodeSelf(d) + yyv4657 := &yyv4655[yyj4655] + yyv4657.CodecDecodeSelf(d) } } } } else { - yyj4681 := 0 - for ; !r.CheckBreak(); yyj4681++ { + yyj4655 := 0 + for ; !r.CheckBreak(); yyj4655++ { - if yyj4681 >= len(yyv4681) { - yyv4681 = append(yyv4681, NodeSelectorTerm{}) // var yyz4681 NodeSelectorTerm - yyc4681 = true + if yyj4655 >= len(yyv4655) { + yyv4655 = append(yyv4655, NodeSelectorTerm{}) // var yyz4655 NodeSelectorTerm + yyc4655 = true } - yyh4681.ElemContainerState(yyj4681) - if yyj4681 < len(yyv4681) { + yyh4655.ElemContainerState(yyj4655) + if yyj4655 < len(yyv4655) { if r.TryDecodeAsNil() { - yyv4681[yyj4681] = NodeSelectorTerm{} + yyv4655[yyj4655] = NodeSelectorTerm{} } else { - yyv4684 := &yyv4681[yyj4681] - yyv4684.CodecDecodeSelf(d) + yyv4658 := &yyv4655[yyj4655] + yyv4658.CodecDecodeSelf(d) } } else { @@ -58744,17 +58445,17 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } - if yyj4681 < len(yyv4681) { - yyv4681 = yyv4681[:yyj4681] - yyc4681 = true - } else if yyj4681 == 0 && yyv4681 == nil { - yyv4681 = []NodeSelectorTerm{} - yyc4681 = true + if yyj4655 < len(yyv4655) { + yyv4655 = yyv4655[:yyj4655] + yyc4655 = true + } else if yyj4655 == 0 && yyv4655 == nil { + yyv4655 = []NodeSelectorTerm{} + yyc4655 = true } } - yyh4681.End() - if yyc4681 { - *v = yyv4681 + yyh4655.End() + if yyc4655 { + *v = yyv4655 } } @@ -58763,10 +58464,10 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4685 := range v { + for _, yyv4659 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4686 := &yyv4685 - yy4686.CodecEncodeSelf(e) + yy4660 := &yyv4659 + yy4660.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58776,83 +58477,83 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4687 := *v - yyh4687, yyl4687 := z.DecSliceHelperStart() - var yyc4687 bool - if yyl4687 == 0 { - if yyv4687 == nil { - yyv4687 = []NodeSelectorRequirement{} - yyc4687 = true - } else if len(yyv4687) != 0 { - yyv4687 = yyv4687[:0] - yyc4687 = true + yyv4661 := *v + yyh4661, yyl4661 := z.DecSliceHelperStart() + var yyc4661 bool + if yyl4661 == 0 { + if yyv4661 == nil { + yyv4661 = []NodeSelectorRequirement{} + yyc4661 = true + } else if len(yyv4661) != 0 { + yyv4661 = yyv4661[:0] + yyc4661 = true } - } else if yyl4687 > 0 { - var yyrr4687, yyrl4687 int - var yyrt4687 bool - if yyl4687 > cap(yyv4687) { + } else if yyl4661 > 0 { + var yyrr4661, yyrl4661 int + var yyrt4661 bool + if yyl4661 > cap(yyv4661) { - yyrg4687 := len(yyv4687) > 0 - yyv24687 := yyv4687 - yyrl4687, yyrt4687 = z.DecInferLen(yyl4687, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4687 { - if yyrl4687 <= cap(yyv4687) { - yyv4687 = yyv4687[:yyrl4687] + yyrg4661 := len(yyv4661) > 0 + yyv24661 := yyv4661 + yyrl4661, yyrt4661 = z.DecInferLen(yyl4661, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4661 { + if yyrl4661 <= cap(yyv4661) { + yyv4661 = yyv4661[:yyrl4661] } else { - yyv4687 = make([]NodeSelectorRequirement, yyrl4687) + yyv4661 = make([]NodeSelectorRequirement, yyrl4661) } } else { - yyv4687 = make([]NodeSelectorRequirement, yyrl4687) + yyv4661 = make([]NodeSelectorRequirement, yyrl4661) } - yyc4687 = true - yyrr4687 = len(yyv4687) - if yyrg4687 { - copy(yyv4687, yyv24687) + yyc4661 = true + yyrr4661 = len(yyv4661) + if yyrg4661 { + copy(yyv4661, yyv24661) } - } else if yyl4687 != len(yyv4687) { - yyv4687 = yyv4687[:yyl4687] - yyc4687 = true + } else if yyl4661 != len(yyv4661) { + yyv4661 = yyv4661[:yyl4661] + yyc4661 = true } - yyj4687 := 0 - for ; yyj4687 < yyrr4687; yyj4687++ { - yyh4687.ElemContainerState(yyj4687) + yyj4661 := 0 + for ; yyj4661 < yyrr4661; yyj4661++ { + yyh4661.ElemContainerState(yyj4661) if r.TryDecodeAsNil() { - yyv4687[yyj4687] = NodeSelectorRequirement{} + yyv4661[yyj4661] = NodeSelectorRequirement{} } else { - yyv4688 := &yyv4687[yyj4687] - yyv4688.CodecDecodeSelf(d) + yyv4662 := &yyv4661[yyj4661] + yyv4662.CodecDecodeSelf(d) } } - if yyrt4687 { - for ; yyj4687 < yyl4687; yyj4687++ { - yyv4687 = append(yyv4687, NodeSelectorRequirement{}) - yyh4687.ElemContainerState(yyj4687) + if yyrt4661 { + for ; yyj4661 < yyl4661; yyj4661++ { + yyv4661 = append(yyv4661, NodeSelectorRequirement{}) + yyh4661.ElemContainerState(yyj4661) if r.TryDecodeAsNil() { - yyv4687[yyj4687] = NodeSelectorRequirement{} + yyv4661[yyj4661] = NodeSelectorRequirement{} } else { - yyv4689 := &yyv4687[yyj4687] - yyv4689.CodecDecodeSelf(d) + yyv4663 := &yyv4661[yyj4661] + yyv4663.CodecDecodeSelf(d) } } } } else { - yyj4687 := 0 - for ; !r.CheckBreak(); yyj4687++ { + yyj4661 := 0 + for ; !r.CheckBreak(); yyj4661++ { - if yyj4687 >= len(yyv4687) { - yyv4687 = append(yyv4687, NodeSelectorRequirement{}) // var yyz4687 NodeSelectorRequirement - yyc4687 = true + if yyj4661 >= len(yyv4661) { + yyv4661 = append(yyv4661, NodeSelectorRequirement{}) // var yyz4661 NodeSelectorRequirement + yyc4661 = true } - yyh4687.ElemContainerState(yyj4687) - if yyj4687 < len(yyv4687) { + yyh4661.ElemContainerState(yyj4661) + if yyj4661 < len(yyv4661) { if r.TryDecodeAsNil() { - yyv4687[yyj4687] = NodeSelectorRequirement{} + yyv4661[yyj4661] = NodeSelectorRequirement{} } else { - yyv4690 := &yyv4687[yyj4687] - yyv4690.CodecDecodeSelf(d) + yyv4664 := &yyv4661[yyj4661] + yyv4664.CodecDecodeSelf(d) } } else { @@ -58860,17 +58561,17 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj4687 < len(yyv4687) { - yyv4687 = yyv4687[:yyj4687] - yyc4687 = true - } else if yyj4687 == 0 && yyv4687 == nil { - yyv4687 = []NodeSelectorRequirement{} - yyc4687 = true + if yyj4661 < len(yyv4661) { + yyv4661 = yyv4661[:yyj4661] + yyc4661 = true + } else if yyj4661 == 0 && yyv4661 == nil { + yyv4661 = []NodeSelectorRequirement{} + yyc4661 = true } } - yyh4687.End() - if yyc4687 { - *v = yyv4687 + yyh4661.End() + if yyc4661 { + *v = yyv4661 } } @@ -58879,10 +58580,10 @@ func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4691 := range v { + for _, yyv4665 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4692 := &yyv4691 - yy4692.CodecEncodeSelf(e) + yy4666 := &yyv4665 + yy4666.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58892,83 +58593,83 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4693 := *v - yyh4693, yyl4693 := z.DecSliceHelperStart() - var yyc4693 bool - if yyl4693 == 0 { - if yyv4693 == nil { - yyv4693 = []PodAffinityTerm{} - yyc4693 = true - } else if len(yyv4693) != 0 { - yyv4693 = yyv4693[:0] - yyc4693 = true + yyv4667 := *v + yyh4667, yyl4667 := z.DecSliceHelperStart() + var yyc4667 bool + if yyl4667 == 0 { + if yyv4667 == nil { + yyv4667 = []PodAffinityTerm{} + yyc4667 = true + } else if len(yyv4667) != 0 { + yyv4667 = yyv4667[:0] + yyc4667 = true } - } else if yyl4693 > 0 { - var yyrr4693, yyrl4693 int - var yyrt4693 bool - if yyl4693 > cap(yyv4693) { + } else if yyl4667 > 0 { + var yyrr4667, yyrl4667 int + var yyrt4667 bool + if yyl4667 > cap(yyv4667) { - yyrg4693 := len(yyv4693) > 0 - yyv24693 := yyv4693 - yyrl4693, yyrt4693 = z.DecInferLen(yyl4693, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4693 { - if yyrl4693 <= cap(yyv4693) { - yyv4693 = yyv4693[:yyrl4693] + yyrg4667 := len(yyv4667) > 0 + yyv24667 := yyv4667 + yyrl4667, yyrt4667 = z.DecInferLen(yyl4667, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4667 { + if yyrl4667 <= cap(yyv4667) { + yyv4667 = yyv4667[:yyrl4667] } else { - yyv4693 = make([]PodAffinityTerm, yyrl4693) + yyv4667 = make([]PodAffinityTerm, yyrl4667) } } else { - yyv4693 = make([]PodAffinityTerm, yyrl4693) + yyv4667 = make([]PodAffinityTerm, yyrl4667) } - yyc4693 = true - yyrr4693 = len(yyv4693) - if yyrg4693 { - copy(yyv4693, yyv24693) + yyc4667 = true + yyrr4667 = len(yyv4667) + if yyrg4667 { + copy(yyv4667, yyv24667) } - } else if yyl4693 != len(yyv4693) { - yyv4693 = yyv4693[:yyl4693] - yyc4693 = true + } else if yyl4667 != len(yyv4667) { + yyv4667 = yyv4667[:yyl4667] + yyc4667 = true } - yyj4693 := 0 - for ; yyj4693 < yyrr4693; yyj4693++ { - yyh4693.ElemContainerState(yyj4693) + yyj4667 := 0 + for ; yyj4667 < yyrr4667; yyj4667++ { + yyh4667.ElemContainerState(yyj4667) if r.TryDecodeAsNil() { - yyv4693[yyj4693] = PodAffinityTerm{} + yyv4667[yyj4667] = PodAffinityTerm{} } else { - yyv4694 := &yyv4693[yyj4693] - yyv4694.CodecDecodeSelf(d) + yyv4668 := &yyv4667[yyj4667] + yyv4668.CodecDecodeSelf(d) } } - if yyrt4693 { - for ; yyj4693 < yyl4693; yyj4693++ { - yyv4693 = append(yyv4693, PodAffinityTerm{}) - yyh4693.ElemContainerState(yyj4693) + if yyrt4667 { + for ; yyj4667 < yyl4667; yyj4667++ { + yyv4667 = append(yyv4667, PodAffinityTerm{}) + yyh4667.ElemContainerState(yyj4667) if r.TryDecodeAsNil() { - yyv4693[yyj4693] = PodAffinityTerm{} + yyv4667[yyj4667] = PodAffinityTerm{} } else { - yyv4695 := &yyv4693[yyj4693] - yyv4695.CodecDecodeSelf(d) + yyv4669 := &yyv4667[yyj4667] + yyv4669.CodecDecodeSelf(d) } } } } else { - yyj4693 := 0 - for ; !r.CheckBreak(); yyj4693++ { + yyj4667 := 0 + for ; !r.CheckBreak(); yyj4667++ { - if yyj4693 >= len(yyv4693) { - yyv4693 = append(yyv4693, PodAffinityTerm{}) // var yyz4693 PodAffinityTerm - yyc4693 = true + if yyj4667 >= len(yyv4667) { + yyv4667 = append(yyv4667, PodAffinityTerm{}) // var yyz4667 PodAffinityTerm + yyc4667 = true } - yyh4693.ElemContainerState(yyj4693) - if yyj4693 < len(yyv4693) { + yyh4667.ElemContainerState(yyj4667) + if yyj4667 < len(yyv4667) { if r.TryDecodeAsNil() { - yyv4693[yyj4693] = PodAffinityTerm{} + yyv4667[yyj4667] = PodAffinityTerm{} } else { - yyv4696 := &yyv4693[yyj4693] - yyv4696.CodecDecodeSelf(d) + yyv4670 := &yyv4667[yyj4667] + yyv4670.CodecDecodeSelf(d) } } else { @@ -58976,17 +58677,17 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } - if yyj4693 < len(yyv4693) { - yyv4693 = yyv4693[:yyj4693] - yyc4693 = true - } else if yyj4693 == 0 && yyv4693 == nil { - yyv4693 = []PodAffinityTerm{} - yyc4693 = true + if yyj4667 < len(yyv4667) { + yyv4667 = yyv4667[:yyj4667] + yyc4667 = true + } else if yyj4667 == 0 && yyv4667 == nil { + yyv4667 = []PodAffinityTerm{} + yyc4667 = true } } - yyh4693.End() - if yyc4693 { - *v = yyv4693 + yyh4667.End() + if yyc4667 { + *v = yyv4667 } } @@ -58995,10 +58696,10 @@ func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinity z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4697 := range v { + for _, yyv4671 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4698 := &yyv4697 - yy4698.CodecEncodeSelf(e) + yy4672 := &yyv4671 + yy4672.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59008,83 +58709,83 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4699 := *v - yyh4699, yyl4699 := z.DecSliceHelperStart() - var yyc4699 bool - if yyl4699 == 0 { - if yyv4699 == nil { - yyv4699 = []WeightedPodAffinityTerm{} - yyc4699 = true - } else if len(yyv4699) != 0 { - yyv4699 = yyv4699[:0] - yyc4699 = true + yyv4673 := *v + yyh4673, yyl4673 := z.DecSliceHelperStart() + var yyc4673 bool + if yyl4673 == 0 { + if yyv4673 == nil { + yyv4673 = []WeightedPodAffinityTerm{} + yyc4673 = true + } else if len(yyv4673) != 0 { + yyv4673 = yyv4673[:0] + yyc4673 = true } - } else if yyl4699 > 0 { - var yyrr4699, yyrl4699 int - var yyrt4699 bool - if yyl4699 > cap(yyv4699) { + } else if yyl4673 > 0 { + var yyrr4673, yyrl4673 int + var yyrt4673 bool + if yyl4673 > cap(yyv4673) { - yyrg4699 := len(yyv4699) > 0 - yyv24699 := yyv4699 - yyrl4699, yyrt4699 = z.DecInferLen(yyl4699, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4699 { - if yyrl4699 <= cap(yyv4699) { - yyv4699 = yyv4699[:yyrl4699] + yyrg4673 := len(yyv4673) > 0 + yyv24673 := yyv4673 + yyrl4673, yyrt4673 = z.DecInferLen(yyl4673, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4673 { + if yyrl4673 <= cap(yyv4673) { + yyv4673 = yyv4673[:yyrl4673] } else { - yyv4699 = make([]WeightedPodAffinityTerm, yyrl4699) + yyv4673 = make([]WeightedPodAffinityTerm, yyrl4673) } } else { - yyv4699 = make([]WeightedPodAffinityTerm, yyrl4699) + yyv4673 = make([]WeightedPodAffinityTerm, yyrl4673) } - yyc4699 = true - yyrr4699 = len(yyv4699) - if yyrg4699 { - copy(yyv4699, yyv24699) + yyc4673 = true + yyrr4673 = len(yyv4673) + if yyrg4673 { + copy(yyv4673, yyv24673) } - } else if yyl4699 != len(yyv4699) { - yyv4699 = yyv4699[:yyl4699] - yyc4699 = true + } else if yyl4673 != len(yyv4673) { + yyv4673 = yyv4673[:yyl4673] + yyc4673 = true } - yyj4699 := 0 - for ; yyj4699 < yyrr4699; yyj4699++ { - yyh4699.ElemContainerState(yyj4699) + yyj4673 := 0 + for ; yyj4673 < yyrr4673; yyj4673++ { + yyh4673.ElemContainerState(yyj4673) if r.TryDecodeAsNil() { - yyv4699[yyj4699] = WeightedPodAffinityTerm{} + yyv4673[yyj4673] = WeightedPodAffinityTerm{} } else { - yyv4700 := &yyv4699[yyj4699] - yyv4700.CodecDecodeSelf(d) + yyv4674 := &yyv4673[yyj4673] + yyv4674.CodecDecodeSelf(d) } } - if yyrt4699 { - for ; yyj4699 < yyl4699; yyj4699++ { - yyv4699 = append(yyv4699, WeightedPodAffinityTerm{}) - yyh4699.ElemContainerState(yyj4699) + if yyrt4673 { + for ; yyj4673 < yyl4673; yyj4673++ { + yyv4673 = append(yyv4673, WeightedPodAffinityTerm{}) + yyh4673.ElemContainerState(yyj4673) if r.TryDecodeAsNil() { - yyv4699[yyj4699] = WeightedPodAffinityTerm{} + yyv4673[yyj4673] = WeightedPodAffinityTerm{} } else { - yyv4701 := &yyv4699[yyj4699] - yyv4701.CodecDecodeSelf(d) + yyv4675 := &yyv4673[yyj4673] + yyv4675.CodecDecodeSelf(d) } } } } else { - yyj4699 := 0 - for ; !r.CheckBreak(); yyj4699++ { + yyj4673 := 0 + for ; !r.CheckBreak(); yyj4673++ { - if yyj4699 >= len(yyv4699) { - yyv4699 = append(yyv4699, WeightedPodAffinityTerm{}) // var yyz4699 WeightedPodAffinityTerm - yyc4699 = true + if yyj4673 >= len(yyv4673) { + yyv4673 = append(yyv4673, WeightedPodAffinityTerm{}) // var yyz4673 WeightedPodAffinityTerm + yyc4673 = true } - yyh4699.ElemContainerState(yyj4699) - if yyj4699 < len(yyv4699) { + yyh4673.ElemContainerState(yyj4673) + if yyj4673 < len(yyv4673) { if r.TryDecodeAsNil() { - yyv4699[yyj4699] = WeightedPodAffinityTerm{} + yyv4673[yyj4673] = WeightedPodAffinityTerm{} } else { - yyv4702 := &yyv4699[yyj4699] - yyv4702.CodecDecodeSelf(d) + yyv4676 := &yyv4673[yyj4673] + yyv4676.CodecDecodeSelf(d) } } else { @@ -59092,17 +58793,17 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } - if yyj4699 < len(yyv4699) { - yyv4699 = yyv4699[:yyj4699] - yyc4699 = true - } else if yyj4699 == 0 && yyv4699 == nil { - yyv4699 = []WeightedPodAffinityTerm{} - yyc4699 = true + if yyj4673 < len(yyv4673) { + yyv4673 = yyv4673[:yyj4673] + yyc4673 = true + } else if yyj4673 == 0 && yyv4673 == nil { + yyv4673 = []WeightedPodAffinityTerm{} + yyc4673 = true } } - yyh4699.End() - if yyc4699 { - *v = yyv4699 + yyh4673.End() + if yyc4673 { + *v = yyv4673 } } @@ -59111,10 +58812,10 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4703 := range v { + for _, yyv4677 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4704 := &yyv4703 - yy4704.CodecEncodeSelf(e) + yy4678 := &yyv4677 + yy4678.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59124,83 +58825,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4705 := *v - yyh4705, yyl4705 := z.DecSliceHelperStart() - var yyc4705 bool - if yyl4705 == 0 { - if yyv4705 == nil { - yyv4705 = []PreferredSchedulingTerm{} - yyc4705 = true - } else if len(yyv4705) != 0 { - yyv4705 = yyv4705[:0] - yyc4705 = true + yyv4679 := *v + yyh4679, yyl4679 := z.DecSliceHelperStart() + var yyc4679 bool + if yyl4679 == 0 { + if yyv4679 == nil { + yyv4679 = []PreferredSchedulingTerm{} + yyc4679 = true + } else if len(yyv4679) != 0 { + yyv4679 = yyv4679[:0] + yyc4679 = true } - } else if yyl4705 > 0 { - var yyrr4705, yyrl4705 int - var yyrt4705 bool - if yyl4705 > cap(yyv4705) { + } else if yyl4679 > 0 { + var yyrr4679, yyrl4679 int + var yyrt4679 bool + if yyl4679 > cap(yyv4679) { - yyrg4705 := len(yyv4705) > 0 - yyv24705 := yyv4705 - yyrl4705, yyrt4705 = z.DecInferLen(yyl4705, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4705 { - if yyrl4705 <= cap(yyv4705) { - yyv4705 = yyv4705[:yyrl4705] + yyrg4679 := len(yyv4679) > 0 + yyv24679 := yyv4679 + yyrl4679, yyrt4679 = z.DecInferLen(yyl4679, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4679 { + if yyrl4679 <= cap(yyv4679) { + yyv4679 = yyv4679[:yyrl4679] } else { - yyv4705 = make([]PreferredSchedulingTerm, yyrl4705) + yyv4679 = make([]PreferredSchedulingTerm, yyrl4679) } } else { - yyv4705 = make([]PreferredSchedulingTerm, yyrl4705) + yyv4679 = make([]PreferredSchedulingTerm, yyrl4679) } - yyc4705 = true - yyrr4705 = len(yyv4705) - if yyrg4705 { - copy(yyv4705, yyv24705) + yyc4679 = true + yyrr4679 = len(yyv4679) + if yyrg4679 { + copy(yyv4679, yyv24679) } - } else if yyl4705 != len(yyv4705) { - yyv4705 = yyv4705[:yyl4705] - yyc4705 = true + } else if yyl4679 != len(yyv4679) { + yyv4679 = yyv4679[:yyl4679] + yyc4679 = true } - yyj4705 := 0 - for ; yyj4705 < yyrr4705; yyj4705++ { - yyh4705.ElemContainerState(yyj4705) + yyj4679 := 0 + for ; yyj4679 < yyrr4679; yyj4679++ { + yyh4679.ElemContainerState(yyj4679) if r.TryDecodeAsNil() { - yyv4705[yyj4705] = PreferredSchedulingTerm{} + yyv4679[yyj4679] = PreferredSchedulingTerm{} } else { - yyv4706 := &yyv4705[yyj4705] - yyv4706.CodecDecodeSelf(d) + yyv4680 := &yyv4679[yyj4679] + yyv4680.CodecDecodeSelf(d) } } - if yyrt4705 { - for ; yyj4705 < yyl4705; yyj4705++ { - yyv4705 = append(yyv4705, PreferredSchedulingTerm{}) - yyh4705.ElemContainerState(yyj4705) + if yyrt4679 { + for ; yyj4679 < yyl4679; yyj4679++ { + yyv4679 = append(yyv4679, PreferredSchedulingTerm{}) + yyh4679.ElemContainerState(yyj4679) if r.TryDecodeAsNil() { - yyv4705[yyj4705] = PreferredSchedulingTerm{} + yyv4679[yyj4679] = PreferredSchedulingTerm{} } else { - yyv4707 := &yyv4705[yyj4705] - yyv4707.CodecDecodeSelf(d) + yyv4681 := &yyv4679[yyj4679] + yyv4681.CodecDecodeSelf(d) } } } } else { - yyj4705 := 0 - for ; !r.CheckBreak(); yyj4705++ { + yyj4679 := 0 + for ; !r.CheckBreak(); yyj4679++ { - if yyj4705 >= len(yyv4705) { - yyv4705 = append(yyv4705, PreferredSchedulingTerm{}) // var yyz4705 PreferredSchedulingTerm - yyc4705 = true + if yyj4679 >= len(yyv4679) { + yyv4679 = append(yyv4679, PreferredSchedulingTerm{}) // var yyz4679 PreferredSchedulingTerm + yyc4679 = true } - yyh4705.ElemContainerState(yyj4705) - if yyj4705 < len(yyv4705) { + yyh4679.ElemContainerState(yyj4679) + if yyj4679 < len(yyv4679) { if r.TryDecodeAsNil() { - yyv4705[yyj4705] = PreferredSchedulingTerm{} + yyv4679[yyj4679] = PreferredSchedulingTerm{} } else { - yyv4708 := &yyv4705[yyj4705] - yyv4708.CodecDecodeSelf(d) + yyv4682 := &yyv4679[yyj4679] + yyv4682.CodecDecodeSelf(d) } } else { @@ -59208,17 +58909,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj4705 < len(yyv4705) { - yyv4705 = yyv4705[:yyj4705] - yyc4705 = true - } else if yyj4705 == 0 && yyv4705 == nil { - yyv4705 = []PreferredSchedulingTerm{} - yyc4705 = true + if yyj4679 < len(yyv4679) { + yyv4679 = yyv4679[:yyj4679] + yyc4679 = true + } else if yyj4679 == 0 && yyv4679 == nil { + yyv4679 = []PreferredSchedulingTerm{} + yyc4679 = true } } - yyh4705.End() - if yyc4705 { - *v = yyv4705 + yyh4679.End() + if yyc4679 { + *v = yyv4679 } } @@ -59227,10 +58928,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4709 := range v { + for _, yyv4683 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4710 := &yyv4709 - yy4710.CodecEncodeSelf(e) + yy4684 := &yyv4683 + yy4684.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59240,83 +58941,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4711 := *v - yyh4711, yyl4711 := z.DecSliceHelperStart() - var yyc4711 bool - if yyl4711 == 0 { - if yyv4711 == nil { - yyv4711 = []Volume{} - yyc4711 = true - } else if len(yyv4711) != 0 { - yyv4711 = yyv4711[:0] - yyc4711 = true + yyv4685 := *v + yyh4685, yyl4685 := z.DecSliceHelperStart() + var yyc4685 bool + if yyl4685 == 0 { + if yyv4685 == nil { + yyv4685 = []Volume{} + yyc4685 = true + } else if len(yyv4685) != 0 { + yyv4685 = yyv4685[:0] + yyc4685 = true } - } else if yyl4711 > 0 { - var yyrr4711, yyrl4711 int - var yyrt4711 bool - if yyl4711 > cap(yyv4711) { + } else if yyl4685 > 0 { + var yyrr4685, yyrl4685 int + var yyrt4685 bool + if yyl4685 > cap(yyv4685) { - yyrg4711 := len(yyv4711) > 0 - yyv24711 := yyv4711 - yyrl4711, yyrt4711 = z.DecInferLen(yyl4711, z.DecBasicHandle().MaxInitLen, 200) - if yyrt4711 { - if yyrl4711 <= cap(yyv4711) { - yyv4711 = yyv4711[:yyrl4711] + yyrg4685 := len(yyv4685) > 0 + yyv24685 := yyv4685 + yyrl4685, yyrt4685 = z.DecInferLen(yyl4685, z.DecBasicHandle().MaxInitLen, 200) + if yyrt4685 { + if yyrl4685 <= cap(yyv4685) { + yyv4685 = yyv4685[:yyrl4685] } else { - yyv4711 = make([]Volume, yyrl4711) + yyv4685 = make([]Volume, yyrl4685) } } else { - yyv4711 = make([]Volume, yyrl4711) + yyv4685 = make([]Volume, yyrl4685) } - yyc4711 = true - yyrr4711 = len(yyv4711) - if yyrg4711 { - copy(yyv4711, yyv24711) + yyc4685 = true + yyrr4685 = len(yyv4685) + if yyrg4685 { + copy(yyv4685, yyv24685) } - } else if yyl4711 != len(yyv4711) { - yyv4711 = yyv4711[:yyl4711] - yyc4711 = true + } else if yyl4685 != len(yyv4685) { + yyv4685 = yyv4685[:yyl4685] + yyc4685 = true } - yyj4711 := 0 - for ; yyj4711 < yyrr4711; yyj4711++ { - yyh4711.ElemContainerState(yyj4711) + yyj4685 := 0 + for ; yyj4685 < yyrr4685; yyj4685++ { + yyh4685.ElemContainerState(yyj4685) if r.TryDecodeAsNil() { - yyv4711[yyj4711] = Volume{} + yyv4685[yyj4685] = Volume{} } else { - yyv4712 := &yyv4711[yyj4711] - yyv4712.CodecDecodeSelf(d) + yyv4686 := &yyv4685[yyj4685] + yyv4686.CodecDecodeSelf(d) } } - if yyrt4711 { - for ; yyj4711 < yyl4711; yyj4711++ { - yyv4711 = append(yyv4711, Volume{}) - yyh4711.ElemContainerState(yyj4711) + if yyrt4685 { + for ; yyj4685 < yyl4685; yyj4685++ { + yyv4685 = append(yyv4685, Volume{}) + yyh4685.ElemContainerState(yyj4685) if r.TryDecodeAsNil() { - yyv4711[yyj4711] = Volume{} + yyv4685[yyj4685] = Volume{} } else { - yyv4713 := &yyv4711[yyj4711] - yyv4713.CodecDecodeSelf(d) + yyv4687 := &yyv4685[yyj4685] + yyv4687.CodecDecodeSelf(d) } } } } else { - yyj4711 := 0 - for ; !r.CheckBreak(); yyj4711++ { + yyj4685 := 0 + for ; !r.CheckBreak(); yyj4685++ { - if yyj4711 >= len(yyv4711) { - yyv4711 = append(yyv4711, Volume{}) // var yyz4711 Volume - yyc4711 = true + if yyj4685 >= len(yyv4685) { + yyv4685 = append(yyv4685, Volume{}) // var yyz4685 Volume + yyc4685 = true } - yyh4711.ElemContainerState(yyj4711) - if yyj4711 < len(yyv4711) { + yyh4685.ElemContainerState(yyj4685) + if yyj4685 < len(yyv4685) { if r.TryDecodeAsNil() { - yyv4711[yyj4711] = Volume{} + yyv4685[yyj4685] = Volume{} } else { - yyv4714 := &yyv4711[yyj4711] - yyv4714.CodecDecodeSelf(d) + yyv4688 := &yyv4685[yyj4685] + yyv4688.CodecDecodeSelf(d) } } else { @@ -59324,17 +59025,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4711 < len(yyv4711) { - yyv4711 = yyv4711[:yyj4711] - yyc4711 = true - } else if yyj4711 == 0 && yyv4711 == nil { - yyv4711 = []Volume{} - yyc4711 = true + if yyj4685 < len(yyv4685) { + yyv4685 = yyv4685[:yyj4685] + yyc4685 = true + } else if yyj4685 == 0 && yyv4685 == nil { + yyv4685 = []Volume{} + yyc4685 = true } } - yyh4711.End() - if yyc4711 { - *v = yyv4711 + yyh4685.End() + if yyc4685 { + *v = yyv4685 } } @@ -59343,10 +59044,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4715 := range v { + for _, yyv4689 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4716 := &yyv4715 - yy4716.CodecEncodeSelf(e) + yy4690 := &yyv4689 + yy4690.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59356,83 +59057,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4717 := *v - yyh4717, yyl4717 := z.DecSliceHelperStart() - var yyc4717 bool - if yyl4717 == 0 { - if yyv4717 == nil { - yyv4717 = []Container{} - yyc4717 = true - } else if len(yyv4717) != 0 { - yyv4717 = yyv4717[:0] - yyc4717 = true + yyv4691 := *v + yyh4691, yyl4691 := z.DecSliceHelperStart() + var yyc4691 bool + if yyl4691 == 0 { + if yyv4691 == nil { + yyv4691 = []Container{} + yyc4691 = true + } else if len(yyv4691) != 0 { + yyv4691 = yyv4691[:0] + yyc4691 = true } - } else if yyl4717 > 0 { - var yyrr4717, yyrl4717 int - var yyrt4717 bool - if yyl4717 > cap(yyv4717) { + } else if yyl4691 > 0 { + var yyrr4691, yyrl4691 int + var yyrt4691 bool + if yyl4691 > cap(yyv4691) { - yyrg4717 := len(yyv4717) > 0 - yyv24717 := yyv4717 - yyrl4717, yyrt4717 = z.DecInferLen(yyl4717, z.DecBasicHandle().MaxInitLen, 256) - if yyrt4717 { - if yyrl4717 <= cap(yyv4717) { - yyv4717 = yyv4717[:yyrl4717] + yyrg4691 := len(yyv4691) > 0 + yyv24691 := yyv4691 + yyrl4691, yyrt4691 = z.DecInferLen(yyl4691, z.DecBasicHandle().MaxInitLen, 256) + if yyrt4691 { + if yyrl4691 <= cap(yyv4691) { + yyv4691 = yyv4691[:yyrl4691] } else { - yyv4717 = make([]Container, yyrl4717) + yyv4691 = make([]Container, yyrl4691) } } else { - yyv4717 = make([]Container, yyrl4717) + yyv4691 = make([]Container, yyrl4691) } - yyc4717 = true - yyrr4717 = len(yyv4717) - if yyrg4717 { - copy(yyv4717, yyv24717) + yyc4691 = true + yyrr4691 = len(yyv4691) + if yyrg4691 { + copy(yyv4691, yyv24691) } - } else if yyl4717 != len(yyv4717) { - yyv4717 = yyv4717[:yyl4717] - yyc4717 = true + } else if yyl4691 != len(yyv4691) { + yyv4691 = yyv4691[:yyl4691] + yyc4691 = true } - yyj4717 := 0 - for ; yyj4717 < yyrr4717; yyj4717++ { - yyh4717.ElemContainerState(yyj4717) + yyj4691 := 0 + for ; yyj4691 < yyrr4691; yyj4691++ { + yyh4691.ElemContainerState(yyj4691) if r.TryDecodeAsNil() { - yyv4717[yyj4717] = Container{} + yyv4691[yyj4691] = Container{} } else { - yyv4718 := &yyv4717[yyj4717] - yyv4718.CodecDecodeSelf(d) + yyv4692 := &yyv4691[yyj4691] + yyv4692.CodecDecodeSelf(d) } } - if yyrt4717 { - for ; yyj4717 < yyl4717; yyj4717++ { - yyv4717 = append(yyv4717, Container{}) - yyh4717.ElemContainerState(yyj4717) + if yyrt4691 { + for ; yyj4691 < yyl4691; yyj4691++ { + yyv4691 = append(yyv4691, Container{}) + yyh4691.ElemContainerState(yyj4691) if r.TryDecodeAsNil() { - yyv4717[yyj4717] = Container{} + yyv4691[yyj4691] = Container{} } else { - yyv4719 := &yyv4717[yyj4717] - yyv4719.CodecDecodeSelf(d) + yyv4693 := &yyv4691[yyj4691] + yyv4693.CodecDecodeSelf(d) } } } } else { - yyj4717 := 0 - for ; !r.CheckBreak(); yyj4717++ { + yyj4691 := 0 + for ; !r.CheckBreak(); yyj4691++ { - if yyj4717 >= len(yyv4717) { - yyv4717 = append(yyv4717, Container{}) // var yyz4717 Container - yyc4717 = true + if yyj4691 >= len(yyv4691) { + yyv4691 = append(yyv4691, Container{}) // var yyz4691 Container + yyc4691 = true } - yyh4717.ElemContainerState(yyj4717) - if yyj4717 < len(yyv4717) { + yyh4691.ElemContainerState(yyj4691) + if yyj4691 < len(yyv4691) { if r.TryDecodeAsNil() { - yyv4717[yyj4717] = Container{} + yyv4691[yyj4691] = Container{} } else { - yyv4720 := &yyv4717[yyj4717] - yyv4720.CodecDecodeSelf(d) + yyv4694 := &yyv4691[yyj4691] + yyv4694.CodecDecodeSelf(d) } } else { @@ -59440,17 +59141,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4717 < len(yyv4717) { - yyv4717 = yyv4717[:yyj4717] - yyc4717 = true - } else if yyj4717 == 0 && yyv4717 == nil { - yyv4717 = []Container{} - yyc4717 = true + if yyj4691 < len(yyv4691) { + yyv4691 = yyv4691[:yyj4691] + yyc4691 = true + } else if yyj4691 == 0 && yyv4691 == nil { + yyv4691 = []Container{} + yyc4691 = true } } - yyh4717.End() - if yyc4717 { - *v = yyv4717 + yyh4691.End() + if yyc4691 { + *v = yyv4691 } } @@ -59459,10 +59160,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4721 := range v { + for _, yyv4695 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4722 := &yyv4721 - yy4722.CodecEncodeSelf(e) + yy4696 := &yyv4695 + yy4696.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59472,83 +59173,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4723 := *v - yyh4723, yyl4723 := z.DecSliceHelperStart() - var yyc4723 bool - if yyl4723 == 0 { - if yyv4723 == nil { - yyv4723 = []LocalObjectReference{} - yyc4723 = true - } else if len(yyv4723) != 0 { - yyv4723 = yyv4723[:0] - yyc4723 = true + yyv4697 := *v + yyh4697, yyl4697 := z.DecSliceHelperStart() + var yyc4697 bool + if yyl4697 == 0 { + if yyv4697 == nil { + yyv4697 = []LocalObjectReference{} + yyc4697 = true + } else if len(yyv4697) != 0 { + yyv4697 = yyv4697[:0] + yyc4697 = true } - } else if yyl4723 > 0 { - var yyrr4723, yyrl4723 int - var yyrt4723 bool - if yyl4723 > cap(yyv4723) { + } else if yyl4697 > 0 { + var yyrr4697, yyrl4697 int + var yyrt4697 bool + if yyl4697 > cap(yyv4697) { - yyrg4723 := len(yyv4723) > 0 - yyv24723 := yyv4723 - yyrl4723, yyrt4723 = z.DecInferLen(yyl4723, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4723 { - if yyrl4723 <= cap(yyv4723) { - yyv4723 = yyv4723[:yyrl4723] + yyrg4697 := len(yyv4697) > 0 + yyv24697 := yyv4697 + yyrl4697, yyrt4697 = z.DecInferLen(yyl4697, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4697 { + if yyrl4697 <= cap(yyv4697) { + yyv4697 = yyv4697[:yyrl4697] } else { - yyv4723 = make([]LocalObjectReference, yyrl4723) + yyv4697 = make([]LocalObjectReference, yyrl4697) } } else { - yyv4723 = make([]LocalObjectReference, yyrl4723) + yyv4697 = make([]LocalObjectReference, yyrl4697) } - yyc4723 = true - yyrr4723 = len(yyv4723) - if yyrg4723 { - copy(yyv4723, yyv24723) + yyc4697 = true + yyrr4697 = len(yyv4697) + if yyrg4697 { + copy(yyv4697, yyv24697) } - } else if yyl4723 != len(yyv4723) { - yyv4723 = yyv4723[:yyl4723] - yyc4723 = true + } else if yyl4697 != len(yyv4697) { + yyv4697 = yyv4697[:yyl4697] + yyc4697 = true } - yyj4723 := 0 - for ; yyj4723 < yyrr4723; yyj4723++ { - yyh4723.ElemContainerState(yyj4723) + yyj4697 := 0 + for ; yyj4697 < yyrr4697; yyj4697++ { + yyh4697.ElemContainerState(yyj4697) if r.TryDecodeAsNil() { - yyv4723[yyj4723] = LocalObjectReference{} + yyv4697[yyj4697] = LocalObjectReference{} } else { - yyv4724 := &yyv4723[yyj4723] - yyv4724.CodecDecodeSelf(d) + yyv4698 := &yyv4697[yyj4697] + yyv4698.CodecDecodeSelf(d) } } - if yyrt4723 { - for ; yyj4723 < yyl4723; yyj4723++ { - yyv4723 = append(yyv4723, LocalObjectReference{}) - yyh4723.ElemContainerState(yyj4723) + if yyrt4697 { + for ; yyj4697 < yyl4697; yyj4697++ { + yyv4697 = append(yyv4697, LocalObjectReference{}) + yyh4697.ElemContainerState(yyj4697) if r.TryDecodeAsNil() { - yyv4723[yyj4723] = LocalObjectReference{} + yyv4697[yyj4697] = LocalObjectReference{} } else { - yyv4725 := &yyv4723[yyj4723] - yyv4725.CodecDecodeSelf(d) + yyv4699 := &yyv4697[yyj4697] + yyv4699.CodecDecodeSelf(d) } } } } else { - yyj4723 := 0 - for ; !r.CheckBreak(); yyj4723++ { + yyj4697 := 0 + for ; !r.CheckBreak(); yyj4697++ { - if yyj4723 >= len(yyv4723) { - yyv4723 = append(yyv4723, LocalObjectReference{}) // var yyz4723 LocalObjectReference - yyc4723 = true + if yyj4697 >= len(yyv4697) { + yyv4697 = append(yyv4697, LocalObjectReference{}) // var yyz4697 LocalObjectReference + yyc4697 = true } - yyh4723.ElemContainerState(yyj4723) - if yyj4723 < len(yyv4723) { + yyh4697.ElemContainerState(yyj4697) + if yyj4697 < len(yyv4697) { if r.TryDecodeAsNil() { - yyv4723[yyj4723] = LocalObjectReference{} + yyv4697[yyj4697] = LocalObjectReference{} } else { - yyv4726 := &yyv4723[yyj4723] - yyv4726.CodecDecodeSelf(d) + yyv4700 := &yyv4697[yyj4697] + yyv4700.CodecDecodeSelf(d) } } else { @@ -59556,17 +59257,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4723 < len(yyv4723) { - yyv4723 = yyv4723[:yyj4723] - yyc4723 = true - } else if yyj4723 == 0 && yyv4723 == nil { - yyv4723 = []LocalObjectReference{} - yyc4723 = true + if yyj4697 < len(yyv4697) { + yyv4697 = yyv4697[:yyj4697] + yyc4697 = true + } else if yyj4697 == 0 && yyv4697 == nil { + yyv4697 = []LocalObjectReference{} + yyc4697 = true } } - yyh4723.End() - if yyc4723 { - *v = yyv4723 + yyh4697.End() + if yyc4697 { + *v = yyv4697 } } @@ -59575,10 +59276,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4727 := range v { + for _, yyv4701 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4728 := &yyv4727 - yy4728.CodecEncodeSelf(e) + yy4702 := &yyv4701 + yy4702.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59588,83 +59289,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4729 := *v - yyh4729, yyl4729 := z.DecSliceHelperStart() - var yyc4729 bool - if yyl4729 == 0 { - if yyv4729 == nil { - yyv4729 = []PodCondition{} - yyc4729 = true - } else if len(yyv4729) != 0 { - yyv4729 = yyv4729[:0] - yyc4729 = true + yyv4703 := *v + yyh4703, yyl4703 := z.DecSliceHelperStart() + var yyc4703 bool + if yyl4703 == 0 { + if yyv4703 == nil { + yyv4703 = []PodCondition{} + yyc4703 = true + } else if len(yyv4703) != 0 { + yyv4703 = yyv4703[:0] + yyc4703 = true } - } else if yyl4729 > 0 { - var yyrr4729, yyrl4729 int - var yyrt4729 bool - if yyl4729 > cap(yyv4729) { + } else if yyl4703 > 0 { + var yyrr4703, yyrl4703 int + var yyrt4703 bool + if yyl4703 > cap(yyv4703) { - yyrg4729 := len(yyv4729) > 0 - yyv24729 := yyv4729 - yyrl4729, yyrt4729 = z.DecInferLen(yyl4729, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4729 { - if yyrl4729 <= cap(yyv4729) { - yyv4729 = yyv4729[:yyrl4729] + yyrg4703 := len(yyv4703) > 0 + yyv24703 := yyv4703 + yyrl4703, yyrt4703 = z.DecInferLen(yyl4703, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4703 { + if yyrl4703 <= cap(yyv4703) { + yyv4703 = yyv4703[:yyrl4703] } else { - yyv4729 = make([]PodCondition, yyrl4729) + yyv4703 = make([]PodCondition, yyrl4703) } } else { - yyv4729 = make([]PodCondition, yyrl4729) + yyv4703 = make([]PodCondition, yyrl4703) } - yyc4729 = true - yyrr4729 = len(yyv4729) - if yyrg4729 { - copy(yyv4729, yyv24729) + yyc4703 = true + yyrr4703 = len(yyv4703) + if yyrg4703 { + copy(yyv4703, yyv24703) } - } else if yyl4729 != len(yyv4729) { - yyv4729 = yyv4729[:yyl4729] - yyc4729 = true + } else if yyl4703 != len(yyv4703) { + yyv4703 = yyv4703[:yyl4703] + yyc4703 = true } - yyj4729 := 0 - for ; yyj4729 < yyrr4729; yyj4729++ { - yyh4729.ElemContainerState(yyj4729) + yyj4703 := 0 + for ; yyj4703 < yyrr4703; yyj4703++ { + yyh4703.ElemContainerState(yyj4703) if r.TryDecodeAsNil() { - yyv4729[yyj4729] = PodCondition{} + yyv4703[yyj4703] = PodCondition{} } else { - yyv4730 := &yyv4729[yyj4729] - yyv4730.CodecDecodeSelf(d) + yyv4704 := &yyv4703[yyj4703] + yyv4704.CodecDecodeSelf(d) } } - if yyrt4729 { - for ; yyj4729 < yyl4729; yyj4729++ { - yyv4729 = append(yyv4729, PodCondition{}) - yyh4729.ElemContainerState(yyj4729) + if yyrt4703 { + for ; yyj4703 < yyl4703; yyj4703++ { + yyv4703 = append(yyv4703, PodCondition{}) + yyh4703.ElemContainerState(yyj4703) if r.TryDecodeAsNil() { - yyv4729[yyj4729] = PodCondition{} + yyv4703[yyj4703] = PodCondition{} } else { - yyv4731 := &yyv4729[yyj4729] - yyv4731.CodecDecodeSelf(d) + yyv4705 := &yyv4703[yyj4703] + yyv4705.CodecDecodeSelf(d) } } } } else { - yyj4729 := 0 - for ; !r.CheckBreak(); yyj4729++ { + yyj4703 := 0 + for ; !r.CheckBreak(); yyj4703++ { - if yyj4729 >= len(yyv4729) { - yyv4729 = append(yyv4729, PodCondition{}) // var yyz4729 PodCondition - yyc4729 = true + if yyj4703 >= len(yyv4703) { + yyv4703 = append(yyv4703, PodCondition{}) // var yyz4703 PodCondition + yyc4703 = true } - yyh4729.ElemContainerState(yyj4729) - if yyj4729 < len(yyv4729) { + yyh4703.ElemContainerState(yyj4703) + if yyj4703 < len(yyv4703) { if r.TryDecodeAsNil() { - yyv4729[yyj4729] = PodCondition{} + yyv4703[yyj4703] = PodCondition{} } else { - yyv4732 := &yyv4729[yyj4729] - yyv4732.CodecDecodeSelf(d) + yyv4706 := &yyv4703[yyj4703] + yyv4706.CodecDecodeSelf(d) } } else { @@ -59672,17 +59373,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4729 < len(yyv4729) { - yyv4729 = yyv4729[:yyj4729] - yyc4729 = true - } else if yyj4729 == 0 && yyv4729 == nil { - yyv4729 = []PodCondition{} - yyc4729 = true + if yyj4703 < len(yyv4703) { + yyv4703 = yyv4703[:yyj4703] + yyc4703 = true + } else if yyj4703 == 0 && yyv4703 == nil { + yyv4703 = []PodCondition{} + yyc4703 = true } } - yyh4729.End() - if yyc4729 { - *v = yyv4729 + yyh4703.End() + if yyc4703 { + *v = yyv4703 } } @@ -59691,10 +59392,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4733 := range v { + for _, yyv4707 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4734 := &yyv4733 - yy4734.CodecEncodeSelf(e) + yy4708 := &yyv4707 + yy4708.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59704,83 +59405,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4735 := *v - yyh4735, yyl4735 := z.DecSliceHelperStart() - var yyc4735 bool - if yyl4735 == 0 { - if yyv4735 == nil { - yyv4735 = []ContainerStatus{} - yyc4735 = true - } else if len(yyv4735) != 0 { - yyv4735 = yyv4735[:0] - yyc4735 = true + yyv4709 := *v + yyh4709, yyl4709 := z.DecSliceHelperStart() + var yyc4709 bool + if yyl4709 == 0 { + if yyv4709 == nil { + yyv4709 = []ContainerStatus{} + yyc4709 = true + } else if len(yyv4709) != 0 { + yyv4709 = yyv4709[:0] + yyc4709 = true } - } else if yyl4735 > 0 { - var yyrr4735, yyrl4735 int - var yyrt4735 bool - if yyl4735 > cap(yyv4735) { + } else if yyl4709 > 0 { + var yyrr4709, yyrl4709 int + var yyrt4709 bool + if yyl4709 > cap(yyv4709) { - yyrg4735 := len(yyv4735) > 0 - yyv24735 := yyv4735 - yyrl4735, yyrt4735 = z.DecInferLen(yyl4735, z.DecBasicHandle().MaxInitLen, 120) - if yyrt4735 { - if yyrl4735 <= cap(yyv4735) { - yyv4735 = yyv4735[:yyrl4735] + yyrg4709 := len(yyv4709) > 0 + yyv24709 := yyv4709 + yyrl4709, yyrt4709 = z.DecInferLen(yyl4709, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4709 { + if yyrl4709 <= cap(yyv4709) { + yyv4709 = yyv4709[:yyrl4709] } else { - yyv4735 = make([]ContainerStatus, yyrl4735) + yyv4709 = make([]ContainerStatus, yyrl4709) } } else { - yyv4735 = make([]ContainerStatus, yyrl4735) + yyv4709 = make([]ContainerStatus, yyrl4709) } - yyc4735 = true - yyrr4735 = len(yyv4735) - if yyrg4735 { - copy(yyv4735, yyv24735) + yyc4709 = true + yyrr4709 = len(yyv4709) + if yyrg4709 { + copy(yyv4709, yyv24709) } - } else if yyl4735 != len(yyv4735) { - yyv4735 = yyv4735[:yyl4735] - yyc4735 = true + } else if yyl4709 != len(yyv4709) { + yyv4709 = yyv4709[:yyl4709] + yyc4709 = true } - yyj4735 := 0 - for ; yyj4735 < yyrr4735; yyj4735++ { - yyh4735.ElemContainerState(yyj4735) + yyj4709 := 0 + for ; yyj4709 < yyrr4709; yyj4709++ { + yyh4709.ElemContainerState(yyj4709) if r.TryDecodeAsNil() { - yyv4735[yyj4735] = ContainerStatus{} + yyv4709[yyj4709] = ContainerStatus{} } else { - yyv4736 := &yyv4735[yyj4735] - yyv4736.CodecDecodeSelf(d) + yyv4710 := &yyv4709[yyj4709] + yyv4710.CodecDecodeSelf(d) } } - if yyrt4735 { - for ; yyj4735 < yyl4735; yyj4735++ { - yyv4735 = append(yyv4735, ContainerStatus{}) - yyh4735.ElemContainerState(yyj4735) + if yyrt4709 { + for ; yyj4709 < yyl4709; yyj4709++ { + yyv4709 = append(yyv4709, ContainerStatus{}) + yyh4709.ElemContainerState(yyj4709) if r.TryDecodeAsNil() { - yyv4735[yyj4735] = ContainerStatus{} + yyv4709[yyj4709] = ContainerStatus{} } else { - yyv4737 := &yyv4735[yyj4735] - yyv4737.CodecDecodeSelf(d) + yyv4711 := &yyv4709[yyj4709] + yyv4711.CodecDecodeSelf(d) } } } } else { - yyj4735 := 0 - for ; !r.CheckBreak(); yyj4735++ { + yyj4709 := 0 + for ; !r.CheckBreak(); yyj4709++ { - if yyj4735 >= len(yyv4735) { - yyv4735 = append(yyv4735, ContainerStatus{}) // var yyz4735 ContainerStatus - yyc4735 = true + if yyj4709 >= len(yyv4709) { + yyv4709 = append(yyv4709, ContainerStatus{}) // var yyz4709 ContainerStatus + yyc4709 = true } - yyh4735.ElemContainerState(yyj4735) - if yyj4735 < len(yyv4735) { + yyh4709.ElemContainerState(yyj4709) + if yyj4709 < len(yyv4709) { if r.TryDecodeAsNil() { - yyv4735[yyj4735] = ContainerStatus{} + yyv4709[yyj4709] = ContainerStatus{} } else { - yyv4738 := &yyv4735[yyj4735] - yyv4738.CodecDecodeSelf(d) + yyv4712 := &yyv4709[yyj4709] + yyv4712.CodecDecodeSelf(d) } } else { @@ -59788,17 +59489,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4735 < len(yyv4735) { - yyv4735 = yyv4735[:yyj4735] - yyc4735 = true - } else if yyj4735 == 0 && yyv4735 == nil { - yyv4735 = []ContainerStatus{} - yyc4735 = true + if yyj4709 < len(yyv4709) { + yyv4709 = yyv4709[:yyj4709] + yyc4709 = true + } else if yyj4709 == 0 && yyv4709 == nil { + yyv4709 = []ContainerStatus{} + yyc4709 = true } } - yyh4735.End() - if yyc4735 { - *v = yyv4735 + yyh4709.End() + if yyc4709 { + *v = yyv4709 } } @@ -59807,10 +59508,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4739 := range v { + for _, yyv4713 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4740 := &yyv4739 - yy4740.CodecEncodeSelf(e) + yy4714 := &yyv4713 + yy4714.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59820,83 +59521,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4741 := *v - yyh4741, yyl4741 := z.DecSliceHelperStart() - var yyc4741 bool - if yyl4741 == 0 { - if yyv4741 == nil { - yyv4741 = []PodTemplate{} - yyc4741 = true - } else if len(yyv4741) != 0 { - yyv4741 = yyv4741[:0] - yyc4741 = true + yyv4715 := *v + yyh4715, yyl4715 := z.DecSliceHelperStart() + var yyc4715 bool + if yyl4715 == 0 { + if yyv4715 == nil { + yyv4715 = []PodTemplate{} + yyc4715 = true + } else if len(yyv4715) != 0 { + yyv4715 = yyv4715[:0] + yyc4715 = true } - } else if yyl4741 > 0 { - var yyrr4741, yyrl4741 int - var yyrt4741 bool - if yyl4741 > cap(yyv4741) { + } else if yyl4715 > 0 { + var yyrr4715, yyrl4715 int + var yyrt4715 bool + if yyl4715 > cap(yyv4715) { - yyrg4741 := len(yyv4741) > 0 - yyv24741 := yyv4741 - yyrl4741, yyrt4741 = z.DecInferLen(yyl4741, z.DecBasicHandle().MaxInitLen, 704) - if yyrt4741 { - if yyrl4741 <= cap(yyv4741) { - yyv4741 = yyv4741[:yyrl4741] + yyrg4715 := len(yyv4715) > 0 + yyv24715 := yyv4715 + yyrl4715, yyrt4715 = z.DecInferLen(yyl4715, z.DecBasicHandle().MaxInitLen, 704) + if yyrt4715 { + if yyrl4715 <= cap(yyv4715) { + yyv4715 = yyv4715[:yyrl4715] } else { - yyv4741 = make([]PodTemplate, yyrl4741) + yyv4715 = make([]PodTemplate, yyrl4715) } } else { - yyv4741 = make([]PodTemplate, yyrl4741) + yyv4715 = make([]PodTemplate, yyrl4715) } - yyc4741 = true - yyrr4741 = len(yyv4741) - if yyrg4741 { - copy(yyv4741, yyv24741) + yyc4715 = true + yyrr4715 = len(yyv4715) + if yyrg4715 { + copy(yyv4715, yyv24715) } - } else if yyl4741 != len(yyv4741) { - yyv4741 = yyv4741[:yyl4741] - yyc4741 = true + } else if yyl4715 != len(yyv4715) { + yyv4715 = yyv4715[:yyl4715] + yyc4715 = true } - yyj4741 := 0 - for ; yyj4741 < yyrr4741; yyj4741++ { - yyh4741.ElemContainerState(yyj4741) + yyj4715 := 0 + for ; yyj4715 < yyrr4715; yyj4715++ { + yyh4715.ElemContainerState(yyj4715) if r.TryDecodeAsNil() { - yyv4741[yyj4741] = PodTemplate{} + yyv4715[yyj4715] = PodTemplate{} } else { - yyv4742 := &yyv4741[yyj4741] - yyv4742.CodecDecodeSelf(d) + yyv4716 := &yyv4715[yyj4715] + yyv4716.CodecDecodeSelf(d) } } - if yyrt4741 { - for ; yyj4741 < yyl4741; yyj4741++ { - yyv4741 = append(yyv4741, PodTemplate{}) - yyh4741.ElemContainerState(yyj4741) + if yyrt4715 { + for ; yyj4715 < yyl4715; yyj4715++ { + yyv4715 = append(yyv4715, PodTemplate{}) + yyh4715.ElemContainerState(yyj4715) if r.TryDecodeAsNil() { - yyv4741[yyj4741] = PodTemplate{} + yyv4715[yyj4715] = PodTemplate{} } else { - yyv4743 := &yyv4741[yyj4741] - yyv4743.CodecDecodeSelf(d) + yyv4717 := &yyv4715[yyj4715] + yyv4717.CodecDecodeSelf(d) } } } } else { - yyj4741 := 0 - for ; !r.CheckBreak(); yyj4741++ { + yyj4715 := 0 + for ; !r.CheckBreak(); yyj4715++ { - if yyj4741 >= len(yyv4741) { - yyv4741 = append(yyv4741, PodTemplate{}) // var yyz4741 PodTemplate - yyc4741 = true + if yyj4715 >= len(yyv4715) { + yyv4715 = append(yyv4715, PodTemplate{}) // var yyz4715 PodTemplate + yyc4715 = true } - yyh4741.ElemContainerState(yyj4741) - if yyj4741 < len(yyv4741) { + yyh4715.ElemContainerState(yyj4715) + if yyj4715 < len(yyv4715) { if r.TryDecodeAsNil() { - yyv4741[yyj4741] = PodTemplate{} + yyv4715[yyj4715] = PodTemplate{} } else { - yyv4744 := &yyv4741[yyj4741] - yyv4744.CodecDecodeSelf(d) + yyv4718 := &yyv4715[yyj4715] + yyv4718.CodecDecodeSelf(d) } } else { @@ -59904,17 +59605,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4741 < len(yyv4741) { - yyv4741 = yyv4741[:yyj4741] - yyc4741 = true - } else if yyj4741 == 0 && yyv4741 == nil { - yyv4741 = []PodTemplate{} - yyc4741 = true + if yyj4715 < len(yyv4715) { + yyv4715 = yyv4715[:yyj4715] + yyc4715 = true + } else if yyj4715 == 0 && yyv4715 == nil { + yyv4715 = []PodTemplate{} + yyc4715 = true } } - yyh4741.End() - if yyc4741 { - *v = yyv4741 + yyh4715.End() + if yyc4715 { + *v = yyv4715 } } @@ -59923,10 +59624,10 @@ func (x codecSelfer1234) encSliceReplicationControllerCondition(v []ReplicationC z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4745 := range v { + for _, yyv4719 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4746 := &yyv4745 - yy4746.CodecEncodeSelf(e) + yy4720 := &yyv4719 + yy4720.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59936,83 +59637,83 @@ func (x codecSelfer1234) decSliceReplicationControllerCondition(v *[]Replication z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4747 := *v - yyh4747, yyl4747 := z.DecSliceHelperStart() - var yyc4747 bool - if yyl4747 == 0 { - if yyv4747 == nil { - yyv4747 = []ReplicationControllerCondition{} - yyc4747 = true - } else if len(yyv4747) != 0 { - yyv4747 = yyv4747[:0] - yyc4747 = true + yyv4721 := *v + yyh4721, yyl4721 := z.DecSliceHelperStart() + var yyc4721 bool + if yyl4721 == 0 { + if yyv4721 == nil { + yyv4721 = []ReplicationControllerCondition{} + yyc4721 = true + } else if len(yyv4721) != 0 { + yyv4721 = yyv4721[:0] + yyc4721 = true } - } else if yyl4747 > 0 { - var yyrr4747, yyrl4747 int - var yyrt4747 bool - if yyl4747 > cap(yyv4747) { + } else if yyl4721 > 0 { + var yyrr4721, yyrl4721 int + var yyrt4721 bool + if yyl4721 > cap(yyv4721) { - yyrg4747 := len(yyv4747) > 0 - yyv24747 := yyv4747 - yyrl4747, yyrt4747 = z.DecInferLen(yyl4747, z.DecBasicHandle().MaxInitLen, 88) - if yyrt4747 { - if yyrl4747 <= cap(yyv4747) { - yyv4747 = yyv4747[:yyrl4747] + yyrg4721 := len(yyv4721) > 0 + yyv24721 := yyv4721 + yyrl4721, yyrt4721 = z.DecInferLen(yyl4721, z.DecBasicHandle().MaxInitLen, 88) + if yyrt4721 { + if yyrl4721 <= cap(yyv4721) { + yyv4721 = yyv4721[:yyrl4721] } else { - yyv4747 = make([]ReplicationControllerCondition, yyrl4747) + yyv4721 = make([]ReplicationControllerCondition, yyrl4721) } } else { - yyv4747 = make([]ReplicationControllerCondition, yyrl4747) + yyv4721 = make([]ReplicationControllerCondition, yyrl4721) } - yyc4747 = true - yyrr4747 = len(yyv4747) - if yyrg4747 { - copy(yyv4747, yyv24747) + yyc4721 = true + yyrr4721 = len(yyv4721) + if yyrg4721 { + copy(yyv4721, yyv24721) } - } else if yyl4747 != len(yyv4747) { - yyv4747 = yyv4747[:yyl4747] - yyc4747 = true + } else if yyl4721 != len(yyv4721) { + yyv4721 = yyv4721[:yyl4721] + yyc4721 = true } - yyj4747 := 0 - for ; yyj4747 < yyrr4747; yyj4747++ { - yyh4747.ElemContainerState(yyj4747) + yyj4721 := 0 + for ; yyj4721 < yyrr4721; yyj4721++ { + yyh4721.ElemContainerState(yyj4721) if r.TryDecodeAsNil() { - yyv4747[yyj4747] = ReplicationControllerCondition{} + yyv4721[yyj4721] = ReplicationControllerCondition{} } else { - yyv4748 := &yyv4747[yyj4747] - yyv4748.CodecDecodeSelf(d) + yyv4722 := &yyv4721[yyj4721] + yyv4722.CodecDecodeSelf(d) } } - if yyrt4747 { - for ; yyj4747 < yyl4747; yyj4747++ { - yyv4747 = append(yyv4747, ReplicationControllerCondition{}) - yyh4747.ElemContainerState(yyj4747) + if yyrt4721 { + for ; yyj4721 < yyl4721; yyj4721++ { + yyv4721 = append(yyv4721, ReplicationControllerCondition{}) + yyh4721.ElemContainerState(yyj4721) if r.TryDecodeAsNil() { - yyv4747[yyj4747] = ReplicationControllerCondition{} + yyv4721[yyj4721] = ReplicationControllerCondition{} } else { - yyv4749 := &yyv4747[yyj4747] - yyv4749.CodecDecodeSelf(d) + yyv4723 := &yyv4721[yyj4721] + yyv4723.CodecDecodeSelf(d) } } } } else { - yyj4747 := 0 - for ; !r.CheckBreak(); yyj4747++ { + yyj4721 := 0 + for ; !r.CheckBreak(); yyj4721++ { - if yyj4747 >= len(yyv4747) { - yyv4747 = append(yyv4747, ReplicationControllerCondition{}) // var yyz4747 ReplicationControllerCondition - yyc4747 = true + if yyj4721 >= len(yyv4721) { + yyv4721 = append(yyv4721, ReplicationControllerCondition{}) // var yyz4721 ReplicationControllerCondition + yyc4721 = true } - yyh4747.ElemContainerState(yyj4747) - if yyj4747 < len(yyv4747) { + yyh4721.ElemContainerState(yyj4721) + if yyj4721 < len(yyv4721) { if r.TryDecodeAsNil() { - yyv4747[yyj4747] = ReplicationControllerCondition{} + yyv4721[yyj4721] = ReplicationControllerCondition{} } else { - yyv4750 := &yyv4747[yyj4747] - yyv4750.CodecDecodeSelf(d) + yyv4724 := &yyv4721[yyj4721] + yyv4724.CodecDecodeSelf(d) } } else { @@ -60020,17 +59721,17 @@ func (x codecSelfer1234) decSliceReplicationControllerCondition(v *[]Replication } } - if yyj4747 < len(yyv4747) { - yyv4747 = yyv4747[:yyj4747] - yyc4747 = true - } else if yyj4747 == 0 && yyv4747 == nil { - yyv4747 = []ReplicationControllerCondition{} - yyc4747 = true + if yyj4721 < len(yyv4721) { + yyv4721 = yyv4721[:yyj4721] + yyc4721 = true + } else if yyj4721 == 0 && yyv4721 == nil { + yyv4721 = []ReplicationControllerCondition{} + yyc4721 = true } } - yyh4747.End() - if yyc4747 { - *v = yyv4747 + yyh4721.End() + if yyc4721 { + *v = yyv4721 } } @@ -60039,10 +59740,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4751 := range v { + for _, yyv4725 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4752 := &yyv4751 - yy4752.CodecEncodeSelf(e) + yy4726 := &yyv4725 + yy4726.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60052,83 +59753,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4753 := *v - yyh4753, yyl4753 := z.DecSliceHelperStart() - var yyc4753 bool - if yyl4753 == 0 { - if yyv4753 == nil { - yyv4753 = []ReplicationController{} - yyc4753 = true - } else if len(yyv4753) != 0 { - yyv4753 = yyv4753[:0] - yyc4753 = true + yyv4727 := *v + yyh4727, yyl4727 := z.DecSliceHelperStart() + var yyc4727 bool + if yyl4727 == 0 { + if yyv4727 == nil { + yyv4727 = []ReplicationController{} + yyc4727 = true + } else if len(yyv4727) != 0 { + yyv4727 = yyv4727[:0] + yyc4727 = true } - } else if yyl4753 > 0 { - var yyrr4753, yyrl4753 int - var yyrt4753 bool - if yyl4753 > cap(yyv4753) { + } else if yyl4727 > 0 { + var yyrr4727, yyrl4727 int + var yyrt4727 bool + if yyl4727 > cap(yyv4727) { - yyrg4753 := len(yyv4753) > 0 - yyv24753 := yyv4753 - yyrl4753, yyrt4753 = z.DecInferLen(yyl4753, z.DecBasicHandle().MaxInitLen, 328) - if yyrt4753 { - if yyrl4753 <= cap(yyv4753) { - yyv4753 = yyv4753[:yyrl4753] + yyrg4727 := len(yyv4727) > 0 + yyv24727 := yyv4727 + yyrl4727, yyrt4727 = z.DecInferLen(yyl4727, z.DecBasicHandle().MaxInitLen, 328) + if yyrt4727 { + if yyrl4727 <= cap(yyv4727) { + yyv4727 = yyv4727[:yyrl4727] } else { - yyv4753 = make([]ReplicationController, yyrl4753) + yyv4727 = make([]ReplicationController, yyrl4727) } } else { - yyv4753 = make([]ReplicationController, yyrl4753) + yyv4727 = make([]ReplicationController, yyrl4727) } - yyc4753 = true - yyrr4753 = len(yyv4753) - if yyrg4753 { - copy(yyv4753, yyv24753) + yyc4727 = true + yyrr4727 = len(yyv4727) + if yyrg4727 { + copy(yyv4727, yyv24727) } - } else if yyl4753 != len(yyv4753) { - yyv4753 = yyv4753[:yyl4753] - yyc4753 = true + } else if yyl4727 != len(yyv4727) { + yyv4727 = yyv4727[:yyl4727] + yyc4727 = true } - yyj4753 := 0 - for ; yyj4753 < yyrr4753; yyj4753++ { - yyh4753.ElemContainerState(yyj4753) + yyj4727 := 0 + for ; yyj4727 < yyrr4727; yyj4727++ { + yyh4727.ElemContainerState(yyj4727) if r.TryDecodeAsNil() { - yyv4753[yyj4753] = ReplicationController{} + yyv4727[yyj4727] = ReplicationController{} } else { - yyv4754 := &yyv4753[yyj4753] - yyv4754.CodecDecodeSelf(d) + yyv4728 := &yyv4727[yyj4727] + yyv4728.CodecDecodeSelf(d) } } - if yyrt4753 { - for ; yyj4753 < yyl4753; yyj4753++ { - yyv4753 = append(yyv4753, ReplicationController{}) - yyh4753.ElemContainerState(yyj4753) + if yyrt4727 { + for ; yyj4727 < yyl4727; yyj4727++ { + yyv4727 = append(yyv4727, ReplicationController{}) + yyh4727.ElemContainerState(yyj4727) if r.TryDecodeAsNil() { - yyv4753[yyj4753] = ReplicationController{} + yyv4727[yyj4727] = ReplicationController{} } else { - yyv4755 := &yyv4753[yyj4753] - yyv4755.CodecDecodeSelf(d) + yyv4729 := &yyv4727[yyj4727] + yyv4729.CodecDecodeSelf(d) } } } } else { - yyj4753 := 0 - for ; !r.CheckBreak(); yyj4753++ { + yyj4727 := 0 + for ; !r.CheckBreak(); yyj4727++ { - if yyj4753 >= len(yyv4753) { - yyv4753 = append(yyv4753, ReplicationController{}) // var yyz4753 ReplicationController - yyc4753 = true + if yyj4727 >= len(yyv4727) { + yyv4727 = append(yyv4727, ReplicationController{}) // var yyz4727 ReplicationController + yyc4727 = true } - yyh4753.ElemContainerState(yyj4753) - if yyj4753 < len(yyv4753) { + yyh4727.ElemContainerState(yyj4727) + if yyj4727 < len(yyv4727) { if r.TryDecodeAsNil() { - yyv4753[yyj4753] = ReplicationController{} + yyv4727[yyj4727] = ReplicationController{} } else { - yyv4756 := &yyv4753[yyj4753] - yyv4756.CodecDecodeSelf(d) + yyv4730 := &yyv4727[yyj4727] + yyv4730.CodecDecodeSelf(d) } } else { @@ -60136,17 +59837,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4753 < len(yyv4753) { - yyv4753 = yyv4753[:yyj4753] - yyc4753 = true - } else if yyj4753 == 0 && yyv4753 == nil { - yyv4753 = []ReplicationController{} - yyc4753 = true + if yyj4727 < len(yyv4727) { + yyv4727 = yyv4727[:yyj4727] + yyc4727 = true + } else if yyj4727 == 0 && yyv4727 == nil { + yyv4727 = []ReplicationController{} + yyc4727 = true } } - yyh4753.End() - if yyc4753 { - *v = yyv4753 + yyh4727.End() + if yyc4727 { + *v = yyv4727 } } @@ -60155,10 +59856,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4757 := range v { + for _, yyv4731 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4758 := &yyv4757 - yy4758.CodecEncodeSelf(e) + yy4732 := &yyv4731 + yy4732.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60168,83 +59869,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4759 := *v - yyh4759, yyl4759 := z.DecSliceHelperStart() - var yyc4759 bool - if yyl4759 == 0 { - if yyv4759 == nil { - yyv4759 = []Service{} - yyc4759 = true - } else if len(yyv4759) != 0 { - yyv4759 = yyv4759[:0] - yyc4759 = true + yyv4733 := *v + yyh4733, yyl4733 := z.DecSliceHelperStart() + var yyc4733 bool + if yyl4733 == 0 { + if yyv4733 == nil { + yyv4733 = []Service{} + yyc4733 = true + } else if len(yyv4733) != 0 { + yyv4733 = yyv4733[:0] + yyc4733 = true } - } else if yyl4759 > 0 { - var yyrr4759, yyrl4759 int - var yyrt4759 bool - if yyl4759 > cap(yyv4759) { + } else if yyl4733 > 0 { + var yyrr4733, yyrl4733 int + var yyrt4733 bool + if yyl4733 > cap(yyv4733) { - yyrg4759 := len(yyv4759) > 0 - yyv24759 := yyv4759 - yyrl4759, yyrt4759 = z.DecInferLen(yyl4759, z.DecBasicHandle().MaxInitLen, 440) - if yyrt4759 { - if yyrl4759 <= cap(yyv4759) { - yyv4759 = yyv4759[:yyrl4759] + yyrg4733 := len(yyv4733) > 0 + yyv24733 := yyv4733 + yyrl4733, yyrt4733 = z.DecInferLen(yyl4733, z.DecBasicHandle().MaxInitLen, 440) + if yyrt4733 { + if yyrl4733 <= cap(yyv4733) { + yyv4733 = yyv4733[:yyrl4733] } else { - yyv4759 = make([]Service, yyrl4759) + yyv4733 = make([]Service, yyrl4733) } } else { - yyv4759 = make([]Service, yyrl4759) + yyv4733 = make([]Service, yyrl4733) } - yyc4759 = true - yyrr4759 = len(yyv4759) - if yyrg4759 { - copy(yyv4759, yyv24759) + yyc4733 = true + yyrr4733 = len(yyv4733) + if yyrg4733 { + copy(yyv4733, yyv24733) } - } else if yyl4759 != len(yyv4759) { - yyv4759 = yyv4759[:yyl4759] - yyc4759 = true + } else if yyl4733 != len(yyv4733) { + yyv4733 = yyv4733[:yyl4733] + yyc4733 = true } - yyj4759 := 0 - for ; yyj4759 < yyrr4759; yyj4759++ { - yyh4759.ElemContainerState(yyj4759) + yyj4733 := 0 + for ; yyj4733 < yyrr4733; yyj4733++ { + yyh4733.ElemContainerState(yyj4733) if r.TryDecodeAsNil() { - yyv4759[yyj4759] = Service{} + yyv4733[yyj4733] = Service{} } else { - yyv4760 := &yyv4759[yyj4759] - yyv4760.CodecDecodeSelf(d) + yyv4734 := &yyv4733[yyj4733] + yyv4734.CodecDecodeSelf(d) } } - if yyrt4759 { - for ; yyj4759 < yyl4759; yyj4759++ { - yyv4759 = append(yyv4759, Service{}) - yyh4759.ElemContainerState(yyj4759) + if yyrt4733 { + for ; yyj4733 < yyl4733; yyj4733++ { + yyv4733 = append(yyv4733, Service{}) + yyh4733.ElemContainerState(yyj4733) if r.TryDecodeAsNil() { - yyv4759[yyj4759] = Service{} + yyv4733[yyj4733] = Service{} } else { - yyv4761 := &yyv4759[yyj4759] - yyv4761.CodecDecodeSelf(d) + yyv4735 := &yyv4733[yyj4733] + yyv4735.CodecDecodeSelf(d) } } } } else { - yyj4759 := 0 - for ; !r.CheckBreak(); yyj4759++ { + yyj4733 := 0 + for ; !r.CheckBreak(); yyj4733++ { - if yyj4759 >= len(yyv4759) { - yyv4759 = append(yyv4759, Service{}) // var yyz4759 Service - yyc4759 = true + if yyj4733 >= len(yyv4733) { + yyv4733 = append(yyv4733, Service{}) // var yyz4733 Service + yyc4733 = true } - yyh4759.ElemContainerState(yyj4759) - if yyj4759 < len(yyv4759) { + yyh4733.ElemContainerState(yyj4733) + if yyj4733 < len(yyv4733) { if r.TryDecodeAsNil() { - yyv4759[yyj4759] = Service{} + yyv4733[yyj4733] = Service{} } else { - yyv4762 := &yyv4759[yyj4759] - yyv4762.CodecDecodeSelf(d) + yyv4736 := &yyv4733[yyj4733] + yyv4736.CodecDecodeSelf(d) } } else { @@ -60252,17 +59953,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4759 < len(yyv4759) { - yyv4759 = yyv4759[:yyj4759] - yyc4759 = true - } else if yyj4759 == 0 && yyv4759 == nil { - yyv4759 = []Service{} - yyc4759 = true + if yyj4733 < len(yyv4733) { + yyv4733 = yyv4733[:yyj4733] + yyc4733 = true + } else if yyj4733 == 0 && yyv4733 == nil { + yyv4733 = []Service{} + yyc4733 = true } } - yyh4759.End() - if yyc4759 { - *v = yyv4759 + yyh4733.End() + if yyc4733 { + *v = yyv4733 } } @@ -60271,10 +59972,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4763 := range v { + for _, yyv4737 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4764 := &yyv4763 - yy4764.CodecEncodeSelf(e) + yy4738 := &yyv4737 + yy4738.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60284,83 +59985,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4765 := *v - yyh4765, yyl4765 := z.DecSliceHelperStart() - var yyc4765 bool - if yyl4765 == 0 { - if yyv4765 == nil { - yyv4765 = []LoadBalancerIngress{} - yyc4765 = true - } else if len(yyv4765) != 0 { - yyv4765 = yyv4765[:0] - yyc4765 = true + yyv4739 := *v + yyh4739, yyl4739 := z.DecSliceHelperStart() + var yyc4739 bool + if yyl4739 == 0 { + if yyv4739 == nil { + yyv4739 = []LoadBalancerIngress{} + yyc4739 = true + } else if len(yyv4739) != 0 { + yyv4739 = yyv4739[:0] + yyc4739 = true } - } else if yyl4765 > 0 { - var yyrr4765, yyrl4765 int - var yyrt4765 bool - if yyl4765 > cap(yyv4765) { + } else if yyl4739 > 0 { + var yyrr4739, yyrl4739 int + var yyrt4739 bool + if yyl4739 > cap(yyv4739) { - yyrg4765 := len(yyv4765) > 0 - yyv24765 := yyv4765 - yyrl4765, yyrt4765 = z.DecInferLen(yyl4765, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4765 { - if yyrl4765 <= cap(yyv4765) { - yyv4765 = yyv4765[:yyrl4765] + yyrg4739 := len(yyv4739) > 0 + yyv24739 := yyv4739 + yyrl4739, yyrt4739 = z.DecInferLen(yyl4739, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4739 { + if yyrl4739 <= cap(yyv4739) { + yyv4739 = yyv4739[:yyrl4739] } else { - yyv4765 = make([]LoadBalancerIngress, yyrl4765) + yyv4739 = make([]LoadBalancerIngress, yyrl4739) } } else { - yyv4765 = make([]LoadBalancerIngress, yyrl4765) + yyv4739 = make([]LoadBalancerIngress, yyrl4739) } - yyc4765 = true - yyrr4765 = len(yyv4765) - if yyrg4765 { - copy(yyv4765, yyv24765) + yyc4739 = true + yyrr4739 = len(yyv4739) + if yyrg4739 { + copy(yyv4739, yyv24739) } - } else if yyl4765 != len(yyv4765) { - yyv4765 = yyv4765[:yyl4765] - yyc4765 = true + } else if yyl4739 != len(yyv4739) { + yyv4739 = yyv4739[:yyl4739] + yyc4739 = true } - yyj4765 := 0 - for ; yyj4765 < yyrr4765; yyj4765++ { - yyh4765.ElemContainerState(yyj4765) + yyj4739 := 0 + for ; yyj4739 < yyrr4739; yyj4739++ { + yyh4739.ElemContainerState(yyj4739) if r.TryDecodeAsNil() { - yyv4765[yyj4765] = LoadBalancerIngress{} + yyv4739[yyj4739] = LoadBalancerIngress{} } else { - yyv4766 := &yyv4765[yyj4765] - yyv4766.CodecDecodeSelf(d) + yyv4740 := &yyv4739[yyj4739] + yyv4740.CodecDecodeSelf(d) } } - if yyrt4765 { - for ; yyj4765 < yyl4765; yyj4765++ { - yyv4765 = append(yyv4765, LoadBalancerIngress{}) - yyh4765.ElemContainerState(yyj4765) + if yyrt4739 { + for ; yyj4739 < yyl4739; yyj4739++ { + yyv4739 = append(yyv4739, LoadBalancerIngress{}) + yyh4739.ElemContainerState(yyj4739) if r.TryDecodeAsNil() { - yyv4765[yyj4765] = LoadBalancerIngress{} + yyv4739[yyj4739] = LoadBalancerIngress{} } else { - yyv4767 := &yyv4765[yyj4765] - yyv4767.CodecDecodeSelf(d) + yyv4741 := &yyv4739[yyj4739] + yyv4741.CodecDecodeSelf(d) } } } } else { - yyj4765 := 0 - for ; !r.CheckBreak(); yyj4765++ { + yyj4739 := 0 + for ; !r.CheckBreak(); yyj4739++ { - if yyj4765 >= len(yyv4765) { - yyv4765 = append(yyv4765, LoadBalancerIngress{}) // var yyz4765 LoadBalancerIngress - yyc4765 = true + if yyj4739 >= len(yyv4739) { + yyv4739 = append(yyv4739, LoadBalancerIngress{}) // var yyz4739 LoadBalancerIngress + yyc4739 = true } - yyh4765.ElemContainerState(yyj4765) - if yyj4765 < len(yyv4765) { + yyh4739.ElemContainerState(yyj4739) + if yyj4739 < len(yyv4739) { if r.TryDecodeAsNil() { - yyv4765[yyj4765] = LoadBalancerIngress{} + yyv4739[yyj4739] = LoadBalancerIngress{} } else { - yyv4768 := &yyv4765[yyj4765] - yyv4768.CodecDecodeSelf(d) + yyv4742 := &yyv4739[yyj4739] + yyv4742.CodecDecodeSelf(d) } } else { @@ -60368,17 +60069,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4765 < len(yyv4765) { - yyv4765 = yyv4765[:yyj4765] - yyc4765 = true - } else if yyj4765 == 0 && yyv4765 == nil { - yyv4765 = []LoadBalancerIngress{} - yyc4765 = true + if yyj4739 < len(yyv4739) { + yyv4739 = yyv4739[:yyj4739] + yyc4739 = true + } else if yyj4739 == 0 && yyv4739 == nil { + yyv4739 = []LoadBalancerIngress{} + yyc4739 = true } } - yyh4765.End() - if yyc4765 { - *v = yyv4765 + yyh4739.End() + if yyc4739 { + *v = yyv4739 } } @@ -60387,10 +60088,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4769 := range v { + for _, yyv4743 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4770 := &yyv4769 - yy4770.CodecEncodeSelf(e) + yy4744 := &yyv4743 + yy4744.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60400,83 +60101,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4771 := *v - yyh4771, yyl4771 := z.DecSliceHelperStart() - var yyc4771 bool - if yyl4771 == 0 { - if yyv4771 == nil { - yyv4771 = []ServicePort{} - yyc4771 = true - } else if len(yyv4771) != 0 { - yyv4771 = yyv4771[:0] - yyc4771 = true + yyv4745 := *v + yyh4745, yyl4745 := z.DecSliceHelperStart() + var yyc4745 bool + if yyl4745 == 0 { + if yyv4745 == nil { + yyv4745 = []ServicePort{} + yyc4745 = true + } else if len(yyv4745) != 0 { + yyv4745 = yyv4745[:0] + yyc4745 = true } - } else if yyl4771 > 0 { - var yyrr4771, yyrl4771 int - var yyrt4771 bool - if yyl4771 > cap(yyv4771) { + } else if yyl4745 > 0 { + var yyrr4745, yyrl4745 int + var yyrt4745 bool + if yyl4745 > cap(yyv4745) { - yyrg4771 := len(yyv4771) > 0 - yyv24771 := yyv4771 - yyrl4771, yyrt4771 = z.DecInferLen(yyl4771, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4771 { - if yyrl4771 <= cap(yyv4771) { - yyv4771 = yyv4771[:yyrl4771] + yyrg4745 := len(yyv4745) > 0 + yyv24745 := yyv4745 + yyrl4745, yyrt4745 = z.DecInferLen(yyl4745, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4745 { + if yyrl4745 <= cap(yyv4745) { + yyv4745 = yyv4745[:yyrl4745] } else { - yyv4771 = make([]ServicePort, yyrl4771) + yyv4745 = make([]ServicePort, yyrl4745) } } else { - yyv4771 = make([]ServicePort, yyrl4771) + yyv4745 = make([]ServicePort, yyrl4745) } - yyc4771 = true - yyrr4771 = len(yyv4771) - if yyrg4771 { - copy(yyv4771, yyv24771) + yyc4745 = true + yyrr4745 = len(yyv4745) + if yyrg4745 { + copy(yyv4745, yyv24745) } - } else if yyl4771 != len(yyv4771) { - yyv4771 = yyv4771[:yyl4771] - yyc4771 = true + } else if yyl4745 != len(yyv4745) { + yyv4745 = yyv4745[:yyl4745] + yyc4745 = true } - yyj4771 := 0 - for ; yyj4771 < yyrr4771; yyj4771++ { - yyh4771.ElemContainerState(yyj4771) + yyj4745 := 0 + for ; yyj4745 < yyrr4745; yyj4745++ { + yyh4745.ElemContainerState(yyj4745) if r.TryDecodeAsNil() { - yyv4771[yyj4771] = ServicePort{} + yyv4745[yyj4745] = ServicePort{} } else { - yyv4772 := &yyv4771[yyj4771] - yyv4772.CodecDecodeSelf(d) + yyv4746 := &yyv4745[yyj4745] + yyv4746.CodecDecodeSelf(d) } } - if yyrt4771 { - for ; yyj4771 < yyl4771; yyj4771++ { - yyv4771 = append(yyv4771, ServicePort{}) - yyh4771.ElemContainerState(yyj4771) + if yyrt4745 { + for ; yyj4745 < yyl4745; yyj4745++ { + yyv4745 = append(yyv4745, ServicePort{}) + yyh4745.ElemContainerState(yyj4745) if r.TryDecodeAsNil() { - yyv4771[yyj4771] = ServicePort{} + yyv4745[yyj4745] = ServicePort{} } else { - yyv4773 := &yyv4771[yyj4771] - yyv4773.CodecDecodeSelf(d) + yyv4747 := &yyv4745[yyj4745] + yyv4747.CodecDecodeSelf(d) } } } } else { - yyj4771 := 0 - for ; !r.CheckBreak(); yyj4771++ { + yyj4745 := 0 + for ; !r.CheckBreak(); yyj4745++ { - if yyj4771 >= len(yyv4771) { - yyv4771 = append(yyv4771, ServicePort{}) // var yyz4771 ServicePort - yyc4771 = true + if yyj4745 >= len(yyv4745) { + yyv4745 = append(yyv4745, ServicePort{}) // var yyz4745 ServicePort + yyc4745 = true } - yyh4771.ElemContainerState(yyj4771) - if yyj4771 < len(yyv4771) { + yyh4745.ElemContainerState(yyj4745) + if yyj4745 < len(yyv4745) { if r.TryDecodeAsNil() { - yyv4771[yyj4771] = ServicePort{} + yyv4745[yyj4745] = ServicePort{} } else { - yyv4774 := &yyv4771[yyj4771] - yyv4774.CodecDecodeSelf(d) + yyv4748 := &yyv4745[yyj4745] + yyv4748.CodecDecodeSelf(d) } } else { @@ -60484,17 +60185,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4771 < len(yyv4771) { - yyv4771 = yyv4771[:yyj4771] - yyc4771 = true - } else if yyj4771 == 0 && yyv4771 == nil { - yyv4771 = []ServicePort{} - yyc4771 = true + if yyj4745 < len(yyv4745) { + yyv4745 = yyv4745[:yyj4745] + yyc4745 = true + } else if yyj4745 == 0 && yyv4745 == nil { + yyv4745 = []ServicePort{} + yyc4745 = true } } - yyh4771.End() - if yyc4771 { - *v = yyv4771 + yyh4745.End() + if yyc4745 { + *v = yyv4745 } } @@ -60503,10 +60204,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4775 := range v { + for _, yyv4749 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4776 := &yyv4775 - yy4776.CodecEncodeSelf(e) + yy4750 := &yyv4749 + yy4750.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60516,83 +60217,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4777 := *v - yyh4777, yyl4777 := z.DecSliceHelperStart() - var yyc4777 bool - if yyl4777 == 0 { - if yyv4777 == nil { - yyv4777 = []ObjectReference{} - yyc4777 = true - } else if len(yyv4777) != 0 { - yyv4777 = yyv4777[:0] - yyc4777 = true + yyv4751 := *v + yyh4751, yyl4751 := z.DecSliceHelperStart() + var yyc4751 bool + if yyl4751 == 0 { + if yyv4751 == nil { + yyv4751 = []ObjectReference{} + yyc4751 = true + } else if len(yyv4751) != 0 { + yyv4751 = yyv4751[:0] + yyc4751 = true } - } else if yyl4777 > 0 { - var yyrr4777, yyrl4777 int - var yyrt4777 bool - if yyl4777 > cap(yyv4777) { + } else if yyl4751 > 0 { + var yyrr4751, yyrl4751 int + var yyrt4751 bool + if yyl4751 > cap(yyv4751) { - yyrg4777 := len(yyv4777) > 0 - yyv24777 := yyv4777 - yyrl4777, yyrt4777 = z.DecInferLen(yyl4777, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4777 { - if yyrl4777 <= cap(yyv4777) { - yyv4777 = yyv4777[:yyrl4777] + yyrg4751 := len(yyv4751) > 0 + yyv24751 := yyv4751 + yyrl4751, yyrt4751 = z.DecInferLen(yyl4751, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4751 { + if yyrl4751 <= cap(yyv4751) { + yyv4751 = yyv4751[:yyrl4751] } else { - yyv4777 = make([]ObjectReference, yyrl4777) + yyv4751 = make([]ObjectReference, yyrl4751) } } else { - yyv4777 = make([]ObjectReference, yyrl4777) + yyv4751 = make([]ObjectReference, yyrl4751) } - yyc4777 = true - yyrr4777 = len(yyv4777) - if yyrg4777 { - copy(yyv4777, yyv24777) + yyc4751 = true + yyrr4751 = len(yyv4751) + if yyrg4751 { + copy(yyv4751, yyv24751) } - } else if yyl4777 != len(yyv4777) { - yyv4777 = yyv4777[:yyl4777] - yyc4777 = true + } else if yyl4751 != len(yyv4751) { + yyv4751 = yyv4751[:yyl4751] + yyc4751 = true } - yyj4777 := 0 - for ; yyj4777 < yyrr4777; yyj4777++ { - yyh4777.ElemContainerState(yyj4777) + yyj4751 := 0 + for ; yyj4751 < yyrr4751; yyj4751++ { + yyh4751.ElemContainerState(yyj4751) if r.TryDecodeAsNil() { - yyv4777[yyj4777] = ObjectReference{} + yyv4751[yyj4751] = ObjectReference{} } else { - yyv4778 := &yyv4777[yyj4777] - yyv4778.CodecDecodeSelf(d) + yyv4752 := &yyv4751[yyj4751] + yyv4752.CodecDecodeSelf(d) } } - if yyrt4777 { - for ; yyj4777 < yyl4777; yyj4777++ { - yyv4777 = append(yyv4777, ObjectReference{}) - yyh4777.ElemContainerState(yyj4777) + if yyrt4751 { + for ; yyj4751 < yyl4751; yyj4751++ { + yyv4751 = append(yyv4751, ObjectReference{}) + yyh4751.ElemContainerState(yyj4751) if r.TryDecodeAsNil() { - yyv4777[yyj4777] = ObjectReference{} + yyv4751[yyj4751] = ObjectReference{} } else { - yyv4779 := &yyv4777[yyj4777] - yyv4779.CodecDecodeSelf(d) + yyv4753 := &yyv4751[yyj4751] + yyv4753.CodecDecodeSelf(d) } } } } else { - yyj4777 := 0 - for ; !r.CheckBreak(); yyj4777++ { + yyj4751 := 0 + for ; !r.CheckBreak(); yyj4751++ { - if yyj4777 >= len(yyv4777) { - yyv4777 = append(yyv4777, ObjectReference{}) // var yyz4777 ObjectReference - yyc4777 = true + if yyj4751 >= len(yyv4751) { + yyv4751 = append(yyv4751, ObjectReference{}) // var yyz4751 ObjectReference + yyc4751 = true } - yyh4777.ElemContainerState(yyj4777) - if yyj4777 < len(yyv4777) { + yyh4751.ElemContainerState(yyj4751) + if yyj4751 < len(yyv4751) { if r.TryDecodeAsNil() { - yyv4777[yyj4777] = ObjectReference{} + yyv4751[yyj4751] = ObjectReference{} } else { - yyv4780 := &yyv4777[yyj4777] - yyv4780.CodecDecodeSelf(d) + yyv4754 := &yyv4751[yyj4751] + yyv4754.CodecDecodeSelf(d) } } else { @@ -60600,17 +60301,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj4777 < len(yyv4777) { - yyv4777 = yyv4777[:yyj4777] - yyc4777 = true - } else if yyj4777 == 0 && yyv4777 == nil { - yyv4777 = []ObjectReference{} - yyc4777 = true + if yyj4751 < len(yyv4751) { + yyv4751 = yyv4751[:yyj4751] + yyc4751 = true + } else if yyj4751 == 0 && yyv4751 == nil { + yyv4751 = []ObjectReference{} + yyc4751 = true } } - yyh4777.End() - if yyc4777 { - *v = yyv4777 + yyh4751.End() + if yyc4751 { + *v = yyv4751 } } @@ -60619,10 +60320,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4781 := range v { + for _, yyv4755 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4782 := &yyv4781 - yy4782.CodecEncodeSelf(e) + yy4756 := &yyv4755 + yy4756.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60632,83 +60333,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4783 := *v - yyh4783, yyl4783 := z.DecSliceHelperStart() - var yyc4783 bool - if yyl4783 == 0 { - if yyv4783 == nil { - yyv4783 = []ServiceAccount{} - yyc4783 = true - } else if len(yyv4783) != 0 { - yyv4783 = yyv4783[:0] - yyc4783 = true + yyv4757 := *v + yyh4757, yyl4757 := z.DecSliceHelperStart() + var yyc4757 bool + if yyl4757 == 0 { + if yyv4757 == nil { + yyv4757 = []ServiceAccount{} + yyc4757 = true + } else if len(yyv4757) != 0 { + yyv4757 = yyv4757[:0] + yyc4757 = true } - } else if yyl4783 > 0 { - var yyrr4783, yyrl4783 int - var yyrt4783 bool - if yyl4783 > cap(yyv4783) { + } else if yyl4757 > 0 { + var yyrr4757, yyrl4757 int + var yyrt4757 bool + if yyl4757 > cap(yyv4757) { - yyrg4783 := len(yyv4783) > 0 - yyv24783 := yyv4783 - yyrl4783, yyrt4783 = z.DecInferLen(yyl4783, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4783 { - if yyrl4783 <= cap(yyv4783) { - yyv4783 = yyv4783[:yyrl4783] + yyrg4757 := len(yyv4757) > 0 + yyv24757 := yyv4757 + yyrl4757, yyrt4757 = z.DecInferLen(yyl4757, z.DecBasicHandle().MaxInitLen, 304) + if yyrt4757 { + if yyrl4757 <= cap(yyv4757) { + yyv4757 = yyv4757[:yyrl4757] } else { - yyv4783 = make([]ServiceAccount, yyrl4783) + yyv4757 = make([]ServiceAccount, yyrl4757) } } else { - yyv4783 = make([]ServiceAccount, yyrl4783) + yyv4757 = make([]ServiceAccount, yyrl4757) } - yyc4783 = true - yyrr4783 = len(yyv4783) - if yyrg4783 { - copy(yyv4783, yyv24783) + yyc4757 = true + yyrr4757 = len(yyv4757) + if yyrg4757 { + copy(yyv4757, yyv24757) } - } else if yyl4783 != len(yyv4783) { - yyv4783 = yyv4783[:yyl4783] - yyc4783 = true + } else if yyl4757 != len(yyv4757) { + yyv4757 = yyv4757[:yyl4757] + yyc4757 = true } - yyj4783 := 0 - for ; yyj4783 < yyrr4783; yyj4783++ { - yyh4783.ElemContainerState(yyj4783) + yyj4757 := 0 + for ; yyj4757 < yyrr4757; yyj4757++ { + yyh4757.ElemContainerState(yyj4757) if r.TryDecodeAsNil() { - yyv4783[yyj4783] = ServiceAccount{} + yyv4757[yyj4757] = ServiceAccount{} } else { - yyv4784 := &yyv4783[yyj4783] - yyv4784.CodecDecodeSelf(d) + yyv4758 := &yyv4757[yyj4757] + yyv4758.CodecDecodeSelf(d) } } - if yyrt4783 { - for ; yyj4783 < yyl4783; yyj4783++ { - yyv4783 = append(yyv4783, ServiceAccount{}) - yyh4783.ElemContainerState(yyj4783) + if yyrt4757 { + for ; yyj4757 < yyl4757; yyj4757++ { + yyv4757 = append(yyv4757, ServiceAccount{}) + yyh4757.ElemContainerState(yyj4757) if r.TryDecodeAsNil() { - yyv4783[yyj4783] = ServiceAccount{} + yyv4757[yyj4757] = ServiceAccount{} } else { - yyv4785 := &yyv4783[yyj4783] - yyv4785.CodecDecodeSelf(d) + yyv4759 := &yyv4757[yyj4757] + yyv4759.CodecDecodeSelf(d) } } } } else { - yyj4783 := 0 - for ; !r.CheckBreak(); yyj4783++ { + yyj4757 := 0 + for ; !r.CheckBreak(); yyj4757++ { - if yyj4783 >= len(yyv4783) { - yyv4783 = append(yyv4783, ServiceAccount{}) // var yyz4783 ServiceAccount - yyc4783 = true + if yyj4757 >= len(yyv4757) { + yyv4757 = append(yyv4757, ServiceAccount{}) // var yyz4757 ServiceAccount + yyc4757 = true } - yyh4783.ElemContainerState(yyj4783) - if yyj4783 < len(yyv4783) { + yyh4757.ElemContainerState(yyj4757) + if yyj4757 < len(yyv4757) { if r.TryDecodeAsNil() { - yyv4783[yyj4783] = ServiceAccount{} + yyv4757[yyj4757] = ServiceAccount{} } else { - yyv4786 := &yyv4783[yyj4783] - yyv4786.CodecDecodeSelf(d) + yyv4760 := &yyv4757[yyj4757] + yyv4760.CodecDecodeSelf(d) } } else { @@ -60716,17 +60417,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj4783 < len(yyv4783) { - yyv4783 = yyv4783[:yyj4783] - yyc4783 = true - } else if yyj4783 == 0 && yyv4783 == nil { - yyv4783 = []ServiceAccount{} - yyc4783 = true + if yyj4757 < len(yyv4757) { + yyv4757 = yyv4757[:yyj4757] + yyc4757 = true + } else if yyj4757 == 0 && yyv4757 == nil { + yyv4757 = []ServiceAccount{} + yyc4757 = true } } - yyh4783.End() - if yyc4783 { - *v = yyv4783 + yyh4757.End() + if yyc4757 { + *v = yyv4757 } } @@ -60735,10 +60436,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4787 := range v { + for _, yyv4761 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4788 := &yyv4787 - yy4788.CodecEncodeSelf(e) + yy4762 := &yyv4761 + yy4762.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60748,83 +60449,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4789 := *v - yyh4789, yyl4789 := z.DecSliceHelperStart() - var yyc4789 bool - if yyl4789 == 0 { - if yyv4789 == nil { - yyv4789 = []EndpointSubset{} - yyc4789 = true - } else if len(yyv4789) != 0 { - yyv4789 = yyv4789[:0] - yyc4789 = true + yyv4763 := *v + yyh4763, yyl4763 := z.DecSliceHelperStart() + var yyc4763 bool + if yyl4763 == 0 { + if yyv4763 == nil { + yyv4763 = []EndpointSubset{} + yyc4763 = true + } else if len(yyv4763) != 0 { + yyv4763 = yyv4763[:0] + yyc4763 = true } - } else if yyl4789 > 0 { - var yyrr4789, yyrl4789 int - var yyrt4789 bool - if yyl4789 > cap(yyv4789) { + } else if yyl4763 > 0 { + var yyrr4763, yyrl4763 int + var yyrt4763 bool + if yyl4763 > cap(yyv4763) { - yyrg4789 := len(yyv4789) > 0 - yyv24789 := yyv4789 - yyrl4789, yyrt4789 = z.DecInferLen(yyl4789, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4789 { - if yyrl4789 <= cap(yyv4789) { - yyv4789 = yyv4789[:yyrl4789] + yyrg4763 := len(yyv4763) > 0 + yyv24763 := yyv4763 + yyrl4763, yyrt4763 = z.DecInferLen(yyl4763, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4763 { + if yyrl4763 <= cap(yyv4763) { + yyv4763 = yyv4763[:yyrl4763] } else { - yyv4789 = make([]EndpointSubset, yyrl4789) + yyv4763 = make([]EndpointSubset, yyrl4763) } } else { - yyv4789 = make([]EndpointSubset, yyrl4789) + yyv4763 = make([]EndpointSubset, yyrl4763) } - yyc4789 = true - yyrr4789 = len(yyv4789) - if yyrg4789 { - copy(yyv4789, yyv24789) + yyc4763 = true + yyrr4763 = len(yyv4763) + if yyrg4763 { + copy(yyv4763, yyv24763) } - } else if yyl4789 != len(yyv4789) { - yyv4789 = yyv4789[:yyl4789] - yyc4789 = true + } else if yyl4763 != len(yyv4763) { + yyv4763 = yyv4763[:yyl4763] + yyc4763 = true } - yyj4789 := 0 - for ; yyj4789 < yyrr4789; yyj4789++ { - yyh4789.ElemContainerState(yyj4789) + yyj4763 := 0 + for ; yyj4763 < yyrr4763; yyj4763++ { + yyh4763.ElemContainerState(yyj4763) if r.TryDecodeAsNil() { - yyv4789[yyj4789] = EndpointSubset{} + yyv4763[yyj4763] = EndpointSubset{} } else { - yyv4790 := &yyv4789[yyj4789] - yyv4790.CodecDecodeSelf(d) + yyv4764 := &yyv4763[yyj4763] + yyv4764.CodecDecodeSelf(d) } } - if yyrt4789 { - for ; yyj4789 < yyl4789; yyj4789++ { - yyv4789 = append(yyv4789, EndpointSubset{}) - yyh4789.ElemContainerState(yyj4789) + if yyrt4763 { + for ; yyj4763 < yyl4763; yyj4763++ { + yyv4763 = append(yyv4763, EndpointSubset{}) + yyh4763.ElemContainerState(yyj4763) if r.TryDecodeAsNil() { - yyv4789[yyj4789] = EndpointSubset{} + yyv4763[yyj4763] = EndpointSubset{} } else { - yyv4791 := &yyv4789[yyj4789] - yyv4791.CodecDecodeSelf(d) + yyv4765 := &yyv4763[yyj4763] + yyv4765.CodecDecodeSelf(d) } } } } else { - yyj4789 := 0 - for ; !r.CheckBreak(); yyj4789++ { + yyj4763 := 0 + for ; !r.CheckBreak(); yyj4763++ { - if yyj4789 >= len(yyv4789) { - yyv4789 = append(yyv4789, EndpointSubset{}) // var yyz4789 EndpointSubset - yyc4789 = true + if yyj4763 >= len(yyv4763) { + yyv4763 = append(yyv4763, EndpointSubset{}) // var yyz4763 EndpointSubset + yyc4763 = true } - yyh4789.ElemContainerState(yyj4789) - if yyj4789 < len(yyv4789) { + yyh4763.ElemContainerState(yyj4763) + if yyj4763 < len(yyv4763) { if r.TryDecodeAsNil() { - yyv4789[yyj4789] = EndpointSubset{} + yyv4763[yyj4763] = EndpointSubset{} } else { - yyv4792 := &yyv4789[yyj4789] - yyv4792.CodecDecodeSelf(d) + yyv4766 := &yyv4763[yyj4763] + yyv4766.CodecDecodeSelf(d) } } else { @@ -60832,17 +60533,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj4789 < len(yyv4789) { - yyv4789 = yyv4789[:yyj4789] - yyc4789 = true - } else if yyj4789 == 0 && yyv4789 == nil { - yyv4789 = []EndpointSubset{} - yyc4789 = true + if yyj4763 < len(yyv4763) { + yyv4763 = yyv4763[:yyj4763] + yyc4763 = true + } else if yyj4763 == 0 && yyv4763 == nil { + yyv4763 = []EndpointSubset{} + yyc4763 = true } } - yyh4789.End() - if yyc4789 { - *v = yyv4789 + yyh4763.End() + if yyc4763 { + *v = yyv4763 } } @@ -60851,10 +60552,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4793 := range v { + for _, yyv4767 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4794 := &yyv4793 - yy4794.CodecEncodeSelf(e) + yy4768 := &yyv4767 + yy4768.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60864,83 +60565,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4795 := *v - yyh4795, yyl4795 := z.DecSliceHelperStart() - var yyc4795 bool - if yyl4795 == 0 { - if yyv4795 == nil { - yyv4795 = []EndpointAddress{} - yyc4795 = true - } else if len(yyv4795) != 0 { - yyv4795 = yyv4795[:0] - yyc4795 = true + yyv4769 := *v + yyh4769, yyl4769 := z.DecSliceHelperStart() + var yyc4769 bool + if yyl4769 == 0 { + if yyv4769 == nil { + yyv4769 = []EndpointAddress{} + yyc4769 = true + } else if len(yyv4769) != 0 { + yyv4769 = yyv4769[:0] + yyc4769 = true } - } else if yyl4795 > 0 { - var yyrr4795, yyrl4795 int - var yyrt4795 bool - if yyl4795 > cap(yyv4795) { + } else if yyl4769 > 0 { + var yyrr4769, yyrl4769 int + var yyrt4769 bool + if yyl4769 > cap(yyv4769) { - yyrg4795 := len(yyv4795) > 0 - yyv24795 := yyv4795 - yyrl4795, yyrt4795 = z.DecInferLen(yyl4795, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4795 { - if yyrl4795 <= cap(yyv4795) { - yyv4795 = yyv4795[:yyrl4795] + yyrg4769 := len(yyv4769) > 0 + yyv24769 := yyv4769 + yyrl4769, yyrt4769 = z.DecInferLen(yyl4769, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4769 { + if yyrl4769 <= cap(yyv4769) { + yyv4769 = yyv4769[:yyrl4769] } else { - yyv4795 = make([]EndpointAddress, yyrl4795) + yyv4769 = make([]EndpointAddress, yyrl4769) } } else { - yyv4795 = make([]EndpointAddress, yyrl4795) + yyv4769 = make([]EndpointAddress, yyrl4769) } - yyc4795 = true - yyrr4795 = len(yyv4795) - if yyrg4795 { - copy(yyv4795, yyv24795) + yyc4769 = true + yyrr4769 = len(yyv4769) + if yyrg4769 { + copy(yyv4769, yyv24769) } - } else if yyl4795 != len(yyv4795) { - yyv4795 = yyv4795[:yyl4795] - yyc4795 = true + } else if yyl4769 != len(yyv4769) { + yyv4769 = yyv4769[:yyl4769] + yyc4769 = true } - yyj4795 := 0 - for ; yyj4795 < yyrr4795; yyj4795++ { - yyh4795.ElemContainerState(yyj4795) + yyj4769 := 0 + for ; yyj4769 < yyrr4769; yyj4769++ { + yyh4769.ElemContainerState(yyj4769) if r.TryDecodeAsNil() { - yyv4795[yyj4795] = EndpointAddress{} + yyv4769[yyj4769] = EndpointAddress{} } else { - yyv4796 := &yyv4795[yyj4795] - yyv4796.CodecDecodeSelf(d) + yyv4770 := &yyv4769[yyj4769] + yyv4770.CodecDecodeSelf(d) } } - if yyrt4795 { - for ; yyj4795 < yyl4795; yyj4795++ { - yyv4795 = append(yyv4795, EndpointAddress{}) - yyh4795.ElemContainerState(yyj4795) + if yyrt4769 { + for ; yyj4769 < yyl4769; yyj4769++ { + yyv4769 = append(yyv4769, EndpointAddress{}) + yyh4769.ElemContainerState(yyj4769) if r.TryDecodeAsNil() { - yyv4795[yyj4795] = EndpointAddress{} + yyv4769[yyj4769] = EndpointAddress{} } else { - yyv4797 := &yyv4795[yyj4795] - yyv4797.CodecDecodeSelf(d) + yyv4771 := &yyv4769[yyj4769] + yyv4771.CodecDecodeSelf(d) } } } } else { - yyj4795 := 0 - for ; !r.CheckBreak(); yyj4795++ { + yyj4769 := 0 + for ; !r.CheckBreak(); yyj4769++ { - if yyj4795 >= len(yyv4795) { - yyv4795 = append(yyv4795, EndpointAddress{}) // var yyz4795 EndpointAddress - yyc4795 = true + if yyj4769 >= len(yyv4769) { + yyv4769 = append(yyv4769, EndpointAddress{}) // var yyz4769 EndpointAddress + yyc4769 = true } - yyh4795.ElemContainerState(yyj4795) - if yyj4795 < len(yyv4795) { + yyh4769.ElemContainerState(yyj4769) + if yyj4769 < len(yyv4769) { if r.TryDecodeAsNil() { - yyv4795[yyj4795] = EndpointAddress{} + yyv4769[yyj4769] = EndpointAddress{} } else { - yyv4798 := &yyv4795[yyj4795] - yyv4798.CodecDecodeSelf(d) + yyv4772 := &yyv4769[yyj4769] + yyv4772.CodecDecodeSelf(d) } } else { @@ -60948,17 +60649,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj4795 < len(yyv4795) { - yyv4795 = yyv4795[:yyj4795] - yyc4795 = true - } else if yyj4795 == 0 && yyv4795 == nil { - yyv4795 = []EndpointAddress{} - yyc4795 = true + if yyj4769 < len(yyv4769) { + yyv4769 = yyv4769[:yyj4769] + yyc4769 = true + } else if yyj4769 == 0 && yyv4769 == nil { + yyv4769 = []EndpointAddress{} + yyc4769 = true } } - yyh4795.End() - if yyc4795 { - *v = yyv4795 + yyh4769.End() + if yyc4769 { + *v = yyv4769 } } @@ -60967,10 +60668,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4799 := range v { + for _, yyv4773 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4800 := &yyv4799 - yy4800.CodecEncodeSelf(e) + yy4774 := &yyv4773 + yy4774.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60980,83 +60681,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4801 := *v - yyh4801, yyl4801 := z.DecSliceHelperStart() - var yyc4801 bool - if yyl4801 == 0 { - if yyv4801 == nil { - yyv4801 = []EndpointPort{} - yyc4801 = true - } else if len(yyv4801) != 0 { - yyv4801 = yyv4801[:0] - yyc4801 = true + yyv4775 := *v + yyh4775, yyl4775 := z.DecSliceHelperStart() + var yyc4775 bool + if yyl4775 == 0 { + if yyv4775 == nil { + yyv4775 = []EndpointPort{} + yyc4775 = true + } else if len(yyv4775) != 0 { + yyv4775 = yyv4775[:0] + yyc4775 = true } - } else if yyl4801 > 0 { - var yyrr4801, yyrl4801 int - var yyrt4801 bool - if yyl4801 > cap(yyv4801) { + } else if yyl4775 > 0 { + var yyrr4775, yyrl4775 int + var yyrt4775 bool + if yyl4775 > cap(yyv4775) { - yyrg4801 := len(yyv4801) > 0 - yyv24801 := yyv4801 - yyrl4801, yyrt4801 = z.DecInferLen(yyl4801, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4801 { - if yyrl4801 <= cap(yyv4801) { - yyv4801 = yyv4801[:yyrl4801] + yyrg4775 := len(yyv4775) > 0 + yyv24775 := yyv4775 + yyrl4775, yyrt4775 = z.DecInferLen(yyl4775, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4775 { + if yyrl4775 <= cap(yyv4775) { + yyv4775 = yyv4775[:yyrl4775] } else { - yyv4801 = make([]EndpointPort, yyrl4801) + yyv4775 = make([]EndpointPort, yyrl4775) } } else { - yyv4801 = make([]EndpointPort, yyrl4801) + yyv4775 = make([]EndpointPort, yyrl4775) } - yyc4801 = true - yyrr4801 = len(yyv4801) - if yyrg4801 { - copy(yyv4801, yyv24801) + yyc4775 = true + yyrr4775 = len(yyv4775) + if yyrg4775 { + copy(yyv4775, yyv24775) } - } else if yyl4801 != len(yyv4801) { - yyv4801 = yyv4801[:yyl4801] - yyc4801 = true + } else if yyl4775 != len(yyv4775) { + yyv4775 = yyv4775[:yyl4775] + yyc4775 = true } - yyj4801 := 0 - for ; yyj4801 < yyrr4801; yyj4801++ { - yyh4801.ElemContainerState(yyj4801) + yyj4775 := 0 + for ; yyj4775 < yyrr4775; yyj4775++ { + yyh4775.ElemContainerState(yyj4775) if r.TryDecodeAsNil() { - yyv4801[yyj4801] = EndpointPort{} + yyv4775[yyj4775] = EndpointPort{} } else { - yyv4802 := &yyv4801[yyj4801] - yyv4802.CodecDecodeSelf(d) + yyv4776 := &yyv4775[yyj4775] + yyv4776.CodecDecodeSelf(d) } } - if yyrt4801 { - for ; yyj4801 < yyl4801; yyj4801++ { - yyv4801 = append(yyv4801, EndpointPort{}) - yyh4801.ElemContainerState(yyj4801) + if yyrt4775 { + for ; yyj4775 < yyl4775; yyj4775++ { + yyv4775 = append(yyv4775, EndpointPort{}) + yyh4775.ElemContainerState(yyj4775) if r.TryDecodeAsNil() { - yyv4801[yyj4801] = EndpointPort{} + yyv4775[yyj4775] = EndpointPort{} } else { - yyv4803 := &yyv4801[yyj4801] - yyv4803.CodecDecodeSelf(d) + yyv4777 := &yyv4775[yyj4775] + yyv4777.CodecDecodeSelf(d) } } } } else { - yyj4801 := 0 - for ; !r.CheckBreak(); yyj4801++ { + yyj4775 := 0 + for ; !r.CheckBreak(); yyj4775++ { - if yyj4801 >= len(yyv4801) { - yyv4801 = append(yyv4801, EndpointPort{}) // var yyz4801 EndpointPort - yyc4801 = true + if yyj4775 >= len(yyv4775) { + yyv4775 = append(yyv4775, EndpointPort{}) // var yyz4775 EndpointPort + yyc4775 = true } - yyh4801.ElemContainerState(yyj4801) - if yyj4801 < len(yyv4801) { + yyh4775.ElemContainerState(yyj4775) + if yyj4775 < len(yyv4775) { if r.TryDecodeAsNil() { - yyv4801[yyj4801] = EndpointPort{} + yyv4775[yyj4775] = EndpointPort{} } else { - yyv4804 := &yyv4801[yyj4801] - yyv4804.CodecDecodeSelf(d) + yyv4778 := &yyv4775[yyj4775] + yyv4778.CodecDecodeSelf(d) } } else { @@ -61064,17 +60765,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj4801 < len(yyv4801) { - yyv4801 = yyv4801[:yyj4801] - yyc4801 = true - } else if yyj4801 == 0 && yyv4801 == nil { - yyv4801 = []EndpointPort{} - yyc4801 = true + if yyj4775 < len(yyv4775) { + yyv4775 = yyv4775[:yyj4775] + yyc4775 = true + } else if yyj4775 == 0 && yyv4775 == nil { + yyv4775 = []EndpointPort{} + yyc4775 = true } } - yyh4801.End() - if yyc4801 { - *v = yyv4801 + yyh4775.End() + if yyc4775 { + *v = yyv4775 } } @@ -61083,10 +60784,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4805 := range v { + for _, yyv4779 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4806 := &yyv4805 - yy4806.CodecEncodeSelf(e) + yy4780 := &yyv4779 + yy4780.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61096,83 +60797,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4807 := *v - yyh4807, yyl4807 := z.DecSliceHelperStart() - var yyc4807 bool - if yyl4807 == 0 { - if yyv4807 == nil { - yyv4807 = []Endpoints{} - yyc4807 = true - } else if len(yyv4807) != 0 { - yyv4807 = yyv4807[:0] - yyc4807 = true + yyv4781 := *v + yyh4781, yyl4781 := z.DecSliceHelperStart() + var yyc4781 bool + if yyl4781 == 0 { + if yyv4781 == nil { + yyv4781 = []Endpoints{} + yyc4781 = true + } else if len(yyv4781) != 0 { + yyv4781 = yyv4781[:0] + yyc4781 = true } - } else if yyl4807 > 0 { - var yyrr4807, yyrl4807 int - var yyrt4807 bool - if yyl4807 > cap(yyv4807) { + } else if yyl4781 > 0 { + var yyrr4781, yyrl4781 int + var yyrt4781 bool + if yyl4781 > cap(yyv4781) { - yyrg4807 := len(yyv4807) > 0 - yyv24807 := yyv4807 - yyrl4807, yyrt4807 = z.DecInferLen(yyl4807, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4807 { - if yyrl4807 <= cap(yyv4807) { - yyv4807 = yyv4807[:yyrl4807] + yyrg4781 := len(yyv4781) > 0 + yyv24781 := yyv4781 + yyrl4781, yyrt4781 = z.DecInferLen(yyl4781, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4781 { + if yyrl4781 <= cap(yyv4781) { + yyv4781 = yyv4781[:yyrl4781] } else { - yyv4807 = make([]Endpoints, yyrl4807) + yyv4781 = make([]Endpoints, yyrl4781) } } else { - yyv4807 = make([]Endpoints, yyrl4807) + yyv4781 = make([]Endpoints, yyrl4781) } - yyc4807 = true - yyrr4807 = len(yyv4807) - if yyrg4807 { - copy(yyv4807, yyv24807) + yyc4781 = true + yyrr4781 = len(yyv4781) + if yyrg4781 { + copy(yyv4781, yyv24781) } - } else if yyl4807 != len(yyv4807) { - yyv4807 = yyv4807[:yyl4807] - yyc4807 = true + } else if yyl4781 != len(yyv4781) { + yyv4781 = yyv4781[:yyl4781] + yyc4781 = true } - yyj4807 := 0 - for ; yyj4807 < yyrr4807; yyj4807++ { - yyh4807.ElemContainerState(yyj4807) + yyj4781 := 0 + for ; yyj4781 < yyrr4781; yyj4781++ { + yyh4781.ElemContainerState(yyj4781) if r.TryDecodeAsNil() { - yyv4807[yyj4807] = Endpoints{} + yyv4781[yyj4781] = Endpoints{} } else { - yyv4808 := &yyv4807[yyj4807] - yyv4808.CodecDecodeSelf(d) + yyv4782 := &yyv4781[yyj4781] + yyv4782.CodecDecodeSelf(d) } } - if yyrt4807 { - for ; yyj4807 < yyl4807; yyj4807++ { - yyv4807 = append(yyv4807, Endpoints{}) - yyh4807.ElemContainerState(yyj4807) + if yyrt4781 { + for ; yyj4781 < yyl4781; yyj4781++ { + yyv4781 = append(yyv4781, Endpoints{}) + yyh4781.ElemContainerState(yyj4781) if r.TryDecodeAsNil() { - yyv4807[yyj4807] = Endpoints{} + yyv4781[yyj4781] = Endpoints{} } else { - yyv4809 := &yyv4807[yyj4807] - yyv4809.CodecDecodeSelf(d) + yyv4783 := &yyv4781[yyj4781] + yyv4783.CodecDecodeSelf(d) } } } } else { - yyj4807 := 0 - for ; !r.CheckBreak(); yyj4807++ { + yyj4781 := 0 + for ; !r.CheckBreak(); yyj4781++ { - if yyj4807 >= len(yyv4807) { - yyv4807 = append(yyv4807, Endpoints{}) // var yyz4807 Endpoints - yyc4807 = true + if yyj4781 >= len(yyv4781) { + yyv4781 = append(yyv4781, Endpoints{}) // var yyz4781 Endpoints + yyc4781 = true } - yyh4807.ElemContainerState(yyj4807) - if yyj4807 < len(yyv4807) { + yyh4781.ElemContainerState(yyj4781) + if yyj4781 < len(yyv4781) { if r.TryDecodeAsNil() { - yyv4807[yyj4807] = Endpoints{} + yyv4781[yyj4781] = Endpoints{} } else { - yyv4810 := &yyv4807[yyj4807] - yyv4810.CodecDecodeSelf(d) + yyv4784 := &yyv4781[yyj4781] + yyv4784.CodecDecodeSelf(d) } } else { @@ -61180,17 +60881,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj4807 < len(yyv4807) { - yyv4807 = yyv4807[:yyj4807] - yyc4807 = true - } else if yyj4807 == 0 && yyv4807 == nil { - yyv4807 = []Endpoints{} - yyc4807 = true + if yyj4781 < len(yyv4781) { + yyv4781 = yyv4781[:yyj4781] + yyc4781 = true + } else if yyj4781 == 0 && yyv4781 == nil { + yyv4781 = []Endpoints{} + yyc4781 = true } } - yyh4807.End() - if yyc4807 { - *v = yyv4807 + yyh4781.End() + if yyc4781 { + *v = yyv4781 } } @@ -61199,10 +60900,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4811 := range v { + for _, yyv4785 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4812 := &yyv4811 - yy4812.CodecEncodeSelf(e) + yy4786 := &yyv4785 + yy4786.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61212,83 +60913,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4813 := *v - yyh4813, yyl4813 := z.DecSliceHelperStart() - var yyc4813 bool - if yyl4813 == 0 { - if yyv4813 == nil { - yyv4813 = []NodeCondition{} - yyc4813 = true - } else if len(yyv4813) != 0 { - yyv4813 = yyv4813[:0] - yyc4813 = true + yyv4787 := *v + yyh4787, yyl4787 := z.DecSliceHelperStart() + var yyc4787 bool + if yyl4787 == 0 { + if yyv4787 == nil { + yyv4787 = []NodeCondition{} + yyc4787 = true + } else if len(yyv4787) != 0 { + yyv4787 = yyv4787[:0] + yyc4787 = true } - } else if yyl4813 > 0 { - var yyrr4813, yyrl4813 int - var yyrt4813 bool - if yyl4813 > cap(yyv4813) { + } else if yyl4787 > 0 { + var yyrr4787, yyrl4787 int + var yyrt4787 bool + if yyl4787 > cap(yyv4787) { - yyrg4813 := len(yyv4813) > 0 - yyv24813 := yyv4813 - yyrl4813, yyrt4813 = z.DecInferLen(yyl4813, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4813 { - if yyrl4813 <= cap(yyv4813) { - yyv4813 = yyv4813[:yyrl4813] + yyrg4787 := len(yyv4787) > 0 + yyv24787 := yyv4787 + yyrl4787, yyrt4787 = z.DecInferLen(yyl4787, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4787 { + if yyrl4787 <= cap(yyv4787) { + yyv4787 = yyv4787[:yyrl4787] } else { - yyv4813 = make([]NodeCondition, yyrl4813) + yyv4787 = make([]NodeCondition, yyrl4787) } } else { - yyv4813 = make([]NodeCondition, yyrl4813) + yyv4787 = make([]NodeCondition, yyrl4787) } - yyc4813 = true - yyrr4813 = len(yyv4813) - if yyrg4813 { - copy(yyv4813, yyv24813) + yyc4787 = true + yyrr4787 = len(yyv4787) + if yyrg4787 { + copy(yyv4787, yyv24787) } - } else if yyl4813 != len(yyv4813) { - yyv4813 = yyv4813[:yyl4813] - yyc4813 = true + } else if yyl4787 != len(yyv4787) { + yyv4787 = yyv4787[:yyl4787] + yyc4787 = true } - yyj4813 := 0 - for ; yyj4813 < yyrr4813; yyj4813++ { - yyh4813.ElemContainerState(yyj4813) + yyj4787 := 0 + for ; yyj4787 < yyrr4787; yyj4787++ { + yyh4787.ElemContainerState(yyj4787) if r.TryDecodeAsNil() { - yyv4813[yyj4813] = NodeCondition{} + yyv4787[yyj4787] = NodeCondition{} } else { - yyv4814 := &yyv4813[yyj4813] - yyv4814.CodecDecodeSelf(d) + yyv4788 := &yyv4787[yyj4787] + yyv4788.CodecDecodeSelf(d) } } - if yyrt4813 { - for ; yyj4813 < yyl4813; yyj4813++ { - yyv4813 = append(yyv4813, NodeCondition{}) - yyh4813.ElemContainerState(yyj4813) + if yyrt4787 { + for ; yyj4787 < yyl4787; yyj4787++ { + yyv4787 = append(yyv4787, NodeCondition{}) + yyh4787.ElemContainerState(yyj4787) if r.TryDecodeAsNil() { - yyv4813[yyj4813] = NodeCondition{} + yyv4787[yyj4787] = NodeCondition{} } else { - yyv4815 := &yyv4813[yyj4813] - yyv4815.CodecDecodeSelf(d) + yyv4789 := &yyv4787[yyj4787] + yyv4789.CodecDecodeSelf(d) } } } } else { - yyj4813 := 0 - for ; !r.CheckBreak(); yyj4813++ { + yyj4787 := 0 + for ; !r.CheckBreak(); yyj4787++ { - if yyj4813 >= len(yyv4813) { - yyv4813 = append(yyv4813, NodeCondition{}) // var yyz4813 NodeCondition - yyc4813 = true + if yyj4787 >= len(yyv4787) { + yyv4787 = append(yyv4787, NodeCondition{}) // var yyz4787 NodeCondition + yyc4787 = true } - yyh4813.ElemContainerState(yyj4813) - if yyj4813 < len(yyv4813) { + yyh4787.ElemContainerState(yyj4787) + if yyj4787 < len(yyv4787) { if r.TryDecodeAsNil() { - yyv4813[yyj4813] = NodeCondition{} + yyv4787[yyj4787] = NodeCondition{} } else { - yyv4816 := &yyv4813[yyj4813] - yyv4816.CodecDecodeSelf(d) + yyv4790 := &yyv4787[yyj4787] + yyv4790.CodecDecodeSelf(d) } } else { @@ -61296,17 +60997,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj4813 < len(yyv4813) { - yyv4813 = yyv4813[:yyj4813] - yyc4813 = true - } else if yyj4813 == 0 && yyv4813 == nil { - yyv4813 = []NodeCondition{} - yyc4813 = true + if yyj4787 < len(yyv4787) { + yyv4787 = yyv4787[:yyj4787] + yyc4787 = true + } else if yyj4787 == 0 && yyv4787 == nil { + yyv4787 = []NodeCondition{} + yyc4787 = true } } - yyh4813.End() - if yyc4813 { - *v = yyv4813 + yyh4787.End() + if yyc4787 { + *v = yyv4787 } } @@ -61315,10 +61016,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4817 := range v { + for _, yyv4791 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4818 := &yyv4817 - yy4818.CodecEncodeSelf(e) + yy4792 := &yyv4791 + yy4792.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61328,83 +61029,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4819 := *v - yyh4819, yyl4819 := z.DecSliceHelperStart() - var yyc4819 bool - if yyl4819 == 0 { - if yyv4819 == nil { - yyv4819 = []NodeAddress{} - yyc4819 = true - } else if len(yyv4819) != 0 { - yyv4819 = yyv4819[:0] - yyc4819 = true + yyv4793 := *v + yyh4793, yyl4793 := z.DecSliceHelperStart() + var yyc4793 bool + if yyl4793 == 0 { + if yyv4793 == nil { + yyv4793 = []NodeAddress{} + yyc4793 = true + } else if len(yyv4793) != 0 { + yyv4793 = yyv4793[:0] + yyc4793 = true } - } else if yyl4819 > 0 { - var yyrr4819, yyrl4819 int - var yyrt4819 bool - if yyl4819 > cap(yyv4819) { + } else if yyl4793 > 0 { + var yyrr4793, yyrl4793 int + var yyrt4793 bool + if yyl4793 > cap(yyv4793) { - yyrg4819 := len(yyv4819) > 0 - yyv24819 := yyv4819 - yyrl4819, yyrt4819 = z.DecInferLen(yyl4819, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4819 { - if yyrl4819 <= cap(yyv4819) { - yyv4819 = yyv4819[:yyrl4819] + yyrg4793 := len(yyv4793) > 0 + yyv24793 := yyv4793 + yyrl4793, yyrt4793 = z.DecInferLen(yyl4793, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4793 { + if yyrl4793 <= cap(yyv4793) { + yyv4793 = yyv4793[:yyrl4793] } else { - yyv4819 = make([]NodeAddress, yyrl4819) + yyv4793 = make([]NodeAddress, yyrl4793) } } else { - yyv4819 = make([]NodeAddress, yyrl4819) + yyv4793 = make([]NodeAddress, yyrl4793) } - yyc4819 = true - yyrr4819 = len(yyv4819) - if yyrg4819 { - copy(yyv4819, yyv24819) + yyc4793 = true + yyrr4793 = len(yyv4793) + if yyrg4793 { + copy(yyv4793, yyv24793) } - } else if yyl4819 != len(yyv4819) { - yyv4819 = yyv4819[:yyl4819] - yyc4819 = true + } else if yyl4793 != len(yyv4793) { + yyv4793 = yyv4793[:yyl4793] + yyc4793 = true } - yyj4819 := 0 - for ; yyj4819 < yyrr4819; yyj4819++ { - yyh4819.ElemContainerState(yyj4819) + yyj4793 := 0 + for ; yyj4793 < yyrr4793; yyj4793++ { + yyh4793.ElemContainerState(yyj4793) if r.TryDecodeAsNil() { - yyv4819[yyj4819] = NodeAddress{} + yyv4793[yyj4793] = NodeAddress{} } else { - yyv4820 := &yyv4819[yyj4819] - yyv4820.CodecDecodeSelf(d) + yyv4794 := &yyv4793[yyj4793] + yyv4794.CodecDecodeSelf(d) } } - if yyrt4819 { - for ; yyj4819 < yyl4819; yyj4819++ { - yyv4819 = append(yyv4819, NodeAddress{}) - yyh4819.ElemContainerState(yyj4819) + if yyrt4793 { + for ; yyj4793 < yyl4793; yyj4793++ { + yyv4793 = append(yyv4793, NodeAddress{}) + yyh4793.ElemContainerState(yyj4793) if r.TryDecodeAsNil() { - yyv4819[yyj4819] = NodeAddress{} + yyv4793[yyj4793] = NodeAddress{} } else { - yyv4821 := &yyv4819[yyj4819] - yyv4821.CodecDecodeSelf(d) + yyv4795 := &yyv4793[yyj4793] + yyv4795.CodecDecodeSelf(d) } } } } else { - yyj4819 := 0 - for ; !r.CheckBreak(); yyj4819++ { + yyj4793 := 0 + for ; !r.CheckBreak(); yyj4793++ { - if yyj4819 >= len(yyv4819) { - yyv4819 = append(yyv4819, NodeAddress{}) // var yyz4819 NodeAddress - yyc4819 = true + if yyj4793 >= len(yyv4793) { + yyv4793 = append(yyv4793, NodeAddress{}) // var yyz4793 NodeAddress + yyc4793 = true } - yyh4819.ElemContainerState(yyj4819) - if yyj4819 < len(yyv4819) { + yyh4793.ElemContainerState(yyj4793) + if yyj4793 < len(yyv4793) { if r.TryDecodeAsNil() { - yyv4819[yyj4819] = NodeAddress{} + yyv4793[yyj4793] = NodeAddress{} } else { - yyv4822 := &yyv4819[yyj4819] - yyv4822.CodecDecodeSelf(d) + yyv4796 := &yyv4793[yyj4793] + yyv4796.CodecDecodeSelf(d) } } else { @@ -61412,17 +61113,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj4819 < len(yyv4819) { - yyv4819 = yyv4819[:yyj4819] - yyc4819 = true - } else if yyj4819 == 0 && yyv4819 == nil { - yyv4819 = []NodeAddress{} - yyc4819 = true + if yyj4793 < len(yyv4793) { + yyv4793 = yyv4793[:yyj4793] + yyc4793 = true + } else if yyj4793 == 0 && yyv4793 == nil { + yyv4793 = []NodeAddress{} + yyc4793 = true } } - yyh4819.End() - if yyc4819 { - *v = yyv4819 + yyh4793.End() + if yyc4793 { + *v = yyv4793 } } @@ -61431,10 +61132,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4823 := range v { + for _, yyv4797 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4824 := &yyv4823 - yy4824.CodecEncodeSelf(e) + yy4798 := &yyv4797 + yy4798.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61444,83 +61145,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4825 := *v - yyh4825, yyl4825 := z.DecSliceHelperStart() - var yyc4825 bool - if yyl4825 == 0 { - if yyv4825 == nil { - yyv4825 = []ContainerImage{} - yyc4825 = true - } else if len(yyv4825) != 0 { - yyv4825 = yyv4825[:0] - yyc4825 = true + yyv4799 := *v + yyh4799, yyl4799 := z.DecSliceHelperStart() + var yyc4799 bool + if yyl4799 == 0 { + if yyv4799 == nil { + yyv4799 = []ContainerImage{} + yyc4799 = true + } else if len(yyv4799) != 0 { + yyv4799 = yyv4799[:0] + yyc4799 = true } - } else if yyl4825 > 0 { - var yyrr4825, yyrl4825 int - var yyrt4825 bool - if yyl4825 > cap(yyv4825) { + } else if yyl4799 > 0 { + var yyrr4799, yyrl4799 int + var yyrt4799 bool + if yyl4799 > cap(yyv4799) { - yyrg4825 := len(yyv4825) > 0 - yyv24825 := yyv4825 - yyrl4825, yyrt4825 = z.DecInferLen(yyl4825, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4825 { - if yyrl4825 <= cap(yyv4825) { - yyv4825 = yyv4825[:yyrl4825] + yyrg4799 := len(yyv4799) > 0 + yyv24799 := yyv4799 + yyrl4799, yyrt4799 = z.DecInferLen(yyl4799, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4799 { + if yyrl4799 <= cap(yyv4799) { + yyv4799 = yyv4799[:yyrl4799] } else { - yyv4825 = make([]ContainerImage, yyrl4825) + yyv4799 = make([]ContainerImage, yyrl4799) } } else { - yyv4825 = make([]ContainerImage, yyrl4825) + yyv4799 = make([]ContainerImage, yyrl4799) } - yyc4825 = true - yyrr4825 = len(yyv4825) - if yyrg4825 { - copy(yyv4825, yyv24825) + yyc4799 = true + yyrr4799 = len(yyv4799) + if yyrg4799 { + copy(yyv4799, yyv24799) } - } else if yyl4825 != len(yyv4825) { - yyv4825 = yyv4825[:yyl4825] - yyc4825 = true + } else if yyl4799 != len(yyv4799) { + yyv4799 = yyv4799[:yyl4799] + yyc4799 = true } - yyj4825 := 0 - for ; yyj4825 < yyrr4825; yyj4825++ { - yyh4825.ElemContainerState(yyj4825) + yyj4799 := 0 + for ; yyj4799 < yyrr4799; yyj4799++ { + yyh4799.ElemContainerState(yyj4799) if r.TryDecodeAsNil() { - yyv4825[yyj4825] = ContainerImage{} + yyv4799[yyj4799] = ContainerImage{} } else { - yyv4826 := &yyv4825[yyj4825] - yyv4826.CodecDecodeSelf(d) + yyv4800 := &yyv4799[yyj4799] + yyv4800.CodecDecodeSelf(d) } } - if yyrt4825 { - for ; yyj4825 < yyl4825; yyj4825++ { - yyv4825 = append(yyv4825, ContainerImage{}) - yyh4825.ElemContainerState(yyj4825) + if yyrt4799 { + for ; yyj4799 < yyl4799; yyj4799++ { + yyv4799 = append(yyv4799, ContainerImage{}) + yyh4799.ElemContainerState(yyj4799) if r.TryDecodeAsNil() { - yyv4825[yyj4825] = ContainerImage{} + yyv4799[yyj4799] = ContainerImage{} } else { - yyv4827 := &yyv4825[yyj4825] - yyv4827.CodecDecodeSelf(d) + yyv4801 := &yyv4799[yyj4799] + yyv4801.CodecDecodeSelf(d) } } } } else { - yyj4825 := 0 - for ; !r.CheckBreak(); yyj4825++ { + yyj4799 := 0 + for ; !r.CheckBreak(); yyj4799++ { - if yyj4825 >= len(yyv4825) { - yyv4825 = append(yyv4825, ContainerImage{}) // var yyz4825 ContainerImage - yyc4825 = true + if yyj4799 >= len(yyv4799) { + yyv4799 = append(yyv4799, ContainerImage{}) // var yyz4799 ContainerImage + yyc4799 = true } - yyh4825.ElemContainerState(yyj4825) - if yyj4825 < len(yyv4825) { + yyh4799.ElemContainerState(yyj4799) + if yyj4799 < len(yyv4799) { if r.TryDecodeAsNil() { - yyv4825[yyj4825] = ContainerImage{} + yyv4799[yyj4799] = ContainerImage{} } else { - yyv4828 := &yyv4825[yyj4825] - yyv4828.CodecDecodeSelf(d) + yyv4802 := &yyv4799[yyj4799] + yyv4802.CodecDecodeSelf(d) } } else { @@ -61528,17 +61229,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj4825 < len(yyv4825) { - yyv4825 = yyv4825[:yyj4825] - yyc4825 = true - } else if yyj4825 == 0 && yyv4825 == nil { - yyv4825 = []ContainerImage{} - yyc4825 = true + if yyj4799 < len(yyv4799) { + yyv4799 = yyv4799[:yyj4799] + yyc4799 = true + } else if yyj4799 == 0 && yyv4799 == nil { + yyv4799 = []ContainerImage{} + yyc4799 = true } } - yyh4825.End() - if yyc4825 { - *v = yyv4825 + yyh4799.End() + if yyc4799 { + *v = yyv4799 } } @@ -61547,9 +61248,9 @@ func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4829 := range v { + for _, yyv4803 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4829.CodecEncodeSelf(e) + yyv4803.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61559,75 +61260,75 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4830 := *v - yyh4830, yyl4830 := z.DecSliceHelperStart() - var yyc4830 bool - if yyl4830 == 0 { - if yyv4830 == nil { - yyv4830 = []UniqueVolumeName{} - yyc4830 = true - } else if len(yyv4830) != 0 { - yyv4830 = yyv4830[:0] - yyc4830 = true + yyv4804 := *v + yyh4804, yyl4804 := z.DecSliceHelperStart() + var yyc4804 bool + if yyl4804 == 0 { + if yyv4804 == nil { + yyv4804 = []UniqueVolumeName{} + yyc4804 = true + } else if len(yyv4804) != 0 { + yyv4804 = yyv4804[:0] + yyc4804 = true } - } else if yyl4830 > 0 { - var yyrr4830, yyrl4830 int - var yyrt4830 bool - if yyl4830 > cap(yyv4830) { + } else if yyl4804 > 0 { + var yyrr4804, yyrl4804 int + var yyrt4804 bool + if yyl4804 > cap(yyv4804) { - yyrl4830, yyrt4830 = z.DecInferLen(yyl4830, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4830 { - if yyrl4830 <= cap(yyv4830) { - yyv4830 = yyv4830[:yyrl4830] + yyrl4804, yyrt4804 = z.DecInferLen(yyl4804, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4804 { + if yyrl4804 <= cap(yyv4804) { + yyv4804 = yyv4804[:yyrl4804] } else { - yyv4830 = make([]UniqueVolumeName, yyrl4830) + yyv4804 = make([]UniqueVolumeName, yyrl4804) } } else { - yyv4830 = make([]UniqueVolumeName, yyrl4830) + yyv4804 = make([]UniqueVolumeName, yyrl4804) } - yyc4830 = true - yyrr4830 = len(yyv4830) - } else if yyl4830 != len(yyv4830) { - yyv4830 = yyv4830[:yyl4830] - yyc4830 = true + yyc4804 = true + yyrr4804 = len(yyv4804) + } else if yyl4804 != len(yyv4804) { + yyv4804 = yyv4804[:yyl4804] + yyc4804 = true } - yyj4830 := 0 - for ; yyj4830 < yyrr4830; yyj4830++ { - yyh4830.ElemContainerState(yyj4830) + yyj4804 := 0 + for ; yyj4804 < yyrr4804; yyj4804++ { + yyh4804.ElemContainerState(yyj4804) if r.TryDecodeAsNil() { - yyv4830[yyj4830] = "" + yyv4804[yyj4804] = "" } else { - yyv4830[yyj4830] = UniqueVolumeName(r.DecodeString()) + yyv4804[yyj4804] = UniqueVolumeName(r.DecodeString()) } } - if yyrt4830 { - for ; yyj4830 < yyl4830; yyj4830++ { - yyv4830 = append(yyv4830, "") - yyh4830.ElemContainerState(yyj4830) + if yyrt4804 { + for ; yyj4804 < yyl4804; yyj4804++ { + yyv4804 = append(yyv4804, "") + yyh4804.ElemContainerState(yyj4804) if r.TryDecodeAsNil() { - yyv4830[yyj4830] = "" + yyv4804[yyj4804] = "" } else { - yyv4830[yyj4830] = UniqueVolumeName(r.DecodeString()) + yyv4804[yyj4804] = UniqueVolumeName(r.DecodeString()) } } } } else { - yyj4830 := 0 - for ; !r.CheckBreak(); yyj4830++ { + yyj4804 := 0 + for ; !r.CheckBreak(); yyj4804++ { - if yyj4830 >= len(yyv4830) { - yyv4830 = append(yyv4830, "") // var yyz4830 UniqueVolumeName - yyc4830 = true + if yyj4804 >= len(yyv4804) { + yyv4804 = append(yyv4804, "") // var yyz4804 UniqueVolumeName + yyc4804 = true } - yyh4830.ElemContainerState(yyj4830) - if yyj4830 < len(yyv4830) { + yyh4804.ElemContainerState(yyj4804) + if yyj4804 < len(yyv4804) { if r.TryDecodeAsNil() { - yyv4830[yyj4830] = "" + yyv4804[yyj4804] = "" } else { - yyv4830[yyj4830] = UniqueVolumeName(r.DecodeString()) + yyv4804[yyj4804] = UniqueVolumeName(r.DecodeString()) } } else { @@ -61635,17 +61336,17 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code } } - if yyj4830 < len(yyv4830) { - yyv4830 = yyv4830[:yyj4830] - yyc4830 = true - } else if yyj4830 == 0 && yyv4830 == nil { - yyv4830 = []UniqueVolumeName{} - yyc4830 = true + if yyj4804 < len(yyv4804) { + yyv4804 = yyv4804[:yyj4804] + yyc4804 = true + } else if yyj4804 == 0 && yyv4804 == nil { + yyv4804 = []UniqueVolumeName{} + yyc4804 = true } } - yyh4830.End() - if yyc4830 { - *v = yyv4830 + yyh4804.End() + if yyc4804 { + *v = yyv4804 } } @@ -61654,10 +61355,10 @@ func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4834 := range v { + for _, yyv4808 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4835 := &yyv4834 - yy4835.CodecEncodeSelf(e) + yy4809 := &yyv4808 + yy4809.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61667,83 +61368,83 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4836 := *v - yyh4836, yyl4836 := z.DecSliceHelperStart() - var yyc4836 bool - if yyl4836 == 0 { - if yyv4836 == nil { - yyv4836 = []AttachedVolume{} - yyc4836 = true - } else if len(yyv4836) != 0 { - yyv4836 = yyv4836[:0] - yyc4836 = true + yyv4810 := *v + yyh4810, yyl4810 := z.DecSliceHelperStart() + var yyc4810 bool + if yyl4810 == 0 { + if yyv4810 == nil { + yyv4810 = []AttachedVolume{} + yyc4810 = true + } else if len(yyv4810) != 0 { + yyv4810 = yyv4810[:0] + yyc4810 = true } - } else if yyl4836 > 0 { - var yyrr4836, yyrl4836 int - var yyrt4836 bool - if yyl4836 > cap(yyv4836) { + } else if yyl4810 > 0 { + var yyrr4810, yyrl4810 int + var yyrt4810 bool + if yyl4810 > cap(yyv4810) { - yyrg4836 := len(yyv4836) > 0 - yyv24836 := yyv4836 - yyrl4836, yyrt4836 = z.DecInferLen(yyl4836, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4836 { - if yyrl4836 <= cap(yyv4836) { - yyv4836 = yyv4836[:yyrl4836] + yyrg4810 := len(yyv4810) > 0 + yyv24810 := yyv4810 + yyrl4810, yyrt4810 = z.DecInferLen(yyl4810, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4810 { + if yyrl4810 <= cap(yyv4810) { + yyv4810 = yyv4810[:yyrl4810] } else { - yyv4836 = make([]AttachedVolume, yyrl4836) + yyv4810 = make([]AttachedVolume, yyrl4810) } } else { - yyv4836 = make([]AttachedVolume, yyrl4836) + yyv4810 = make([]AttachedVolume, yyrl4810) } - yyc4836 = true - yyrr4836 = len(yyv4836) - if yyrg4836 { - copy(yyv4836, yyv24836) + yyc4810 = true + yyrr4810 = len(yyv4810) + if yyrg4810 { + copy(yyv4810, yyv24810) } - } else if yyl4836 != len(yyv4836) { - yyv4836 = yyv4836[:yyl4836] - yyc4836 = true + } else if yyl4810 != len(yyv4810) { + yyv4810 = yyv4810[:yyl4810] + yyc4810 = true } - yyj4836 := 0 - for ; yyj4836 < yyrr4836; yyj4836++ { - yyh4836.ElemContainerState(yyj4836) + yyj4810 := 0 + for ; yyj4810 < yyrr4810; yyj4810++ { + yyh4810.ElemContainerState(yyj4810) if r.TryDecodeAsNil() { - yyv4836[yyj4836] = AttachedVolume{} + yyv4810[yyj4810] = AttachedVolume{} } else { - yyv4837 := &yyv4836[yyj4836] - yyv4837.CodecDecodeSelf(d) + yyv4811 := &yyv4810[yyj4810] + yyv4811.CodecDecodeSelf(d) } } - if yyrt4836 { - for ; yyj4836 < yyl4836; yyj4836++ { - yyv4836 = append(yyv4836, AttachedVolume{}) - yyh4836.ElemContainerState(yyj4836) + if yyrt4810 { + for ; yyj4810 < yyl4810; yyj4810++ { + yyv4810 = append(yyv4810, AttachedVolume{}) + yyh4810.ElemContainerState(yyj4810) if r.TryDecodeAsNil() { - yyv4836[yyj4836] = AttachedVolume{} + yyv4810[yyj4810] = AttachedVolume{} } else { - yyv4838 := &yyv4836[yyj4836] - yyv4838.CodecDecodeSelf(d) + yyv4812 := &yyv4810[yyj4810] + yyv4812.CodecDecodeSelf(d) } } } } else { - yyj4836 := 0 - for ; !r.CheckBreak(); yyj4836++ { + yyj4810 := 0 + for ; !r.CheckBreak(); yyj4810++ { - if yyj4836 >= len(yyv4836) { - yyv4836 = append(yyv4836, AttachedVolume{}) // var yyz4836 AttachedVolume - yyc4836 = true + if yyj4810 >= len(yyv4810) { + yyv4810 = append(yyv4810, AttachedVolume{}) // var yyz4810 AttachedVolume + yyc4810 = true } - yyh4836.ElemContainerState(yyj4836) - if yyj4836 < len(yyv4836) { + yyh4810.ElemContainerState(yyj4810) + if yyj4810 < len(yyv4810) { if r.TryDecodeAsNil() { - yyv4836[yyj4836] = AttachedVolume{} + yyv4810[yyj4810] = AttachedVolume{} } else { - yyv4839 := &yyv4836[yyj4836] - yyv4839.CodecDecodeSelf(d) + yyv4813 := &yyv4810[yyj4810] + yyv4813.CodecDecodeSelf(d) } } else { @@ -61751,17 +61452,17 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } } - if yyj4836 < len(yyv4836) { - yyv4836 = yyv4836[:yyj4836] - yyc4836 = true - } else if yyj4836 == 0 && yyv4836 == nil { - yyv4836 = []AttachedVolume{} - yyc4836 = true + if yyj4810 < len(yyv4810) { + yyv4810 = yyv4810[:yyj4810] + yyc4810 = true + } else if yyj4810 == 0 && yyv4810 == nil { + yyv4810 = []AttachedVolume{} + yyc4810 = true } } - yyh4836.End() - if yyc4836 { - *v = yyv4836 + yyh4810.End() + if yyc4810 { + *v = yyv4810 } } @@ -61770,10 +61471,10 @@ func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4840 := range v { + for _, yyv4814 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4841 := &yyv4840 - yy4841.CodecEncodeSelf(e) + yy4815 := &yyv4814 + yy4815.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61783,83 +61484,83 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4842 := *v - yyh4842, yyl4842 := z.DecSliceHelperStart() - var yyc4842 bool - if yyl4842 == 0 { - if yyv4842 == nil { - yyv4842 = []PreferAvoidPodsEntry{} - yyc4842 = true - } else if len(yyv4842) != 0 { - yyv4842 = yyv4842[:0] - yyc4842 = true + yyv4816 := *v + yyh4816, yyl4816 := z.DecSliceHelperStart() + var yyc4816 bool + if yyl4816 == 0 { + if yyv4816 == nil { + yyv4816 = []PreferAvoidPodsEntry{} + yyc4816 = true + } else if len(yyv4816) != 0 { + yyv4816 = yyv4816[:0] + yyc4816 = true } - } else if yyl4842 > 0 { - var yyrr4842, yyrl4842 int - var yyrt4842 bool - if yyl4842 > cap(yyv4842) { + } else if yyl4816 > 0 { + var yyrr4816, yyrl4816 int + var yyrt4816 bool + if yyl4816 > cap(yyv4816) { - yyrg4842 := len(yyv4842) > 0 - yyv24842 := yyv4842 - yyrl4842, yyrt4842 = z.DecInferLen(yyl4842, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4842 { - if yyrl4842 <= cap(yyv4842) { - yyv4842 = yyv4842[:yyrl4842] + yyrg4816 := len(yyv4816) > 0 + yyv24816 := yyv4816 + yyrl4816, yyrt4816 = z.DecInferLen(yyl4816, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4816 { + if yyrl4816 <= cap(yyv4816) { + yyv4816 = yyv4816[:yyrl4816] } else { - yyv4842 = make([]PreferAvoidPodsEntry, yyrl4842) + yyv4816 = make([]PreferAvoidPodsEntry, yyrl4816) } } else { - yyv4842 = make([]PreferAvoidPodsEntry, yyrl4842) + yyv4816 = make([]PreferAvoidPodsEntry, yyrl4816) } - yyc4842 = true - yyrr4842 = len(yyv4842) - if yyrg4842 { - copy(yyv4842, yyv24842) + yyc4816 = true + yyrr4816 = len(yyv4816) + if yyrg4816 { + copy(yyv4816, yyv24816) } - } else if yyl4842 != len(yyv4842) { - yyv4842 = yyv4842[:yyl4842] - yyc4842 = true + } else if yyl4816 != len(yyv4816) { + yyv4816 = yyv4816[:yyl4816] + yyc4816 = true } - yyj4842 := 0 - for ; yyj4842 < yyrr4842; yyj4842++ { - yyh4842.ElemContainerState(yyj4842) + yyj4816 := 0 + for ; yyj4816 < yyrr4816; yyj4816++ { + yyh4816.ElemContainerState(yyj4816) if r.TryDecodeAsNil() { - yyv4842[yyj4842] = PreferAvoidPodsEntry{} + yyv4816[yyj4816] = PreferAvoidPodsEntry{} } else { - yyv4843 := &yyv4842[yyj4842] - yyv4843.CodecDecodeSelf(d) + yyv4817 := &yyv4816[yyj4816] + yyv4817.CodecDecodeSelf(d) } } - if yyrt4842 { - for ; yyj4842 < yyl4842; yyj4842++ { - yyv4842 = append(yyv4842, PreferAvoidPodsEntry{}) - yyh4842.ElemContainerState(yyj4842) + if yyrt4816 { + for ; yyj4816 < yyl4816; yyj4816++ { + yyv4816 = append(yyv4816, PreferAvoidPodsEntry{}) + yyh4816.ElemContainerState(yyj4816) if r.TryDecodeAsNil() { - yyv4842[yyj4842] = PreferAvoidPodsEntry{} + yyv4816[yyj4816] = PreferAvoidPodsEntry{} } else { - yyv4844 := &yyv4842[yyj4842] - yyv4844.CodecDecodeSelf(d) + yyv4818 := &yyv4816[yyj4816] + yyv4818.CodecDecodeSelf(d) } } } } else { - yyj4842 := 0 - for ; !r.CheckBreak(); yyj4842++ { + yyj4816 := 0 + for ; !r.CheckBreak(); yyj4816++ { - if yyj4842 >= len(yyv4842) { - yyv4842 = append(yyv4842, PreferAvoidPodsEntry{}) // var yyz4842 PreferAvoidPodsEntry - yyc4842 = true + if yyj4816 >= len(yyv4816) { + yyv4816 = append(yyv4816, PreferAvoidPodsEntry{}) // var yyz4816 PreferAvoidPodsEntry + yyc4816 = true } - yyh4842.ElemContainerState(yyj4842) - if yyj4842 < len(yyv4842) { + yyh4816.ElemContainerState(yyj4816) + if yyj4816 < len(yyv4816) { if r.TryDecodeAsNil() { - yyv4842[yyj4842] = PreferAvoidPodsEntry{} + yyv4816[yyj4816] = PreferAvoidPodsEntry{} } else { - yyv4845 := &yyv4842[yyj4842] - yyv4845.CodecDecodeSelf(d) + yyv4819 := &yyv4816[yyj4816] + yyv4819.CodecDecodeSelf(d) } } else { @@ -61867,17 +61568,17 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } } - if yyj4842 < len(yyv4842) { - yyv4842 = yyv4842[:yyj4842] - yyc4842 = true - } else if yyj4842 == 0 && yyv4842 == nil { - yyv4842 = []PreferAvoidPodsEntry{} - yyc4842 = true + if yyj4816 < len(yyv4816) { + yyv4816 = yyv4816[:yyj4816] + yyc4816 = true + } else if yyj4816 == 0 && yyv4816 == nil { + yyv4816 = []PreferAvoidPodsEntry{} + yyc4816 = true } } - yyh4842.End() - if yyc4842 { - *v = yyv4842 + yyh4816.End() + if yyc4816 { + *v = yyv4816 } } @@ -61886,19 +61587,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4846, yyv4846 := range v { + for yyk4820, yyv4820 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4846.CodecEncodeSelf(e) + yyk4820.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4847 := &yyv4846 - yym4848 := z.EncBinary() - _ = yym4848 + yy4821 := &yyv4820 + yym4822 := z.EncBinary() + _ = yym4822 if false { - } else if z.HasExtensions() && z.EncExt(yy4847) { - } else if !yym4848 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4847) + } else if z.HasExtensions() && z.EncExt(yy4821) { + } else if !yym4822 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4821) } else { - z.EncFallback(yy4847) + z.EncFallback(yy4821) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -61909,86 +61610,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4849 := *v - yyl4849 := r.ReadMapStart() - yybh4849 := z.DecBasicHandle() - if yyv4849 == nil { - yyrl4849, _ := z.DecInferLen(yyl4849, yybh4849.MaxInitLen, 72) - yyv4849 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4849) - *v = yyv4849 + yyv4823 := *v + yyl4823 := r.ReadMapStart() + yybh4823 := z.DecBasicHandle() + if yyv4823 == nil { + yyrl4823, _ := z.DecInferLen(yyl4823, yybh4823.MaxInitLen, 72) + yyv4823 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4823) + *v = yyv4823 } - var yymk4849 ResourceName - var yymv4849 pkg3_resource.Quantity - var yymg4849 bool - if yybh4849.MapValueReset { - yymg4849 = true + var yymk4823 ResourceName + var yymv4823 pkg3_resource.Quantity + var yymg4823 bool + if yybh4823.MapValueReset { + yymg4823 = true } - if yyl4849 > 0 { - for yyj4849 := 0; yyj4849 < yyl4849; yyj4849++ { + if yyl4823 > 0 { + for yyj4823 := 0; yyj4823 < yyl4823; yyj4823++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4849 = "" + yymk4823 = "" } else { - yymk4849 = ResourceName(r.DecodeString()) + yymk4823 = ResourceName(r.DecodeString()) } - if yymg4849 { - yymv4849 = yyv4849[yymk4849] + if yymg4823 { + yymv4823 = yyv4823[yymk4823] } else { - yymv4849 = pkg3_resource.Quantity{} + yymv4823 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4849 = pkg3_resource.Quantity{} + yymv4823 = pkg3_resource.Quantity{} } else { - yyv4851 := &yymv4849 - yym4852 := z.DecBinary() - _ = yym4852 + yyv4825 := &yymv4823 + yym4826 := z.DecBinary() + _ = yym4826 if false { - } else if z.HasExtensions() && z.DecExt(yyv4851) { - } else if !yym4852 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4851) + } else if z.HasExtensions() && z.DecExt(yyv4825) { + } else if !yym4826 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4825) } else { - z.DecFallback(yyv4851, false) + z.DecFallback(yyv4825, false) } } - if yyv4849 != nil { - yyv4849[yymk4849] = yymv4849 + if yyv4823 != nil { + yyv4823[yymk4823] = yymv4823 } } - } else if yyl4849 < 0 { - for yyj4849 := 0; !r.CheckBreak(); yyj4849++ { + } else if yyl4823 < 0 { + for yyj4823 := 0; !r.CheckBreak(); yyj4823++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4849 = "" + yymk4823 = "" } else { - yymk4849 = ResourceName(r.DecodeString()) + yymk4823 = ResourceName(r.DecodeString()) } - if yymg4849 { - yymv4849 = yyv4849[yymk4849] + if yymg4823 { + yymv4823 = yyv4823[yymk4823] } else { - yymv4849 = pkg3_resource.Quantity{} + yymv4823 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4849 = pkg3_resource.Quantity{} + yymv4823 = pkg3_resource.Quantity{} } else { - yyv4854 := &yymv4849 - yym4855 := z.DecBinary() - _ = yym4855 + yyv4828 := &yymv4823 + yym4829 := z.DecBinary() + _ = yym4829 if false { - } else if z.HasExtensions() && z.DecExt(yyv4854) { - } else if !yym4855 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4854) + } else if z.HasExtensions() && z.DecExt(yyv4828) { + } else if !yym4829 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4828) } else { - z.DecFallback(yyv4854, false) + z.DecFallback(yyv4828, false) } } - if yyv4849 != nil { - yyv4849[yymk4849] = yymv4849 + if yyv4823 != nil { + yyv4823[yymk4823] = yymv4823 } } } // else len==0: TODO: Should we clear map entries? @@ -62000,10 +61701,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4856 := range v { + for _, yyv4830 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4857 := &yyv4856 - yy4857.CodecEncodeSelf(e) + yy4831 := &yyv4830 + yy4831.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62013,83 +61714,83 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4858 := *v - yyh4858, yyl4858 := z.DecSliceHelperStart() - var yyc4858 bool - if yyl4858 == 0 { - if yyv4858 == nil { - yyv4858 = []Node{} - yyc4858 = true - } else if len(yyv4858) != 0 { - yyv4858 = yyv4858[:0] - yyc4858 = true + yyv4832 := *v + yyh4832, yyl4832 := z.DecSliceHelperStart() + var yyc4832 bool + if yyl4832 == 0 { + if yyv4832 == nil { + yyv4832 = []Node{} + yyc4832 = true + } else if len(yyv4832) != 0 { + yyv4832 = yyv4832[:0] + yyc4832 = true } - } else if yyl4858 > 0 { - var yyrr4858, yyrl4858 int - var yyrt4858 bool - if yyl4858 > cap(yyv4858) { + } else if yyl4832 > 0 { + var yyrr4832, yyrl4832 int + var yyrt4832 bool + if yyl4832 > cap(yyv4832) { - yyrg4858 := len(yyv4858) > 0 - yyv24858 := yyv4858 - yyrl4858, yyrt4858 = z.DecInferLen(yyl4858, z.DecBasicHandle().MaxInitLen, 632) - if yyrt4858 { - if yyrl4858 <= cap(yyv4858) { - yyv4858 = yyv4858[:yyrl4858] + yyrg4832 := len(yyv4832) > 0 + yyv24832 := yyv4832 + yyrl4832, yyrt4832 = z.DecInferLen(yyl4832, z.DecBasicHandle().MaxInitLen, 632) + if yyrt4832 { + if yyrl4832 <= cap(yyv4832) { + yyv4832 = yyv4832[:yyrl4832] } else { - yyv4858 = make([]Node, yyrl4858) + yyv4832 = make([]Node, yyrl4832) } } else { - yyv4858 = make([]Node, yyrl4858) + yyv4832 = make([]Node, yyrl4832) } - yyc4858 = true - yyrr4858 = len(yyv4858) - if yyrg4858 { - copy(yyv4858, yyv24858) + yyc4832 = true + yyrr4832 = len(yyv4832) + if yyrg4832 { + copy(yyv4832, yyv24832) } - } else if yyl4858 != len(yyv4858) { - yyv4858 = yyv4858[:yyl4858] - yyc4858 = true + } else if yyl4832 != len(yyv4832) { + yyv4832 = yyv4832[:yyl4832] + yyc4832 = true } - yyj4858 := 0 - for ; yyj4858 < yyrr4858; yyj4858++ { - yyh4858.ElemContainerState(yyj4858) + yyj4832 := 0 + for ; yyj4832 < yyrr4832; yyj4832++ { + yyh4832.ElemContainerState(yyj4832) if r.TryDecodeAsNil() { - yyv4858[yyj4858] = Node{} + yyv4832[yyj4832] = Node{} } else { - yyv4859 := &yyv4858[yyj4858] - yyv4859.CodecDecodeSelf(d) + yyv4833 := &yyv4832[yyj4832] + yyv4833.CodecDecodeSelf(d) } } - if yyrt4858 { - for ; yyj4858 < yyl4858; yyj4858++ { - yyv4858 = append(yyv4858, Node{}) - yyh4858.ElemContainerState(yyj4858) + if yyrt4832 { + for ; yyj4832 < yyl4832; yyj4832++ { + yyv4832 = append(yyv4832, Node{}) + yyh4832.ElemContainerState(yyj4832) if r.TryDecodeAsNil() { - yyv4858[yyj4858] = Node{} + yyv4832[yyj4832] = Node{} } else { - yyv4860 := &yyv4858[yyj4858] - yyv4860.CodecDecodeSelf(d) + yyv4834 := &yyv4832[yyj4832] + yyv4834.CodecDecodeSelf(d) } } } } else { - yyj4858 := 0 - for ; !r.CheckBreak(); yyj4858++ { + yyj4832 := 0 + for ; !r.CheckBreak(); yyj4832++ { - if yyj4858 >= len(yyv4858) { - yyv4858 = append(yyv4858, Node{}) // var yyz4858 Node - yyc4858 = true + if yyj4832 >= len(yyv4832) { + yyv4832 = append(yyv4832, Node{}) // var yyz4832 Node + yyc4832 = true } - yyh4858.ElemContainerState(yyj4858) - if yyj4858 < len(yyv4858) { + yyh4832.ElemContainerState(yyj4832) + if yyj4832 < len(yyv4832) { if r.TryDecodeAsNil() { - yyv4858[yyj4858] = Node{} + yyv4832[yyj4832] = Node{} } else { - yyv4861 := &yyv4858[yyj4858] - yyv4861.CodecDecodeSelf(d) + yyv4835 := &yyv4832[yyj4832] + yyv4835.CodecDecodeSelf(d) } } else { @@ -62097,17 +61798,17 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { } } - if yyj4858 < len(yyv4858) { - yyv4858 = yyv4858[:yyj4858] - yyc4858 = true - } else if yyj4858 == 0 && yyv4858 == nil { - yyv4858 = []Node{} - yyc4858 = true + if yyj4832 < len(yyv4832) { + yyv4832 = yyv4832[:yyj4832] + yyc4832 = true + } else if yyj4832 == 0 && yyv4832 == nil { + yyv4832 = []Node{} + yyc4832 = true } } - yyh4858.End() - if yyc4858 { - *v = yyv4858 + yyh4832.End() + if yyc4832 { + *v = yyv4832 } } @@ -62116,9 +61817,9 @@ func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4862 := range v { + for _, yyv4836 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4862.CodecEncodeSelf(e) + yyv4836.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62128,75 +61829,75 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4863 := *v - yyh4863, yyl4863 := z.DecSliceHelperStart() - var yyc4863 bool - if yyl4863 == 0 { - if yyv4863 == nil { - yyv4863 = []FinalizerName{} - yyc4863 = true - } else if len(yyv4863) != 0 { - yyv4863 = yyv4863[:0] - yyc4863 = true + yyv4837 := *v + yyh4837, yyl4837 := z.DecSliceHelperStart() + var yyc4837 bool + if yyl4837 == 0 { + if yyv4837 == nil { + yyv4837 = []FinalizerName{} + yyc4837 = true + } else if len(yyv4837) != 0 { + yyv4837 = yyv4837[:0] + yyc4837 = true } - } else if yyl4863 > 0 { - var yyrr4863, yyrl4863 int - var yyrt4863 bool - if yyl4863 > cap(yyv4863) { + } else if yyl4837 > 0 { + var yyrr4837, yyrl4837 int + var yyrt4837 bool + if yyl4837 > cap(yyv4837) { - yyrl4863, yyrt4863 = z.DecInferLen(yyl4863, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4863 { - if yyrl4863 <= cap(yyv4863) { - yyv4863 = yyv4863[:yyrl4863] + yyrl4837, yyrt4837 = z.DecInferLen(yyl4837, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4837 { + if yyrl4837 <= cap(yyv4837) { + yyv4837 = yyv4837[:yyrl4837] } else { - yyv4863 = make([]FinalizerName, yyrl4863) + yyv4837 = make([]FinalizerName, yyrl4837) } } else { - yyv4863 = make([]FinalizerName, yyrl4863) + yyv4837 = make([]FinalizerName, yyrl4837) } - yyc4863 = true - yyrr4863 = len(yyv4863) - } else if yyl4863 != len(yyv4863) { - yyv4863 = yyv4863[:yyl4863] - yyc4863 = true + yyc4837 = true + yyrr4837 = len(yyv4837) + } else if yyl4837 != len(yyv4837) { + yyv4837 = yyv4837[:yyl4837] + yyc4837 = true } - yyj4863 := 0 - for ; yyj4863 < yyrr4863; yyj4863++ { - yyh4863.ElemContainerState(yyj4863) + yyj4837 := 0 + for ; yyj4837 < yyrr4837; yyj4837++ { + yyh4837.ElemContainerState(yyj4837) if r.TryDecodeAsNil() { - yyv4863[yyj4863] = "" + yyv4837[yyj4837] = "" } else { - yyv4863[yyj4863] = FinalizerName(r.DecodeString()) + yyv4837[yyj4837] = FinalizerName(r.DecodeString()) } } - if yyrt4863 { - for ; yyj4863 < yyl4863; yyj4863++ { - yyv4863 = append(yyv4863, "") - yyh4863.ElemContainerState(yyj4863) + if yyrt4837 { + for ; yyj4837 < yyl4837; yyj4837++ { + yyv4837 = append(yyv4837, "") + yyh4837.ElemContainerState(yyj4837) if r.TryDecodeAsNil() { - yyv4863[yyj4863] = "" + yyv4837[yyj4837] = "" } else { - yyv4863[yyj4863] = FinalizerName(r.DecodeString()) + yyv4837[yyj4837] = FinalizerName(r.DecodeString()) } } } } else { - yyj4863 := 0 - for ; !r.CheckBreak(); yyj4863++ { + yyj4837 := 0 + for ; !r.CheckBreak(); yyj4837++ { - if yyj4863 >= len(yyv4863) { - yyv4863 = append(yyv4863, "") // var yyz4863 FinalizerName - yyc4863 = true + if yyj4837 >= len(yyv4837) { + yyv4837 = append(yyv4837, "") // var yyz4837 FinalizerName + yyc4837 = true } - yyh4863.ElemContainerState(yyj4863) - if yyj4863 < len(yyv4863) { + yyh4837.ElemContainerState(yyj4837) + if yyj4837 < len(yyv4837) { if r.TryDecodeAsNil() { - yyv4863[yyj4863] = "" + yyv4837[yyj4837] = "" } else { - yyv4863[yyj4863] = FinalizerName(r.DecodeString()) + yyv4837[yyj4837] = FinalizerName(r.DecodeString()) } } else { @@ -62204,17 +61905,17 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } - if yyj4863 < len(yyv4863) { - yyv4863 = yyv4863[:yyj4863] - yyc4863 = true - } else if yyj4863 == 0 && yyv4863 == nil { - yyv4863 = []FinalizerName{} - yyc4863 = true + if yyj4837 < len(yyv4837) { + yyv4837 = yyv4837[:yyj4837] + yyc4837 = true + } else if yyj4837 == 0 && yyv4837 == nil { + yyv4837 = []FinalizerName{} + yyc4837 = true } } - yyh4863.End() - if yyc4863 { - *v = yyv4863 + yyh4837.End() + if yyc4837 { + *v = yyv4837 } } @@ -62223,10 +61924,10 @@ func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4867 := range v { + for _, yyv4841 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4868 := &yyv4867 - yy4868.CodecEncodeSelf(e) + yy4842 := &yyv4841 + yy4842.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62236,83 +61937,83 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4869 := *v - yyh4869, yyl4869 := z.DecSliceHelperStart() - var yyc4869 bool - if yyl4869 == 0 { - if yyv4869 == nil { - yyv4869 = []Namespace{} - yyc4869 = true - } else if len(yyv4869) != 0 { - yyv4869 = yyv4869[:0] - yyc4869 = true + yyv4843 := *v + yyh4843, yyl4843 := z.DecSliceHelperStart() + var yyc4843 bool + if yyl4843 == 0 { + if yyv4843 == nil { + yyv4843 = []Namespace{} + yyc4843 = true + } else if len(yyv4843) != 0 { + yyv4843 = yyv4843[:0] + yyc4843 = true } - } else if yyl4869 > 0 { - var yyrr4869, yyrl4869 int - var yyrt4869 bool - if yyl4869 > cap(yyv4869) { + } else if yyl4843 > 0 { + var yyrr4843, yyrl4843 int + var yyrt4843 bool + if yyl4843 > cap(yyv4843) { - yyrg4869 := len(yyv4869) > 0 - yyv24869 := yyv4869 - yyrl4869, yyrt4869 = z.DecInferLen(yyl4869, z.DecBasicHandle().MaxInitLen, 296) - if yyrt4869 { - if yyrl4869 <= cap(yyv4869) { - yyv4869 = yyv4869[:yyrl4869] + yyrg4843 := len(yyv4843) > 0 + yyv24843 := yyv4843 + yyrl4843, yyrt4843 = z.DecInferLen(yyl4843, z.DecBasicHandle().MaxInitLen, 296) + if yyrt4843 { + if yyrl4843 <= cap(yyv4843) { + yyv4843 = yyv4843[:yyrl4843] } else { - yyv4869 = make([]Namespace, yyrl4869) + yyv4843 = make([]Namespace, yyrl4843) } } else { - yyv4869 = make([]Namespace, yyrl4869) + yyv4843 = make([]Namespace, yyrl4843) } - yyc4869 = true - yyrr4869 = len(yyv4869) - if yyrg4869 { - copy(yyv4869, yyv24869) + yyc4843 = true + yyrr4843 = len(yyv4843) + if yyrg4843 { + copy(yyv4843, yyv24843) } - } else if yyl4869 != len(yyv4869) { - yyv4869 = yyv4869[:yyl4869] - yyc4869 = true + } else if yyl4843 != len(yyv4843) { + yyv4843 = yyv4843[:yyl4843] + yyc4843 = true } - yyj4869 := 0 - for ; yyj4869 < yyrr4869; yyj4869++ { - yyh4869.ElemContainerState(yyj4869) + yyj4843 := 0 + for ; yyj4843 < yyrr4843; yyj4843++ { + yyh4843.ElemContainerState(yyj4843) if r.TryDecodeAsNil() { - yyv4869[yyj4869] = Namespace{} + yyv4843[yyj4843] = Namespace{} } else { - yyv4870 := &yyv4869[yyj4869] - yyv4870.CodecDecodeSelf(d) + yyv4844 := &yyv4843[yyj4843] + yyv4844.CodecDecodeSelf(d) } } - if yyrt4869 { - for ; yyj4869 < yyl4869; yyj4869++ { - yyv4869 = append(yyv4869, Namespace{}) - yyh4869.ElemContainerState(yyj4869) + if yyrt4843 { + for ; yyj4843 < yyl4843; yyj4843++ { + yyv4843 = append(yyv4843, Namespace{}) + yyh4843.ElemContainerState(yyj4843) if r.TryDecodeAsNil() { - yyv4869[yyj4869] = Namespace{} + yyv4843[yyj4843] = Namespace{} } else { - yyv4871 := &yyv4869[yyj4869] - yyv4871.CodecDecodeSelf(d) + yyv4845 := &yyv4843[yyj4843] + yyv4845.CodecDecodeSelf(d) } } } } else { - yyj4869 := 0 - for ; !r.CheckBreak(); yyj4869++ { + yyj4843 := 0 + for ; !r.CheckBreak(); yyj4843++ { - if yyj4869 >= len(yyv4869) { - yyv4869 = append(yyv4869, Namespace{}) // var yyz4869 Namespace - yyc4869 = true + if yyj4843 >= len(yyv4843) { + yyv4843 = append(yyv4843, Namespace{}) // var yyz4843 Namespace + yyc4843 = true } - yyh4869.ElemContainerState(yyj4869) - if yyj4869 < len(yyv4869) { + yyh4843.ElemContainerState(yyj4843) + if yyj4843 < len(yyv4843) { if r.TryDecodeAsNil() { - yyv4869[yyj4869] = Namespace{} + yyv4843[yyj4843] = Namespace{} } else { - yyv4872 := &yyv4869[yyj4869] - yyv4872.CodecDecodeSelf(d) + yyv4846 := &yyv4843[yyj4843] + yyv4846.CodecDecodeSelf(d) } } else { @@ -62320,17 +62021,17 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4869 < len(yyv4869) { - yyv4869 = yyv4869[:yyj4869] - yyc4869 = true - } else if yyj4869 == 0 && yyv4869 == nil { - yyv4869 = []Namespace{} - yyc4869 = true + if yyj4843 < len(yyv4843) { + yyv4843 = yyv4843[:yyj4843] + yyc4843 = true + } else if yyj4843 == 0 && yyv4843 == nil { + yyv4843 = []Namespace{} + yyc4843 = true } } - yyh4869.End() - if yyc4869 { - *v = yyv4869 + yyh4843.End() + if yyc4843 { + *v = yyv4843 } } @@ -62339,10 +62040,10 @@ func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4873 := range v { + for _, yyv4847 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4874 := &yyv4873 - yy4874.CodecEncodeSelf(e) + yy4848 := &yyv4847 + yy4848.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62352,83 +62053,83 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4875 := *v - yyh4875, yyl4875 := z.DecSliceHelperStart() - var yyc4875 bool - if yyl4875 == 0 { - if yyv4875 == nil { - yyv4875 = []Event{} - yyc4875 = true - } else if len(yyv4875) != 0 { - yyv4875 = yyv4875[:0] - yyc4875 = true + yyv4849 := *v + yyh4849, yyl4849 := z.DecSliceHelperStart() + var yyc4849 bool + if yyl4849 == 0 { + if yyv4849 == nil { + yyv4849 = []Event{} + yyc4849 = true + } else if len(yyv4849) != 0 { + yyv4849 = yyv4849[:0] + yyc4849 = true } - } else if yyl4875 > 0 { - var yyrr4875, yyrl4875 int - var yyrt4875 bool - if yyl4875 > cap(yyv4875) { + } else if yyl4849 > 0 { + var yyrr4849, yyrl4849 int + var yyrt4849 bool + if yyl4849 > cap(yyv4849) { - yyrg4875 := len(yyv4875) > 0 - yyv24875 := yyv4875 - yyrl4875, yyrt4875 = z.DecInferLen(yyl4875, z.DecBasicHandle().MaxInitLen, 504) - if yyrt4875 { - if yyrl4875 <= cap(yyv4875) { - yyv4875 = yyv4875[:yyrl4875] + yyrg4849 := len(yyv4849) > 0 + yyv24849 := yyv4849 + yyrl4849, yyrt4849 = z.DecInferLen(yyl4849, z.DecBasicHandle().MaxInitLen, 504) + if yyrt4849 { + if yyrl4849 <= cap(yyv4849) { + yyv4849 = yyv4849[:yyrl4849] } else { - yyv4875 = make([]Event, yyrl4875) + yyv4849 = make([]Event, yyrl4849) } } else { - yyv4875 = make([]Event, yyrl4875) + yyv4849 = make([]Event, yyrl4849) } - yyc4875 = true - yyrr4875 = len(yyv4875) - if yyrg4875 { - copy(yyv4875, yyv24875) + yyc4849 = true + yyrr4849 = len(yyv4849) + if yyrg4849 { + copy(yyv4849, yyv24849) } - } else if yyl4875 != len(yyv4875) { - yyv4875 = yyv4875[:yyl4875] - yyc4875 = true + } else if yyl4849 != len(yyv4849) { + yyv4849 = yyv4849[:yyl4849] + yyc4849 = true } - yyj4875 := 0 - for ; yyj4875 < yyrr4875; yyj4875++ { - yyh4875.ElemContainerState(yyj4875) + yyj4849 := 0 + for ; yyj4849 < yyrr4849; yyj4849++ { + yyh4849.ElemContainerState(yyj4849) if r.TryDecodeAsNil() { - yyv4875[yyj4875] = Event{} + yyv4849[yyj4849] = Event{} } else { - yyv4876 := &yyv4875[yyj4875] - yyv4876.CodecDecodeSelf(d) + yyv4850 := &yyv4849[yyj4849] + yyv4850.CodecDecodeSelf(d) } } - if yyrt4875 { - for ; yyj4875 < yyl4875; yyj4875++ { - yyv4875 = append(yyv4875, Event{}) - yyh4875.ElemContainerState(yyj4875) + if yyrt4849 { + for ; yyj4849 < yyl4849; yyj4849++ { + yyv4849 = append(yyv4849, Event{}) + yyh4849.ElemContainerState(yyj4849) if r.TryDecodeAsNil() { - yyv4875[yyj4875] = Event{} + yyv4849[yyj4849] = Event{} } else { - yyv4877 := &yyv4875[yyj4875] - yyv4877.CodecDecodeSelf(d) + yyv4851 := &yyv4849[yyj4849] + yyv4851.CodecDecodeSelf(d) } } } } else { - yyj4875 := 0 - for ; !r.CheckBreak(); yyj4875++ { + yyj4849 := 0 + for ; !r.CheckBreak(); yyj4849++ { - if yyj4875 >= len(yyv4875) { - yyv4875 = append(yyv4875, Event{}) // var yyz4875 Event - yyc4875 = true + if yyj4849 >= len(yyv4849) { + yyv4849 = append(yyv4849, Event{}) // var yyz4849 Event + yyc4849 = true } - yyh4875.ElemContainerState(yyj4875) - if yyj4875 < len(yyv4875) { + yyh4849.ElemContainerState(yyj4849) + if yyj4849 < len(yyv4849) { if r.TryDecodeAsNil() { - yyv4875[yyj4875] = Event{} + yyv4849[yyj4849] = Event{} } else { - yyv4878 := &yyv4875[yyj4875] - yyv4878.CodecDecodeSelf(d) + yyv4852 := &yyv4849[yyj4849] + yyv4852.CodecDecodeSelf(d) } } else { @@ -62436,17 +62137,17 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4875 < len(yyv4875) { - yyv4875 = yyv4875[:yyj4875] - yyc4875 = true - } else if yyj4875 == 0 && yyv4875 == nil { - yyv4875 = []Event{} - yyc4875 = true + if yyj4849 < len(yyv4849) { + yyv4849 = yyv4849[:yyj4849] + yyc4849 = true + } else if yyj4849 == 0 && yyv4849 == nil { + yyv4849 = []Event{} + yyc4849 = true } } - yyh4875.End() - if yyc4875 { - *v = yyv4875 + yyh4849.End() + if yyc4849 { + *v = yyv4849 } } @@ -62455,17 +62156,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 _, yyv4879 := range v { + for _, yyv4853 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyv4879 == nil { + if yyv4853 == nil { r.EncodeNil() } else { - yym4880 := z.EncBinary() - _ = yym4880 + yym4854 := z.EncBinary() + _ = yym4854 if false { - } else if z.HasExtensions() && z.EncExt(yyv4879) { + } else if z.HasExtensions() && z.EncExt(yyv4853) { } else { - z.EncFallback(yyv4879) + z.EncFallback(yyv4853) } } } @@ -62477,12 +62178,485 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r + yyv4855 := *v + yyh4855, yyl4855 := z.DecSliceHelperStart() + var yyc4855 bool + if yyl4855 == 0 { + if yyv4855 == nil { + yyv4855 = []pkg7_runtime.Object{} + yyc4855 = true + } else if len(yyv4855) != 0 { + yyv4855 = yyv4855[:0] + yyc4855 = true + } + } else if yyl4855 > 0 { + var yyrr4855, yyrl4855 int + var yyrt4855 bool + if yyl4855 > cap(yyv4855) { + + yyrg4855 := len(yyv4855) > 0 + yyv24855 := yyv4855 + yyrl4855, yyrt4855 = z.DecInferLen(yyl4855, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4855 { + if yyrl4855 <= cap(yyv4855) { + yyv4855 = yyv4855[:yyrl4855] + } else { + yyv4855 = make([]pkg7_runtime.Object, yyrl4855) + } + } else { + yyv4855 = make([]pkg7_runtime.Object, yyrl4855) + } + yyc4855 = true + yyrr4855 = len(yyv4855) + if yyrg4855 { + copy(yyv4855, yyv24855) + } + } else if yyl4855 != len(yyv4855) { + yyv4855 = yyv4855[:yyl4855] + yyc4855 = true + } + yyj4855 := 0 + for ; yyj4855 < yyrr4855; yyj4855++ { + yyh4855.ElemContainerState(yyj4855) + if r.TryDecodeAsNil() { + yyv4855[yyj4855] = nil + } else { + yyv4856 := &yyv4855[yyj4855] + yym4857 := z.DecBinary() + _ = yym4857 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4856) { + } else { + z.DecFallback(yyv4856, true) + } + } + + } + if yyrt4855 { + for ; yyj4855 < yyl4855; yyj4855++ { + yyv4855 = append(yyv4855, nil) + yyh4855.ElemContainerState(yyj4855) + if r.TryDecodeAsNil() { + yyv4855[yyj4855] = nil + } else { + yyv4858 := &yyv4855[yyj4855] + yym4859 := z.DecBinary() + _ = yym4859 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4858) { + } else { + z.DecFallback(yyv4858, true) + } + } + + } + } + + } else { + yyj4855 := 0 + for ; !r.CheckBreak(); yyj4855++ { + + if yyj4855 >= len(yyv4855) { + yyv4855 = append(yyv4855, nil) // var yyz4855 pkg7_runtime.Object + yyc4855 = true + } + yyh4855.ElemContainerState(yyj4855) + if yyj4855 < len(yyv4855) { + if r.TryDecodeAsNil() { + yyv4855[yyj4855] = nil + } else { + yyv4860 := &yyv4855[yyj4855] + yym4861 := z.DecBinary() + _ = yym4861 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4860) { + } else { + z.DecFallback(yyv4860, true) + } + } + + } else { + z.DecSwallow() + } + + } + if yyj4855 < len(yyv4855) { + yyv4855 = yyv4855[:yyj4855] + yyc4855 = true + } else if yyj4855 == 0 && yyv4855 == nil { + yyv4855 = []pkg7_runtime.Object{} + yyc4855 = true + } + } + yyh4855.End() + if yyc4855 { + *v = yyv4855 + } +} + +func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4862 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4863 := &yyv4862 + yy4863.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4864 := *v + yyh4864, yyl4864 := z.DecSliceHelperStart() + var yyc4864 bool + if yyl4864 == 0 { + if yyv4864 == nil { + yyv4864 = []LimitRangeItem{} + yyc4864 = true + } else if len(yyv4864) != 0 { + yyv4864 = yyv4864[:0] + yyc4864 = true + } + } else if yyl4864 > 0 { + var yyrr4864, yyrl4864 int + var yyrt4864 bool + if yyl4864 > cap(yyv4864) { + + yyrg4864 := len(yyv4864) > 0 + yyv24864 := yyv4864 + yyrl4864, yyrt4864 = z.DecInferLen(yyl4864, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4864 { + if yyrl4864 <= cap(yyv4864) { + yyv4864 = yyv4864[:yyrl4864] + } else { + yyv4864 = make([]LimitRangeItem, yyrl4864) + } + } else { + yyv4864 = make([]LimitRangeItem, yyrl4864) + } + yyc4864 = true + yyrr4864 = len(yyv4864) + if yyrg4864 { + copy(yyv4864, yyv24864) + } + } else if yyl4864 != len(yyv4864) { + yyv4864 = yyv4864[:yyl4864] + yyc4864 = true + } + yyj4864 := 0 + for ; yyj4864 < yyrr4864; yyj4864++ { + yyh4864.ElemContainerState(yyj4864) + if r.TryDecodeAsNil() { + yyv4864[yyj4864] = LimitRangeItem{} + } else { + yyv4865 := &yyv4864[yyj4864] + yyv4865.CodecDecodeSelf(d) + } + + } + if yyrt4864 { + for ; yyj4864 < yyl4864; yyj4864++ { + yyv4864 = append(yyv4864, LimitRangeItem{}) + yyh4864.ElemContainerState(yyj4864) + if r.TryDecodeAsNil() { + yyv4864[yyj4864] = LimitRangeItem{} + } else { + yyv4866 := &yyv4864[yyj4864] + yyv4866.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4864 := 0 + for ; !r.CheckBreak(); yyj4864++ { + + if yyj4864 >= len(yyv4864) { + yyv4864 = append(yyv4864, LimitRangeItem{}) // var yyz4864 LimitRangeItem + yyc4864 = true + } + yyh4864.ElemContainerState(yyj4864) + if yyj4864 < len(yyv4864) { + if r.TryDecodeAsNil() { + yyv4864[yyj4864] = LimitRangeItem{} + } else { + yyv4867 := &yyv4864[yyj4864] + yyv4867.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4864 < len(yyv4864) { + yyv4864 = yyv4864[:yyj4864] + yyc4864 = true + } else if yyj4864 == 0 && yyv4864 == nil { + yyv4864 = []LimitRangeItem{} + yyc4864 = true + } + } + yyh4864.End() + if yyc4864 { + *v = yyv4864 + } +} + +func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4868 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4869 := &yyv4868 + yy4869.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4870 := *v + yyh4870, yyl4870 := z.DecSliceHelperStart() + var yyc4870 bool + if yyl4870 == 0 { + if yyv4870 == nil { + yyv4870 = []LimitRange{} + yyc4870 = true + } else if len(yyv4870) != 0 { + yyv4870 = yyv4870[:0] + yyc4870 = true + } + } else if yyl4870 > 0 { + var yyrr4870, yyrl4870 int + var yyrt4870 bool + if yyl4870 > cap(yyv4870) { + + yyrg4870 := len(yyv4870) > 0 + yyv24870 := yyv4870 + yyrl4870, yyrt4870 = z.DecInferLen(yyl4870, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4870 { + if yyrl4870 <= cap(yyv4870) { + yyv4870 = yyv4870[:yyrl4870] + } else { + yyv4870 = make([]LimitRange, yyrl4870) + } + } else { + yyv4870 = make([]LimitRange, yyrl4870) + } + yyc4870 = true + yyrr4870 = len(yyv4870) + if yyrg4870 { + copy(yyv4870, yyv24870) + } + } else if yyl4870 != len(yyv4870) { + yyv4870 = yyv4870[:yyl4870] + yyc4870 = true + } + yyj4870 := 0 + for ; yyj4870 < yyrr4870; yyj4870++ { + yyh4870.ElemContainerState(yyj4870) + if r.TryDecodeAsNil() { + yyv4870[yyj4870] = LimitRange{} + } else { + yyv4871 := &yyv4870[yyj4870] + yyv4871.CodecDecodeSelf(d) + } + + } + if yyrt4870 { + for ; yyj4870 < yyl4870; yyj4870++ { + yyv4870 = append(yyv4870, LimitRange{}) + yyh4870.ElemContainerState(yyj4870) + if r.TryDecodeAsNil() { + yyv4870[yyj4870] = LimitRange{} + } else { + yyv4872 := &yyv4870[yyj4870] + yyv4872.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4870 := 0 + for ; !r.CheckBreak(); yyj4870++ { + + if yyj4870 >= len(yyv4870) { + yyv4870 = append(yyv4870, LimitRange{}) // var yyz4870 LimitRange + yyc4870 = true + } + yyh4870.ElemContainerState(yyj4870) + if yyj4870 < len(yyv4870) { + if r.TryDecodeAsNil() { + yyv4870[yyj4870] = LimitRange{} + } else { + yyv4873 := &yyv4870[yyj4870] + yyv4873.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4870 < len(yyv4870) { + yyv4870 = yyv4870[:yyj4870] + yyc4870 = true + } else if yyj4870 == 0 && yyv4870 == nil { + yyv4870 = []LimitRange{} + yyc4870 = true + } + } + yyh4870.End() + if yyc4870 { + *v = yyv4870 + } +} + +func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4874 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yyv4874.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4875 := *v + yyh4875, yyl4875 := z.DecSliceHelperStart() + var yyc4875 bool + if yyl4875 == 0 { + if yyv4875 == nil { + yyv4875 = []ResourceQuotaScope{} + yyc4875 = true + } else if len(yyv4875) != 0 { + yyv4875 = yyv4875[:0] + yyc4875 = true + } + } else if yyl4875 > 0 { + var yyrr4875, yyrl4875 int + var yyrt4875 bool + if yyl4875 > cap(yyv4875) { + + yyrl4875, yyrt4875 = z.DecInferLen(yyl4875, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4875 { + if yyrl4875 <= cap(yyv4875) { + yyv4875 = yyv4875[:yyrl4875] + } else { + yyv4875 = make([]ResourceQuotaScope, yyrl4875) + } + } else { + yyv4875 = make([]ResourceQuotaScope, yyrl4875) + } + yyc4875 = true + yyrr4875 = len(yyv4875) + } else if yyl4875 != len(yyv4875) { + yyv4875 = yyv4875[:yyl4875] + yyc4875 = true + } + yyj4875 := 0 + for ; yyj4875 < yyrr4875; yyj4875++ { + yyh4875.ElemContainerState(yyj4875) + if r.TryDecodeAsNil() { + yyv4875[yyj4875] = "" + } else { + yyv4875[yyj4875] = ResourceQuotaScope(r.DecodeString()) + } + + } + if yyrt4875 { + for ; yyj4875 < yyl4875; yyj4875++ { + yyv4875 = append(yyv4875, "") + yyh4875.ElemContainerState(yyj4875) + if r.TryDecodeAsNil() { + yyv4875[yyj4875] = "" + } else { + yyv4875[yyj4875] = ResourceQuotaScope(r.DecodeString()) + } + + } + } + + } else { + yyj4875 := 0 + for ; !r.CheckBreak(); yyj4875++ { + + if yyj4875 >= len(yyv4875) { + yyv4875 = append(yyv4875, "") // var yyz4875 ResourceQuotaScope + yyc4875 = true + } + yyh4875.ElemContainerState(yyj4875) + if yyj4875 < len(yyv4875) { + if r.TryDecodeAsNil() { + yyv4875[yyj4875] = "" + } else { + yyv4875[yyj4875] = ResourceQuotaScope(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4875 < len(yyv4875) { + yyv4875 = yyv4875[:yyj4875] + yyc4875 = true + } else if yyj4875 == 0 && yyv4875 == nil { + yyv4875 = []ResourceQuotaScope{} + yyc4875 = true + } + } + yyh4875.End() + if yyc4875 { + *v = yyv4875 + } +} + +func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4879 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4880 := &yyv4879 + yy4880.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yyv4881 := *v yyh4881, yyl4881 := z.DecSliceHelperStart() var yyc4881 bool if yyl4881 == 0 { if yyv4881 == nil { - yyv4881 = []pkg7_runtime.Object{} + yyv4881 = []ResourceQuota{} yyc4881 = true } else if len(yyv4881) != 0 { yyv4881 = yyv4881[:0] @@ -62495,15 +62669,15 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod yyrg4881 := len(yyv4881) > 0 yyv24881 := yyv4881 - yyrl4881, yyrt4881 = z.DecInferLen(yyl4881, z.DecBasicHandle().MaxInitLen, 16) + yyrl4881, yyrt4881 = z.DecInferLen(yyl4881, z.DecBasicHandle().MaxInitLen, 304) if yyrt4881 { if yyrl4881 <= cap(yyv4881) { yyv4881 = yyv4881[:yyrl4881] } else { - yyv4881 = make([]pkg7_runtime.Object, yyrl4881) + yyv4881 = make([]ResourceQuota, yyrl4881) } } else { - yyv4881 = make([]pkg7_runtime.Object, yyrl4881) + yyv4881 = make([]ResourceQuota, yyrl4881) } yyc4881 = true yyrr4881 = len(yyv4881) @@ -62518,34 +62692,22 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod for ; yyj4881 < yyrr4881; yyj4881++ { yyh4881.ElemContainerState(yyj4881) if r.TryDecodeAsNil() { - yyv4881[yyj4881] = nil + yyv4881[yyj4881] = ResourceQuota{} } else { yyv4882 := &yyv4881[yyj4881] - yym4883 := z.DecBinary() - _ = yym4883 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4882) { - } else { - z.DecFallback(yyv4882, true) - } + yyv4882.CodecDecodeSelf(d) } } if yyrt4881 { for ; yyj4881 < yyl4881; yyj4881++ { - yyv4881 = append(yyv4881, nil) + yyv4881 = append(yyv4881, ResourceQuota{}) yyh4881.ElemContainerState(yyj4881) if r.TryDecodeAsNil() { - yyv4881[yyj4881] = nil + yyv4881[yyj4881] = ResourceQuota{} } else { - yyv4884 := &yyv4881[yyj4881] - yym4885 := z.DecBinary() - _ = yym4885 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4884) { - } else { - z.DecFallback(yyv4884, true) - } + yyv4883 := &yyv4881[yyj4881] + yyv4883.CodecDecodeSelf(d) } } @@ -62556,22 +62718,16 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod for ; !r.CheckBreak(); yyj4881++ { if yyj4881 >= len(yyv4881) { - yyv4881 = append(yyv4881, nil) // var yyz4881 pkg7_runtime.Object + yyv4881 = append(yyv4881, ResourceQuota{}) // var yyz4881 ResourceQuota yyc4881 = true } yyh4881.ElemContainerState(yyj4881) if yyj4881 < len(yyv4881) { if r.TryDecodeAsNil() { - yyv4881[yyj4881] = nil + yyv4881[yyj4881] = ResourceQuota{} } else { - yyv4886 := &yyv4881[yyj4881] - yym4887 := z.DecBinary() - _ = yym4887 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4886) { - } else { - z.DecFallback(yyv4886, true) - } + yyv4884 := &yyv4881[yyj4881] + yyv4884.CodecDecodeSelf(d) } } else { @@ -62583,7 +62739,7 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod yyv4881 = yyv4881[:yyj4881] yyc4881 = true } else if yyj4881 == 0 && yyv4881 == nil { - yyv4881 = []pkg7_runtime.Object{} + yyv4881 = []ResourceQuota{} yyc4881 = true } } @@ -62593,483 +62749,28 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg7_runtime.Object, d *cod } } -func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4888 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4889 := &yyv4888 - yy4889.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4890 := *v - yyh4890, yyl4890 := z.DecSliceHelperStart() - var yyc4890 bool - if yyl4890 == 0 { - if yyv4890 == nil { - yyv4890 = []LimitRangeItem{} - yyc4890 = true - } else if len(yyv4890) != 0 { - yyv4890 = yyv4890[:0] - yyc4890 = true - } - } else if yyl4890 > 0 { - var yyrr4890, yyrl4890 int - var yyrt4890 bool - if yyl4890 > cap(yyv4890) { - - yyrg4890 := len(yyv4890) > 0 - yyv24890 := yyv4890 - yyrl4890, yyrt4890 = z.DecInferLen(yyl4890, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4890 { - if yyrl4890 <= cap(yyv4890) { - yyv4890 = yyv4890[:yyrl4890] - } else { - yyv4890 = make([]LimitRangeItem, yyrl4890) - } - } else { - yyv4890 = make([]LimitRangeItem, yyrl4890) - } - yyc4890 = true - yyrr4890 = len(yyv4890) - if yyrg4890 { - copy(yyv4890, yyv24890) - } - } else if yyl4890 != len(yyv4890) { - yyv4890 = yyv4890[:yyl4890] - yyc4890 = true - } - yyj4890 := 0 - for ; yyj4890 < yyrr4890; yyj4890++ { - yyh4890.ElemContainerState(yyj4890) - if r.TryDecodeAsNil() { - yyv4890[yyj4890] = LimitRangeItem{} - } else { - yyv4891 := &yyv4890[yyj4890] - yyv4891.CodecDecodeSelf(d) - } - - } - if yyrt4890 { - for ; yyj4890 < yyl4890; yyj4890++ { - yyv4890 = append(yyv4890, LimitRangeItem{}) - yyh4890.ElemContainerState(yyj4890) - if r.TryDecodeAsNil() { - yyv4890[yyj4890] = LimitRangeItem{} - } else { - yyv4892 := &yyv4890[yyj4890] - yyv4892.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4890 := 0 - for ; !r.CheckBreak(); yyj4890++ { - - if yyj4890 >= len(yyv4890) { - yyv4890 = append(yyv4890, LimitRangeItem{}) // var yyz4890 LimitRangeItem - yyc4890 = true - } - yyh4890.ElemContainerState(yyj4890) - if yyj4890 < len(yyv4890) { - if r.TryDecodeAsNil() { - yyv4890[yyj4890] = LimitRangeItem{} - } else { - yyv4893 := &yyv4890[yyj4890] - yyv4893.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4890 < len(yyv4890) { - yyv4890 = yyv4890[:yyj4890] - yyc4890 = true - } else if yyj4890 == 0 && yyv4890 == nil { - yyv4890 = []LimitRangeItem{} - yyc4890 = true - } - } - yyh4890.End() - if yyc4890 { - *v = yyv4890 - } -} - -func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4894 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4895 := &yyv4894 - yy4895.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4896 := *v - yyh4896, yyl4896 := z.DecSliceHelperStart() - var yyc4896 bool - if yyl4896 == 0 { - if yyv4896 == nil { - yyv4896 = []LimitRange{} - yyc4896 = true - } else if len(yyv4896) != 0 { - yyv4896 = yyv4896[:0] - yyc4896 = true - } - } else if yyl4896 > 0 { - var yyrr4896, yyrl4896 int - var yyrt4896 bool - if yyl4896 > cap(yyv4896) { - - yyrg4896 := len(yyv4896) > 0 - yyv24896 := yyv4896 - yyrl4896, yyrt4896 = z.DecInferLen(yyl4896, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4896 { - if yyrl4896 <= cap(yyv4896) { - yyv4896 = yyv4896[:yyrl4896] - } else { - yyv4896 = make([]LimitRange, yyrl4896) - } - } else { - yyv4896 = make([]LimitRange, yyrl4896) - } - yyc4896 = true - yyrr4896 = len(yyv4896) - if yyrg4896 { - copy(yyv4896, yyv24896) - } - } else if yyl4896 != len(yyv4896) { - yyv4896 = yyv4896[:yyl4896] - yyc4896 = true - } - yyj4896 := 0 - for ; yyj4896 < yyrr4896; yyj4896++ { - yyh4896.ElemContainerState(yyj4896) - if r.TryDecodeAsNil() { - yyv4896[yyj4896] = LimitRange{} - } else { - yyv4897 := &yyv4896[yyj4896] - yyv4897.CodecDecodeSelf(d) - } - - } - if yyrt4896 { - for ; yyj4896 < yyl4896; yyj4896++ { - yyv4896 = append(yyv4896, LimitRange{}) - yyh4896.ElemContainerState(yyj4896) - if r.TryDecodeAsNil() { - yyv4896[yyj4896] = LimitRange{} - } else { - yyv4898 := &yyv4896[yyj4896] - yyv4898.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4896 := 0 - for ; !r.CheckBreak(); yyj4896++ { - - if yyj4896 >= len(yyv4896) { - yyv4896 = append(yyv4896, LimitRange{}) // var yyz4896 LimitRange - yyc4896 = true - } - yyh4896.ElemContainerState(yyj4896) - if yyj4896 < len(yyv4896) { - if r.TryDecodeAsNil() { - yyv4896[yyj4896] = LimitRange{} - } else { - yyv4899 := &yyv4896[yyj4896] - yyv4899.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4896 < len(yyv4896) { - yyv4896 = yyv4896[:yyj4896] - yyc4896 = true - } else if yyj4896 == 0 && yyv4896 == nil { - yyv4896 = []LimitRange{} - yyc4896 = true - } - } - yyh4896.End() - if yyc4896 { - *v = yyv4896 - } -} - -func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4900 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4900.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4901 := *v - yyh4901, yyl4901 := z.DecSliceHelperStart() - var yyc4901 bool - if yyl4901 == 0 { - if yyv4901 == nil { - yyv4901 = []ResourceQuotaScope{} - yyc4901 = true - } else if len(yyv4901) != 0 { - yyv4901 = yyv4901[:0] - yyc4901 = true - } - } else if yyl4901 > 0 { - var yyrr4901, yyrl4901 int - var yyrt4901 bool - if yyl4901 > cap(yyv4901) { - - yyrl4901, yyrt4901 = z.DecInferLen(yyl4901, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4901 { - if yyrl4901 <= cap(yyv4901) { - yyv4901 = yyv4901[:yyrl4901] - } else { - yyv4901 = make([]ResourceQuotaScope, yyrl4901) - } - } else { - yyv4901 = make([]ResourceQuotaScope, yyrl4901) - } - yyc4901 = true - yyrr4901 = len(yyv4901) - } else if yyl4901 != len(yyv4901) { - yyv4901 = yyv4901[:yyl4901] - yyc4901 = true - } - yyj4901 := 0 - for ; yyj4901 < yyrr4901; yyj4901++ { - yyh4901.ElemContainerState(yyj4901) - if r.TryDecodeAsNil() { - yyv4901[yyj4901] = "" - } else { - yyv4901[yyj4901] = ResourceQuotaScope(r.DecodeString()) - } - - } - if yyrt4901 { - for ; yyj4901 < yyl4901; yyj4901++ { - yyv4901 = append(yyv4901, "") - yyh4901.ElemContainerState(yyj4901) - if r.TryDecodeAsNil() { - yyv4901[yyj4901] = "" - } else { - yyv4901[yyj4901] = ResourceQuotaScope(r.DecodeString()) - } - - } - } - - } else { - yyj4901 := 0 - for ; !r.CheckBreak(); yyj4901++ { - - if yyj4901 >= len(yyv4901) { - yyv4901 = append(yyv4901, "") // var yyz4901 ResourceQuotaScope - yyc4901 = true - } - yyh4901.ElemContainerState(yyj4901) - if yyj4901 < len(yyv4901) { - if r.TryDecodeAsNil() { - yyv4901[yyj4901] = "" - } else { - yyv4901[yyj4901] = ResourceQuotaScope(r.DecodeString()) - } - - } else { - z.DecSwallow() - } - - } - if yyj4901 < len(yyv4901) { - yyv4901 = yyv4901[:yyj4901] - yyc4901 = true - } else if yyj4901 == 0 && yyv4901 == nil { - yyv4901 = []ResourceQuotaScope{} - yyc4901 = true - } - } - yyh4901.End() - if yyc4901 { - *v = yyv4901 - } -} - -func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4905 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4906 := &yyv4905 - yy4906.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4907 := *v - yyh4907, yyl4907 := z.DecSliceHelperStart() - var yyc4907 bool - if yyl4907 == 0 { - if yyv4907 == nil { - yyv4907 = []ResourceQuota{} - yyc4907 = true - } else if len(yyv4907) != 0 { - yyv4907 = yyv4907[:0] - yyc4907 = true - } - } else if yyl4907 > 0 { - var yyrr4907, yyrl4907 int - var yyrt4907 bool - if yyl4907 > cap(yyv4907) { - - yyrg4907 := len(yyv4907) > 0 - yyv24907 := yyv4907 - yyrl4907, yyrt4907 = z.DecInferLen(yyl4907, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4907 { - if yyrl4907 <= cap(yyv4907) { - yyv4907 = yyv4907[:yyrl4907] - } else { - yyv4907 = make([]ResourceQuota, yyrl4907) - } - } else { - yyv4907 = make([]ResourceQuota, yyrl4907) - } - yyc4907 = true - yyrr4907 = len(yyv4907) - if yyrg4907 { - copy(yyv4907, yyv24907) - } - } else if yyl4907 != len(yyv4907) { - yyv4907 = yyv4907[:yyl4907] - yyc4907 = true - } - yyj4907 := 0 - for ; yyj4907 < yyrr4907; yyj4907++ { - yyh4907.ElemContainerState(yyj4907) - if r.TryDecodeAsNil() { - yyv4907[yyj4907] = ResourceQuota{} - } else { - yyv4908 := &yyv4907[yyj4907] - yyv4908.CodecDecodeSelf(d) - } - - } - if yyrt4907 { - for ; yyj4907 < yyl4907; yyj4907++ { - yyv4907 = append(yyv4907, ResourceQuota{}) - yyh4907.ElemContainerState(yyj4907) - if r.TryDecodeAsNil() { - yyv4907[yyj4907] = ResourceQuota{} - } else { - yyv4909 := &yyv4907[yyj4907] - yyv4909.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4907 := 0 - for ; !r.CheckBreak(); yyj4907++ { - - if yyj4907 >= len(yyv4907) { - yyv4907 = append(yyv4907, ResourceQuota{}) // var yyz4907 ResourceQuota - yyc4907 = true - } - yyh4907.ElemContainerState(yyj4907) - if yyj4907 < len(yyv4907) { - if r.TryDecodeAsNil() { - yyv4907[yyj4907] = ResourceQuota{} - } else { - yyv4910 := &yyv4907[yyj4907] - yyv4910.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4907 < len(yyv4907) { - yyv4907 = yyv4907[:yyj4907] - yyc4907 = true - } else if yyj4907 == 0 && yyv4907 == nil { - yyv4907 = []ResourceQuota{} - yyc4907 = true - } - } - yyh4907.End() - if yyc4907 { - *v = yyv4907 - } -} - func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4911, yyv4911 := range v { + for yyk4885, yyv4885 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4912 := z.EncBinary() - _ = yym4912 + yym4886 := z.EncBinary() + _ = yym4886 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4911)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4885)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4911 == nil { + if yyv4885 == nil { r.EncodeNil() } else { - yym4913 := z.EncBinary() - _ = yym4913 + yym4887 := z.EncBinary() + _ = yym4887 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4911)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4885)) } } } @@ -63081,80 +62782,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4914 := *v - yyl4914 := r.ReadMapStart() - yybh4914 := z.DecBasicHandle() - if yyv4914 == nil { - yyrl4914, _ := z.DecInferLen(yyl4914, yybh4914.MaxInitLen, 40) - yyv4914 = make(map[string][]uint8, yyrl4914) - *v = yyv4914 + yyv4888 := *v + yyl4888 := r.ReadMapStart() + yybh4888 := z.DecBasicHandle() + if yyv4888 == nil { + yyrl4888, _ := z.DecInferLen(yyl4888, yybh4888.MaxInitLen, 40) + yyv4888 = make(map[string][]uint8, yyrl4888) + *v = yyv4888 } - var yymk4914 string - var yymv4914 []uint8 - var yymg4914 bool - if yybh4914.MapValueReset { - yymg4914 = true + var yymk4888 string + var yymv4888 []uint8 + var yymg4888 bool + if yybh4888.MapValueReset { + yymg4888 = true } - if yyl4914 > 0 { - for yyj4914 := 0; yyj4914 < yyl4914; yyj4914++ { + if yyl4888 > 0 { + for yyj4888 := 0; yyj4888 < yyl4888; yyj4888++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4914 = "" + yymk4888 = "" } else { - yymk4914 = string(r.DecodeString()) + yymk4888 = string(r.DecodeString()) } - if yymg4914 { - yymv4914 = yyv4914[yymk4914] + if yymg4888 { + yymv4888 = yyv4888[yymk4888] } else { - yymv4914 = nil + yymv4888 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4914 = nil + yymv4888 = nil } else { - yyv4916 := &yymv4914 - yym4917 := z.DecBinary() - _ = yym4917 + yyv4890 := &yymv4888 + yym4891 := z.DecBinary() + _ = yym4891 if false { } else { - *yyv4916 = r.DecodeBytes(*(*[]byte)(yyv4916), false, false) + *yyv4890 = r.DecodeBytes(*(*[]byte)(yyv4890), false, false) } } - if yyv4914 != nil { - yyv4914[yymk4914] = yymv4914 + if yyv4888 != nil { + yyv4888[yymk4888] = yymv4888 } } - } else if yyl4914 < 0 { - for yyj4914 := 0; !r.CheckBreak(); yyj4914++ { + } else if yyl4888 < 0 { + for yyj4888 := 0; !r.CheckBreak(); yyj4888++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4914 = "" + yymk4888 = "" } else { - yymk4914 = string(r.DecodeString()) + yymk4888 = string(r.DecodeString()) } - if yymg4914 { - yymv4914 = yyv4914[yymk4914] + if yymg4888 { + yymv4888 = yyv4888[yymk4888] } else { - yymv4914 = nil + yymv4888 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4914 = nil + yymv4888 = nil } else { - yyv4919 := &yymv4914 - yym4920 := z.DecBinary() - _ = yym4920 + yyv4893 := &yymv4888 + yym4894 := z.DecBinary() + _ = yym4894 if false { } else { - *yyv4919 = r.DecodeBytes(*(*[]byte)(yyv4919), false, false) + *yyv4893 = r.DecodeBytes(*(*[]byte)(yyv4893), false, false) } } - if yyv4914 != nil { - yyv4914[yymk4914] = yymv4914 + if yyv4888 != nil { + yyv4888[yymk4888] = yymv4888 } } } // else len==0: TODO: Should we clear map entries? @@ -63166,10 +62867,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4921 := range v { + for _, yyv4895 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4922 := &yyv4921 - yy4922.CodecEncodeSelf(e) + yy4896 := &yyv4895 + yy4896.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -63179,83 +62880,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4923 := *v - yyh4923, yyl4923 := z.DecSliceHelperStart() - var yyc4923 bool - if yyl4923 == 0 { - if yyv4923 == nil { - yyv4923 = []Secret{} - yyc4923 = true - } else if len(yyv4923) != 0 { - yyv4923 = yyv4923[:0] - yyc4923 = true + yyv4897 := *v + yyh4897, yyl4897 := z.DecSliceHelperStart() + var yyc4897 bool + if yyl4897 == 0 { + if yyv4897 == nil { + yyv4897 = []Secret{} + yyc4897 = true + } else if len(yyv4897) != 0 { + yyv4897 = yyv4897[:0] + yyc4897 = true } - } else if yyl4923 > 0 { - var yyrr4923, yyrl4923 int - var yyrt4923 bool - if yyl4923 > cap(yyv4923) { + } else if yyl4897 > 0 { + var yyrr4897, yyrl4897 int + var yyrt4897 bool + if yyl4897 > cap(yyv4897) { - yyrg4923 := len(yyv4923) > 0 - yyv24923 := yyv4923 - yyrl4923, yyrt4923 = z.DecInferLen(yyl4923, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4923 { - if yyrl4923 <= cap(yyv4923) { - yyv4923 = yyv4923[:yyrl4923] + yyrg4897 := len(yyv4897) > 0 + yyv24897 := yyv4897 + yyrl4897, yyrt4897 = z.DecInferLen(yyl4897, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4897 { + if yyrl4897 <= cap(yyv4897) { + yyv4897 = yyv4897[:yyrl4897] } else { - yyv4923 = make([]Secret, yyrl4923) + yyv4897 = make([]Secret, yyrl4897) } } else { - yyv4923 = make([]Secret, yyrl4923) + yyv4897 = make([]Secret, yyrl4897) } - yyc4923 = true - yyrr4923 = len(yyv4923) - if yyrg4923 { - copy(yyv4923, yyv24923) + yyc4897 = true + yyrr4897 = len(yyv4897) + if yyrg4897 { + copy(yyv4897, yyv24897) } - } else if yyl4923 != len(yyv4923) { - yyv4923 = yyv4923[:yyl4923] - yyc4923 = true + } else if yyl4897 != len(yyv4897) { + yyv4897 = yyv4897[:yyl4897] + yyc4897 = true } - yyj4923 := 0 - for ; yyj4923 < yyrr4923; yyj4923++ { - yyh4923.ElemContainerState(yyj4923) + yyj4897 := 0 + for ; yyj4897 < yyrr4897; yyj4897++ { + yyh4897.ElemContainerState(yyj4897) if r.TryDecodeAsNil() { - yyv4923[yyj4923] = Secret{} + yyv4897[yyj4897] = Secret{} } else { - yyv4924 := &yyv4923[yyj4923] - yyv4924.CodecDecodeSelf(d) + yyv4898 := &yyv4897[yyj4897] + yyv4898.CodecDecodeSelf(d) } } - if yyrt4923 { - for ; yyj4923 < yyl4923; yyj4923++ { - yyv4923 = append(yyv4923, Secret{}) - yyh4923.ElemContainerState(yyj4923) + if yyrt4897 { + for ; yyj4897 < yyl4897; yyj4897++ { + yyv4897 = append(yyv4897, Secret{}) + yyh4897.ElemContainerState(yyj4897) if r.TryDecodeAsNil() { - yyv4923[yyj4923] = Secret{} + yyv4897[yyj4897] = Secret{} } else { - yyv4925 := &yyv4923[yyj4923] - yyv4925.CodecDecodeSelf(d) + yyv4899 := &yyv4897[yyj4897] + yyv4899.CodecDecodeSelf(d) } } } } else { - yyj4923 := 0 - for ; !r.CheckBreak(); yyj4923++ { + yyj4897 := 0 + for ; !r.CheckBreak(); yyj4897++ { - if yyj4923 >= len(yyv4923) { - yyv4923 = append(yyv4923, Secret{}) // var yyz4923 Secret - yyc4923 = true + if yyj4897 >= len(yyv4897) { + yyv4897 = append(yyv4897, Secret{}) // var yyz4897 Secret + yyc4897 = true } - yyh4923.ElemContainerState(yyj4923) - if yyj4923 < len(yyv4923) { + yyh4897.ElemContainerState(yyj4897) + if yyj4897 < len(yyv4897) { if r.TryDecodeAsNil() { - yyv4923[yyj4923] = Secret{} + yyv4897[yyj4897] = Secret{} } else { - yyv4926 := &yyv4923[yyj4923] - yyv4926.CodecDecodeSelf(d) + yyv4900 := &yyv4897[yyj4897] + yyv4900.CodecDecodeSelf(d) } } else { @@ -63263,17 +62964,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4923 < len(yyv4923) { - yyv4923 = yyv4923[:yyj4923] - yyc4923 = true - } else if yyj4923 == 0 && yyv4923 == nil { - yyv4923 = []Secret{} - yyc4923 = true + if yyj4897 < len(yyv4897) { + yyv4897 = yyv4897[:yyj4897] + yyc4897 = true + } else if yyj4897 == 0 && yyv4897 == nil { + yyv4897 = []Secret{} + yyc4897 = true } } - yyh4923.End() - if yyc4923 { - *v = yyv4923 + yyh4897.End() + if yyc4897 { + *v = yyv4897 } } @@ -63282,10 +62983,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4927 := range v { + for _, yyv4901 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4928 := &yyv4927 - yy4928.CodecEncodeSelf(e) + yy4902 := &yyv4901 + yy4902.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -63295,83 +62996,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4929 := *v - yyh4929, yyl4929 := z.DecSliceHelperStart() - var yyc4929 bool - if yyl4929 == 0 { - if yyv4929 == nil { - yyv4929 = []ConfigMap{} - yyc4929 = true - } else if len(yyv4929) != 0 { - yyv4929 = yyv4929[:0] - yyc4929 = true + yyv4903 := *v + yyh4903, yyl4903 := z.DecSliceHelperStart() + var yyc4903 bool + if yyl4903 == 0 { + if yyv4903 == nil { + yyv4903 = []ConfigMap{} + yyc4903 = true + } else if len(yyv4903) != 0 { + yyv4903 = yyv4903[:0] + yyc4903 = true } - } else if yyl4929 > 0 { - var yyrr4929, yyrl4929 int - var yyrt4929 bool - if yyl4929 > cap(yyv4929) { + } else if yyl4903 > 0 { + var yyrr4903, yyrl4903 int + var yyrt4903 bool + if yyl4903 > cap(yyv4903) { - yyrg4929 := len(yyv4929) > 0 - yyv24929 := yyv4929 - yyrl4929, yyrt4929 = z.DecInferLen(yyl4929, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4929 { - if yyrl4929 <= cap(yyv4929) { - yyv4929 = yyv4929[:yyrl4929] + yyrg4903 := len(yyv4903) > 0 + yyv24903 := yyv4903 + yyrl4903, yyrt4903 = z.DecInferLen(yyl4903, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4903 { + if yyrl4903 <= cap(yyv4903) { + yyv4903 = yyv4903[:yyrl4903] } else { - yyv4929 = make([]ConfigMap, yyrl4929) + yyv4903 = make([]ConfigMap, yyrl4903) } } else { - yyv4929 = make([]ConfigMap, yyrl4929) + yyv4903 = make([]ConfigMap, yyrl4903) } - yyc4929 = true - yyrr4929 = len(yyv4929) - if yyrg4929 { - copy(yyv4929, yyv24929) + yyc4903 = true + yyrr4903 = len(yyv4903) + if yyrg4903 { + copy(yyv4903, yyv24903) } - } else if yyl4929 != len(yyv4929) { - yyv4929 = yyv4929[:yyl4929] - yyc4929 = true + } else if yyl4903 != len(yyv4903) { + yyv4903 = yyv4903[:yyl4903] + yyc4903 = true } - yyj4929 := 0 - for ; yyj4929 < yyrr4929; yyj4929++ { - yyh4929.ElemContainerState(yyj4929) + yyj4903 := 0 + for ; yyj4903 < yyrr4903; yyj4903++ { + yyh4903.ElemContainerState(yyj4903) if r.TryDecodeAsNil() { - yyv4929[yyj4929] = ConfigMap{} + yyv4903[yyj4903] = ConfigMap{} } else { - yyv4930 := &yyv4929[yyj4929] - yyv4930.CodecDecodeSelf(d) + yyv4904 := &yyv4903[yyj4903] + yyv4904.CodecDecodeSelf(d) } } - if yyrt4929 { - for ; yyj4929 < yyl4929; yyj4929++ { - yyv4929 = append(yyv4929, ConfigMap{}) - yyh4929.ElemContainerState(yyj4929) + if yyrt4903 { + for ; yyj4903 < yyl4903; yyj4903++ { + yyv4903 = append(yyv4903, ConfigMap{}) + yyh4903.ElemContainerState(yyj4903) if r.TryDecodeAsNil() { - yyv4929[yyj4929] = ConfigMap{} + yyv4903[yyj4903] = ConfigMap{} } else { - yyv4931 := &yyv4929[yyj4929] - yyv4931.CodecDecodeSelf(d) + yyv4905 := &yyv4903[yyj4903] + yyv4905.CodecDecodeSelf(d) } } } } else { - yyj4929 := 0 - for ; !r.CheckBreak(); yyj4929++ { + yyj4903 := 0 + for ; !r.CheckBreak(); yyj4903++ { - if yyj4929 >= len(yyv4929) { - yyv4929 = append(yyv4929, ConfigMap{}) // var yyz4929 ConfigMap - yyc4929 = true + if yyj4903 >= len(yyv4903) { + yyv4903 = append(yyv4903, ConfigMap{}) // var yyz4903 ConfigMap + yyc4903 = true } - yyh4929.ElemContainerState(yyj4929) - if yyj4929 < len(yyv4929) { + yyh4903.ElemContainerState(yyj4903) + if yyj4903 < len(yyv4903) { if r.TryDecodeAsNil() { - yyv4929[yyj4929] = ConfigMap{} + yyv4903[yyj4903] = ConfigMap{} } else { - yyv4932 := &yyv4929[yyj4929] - yyv4932.CodecDecodeSelf(d) + yyv4906 := &yyv4903[yyj4903] + yyv4906.CodecDecodeSelf(d) } } else { @@ -63379,17 +63080,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4929 < len(yyv4929) { - yyv4929 = yyv4929[:yyj4929] - yyc4929 = true - } else if yyj4929 == 0 && yyv4929 == nil { - yyv4929 = []ConfigMap{} - yyc4929 = true + if yyj4903 < len(yyv4903) { + yyv4903 = yyv4903[:yyj4903] + yyc4903 = true + } else if yyj4903 == 0 && yyv4903 == nil { + yyv4903 = []ConfigMap{} + yyc4903 = true } } - yyh4929.End() - if yyc4929 { - *v = yyv4929 + yyh4903.End() + if yyc4903 { + *v = yyv4903 } } @@ -63398,10 +63099,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4933 := range v { + for _, yyv4907 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4934 := &yyv4933 - yy4934.CodecEncodeSelf(e) + yy4908 := &yyv4907 + yy4908.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -63411,83 +63112,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4935 := *v - yyh4935, yyl4935 := z.DecSliceHelperStart() - var yyc4935 bool - if yyl4935 == 0 { - if yyv4935 == nil { - yyv4935 = []ComponentCondition{} - yyc4935 = true - } else if len(yyv4935) != 0 { - yyv4935 = yyv4935[:0] - yyc4935 = true + yyv4909 := *v + yyh4909, yyl4909 := z.DecSliceHelperStart() + var yyc4909 bool + if yyl4909 == 0 { + if yyv4909 == nil { + yyv4909 = []ComponentCondition{} + yyc4909 = true + } else if len(yyv4909) != 0 { + yyv4909 = yyv4909[:0] + yyc4909 = true } - } else if yyl4935 > 0 { - var yyrr4935, yyrl4935 int - var yyrt4935 bool - if yyl4935 > cap(yyv4935) { + } else if yyl4909 > 0 { + var yyrr4909, yyrl4909 int + var yyrt4909 bool + if yyl4909 > cap(yyv4909) { - yyrg4935 := len(yyv4935) > 0 - yyv24935 := yyv4935 - yyrl4935, yyrt4935 = z.DecInferLen(yyl4935, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4935 { - if yyrl4935 <= cap(yyv4935) { - yyv4935 = yyv4935[:yyrl4935] + yyrg4909 := len(yyv4909) > 0 + yyv24909 := yyv4909 + yyrl4909, yyrt4909 = z.DecInferLen(yyl4909, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4909 { + if yyrl4909 <= cap(yyv4909) { + yyv4909 = yyv4909[:yyrl4909] } else { - yyv4935 = make([]ComponentCondition, yyrl4935) + yyv4909 = make([]ComponentCondition, yyrl4909) } } else { - yyv4935 = make([]ComponentCondition, yyrl4935) + yyv4909 = make([]ComponentCondition, yyrl4909) } - yyc4935 = true - yyrr4935 = len(yyv4935) - if yyrg4935 { - copy(yyv4935, yyv24935) + yyc4909 = true + yyrr4909 = len(yyv4909) + if yyrg4909 { + copy(yyv4909, yyv24909) } - } else if yyl4935 != len(yyv4935) { - yyv4935 = yyv4935[:yyl4935] - yyc4935 = true + } else if yyl4909 != len(yyv4909) { + yyv4909 = yyv4909[:yyl4909] + yyc4909 = true } - yyj4935 := 0 - for ; yyj4935 < yyrr4935; yyj4935++ { - yyh4935.ElemContainerState(yyj4935) + yyj4909 := 0 + for ; yyj4909 < yyrr4909; yyj4909++ { + yyh4909.ElemContainerState(yyj4909) if r.TryDecodeAsNil() { - yyv4935[yyj4935] = ComponentCondition{} + yyv4909[yyj4909] = ComponentCondition{} } else { - yyv4936 := &yyv4935[yyj4935] - yyv4936.CodecDecodeSelf(d) + yyv4910 := &yyv4909[yyj4909] + yyv4910.CodecDecodeSelf(d) } } - if yyrt4935 { - for ; yyj4935 < yyl4935; yyj4935++ { - yyv4935 = append(yyv4935, ComponentCondition{}) - yyh4935.ElemContainerState(yyj4935) + if yyrt4909 { + for ; yyj4909 < yyl4909; yyj4909++ { + yyv4909 = append(yyv4909, ComponentCondition{}) + yyh4909.ElemContainerState(yyj4909) if r.TryDecodeAsNil() { - yyv4935[yyj4935] = ComponentCondition{} + yyv4909[yyj4909] = ComponentCondition{} } else { - yyv4937 := &yyv4935[yyj4935] - yyv4937.CodecDecodeSelf(d) + yyv4911 := &yyv4909[yyj4909] + yyv4911.CodecDecodeSelf(d) } } } } else { - yyj4935 := 0 - for ; !r.CheckBreak(); yyj4935++ { + yyj4909 := 0 + for ; !r.CheckBreak(); yyj4909++ { - if yyj4935 >= len(yyv4935) { - yyv4935 = append(yyv4935, ComponentCondition{}) // var yyz4935 ComponentCondition - yyc4935 = true + if yyj4909 >= len(yyv4909) { + yyv4909 = append(yyv4909, ComponentCondition{}) // var yyz4909 ComponentCondition + yyc4909 = true } - yyh4935.ElemContainerState(yyj4935) - if yyj4935 < len(yyv4935) { + yyh4909.ElemContainerState(yyj4909) + if yyj4909 < len(yyv4909) { if r.TryDecodeAsNil() { - yyv4935[yyj4935] = ComponentCondition{} + yyv4909[yyj4909] = ComponentCondition{} } else { - yyv4938 := &yyv4935[yyj4935] - yyv4938.CodecDecodeSelf(d) + yyv4912 := &yyv4909[yyj4909] + yyv4912.CodecDecodeSelf(d) } } else { @@ -63495,17 +63196,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4935 < len(yyv4935) { - yyv4935 = yyv4935[:yyj4935] - yyc4935 = true - } else if yyj4935 == 0 && yyv4935 == nil { - yyv4935 = []ComponentCondition{} - yyc4935 = true + if yyj4909 < len(yyv4909) { + yyv4909 = yyv4909[:yyj4909] + yyc4909 = true + } else if yyj4909 == 0 && yyv4909 == nil { + yyv4909 = []ComponentCondition{} + yyc4909 = true } } - yyh4935.End() - if yyc4935 { - *v = yyv4935 + yyh4909.End() + if yyc4909 { + *v = yyv4909 } } @@ -63514,10 +63215,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4939 := range v { + for _, yyv4913 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4940 := &yyv4939 - yy4940.CodecEncodeSelf(e) + yy4914 := &yyv4913 + yy4914.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -63527,83 +63228,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4941 := *v - yyh4941, yyl4941 := z.DecSliceHelperStart() - var yyc4941 bool - if yyl4941 == 0 { - if yyv4941 == nil { - yyv4941 = []ComponentStatus{} - yyc4941 = true - } else if len(yyv4941) != 0 { - yyv4941 = yyv4941[:0] - yyc4941 = true + yyv4915 := *v + yyh4915, yyl4915 := z.DecSliceHelperStart() + var yyc4915 bool + if yyl4915 == 0 { + if yyv4915 == nil { + yyv4915 = []ComponentStatus{} + yyc4915 = true + } else if len(yyv4915) != 0 { + yyv4915 = yyv4915[:0] + yyc4915 = true } - } else if yyl4941 > 0 { - var yyrr4941, yyrl4941 int - var yyrt4941 bool - if yyl4941 > cap(yyv4941) { + } else if yyl4915 > 0 { + var yyrr4915, yyrl4915 int + var yyrt4915 bool + if yyl4915 > cap(yyv4915) { - yyrg4941 := len(yyv4941) > 0 - yyv24941 := yyv4941 - yyrl4941, yyrt4941 = z.DecInferLen(yyl4941, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4941 { - if yyrl4941 <= cap(yyv4941) { - yyv4941 = yyv4941[:yyrl4941] + yyrg4915 := len(yyv4915) > 0 + yyv24915 := yyv4915 + yyrl4915, yyrt4915 = z.DecInferLen(yyl4915, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4915 { + if yyrl4915 <= cap(yyv4915) { + yyv4915 = yyv4915[:yyrl4915] } else { - yyv4941 = make([]ComponentStatus, yyrl4941) + yyv4915 = make([]ComponentStatus, yyrl4915) } } else { - yyv4941 = make([]ComponentStatus, yyrl4941) + yyv4915 = make([]ComponentStatus, yyrl4915) } - yyc4941 = true - yyrr4941 = len(yyv4941) - if yyrg4941 { - copy(yyv4941, yyv24941) + yyc4915 = true + yyrr4915 = len(yyv4915) + if yyrg4915 { + copy(yyv4915, yyv24915) } - } else if yyl4941 != len(yyv4941) { - yyv4941 = yyv4941[:yyl4941] - yyc4941 = true + } else if yyl4915 != len(yyv4915) { + yyv4915 = yyv4915[:yyl4915] + yyc4915 = true } - yyj4941 := 0 - for ; yyj4941 < yyrr4941; yyj4941++ { - yyh4941.ElemContainerState(yyj4941) + yyj4915 := 0 + for ; yyj4915 < yyrr4915; yyj4915++ { + yyh4915.ElemContainerState(yyj4915) if r.TryDecodeAsNil() { - yyv4941[yyj4941] = ComponentStatus{} + yyv4915[yyj4915] = ComponentStatus{} } else { - yyv4942 := &yyv4941[yyj4941] - yyv4942.CodecDecodeSelf(d) + yyv4916 := &yyv4915[yyj4915] + yyv4916.CodecDecodeSelf(d) } } - if yyrt4941 { - for ; yyj4941 < yyl4941; yyj4941++ { - yyv4941 = append(yyv4941, ComponentStatus{}) - yyh4941.ElemContainerState(yyj4941) + if yyrt4915 { + for ; yyj4915 < yyl4915; yyj4915++ { + yyv4915 = append(yyv4915, ComponentStatus{}) + yyh4915.ElemContainerState(yyj4915) if r.TryDecodeAsNil() { - yyv4941[yyj4941] = ComponentStatus{} + yyv4915[yyj4915] = ComponentStatus{} } else { - yyv4943 := &yyv4941[yyj4941] - yyv4943.CodecDecodeSelf(d) + yyv4917 := &yyv4915[yyj4915] + yyv4917.CodecDecodeSelf(d) } } } } else { - yyj4941 := 0 - for ; !r.CheckBreak(); yyj4941++ { + yyj4915 := 0 + for ; !r.CheckBreak(); yyj4915++ { - if yyj4941 >= len(yyv4941) { - yyv4941 = append(yyv4941, ComponentStatus{}) // var yyz4941 ComponentStatus - yyc4941 = true + if yyj4915 >= len(yyv4915) { + yyv4915 = append(yyv4915, ComponentStatus{}) // var yyz4915 ComponentStatus + yyc4915 = true } - yyh4941.ElemContainerState(yyj4941) - if yyj4941 < len(yyv4941) { + yyh4915.ElemContainerState(yyj4915) + if yyj4915 < len(yyv4915) { if r.TryDecodeAsNil() { - yyv4941[yyj4941] = ComponentStatus{} + yyv4915[yyj4915] = ComponentStatus{} } else { - yyv4944 := &yyv4941[yyj4941] - yyv4944.CodecDecodeSelf(d) + yyv4918 := &yyv4915[yyj4915] + yyv4918.CodecDecodeSelf(d) } } else { @@ -63611,16 +63312,16 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4941 < len(yyv4941) { - yyv4941 = yyv4941[:yyj4941] - yyc4941 = true - } else if yyj4941 == 0 && yyv4941 == nil { - yyv4941 = []ComponentStatus{} - yyc4941 = true + if yyj4915 < len(yyv4915) { + yyv4915 = yyv4915[:yyj4915] + yyc4915 = true + } else if yyj4915 == 0 && yyv4915 == nil { + yyv4915 = []ComponentStatus{} + yyc4915 = true } } - yyh4941.End() - if yyc4941 { - *v = yyv4941 + yyh4915.End() + if yyc4915 { + *v = yyv4915 } } diff --git a/pkg/api/unversioned/generated.proto b/pkg/api/unversioned/generated.proto index a10e2ddb0a3..c2a6b7c1cbd 100644 --- a/pkg/api/unversioned/generated.proto +++ b/pkg/api/unversioned/generated.proto @@ -109,10 +109,10 @@ message Duration { // ExportOptions is the query options to the standard REST get call. message ExportOptions { - // Should this value be exported. Export strips fields that a user can not specify.` + // Should this value be exported. Export strips fields that a user can not specify. optional bool export = 1; - // Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' + // Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. optional bool exact = 2; } diff --git a/pkg/api/unversioned/types_swagger_doc_generated.go b/pkg/api/unversioned/types_swagger_doc_generated.go index 3f08115a6cf..ad94c265ffa 100644 --- a/pkg/api/unversioned/types_swagger_doc_generated.go +++ b/pkg/api/unversioned/types_swagger_doc_generated.go @@ -81,8 +81,8 @@ func (APIVersions) SwaggerDoc() map[string]string { var map_ExportOptions = map[string]string{ "": "ExportOptions is the query options to the standard REST get call.", - "export": "Should this value be exported. Export strips fields that a user can not specify.`", - "exact": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + "export": "Should this value be exported. Export strips fields that a user can not specify.", + "exact": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", } func (ExportOptions) SwaggerDoc() map[string]string { diff --git a/pkg/api/v1/generated.pb.go b/pkg/api/v1/generated.pb.go index 98821f5b821..3da41ce543a 100644 --- a/pkg/api/v1/generated.pb.go +++ b/pkg/api/v1/generated.pb.go @@ -66,7 +66,6 @@ limitations under the License. EventList EventSource ExecAction - ExportOptions FCVolumeSource FlexVolumeSource FlockerVolumeSource @@ -381,500 +380,496 @@ func (m *ExecAction) Reset() { *m = ExecAction{} } func (*ExecAction) ProtoMessage() {} func (*ExecAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{40} } -func (m *ExportOptions) Reset() { *m = ExportOptions{} } -func (*ExportOptions) ProtoMessage() {} -func (*ExportOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{41} } - func (m *FCVolumeSource) Reset() { *m = FCVolumeSource{} } func (*FCVolumeSource) ProtoMessage() {} -func (*FCVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{42} } +func (*FCVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{41} } func (m *FlexVolumeSource) Reset() { *m = FlexVolumeSource{} } func (*FlexVolumeSource) ProtoMessage() {} -func (*FlexVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{43} } +func (*FlexVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{42} } func (m *FlockerVolumeSource) Reset() { *m = FlockerVolumeSource{} } func (*FlockerVolumeSource) ProtoMessage() {} -func (*FlockerVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{44} } +func (*FlockerVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{43} } func (m *GCEPersistentDiskVolumeSource) Reset() { *m = GCEPersistentDiskVolumeSource{} } func (*GCEPersistentDiskVolumeSource) ProtoMessage() {} func (*GCEPersistentDiskVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{45} + return fileDescriptorGenerated, []int{44} } func (m *GitRepoVolumeSource) Reset() { *m = GitRepoVolumeSource{} } func (*GitRepoVolumeSource) ProtoMessage() {} -func (*GitRepoVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{46} } +func (*GitRepoVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{45} } func (m *GlusterfsVolumeSource) Reset() { *m = GlusterfsVolumeSource{} } func (*GlusterfsVolumeSource) ProtoMessage() {} -func (*GlusterfsVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{47} } +func (*GlusterfsVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{46} } func (m *HTTPGetAction) Reset() { *m = HTTPGetAction{} } func (*HTTPGetAction) ProtoMessage() {} -func (*HTTPGetAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{48} } +func (*HTTPGetAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{47} } func (m *HTTPHeader) Reset() { *m = HTTPHeader{} } func (*HTTPHeader) ProtoMessage() {} -func (*HTTPHeader) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{49} } +func (*HTTPHeader) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{48} } func (m *Handler) Reset() { *m = Handler{} } func (*Handler) ProtoMessage() {} -func (*Handler) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{50} } +func (*Handler) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{49} } func (m *HostPathVolumeSource) Reset() { *m = HostPathVolumeSource{} } func (*HostPathVolumeSource) ProtoMessage() {} -func (*HostPathVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{51} } +func (*HostPathVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{50} } func (m *ISCSIVolumeSource) Reset() { *m = ISCSIVolumeSource{} } func (*ISCSIVolumeSource) ProtoMessage() {} -func (*ISCSIVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{52} } +func (*ISCSIVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{51} } func (m *KeyToPath) Reset() { *m = KeyToPath{} } func (*KeyToPath) ProtoMessage() {} -func (*KeyToPath) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{53} } +func (*KeyToPath) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{52} } func (m *Lifecycle) Reset() { *m = Lifecycle{} } func (*Lifecycle) ProtoMessage() {} -func (*Lifecycle) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{54} } +func (*Lifecycle) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{53} } func (m *LimitRange) Reset() { *m = LimitRange{} } func (*LimitRange) ProtoMessage() {} -func (*LimitRange) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{55} } +func (*LimitRange) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{54} } func (m *LimitRangeItem) Reset() { *m = LimitRangeItem{} } func (*LimitRangeItem) ProtoMessage() {} -func (*LimitRangeItem) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{56} } +func (*LimitRangeItem) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{55} } func (m *LimitRangeList) Reset() { *m = LimitRangeList{} } func (*LimitRangeList) ProtoMessage() {} -func (*LimitRangeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{57} } +func (*LimitRangeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{56} } func (m *LimitRangeSpec) Reset() { *m = LimitRangeSpec{} } func (*LimitRangeSpec) ProtoMessage() {} -func (*LimitRangeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{58} } +func (*LimitRangeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{57} } func (m *List) Reset() { *m = List{} } func (*List) ProtoMessage() {} -func (*List) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{59} } +func (*List) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{58} } func (m *ListOptions) Reset() { *m = ListOptions{} } func (*ListOptions) ProtoMessage() {} -func (*ListOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{60} } +func (*ListOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{59} } func (m *LoadBalancerIngress) Reset() { *m = LoadBalancerIngress{} } func (*LoadBalancerIngress) ProtoMessage() {} -func (*LoadBalancerIngress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{61} } +func (*LoadBalancerIngress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{60} } func (m *LoadBalancerStatus) Reset() { *m = LoadBalancerStatus{} } func (*LoadBalancerStatus) ProtoMessage() {} -func (*LoadBalancerStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{62} } +func (*LoadBalancerStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{61} } func (m *LocalObjectReference) Reset() { *m = LocalObjectReference{} } func (*LocalObjectReference) ProtoMessage() {} -func (*LocalObjectReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{63} } +func (*LocalObjectReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{62} } func (m *NFSVolumeSource) Reset() { *m = NFSVolumeSource{} } func (*NFSVolumeSource) ProtoMessage() {} -func (*NFSVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{64} } +func (*NFSVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{63} } func (m *Namespace) Reset() { *m = Namespace{} } func (*Namespace) ProtoMessage() {} -func (*Namespace) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{65} } +func (*Namespace) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{64} } func (m *NamespaceList) Reset() { *m = NamespaceList{} } func (*NamespaceList) ProtoMessage() {} -func (*NamespaceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{66} } +func (*NamespaceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{65} } func (m *NamespaceSpec) Reset() { *m = NamespaceSpec{} } func (*NamespaceSpec) ProtoMessage() {} -func (*NamespaceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{67} } +func (*NamespaceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{66} } func (m *NamespaceStatus) Reset() { *m = NamespaceStatus{} } func (*NamespaceStatus) ProtoMessage() {} -func (*NamespaceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{68} } +func (*NamespaceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{67} } func (m *Node) Reset() { *m = Node{} } func (*Node) ProtoMessage() {} -func (*Node) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{69} } +func (*Node) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{68} } func (m *NodeAddress) Reset() { *m = NodeAddress{} } func (*NodeAddress) ProtoMessage() {} -func (*NodeAddress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{70} } +func (*NodeAddress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{69} } func (m *NodeAffinity) Reset() { *m = NodeAffinity{} } func (*NodeAffinity) ProtoMessage() {} -func (*NodeAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{71} } +func (*NodeAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{70} } func (m *NodeCondition) Reset() { *m = NodeCondition{} } func (*NodeCondition) ProtoMessage() {} -func (*NodeCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{72} } +func (*NodeCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{71} } func (m *NodeDaemonEndpoints) Reset() { *m = NodeDaemonEndpoints{} } func (*NodeDaemonEndpoints) ProtoMessage() {} -func (*NodeDaemonEndpoints) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{73} } +func (*NodeDaemonEndpoints) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{72} } func (m *NodeList) Reset() { *m = NodeList{} } func (*NodeList) ProtoMessage() {} -func (*NodeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{74} } +func (*NodeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{73} } func (m *NodeProxyOptions) Reset() { *m = NodeProxyOptions{} } func (*NodeProxyOptions) ProtoMessage() {} -func (*NodeProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{75} } +func (*NodeProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{74} } func (m *NodeResources) Reset() { *m = NodeResources{} } func (*NodeResources) ProtoMessage() {} -func (*NodeResources) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{76} } +func (*NodeResources) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{75} } func (m *NodeSelector) Reset() { *m = NodeSelector{} } func (*NodeSelector) ProtoMessage() {} -func (*NodeSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{77} } +func (*NodeSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{76} } func (m *NodeSelectorRequirement) Reset() { *m = NodeSelectorRequirement{} } func (*NodeSelectorRequirement) ProtoMessage() {} func (*NodeSelectorRequirement) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{78} + return fileDescriptorGenerated, []int{77} } func (m *NodeSelectorTerm) Reset() { *m = NodeSelectorTerm{} } func (*NodeSelectorTerm) ProtoMessage() {} -func (*NodeSelectorTerm) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{79} } +func (*NodeSelectorTerm) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{78} } func (m *NodeSpec) Reset() { *m = NodeSpec{} } func (*NodeSpec) ProtoMessage() {} -func (*NodeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{80} } +func (*NodeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{79} } func (m *NodeStatus) Reset() { *m = NodeStatus{} } func (*NodeStatus) ProtoMessage() {} -func (*NodeStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{81} } +func (*NodeStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{80} } func (m *NodeSystemInfo) Reset() { *m = NodeSystemInfo{} } func (*NodeSystemInfo) ProtoMessage() {} -func (*NodeSystemInfo) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{82} } +func (*NodeSystemInfo) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{81} } func (m *ObjectFieldSelector) Reset() { *m = ObjectFieldSelector{} } func (*ObjectFieldSelector) ProtoMessage() {} -func (*ObjectFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{83} } +func (*ObjectFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{82} } func (m *ObjectMeta) Reset() { *m = ObjectMeta{} } func (*ObjectMeta) ProtoMessage() {} -func (*ObjectMeta) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{84} } +func (*ObjectMeta) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{83} } func (m *ObjectReference) Reset() { *m = ObjectReference{} } func (*ObjectReference) ProtoMessage() {} -func (*ObjectReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{85} } +func (*ObjectReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{84} } func (m *OwnerReference) Reset() { *m = OwnerReference{} } func (*OwnerReference) ProtoMessage() {} -func (*OwnerReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{86} } +func (*OwnerReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{85} } func (m *PersistentVolume) Reset() { *m = PersistentVolume{} } func (*PersistentVolume) ProtoMessage() {} -func (*PersistentVolume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{87} } +func (*PersistentVolume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{86} } func (m *PersistentVolumeClaim) Reset() { *m = PersistentVolumeClaim{} } func (*PersistentVolumeClaim) ProtoMessage() {} -func (*PersistentVolumeClaim) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{88} } +func (*PersistentVolumeClaim) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{87} } func (m *PersistentVolumeClaimList) Reset() { *m = PersistentVolumeClaimList{} } func (*PersistentVolumeClaimList) ProtoMessage() {} func (*PersistentVolumeClaimList) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{89} + return fileDescriptorGenerated, []int{88} } func (m *PersistentVolumeClaimSpec) Reset() { *m = PersistentVolumeClaimSpec{} } func (*PersistentVolumeClaimSpec) ProtoMessage() {} func (*PersistentVolumeClaimSpec) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{90} + return fileDescriptorGenerated, []int{89} } func (m *PersistentVolumeClaimStatus) Reset() { *m = PersistentVolumeClaimStatus{} } func (*PersistentVolumeClaimStatus) ProtoMessage() {} func (*PersistentVolumeClaimStatus) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{91} + return fileDescriptorGenerated, []int{90} } func (m *PersistentVolumeClaimVolumeSource) Reset() { *m = PersistentVolumeClaimVolumeSource{} } func (*PersistentVolumeClaimVolumeSource) ProtoMessage() {} func (*PersistentVolumeClaimVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{92} + return fileDescriptorGenerated, []int{91} } func (m *PersistentVolumeList) Reset() { *m = PersistentVolumeList{} } func (*PersistentVolumeList) ProtoMessage() {} -func (*PersistentVolumeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{93} } +func (*PersistentVolumeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{92} } func (m *PersistentVolumeSource) Reset() { *m = PersistentVolumeSource{} } func (*PersistentVolumeSource) ProtoMessage() {} -func (*PersistentVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{94} } +func (*PersistentVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{93} } func (m *PersistentVolumeSpec) Reset() { *m = PersistentVolumeSpec{} } func (*PersistentVolumeSpec) ProtoMessage() {} -func (*PersistentVolumeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{95} } +func (*PersistentVolumeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{94} } func (m *PersistentVolumeStatus) Reset() { *m = PersistentVolumeStatus{} } func (*PersistentVolumeStatus) ProtoMessage() {} -func (*PersistentVolumeStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{96} } +func (*PersistentVolumeStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{95} } func (m *PhotonPersistentDiskVolumeSource) Reset() { *m = PhotonPersistentDiskVolumeSource{} } func (*PhotonPersistentDiskVolumeSource) ProtoMessage() {} func (*PhotonPersistentDiskVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{97} + return fileDescriptorGenerated, []int{96} } func (m *Pod) Reset() { *m = Pod{} } func (*Pod) ProtoMessage() {} -func (*Pod) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{98} } +func (*Pod) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{97} } func (m *PodAffinity) Reset() { *m = PodAffinity{} } func (*PodAffinity) ProtoMessage() {} -func (*PodAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{99} } +func (*PodAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{98} } func (m *PodAffinityTerm) Reset() { *m = PodAffinityTerm{} } func (*PodAffinityTerm) ProtoMessage() {} -func (*PodAffinityTerm) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{100} } +func (*PodAffinityTerm) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{99} } func (m *PodAntiAffinity) Reset() { *m = PodAntiAffinity{} } func (*PodAntiAffinity) ProtoMessage() {} -func (*PodAntiAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{101} } +func (*PodAntiAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{100} } func (m *PodAttachOptions) Reset() { *m = PodAttachOptions{} } func (*PodAttachOptions) ProtoMessage() {} -func (*PodAttachOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{102} } +func (*PodAttachOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{101} } func (m *PodCondition) Reset() { *m = PodCondition{} } func (*PodCondition) ProtoMessage() {} -func (*PodCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{103} } +func (*PodCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{102} } func (m *PodExecOptions) Reset() { *m = PodExecOptions{} } func (*PodExecOptions) ProtoMessage() {} -func (*PodExecOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{104} } +func (*PodExecOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{103} } func (m *PodList) Reset() { *m = PodList{} } func (*PodList) ProtoMessage() {} -func (*PodList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{105} } +func (*PodList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{104} } func (m *PodLogOptions) Reset() { *m = PodLogOptions{} } func (*PodLogOptions) ProtoMessage() {} -func (*PodLogOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{106} } +func (*PodLogOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{105} } func (m *PodProxyOptions) Reset() { *m = PodProxyOptions{} } func (*PodProxyOptions) ProtoMessage() {} -func (*PodProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{107} } +func (*PodProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{106} } func (m *PodSecurityContext) Reset() { *m = PodSecurityContext{} } func (*PodSecurityContext) ProtoMessage() {} -func (*PodSecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{108} } +func (*PodSecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{107} } func (m *PodSignature) Reset() { *m = PodSignature{} } func (*PodSignature) ProtoMessage() {} -func (*PodSignature) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{109} } +func (*PodSignature) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{108} } func (m *PodSpec) Reset() { *m = PodSpec{} } func (*PodSpec) ProtoMessage() {} -func (*PodSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{110} } +func (*PodSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{109} } func (m *PodStatus) Reset() { *m = PodStatus{} } func (*PodStatus) ProtoMessage() {} -func (*PodStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{111} } +func (*PodStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{110} } func (m *PodStatusResult) Reset() { *m = PodStatusResult{} } func (*PodStatusResult) ProtoMessage() {} -func (*PodStatusResult) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{112} } +func (*PodStatusResult) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{111} } func (m *PodTemplate) Reset() { *m = PodTemplate{} } func (*PodTemplate) ProtoMessage() {} -func (*PodTemplate) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{113} } +func (*PodTemplate) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{112} } func (m *PodTemplateList) Reset() { *m = PodTemplateList{} } func (*PodTemplateList) ProtoMessage() {} -func (*PodTemplateList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{114} } +func (*PodTemplateList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{113} } func (m *PodTemplateSpec) Reset() { *m = PodTemplateSpec{} } func (*PodTemplateSpec) ProtoMessage() {} -func (*PodTemplateSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{115} } +func (*PodTemplateSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{114} } func (m *Preconditions) Reset() { *m = Preconditions{} } func (*Preconditions) ProtoMessage() {} -func (*Preconditions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{116} } +func (*Preconditions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{115} } func (m *PreferAvoidPodsEntry) Reset() { *m = PreferAvoidPodsEntry{} } func (*PreferAvoidPodsEntry) ProtoMessage() {} -func (*PreferAvoidPodsEntry) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{117} } +func (*PreferAvoidPodsEntry) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{116} } func (m *PreferredSchedulingTerm) Reset() { *m = PreferredSchedulingTerm{} } func (*PreferredSchedulingTerm) ProtoMessage() {} func (*PreferredSchedulingTerm) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{118} + return fileDescriptorGenerated, []int{117} } func (m *Probe) Reset() { *m = Probe{} } func (*Probe) ProtoMessage() {} -func (*Probe) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{119} } +func (*Probe) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{118} } func (m *QuobyteVolumeSource) Reset() { *m = QuobyteVolumeSource{} } func (*QuobyteVolumeSource) ProtoMessage() {} -func (*QuobyteVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{120} } +func (*QuobyteVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{119} } func (m *RBDVolumeSource) Reset() { *m = RBDVolumeSource{} } func (*RBDVolumeSource) ProtoMessage() {} -func (*RBDVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{121} } +func (*RBDVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{120} } func (m *RangeAllocation) Reset() { *m = RangeAllocation{} } func (*RangeAllocation) ProtoMessage() {} -func (*RangeAllocation) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{122} } +func (*RangeAllocation) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{121} } func (m *ReplicationController) Reset() { *m = ReplicationController{} } func (*ReplicationController) ProtoMessage() {} -func (*ReplicationController) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{123} } +func (*ReplicationController) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{122} } func (m *ReplicationControllerCondition) Reset() { *m = ReplicationControllerCondition{} } func (*ReplicationControllerCondition) ProtoMessage() {} func (*ReplicationControllerCondition) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{124} + return fileDescriptorGenerated, []int{123} } func (m *ReplicationControllerList) Reset() { *m = ReplicationControllerList{} } func (*ReplicationControllerList) ProtoMessage() {} func (*ReplicationControllerList) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{125} + return fileDescriptorGenerated, []int{124} } func (m *ReplicationControllerSpec) Reset() { *m = ReplicationControllerSpec{} } func (*ReplicationControllerSpec) ProtoMessage() {} func (*ReplicationControllerSpec) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{126} + return fileDescriptorGenerated, []int{125} } func (m *ReplicationControllerStatus) Reset() { *m = ReplicationControllerStatus{} } func (*ReplicationControllerStatus) ProtoMessage() {} func (*ReplicationControllerStatus) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{127} + return fileDescriptorGenerated, []int{126} } func (m *ResourceFieldSelector) Reset() { *m = ResourceFieldSelector{} } func (*ResourceFieldSelector) ProtoMessage() {} -func (*ResourceFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{128} } +func (*ResourceFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{127} } func (m *ResourceQuota) Reset() { *m = ResourceQuota{} } func (*ResourceQuota) ProtoMessage() {} -func (*ResourceQuota) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{129} } +func (*ResourceQuota) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{128} } func (m *ResourceQuotaList) Reset() { *m = ResourceQuotaList{} } func (*ResourceQuotaList) ProtoMessage() {} -func (*ResourceQuotaList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{130} } +func (*ResourceQuotaList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{129} } func (m *ResourceQuotaSpec) Reset() { *m = ResourceQuotaSpec{} } func (*ResourceQuotaSpec) ProtoMessage() {} -func (*ResourceQuotaSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{131} } +func (*ResourceQuotaSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{130} } func (m *ResourceQuotaStatus) Reset() { *m = ResourceQuotaStatus{} } func (*ResourceQuotaStatus) ProtoMessage() {} -func (*ResourceQuotaStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{132} } +func (*ResourceQuotaStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{131} } func (m *ResourceRequirements) Reset() { *m = ResourceRequirements{} } func (*ResourceRequirements) ProtoMessage() {} -func (*ResourceRequirements) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{133} } +func (*ResourceRequirements) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{132} } func (m *SELinuxOptions) Reset() { *m = SELinuxOptions{} } func (*SELinuxOptions) ProtoMessage() {} -func (*SELinuxOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{134} } +func (*SELinuxOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{133} } func (m *Secret) Reset() { *m = Secret{} } func (*Secret) ProtoMessage() {} -func (*Secret) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{135} } +func (*Secret) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{134} } func (m *SecretKeySelector) Reset() { *m = SecretKeySelector{} } func (*SecretKeySelector) ProtoMessage() {} -func (*SecretKeySelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{136} } +func (*SecretKeySelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{135} } func (m *SecretList) Reset() { *m = SecretList{} } func (*SecretList) ProtoMessage() {} -func (*SecretList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{137} } +func (*SecretList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{136} } func (m *SecretVolumeSource) Reset() { *m = SecretVolumeSource{} } func (*SecretVolumeSource) ProtoMessage() {} -func (*SecretVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{138} } +func (*SecretVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{137} } func (m *SecurityContext) Reset() { *m = SecurityContext{} } func (*SecurityContext) ProtoMessage() {} -func (*SecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{139} } +func (*SecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{138} } func (m *SerializedReference) Reset() { *m = SerializedReference{} } func (*SerializedReference) ProtoMessage() {} -func (*SerializedReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{140} } +func (*SerializedReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{139} } func (m *Service) Reset() { *m = Service{} } func (*Service) ProtoMessage() {} -func (*Service) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{141} } +func (*Service) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{140} } func (m *ServiceAccount) Reset() { *m = ServiceAccount{} } func (*ServiceAccount) ProtoMessage() {} -func (*ServiceAccount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{142} } +func (*ServiceAccount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{141} } func (m *ServiceAccountList) Reset() { *m = ServiceAccountList{} } func (*ServiceAccountList) ProtoMessage() {} -func (*ServiceAccountList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{143} } +func (*ServiceAccountList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{142} } func (m *ServiceList) Reset() { *m = ServiceList{} } func (*ServiceList) ProtoMessage() {} -func (*ServiceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{144} } +func (*ServiceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{143} } func (m *ServicePort) Reset() { *m = ServicePort{} } func (*ServicePort) ProtoMessage() {} -func (*ServicePort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{145} } +func (*ServicePort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{144} } func (m *ServiceProxyOptions) Reset() { *m = ServiceProxyOptions{} } func (*ServiceProxyOptions) ProtoMessage() {} -func (*ServiceProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{146} } +func (*ServiceProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{145} } func (m *ServiceSpec) Reset() { *m = ServiceSpec{} } func (*ServiceSpec) ProtoMessage() {} -func (*ServiceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{147} } +func (*ServiceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{146} } func (m *ServiceStatus) Reset() { *m = ServiceStatus{} } func (*ServiceStatus) ProtoMessage() {} -func (*ServiceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{148} } +func (*ServiceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{147} } func (m *Sysctl) Reset() { *m = Sysctl{} } func (*Sysctl) ProtoMessage() {} -func (*Sysctl) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{149} } +func (*Sysctl) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{148} } func (m *TCPSocketAction) Reset() { *m = TCPSocketAction{} } func (*TCPSocketAction) ProtoMessage() {} -func (*TCPSocketAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{150} } +func (*TCPSocketAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{149} } func (m *Taint) Reset() { *m = Taint{} } func (*Taint) ProtoMessage() {} -func (*Taint) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{151} } +func (*Taint) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{150} } func (m *Toleration) Reset() { *m = Toleration{} } func (*Toleration) ProtoMessage() {} -func (*Toleration) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{152} } +func (*Toleration) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{151} } func (m *Volume) Reset() { *m = Volume{} } func (*Volume) ProtoMessage() {} -func (*Volume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{153} } +func (*Volume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{152} } func (m *VolumeMount) Reset() { *m = VolumeMount{} } func (*VolumeMount) ProtoMessage() {} -func (*VolumeMount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{154} } +func (*VolumeMount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{153} } func (m *VolumeSource) Reset() { *m = VolumeSource{} } func (*VolumeSource) ProtoMessage() {} -func (*VolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{155} } +func (*VolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{154} } func (m *VsphereVirtualDiskVolumeSource) Reset() { *m = VsphereVirtualDiskVolumeSource{} } func (*VsphereVirtualDiskVolumeSource) ProtoMessage() {} func (*VsphereVirtualDiskVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{156} + return fileDescriptorGenerated, []int{155} } func (m *WeightedPodAffinityTerm) Reset() { *m = WeightedPodAffinityTerm{} } func (*WeightedPodAffinityTerm) ProtoMessage() {} func (*WeightedPodAffinityTerm) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{157} + return fileDescriptorGenerated, []int{156} } func init() { @@ -919,7 +914,6 @@ func init() { proto.RegisterType((*EventList)(nil), "k8s.io.kubernetes.pkg.api.v1.EventList") proto.RegisterType((*EventSource)(nil), "k8s.io.kubernetes.pkg.api.v1.EventSource") proto.RegisterType((*ExecAction)(nil), "k8s.io.kubernetes.pkg.api.v1.ExecAction") - proto.RegisterType((*ExportOptions)(nil), "k8s.io.kubernetes.pkg.api.v1.ExportOptions") proto.RegisterType((*FCVolumeSource)(nil), "k8s.io.kubernetes.pkg.api.v1.FCVolumeSource") proto.RegisterType((*FlexVolumeSource)(nil), "k8s.io.kubernetes.pkg.api.v1.FlexVolumeSource") proto.RegisterType((*FlockerVolumeSource)(nil), "k8s.io.kubernetes.pkg.api.v1.FlockerVolumeSource") @@ -2803,40 +2797,6 @@ func (m *ExecAction) MarshalTo(data []byte) (int, error) { return i, nil } -func (m *ExportOptions) 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 *ExportOptions) MarshalTo(data []byte) (int, error) { - var i int - _ = i - var l int - _ = l - data[i] = 0x8 - i++ - if m.Export { - data[i] = 1 - } else { - data[i] = 0 - } - i++ - data[i] = 0x10 - i++ - if m.Exact { - data[i] = 1 - } else { - data[i] = 0 - } - i++ - return i, nil -} - func (m *FCVolumeSource) Marshal() (data []byte, err error) { size := m.Size() data = make([]byte, size) @@ -8974,14 +8934,6 @@ func (m *ExecAction) Size() (n int) { return n } -func (m *ExportOptions) Size() (n int) { - var l int - _ = l - n += 2 - n += 2 - return n -} - func (m *FCVolumeSource) Size() (n int) { var l int _ = l @@ -11535,17 +11487,6 @@ func (this *ExecAction) String() string { }, "") return s } -func (this *ExportOptions) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&ExportOptions{`, - `Export:` + fmt.Sprintf("%v", this.Export) + `,`, - `Exact:` + fmt.Sprintf("%v", this.Exact) + `,`, - `}`, - }, "") - return s -} func (this *FCVolumeSource) String() string { if this == nil { return "nil" @@ -19360,96 +19301,6 @@ func (m *ExecAction) Unmarshal(data []byte) error { } return nil } -func (m *ExportOptions) 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: ExportOptions: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ExportOptions: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Export", wireType) - } - var v int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - v |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - m.Export = bool(v != 0) - case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Exact", wireType) - } - var v int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - v |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - m.Exact = bool(v != 0) - 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 *FCVolumeSource) Unmarshal(data []byte) error { l := len(data) iNdEx := 0 @@ -39561,635 +39412,632 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 10068 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x8c, 0x24, 0xc7, - 0x75, 0x98, 0x7a, 0x66, 0xbf, 0xe6, 0xed, 0xe7, 0xd5, 0x7d, 0x70, 0xb9, 0x22, 0x6f, 0x4f, 0x4d, - 0xf1, 0x74, 0x24, 0x8f, 0x7b, 0xba, 0x23, 0x29, 0x52, 0x22, 0x43, 0x69, 0x77, 0x67, 0xf7, 0x6e, - 0x75, 0xb7, 0x77, 0xc3, 0x9a, 0x3d, 0x1e, 0x25, 0x31, 0xa4, 0x7a, 0xa7, 0x6b, 0x77, 0x5b, 0xd7, - 0xdb, 0x3d, 0xec, 0xee, 0xd9, 0xbb, 0x95, 0x62, 0xc0, 0x91, 0x19, 0x1b, 0x81, 0x05, 0x47, 0x41, - 0x22, 0x24, 0x40, 0x12, 0x44, 0x09, 0x90, 0xc0, 0x89, 0x11, 0xc7, 0x72, 0x14, 0x5b, 0x4a, 0x04, - 0x21, 0x40, 0x1c, 0x41, 0xf9, 0x70, 0x20, 0x03, 0x46, 0x6c, 0xd8, 0xc0, 0xc6, 0x5c, 0x23, 0xc8, - 0x8f, 0xfc, 0x48, 0x80, 0xfc, 0xca, 0xc1, 0x48, 0x82, 0xfa, 0xec, 0xaa, 0x9e, 0x9e, 0xed, 0x9e, - 0xe5, 0xed, 0xfa, 0x64, 0xf8, 0xdf, 0xcc, 0x7b, 0xaf, 0x5e, 0x7d, 0xf4, 0xab, 0x57, 0xaf, 0x5e, - 0xbd, 0x7a, 0x05, 0x17, 0xef, 0xbe, 0x12, 0xcf, 0x79, 0xe1, 0xa5, 0xbb, 0x9d, 0x75, 0x12, 0x05, - 0x24, 0x21, 0xf1, 0xa5, 0xf6, 0xdd, 0xcd, 0x4b, 0x4e, 0xdb, 0xbb, 0xb4, 0x73, 0xf9, 0xd2, 0x26, - 0x09, 0x48, 0xe4, 0x24, 0xc4, 0x9d, 0x6b, 0x47, 0x61, 0x12, 0xa2, 0x27, 0x38, 0xf5, 0x5c, 0x4a, - 0x3d, 0xd7, 0xbe, 0xbb, 0x39, 0xe7, 0xb4, 0xbd, 0xb9, 0x9d, 0xcb, 0x33, 0xcf, 0x6f, 0x7a, 0xc9, - 0x56, 0x67, 0x7d, 0xae, 0x15, 0x6e, 0x5f, 0xda, 0x0c, 0x37, 0xc3, 0x4b, 0xac, 0xd0, 0x7a, 0x67, - 0x83, 0xfd, 0x63, 0x7f, 0xd8, 0x2f, 0xce, 0x6c, 0xe6, 0x4a, 0xef, 0xaa, 0x23, 0x12, 0x87, 0x9d, - 0xa8, 0x45, 0xb2, 0x0d, 0x98, 0x79, 0xa9, 0x77, 0x99, 0x4e, 0xb0, 0x43, 0xa2, 0xd8, 0x0b, 0x03, - 0xe2, 0x76, 0x15, 0x7b, 0x3e, 0xbf, 0x58, 0xd4, 0x09, 0x12, 0x6f, 0xbb, 0xbb, 0x96, 0x17, 0x0f, - 0x26, 0x8f, 0x5b, 0x5b, 0x64, 0xdb, 0xe9, 0x2a, 0x75, 0x39, 0xbf, 0x54, 0x27, 0xf1, 0xfc, 0x4b, - 0x5e, 0x90, 0xc4, 0x49, 0x94, 0x2d, 0x62, 0xff, 0x9e, 0x05, 0xe7, 0xe6, 0xef, 0x34, 0x97, 0x7c, - 0x27, 0x4e, 0xbc, 0xd6, 0x82, 0x1f, 0xb6, 0xee, 0x36, 0x93, 0x30, 0x22, 0x6f, 0x86, 0x7e, 0x67, - 0x9b, 0x34, 0xd9, 0x18, 0xa0, 0x8b, 0x30, 0xb2, 0xc3, 0xfe, 0xaf, 0xd4, 0xa7, 0xad, 0x73, 0xd6, - 0x85, 0xda, 0xc2, 0xd4, 0x8f, 0xf7, 0x66, 0x3f, 0xb2, 0xbf, 0x37, 0x3b, 0xf2, 0xa6, 0x80, 0x63, - 0x45, 0x81, 0xce, 0xc3, 0xd0, 0x46, 0xbc, 0xb6, 0xdb, 0x26, 0xd3, 0x15, 0x46, 0x3b, 0x21, 0x68, - 0x87, 0x96, 0x9b, 0x14, 0x8a, 0x05, 0x16, 0x5d, 0x82, 0x5a, 0xdb, 0x89, 0x12, 0x2f, 0xf1, 0xc2, - 0x60, 0xba, 0x7a, 0xce, 0xba, 0x30, 0xb8, 0x70, 0x42, 0x90, 0xd6, 0x1a, 0x12, 0x81, 0x53, 0x1a, - 0xda, 0x8c, 0x88, 0x38, 0xee, 0xad, 0xc0, 0xdf, 0x9d, 0x1e, 0x38, 0x67, 0x5d, 0x18, 0x49, 0x9b, - 0x81, 0x05, 0x1c, 0x2b, 0x0a, 0xfb, 0x7b, 0x15, 0x18, 0x99, 0xdf, 0xd8, 0xf0, 0x02, 0x2f, 0xd9, - 0x45, 0x5f, 0x86, 0xb1, 0x20, 0x74, 0x89, 0xfc, 0xcf, 0x7a, 0x31, 0x7a, 0xe5, 0xd9, 0xb9, 0x83, - 0xa4, 0x69, 0xee, 0xa6, 0x56, 0x62, 0x61, 0x6a, 0x7f, 0x6f, 0x76, 0x4c, 0x87, 0x60, 0x83, 0x23, - 0x7a, 0x1b, 0x46, 0xdb, 0xa1, 0xab, 0x2a, 0xa8, 0xb0, 0x0a, 0x9e, 0x39, 0xb8, 0x82, 0x46, 0x5a, - 0x60, 0x61, 0x72, 0x7f, 0x6f, 0x76, 0x54, 0x03, 0x60, 0x9d, 0x1d, 0xf2, 0x61, 0x92, 0xfe, 0x0d, - 0x12, 0x4f, 0xd5, 0x50, 0x65, 0x35, 0x3c, 0x5f, 0x5c, 0x83, 0x56, 0x68, 0xe1, 0xe4, 0xfe, 0xde, - 0xec, 0x64, 0x06, 0x88, 0xb3, 0xac, 0xed, 0xaf, 0xc2, 0xc4, 0x7c, 0x92, 0x38, 0xad, 0x2d, 0xe2, - 0xf2, 0xef, 0x8b, 0x5e, 0x84, 0x81, 0xc0, 0xd9, 0x26, 0xe2, 0xeb, 0x9f, 0x13, 0xc3, 0x3e, 0x70, - 0xd3, 0xd9, 0x26, 0x0f, 0xf6, 0x66, 0xa7, 0x6e, 0x07, 0xde, 0x7b, 0x1d, 0x21, 0x33, 0x14, 0x86, - 0x19, 0x35, 0xba, 0x02, 0xe0, 0x92, 0x1d, 0xaf, 0x45, 0x1a, 0x4e, 0xb2, 0x25, 0xa4, 0x01, 0x89, - 0xb2, 0x50, 0x57, 0x18, 0xac, 0x51, 0xd9, 0x5f, 0xb7, 0xa0, 0x36, 0xbf, 0x13, 0x7a, 0x6e, 0x23, - 0x74, 0x63, 0xd4, 0x81, 0xc9, 0x76, 0x44, 0x36, 0x48, 0xa4, 0x40, 0xd3, 0xd6, 0xb9, 0xea, 0x85, - 0xd1, 0x2b, 0x57, 0x0a, 0xfa, 0x6d, 0x16, 0x5a, 0x0a, 0x92, 0x68, 0x77, 0xe1, 0x31, 0x51, 0xf5, - 0x64, 0x06, 0x8b, 0xb3, 0x75, 0xd8, 0x7f, 0xbd, 0x02, 0xa7, 0xe7, 0xbf, 0xda, 0x89, 0x48, 0xdd, - 0x8b, 0xef, 0x66, 0xa7, 0x82, 0xeb, 0xc5, 0x77, 0x6f, 0xa6, 0x83, 0xa1, 0x64, 0xb0, 0x2e, 0xe0, - 0x58, 0x51, 0xa0, 0xe7, 0x61, 0x98, 0xfe, 0xbe, 0x8d, 0x57, 0x44, 0xef, 0x4f, 0x0a, 0xe2, 0xd1, - 0xba, 0x93, 0x38, 0x75, 0x8e, 0xc2, 0x92, 0x06, 0xad, 0xc2, 0x68, 0xcb, 0x69, 0x6d, 0x79, 0xc1, - 0xe6, 0x6a, 0xe8, 0x12, 0xf6, 0x85, 0x6b, 0x0b, 0xcf, 0x51, 0xf2, 0xc5, 0x14, 0xfc, 0x60, 0x6f, - 0x76, 0x9a, 0xb7, 0x4d, 0xb0, 0xd0, 0x70, 0x58, 0x2f, 0x8f, 0x6c, 0x35, 0x11, 0x07, 0x18, 0x27, - 0xc8, 0x99, 0x84, 0x17, 0xb4, 0x39, 0x35, 0xc8, 0xe6, 0xd4, 0x58, 0x8f, 0xf9, 0xf4, 0x4f, 0x2d, - 0x31, 0x26, 0xcb, 0x9e, 0x6f, 0xaa, 0x87, 0x2b, 0x00, 0x31, 0x69, 0x45, 0x24, 0xd1, 0x46, 0x45, - 0x7d, 0xe6, 0xa6, 0xc2, 0x60, 0x8d, 0x8a, 0x4e, 0xfe, 0x78, 0xcb, 0x89, 0x98, 0xb4, 0x88, 0xb1, - 0x51, 0x93, 0xbf, 0x29, 0x11, 0x38, 0xa5, 0x31, 0x26, 0x7f, 0xb5, 0x70, 0xf2, 0xff, 0x2b, 0x0b, - 0x86, 0x17, 0xbc, 0xc0, 0xf5, 0x82, 0x4d, 0xf4, 0x16, 0x8c, 0x6c, 0x93, 0xc4, 0x71, 0x9d, 0xc4, - 0x11, 0xf3, 0xfe, 0xc2, 0xc1, 0xc2, 0x73, 0x6b, 0xfd, 0x2b, 0xa4, 0x95, 0xac, 0x92, 0xc4, 0x49, - 0xbb, 0x91, 0xc2, 0xb0, 0xe2, 0x86, 0x6e, 0xc3, 0x50, 0xe2, 0x44, 0x9b, 0x24, 0x11, 0xd3, 0xfd, - 0xf9, 0x32, 0x7c, 0x31, 0x15, 0x35, 0x12, 0xb4, 0x48, 0xaa, 0x18, 0xd7, 0x18, 0x13, 0x2c, 0x98, - 0xd9, 0x2d, 0x18, 0x5b, 0x74, 0xda, 0xce, 0xba, 0xe7, 0x7b, 0x89, 0x47, 0x62, 0xf4, 0x09, 0xa8, - 0x3a, 0xae, 0xcb, 0x04, 0xbf, 0xb6, 0x70, 0x7a, 0x7f, 0x6f, 0xb6, 0x3a, 0xef, 0xba, 0x0f, 0xf6, - 0x66, 0x41, 0x51, 0xed, 0x62, 0x4a, 0x81, 0x9e, 0x85, 0x01, 0x37, 0x0a, 0xdb, 0xd3, 0x15, 0x46, - 0x79, 0x86, 0xce, 0xd0, 0x7a, 0x14, 0xb6, 0x33, 0xa4, 0x8c, 0xc6, 0xfe, 0x77, 0x15, 0x40, 0x8b, - 0xa4, 0xbd, 0xb5, 0xdc, 0x34, 0xbe, 0xe5, 0x05, 0x18, 0xd9, 0x0e, 0x03, 0x2f, 0x09, 0xa3, 0x58, - 0x54, 0xc8, 0xe4, 0x61, 0x55, 0xc0, 0xb0, 0xc2, 0xa2, 0x73, 0x30, 0xd0, 0x4e, 0xa7, 0xf5, 0x98, - 0x54, 0x09, 0x6c, 0x42, 0x33, 0x0c, 0xa5, 0xe8, 0xc4, 0x24, 0x12, 0x72, 0xac, 0x28, 0x6e, 0xc7, - 0x24, 0xc2, 0x0c, 0x93, 0x4a, 0x0e, 0x95, 0x29, 0x21, 0xa5, 0x19, 0xc9, 0xa1, 0x18, 0xac, 0x51, - 0xa1, 0x77, 0xa1, 0xc6, 0xff, 0x61, 0xb2, 0xc1, 0x44, 0xb6, 0x50, 0x19, 0xdc, 0x08, 0x5b, 0x8e, - 0x9f, 0x1d, 0xfc, 0x71, 0x26, 0x69, 0x92, 0x11, 0x4e, 0x79, 0x1a, 0x92, 0x36, 0x54, 0x28, 0x69, - 0x7f, 0xdb, 0x02, 0xb4, 0xe8, 0x05, 0x2e, 0x89, 0x8e, 0x61, 0xc9, 0xec, 0x6f, 0x12, 0xfc, 0x21, - 0x6d, 0x5a, 0xb8, 0xdd, 0x0e, 0x03, 0x12, 0x24, 0x8b, 0x61, 0xe0, 0xf2, 0x65, 0xf4, 0x33, 0x30, - 0x90, 0xd0, 0xaa, 0x78, 0xb3, 0xce, 0xcb, 0xcf, 0x42, 0x2b, 0x78, 0xb0, 0x37, 0x7b, 0xa6, 0xbb, - 0x04, 0x6b, 0x02, 0x2b, 0x83, 0x3e, 0x0d, 0x43, 0x71, 0xe2, 0x24, 0x9d, 0x58, 0x34, 0xf4, 0x63, - 0xb2, 0xa1, 0x4d, 0x06, 0x7d, 0xb0, 0x37, 0x3b, 0xa9, 0x8a, 0x71, 0x10, 0x16, 0x05, 0xd0, 0x33, - 0x30, 0xbc, 0x4d, 0xe2, 0xd8, 0xd9, 0x94, 0x8a, 0x6d, 0x52, 0x94, 0x1d, 0x5e, 0xe5, 0x60, 0x2c, - 0xf1, 0xe8, 0x29, 0x18, 0x24, 0x51, 0x14, 0x46, 0x42, 0x22, 0xc6, 0x05, 0xe1, 0xe0, 0x12, 0x05, - 0x62, 0x8e, 0xb3, 0x7f, 0xc7, 0x82, 0x49, 0xd5, 0x56, 0x5e, 0xd7, 0x11, 0x4e, 0x75, 0x17, 0xa0, - 0x25, 0x3b, 0x16, 0xb3, 0x09, 0x36, 0x7a, 0xe5, 0x93, 0x07, 0xf3, 0xee, 0x1e, 0xc8, 0xb4, 0x0e, - 0x05, 0x8a, 0xb1, 0xc6, 0xd7, 0xfe, 0xb1, 0x05, 0x27, 0x33, 0x7d, 0xba, 0xe1, 0xc5, 0x09, 0xfa, - 0x8b, 0x5d, 0xfd, 0xba, 0x74, 0x40, 0xdd, 0x9a, 0x1d, 0x3a, 0x47, 0x8b, 0xb3, 0xee, 0x29, 0x41, - 0x91, 0x10, 0xad, 0x73, 0x18, 0x06, 0xbd, 0x84, 0x6c, 0xcb, 0x7e, 0x3d, 0x5f, 0xb2, 0x5f, 0xbc, - 0x81, 0xe9, 0xe7, 0x59, 0xa1, 0x3c, 0x30, 0x67, 0x65, 0xff, 0x6f, 0x0b, 0x6a, 0x8b, 0x61, 0xb0, - 0xe1, 0x6d, 0xae, 0x3a, 0xed, 0x23, 0xfc, 0x30, 0x4d, 0x18, 0x60, 0x5c, 0x79, 0xd3, 0x2f, 0x17, - 0x35, 0x5d, 0x34, 0x68, 0x8e, 0x2e, 0x9e, 0xdc, 0x2a, 0x50, 0x7a, 0x89, 0x82, 0x30, 0x63, 0x36, - 0xf3, 0x32, 0xd4, 0x14, 0x01, 0x9a, 0x82, 0xea, 0x5d, 0xc2, 0x4d, 0xc6, 0x1a, 0xa6, 0x3f, 0xd1, - 0x29, 0x18, 0xdc, 0x71, 0xfc, 0x8e, 0x98, 0xad, 0x98, 0xff, 0xf9, 0x4c, 0xe5, 0x15, 0xcb, 0xfe, - 0x81, 0x05, 0xa7, 0x54, 0x25, 0xd7, 0xc9, 0x6e, 0x93, 0xf8, 0xa4, 0x95, 0x84, 0x11, 0x7a, 0xdf, - 0x82, 0x53, 0x7e, 0x8e, 0x1e, 0x12, 0xa3, 0x71, 0x18, 0x0d, 0xf6, 0x84, 0x68, 0xf8, 0xa9, 0x3c, - 0x2c, 0xce, 0xad, 0x0d, 0x3d, 0xc9, 0xfb, 0xc2, 0x27, 0xef, 0xa8, 0x60, 0x50, 0xbd, 0x4e, 0x76, - 0x59, 0xc7, 0x68, 0xf3, 0xc7, 0x55, 0xf3, 0x8f, 0x43, 0xf2, 0x6e, 0x98, 0x92, 0xf7, 0x89, 0x92, - 0x9f, 0xaf, 0x87, 0xcc, 0xfd, 0xfd, 0x0a, 0x9c, 0x56, 0x34, 0x86, 0x3a, 0x7e, 0x44, 0x86, 0xbf, - 0xbf, 0xee, 0x5e, 0x27, 0xbb, 0x6b, 0x21, 0x5d, 0x4f, 0xf3, 0xbb, 0x8b, 0x2e, 0xc3, 0xa8, 0x4b, - 0x36, 0x9c, 0x8e, 0x9f, 0x28, 0x73, 0x71, 0x90, 0xef, 0x23, 0xea, 0x29, 0x18, 0xeb, 0x34, 0xf6, - 0x6f, 0xd7, 0xd8, 0xac, 0x4c, 0x1c, 0x2f, 0x20, 0x11, 0x5d, 0xa0, 0x35, 0xab, 0x7e, 0x4c, 0xb7, - 0xea, 0x85, 0x05, 0xff, 0x14, 0x0c, 0x7a, 0xdb, 0x54, 0x65, 0x57, 0x4c, 0x4d, 0xbc, 0x42, 0x81, - 0x98, 0xe3, 0xd0, 0xd3, 0x30, 0xdc, 0x0a, 0xb7, 0xb7, 0x9d, 0xc0, 0x9d, 0xae, 0x32, 0x93, 0x61, - 0x94, 0x6a, 0xf5, 0x45, 0x0e, 0xc2, 0x12, 0x87, 0x9e, 0x80, 0x01, 0x27, 0xda, 0x8c, 0xa7, 0x07, - 0x18, 0xcd, 0x08, 0xad, 0x69, 0x3e, 0xda, 0x8c, 0x31, 0x83, 0x52, 0x53, 0xe0, 0x5e, 0x18, 0xdd, - 0xf5, 0x82, 0xcd, 0xba, 0x17, 0xb1, 0x75, 0x5d, 0x33, 0x05, 0xee, 0x28, 0x0c, 0xd6, 0xa8, 0x50, - 0x03, 0x06, 0xdb, 0x61, 0x94, 0xc4, 0xd3, 0x43, 0x6c, 0x38, 0x9f, 0x2b, 0x94, 0x1e, 0xde, 0xef, - 0x46, 0x18, 0x25, 0x69, 0x57, 0xe8, 0xbf, 0x18, 0x73, 0x46, 0x68, 0x11, 0xaa, 0x24, 0xd8, 0x99, - 0x1e, 0x66, 0xfc, 0x3e, 0x7e, 0x30, 0xbf, 0xa5, 0x60, 0xe7, 0x4d, 0x27, 0x4a, 0x67, 0xd1, 0x52, - 0xb0, 0x83, 0x69, 0x69, 0xd4, 0x82, 0x9a, 0x74, 0x1f, 0xc4, 0xd3, 0x23, 0x65, 0x04, 0x0c, 0x0b, - 0x72, 0x4c, 0xde, 0xeb, 0x78, 0x11, 0xd9, 0x26, 0x41, 0x12, 0xa7, 0xf6, 0xb0, 0xc4, 0xc6, 0x38, - 0xe5, 0x8b, 0x5a, 0x30, 0xc6, 0xcd, 0x87, 0xd5, 0xb0, 0x13, 0x24, 0xf1, 0x74, 0x8d, 0x35, 0xb9, - 0x60, 0xc3, 0xf9, 0x66, 0x5a, 0x62, 0xe1, 0x94, 0x60, 0x3f, 0xa6, 0x01, 0x63, 0x6c, 0x30, 0x45, - 0x6f, 0xc3, 0xb8, 0xef, 0xed, 0x90, 0x80, 0xc4, 0x71, 0x23, 0x0a, 0xd7, 0xc9, 0x34, 0xb0, 0xde, - 0x3c, 0x55, 0xb4, 0xf9, 0x0a, 0xd7, 0xc9, 0xc2, 0x89, 0xfd, 0xbd, 0xd9, 0xf1, 0x1b, 0x7a, 0x69, - 0x6c, 0x32, 0x43, 0xef, 0xc2, 0x04, 0xb5, 0x55, 0xbc, 0x94, 0xfd, 0x68, 0x79, 0xf6, 0x68, 0x7f, - 0x6f, 0x76, 0x02, 0x1b, 0xc5, 0x71, 0x86, 0x1d, 0x5a, 0x83, 0x9a, 0xef, 0x6d, 0x90, 0xd6, 0x6e, - 0xcb, 0x27, 0xd3, 0x63, 0x8c, 0x77, 0xc1, 0x94, 0xbb, 0x21, 0xc9, 0xb9, 0x7d, 0xa8, 0xfe, 0xe2, - 0x94, 0x11, 0x7a, 0x13, 0xce, 0x24, 0x24, 0xda, 0xf6, 0x02, 0x87, 0x2e, 0xda, 0xc2, 0x78, 0x61, - 0x3b, 0xdc, 0x71, 0x26, 0xb5, 0x67, 0xc5, 0xc0, 0x9e, 0x59, 0xcb, 0xa5, 0xc2, 0x3d, 0x4a, 0xa3, - 0x5b, 0x30, 0xc9, 0xe6, 0x53, 0xa3, 0xe3, 0xfb, 0x8d, 0xd0, 0xf7, 0x5a, 0xbb, 0xd3, 0x13, 0x8c, - 0xe1, 0xd3, 0x72, 0xdf, 0xba, 0x62, 0xa2, 0xa9, 0x5d, 0x9f, 0xfe, 0xc3, 0xd9, 0xd2, 0xc8, 0x87, - 0xc9, 0x98, 0xb4, 0x3a, 0x91, 0x97, 0xec, 0x52, 0xd9, 0x27, 0xf7, 0x93, 0xe9, 0xc9, 0x32, 0xfb, - 0x94, 0xa6, 0x59, 0x88, 0x3b, 0x0d, 0x32, 0x40, 0x9c, 0x65, 0x4d, 0x55, 0x45, 0x9c, 0xb8, 0x5e, - 0x30, 0x3d, 0xc5, 0x0c, 0x53, 0x35, 0xbf, 0x9a, 0x14, 0x88, 0x39, 0x8e, 0x6d, 0xfb, 0xe8, 0x8f, - 0x5b, 0x54, 0xf7, 0x9e, 0x60, 0x84, 0xe9, 0xb6, 0x4f, 0x22, 0x70, 0x4a, 0x43, 0x17, 0xac, 0x24, - 0xd9, 0x9d, 0x46, 0x8c, 0x54, 0x4d, 0xb5, 0xb5, 0xb5, 0x2f, 0x60, 0x0a, 0xb7, 0xd7, 0x61, 0x42, - 0x4d, 0x6b, 0x36, 0x3a, 0x68, 0x16, 0x06, 0xa9, 0xe6, 0x92, 0xbb, 0x97, 0x1a, 0x6d, 0x02, 0x55, - 0x68, 0x31, 0xe6, 0x70, 0xd6, 0x04, 0xef, 0xab, 0x64, 0x61, 0x37, 0x21, 0xdc, 0x8a, 0xad, 0x6a, - 0x4d, 0x90, 0x08, 0x9c, 0xd2, 0xd8, 0xff, 0x97, 0x2f, 0x8a, 0xa9, 0xee, 0x28, 0xa1, 0x37, 0x2f, - 0xc2, 0xc8, 0x56, 0x18, 0x27, 0x94, 0x9a, 0xd5, 0x31, 0x98, 0xae, 0x82, 0xd7, 0x04, 0x1c, 0x2b, - 0x0a, 0xf4, 0x2a, 0x8c, 0xb7, 0xf4, 0x0a, 0x84, 0x2a, 0x3f, 0x2d, 0x8a, 0x98, 0xb5, 0x63, 0x93, - 0x16, 0xbd, 0x02, 0x23, 0xcc, 0x95, 0xd7, 0x0a, 0x7d, 0x61, 0x2f, 0xcb, 0x95, 0x69, 0xa4, 0x21, - 0xe0, 0x0f, 0xb4, 0xdf, 0x58, 0x51, 0xd3, 0x5d, 0x07, 0x6d, 0xc2, 0x4a, 0x43, 0xa8, 0x5b, 0xb5, - 0xeb, 0xb8, 0xc6, 0xa0, 0x58, 0x60, 0xed, 0x5f, 0xab, 0x68, 0xa3, 0x4c, 0x8d, 0x3e, 0x82, 0xbe, - 0x08, 0xc3, 0xf7, 0x1c, 0x2f, 0xf1, 0x82, 0x4d, 0xb1, 0x82, 0xbe, 0x50, 0x52, 0xf7, 0xb2, 0xe2, - 0x77, 0x78, 0x51, 0xbe, 0x4e, 0x88, 0x3f, 0x58, 0x32, 0xa4, 0xbc, 0xa3, 0x4e, 0x10, 0x50, 0xde, - 0x95, 0xfe, 0x79, 0x63, 0x5e, 0x94, 0xf3, 0x16, 0x7f, 0xb0, 0x64, 0x88, 0x36, 0x00, 0xe4, 0xec, - 0x23, 0xae, 0x70, 0xa1, 0x7d, 0xaa, 0x1f, 0xf6, 0x6b, 0xaa, 0xf4, 0xc2, 0x04, 0x5d, 0x99, 0xd2, - 0xff, 0x58, 0xe3, 0x6c, 0x77, 0x98, 0x21, 0xd2, 0xdd, 0x2c, 0xf4, 0x36, 0x9d, 0x00, 0x4e, 0x94, - 0x10, 0x77, 0x3e, 0x11, 0x43, 0xf7, 0x5c, 0x49, 0x83, 0x6a, 0xcd, 0xdb, 0x26, 0xfa, 0x6c, 0x11, - 0x5c, 0x70, 0xca, 0xd0, 0xfe, 0x7e, 0x15, 0xa6, 0x7b, 0xb5, 0x97, 0xca, 0x24, 0xb9, 0xef, 0x25, - 0x8b, 0xd4, 0x56, 0xb0, 0x4c, 0x99, 0x5c, 0x12, 0x70, 0xac, 0x28, 0xa8, 0x70, 0xc4, 0xde, 0x66, - 0xe0, 0xf8, 0x42, 0x7e, 0x95, 0x70, 0x34, 0x19, 0x14, 0x0b, 0x2c, 0xa5, 0x8b, 0x88, 0x13, 0x0b, - 0x17, 0xae, 0x26, 0x44, 0x98, 0x41, 0xb1, 0xc0, 0xea, 0xdb, 0xbf, 0x81, 0x82, 0xed, 0x9f, 0x31, - 0x46, 0x83, 0x0f, 0x79, 0x8c, 0xd0, 0xbb, 0x00, 0x1b, 0x5e, 0xe0, 0xc5, 0x5b, 0x8c, 0xfd, 0x50, - 0xff, 0xec, 0x95, 0x55, 0xb2, 0xac, 0xd8, 0x60, 0x8d, 0x25, 0x7a, 0x09, 0x46, 0xd5, 0x0c, 0x5d, - 0xa9, 0x4f, 0x0f, 0x9b, 0x8e, 0xbf, 0x54, 0x5d, 0xd5, 0xb1, 0x4e, 0x67, 0x7f, 0x25, 0x2b, 0x32, - 0x62, 0x62, 0x68, 0x23, 0x6c, 0x95, 0x1d, 0xe1, 0xca, 0xc1, 0x23, 0x6c, 0xff, 0x97, 0x2a, 0xdd, - 0x3b, 0x6b, 0x95, 0x75, 0xe2, 0x12, 0x4a, 0xed, 0x0d, 0xaa, 0xe1, 0x9d, 0x84, 0x88, 0x69, 0x79, - 0xb1, 0x9f, 0x79, 0xa3, 0xaf, 0x07, 0x74, 0x3a, 0x70, 0x4e, 0x68, 0x0b, 0x6a, 0xbe, 0x13, 0xb3, - 0x9d, 0x24, 0x11, 0xd3, 0xb1, 0x3f, 0xb6, 0xa9, 0x15, 0xee, 0xc4, 0x89, 0xb6, 0xe0, 0xf2, 0x5a, - 0x52, 0xe6, 0x74, 0x79, 0xa2, 0xd6, 0x81, 0x3c, 0x39, 0x50, 0xcd, 0xa1, 0x26, 0xc4, 0x2e, 0xe6, - 0x38, 0xf4, 0x0a, 0x8c, 0x45, 0x84, 0x89, 0xca, 0x22, 0x35, 0x80, 0x98, 0xf0, 0x0d, 0xa6, 0x96, - 0x12, 0xd6, 0x70, 0xd8, 0xa0, 0x4c, 0x0d, 0xe5, 0xa1, 0x03, 0x0c, 0xe5, 0x67, 0x60, 0x98, 0xfd, - 0x50, 0x52, 0xa1, 0xbe, 0xd0, 0x0a, 0x07, 0x63, 0x89, 0xcf, 0x0a, 0xd1, 0x48, 0x49, 0x21, 0x7a, - 0x16, 0x26, 0xea, 0x0e, 0xd9, 0x0e, 0x83, 0xa5, 0xc0, 0x6d, 0x87, 0x5e, 0x90, 0xa0, 0x69, 0x18, - 0x60, 0x4b, 0x0a, 0x9f, 0xf1, 0x03, 0x94, 0x03, 0x1e, 0xa0, 0xc6, 0xae, 0xfd, 0xff, 0x2c, 0x18, - 0xaf, 0x13, 0x9f, 0x24, 0xe4, 0x56, 0x9b, 0xb9, 0x1f, 0xd0, 0x32, 0xa0, 0xcd, 0xc8, 0x69, 0x91, - 0x06, 0x89, 0xbc, 0xd0, 0x6d, 0x92, 0x56, 0x18, 0x30, 0x87, 0x3b, 0x5d, 0x23, 0xcf, 0xec, 0xef, - 0xcd, 0xa2, 0xab, 0x5d, 0x58, 0x9c, 0x53, 0x02, 0xb9, 0x30, 0xde, 0x8e, 0x88, 0xe1, 0x2f, 0xb1, - 0x8a, 0xed, 0xf3, 0x86, 0x5e, 0x84, 0x9b, 0x8f, 0x06, 0x08, 0x9b, 0x4c, 0xd1, 0xe7, 0x60, 0x2a, - 0x8c, 0xda, 0x5b, 0x4e, 0x50, 0x27, 0x6d, 0x12, 0xb8, 0xd4, 0x66, 0x16, 0x4e, 0xb1, 0x53, 0xfb, - 0x7b, 0xb3, 0x53, 0xb7, 0x32, 0x38, 0xdc, 0x45, 0x6d, 0xff, 0x4a, 0x05, 0x4e, 0xd7, 0xc3, 0x7b, - 0xc1, 0x3d, 0x27, 0x72, 0xe7, 0x1b, 0x2b, 0xdc, 0x10, 0x66, 0x4e, 0x46, 0xe9, 0xdc, 0xb4, 0x7a, - 0x3a, 0x37, 0xbf, 0x04, 0x23, 0x1b, 0x1e, 0xf1, 0x5d, 0x4c, 0x36, 0x44, 0xf7, 0x2e, 0x97, 0xf1, - 0x68, 0x2c, 0xd3, 0x32, 0xd2, 0x2b, 0xc0, 0x7d, 0xab, 0xcb, 0x82, 0x0d, 0x56, 0x0c, 0x51, 0x07, - 0xa6, 0xa4, 0xa5, 0x2f, 0xb1, 0x62, 0x76, 0xbc, 0x50, 0x6e, 0x23, 0x61, 0x56, 0xc3, 0xc6, 0x03, - 0x67, 0x18, 0xe2, 0xae, 0x2a, 0xe8, 0x0e, 0x6d, 0x9b, 0xae, 0x0e, 0x03, 0x4c, 0x56, 0xd8, 0x0e, - 0x8d, 0x6d, 0x21, 0x19, 0xd4, 0xfe, 0xc7, 0x16, 0x3c, 0xd6, 0x35, 0x5a, 0x62, 0x7f, 0xfd, 0x96, - 0xdc, 0xd8, 0xf2, 0xd3, 0x99, 0x82, 0x56, 0xe6, 0x8e, 0x79, 0xb9, 0x4d, 0x6e, 0xa5, 0xc4, 0x26, - 0xf7, 0x16, 0x9c, 0x5a, 0xda, 0x6e, 0x27, 0xbb, 0x75, 0xcf, 0xf4, 0xc9, 0xbe, 0x0c, 0x43, 0xdb, - 0xc4, 0xf5, 0x3a, 0xdb, 0xe2, 0xb3, 0xce, 0x4a, 0x45, 0xba, 0xca, 0xa0, 0x0f, 0xf6, 0x66, 0xc7, - 0x9b, 0x49, 0x18, 0x39, 0x9b, 0x84, 0x03, 0xb0, 0x20, 0xb7, 0x3f, 0xb0, 0x60, 0x52, 0x4e, 0xa8, - 0x79, 0xd7, 0x8d, 0x48, 0x1c, 0xa3, 0x19, 0xa8, 0x78, 0x6d, 0xc1, 0x08, 0x04, 0xa3, 0xca, 0x4a, - 0x03, 0x57, 0xbc, 0x36, 0xfa, 0x22, 0xd4, 0xb8, 0x2b, 0x3f, 0x15, 0x8e, 0x3e, 0x8f, 0x06, 0xd8, - 0xee, 0x63, 0x4d, 0xf2, 0xc0, 0x29, 0x3b, 0x69, 0x59, 0x32, 0x55, 0x5d, 0x35, 0x1d, 0xcb, 0xd7, - 0x04, 0x1c, 0x2b, 0x0a, 0x74, 0x01, 0x46, 0x82, 0xd0, 0xe5, 0xa7, 0x2c, 0x7c, 0xd9, 0x65, 0x22, - 0x77, 0x53, 0xc0, 0xb0, 0xc2, 0xda, 0xdf, 0xb0, 0x60, 0x4c, 0xf6, 0xb1, 0xa4, 0x91, 0x4b, 0x27, - 0x49, 0x6a, 0xe0, 0xa6, 0x93, 0x84, 0x1a, 0xa9, 0x0c, 0x63, 0xd8, 0xa6, 0xd5, 0x7e, 0x6c, 0x53, - 0xfb, 0xfb, 0x15, 0x98, 0x90, 0xcd, 0x69, 0x76, 0xd6, 0x63, 0x92, 0xa0, 0x77, 0xa0, 0xe6, 0xf0, - 0xc1, 0x27, 0x52, 0xce, 0x9e, 0x2f, 0xda, 0xa1, 0x1b, 0xdf, 0x2c, 0x35, 0x0c, 0xe6, 0x25, 0x1f, - 0x9c, 0xb2, 0x44, 0x3b, 0x70, 0x22, 0x08, 0x13, 0xb6, 0x1e, 0x28, 0x7c, 0x39, 0x8f, 0x68, 0xb6, - 0x9e, 0xc7, 0x45, 0x3d, 0x27, 0x6e, 0x66, 0xf9, 0xe1, 0xee, 0x2a, 0xd0, 0x2d, 0xe9, 0xc5, 0xa8, - 0xb2, 0xba, 0x9e, 0x2d, 0x57, 0x57, 0x6f, 0x27, 0x86, 0xfd, 0x43, 0x0b, 0x6a, 0x92, 0xec, 0x28, - 0x7d, 0xe2, 0x77, 0x60, 0x38, 0x66, 0x9f, 0x46, 0x0e, 0xd3, 0xc5, 0x72, 0x4d, 0xe7, 0xdf, 0x33, - 0x5d, 0xfc, 0xf8, 0xff, 0x18, 0x4b, 0x6e, 0xcc, 0x0d, 0xa9, 0x3a, 0xf0, 0xe8, 0xb9, 0x21, 0x55, - 0xd3, 0x7a, 0xb8, 0x21, 0x7f, 0xd9, 0x82, 0x21, 0xee, 0x1c, 0x2a, 0xe7, 0x61, 0xd3, 0x7c, 0xc9, - 0x29, 0xc7, 0x37, 0x29, 0x50, 0xb8, 0x96, 0xd1, 0x1d, 0xa8, 0xb1, 0x1f, 0xcb, 0x51, 0xb8, 0x2d, - 0x16, 0x82, 0x67, 0xcb, 0x38, 0xa7, 0xb8, 0xe2, 0xe3, 0xda, 0xe4, 0x4d, 0xc9, 0x00, 0xa7, 0xbc, - 0xec, 0x1f, 0x54, 0xe9, 0xac, 0x4f, 0x49, 0x8d, 0x65, 0xcd, 0x3a, 0x8e, 0x65, 0xad, 0x72, 0xf4, - 0xcb, 0xda, 0x7b, 0x30, 0xd9, 0xd2, 0x7c, 0xf2, 0xe9, 0x62, 0x7a, 0xa5, 0xa4, 0xbb, 0x59, 0x73, - 0xe4, 0x73, 0x67, 0xc8, 0xa2, 0xc9, 0x0e, 0x67, 0xf9, 0x23, 0x02, 0x63, 0xfc, 0x40, 0x51, 0xd4, - 0x37, 0x50, 0x28, 0xb3, 0xdc, 0xef, 0xc2, 0x4b, 0xa8, 0xca, 0x58, 0xd0, 0x49, 0x53, 0x63, 0x84, - 0x0d, 0xb6, 0xf6, 0xdf, 0x1c, 0x84, 0xc1, 0xa5, 0x1d, 0x12, 0x24, 0x47, 0x38, 0xcb, 0xb7, 0x61, - 0xc2, 0x0b, 0x76, 0x42, 0x7f, 0x87, 0xb8, 0x1c, 0x7f, 0xb8, 0x15, 0xed, 0x8c, 0xa8, 0x64, 0x62, - 0xc5, 0x60, 0x86, 0x33, 0xcc, 0x8f, 0x62, 0x3f, 0xf9, 0x06, 0x0c, 0x71, 0x89, 0x10, 0x9b, 0xc9, - 0x02, 0x27, 0x29, 0x1b, 0x50, 0x31, 0x73, 0xd2, 0x5d, 0x2f, 0xf7, 0xcf, 0x0a, 0x46, 0xe8, 0x2e, - 0x4c, 0x6c, 0x78, 0x51, 0x9c, 0xd0, 0x0d, 0x61, 0x9c, 0x38, 0xdb, 0xed, 0xc3, 0x6c, 0x24, 0xd5, - 0x90, 0x2c, 0x1b, 0xac, 0x70, 0x86, 0x35, 0xda, 0x82, 0x71, 0xba, 0x8f, 0x49, 0xeb, 0x1a, 0xee, - 0xbf, 0x2e, 0xe5, 0x4b, 0xba, 0xa1, 0x73, 0xc2, 0x26, 0x63, 0xaa, 0x8c, 0x5a, 0x6c, 0xe3, 0x33, - 0xc2, 0x96, 0x74, 0xa5, 0x8c, 0xf8, 0x8e, 0x87, 0xe3, 0xa8, 0x4e, 0x63, 0xe7, 0xc7, 0x35, 0x53, - 0xa7, 0xa5, 0xa7, 0xc4, 0xf6, 0x77, 0xe9, 0x02, 0x44, 0x47, 0xf1, 0x38, 0x74, 0xf7, 0x35, 0x53, - 0x77, 0x3f, 0x55, 0xe2, 0xe3, 0xf6, 0xd0, 0xdb, 0x5f, 0x86, 0x51, 0xed, 0xdb, 0xa3, 0x4b, 0x50, - 0x6b, 0xc9, 0xa3, 0x4e, 0xa1, 0xc0, 0x95, 0x01, 0xa1, 0xce, 0x40, 0x71, 0x4a, 0x43, 0x07, 0x86, - 0x1a, 0x5e, 0xd9, 0x88, 0x08, 0x6a, 0x96, 0x61, 0x86, 0xb1, 0x5f, 0x00, 0x58, 0xba, 0x4f, 0x5a, - 0xf3, 0x2d, 0x76, 0x10, 0xaf, 0x9d, 0x9b, 0x58, 0xbd, 0xcf, 0x4d, 0xec, 0xb7, 0x61, 0x7c, 0xe9, - 0x3e, 0x5d, 0xd9, 0xe5, 0x36, 0xed, 0x3c, 0x0c, 0x11, 0x06, 0x60, 0xad, 0x1a, 0x49, 0x85, 0x94, - 0x93, 0x61, 0x81, 0x65, 0xc7, 0xe8, 0xf7, 0x1d, 0x31, 0x61, 0xb5, 0x2d, 0xef, 0x12, 0x05, 0x62, - 0x8e, 0xb3, 0xbf, 0x63, 0xc1, 0xc4, 0xf2, 0xa2, 0x61, 0x27, 0xcf, 0x01, 0x70, 0x7b, 0xf3, 0xce, - 0x9d, 0x9b, 0xd2, 0x8f, 0xca, 0x9d, 0x5d, 0x0a, 0x8a, 0x35, 0x0a, 0xf4, 0x38, 0x54, 0xfd, 0x4e, - 0x20, 0xcc, 0xc0, 0xe1, 0xfd, 0xbd, 0xd9, 0xea, 0x8d, 0x4e, 0x80, 0x29, 0x4c, 0x0b, 0x6c, 0xa8, - 0x96, 0x0e, 0x6c, 0x28, 0x0e, 0xed, 0xfb, 0x56, 0x15, 0xa6, 0x96, 0x7d, 0x72, 0xdf, 0x68, 0xf5, - 0x79, 0x18, 0x72, 0x23, 0x6f, 0x87, 0x44, 0x59, 0x37, 0x49, 0x9d, 0x41, 0xb1, 0xc0, 0x96, 0x8e, - 0xb5, 0x30, 0xe2, 0x4c, 0xaa, 0x47, 0x1c, 0x67, 0x52, 0xd8, 0x67, 0xb4, 0x01, 0xc3, 0x21, 0xff, - 0xfe, 0xd3, 0x83, 0x4c, 0xd0, 0x5f, 0x3d, 0xb8, 0x31, 0xd9, 0xf1, 0x99, 0x13, 0xd2, 0xc3, 0x0f, - 0xbd, 0x95, 0xb2, 0x14, 0x50, 0x2c, 0x99, 0xcf, 0x7c, 0x06, 0xc6, 0x74, 0xca, 0xbe, 0x4e, 0xbf, - 0x7f, 0xce, 0x82, 0x93, 0xcb, 0x7e, 0xd8, 0xba, 0x9b, 0x09, 0x86, 0x79, 0x09, 0x46, 0xe9, 0x54, - 0x8d, 0x8d, 0x08, 0x31, 0x23, 0x14, 0x4e, 0xa0, 0xb0, 0x4e, 0xa7, 0x15, 0xbb, 0x7d, 0x7b, 0xa5, - 0x9e, 0x17, 0x41, 0x27, 0x50, 0x58, 0xa7, 0xb3, 0xff, 0xb3, 0x05, 0x4f, 0x5e, 0x5d, 0x5c, 0x6a, - 0x50, 0x35, 0x12, 0x27, 0x24, 0x48, 0xba, 0x82, 0xf8, 0xce, 0xc3, 0x50, 0xdb, 0xd5, 0x9a, 0xa2, - 0x44, 0xa0, 0x51, 0x67, 0xad, 0x10, 0xd8, 0x47, 0x25, 0x92, 0xf5, 0x97, 0x2d, 0x38, 0x79, 0xd5, - 0x4b, 0x30, 0x69, 0x87, 0xd9, 0xb8, 0xbb, 0x88, 0xb4, 0xc3, 0xd8, 0x4b, 0xc2, 0x68, 0x37, 0x1b, - 0x77, 0x87, 0x15, 0x06, 0x6b, 0x54, 0xbc, 0xe6, 0x1d, 0x8f, 0x2a, 0x58, 0xd1, 0x29, 0xad, 0x66, - 0x0e, 0xc7, 0x8a, 0x82, 0x76, 0xcc, 0xf5, 0x22, 0x66, 0x8b, 0xec, 0x8a, 0x19, 0xac, 0x3a, 0x56, - 0x97, 0x08, 0x9c, 0xd2, 0xd8, 0x7f, 0xd7, 0x82, 0xd3, 0x57, 0xfd, 0x4e, 0x9c, 0x90, 0x68, 0x23, - 0x36, 0x1a, 0xfb, 0x02, 0xd4, 0x88, 0xb4, 0x9b, 0x45, 0x5b, 0xd5, 0x9a, 0xa4, 0x0c, 0x6a, 0x1e, - 0xf4, 0xa7, 0xe8, 0x4a, 0xc4, 0x98, 0xf5, 0x17, 0x11, 0xf5, 0xaf, 0x2b, 0x30, 0x7e, 0x6d, 0x6d, - 0xad, 0x71, 0x95, 0x24, 0x42, 0x07, 0x17, 0x3b, 0x7a, 0x1a, 0xda, 0x2e, 0x77, 0xf4, 0xca, 0x5c, - 0x8f, 0x59, 0xd7, 0x49, 0x3c, 0x7f, 0x8e, 0xc7, 0x58, 0xcf, 0xad, 0x04, 0xc9, 0xad, 0xa8, 0x99, - 0x44, 0x5e, 0xb0, 0x99, 0xbb, 0x2b, 0x96, 0xeb, 0x44, 0xb5, 0xd7, 0x3a, 0x81, 0x5e, 0x80, 0x21, - 0x16, 0xe2, 0x2d, 0x6d, 0x9b, 0x8f, 0x2a, 0x33, 0x84, 0x41, 0x1f, 0xec, 0xcd, 0xd6, 0x6e, 0xe3, - 0x15, 0xfe, 0x07, 0x0b, 0x52, 0xf4, 0x2e, 0x8c, 0x6e, 0x25, 0x49, 0xfb, 0x1a, 0x71, 0x5c, 0x12, - 0x49, 0x2d, 0x51, 0x60, 0x05, 0xd2, 0xc1, 0xe0, 0x05, 0xd2, 0x89, 0x95, 0xc2, 0x62, 0xac, 0x73, - 0xb4, 0x9b, 0x00, 0x29, 0xee, 0x21, 0x6d, 0x6d, 0xec, 0xbf, 0x5c, 0x81, 0xe1, 0x6b, 0x4e, 0xe0, - 0xfa, 0x24, 0x42, 0xcb, 0x30, 0x40, 0xee, 0x93, 0x56, 0x39, 0x03, 0x36, 0x5d, 0x48, 0xb9, 0xa7, - 0x8a, 0xfe, 0xc7, 0xac, 0x3c, 0xc2, 0x30, 0x4c, 0xdb, 0x7d, 0x55, 0x05, 0x66, 0x3e, 0x57, 0x3c, - 0x0a, 0x4a, 0x24, 0xf8, 0x2a, 0x2c, 0x40, 0x58, 0x32, 0x62, 0x3e, 0x9d, 0x56, 0xbb, 0x49, 0x95, - 0x5b, 0x52, 0x2e, 0xf6, 0x7a, 0x6d, 0xb1, 0xc1, 0xc9, 0x05, 0x5f, 0xee, 0xd3, 0x91, 0x40, 0x9c, - 0xb2, 0xb3, 0x5f, 0x81, 0x53, 0xec, 0x54, 0xd0, 0x49, 0xb6, 0x8c, 0x39, 0x53, 0x28, 0x9c, 0xf6, - 0x3f, 0xa8, 0xc0, 0x89, 0x95, 0xe6, 0x62, 0xd3, 0xf4, 0xc6, 0xbd, 0x02, 0x63, 0x7c, 0x79, 0xa6, - 0x42, 0xe7, 0xf8, 0xa2, 0xbc, 0x72, 0x63, 0xaf, 0x69, 0x38, 0x6c, 0x50, 0xa2, 0x27, 0xa1, 0xea, - 0xbd, 0x17, 0x64, 0xe3, 0x83, 0x56, 0xde, 0xb8, 0x89, 0x29, 0x9c, 0xa2, 0xe9, 0x4a, 0xcf, 0x55, - 0x9c, 0x42, 0xab, 0xd5, 0xfe, 0x75, 0x98, 0xf0, 0xe2, 0x56, 0xec, 0xad, 0x04, 0x74, 0xfe, 0x3b, - 0x2d, 0x29, 0xbe, 0xa9, 0xed, 0x4f, 0x9b, 0xaa, 0xb0, 0x38, 0x43, 0xad, 0xe9, 0xdb, 0xc1, 0xd2, - 0xd6, 0x42, 0x71, 0x84, 0xe6, 0x57, 0xa0, 0xa6, 0x22, 0x69, 0x64, 0x00, 0x94, 0x95, 0x1f, 0x00, - 0x55, 0x42, 0xe1, 0x48, 0x1f, 0x69, 0x35, 0xd7, 0x47, 0xfa, 0xcf, 0x2c, 0x48, 0x83, 0x06, 0x10, - 0x86, 0x5a, 0x3b, 0x64, 0x07, 0x10, 0x91, 0x3c, 0xec, 0x7b, 0xba, 0x40, 0x12, 0xf9, 0x4c, 0xe0, - 0xb2, 0xd2, 0x90, 0x65, 0x71, 0xca, 0x06, 0xdd, 0x80, 0xe1, 0x76, 0x44, 0x9a, 0x09, 0x0b, 0xf3, - 0xed, 0x83, 0x23, 0x93, 0xea, 0x06, 0x2f, 0x89, 0x25, 0x0b, 0xfb, 0x37, 0x2c, 0x80, 0x1b, 0xde, - 0xb6, 0x97, 0x60, 0x27, 0xd8, 0x24, 0x47, 0xb8, 0x8b, 0xbc, 0x09, 0x03, 0x71, 0x9b, 0xb4, 0xca, - 0x1d, 0x1d, 0xa5, 0x2d, 0x6a, 0xb6, 0x49, 0x2b, 0xfd, 0x0c, 0xf4, 0x1f, 0x66, 0x7c, 0xec, 0x5f, - 0x05, 0x98, 0x48, 0xc9, 0xa8, 0x19, 0x8f, 0x9e, 0x37, 0xe2, 0x5a, 0x1f, 0xcf, 0xc4, 0xb5, 0xd6, - 0x18, 0xb5, 0x16, 0xca, 0x9a, 0x40, 0x75, 0xdb, 0xb9, 0x2f, 0x76, 0x0d, 0x2f, 0x95, 0x6d, 0x10, - 0xad, 0x69, 0x6e, 0xd5, 0xb9, 0xcf, 0xcd, 0xa8, 0xe7, 0xa4, 0x00, 0xad, 0x3a, 0xf7, 0x1f, 0xf0, - 0x03, 0x22, 0x36, 0x03, 0xe9, 0x36, 0xe5, 0xeb, 0xff, 0x35, 0xfd, 0xcf, 0x94, 0x22, 0xad, 0x8e, - 0xd5, 0xea, 0x05, 0xc2, 0xd5, 0xd7, 0x67, 0xad, 0x5e, 0x90, 0xad, 0xd5, 0x0b, 0x4a, 0xd4, 0xea, - 0x05, 0xe8, 0x7d, 0x0b, 0x86, 0x85, 0x87, 0x9c, 0x85, 0x5f, 0x8d, 0x5e, 0xf9, 0x74, 0x5f, 0x55, - 0x0b, 0x57, 0x3b, 0xaf, 0xfe, 0x92, 0xb4, 0x1d, 0x05, 0xb4, 0xb0, 0x09, 0xb2, 0x6a, 0xf4, 0x6d, - 0x0b, 0x26, 0xc4, 0x6f, 0x4c, 0xde, 0xeb, 0x90, 0x38, 0x11, 0xab, 0xd4, 0xe7, 0x0e, 0xd3, 0x1a, - 0xc1, 0x82, 0x37, 0xea, 0x53, 0x52, 0xc5, 0x98, 0xc8, 0xc2, 0xb6, 0x65, 0xda, 0x83, 0xbe, 0x67, - 0xc1, 0xa9, 0x6d, 0xe7, 0x3e, 0xaf, 0x91, 0xc3, 0xb0, 0x93, 0x78, 0xa1, 0x08, 0x31, 0x5b, 0xee, - 0x57, 0x4e, 0xba, 0x18, 0xf1, 0xe6, 0xbe, 0x26, 0x8f, 0x2d, 0xf3, 0x48, 0x0a, 0x1b, 0x9d, 0xdb, - 0xc2, 0x19, 0x17, 0x46, 0xa4, 0x60, 0xe6, 0x58, 0xed, 0x0b, 0xfa, 0x62, 0x7c, 0xf0, 0x0c, 0x94, - 0x0e, 0xb4, 0xb9, 0x37, 0x3a, 0x4e, 0x90, 0x78, 0xc9, 0xae, 0x66, 0xe3, 0xb3, 0x5a, 0x84, 0x20, - 0x1e, 0x61, 0x2d, 0x5b, 0x30, 0xa6, 0xcb, 0xdc, 0x11, 0xd6, 0x14, 0xc2, 0xc9, 0x1c, 0x79, 0x3a, - 0xc2, 0x0a, 0x3b, 0xf0, 0x78, 0x4f, 0xb9, 0x38, 0xba, 0x6a, 0xed, 0x1f, 0x5a, 0xba, 0xc2, 0x3c, - 0x0e, 0xc7, 0xcc, 0xaa, 0xe9, 0x98, 0xb9, 0x50, 0x76, 0xea, 0xf4, 0xf0, 0xce, 0x6c, 0xe8, 0xed, - 0xa7, 0x2b, 0x01, 0x5a, 0x83, 0x21, 0x9f, 0x42, 0xe4, 0x69, 0xd0, 0xc5, 0x7e, 0x26, 0x67, 0x6a, - 0x5c, 0x30, 0x78, 0x8c, 0x05, 0x2f, 0xfb, 0x37, 0x2d, 0x18, 0x38, 0x8e, 0xe1, 0x69, 0x98, 0xc3, - 0xd3, 0xcb, 0x44, 0x15, 0x57, 0x3e, 0xe7, 0xb0, 0x73, 0x6f, 0xe9, 0x7e, 0x42, 0x82, 0x98, 0x99, - 0x92, 0xb9, 0x23, 0xf4, 0x2b, 0x15, 0x18, 0xa5, 0x15, 0x49, 0x3f, 0xd1, 0xab, 0x30, 0xee, 0x3b, - 0xeb, 0xc4, 0x97, 0xee, 0xe4, 0xec, 0xb6, 0xeb, 0x86, 0x8e, 0xc4, 0x26, 0x2d, 0x2d, 0xbc, 0xa1, - 0x7b, 0xdb, 0x85, 0x49, 0xa4, 0x0a, 0x1b, 0xae, 0x78, 0x6c, 0xd2, 0x52, 0xcb, 0xff, 0x9e, 0x93, - 0xb4, 0xb6, 0xc4, 0x96, 0x4c, 0x35, 0xf7, 0x0e, 0x05, 0x62, 0x8e, 0x43, 0xf3, 0x30, 0x29, 0x25, - 0xf6, 0x4d, 0x3e, 0x74, 0xc2, 0x5c, 0x54, 0xf7, 0xf4, 0xb0, 0x89, 0xc6, 0x59, 0x7a, 0xf4, 0x19, - 0x98, 0xa0, 0x83, 0x13, 0x76, 0x12, 0x19, 0xac, 0x30, 0xc8, 0x82, 0x15, 0x58, 0x70, 0xe8, 0x9a, - 0x81, 0xc1, 0x19, 0x4a, 0xfb, 0x5d, 0x38, 0x79, 0x23, 0x74, 0xdc, 0x05, 0xc7, 0x77, 0x82, 0x16, - 0x89, 0x56, 0x82, 0xcd, 0xc2, 0x73, 0x5d, 0xfd, 0xec, 0xb5, 0x52, 0x74, 0xf6, 0x6a, 0x47, 0x80, - 0xf4, 0x0a, 0x44, 0x98, 0xcd, 0xdb, 0x30, 0xec, 0xf1, 0xaa, 0x84, 0xd4, 0x5e, 0x2e, 0x72, 0x2a, - 0x75, 0xb5, 0x51, 0x0b, 0x1b, 0xe1, 0x00, 0x2c, 0x59, 0xd2, 0x9d, 0x44, 0x9e, 0x17, 0xaa, 0x78, - 0xb3, 0x66, 0xff, 0x55, 0x0b, 0x26, 0x6f, 0x66, 0x2e, 0x83, 0x9d, 0x87, 0xa1, 0x98, 0x44, 0x39, - 0x2e, 0xb5, 0x26, 0x83, 0x62, 0x81, 0x7d, 0xe8, 0xdb, 0xf4, 0x5f, 0xac, 0x40, 0x8d, 0xc5, 0x6c, - 0xb6, 0x9d, 0xd6, 0x51, 0x1a, 0xa5, 0xab, 0x86, 0x51, 0x5a, 0xb0, 0x49, 0x54, 0x0d, 0xea, 0x65, - 0x93, 0xa2, 0xdb, 0xea, 0x72, 0x54, 0xa9, 0xfd, 0x61, 0xca, 0x90, 0xdf, 0xa3, 0x99, 0x30, 0xef, - 0x52, 0xc9, 0x8b, 0x53, 0xec, 0x34, 0x54, 0xd1, 0x3e, 0x7a, 0xa7, 0xa1, 0xaa, 0x69, 0x3d, 0xb4, - 0x52, 0x43, 0x6b, 0x3d, 0x53, 0xdb, 0x9f, 0x65, 0x01, 0x78, 0x8e, 0xef, 0x7d, 0x95, 0xa8, 0x4b, - 0x86, 0xb3, 0x22, 0x9e, 0x4e, 0x40, 0x1f, 0x30, 0x05, 0x23, 0xfe, 0xf1, 0xbb, 0xa3, 0x69, 0x11, - 0xfb, 0x1a, 0x4c, 0x66, 0xc6, 0x0e, 0xbd, 0x04, 0x83, 0xed, 0x2d, 0x27, 0x26, 0x99, 0xc8, 0x8e, - 0xc1, 0x06, 0x05, 0x3e, 0xd8, 0x9b, 0x9d, 0x50, 0x05, 0x18, 0x04, 0x73, 0x6a, 0xfb, 0x4f, 0x2c, - 0x18, 0xb8, 0x19, 0xba, 0x47, 0x29, 0x63, 0xd7, 0x0c, 0x19, 0x3b, 0x5f, 0x7c, 0xe3, 0xbc, 0xa7, - 0x78, 0x35, 0x32, 0xe2, 0x75, 0xa1, 0x04, 0xaf, 0x83, 0x25, 0x6b, 0x1b, 0x46, 0xd9, 0x8d, 0x76, - 0x11, 0xd2, 0xf2, 0x82, 0xb1, 0x81, 0x9a, 0xcd, 0x6c, 0xa0, 0x26, 0x35, 0x52, 0x6d, 0x1b, 0xf5, - 0x0c, 0x0c, 0x8b, 0x10, 0x8a, 0x6c, 0xd4, 0xa1, 0xa0, 0xc5, 0x12, 0x6f, 0xff, 0x7a, 0x15, 0x8c, - 0x1b, 0xf4, 0xe8, 0x47, 0x16, 0xcc, 0x45, 0xfc, 0xca, 0x83, 0x5b, 0xef, 0x44, 0x5e, 0xb0, 0xd9, - 0x6c, 0x6d, 0x11, 0xb7, 0xe3, 0x7b, 0xc1, 0xe6, 0xca, 0x66, 0x10, 0x2a, 0xf0, 0xd2, 0x7d, 0xd2, - 0xea, 0x30, 0xef, 0x6a, 0xe9, 0x8b, 0xfb, 0xea, 0x0c, 0xf5, 0xca, 0xfe, 0xde, 0xec, 0x1c, 0xee, - 0xab, 0x16, 0xdc, 0x67, 0xab, 0xd0, 0xef, 0x5b, 0x70, 0x89, 0xdf, 0x21, 0x2f, 0xdf, 0x93, 0x52, - 0x1b, 0xcf, 0x86, 0x64, 0x9a, 0xb2, 0x5b, 0x23, 0xd1, 0xf6, 0xc2, 0xcb, 0x62, 0x90, 0x2f, 0x35, - 0xfa, 0xab, 0x15, 0xf7, 0xdb, 0x4c, 0xfb, 0xdf, 0x56, 0x61, 0x9c, 0x8e, 0x67, 0x7a, 0x7f, 0xf4, - 0x25, 0x43, 0x4c, 0x3e, 0x96, 0x11, 0x93, 0x13, 0x06, 0xf1, 0xc3, 0xb9, 0x3a, 0x9a, 0xc0, 0x09, - 0xdf, 0x89, 0x93, 0x6b, 0xc4, 0x89, 0x92, 0x75, 0xe2, 0xb0, 0x03, 0x4b, 0x31, 0x09, 0xfa, 0x3a, - 0x04, 0x55, 0x71, 0x39, 0x37, 0xb2, 0xdc, 0x70, 0x77, 0x05, 0xe8, 0x1e, 0x20, 0x76, 0x3a, 0x1a, - 0x39, 0x41, 0xcc, 0x3b, 0xe3, 0x09, 0x87, 0x6c, 0x9f, 0xd5, 0xce, 0x88, 0x6a, 0xd1, 0x8d, 0x2e, - 0x76, 0x38, 0xa7, 0x0a, 0xed, 0x08, 0x7c, 0xb0, 0xec, 0x11, 0xf8, 0x50, 0x41, 0xc0, 0xef, 0xcf, - 0x5b, 0x70, 0x92, 0x7e, 0x18, 0x33, 0x38, 0x34, 0x46, 0x21, 0x4c, 0xd2, 0x1e, 0xf8, 0x24, 0x91, - 0x30, 0x31, 0xc3, 0x0a, 0x6c, 0x69, 0x93, 0x4f, 0x6a, 0xb1, 0x5d, 0x37, 0x99, 0xe1, 0x2c, 0x77, - 0xfb, 0xd7, 0x2d, 0x60, 0xd1, 0x67, 0xc7, 0xb1, 0x8e, 0x5d, 0x35, 0xd7, 0x31, 0xbb, 0x58, 0x69, - 0xf4, 0x58, 0xc2, 0x5e, 0x84, 0x29, 0x8a, 0x6d, 0x44, 0xe1, 0xfd, 0x5d, 0x69, 0x5c, 0x17, 0xfb, - 0x66, 0xdf, 0xaf, 0xf0, 0x99, 0xa3, 0xae, 0x6f, 0xa1, 0x5f, 0xb0, 0x60, 0xa4, 0xe5, 0xb4, 0x9d, - 0x16, 0x4f, 0x41, 0x52, 0xc2, 0x0f, 0x63, 0x94, 0x9f, 0x5b, 0x14, 0x65, 0xb9, 0x0f, 0xe1, 0x93, - 0xb2, 0xeb, 0x12, 0x5c, 0xe8, 0x37, 0x50, 0x95, 0xcf, 0x78, 0x30, 0x6e, 0x30, 0x3b, 0xc2, 0x8d, - 0xe7, 0x2f, 0x58, 0x5c, 0xeb, 0xab, 0xcd, 0xc1, 0x3d, 0x38, 0x11, 0x68, 0xff, 0xa9, 0x3e, 0x93, - 0xb6, 0xf0, 0x5c, 0x79, 0xbd, 0xce, 0xd4, 0xa0, 0x16, 0x68, 0x97, 0x61, 0x88, 0xbb, 0xeb, 0xb0, - 0xff, 0xa1, 0x05, 0x8f, 0xe9, 0x84, 0xda, 0x6d, 0xbb, 0x22, 0xbf, 0x70, 0x1d, 0x46, 0xc2, 0x36, - 0x89, 0x9c, 0x74, 0x23, 0x74, 0x41, 0x8e, 0xfe, 0x2d, 0x01, 0x7f, 0xb0, 0x37, 0x7b, 0x4a, 0xe7, - 0x2e, 0xe1, 0x58, 0x95, 0x44, 0x36, 0x0c, 0xb1, 0x71, 0x89, 0xc5, 0x3d, 0x49, 0x96, 0x90, 0x83, - 0x9d, 0x86, 0xc4, 0x58, 0x60, 0xec, 0xbf, 0x66, 0x71, 0x61, 0xd3, 0x9b, 0x8e, 0xbe, 0x06, 0x53, - 0xdb, 0x74, 0xcf, 0xb4, 0x74, 0xbf, 0x4d, 0x57, 0x52, 0x76, 0x0a, 0x6c, 0x95, 0x59, 0x3f, 0x7a, - 0x74, 0x77, 0x61, 0x5a, 0xb4, 0x7e, 0x6a, 0x35, 0xc3, 0x16, 0x77, 0x55, 0x64, 0xff, 0x81, 0x98, - 0xb2, 0xcc, 0x78, 0x7b, 0x06, 0x86, 0xdb, 0xa1, 0xbb, 0xb8, 0x52, 0xc7, 0x62, 0xac, 0x94, 0xce, - 0x69, 0x70, 0x30, 0x96, 0x78, 0x74, 0x05, 0x80, 0xdc, 0x4f, 0x48, 0x14, 0x38, 0xbe, 0x3a, 0xbd, - 0x55, 0xb6, 0xd2, 0x92, 0xc2, 0x60, 0x8d, 0x8a, 0x96, 0x69, 0x47, 0xe1, 0x8e, 0xe7, 0xb2, 0xa8, - 0xf7, 0xaa, 0x59, 0xa6, 0xa1, 0x30, 0x58, 0xa3, 0xa2, 0x3b, 0xd5, 0x4e, 0x10, 0xf3, 0x75, 0xcc, - 0x59, 0x17, 0x79, 0x24, 0x46, 0xd2, 0x9d, 0xea, 0x6d, 0x1d, 0x89, 0x4d, 0x5a, 0xfb, 0x77, 0x6a, - 0x00, 0xa9, 0xa5, 0x84, 0xde, 0xef, 0x9e, 0xa1, 0x9f, 0x2a, 0x6b, 0x66, 0x3d, 0xbc, 0xe9, 0x89, - 0xbe, 0x69, 0xc1, 0xa8, 0xe3, 0xfb, 0x61, 0xcb, 0x49, 0x58, 0x8f, 0x2a, 0x65, 0x75, 0x85, 0x68, - 0xc9, 0x7c, 0x5a, 0x96, 0x37, 0xe6, 0x05, 0x79, 0xb8, 0xa7, 0x61, 0x0a, 0xdb, 0xa3, 0x37, 0x01, - 0x7d, 0x52, 0x5a, 0xd8, 0xfc, 0xa3, 0xcc, 0x64, 0x2d, 0xec, 0x1a, 0xd3, 0x90, 0x9a, 0x71, 0x8d, - 0xde, 0x35, 0x52, 0x26, 0x0c, 0x94, 0xb9, 0xa2, 0x6b, 0xd8, 0x0e, 0x45, 0xd9, 0x12, 0xd0, 0x17, - 0xf5, 0x80, 0xe0, 0xc1, 0x32, 0xf7, 0x5f, 0x35, 0x13, 0xb6, 0x20, 0x18, 0x38, 0x81, 0x49, 0xd7, - 0x5c, 0x2b, 0x45, 0x84, 0xd7, 0xe5, 0xe2, 0x1a, 0x32, 0x8b, 0x6c, 0xba, 0x3a, 0x66, 0x10, 0x38, - 0x5b, 0x05, 0xfa, 0x22, 0x0f, 0xd7, 0x5e, 0x09, 0x36, 0x42, 0x11, 0xe4, 0x75, 0xb1, 0xc4, 0x37, - 0xdf, 0x8d, 0x13, 0xb2, 0x4d, 0xcb, 0xa4, 0xab, 0xe1, 0x4d, 0xc1, 0x05, 0x2b, 0x7e, 0x68, 0x0d, - 0x86, 0xd8, 0xe5, 0x92, 0x78, 0x7a, 0xa4, 0x8c, 0xb7, 0xcc, 0xbc, 0x56, 0x99, 0xda, 0x20, 0xec, - 0x6f, 0x8c, 0x05, 0x2f, 0x74, 0x4d, 0x5e, 0x43, 0x8e, 0x57, 0x82, 0xdb, 0x31, 0x61, 0xd7, 0x90, - 0x6b, 0x0b, 0x1f, 0x4f, 0xef, 0x15, 0x73, 0x78, 0x6e, 0x92, 0x28, 0xa3, 0x24, 0x35, 0x45, 0xc4, - 0x7f, 0x99, 0x7b, 0x6a, 0x1a, 0xca, 0x34, 0xd4, 0xcc, 0x54, 0x95, 0x0e, 0xf6, 0x9b, 0x26, 0x33, - 0x9c, 0xe5, 0x7e, 0x8c, 0x6b, 0xe0, 0x8c, 0x0f, 0x53, 0xd9, 0x29, 0x79, 0x84, 0x2b, 0xee, 0x1f, - 0x0f, 0xc0, 0x84, 0x29, 0x18, 0xe8, 0x12, 0xd4, 0xb6, 0x59, 0x66, 0xa8, 0x34, 0x1f, 0x8d, 0x92, - 0xff, 0x55, 0x89, 0xc0, 0x29, 0x0d, 0xcb, 0xcc, 0xc3, 0x8a, 0x6b, 0xa1, 0x37, 0x69, 0x66, 0x1e, - 0x85, 0xc1, 0x1a, 0x15, 0xb5, 0x5b, 0xd7, 0xc3, 0x30, 0x51, 0x8a, 0x5b, 0xc9, 0xcc, 0x02, 0x83, - 0x62, 0x81, 0xa5, 0x0a, 0xfb, 0x2e, 0xed, 0x90, 0x6f, 0xba, 0xfd, 0x94, 0xc2, 0xbe, 0xae, 0x23, - 0xb1, 0x49, 0x4b, 0x17, 0xa0, 0x30, 0x66, 0x42, 0x28, 0xac, 0xe3, 0x34, 0x94, 0xa9, 0xc9, 0x2f, - 0x5b, 0x49, 0x3c, 0xfa, 0x02, 0x3c, 0xa6, 0xee, 0x46, 0x61, 0xee, 0x46, 0x95, 0x35, 0x0e, 0x19, - 0x5b, 0xdc, 0xc7, 0x16, 0xf3, 0xc9, 0x70, 0xaf, 0xf2, 0xe8, 0x75, 0x98, 0x10, 0x96, 0xad, 0xe4, - 0x38, 0x6c, 0x9e, 0x74, 0x5f, 0x37, 0xb0, 0x38, 0x43, 0x8d, 0xea, 0x30, 0x45, 0x21, 0xcc, 0xa2, - 0x94, 0x1c, 0xf8, 0x1d, 0x2f, 0xb5, 0x32, 0x5f, 0xcf, 0xe0, 0x71, 0x57, 0x09, 0x34, 0x0f, 0x93, - 0xdc, 0xb6, 0xa0, 0x1b, 0x39, 0xf6, 0x1d, 0x44, 0x50, 0xa6, 0x9a, 0x04, 0xb7, 0x4c, 0x34, 0xce, - 0xd2, 0xa3, 0x57, 0x60, 0xcc, 0x89, 0x5a, 0x5b, 0x5e, 0x42, 0x5a, 0x49, 0x27, 0xe2, 0x17, 0xfc, - 0xb5, 0x50, 0x81, 0x79, 0x0d, 0x87, 0x0d, 0x4a, 0xfb, 0xab, 0x70, 0x32, 0x27, 0xf6, 0x9b, 0x0a, - 0x8e, 0xd3, 0xf6, 0x64, 0x9f, 0x32, 0x41, 0x49, 0xf3, 0x8d, 0x15, 0xd9, 0x1b, 0x8d, 0x8a, 0x4a, - 0x27, 0xf3, 0x1f, 0x6b, 0x69, 0xe2, 0x94, 0x74, 0x2e, 0x4b, 0x04, 0x4e, 0x69, 0xec, 0xff, 0x51, - 0x03, 0xcd, 0xdb, 0x52, 0x22, 0x14, 0xe5, 0x15, 0x18, 0x93, 0x99, 0x0f, 0xb5, 0x8c, 0x63, 0xaa, - 0x9b, 0x57, 0x35, 0x1c, 0x36, 0x28, 0x69, 0xdb, 0x02, 0xe9, 0x3b, 0xca, 0x86, 0x40, 0x29, 0xa7, - 0x12, 0x4e, 0x69, 0xd0, 0x45, 0x18, 0x89, 0x89, 0xbf, 0x71, 0xc3, 0x0b, 0xee, 0x0a, 0xc1, 0x56, - 0x5a, 0xb9, 0x29, 0xe0, 0x58, 0x51, 0xa0, 0xcf, 0x41, 0xb5, 0xe3, 0xb9, 0x42, 0x94, 0xe7, 0xa4, - 0xdd, 0x79, 0x7b, 0xa5, 0xfe, 0x60, 0x6f, 0x76, 0x36, 0x3f, 0x9d, 0x23, 0xdd, 0x4d, 0xc7, 0x73, - 0x74, 0xf2, 0xd1, 0xa2, 0x79, 0x6e, 0xf4, 0xa1, 0x3e, 0xdd, 0xe8, 0x57, 0x00, 0x44, 0x9f, 0xa5, - 0x24, 0x57, 0xd3, 0x6f, 0x76, 0x55, 0x61, 0xb0, 0x46, 0x45, 0xf7, 0xe4, 0xad, 0x88, 0x38, 0x72, - 0xd3, 0xca, 0x03, 0x93, 0x47, 0x3e, 0xc4, 0x9e, 0x7c, 0x31, 0xcb, 0x0d, 0x77, 0x57, 0x80, 0xda, - 0x70, 0xc2, 0xa5, 0xf3, 0xc8, 0xa8, 0xb5, 0x76, 0x88, 0x70, 0x68, 0x5a, 0x63, 0x3d, 0xcb, 0x09, - 0x77, 0x33, 0x47, 0xef, 0xc0, 0x8c, 0x04, 0x76, 0xdf, 0x7e, 0x64, 0xd3, 0xa5, 0xba, 0x70, 0x76, - 0x7f, 0x6f, 0x76, 0xa6, 0xde, 0x93, 0x0a, 0x1f, 0xc0, 0x01, 0xbd, 0x0d, 0x43, 0xec, 0xe0, 0x25, - 0x9e, 0x1e, 0x65, 0xab, 0xdd, 0x8b, 0x65, 0xfd, 0x8e, 0x73, 0xec, 0xf8, 0x46, 0xc4, 0x73, 0xa6, - 0x87, 0x59, 0x0c, 0x88, 0x05, 0x4f, 0xd4, 0x86, 0x51, 0x27, 0x08, 0xc2, 0xc4, 0xe1, 0x46, 0xd8, - 0x58, 0x19, 0x3b, 0x52, 0xab, 0x62, 0x3e, 0x2d, 0xcb, 0xeb, 0x51, 0x41, 0x62, 0x1a, 0x06, 0xeb, - 0x55, 0xd0, 0x65, 0x3c, 0xbc, 0x47, 0x15, 0xa6, 0x3c, 0x7b, 0x88, 0xa7, 0xc7, 0xcb, 0x2c, 0xe3, - 0xb7, 0x8c, 0x42, 0x9a, 0x06, 0x33, 0x99, 0xe1, 0x2c, 0x77, 0x34, 0x67, 0xb8, 0x93, 0x27, 0xd2, - 0x68, 0xe5, 0xd4, 0x9d, 0xac, 0x7b, 0x8f, 0xd9, 0xcd, 0x5a, 0x1e, 0xa1, 0xc8, 0x34, 0xc1, 0x64, - 0xe6, 0x66, 0x6d, 0x8a, 0xc2, 0x3a, 0xdd, 0xcc, 0xa7, 0x61, 0x54, 0x1b, 0xf0, 0x7e, 0xc2, 0x62, - 0x67, 0x5e, 0x87, 0xa9, 0xec, 0x40, 0xf6, 0x15, 0x56, 0xfb, 0xbf, 0x2a, 0x30, 0x99, 0x73, 0xa0, - 0x73, 0xd7, 0x63, 0x81, 0xe3, 0x86, 0xca, 0xbb, 0xee, 0x05, 0x2e, 0x66, 0x18, 0x53, 0x71, 0x55, - 0x4a, 0x28, 0x2e, 0xa9, 0x45, 0xab, 0x3d, 0xb5, 0xa8, 0x50, 0x56, 0x03, 0x87, 0x57, 0x56, 0xe6, - 0xea, 0x30, 0x58, 0x6a, 0x75, 0x78, 0x08, 0x0a, 0xce, 0x58, 0x60, 0x86, 0x4b, 0x2c, 0x30, 0x0f, - 0x2c, 0x98, 0x30, 0x25, 0xaf, 0xc4, 0x88, 0x3f, 0xaa, 0x03, 0x38, 0xc7, 0x36, 0x62, 0x49, 0x14, - 0xfa, 0x3e, 0x89, 0x44, 0xc0, 0xdc, 0x84, 0xd8, 0x57, 0x09, 0x28, 0xd6, 0x28, 0xec, 0x6f, 0x57, - 0x60, 0x2a, 0x8d, 0x9e, 0x16, 0x19, 0x60, 0x8f, 0xee, 0x84, 0x64, 0xcd, 0x38, 0x21, 0x29, 0x4a, - 0xec, 0x9a, 0x69, 0x57, 0xcf, 0xd3, 0x92, 0xb7, 0x33, 0xa7, 0x25, 0x2f, 0xf6, 0xc9, 0xf7, 0xe0, - 0x93, 0x93, 0x7f, 0x5e, 0x81, 0xd3, 0xd9, 0x22, 0x8b, 0xbe, 0xe3, 0x6d, 0x1f, 0xe1, 0x38, 0x7d, - 0xc1, 0x18, 0xa7, 0x97, 0xfb, 0xeb, 0x0f, 0x6b, 0x5c, 0xcf, 0xc1, 0x72, 0x32, 0x83, 0xf5, 0xe9, - 0xc3, 0x30, 0x3f, 0x78, 0xc4, 0x7e, 0xd7, 0x82, 0xc7, 0x73, 0xcb, 0x1d, 0x87, 0x27, 0xf8, 0x2d, - 0xd3, 0x13, 0xfc, 0xc2, 0x21, 0xba, 0xd7, 0xc3, 0x35, 0xfc, 0xdf, 0x2a, 0x3d, 0xba, 0xc5, 0xbc, - 0x65, 0xb7, 0x60, 0xd4, 0x69, 0xb5, 0x48, 0x1c, 0xaf, 0x86, 0xae, 0x4a, 0x49, 0xf4, 0x3c, 0x5b, - 0x3f, 0x53, 0xf0, 0x83, 0xbd, 0xd9, 0x99, 0x2c, 0x8b, 0x14, 0x8d, 0x75, 0x0e, 0x66, 0x6a, 0xb1, - 0xca, 0x11, 0xa5, 0x16, 0xbb, 0x02, 0xb0, 0xa3, 0x76, 0xe9, 0x59, 0x27, 0x9c, 0xb6, 0x7f, 0xd7, - 0xa8, 0xd0, 0x3b, 0xcc, 0xea, 0xe5, 0x91, 0x22, 0x03, 0x85, 0x13, 0xce, 0xf8, 0x80, 0x7a, 0xd8, - 0x09, 0xbf, 0x3a, 0xaa, 0x3c, 0x96, 0x8a, 0xa7, 0xfd, 0xdd, 0x2a, 0x7c, 0xf4, 0x00, 0xb1, 0x43, - 0xf3, 0xe6, 0x01, 0xf0, 0x73, 0x59, 0xf7, 0xd4, 0x4c, 0x6e, 0x61, 0xc3, 0x5f, 0x95, 0xf9, 0x58, - 0x95, 0x0f, 0xfd, 0xb1, 0xbe, 0xa5, 0x3b, 0x13, 0x79, 0xc4, 0xe7, 0xd5, 0x43, 0x4f, 0xac, 0x9f, - 0x4e, 0xe7, 0xff, 0xd7, 0x2d, 0xf8, 0x58, 0x6e, 0xa7, 0x8c, 0x38, 0x93, 0x4b, 0x50, 0x6b, 0x51, - 0xa0, 0x76, 0x25, 0x27, 0xbd, 0x69, 0x27, 0x11, 0x38, 0xa5, 0x31, 0xc2, 0x49, 0x2a, 0x85, 0xe1, - 0x24, 0xff, 0xc1, 0x82, 0x53, 0xd9, 0x46, 0x1c, 0x87, 0xd6, 0x69, 0x9a, 0x5a, 0x67, 0xae, 0xbf, - 0x6f, 0xdf, 0x43, 0xe1, 0x7c, 0x7b, 0x1c, 0xce, 0x74, 0x2d, 0x56, 0x7c, 0x18, 0x7f, 0xd6, 0x82, - 0x13, 0x9b, 0x6c, 0x7f, 0xa1, 0x5d, 0x7c, 0x12, 0x1d, 0x2b, 0xb8, 0x2d, 0x76, 0xe0, 0x7d, 0x29, - 0xbe, 0x5b, 0xea, 0x22, 0xc1, 0xdd, 0x95, 0xa1, 0x6f, 0x58, 0x70, 0xca, 0xb9, 0x17, 0x77, 0x3d, - 0x27, 0x20, 0xe4, 0xe8, 0xf5, 0x02, 0x57, 0x5e, 0xc1, 0x43, 0x04, 0x0b, 0xd3, 0xfb, 0x7b, 0xb3, - 0xa7, 0xf2, 0xa8, 0x70, 0x6e, 0xad, 0xe8, 0x6d, 0x91, 0x86, 0x8d, 0x9a, 0x7d, 0xa5, 0xae, 0xf0, - 0xe5, 0x5d, 0xc3, 0xe0, 0x3a, 0x49, 0x62, 0xb0, 0xe2, 0x88, 0xbe, 0x0c, 0xb5, 0x4d, 0x79, 0xd7, - 0x49, 0x28, 0xbd, 0x82, 0x95, 0x25, 0xf7, 0x6a, 0x14, 0x0f, 0xf6, 0x57, 0x28, 0x9c, 0x32, 0x45, - 0xd7, 0xa0, 0x1a, 0x6c, 0xc4, 0xe2, 0xda, 0x72, 0x51, 0x38, 0x91, 0x19, 0xbc, 0xc5, 0x2f, 0x62, - 0xde, 0x5c, 0x6e, 0x62, 0xca, 0x82, 0x72, 0x8a, 0xd6, 0x5d, 0xe1, 0xc3, 0x2e, 0xe0, 0x84, 0x17, - 0xea, 0xdd, 0x9c, 0xf0, 0x42, 0x1d, 0x53, 0x16, 0x2c, 0x6e, 0x31, 0x6e, 0xc5, 0x9e, 0x70, 0x50, - 0x17, 0xdc, 0x69, 0xef, 0xba, 0x9c, 0xc2, 0x33, 0xf2, 0x31, 0x30, 0xe6, 0x8c, 0xd0, 0x1a, 0x0c, - 0xb5, 0x58, 0x06, 0x6d, 0xe1, 0x3f, 0x28, 0xca, 0xab, 0xdc, 0x95, 0x6d, 0x9b, 0x1f, 0xa4, 0x71, - 0x38, 0x16, 0xbc, 0x18, 0x57, 0xd2, 0xde, 0xda, 0x88, 0x85, 0x7f, 0xa0, 0x88, 0x6b, 0x57, 0x2e, - 0x74, 0xc1, 0x95, 0xc1, 0xb1, 0xe0, 0x85, 0xea, 0x50, 0xd9, 0x68, 0x89, 0x34, 0x98, 0x05, 0x3b, - 0x5a, 0xf3, 0x56, 0xed, 0xc2, 0xd0, 0xfe, 0xde, 0x6c, 0x65, 0x79, 0x11, 0x57, 0x36, 0x5a, 0xe8, - 0x2d, 0x18, 0xde, 0xe0, 0xf7, 0x24, 0x45, 0xca, 0xcb, 0xcb, 0x45, 0x97, 0x39, 0xbb, 0x2e, 0x55, - 0xf2, 0x0b, 0x1d, 0x02, 0x81, 0x25, 0x3b, 0xf4, 0x0e, 0xc0, 0x86, 0xba, 0xf9, 0x29, 0x72, 0x5e, - 0xce, 0xf5, 0x77, 0x53, 0x54, 0xec, 0x9e, 0x15, 0x14, 0x6b, 0x1c, 0xa9, 0xcc, 0x3b, 0xf2, 0x11, - 0x00, 0x96, 0xef, 0xb2, 0x50, 0xe6, 0x73, 0xdf, 0x0c, 0xe0, 0x32, 0xaf, 0x50, 0x38, 0x65, 0x8a, - 0x3a, 0x30, 0xbe, 0x13, 0xb7, 0xb7, 0x88, 0x9c, 0xfa, 0x2c, 0x09, 0xe6, 0xe8, 0x95, 0xd7, 0x0a, - 0x32, 0x9b, 0x8a, 0x22, 0x5e, 0x94, 0x74, 0x1c, 0xbf, 0x4b, 0x83, 0xb1, 0x6c, 0x52, 0x6f, 0xea, - 0x6c, 0xb1, 0x59, 0x0b, 0xfd, 0x24, 0xef, 0x75, 0xc2, 0xf5, 0xdd, 0x84, 0x88, 0x24, 0x99, 0x05, - 0x9f, 0xe4, 0x0d, 0x4e, 0xdc, 0xfd, 0x49, 0x04, 0x02, 0x4b, 0x76, 0x6a, 0xc8, 0x98, 0x36, 0x9e, - 0x2a, 0x3d, 0x64, 0x5d, 0x7d, 0x48, 0x87, 0x8c, 0x69, 0xdf, 0x94, 0x29, 0xd3, 0xba, 0xed, 0xad, - 0x30, 0x09, 0x83, 0x8c, 0xee, 0x3f, 0x51, 0x46, 0xeb, 0x36, 0x72, 0x4a, 0x76, 0x6b, 0xdd, 0x3c, - 0x2a, 0x9c, 0x5b, 0xab, 0xfd, 0x07, 0x83, 0xdd, 0xeb, 0x2d, 0x33, 0x87, 0x7f, 0xa9, 0xfb, 0x74, - 0xf5, 0x73, 0xfd, 0x6f, 0xf7, 0x1e, 0xe2, 0x39, 0xeb, 0x37, 0x2c, 0x38, 0xd3, 0xce, 0x5d, 0x4c, - 0xc5, 0x82, 0xd5, 0xef, 0xae, 0x91, 0x0f, 0x98, 0xca, 0x00, 0x9b, 0x8f, 0xc7, 0x3d, 0xea, 0xcc, - 0x5a, 0xa0, 0xd5, 0x0f, 0x6d, 0x81, 0xde, 0x81, 0x11, 0x66, 0x34, 0xa5, 0x29, 0x48, 0xfa, 0xcc, - 0xda, 0xc1, 0x96, 0xbe, 0x45, 0xc1, 0x02, 0x2b, 0x66, 0x74, 0xe0, 0x9e, 0xcc, 0x76, 0x02, 0x13, - 0x86, 0x16, 0xa9, 0x6b, 0xb9, 0x6b, 0x62, 0x59, 0x8c, 0xc4, 0x93, 0x8d, 0x83, 0x88, 0x1f, 0x14, - 0x11, 0xe0, 0x83, 0x2b, 0x3b, 0x4e, 0x8b, 0xf6, 0x9f, 0x58, 0x39, 0xf6, 0x17, 0xdf, 0x83, 0xbc, - 0x66, 0xee, 0x41, 0xce, 0x67, 0xf7, 0x20, 0x5d, 0x1e, 0x03, 0x63, 0xfb, 0x51, 0x3e, 0x7d, 0x63, - 0xd9, 0x1c, 0x29, 0xb6, 0x0f, 0xe7, 0x8a, 0x26, 0x37, 0x8b, 0x63, 0x72, 0xd5, 0xa1, 0x60, 0x1a, - 0xc7, 0xe4, 0xae, 0xd4, 0x31, 0xc3, 0x94, 0xbd, 0x05, 0x6f, 0xff, 0x1f, 0x0b, 0xaa, 0x8d, 0xd0, - 0x3d, 0x42, 0x0f, 0xc8, 0x55, 0xc3, 0x03, 0xf2, 0x74, 0xe1, 0xd3, 0x47, 0x3d, 0xfd, 0x1d, 0xb7, - 0x32, 0xfe, 0x8e, 0x4f, 0x14, 0xb3, 0x3a, 0xd8, 0xbb, 0xf1, 0xbd, 0x2a, 0xe8, 0x8f, 0x37, 0xa1, - 0xdf, 0x3e, 0x4c, 0x64, 0x6b, 0xb5, 0xdc, 0x7b, 0x4e, 0xa2, 0x0e, 0x16, 0x00, 0x25, 0xaf, 0xbd, - 0xfd, 0xd4, 0x06, 0xb8, 0xde, 0x21, 0xde, 0xe6, 0x56, 0x42, 0xdc, 0x6c, 0xc7, 0x8e, 0x2f, 0xc0, - 0xf5, 0xbf, 0x5b, 0x30, 0x99, 0xa9, 0x1d, 0x6d, 0xe7, 0xdd, 0x9c, 0x39, 0xac, 0x4b, 0xe3, 0x44, - 0xe1, 0x5d, 0x9b, 0x39, 0x00, 0xe5, 0x86, 0x97, 0x8e, 0x07, 0x66, 0x84, 0x29, 0x3f, 0x7d, 0x8c, - 0x35, 0x0a, 0xf4, 0x12, 0x8c, 0x26, 0x61, 0x3b, 0xf4, 0xc3, 0xcd, 0xdd, 0xeb, 0x44, 0x26, 0x66, - 0x50, 0x47, 0x18, 0x6b, 0x29, 0x0a, 0xeb, 0x74, 0xf6, 0x0f, 0xaa, 0x90, 0x7d, 0xfb, 0xeb, 0xcf, - 0x05, 0xf5, 0xa7, 0x47, 0x50, 0x7f, 0xcf, 0x82, 0x29, 0x5a, 0x3b, 0x8b, 0x5f, 0x91, 0x61, 0xa8, - 0x2a, 0xeb, 0xba, 0x75, 0x40, 0xd6, 0xf5, 0xf3, 0x54, 0xdd, 0xb9, 0x61, 0x47, 0x66, 0x02, 0xd2, - 0xb4, 0x18, 0x85, 0x62, 0x81, 0x15, 0x74, 0x24, 0x8a, 0xc4, 0x1d, 0x1d, 0x9d, 0x8e, 0x44, 0x11, - 0x16, 0x58, 0x99, 0x94, 0x7d, 0x20, 0x3f, 0x29, 0x3b, 0x4f, 0x9c, 0x24, 0xe2, 0x26, 0x84, 0x1d, - 0xa0, 0x25, 0x4e, 0x92, 0x01, 0x15, 0x29, 0x8d, 0xfd, 0x2f, 0xab, 0x30, 0xd6, 0x08, 0xdd, 0x34, - 0xc4, 0xfc, 0x45, 0x23, 0xc4, 0xfc, 0x5c, 0x26, 0xc4, 0x7c, 0x4a, 0xa7, 0x7d, 0x38, 0x11, 0xe6, - 0x22, 0xc5, 0x16, 0x7b, 0x36, 0xe0, 0xb0, 0xd1, 0xe5, 0x46, 0x8a, 0x2d, 0xc5, 0x09, 0x9b, 0x8c, - 0xff, 0x4c, 0x45, 0x95, 0xff, 0x89, 0x05, 0x13, 0x8d, 0xd0, 0xa5, 0x22, 0xfa, 0x67, 0x49, 0x1e, - 0xf5, 0xc4, 0x5c, 0x43, 0x07, 0x24, 0xe6, 0xfa, 0x35, 0x0b, 0x86, 0x1b, 0xa1, 0x7b, 0x1c, 0xae, - 0xc4, 0x65, 0xd3, 0x95, 0xf8, 0xb1, 0x42, 0xe5, 0xdb, 0xc3, 0x7b, 0xf8, 0x9b, 0x55, 0x18, 0xa7, - 0x4d, 0x0e, 0x37, 0xe5, 0x07, 0x33, 0x06, 0xc7, 0x2a, 0x31, 0x38, 0xd4, 0x1c, 0x0c, 0x7d, 0x3f, - 0xbc, 0x97, 0xfd, 0x78, 0xcb, 0x0c, 0x8a, 0x05, 0x16, 0x5d, 0x84, 0x91, 0x76, 0x44, 0x76, 0xbc, - 0xb0, 0x13, 0x67, 0xaf, 0xfc, 0x35, 0x04, 0x1c, 0x2b, 0x0a, 0xf4, 0x22, 0x8c, 0xc5, 0x5e, 0xd0, - 0x22, 0x32, 0xb0, 0x62, 0x80, 0x05, 0x56, 0xf0, 0xfc, 0x87, 0x1a, 0x1c, 0x1b, 0x54, 0xe8, 0x2d, - 0xa8, 0xb1, 0xff, 0x6c, 0x0e, 0x1d, 0x22, 0x53, 0x3c, 0x4f, 0xce, 0x25, 0x39, 0xe0, 0x94, 0x19, - 0xba, 0x02, 0x90, 0xc8, 0x18, 0x90, 0x58, 0x9c, 0x99, 0x2a, 0xe3, 0x54, 0x45, 0x87, 0xc4, 0x58, - 0xa3, 0x42, 0xcf, 0x41, 0x2d, 0x71, 0x3c, 0xff, 0x86, 0x17, 0x90, 0x58, 0x44, 0xd1, 0x88, 0x3c, - 0xbe, 0x02, 0x88, 0x53, 0x3c, 0x5d, 0xf3, 0xd9, 0x85, 0x63, 0xfe, 0x0e, 0xc5, 0x08, 0xa3, 0x66, - 0x6b, 0xfe, 0x0d, 0x05, 0xc5, 0x1a, 0x85, 0xfd, 0x02, 0x5b, 0xbb, 0xfb, 0xbc, 0x82, 0xf0, 0x93, - 0x0a, 0xa0, 0x06, 0x8b, 0x35, 0x31, 0x9e, 0xea, 0xd8, 0x82, 0x89, 0x98, 0xdc, 0xf0, 0x82, 0xce, - 0x7d, 0xc1, 0xaa, 0xdc, 0xa5, 0x8f, 0xe6, 0x92, 0x5e, 0x86, 0x5f, 0xb2, 0x35, 0x61, 0x38, 0xc3, - 0x97, 0x0e, 0x49, 0xd4, 0x09, 0xe6, 0xe3, 0xdb, 0x31, 0x89, 0xc4, 0x63, 0x1b, 0x6c, 0x48, 0xb0, - 0x04, 0xe2, 0x14, 0x4f, 0x65, 0x80, 0xfd, 0xb9, 0x19, 0x06, 0x38, 0x0c, 0x13, 0x29, 0x35, 0x2c, - 0xf3, 0xba, 0x06, 0xc7, 0x06, 0x15, 0x5a, 0x06, 0x14, 0x77, 0xda, 0x6d, 0x9f, 0x1d, 0x6d, 0x39, - 0xfe, 0xd5, 0x28, 0xec, 0xb4, 0x79, 0xb8, 0xb1, 0x48, 0x5a, 0xde, 0xec, 0xc2, 0xe2, 0x9c, 0x12, - 0x74, 0xd2, 0x6f, 0xc4, 0xec, 0xb7, 0xb8, 0x44, 0xcc, 0x1d, 0x6c, 0x4d, 0x06, 0xc2, 0x12, 0x67, - 0x77, 0xd8, 0x52, 0xc5, 0x1e, 0x41, 0x48, 0x3a, 0x11, 0x41, 0x04, 0xc6, 0xdb, 0x6c, 0x39, 0x92, - 0xe7, 0xeb, 0xa5, 0x86, 0x32, 0x13, 0xed, 0xc2, 0x93, 0x9d, 0xeb, 0x6c, 0xb0, 0xc9, 0xd5, 0xfe, - 0x4f, 0xc0, 0x74, 0x8d, 0x38, 0x55, 0x1c, 0x16, 0xb1, 0xac, 0xc2, 0x16, 0xfb, 0x78, 0x99, 0x57, - 0x7f, 0x52, 0x3d, 0x2e, 0x22, 0x63, 0xb1, 0xe4, 0x82, 0xbe, 0xc4, 0x03, 0x04, 0xd8, 0xfc, 0x2e, - 0xff, 0x14, 0x17, 0xa7, 0x37, 0xa2, 0xb4, 0x05, 0x0b, 0xac, 0xb1, 0x43, 0x37, 0x60, 0x5c, 0x64, - 0xca, 0x17, 0x9e, 0x81, 0xaa, 0xb1, 0x3b, 0x1e, 0xc7, 0x3a, 0xf2, 0x41, 0x16, 0x80, 0xcd, 0xc2, - 0x68, 0x13, 0x9e, 0xd4, 0x9e, 0xcf, 0xc9, 0x89, 0xc8, 0xe2, 0x8a, 0xe3, 0x63, 0xfb, 0x7b, 0xb3, - 0x4f, 0xae, 0x1d, 0x44, 0x88, 0x0f, 0xe6, 0x83, 0x6e, 0xc1, 0x69, 0xa7, 0x95, 0x78, 0x3b, 0xa4, - 0x4e, 0x1c, 0xd7, 0xf7, 0x02, 0x62, 0xde, 0x30, 0x7f, 0x7c, 0x7f, 0x6f, 0xf6, 0xf4, 0x7c, 0x1e, - 0x01, 0xce, 0x2f, 0x87, 0x5e, 0x83, 0x9a, 0x1b, 0xc4, 0x62, 0x0c, 0x86, 0x8c, 0x97, 0x82, 0x6a, - 0xf5, 0x9b, 0x4d, 0xd5, 0xff, 0xf4, 0x0f, 0x4e, 0x0b, 0xa0, 0xf7, 0xf8, 0x03, 0xc6, 0x6a, 0x43, - 0xc2, 0x5f, 0xa8, 0x7a, 0xb9, 0xd4, 0x16, 0xd8, 0xb8, 0x05, 0xc2, 0x9d, 0x66, 0x2a, 0xf2, 0xd1, - 0xb8, 0x20, 0x62, 0x54, 0x81, 0x3e, 0x0f, 0x28, 0x26, 0xd1, 0x8e, 0xd7, 0x22, 0xf3, 0x2d, 0x96, - 0xf9, 0x93, 0x1d, 0xcf, 0x8d, 0x18, 0xe1, 0xff, 0xa8, 0xd9, 0x45, 0x81, 0x73, 0x4a, 0xa1, 0x6b, - 0x54, 0xe3, 0xe8, 0x50, 0x11, 0xa8, 0x2a, 0x4d, 0xbb, 0xe9, 0x3a, 0x69, 0x47, 0xa4, 0xe5, 0x24, - 0xc4, 0x35, 0x39, 0xe2, 0x4c, 0x39, 0xba, 0xac, 0xa8, 0x8c, 0xe6, 0x60, 0x86, 0x57, 0x76, 0x67, - 0x35, 0xa7, 0x3b, 0xa5, 0xad, 0x30, 0x4e, 0x6e, 0x92, 0xe4, 0x5e, 0x18, 0xdd, 0x65, 0xce, 0xf6, - 0x11, 0x2d, 0xd3, 0x59, 0x8a, 0xc2, 0x3a, 0x1d, 0xb5, 0x81, 0xd8, 0x29, 0xcf, 0x4a, 0x9d, 0xb9, - 0xd0, 0x47, 0xd2, 0xb9, 0x73, 0x8d, 0x83, 0xb1, 0xc4, 0x4b, 0xd2, 0x95, 0xc6, 0x22, 0x73, 0x87, - 0x67, 0x48, 0x57, 0x1a, 0x8b, 0x58, 0xe2, 0x51, 0xd8, 0xfd, 0x1e, 0xd3, 0x44, 0x99, 0xa3, 0x89, - 0x6e, 0x0d, 0x5e, 0xf2, 0x49, 0xa6, 0xfb, 0x30, 0xa5, 0xde, 0x84, 0xe2, 0x29, 0x28, 0xe3, 0xe9, - 0xc9, 0x32, 0xcf, 0x27, 0xe7, 0x66, 0xb2, 0x54, 0x91, 0xc9, 0x2b, 0x19, 0x9e, 0xb8, 0xab, 0x16, - 0x23, 0x53, 0xc2, 0x54, 0x61, 0x96, 0xfa, 0x4b, 0x50, 0x8b, 0x3b, 0xeb, 0x6e, 0xb8, 0xed, 0x78, - 0x01, 0xf3, 0x59, 0xeb, 0x8f, 0x01, 0x4b, 0x04, 0x4e, 0x69, 0x66, 0x3e, 0x0b, 0x27, 0xba, 0x64, - 0xba, 0xaf, 0x90, 0xba, 0x5f, 0x1a, 0x80, 0x9a, 0xf2, 0xea, 0xa0, 0x4b, 0xa6, 0xe3, 0xee, 0xf1, - 0xac, 0xe3, 0x6e, 0x84, 0xae, 0xbc, 0xba, 0xaf, 0xee, 0x9d, 0x9c, 0xd7, 0x40, 0x9f, 0x2d, 0xfc, - 0x88, 0xe5, 0x6f, 0xb6, 0xf4, 0xf1, 0x56, 0x6a, 0x6a, 0xd6, 0x0f, 0x1c, 0x68, 0xd6, 0x97, 0x7c, - 0xec, 0x89, 0x1a, 0xf0, 0xed, 0xd0, 0x5d, 0x69, 0x64, 0x1f, 0x32, 0x69, 0x50, 0x20, 0xe6, 0x38, - 0x66, 0x77, 0x51, 0xa5, 0xcc, 0xec, 0xae, 0xe1, 0xc3, 0xda, 0x5d, 0x92, 0x03, 0x4e, 0x99, 0xa1, - 0x1d, 0x38, 0xd1, 0x32, 0x1f, 0xa6, 0x51, 0x17, 0x56, 0x9e, 0xef, 0xe3, 0x61, 0x98, 0x8e, 0x96, - 0x84, 0x7f, 0x31, 0xcb, 0x0f, 0x77, 0x57, 0x61, 0xff, 0x80, 0x7b, 0x81, 0xc4, 0xb6, 0x90, 0xc4, - 0x1d, 0xff, 0x28, 0x73, 0x6a, 0xdf, 0x32, 0x76, 0xaa, 0x0f, 0xc1, 0xff, 0xf8, 0x5b, 0x16, 0xf3, - 0x3f, 0xae, 0x91, 0xed, 0xb6, 0xef, 0x24, 0x47, 0x19, 0xad, 0xf7, 0x25, 0x18, 0x49, 0x44, 0x2d, - 0xe5, 0x12, 0x81, 0x6b, 0xcd, 0x62, 0xfe, 0x58, 0xa5, 0x08, 0x24, 0x14, 0x2b, 0x86, 0xf6, 0xbf, - 0xe1, 0x5f, 0x41, 0x62, 0x8e, 0x63, 0x67, 0x75, 0xd3, 0xdc, 0x59, 0x3d, 0x53, 0xba, 0x33, 0x3d, - 0x76, 0x58, 0xdf, 0x35, 0xbb, 0xc0, 0x0c, 0xb6, 0x47, 0xdf, 0x23, 0x6e, 0xaf, 0x82, 0xf9, 0xd8, - 0x0e, 0x7a, 0x8d, 0x87, 0xaa, 0x72, 0x8d, 0xf8, 0x6c, 0x9f, 0x61, 0xaa, 0xf6, 0x6f, 0x54, 0xe0, - 0x54, 0xde, 0x1b, 0xfc, 0xc8, 0x85, 0xb1, 0xb6, 0x66, 0x3e, 0x97, 0xcb, 0xe7, 0xa0, 0x1b, 0xdc, - 0xa9, 0xe9, 0xa2, 0x43, 0xb1, 0xc1, 0x15, 0x11, 0x18, 0x23, 0x3b, 0x5e, 0x4b, 0xb9, 0x57, 0x2a, - 0xfd, 0xab, 0x28, 0x55, 0xcd, 0x92, 0xc6, 0x08, 0x1b, 0x6c, 0x8f, 0x20, 0x57, 0xbd, 0xfd, 0x8f, - 0x2c, 0x78, 0xac, 0x47, 0xd2, 0x07, 0x5a, 0xdd, 0x3d, 0xe6, 0x85, 0x14, 0x8f, 0x39, 0xa9, 0xea, - 0xb8, 0x6f, 0x12, 0x0b, 0x2c, 0x5a, 0x07, 0xe0, 0xbe, 0x45, 0xf6, 0xc2, 0x6d, 0xa5, 0x4c, 0x0c, - 0x40, 0xd7, 0xcd, 0x6a, 0xed, 0xd2, 0xad, 0x7a, 0xd3, 0x56, 0xe3, 0x6a, 0x7f, 0xa7, 0x0a, 0x83, - 0xfc, 0x91, 0xcd, 0x06, 0x0c, 0x6f, 0xf1, 0x1c, 0x93, 0xfd, 0xa5, 0xb8, 0x4c, 0xed, 0x24, 0x0e, - 0xc0, 0x92, 0x0d, 0x5a, 0x85, 0x93, 0x5e, 0xe0, 0x25, 0x9e, 0xe3, 0xd7, 0x89, 0xef, 0xec, 0x4a, - 0xc3, 0x9b, 0xe7, 0x17, 0x97, 0xa9, 0x70, 0x4f, 0xae, 0x74, 0x93, 0xe0, 0xbc, 0x72, 0xe8, 0xf5, - 0xae, 0x24, 0x51, 0x3c, 0x77, 0xa7, 0xba, 0xab, 0x75, 0x70, 0xa2, 0x28, 0xf4, 0x2a, 0x8c, 0xb7, - 0xbb, 0xb6, 0x18, 0xda, 0xeb, 0x8c, 0xe6, 0xb6, 0xc2, 0xa4, 0x45, 0x75, 0x98, 0x8a, 0x3b, 0xec, - 0x44, 0x76, 0x6d, 0x2b, 0x22, 0xf1, 0x56, 0xe8, 0xbb, 0xe2, 0x55, 0x31, 0x65, 0x4e, 0x35, 0x33, - 0x78, 0xdc, 0x55, 0x82, 0x72, 0xd9, 0x70, 0x3c, 0xbf, 0x13, 0x91, 0x94, 0xcb, 0x90, 0xc9, 0x65, - 0x39, 0x83, 0xc7, 0x5d, 0x25, 0xec, 0x3f, 0xb2, 0xe0, 0x64, 0x4e, 0xd8, 0x02, 0x8f, 0xa6, 0xdb, - 0xf4, 0xe2, 0x44, 0x65, 0x91, 0xd6, 0xa2, 0xe9, 0x38, 0x1c, 0x2b, 0x0a, 0x2a, 0x85, 0x7c, 0xdf, - 0x98, 0x3d, 0x0e, 0x14, 0x07, 0xb3, 0x02, 0xdb, 0x5f, 0xca, 0x27, 0x74, 0x0e, 0x06, 0x3a, 0x31, - 0x91, 0x2f, 0xbe, 0x2b, 0x0d, 0xc5, 0x5c, 0x04, 0x0c, 0x43, 0x0d, 0x93, 0x4d, 0xb5, 0x3b, 0xd7, - 0x0c, 0x13, 0xbe, 0x3f, 0xe7, 0x38, 0xfb, 0x5b, 0x55, 0x98, 0xcc, 0x84, 0x2f, 0xd1, 0x86, 0x6c, - 0x87, 0x81, 0x97, 0x84, 0x2a, 0xdb, 0x10, 0x73, 0x29, 0x2c, 0x92, 0xf6, 0xd6, 0xaa, 0x80, 0x63, - 0x45, 0x81, 0xce, 0x9b, 0x2f, 0x1e, 0xa7, 0x6d, 0x5e, 0xa8, 0x1b, 0x6f, 0xb9, 0x95, 0xcd, 0x6c, - 0xff, 0x14, 0x0c, 0xb4, 0x43, 0xf5, 0x34, 0xa7, 0x12, 0x7a, 0xbc, 0x50, 0x6f, 0x84, 0xa1, 0x8f, - 0x19, 0x12, 0x3d, 0x2d, 0x7a, 0x9f, 0x71, 0x4e, 0x62, 0xc7, 0x0d, 0x63, 0x6d, 0x08, 0x9e, 0x81, - 0xe1, 0xbb, 0x64, 0x37, 0xf2, 0x82, 0xcd, 0xac, 0x6b, 0xf6, 0x3a, 0x07, 0x63, 0x89, 0x37, 0xb3, - 0xd7, 0x0f, 0x1f, 0x71, 0xf6, 0xfa, 0x91, 0xc2, 0x10, 0xcc, 0x5f, 0xb5, 0x60, 0x92, 0xa5, 0xde, - 0x13, 0xd7, 0x60, 0xbd, 0x30, 0x38, 0xc2, 0x55, 0xf1, 0x29, 0x18, 0x8c, 0x68, 0x65, 0xd9, 0xc4, - 0xd3, 0xac, 0x05, 0x98, 0xe3, 0xd0, 0x13, 0xe2, 0xe1, 0x78, 0xfa, 0xf9, 0xc6, 0x78, 0x22, 0xdf, - 0xf4, 0x05, 0x78, 0x16, 0xe0, 0x8f, 0x49, 0xdb, 0xf7, 0x78, 0x63, 0x53, 0x4f, 0xcc, 0xa3, 0x12, - 0xe0, 0x9f, 0xdb, 0xb8, 0x87, 0x15, 0xe0, 0x9f, 0xcf, 0xfc, 0x60, 0x13, 0xf4, 0x7f, 0x56, 0xe0, - 0x6c, 0x6e, 0xb9, 0xf4, 0x58, 0x67, 0xd9, 0x38, 0xd6, 0xb9, 0x92, 0x39, 0xd6, 0xb1, 0x0f, 0x2e, - 0xfd, 0x70, 0x0e, 0x7a, 0xf2, 0x8f, 0x5f, 0xaa, 0xc7, 0x79, 0xfc, 0x32, 0x50, 0xd6, 0x56, 0x18, - 0x2c, 0xb0, 0x15, 0x7e, 0xd7, 0x82, 0xc7, 0x73, 0xc7, 0xec, 0xd1, 0xbb, 0x52, 0x91, 0xdb, 0xcc, - 0x1e, 0x16, 0xf4, 0xdf, 0xa8, 0xf6, 0xe8, 0x16, 0xb3, 0xa5, 0x2f, 0x50, 0xbd, 0xc3, 0x90, 0xb1, - 0x30, 0x83, 0xc6, 0xb8, 0xce, 0xe1, 0x30, 0xac, 0xb0, 0x28, 0xd6, 0xae, 0x24, 0xf0, 0x46, 0x2e, - 0x1d, 0x72, 0x4a, 0xcd, 0x99, 0xce, 0x33, 0xfd, 0x3e, 0x6f, 0xe6, 0x9e, 0x02, 0xba, 0xa3, 0x6d, - 0x8f, 0xaa, 0x87, 0xd9, 0x1e, 0x8d, 0xe5, 0x6f, 0x8d, 0xd0, 0x3c, 0x4c, 0x6e, 0x7b, 0x01, 0x7b, - 0x3a, 0xce, 0xb4, 0x43, 0xd4, 0x2d, 0xb8, 0x55, 0x13, 0x8d, 0xb3, 0xf4, 0x33, 0xaf, 0xc2, 0xf8, - 0xe1, 0x3d, 0x26, 0x1f, 0x54, 0xe1, 0xa3, 0x07, 0xa8, 0x05, 0xbe, 0x1e, 0x18, 0xdf, 0x45, 0x5b, - 0x0f, 0xba, 0xbe, 0x4d, 0x03, 0x4e, 0x6d, 0x74, 0x7c, 0x7f, 0x97, 0x85, 0x45, 0x10, 0x57, 0x52, - 0x08, 0x1b, 0x4f, 0x3d, 0xea, 0xba, 0x9c, 0x43, 0x83, 0x73, 0x4b, 0xa2, 0xcf, 0x03, 0x0a, 0xd7, - 0x59, 0x3e, 0x4a, 0x37, 0xbd, 0xb1, 0xcc, 0x3e, 0x41, 0x35, 0x9d, 0xab, 0xb7, 0xba, 0x28, 0x70, - 0x4e, 0x29, 0x6a, 0xf1, 0xb1, 0xf7, 0x60, 0x55, 0xb3, 0x32, 0x16, 0x1f, 0xd6, 0x91, 0xd8, 0xa4, - 0x45, 0x57, 0xe1, 0x84, 0xb3, 0xe3, 0x78, 0x3c, 0xdb, 0x8c, 0x64, 0xc0, 0x4d, 0x3e, 0xe5, 0x92, - 0x98, 0xcf, 0x12, 0xe0, 0xee, 0x32, 0xa8, 0x6d, 0x38, 0x99, 0x78, 0xfe, 0xe9, 0xd7, 0x0e, 0x21, - 0xc1, 0xa5, 0xdd, 0x4e, 0xf6, 0x1f, 0x5a, 0x74, 0xd1, 0xcb, 0x79, 0x6a, 0xcd, 0x78, 0xa1, 0x5c, - 0xbb, 0xa5, 0xd1, 0xfd, 0x42, 0x39, 0xf3, 0xbf, 0x9a, 0xb4, 0x5c, 0x34, 0xe2, 0x34, 0xac, 0xd2, - 0xb0, 0x2f, 0xc5, 0xed, 0x24, 0x45, 0x81, 0xee, 0xc0, 0xb0, 0xeb, 0xed, 0x78, 0x71, 0x18, 0x95, - 0x78, 0x10, 0xb8, 0x2b, 0x54, 0x2f, 0x55, 0x97, 0x75, 0xce, 0x04, 0x4b, 0x6e, 0xf6, 0xdf, 0xaa, - 0xc0, 0xb8, 0xac, 0xef, 0x8d, 0x4e, 0xc8, 0x74, 0xd8, 0x51, 0x2d, 0xe5, 0x6f, 0x18, 0x4b, 0xf9, - 0xa5, 0x72, 0x57, 0xb4, 0x58, 0xa3, 0x7a, 0x2e, 0xe1, 0x5f, 0xc8, 0x2c, 0xe1, 0x97, 0xfb, 0x61, - 0x5a, 0xe8, 0x3d, 0x3a, 0x61, 0xd0, 0x3f, 0x42, 0xf9, 0x8f, 0xf3, 0xba, 0xd3, 0x63, 0xe1, 0xf8, - 0x4e, 0x25, 0xd3, 0x0d, 0xb6, 0x60, 0x7c, 0x0d, 0x06, 0xb6, 0x9c, 0xc8, 0x2d, 0x97, 0x6f, 0xad, - 0xab, 0xf8, 0xdc, 0x35, 0x27, 0x72, 0xb9, 0xda, 0xbf, 0xa8, 0x1e, 0x6a, 0x71, 0x22, 0xb7, 0x30, - 0xc8, 0x98, 0x55, 0x8a, 0x5e, 0x81, 0xa1, 0xb8, 0x15, 0xb6, 0x55, 0x54, 0xd7, 0x39, 0xfe, 0x88, - 0x0b, 0x85, 0x3c, 0xd8, 0x9b, 0x45, 0x66, 0x75, 0x14, 0x8c, 0x05, 0xfd, 0x0c, 0x81, 0x9a, 0xaa, - 0xfa, 0x08, 0xc3, 0x59, 0x3f, 0xa8, 0xc2, 0xc9, 0x1c, 0x51, 0x41, 0x3f, 0x63, 0x8c, 0xda, 0xab, - 0x7d, 0xcb, 0xda, 0x87, 0x1c, 0xb7, 0x9f, 0x61, 0x1b, 0x22, 0x57, 0xc8, 0xc6, 0x21, 0xaa, 0xbf, - 0x1d, 0x93, 0x6c, 0xf5, 0x14, 0x54, 0x5c, 0x3d, 0xad, 0xf6, 0x98, 0x06, 0x9f, 0x56, 0xa3, 0xda, - 0x79, 0x84, 0xdf, 0xf8, 0xfd, 0x01, 0x38, 0x95, 0x77, 0x0d, 0x14, 0xfd, 0xbc, 0x95, 0xc9, 0xa0, - 0xfe, 0x7a, 0xff, 0x77, 0x49, 0x79, 0x5a, 0x75, 0x91, 0x1e, 0x62, 0xce, 0xcc, 0xa9, 0x5e, 0x38, - 0xda, 0xa2, 0x76, 0x76, 0x31, 0x20, 0xe2, 0xc9, 0xf0, 0xa5, 0x3e, 0xf8, 0xdc, 0x21, 0x9a, 0x22, - 0xf2, 0xe9, 0xc7, 0x99, 0x8b, 0x01, 0x12, 0x5c, 0x7c, 0x31, 0x40, 0xb6, 0x61, 0x66, 0x13, 0x46, - 0xb5, 0x7e, 0x1d, 0xa1, 0x08, 0x78, 0x74, 0x4d, 0xd2, 0x5a, 0x7d, 0x84, 0x62, 0xf0, 0x77, 0x2c, - 0xc8, 0x84, 0x6b, 0x28, 0xaf, 0x8b, 0xd5, 0xd3, 0xeb, 0x72, 0x0e, 0x06, 0xa2, 0xd0, 0x27, 0xd9, - 0xd4, 0xde, 0x38, 0xf4, 0x09, 0x66, 0x18, 0xf5, 0x1c, 0x64, 0xb5, 0xd7, 0x73, 0x90, 0x74, 0x3b, - 0xee, 0x93, 0x1d, 0x22, 0x7d, 0x20, 0x4a, 0x79, 0xdf, 0xa0, 0x40, 0xcc, 0x71, 0xf6, 0x8f, 0xaa, - 0x30, 0xc4, 0x1d, 0x0d, 0x47, 0xb8, 0x2c, 0x37, 0xc4, 0x9e, 0xbf, 0xd4, 0x85, 0x4c, 0xde, 0x9a, - 0xb9, 0xba, 0x93, 0x38, 0x5c, 0xa0, 0x54, 0xdf, 0x52, 0x3f, 0x01, 0x9a, 0x33, 0x7a, 0x3f, 0x93, - 0xd9, 0xd2, 0x02, 0xe7, 0xa1, 0x8d, 0xc5, 0x16, 0x40, 0xcc, 0x5e, 0x06, 0xa3, 0x3c, 0x44, 0x52, - 0xbc, 0x17, 0x4b, 0xb5, 0xa3, 0xa9, 0x8a, 0xf1, 0xd6, 0xa4, 0xd9, 0xb8, 0x14, 0x02, 0x6b, 0xbc, - 0x67, 0x5e, 0x86, 0x9a, 0x22, 0x2e, 0xb2, 0xf4, 0xc7, 0x74, 0x91, 0xfc, 0x0b, 0x30, 0x99, 0xa9, - 0xab, 0xaf, 0x8d, 0xc2, 0xf7, 0x2d, 0x38, 0xd1, 0xf5, 0x92, 0x2d, 0x7a, 0xdf, 0x82, 0x53, 0x7e, - 0x8e, 0x87, 0x49, 0x7c, 0xe0, 0xc3, 0xf8, 0xa6, 0xd4, 0x2e, 0x21, 0x0f, 0x8b, 0x73, 0x6b, 0x93, - 0x69, 0x3e, 0x2b, 0xf9, 0x69, 0x3e, 0xd9, 0x73, 0x48, 0xbc, 0xed, 0xc7, 0x61, 0x01, 0xad, 0x98, - 0x16, 0xd0, 0xc7, 0xcb, 0x88, 0x41, 0x0f, 0xd3, 0xe7, 0xdf, 0x5b, 0x80, 0x38, 0x41, 0xf6, 0x85, - 0x40, 0xee, 0xb1, 0xd3, 0x6c, 0xf6, 0x54, 0x6e, 0x14, 0x06, 0x6b, 0x54, 0x7d, 0x66, 0x7f, 0x57, - 0x2f, 0x6b, 0x95, 0x7b, 0xbe, 0xbf, 0x5a, 0xe2, 0xf9, 0xfe, 0xdf, 0xaa, 0x42, 0x36, 0xb4, 0x01, - 0x7d, 0x19, 0xc6, 0x5a, 0x4e, 0xdb, 0x59, 0xf7, 0x7c, 0x2f, 0xf1, 0x48, 0x5c, 0xee, 0xd8, 0x68, - 0x51, 0x2b, 0x21, 0x7c, 0xbe, 0x1a, 0x04, 0x1b, 0x1c, 0xd1, 0x1c, 0x40, 0x3b, 0xf2, 0x76, 0x3c, - 0x9f, 0x6c, 0x32, 0xbb, 0x43, 0x25, 0x49, 0x69, 0x28, 0x28, 0xd6, 0x28, 0x72, 0x62, 0xe8, 0xaa, - 0xc7, 0x11, 0x43, 0x37, 0xd0, 0x67, 0x0c, 0xdd, 0x60, 0xa9, 0x18, 0x3a, 0x0c, 0x67, 0xa4, 0xab, - 0x96, 0xfe, 0x5f, 0xf6, 0x7c, 0xc2, 0xf3, 0xfa, 0x89, 0xc8, 0xc7, 0x99, 0xfd, 0xbd, 0xd9, 0x33, - 0x38, 0x97, 0x02, 0xf7, 0x28, 0x69, 0x77, 0xe0, 0x64, 0x93, 0x44, 0x1e, 0x4b, 0xbb, 0xe4, 0xa6, - 0x33, 0xf0, 0x1d, 0xa8, 0x45, 0x99, 0xc9, 0xdf, 0xe7, 0x9d, 0x34, 0x2d, 0x79, 0x85, 0x9c, 0xec, - 0x29, 0x4b, 0xfb, 0xaf, 0x54, 0x60, 0x58, 0x84, 0x10, 0x1d, 0xe1, 0x42, 0x72, 0xdd, 0xd8, 0xdf, - 0x3d, 0x53, 0x34, 0x73, 0x59, 0x73, 0x7a, 0xee, 0xec, 0x9a, 0x99, 0x9d, 0xdd, 0x73, 0xe5, 0xd8, - 0x1d, 0xbc, 0xa7, 0xfb, 0x61, 0x05, 0x26, 0xcc, 0x50, 0xaa, 0x23, 0x1c, 0x8e, 0xb7, 0x60, 0x38, - 0x16, 0xf1, 0x45, 0x95, 0x32, 0xb1, 0x1a, 0xd9, 0x4f, 0xaa, 0x36, 0xed, 0x32, 0xa2, 0x48, 0xb2, - 0xcb, 0x0d, 0x61, 0xaa, 0x1e, 0x47, 0x08, 0x93, 0xfd, 0x23, 0xa6, 0x52, 0xf5, 0x01, 0x3c, 0x8e, - 0x35, 0xe1, 0x0d, 0x53, 0xfb, 0x5e, 0x2c, 0x25, 0x0a, 0xa2, 0x7d, 0x3d, 0xd6, 0x86, 0xef, 0x59, - 0x30, 0x2a, 0x08, 0x8f, 0xa3, 0x07, 0x9f, 0x37, 0x7b, 0xf0, 0x74, 0xa9, 0x1e, 0xf4, 0x68, 0xfa, - 0xdf, 0xab, 0xa8, 0xa6, 0x37, 0xc4, 0xcb, 0xa9, 0x85, 0x89, 0x1e, 0x47, 0xda, 0x51, 0x98, 0x84, - 0xad, 0xd0, 0x17, 0xab, 0xfc, 0x13, 0x69, 0xd4, 0x39, 0x87, 0x3f, 0xd0, 0x7e, 0x63, 0x45, 0xcd, - 0xa2, 0xa9, 0xc3, 0x28, 0x11, 0x4b, 0x54, 0xde, 0xbb, 0xad, 0xeb, 0xf2, 0x5d, 0x6c, 0x0a, 0x13, - 0x57, 0x36, 0xfa, 0x7d, 0x0f, 0x36, 0x8d, 0x21, 0x57, 0x9c, 0xb0, 0xc6, 0x55, 0x86, 0x37, 0xb2, - 0x1a, 0x06, 0x4d, 0x37, 0xea, 0x4d, 0x01, 0xc7, 0x8a, 0xc2, 0x7e, 0x99, 0xe9, 0x58, 0x36, 0x3c, - 0xfd, 0x05, 0x86, 0xff, 0xe2, 0x90, 0x1a, 0x58, 0xe6, 0x24, 0xb9, 0x09, 0x83, 0xb4, 0x8b, 0x72, - 0x1f, 0x58, 0x4e, 0xa1, 0xd1, 0x26, 0xe8, 0x01, 0x62, 0x51, 0x12, 0x63, 0xce, 0x06, 0x91, 0x2e, - 0xdf, 0xfb, 0xcb, 0xa5, 0x75, 0x64, 0x1f, 0xde, 0x76, 0x96, 0x38, 0x86, 0x25, 0xcb, 0x58, 0x69, - 0x64, 0x93, 0x73, 0x2e, 0x4a, 0x04, 0x4e, 0x69, 0xd0, 0x25, 0x61, 0xae, 0x9b, 0xcf, 0xea, 0x4a, - 0x73, 0x5d, 0x0e, 0x89, 0x66, 0xaf, 0x5f, 0x86, 0x51, 0x95, 0x9e, 0xbc, 0xc1, 0xb3, 0x4c, 0xd7, - 0xb8, 0xfd, 0xb2, 0x94, 0x82, 0xb1, 0x4e, 0x83, 0x56, 0xe0, 0xa4, 0xab, 0xa2, 0x59, 0x1b, 0x9d, - 0x75, 0xdf, 0x6b, 0xd1, 0xa2, 0xfc, 0x26, 0xc9, 0x63, 0xfb, 0x7b, 0xb3, 0x27, 0xeb, 0xdd, 0x68, - 0x9c, 0x57, 0x06, 0xad, 0xc1, 0x64, 0xcc, 0xd3, 0xb0, 0xcb, 0x3b, 0x67, 0x22, 0x7b, 0xdd, 0xb3, - 0xd2, 0xe9, 0xdf, 0x34, 0xd1, 0x0f, 0x18, 0x88, 0x2b, 0x05, 0x01, 0xc2, 0x59, 0x16, 0xe8, 0x75, - 0x98, 0xf0, 0xf5, 0x57, 0xa5, 0x1a, 0x22, 0xa8, 0x57, 0x05, 0x44, 0x18, 0x6f, 0x4e, 0x35, 0x70, - 0x86, 0x1a, 0xbd, 0x05, 0xd3, 0x3a, 0x44, 0x5c, 0x6a, 0x77, 0x82, 0x4d, 0x12, 0x8b, 0xfc, 0xcf, - 0x4f, 0xec, 0xef, 0xcd, 0x4e, 0xdf, 0xe8, 0x41, 0x83, 0x7b, 0x96, 0x46, 0xaf, 0xc0, 0x98, 0x1c, - 0x49, 0x2d, 0xc0, 0x37, 0x0d, 0xc5, 0xd1, 0x70, 0xd8, 0xa0, 0xfc, 0x70, 0x67, 0x1b, 0x5f, 0xa3, - 0x85, 0xb5, 0x45, 0x15, 0x7d, 0x05, 0xc6, 0xf4, 0x36, 0x0a, 0x35, 0xf9, 0xc9, 0xf2, 0x2f, 0x75, - 0x89, 0xc5, 0x59, 0xb5, 0x5c, 0xc7, 0x61, 0x83, 0xb7, 0x7d, 0x0b, 0x86, 0x9a, 0xbb, 0x71, 0x2b, - 0xf1, 0x1f, 0xd6, 0x8b, 0xca, 0x2d, 0x98, 0xcc, 0x3c, 0x3d, 0xac, 0xde, 0xb0, 0xb6, 0x1e, 0xd6, - 0x1b, 0xd6, 0xf6, 0xd7, 0x2d, 0x18, 0x5c, 0x73, 0xbc, 0xe2, 0x97, 0x13, 0xca, 0x34, 0x19, 0xbd, - 0x04, 0x43, 0x64, 0x63, 0x83, 0xb4, 0xe4, 0x9b, 0xd8, 0x4f, 0x4a, 0xa3, 0x66, 0x89, 0x41, 0xe9, - 0xd4, 0x64, 0x95, 0xf1, 0xbf, 0x58, 0x10, 0xdb, 0xff, 0xd1, 0x02, 0x58, 0x0b, 0x7d, 0x79, 0x6c, - 0x53, 0xd0, 0x92, 0x85, 0xae, 0x37, 0x1c, 0xce, 0xe7, 0xbc, 0xe1, 0x80, 0x52, 0x86, 0x39, 0x2f, - 0x38, 0xa8, 0xde, 0x54, 0x4b, 0xf5, 0x66, 0xa0, 0x9f, 0xde, 0x7c, 0xd3, 0x02, 0x11, 0x43, 0x53, - 0x42, 0x12, 0x5c, 0x99, 0x77, 0xdd, 0x48, 0x57, 0xf1, 0x6c, 0x99, 0x8b, 0x20, 0x22, 0x49, 0x85, - 0x92, 0x4d, 0x23, 0x35, 0x85, 0xc1, 0x95, 0xee, 0xe5, 0x47, 0x39, 0x7a, 0x95, 0x59, 0x90, 0xc5, - 0xed, 0xea, 0x2b, 0x33, 0x17, 0x4b, 0x4b, 0x4e, 0x19, 0xab, 0x04, 0x4d, 0x7a, 0x5a, 0x72, 0x89, - 0xc0, 0x29, 0x0d, 0x7a, 0x06, 0x86, 0xe3, 0xce, 0x3a, 0x23, 0xcf, 0x04, 0xd4, 0x34, 0x39, 0x18, - 0x4b, 0xbc, 0xfd, 0x73, 0x08, 0x8c, 0xae, 0x19, 0xc9, 0xa0, 0xac, 0x87, 0x9e, 0x0c, 0xea, 0x6d, - 0x18, 0x21, 0xdb, 0xed, 0x64, 0xb7, 0xee, 0x45, 0xe5, 0x12, 0xf3, 0x2d, 0x09, 0xea, 0x6e, 0xee, - 0x12, 0x83, 0x15, 0xc7, 0x1e, 0xa9, 0xbd, 0xaa, 0x8f, 0x44, 0x6a, 0xaf, 0x81, 0x3f, 0x95, 0xd4, - 0x5e, 0x6f, 0xc1, 0xf0, 0xa6, 0x97, 0x60, 0xd2, 0x0e, 0xc5, 0xc5, 0xbf, 0x82, 0xf3, 0xb0, 0xab, - 0x9c, 0xb8, 0x3b, 0x5f, 0x8f, 0x40, 0x60, 0xc9, 0x0e, 0xad, 0xc1, 0x10, 0xdf, 0x7d, 0x88, 0x6c, - 0x59, 0x9f, 0x2c, 0xe3, 0x97, 0xe9, 0x4e, 0x1c, 0x25, 0xa2, 0xa6, 0x04, 0x2f, 0x99, 0xca, 0x6b, - 0xf8, 0xc3, 0xa7, 0xf2, 0x52, 0x09, 0xb8, 0x46, 0x1e, 0x56, 0x02, 0x2e, 0x23, 0x91, 0x59, 0xed, - 0x28, 0x12, 0x99, 0x7d, 0xd3, 0x82, 0xd3, 0xed, 0xbc, 0x3c, 0x80, 0x22, 0x95, 0xd6, 0x67, 0x0f, - 0x91, 0x17, 0xd1, 0xa8, 0x9a, 0xdd, 0xc7, 0xca, 0x25, 0xc3, 0xf9, 0x15, 0xcb, 0x8c, 0x68, 0xa3, - 0x1f, 0x3e, 0x23, 0xda, 0x51, 0xe7, 0xdc, 0x4a, 0xf3, 0xa3, 0x8d, 0x1f, 0x49, 0x7e, 0xb4, 0x89, - 0x87, 0x98, 0x1f, 0x4d, 0xcb, 0x6c, 0x36, 0xf9, 0x70, 0x33, 0x9b, 0x6d, 0xc1, 0xa8, 0x1b, 0xde, - 0x0b, 0xee, 0x39, 0x91, 0x3b, 0xdf, 0x58, 0x11, 0x89, 0xb4, 0x0a, 0x92, 0x36, 0xd4, 0xd3, 0x02, - 0x46, 0x0d, 0xdc, 0x01, 0x99, 0x22, 0xb1, 0xce, 0x5a, 0xe4, 0x78, 0x3b, 0xf1, 0x21, 0x73, 0xbc, - 0x19, 0x99, 0xd2, 0xd0, 0x51, 0x64, 0x4a, 0xfb, 0x32, 0xbb, 0xba, 0xbd, 0xe1, 0x6d, 0xae, 0x3a, - 0xed, 0xe9, 0x93, 0x65, 0x6a, 0x58, 0x94, 0xe4, 0xdd, 0x35, 0x28, 0x14, 0x4e, 0x99, 0x76, 0xe7, - 0x62, 0x3b, 0x75, 0xdc, 0xb9, 0xd8, 0x4e, 0x1f, 0x61, 0x2e, 0xb6, 0x33, 0xc7, 0x9a, 0x8b, 0xed, - 0xb1, 0x3f, 0x95, 0x5c, 0x6c, 0x7f, 0x09, 0xce, 0x1e, 0xfc, 0x39, 0xd2, 0x6c, 0xbf, 0x8d, 0xd4, - 0x65, 0x90, 0xc9, 0xf6, 0xcb, 0x4c, 0x1d, 0x8d, 0xaa, 0x74, 0x4a, 0xa8, 0x7f, 0x61, 0xc1, 0x63, - 0x3d, 0x12, 0xa7, 0x94, 0xbe, 0xcd, 0xd0, 0x86, 0xc9, 0xb6, 0x59, 0xb4, 0xf4, 0xbd, 0x23, 0x23, - 0x51, 0x8b, 0x8a, 0x93, 0xcb, 0x20, 0x70, 0x96, 0xfd, 0xc2, 0xc7, 0x7f, 0xfc, 0xc1, 0xd9, 0x8f, - 0xfc, 0xe4, 0x83, 0xb3, 0x1f, 0xf9, 0xfd, 0x0f, 0xce, 0x7e, 0xe4, 0x67, 0xf7, 0xcf, 0x5a, 0x3f, - 0xde, 0x3f, 0x6b, 0xfd, 0x64, 0xff, 0xac, 0xf5, 0x47, 0xfb, 0x67, 0xad, 0x6f, 0xfe, 0xf1, 0xd9, - 0x8f, 0x7c, 0xb1, 0xb2, 0x73, 0xf9, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff, 0x1d, 0xba, 0xe2, 0xd2, - 0xb8, 0xb6, 0x00, 0x00, + // 10023 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x6c, 0x25, 0xd7, + 0x75, 0x98, 0xe7, 0x3d, 0x7e, 0xbd, 0xc3, 0xcf, 0xbd, 0xfb, 0x21, 0x8a, 0x96, 0x96, 0xeb, 0x91, + 0x25, 0xaf, 0xa4, 0x15, 0xd7, 0xbb, 0x92, 0x2c, 0xd9, 0x52, 0x65, 0x93, 0x7c, 0xe4, 0x2e, 0xbd, + 0xcb, 0xdd, 0xa7, 0xfb, 0xb8, 0x5a, 0xd9, 0x56, 0x25, 0x0f, 0xdf, 0x5c, 0x92, 0xe3, 0x1d, 0xce, + 0x3c, 0xcd, 0xcc, 0xe3, 0x2e, 0xed, 0x06, 0x48, 0x1d, 0x35, 0x41, 0x11, 0x23, 0x75, 0xd1, 0x1a, + 0x2d, 0xd0, 0x16, 0x75, 0x0b, 0xb4, 0x48, 0x1b, 0x34, 0x8d, 0x53, 0x37, 0xb1, 0x5b, 0xc3, 0x28, + 0xd0, 0xd4, 0x70, 0x3f, 0x52, 0x38, 0x40, 0xd0, 0x04, 0x09, 0xc0, 0x46, 0x0c, 0x8a, 0xfe, 0xe8, + 0x8f, 0x16, 0xe8, 0xaf, 0x12, 0x41, 0x5b, 0xdc, 0xcf, 0xb9, 0x77, 0xde, 0x3c, 0xce, 0x3c, 0x6a, + 0xc9, 0xc8, 0x41, 0xfe, 0xbd, 0x77, 0xce, 0xb9, 0xe7, 0x7e, 0xcc, 0xb9, 0xe7, 0x9e, 0x7b, 0xee, + 0xb9, 0xe7, 0xc2, 0xa5, 0x7b, 0x2f, 0xc7, 0x73, 0x5e, 0x78, 0xf9, 0x5e, 0x67, 0x9d, 0x44, 0x01, + 0x49, 0x48, 0x7c, 0xb9, 0x7d, 0x6f, 0xf3, 0xb2, 0xd3, 0xf6, 0x2e, 0xef, 0x5c, 0xb9, 0xbc, 0x49, + 0x02, 0x12, 0x39, 0x09, 0x71, 0xe7, 0xda, 0x51, 0x98, 0x84, 0xe8, 0x31, 0x4e, 0x3d, 0x97, 0x52, + 0xcf, 0xb5, 0xef, 0x6d, 0xce, 0x39, 0x6d, 0x6f, 0x6e, 0xe7, 0xca, 0xcc, 0x73, 0x9b, 0x5e, 0xb2, + 0xd5, 0x59, 0x9f, 0x6b, 0x85, 0xdb, 0x97, 0x37, 0xc3, 0xcd, 0xf0, 0x32, 0x2b, 0xb4, 0xde, 0xd9, + 0x60, 0xff, 0xd8, 0x1f, 0xf6, 0x8b, 0x33, 0x9b, 0xb9, 0xda, 0xbb, 0xea, 0x88, 0xc4, 0x61, 0x27, + 0x6a, 0x91, 0x6c, 0x03, 0x66, 0x5e, 0xec, 0x5d, 0xa6, 0x13, 0xec, 0x90, 0x28, 0xf6, 0xc2, 0x80, + 0xb8, 0x5d, 0xc5, 0x9e, 0xcb, 0x2f, 0x16, 0x75, 0x82, 0xc4, 0xdb, 0xee, 0xae, 0xe5, 0x85, 0xc3, + 0xc9, 0xe3, 0xd6, 0x16, 0xd9, 0x76, 0xba, 0x4a, 0x5d, 0xc9, 0x2f, 0xd5, 0x49, 0x3c, 0xff, 0xb2, + 0x17, 0x24, 0x71, 0x12, 0x65, 0x8b, 0xd8, 0xbf, 0x67, 0xc1, 0x85, 0xf9, 0xbb, 0xcd, 0x25, 0xdf, + 0x89, 0x13, 0xaf, 0xb5, 0xe0, 0x87, 0xad, 0x7b, 0xcd, 0x24, 0x8c, 0xc8, 0x1b, 0xa1, 0xdf, 0xd9, + 0x26, 0x4d, 0x36, 0x06, 0xe8, 0x12, 0x8c, 0xec, 0xb0, 0xff, 0x2b, 0xf5, 0x69, 0xeb, 0x82, 0x75, + 0xb1, 0xb6, 0x30, 0xf5, 0xe3, 0xbd, 0xd9, 0x8f, 0xec, 0xef, 0xcd, 0x8e, 0xbc, 0x21, 0xe0, 0x58, + 0x51, 0xa0, 0xa7, 0x60, 0x68, 0x23, 0x5e, 0xdb, 0x6d, 0x93, 0xe9, 0x0a, 0xa3, 0x9d, 0x10, 0xb4, + 0x43, 0xcb, 0x4d, 0x0a, 0xc5, 0x02, 0x8b, 0x2e, 0x43, 0xad, 0xed, 0x44, 0x89, 0x97, 0x78, 0x61, + 0x30, 0x5d, 0xbd, 0x60, 0x5d, 0x1c, 0x5c, 0x38, 0x25, 0x48, 0x6b, 0x0d, 0x89, 0xc0, 0x29, 0x0d, + 0x6d, 0x46, 0x44, 0x1c, 0xf7, 0x76, 0xe0, 0xef, 0x4e, 0x0f, 0x5c, 0xb0, 0x2e, 0x8e, 0xa4, 0xcd, + 0xc0, 0x02, 0x8e, 0x15, 0x85, 0xfd, 0xbd, 0x0a, 0x8c, 0xcc, 0x6f, 0x6c, 0x78, 0x81, 0x97, 0xec, + 0xa2, 0x2f, 0xc3, 0x58, 0x10, 0xba, 0x44, 0xfe, 0x67, 0xbd, 0x18, 0xbd, 0xfa, 0xcc, 0xdc, 0x61, + 0xd2, 0x34, 0x77, 0x4b, 0x2b, 0xb1, 0x30, 0xb5, 0xbf, 0x37, 0x3b, 0xa6, 0x43, 0xb0, 0xc1, 0x11, + 0xbd, 0x05, 0xa3, 0xed, 0xd0, 0x55, 0x15, 0x54, 0x58, 0x05, 0x4f, 0x1f, 0x5e, 0x41, 0x23, 0x2d, + 0xb0, 0x30, 0xb9, 0xbf, 0x37, 0x3b, 0xaa, 0x01, 0xb0, 0xce, 0x0e, 0xf9, 0x30, 0x49, 0xff, 0x06, + 0x89, 0xa7, 0x6a, 0xa8, 0xb2, 0x1a, 0x9e, 0x2b, 0xae, 0x41, 0x2b, 0xb4, 0x70, 0x7a, 0x7f, 0x6f, + 0x76, 0x32, 0x03, 0xc4, 0x59, 0xd6, 0xf6, 0x57, 0x61, 0x62, 0x3e, 0x49, 0x9c, 0xd6, 0x16, 0x71, + 0xf9, 0xf7, 0x45, 0x2f, 0xc0, 0x40, 0xe0, 0x6c, 0x13, 0xf1, 0xf5, 0x2f, 0x88, 0x61, 0x1f, 0xb8, + 0xe5, 0x6c, 0x93, 0x83, 0xbd, 0xd9, 0xa9, 0x3b, 0x81, 0xf7, 0x6e, 0x47, 0xc8, 0x0c, 0x85, 0x61, + 0x46, 0x8d, 0xae, 0x02, 0xb8, 0x64, 0xc7, 0x6b, 0x91, 0x86, 0x93, 0x6c, 0x09, 0x69, 0x40, 0xa2, + 0x2c, 0xd4, 0x15, 0x06, 0x6b, 0x54, 0xf6, 0xd7, 0x2d, 0xa8, 0xcd, 0xef, 0x84, 0x9e, 0xdb, 0x08, + 0xdd, 0x18, 0x75, 0x60, 0xb2, 0x1d, 0x91, 0x0d, 0x12, 0x29, 0xd0, 0xb4, 0x75, 0xa1, 0x7a, 0x71, + 0xf4, 0xea, 0xd5, 0x82, 0x7e, 0x9b, 0x85, 0x96, 0x82, 0x24, 0xda, 0x5d, 0x78, 0x44, 0x54, 0x3d, + 0x99, 0xc1, 0xe2, 0x6c, 0x1d, 0xf6, 0x5f, 0xaf, 0xc0, 0xd9, 0xf9, 0xaf, 0x76, 0x22, 0x52, 0xf7, + 0xe2, 0x7b, 0xd9, 0xa9, 0xe0, 0x7a, 0xf1, 0xbd, 0x5b, 0xe9, 0x60, 0x28, 0x19, 0xac, 0x0b, 0x38, + 0x56, 0x14, 0xe8, 0x39, 0x18, 0xa6, 0xbf, 0xef, 0xe0, 0x15, 0xd1, 0xfb, 0xd3, 0x82, 0x78, 0xb4, + 0xee, 0x24, 0x4e, 0x9d, 0xa3, 0xb0, 0xa4, 0x41, 0xab, 0x30, 0xda, 0x72, 0x5a, 0x5b, 0x5e, 0xb0, + 0xb9, 0x1a, 0xba, 0x84, 0x7d, 0xe1, 0xda, 0xc2, 0xb3, 0x94, 0x7c, 0x31, 0x05, 0x1f, 0xec, 0xcd, + 0x4e, 0xf3, 0xb6, 0x09, 0x16, 0x1a, 0x0e, 0xeb, 0xe5, 0x91, 0xad, 0x26, 0xe2, 0x00, 0xe3, 0x04, + 0x39, 0x93, 0xf0, 0xa2, 0x36, 0xa7, 0x06, 0xd9, 0x9c, 0x1a, 0xeb, 0x31, 0x9f, 0xfe, 0xa9, 0x25, + 0xc6, 0x64, 0xd9, 0xf3, 0x4d, 0xf5, 0x70, 0x15, 0x20, 0x26, 0xad, 0x88, 0x24, 0xda, 0xa8, 0xa8, + 0xcf, 0xdc, 0x54, 0x18, 0xac, 0x51, 0xd1, 0xc9, 0x1f, 0x6f, 0x39, 0x11, 0x93, 0x16, 0x31, 0x36, + 0x6a, 0xf2, 0x37, 0x25, 0x02, 0xa7, 0x34, 0xc6, 0xe4, 0xaf, 0x16, 0x4e, 0xfe, 0x7f, 0x65, 0xc1, + 0xf0, 0x82, 0x17, 0xb8, 0x5e, 0xb0, 0x89, 0xde, 0x84, 0x91, 0x6d, 0x92, 0x38, 0xae, 0x93, 0x38, + 0x62, 0xde, 0x5f, 0x3c, 0x5c, 0x78, 0x6e, 0xaf, 0x7f, 0x85, 0xb4, 0x92, 0x55, 0x92, 0x38, 0x69, + 0x37, 0x52, 0x18, 0x56, 0xdc, 0xd0, 0x1d, 0x18, 0x4a, 0x9c, 0x68, 0x93, 0x24, 0x62, 0xba, 0x3f, + 0x57, 0x86, 0x2f, 0xa6, 0xa2, 0x46, 0x82, 0x16, 0x49, 0x15, 0xe3, 0x1a, 0x63, 0x82, 0x05, 0x33, + 0xbb, 0x05, 0x63, 0x8b, 0x4e, 0xdb, 0x59, 0xf7, 0x7c, 0x2f, 0xf1, 0x48, 0x8c, 0x3e, 0x01, 0x55, + 0xc7, 0x75, 0x99, 0xe0, 0xd7, 0x16, 0xce, 0xee, 0xef, 0xcd, 0x56, 0xe7, 0x5d, 0xf7, 0x60, 0x6f, + 0x16, 0x14, 0xd5, 0x2e, 0xa6, 0x14, 0xe8, 0x19, 0x18, 0x70, 0xa3, 0xb0, 0x3d, 0x5d, 0x61, 0x94, + 0xe7, 0xe8, 0x0c, 0xad, 0x47, 0x61, 0x3b, 0x43, 0xca, 0x68, 0xec, 0x7f, 0x57, 0x01, 0xb4, 0x48, + 0xda, 0x5b, 0xcb, 0x4d, 0xe3, 0x5b, 0x5e, 0x84, 0x91, 0xed, 0x30, 0xf0, 0x92, 0x30, 0x8a, 0x45, + 0x85, 0x4c, 0x1e, 0x56, 0x05, 0x0c, 0x2b, 0x2c, 0xba, 0x00, 0x03, 0xed, 0x74, 0x5a, 0x8f, 0x49, + 0x95, 0xc0, 0x26, 0x34, 0xc3, 0x50, 0x8a, 0x4e, 0x4c, 0x22, 0x21, 0xc7, 0x8a, 0xe2, 0x4e, 0x4c, + 0x22, 0xcc, 0x30, 0xa9, 0xe4, 0x50, 0x99, 0x12, 0x52, 0x9a, 0x91, 0x1c, 0x8a, 0xc1, 0x1a, 0x15, + 0x7a, 0x07, 0x6a, 0xfc, 0x1f, 0x26, 0x1b, 0x4c, 0x64, 0x0b, 0x95, 0xc1, 0xcd, 0xb0, 0xe5, 0xf8, + 0xd9, 0xc1, 0x1f, 0x67, 0x92, 0x26, 0x19, 0xe1, 0x94, 0xa7, 0x21, 0x69, 0x43, 0x85, 0x92, 0xf6, + 0xb7, 0x2d, 0x40, 0x8b, 0x5e, 0xe0, 0x92, 0xe8, 0x04, 0x96, 0xcc, 0xfe, 0x26, 0xc1, 0x1f, 0xd2, + 0xa6, 0x85, 0xdb, 0xed, 0x30, 0x20, 0x41, 0xb2, 0x18, 0x06, 0x2e, 0x5f, 0x46, 0x3f, 0x03, 0x03, + 0x09, 0xad, 0x8a, 0x37, 0xeb, 0x29, 0xf9, 0x59, 0x68, 0x05, 0x07, 0x7b, 0xb3, 0xe7, 0xba, 0x4b, + 0xb0, 0x26, 0xb0, 0x32, 0xe8, 0xd3, 0x30, 0x14, 0x27, 0x4e, 0xd2, 0x89, 0x45, 0x43, 0x3f, 0x26, + 0x1b, 0xda, 0x64, 0xd0, 0x83, 0xbd, 0xd9, 0x49, 0x55, 0x8c, 0x83, 0xb0, 0x28, 0x80, 0x9e, 0x86, + 0xe1, 0x6d, 0x12, 0xc7, 0xce, 0xa6, 0x54, 0x6c, 0x93, 0xa2, 0xec, 0xf0, 0x2a, 0x07, 0x63, 0x89, + 0x47, 0x4f, 0xc0, 0x20, 0x89, 0xa2, 0x30, 0x12, 0x12, 0x31, 0x2e, 0x08, 0x07, 0x97, 0x28, 0x10, + 0x73, 0x9c, 0xfd, 0x3b, 0x16, 0x4c, 0xaa, 0xb6, 0xf2, 0xba, 0x8e, 0x71, 0xaa, 0xbb, 0x00, 0x2d, + 0xd9, 0xb1, 0x98, 0x4d, 0xb0, 0xd1, 0xab, 0x9f, 0x3c, 0x9c, 0x77, 0xf7, 0x40, 0xa6, 0x75, 0x28, + 0x50, 0x8c, 0x35, 0xbe, 0xf6, 0x8f, 0x2d, 0x38, 0x9d, 0xe9, 0xd3, 0x4d, 0x2f, 0x4e, 0xd0, 0x5f, + 0xec, 0xea, 0xd7, 0xe5, 0x43, 0xea, 0xd6, 0xec, 0xd0, 0x39, 0x5a, 0x9c, 0x75, 0x4f, 0x09, 0x8a, + 0x84, 0x68, 0x9d, 0xc3, 0x30, 0xe8, 0x25, 0x64, 0x5b, 0xf6, 0xeb, 0xb9, 0x92, 0xfd, 0xe2, 0x0d, + 0x4c, 0x3f, 0xcf, 0x0a, 0xe5, 0x81, 0x39, 0x2b, 0xfb, 0x7f, 0x5b, 0x50, 0x5b, 0x0c, 0x83, 0x0d, + 0x6f, 0x73, 0xd5, 0x69, 0x1f, 0xe3, 0x87, 0x69, 0xc2, 0x00, 0xe3, 0xca, 0x9b, 0x7e, 0xa5, 0xa8, + 0xe9, 0xa2, 0x41, 0x73, 0x74, 0xf1, 0xe4, 0x56, 0x81, 0xd2, 0x4b, 0x14, 0x84, 0x19, 0xb3, 0x99, + 0x97, 0xa0, 0xa6, 0x08, 0xd0, 0x14, 0x54, 0xef, 0x11, 0x6e, 0x32, 0xd6, 0x30, 0xfd, 0x89, 0xce, + 0xc0, 0xe0, 0x8e, 0xe3, 0x77, 0xc4, 0x6c, 0xc5, 0xfc, 0xcf, 0x67, 0x2a, 0x2f, 0x5b, 0xf6, 0x0f, + 0x2c, 0x38, 0xa3, 0x2a, 0xb9, 0x41, 0x76, 0x9b, 0xc4, 0x27, 0xad, 0x24, 0x8c, 0xd0, 0x7b, 0x16, + 0x9c, 0xf1, 0x73, 0xf4, 0x90, 0x18, 0x8d, 0xa3, 0x68, 0xb0, 0xc7, 0x44, 0xc3, 0xcf, 0xe4, 0x61, + 0x71, 0x6e, 0x6d, 0xe8, 0x71, 0xde, 0x17, 0x3e, 0x79, 0x47, 0x05, 0x83, 0xea, 0x0d, 0xb2, 0xcb, + 0x3a, 0x46, 0x9b, 0x3f, 0xae, 0x9a, 0x7f, 0x12, 0x92, 0x77, 0xd3, 0x94, 0xbc, 0x4f, 0x94, 0xfc, + 0x7c, 0x3d, 0x64, 0xee, 0xef, 0x57, 0xe0, 0xac, 0xa2, 0x31, 0xd4, 0xf1, 0x87, 0x64, 0xf8, 0xfb, + 0xeb, 0xee, 0x0d, 0xb2, 0xbb, 0x16, 0xd2, 0xf5, 0x34, 0xbf, 0xbb, 0xe8, 0x0a, 0x8c, 0xba, 0x64, + 0xc3, 0xe9, 0xf8, 0x89, 0x32, 0x17, 0x07, 0xf9, 0x3e, 0xa2, 0x9e, 0x82, 0xb1, 0x4e, 0x63, 0xff, + 0x76, 0x8d, 0xcd, 0xca, 0xc4, 0xf1, 0x02, 0x12, 0xd1, 0x05, 0x5a, 0xb3, 0xea, 0xc7, 0x74, 0xab, + 0x5e, 0x58, 0xf0, 0x4f, 0xc0, 0xa0, 0xb7, 0x4d, 0x55, 0x76, 0xc5, 0xd4, 0xc4, 0x2b, 0x14, 0x88, + 0x39, 0x0e, 0x3d, 0x09, 0xc3, 0xad, 0x70, 0x7b, 0xdb, 0x09, 0xdc, 0xe9, 0x2a, 0x33, 0x19, 0x46, + 0xa9, 0x56, 0x5f, 0xe4, 0x20, 0x2c, 0x71, 0xe8, 0x31, 0x18, 0x70, 0xa2, 0xcd, 0x78, 0x7a, 0x80, + 0xd1, 0x8c, 0xd0, 0x9a, 0xe6, 0xa3, 0xcd, 0x18, 0x33, 0x28, 0x35, 0x05, 0xee, 0x87, 0xd1, 0x3d, + 0x2f, 0xd8, 0xac, 0x7b, 0x11, 0x5b, 0xd7, 0x35, 0x53, 0xe0, 0xae, 0xc2, 0x60, 0x8d, 0x0a, 0x35, + 0x60, 0xb0, 0x1d, 0x46, 0x49, 0x3c, 0x3d, 0xc4, 0x86, 0xf3, 0xd9, 0x42, 0xe9, 0xe1, 0xfd, 0x6e, + 0x84, 0x51, 0x92, 0x76, 0x85, 0xfe, 0x8b, 0x31, 0x67, 0x84, 0x16, 0xa1, 0x4a, 0x82, 0x9d, 0xe9, + 0x61, 0xc6, 0xef, 0xe3, 0x87, 0xf3, 0x5b, 0x0a, 0x76, 0xde, 0x70, 0xa2, 0x74, 0x16, 0x2d, 0x05, + 0x3b, 0x98, 0x96, 0x46, 0x2d, 0xa8, 0x49, 0xf7, 0x41, 0x3c, 0x3d, 0x52, 0x46, 0xc0, 0xb0, 0x20, + 0xc7, 0xe4, 0xdd, 0x8e, 0x17, 0x91, 0x6d, 0x12, 0x24, 0x71, 0x6a, 0x0f, 0x4b, 0x6c, 0x8c, 0x53, + 0xbe, 0xa8, 0x05, 0x63, 0xdc, 0x7c, 0x58, 0x0d, 0x3b, 0x41, 0x12, 0x4f, 0xd7, 0x58, 0x93, 0x0b, + 0x36, 0x9c, 0x6f, 0xa4, 0x25, 0x16, 0xce, 0x08, 0xf6, 0x63, 0x1a, 0x30, 0xc6, 0x06, 0x53, 0xf4, + 0x16, 0x8c, 0xfb, 0xde, 0x0e, 0x09, 0x48, 0x1c, 0x37, 0xa2, 0x70, 0x9d, 0x4c, 0x03, 0xeb, 0xcd, + 0x13, 0x45, 0x9b, 0xaf, 0x70, 0x9d, 0x2c, 0x9c, 0xda, 0xdf, 0x9b, 0x1d, 0xbf, 0xa9, 0x97, 0xc6, + 0x26, 0x33, 0xf4, 0x0e, 0x4c, 0x50, 0x5b, 0xc5, 0x4b, 0xd9, 0x8f, 0x96, 0x67, 0x8f, 0xf6, 0xf7, + 0x66, 0x27, 0xb0, 0x51, 0x1c, 0x67, 0xd8, 0xa1, 0x35, 0xa8, 0xf9, 0xde, 0x06, 0x69, 0xed, 0xb6, + 0x7c, 0x32, 0x3d, 0xc6, 0x78, 0x17, 0x4c, 0xb9, 0x9b, 0x92, 0x9c, 0xdb, 0x87, 0xea, 0x2f, 0x4e, + 0x19, 0xa1, 0x37, 0xe0, 0x5c, 0x42, 0xa2, 0x6d, 0x2f, 0x70, 0xe8, 0xa2, 0x2d, 0x8c, 0x17, 0xb6, + 0xc3, 0x1d, 0x67, 0x52, 0x7b, 0x5e, 0x0c, 0xec, 0xb9, 0xb5, 0x5c, 0x2a, 0xdc, 0xa3, 0x34, 0xba, + 0x0d, 0x93, 0x6c, 0x3e, 0x35, 0x3a, 0xbe, 0xdf, 0x08, 0x7d, 0xaf, 0xb5, 0x3b, 0x3d, 0xc1, 0x18, + 0x3e, 0x29, 0xf7, 0xad, 0x2b, 0x26, 0x9a, 0xda, 0xf5, 0xe9, 0x3f, 0x9c, 0x2d, 0x8d, 0x7c, 0x98, + 0x8c, 0x49, 0xab, 0x13, 0x79, 0xc9, 0x2e, 0x95, 0x7d, 0xf2, 0x20, 0x99, 0x9e, 0x2c, 0xb3, 0x4f, + 0x69, 0x9a, 0x85, 0xb8, 0xd3, 0x20, 0x03, 0xc4, 0x59, 0xd6, 0x54, 0x55, 0xc4, 0x89, 0xeb, 0x05, + 0xd3, 0x53, 0xcc, 0x30, 0x55, 0xf3, 0xab, 0x49, 0x81, 0x98, 0xe3, 0xd8, 0xb6, 0x8f, 0xfe, 0xb8, + 0x4d, 0x75, 0xef, 0x29, 0x46, 0x98, 0x6e, 0xfb, 0x24, 0x02, 0xa7, 0x34, 0x74, 0xc1, 0x4a, 0x92, + 0xdd, 0x69, 0xc4, 0x48, 0xd5, 0x54, 0x5b, 0x5b, 0xfb, 0x02, 0xa6, 0x70, 0x7b, 0x1d, 0x26, 0xd4, + 0xb4, 0x66, 0xa3, 0x83, 0x66, 0x61, 0x90, 0x6a, 0x2e, 0xb9, 0x7b, 0xa9, 0xd1, 0x26, 0x50, 0x85, + 0x16, 0x63, 0x0e, 0x67, 0x4d, 0xf0, 0xbe, 0x4a, 0x16, 0x76, 0x13, 0xc2, 0xad, 0xd8, 0xaa, 0xd6, + 0x04, 0x89, 0xc0, 0x29, 0x8d, 0xfd, 0x7f, 0xf9, 0xa2, 0x98, 0xea, 0x8e, 0x12, 0x7a, 0xf3, 0x12, + 0x8c, 0x6c, 0x85, 0x71, 0x42, 0xa9, 0x59, 0x1d, 0x83, 0xe9, 0x2a, 0x78, 0x5d, 0xc0, 0xb1, 0xa2, + 0x40, 0xaf, 0xc0, 0x78, 0x4b, 0xaf, 0x40, 0xa8, 0xf2, 0xb3, 0xa2, 0x88, 0x59, 0x3b, 0x36, 0x69, + 0xd1, 0xcb, 0x30, 0xc2, 0x5c, 0x79, 0xad, 0xd0, 0x17, 0xf6, 0xb2, 0x5c, 0x99, 0x46, 0x1a, 0x02, + 0x7e, 0xa0, 0xfd, 0xc6, 0x8a, 0x9a, 0xee, 0x3a, 0x68, 0x13, 0x56, 0x1a, 0x42, 0xdd, 0xaa, 0x5d, + 0xc7, 0x75, 0x06, 0xc5, 0x02, 0x6b, 0xff, 0x5a, 0x45, 0x1b, 0x65, 0x6a, 0xf4, 0x11, 0xf4, 0x45, + 0x18, 0xbe, 0xef, 0x78, 0x89, 0x17, 0x6c, 0x8a, 0x15, 0xf4, 0xf9, 0x92, 0xba, 0x97, 0x15, 0xbf, + 0xcb, 0x8b, 0xf2, 0x75, 0x42, 0xfc, 0xc1, 0x92, 0x21, 0xe5, 0x1d, 0x75, 0x82, 0x80, 0xf2, 0xae, + 0xf4, 0xcf, 0x1b, 0xf3, 0xa2, 0x9c, 0xb7, 0xf8, 0x83, 0x25, 0x43, 0xb4, 0x01, 0x20, 0x67, 0x1f, + 0x71, 0x85, 0x0b, 0xed, 0x53, 0xfd, 0xb0, 0x5f, 0x53, 0xa5, 0x17, 0x26, 0xe8, 0xca, 0x94, 0xfe, + 0xc7, 0x1a, 0x67, 0xbb, 0xc3, 0x0c, 0x91, 0xee, 0x66, 0xa1, 0xb7, 0xe8, 0x04, 0x70, 0xa2, 0x84, + 0xb8, 0xf3, 0x89, 0x18, 0xba, 0x67, 0x4b, 0x1a, 0x54, 0x6b, 0xde, 0x36, 0xd1, 0x67, 0x8b, 0xe0, + 0x82, 0x53, 0x86, 0xf6, 0xf7, 0xab, 0x30, 0xdd, 0xab, 0xbd, 0x54, 0x26, 0xc9, 0x03, 0x2f, 0x59, + 0xa4, 0xb6, 0x82, 0x65, 0xca, 0xe4, 0x92, 0x80, 0x63, 0x45, 0x41, 0x85, 0x23, 0xf6, 0x36, 0x03, + 0xc7, 0x17, 0xf2, 0xab, 0x84, 0xa3, 0xc9, 0xa0, 0x58, 0x60, 0x29, 0x5d, 0x44, 0x9c, 0x58, 0xb8, + 0x70, 0x35, 0x21, 0xc2, 0x0c, 0x8a, 0x05, 0x56, 0xdf, 0xfe, 0x0d, 0x14, 0x6c, 0xff, 0x8c, 0x31, + 0x1a, 0x7c, 0xc8, 0x63, 0x84, 0xde, 0x01, 0xd8, 0xf0, 0x02, 0x2f, 0xde, 0x62, 0xec, 0x87, 0xfa, + 0x67, 0xaf, 0xac, 0x92, 0x65, 0xc5, 0x06, 0x6b, 0x2c, 0xd1, 0x8b, 0x30, 0xaa, 0x66, 0xe8, 0x4a, + 0x7d, 0x7a, 0xd8, 0x74, 0xfc, 0xa5, 0xea, 0xaa, 0x8e, 0x75, 0x3a, 0xfb, 0x2b, 0x59, 0x91, 0x11, + 0x13, 0x43, 0x1b, 0x61, 0xab, 0xec, 0x08, 0x57, 0x0e, 0x1f, 0x61, 0xfb, 0xbf, 0x54, 0xe9, 0xde, + 0x59, 0xab, 0xac, 0x13, 0x97, 0x50, 0x6a, 0xaf, 0x53, 0x0d, 0xef, 0x24, 0x44, 0x4c, 0xcb, 0x4b, + 0xfd, 0xcc, 0x1b, 0x7d, 0x3d, 0xa0, 0xd3, 0x81, 0x73, 0x42, 0x5b, 0x50, 0xf3, 0x9d, 0x98, 0xed, + 0x24, 0x89, 0x98, 0x8e, 0xfd, 0xb1, 0x4d, 0xad, 0x70, 0x27, 0x4e, 0xb4, 0x05, 0x97, 0xd7, 0x92, + 0x32, 0xa7, 0xcb, 0x13, 0xb5, 0x0e, 0xe4, 0xc9, 0x81, 0x6a, 0x0e, 0x35, 0x21, 0x76, 0x31, 0xc7, + 0xa1, 0x97, 0x61, 0x2c, 0x22, 0x4c, 0x54, 0x16, 0xa9, 0x01, 0xc4, 0x84, 0x6f, 0x30, 0xb5, 0x94, + 0xb0, 0x86, 0xc3, 0x06, 0x65, 0x6a, 0x28, 0x0f, 0x1d, 0x62, 0x28, 0x3f, 0x0d, 0xc3, 0xec, 0x87, + 0x92, 0x0a, 0xf5, 0x85, 0x56, 0x38, 0x18, 0x4b, 0x7c, 0x56, 0x88, 0x46, 0x4a, 0x0a, 0xd1, 0x33, + 0x30, 0x51, 0x77, 0xc8, 0x76, 0x18, 0x2c, 0x05, 0x6e, 0x3b, 0xf4, 0x82, 0x04, 0x4d, 0xc3, 0x00, + 0x5b, 0x52, 0xf8, 0x8c, 0x1f, 0xa0, 0x1c, 0xf0, 0x00, 0x35, 0x76, 0xed, 0xff, 0x67, 0xc1, 0x78, + 0x9d, 0xf8, 0x24, 0x21, 0xb7, 0xdb, 0xcc, 0xfd, 0x80, 0x96, 0x01, 0x6d, 0x46, 0x4e, 0x8b, 0x34, + 0x48, 0xe4, 0x85, 0x6e, 0x93, 0xb4, 0xc2, 0x80, 0x39, 0xdc, 0xe9, 0x1a, 0x79, 0x6e, 0x7f, 0x6f, + 0x16, 0x5d, 0xeb, 0xc2, 0xe2, 0x9c, 0x12, 0xc8, 0x85, 0xf1, 0x76, 0x44, 0x0c, 0x7f, 0x89, 0x55, + 0x6c, 0x9f, 0x37, 0xf4, 0x22, 0xdc, 0x7c, 0x34, 0x40, 0xd8, 0x64, 0x8a, 0x3e, 0x07, 0x53, 0x61, + 0xd4, 0xde, 0x72, 0x82, 0x3a, 0x69, 0x93, 0xc0, 0xa5, 0x36, 0xb3, 0x70, 0x8a, 0x9d, 0xd9, 0xdf, + 0x9b, 0x9d, 0xba, 0x9d, 0xc1, 0xe1, 0x2e, 0x6a, 0xfb, 0x57, 0x2a, 0x70, 0xb6, 0x1e, 0xde, 0x0f, + 0xee, 0x3b, 0x91, 0x3b, 0xdf, 0x58, 0xe1, 0x86, 0x30, 0x73, 0x32, 0x4a, 0xe7, 0xa6, 0xd5, 0xd3, + 0xb9, 0xf9, 0x25, 0x18, 0xd9, 0xf0, 0x88, 0xef, 0x62, 0xb2, 0x21, 0xba, 0x77, 0xa5, 0x8c, 0x47, + 0x63, 0x99, 0x96, 0x91, 0x5e, 0x01, 0xee, 0x5b, 0x5d, 0x16, 0x6c, 0xb0, 0x62, 0x88, 0x3a, 0x30, + 0x25, 0x2d, 0x7d, 0x89, 0x15, 0xb3, 0xe3, 0xf9, 0x72, 0x1b, 0x09, 0xb3, 0x1a, 0x36, 0x1e, 0x38, + 0xc3, 0x10, 0x77, 0x55, 0x41, 0x77, 0x68, 0xdb, 0x74, 0x75, 0x18, 0x60, 0xb2, 0xc2, 0x76, 0x68, + 0x6c, 0x0b, 0xc9, 0xa0, 0xf6, 0x3f, 0xb6, 0xe0, 0x91, 0xae, 0xd1, 0x12, 0xfb, 0xeb, 0x37, 0xe5, + 0xc6, 0x96, 0x9f, 0xce, 0x14, 0xb4, 0x32, 0x77, 0xcc, 0xcb, 0x6d, 0x72, 0x2b, 0x25, 0x36, 0xb9, + 0xb7, 0xe1, 0xcc, 0xd2, 0x76, 0x3b, 0xd9, 0xad, 0x7b, 0xa6, 0x4f, 0xf6, 0x25, 0x18, 0xda, 0x26, + 0xae, 0xd7, 0xd9, 0x16, 0x9f, 0x75, 0x56, 0x2a, 0xd2, 0x55, 0x06, 0x3d, 0xd8, 0x9b, 0x1d, 0x6f, + 0x26, 0x61, 0xe4, 0x6c, 0x12, 0x0e, 0xc0, 0x82, 0xdc, 0x7e, 0xdf, 0x82, 0x49, 0x39, 0xa1, 0xe6, + 0x5d, 0x37, 0x22, 0x71, 0x8c, 0x66, 0xa0, 0xe2, 0xb5, 0x05, 0x23, 0x10, 0x8c, 0x2a, 0x2b, 0x0d, + 0x5c, 0xf1, 0xda, 0xe8, 0x8b, 0x50, 0xe3, 0xae, 0xfc, 0x54, 0x38, 0xfa, 0x3c, 0x1a, 0x60, 0xbb, + 0x8f, 0x35, 0xc9, 0x03, 0xa7, 0xec, 0xa4, 0x65, 0xc9, 0x54, 0x75, 0xd5, 0x74, 0x2c, 0x5f, 0x17, + 0x70, 0xac, 0x28, 0xd0, 0x45, 0x18, 0x09, 0x42, 0x97, 0x9f, 0xb2, 0xf0, 0x65, 0x97, 0x89, 0xdc, + 0x2d, 0x01, 0xc3, 0x0a, 0x6b, 0x7f, 0xc3, 0x82, 0x31, 0xd9, 0xc7, 0x92, 0x46, 0x2e, 0x9d, 0x24, + 0xa9, 0x81, 0x9b, 0x4e, 0x12, 0x6a, 0xa4, 0x32, 0x8c, 0x61, 0x9b, 0x56, 0xfb, 0xb1, 0x4d, 0xed, + 0xef, 0x57, 0x60, 0x42, 0x36, 0xa7, 0xd9, 0x59, 0x8f, 0x49, 0x82, 0xde, 0x86, 0x9a, 0xc3, 0x07, + 0x9f, 0x48, 0x39, 0x7b, 0xae, 0x68, 0x87, 0x6e, 0x7c, 0xb3, 0xd4, 0x30, 0x98, 0x97, 0x7c, 0x70, + 0xca, 0x12, 0xed, 0xc0, 0xa9, 0x20, 0x4c, 0xd8, 0x7a, 0xa0, 0xf0, 0xe5, 0x3c, 0xa2, 0xd9, 0x7a, + 0x1e, 0x15, 0xf5, 0x9c, 0xba, 0x95, 0xe5, 0x87, 0xbb, 0xab, 0x40, 0xb7, 0xa5, 0x17, 0xa3, 0xca, + 0xea, 0x7a, 0xa6, 0x5c, 0x5d, 0xbd, 0x9d, 0x18, 0xf6, 0x0f, 0x2d, 0xa8, 0x49, 0xb2, 0xe3, 0xf4, + 0x89, 0xdf, 0x85, 0xe1, 0x98, 0x7d, 0x1a, 0x39, 0x4c, 0x97, 0xca, 0x35, 0x9d, 0x7f, 0xcf, 0x74, + 0xf1, 0xe3, 0xff, 0x63, 0x2c, 0xb9, 0x31, 0x37, 0xa4, 0xea, 0xc0, 0x87, 0xcf, 0x0d, 0xa9, 0x9a, + 0xd6, 0xc3, 0x0d, 0xf9, 0xcb, 0x16, 0x0c, 0x71, 0xe7, 0x50, 0x39, 0x0f, 0x9b, 0xe6, 0x4b, 0x4e, + 0x39, 0xbe, 0x41, 0x81, 0xc2, 0xb5, 0x8c, 0xee, 0x42, 0x8d, 0xfd, 0x58, 0x8e, 0xc2, 0x6d, 0xb1, + 0x10, 0x3c, 0x53, 0xc6, 0x39, 0xc5, 0x15, 0x1f, 0xd7, 0x26, 0x6f, 0x48, 0x06, 0x38, 0xe5, 0x65, + 0xff, 0xa0, 0x4a, 0x67, 0x7d, 0x4a, 0x6a, 0x2c, 0x6b, 0xd6, 0x49, 0x2c, 0x6b, 0x95, 0xe3, 0x5f, + 0xd6, 0xde, 0x85, 0xc9, 0x96, 0xe6, 0x93, 0x4f, 0x17, 0xd3, 0xab, 0x25, 0xdd, 0xcd, 0x9a, 0x23, + 0x9f, 0x3b, 0x43, 0x16, 0x4d, 0x76, 0x38, 0xcb, 0x1f, 0x11, 0x18, 0xe3, 0x07, 0x8a, 0xa2, 0xbe, + 0x81, 0x42, 0x99, 0xe5, 0x7e, 0x17, 0x5e, 0x42, 0x55, 0xc6, 0x82, 0x4e, 0x9a, 0x1a, 0x23, 0x6c, + 0xb0, 0xb5, 0xff, 0xe6, 0x20, 0x0c, 0x2e, 0xed, 0x90, 0x20, 0x39, 0xc6, 0x59, 0xbe, 0x0d, 0x13, + 0x5e, 0xb0, 0x13, 0xfa, 0x3b, 0xc4, 0xe5, 0xf8, 0xa3, 0xad, 0x68, 0xe7, 0x44, 0x25, 0x13, 0x2b, + 0x06, 0x33, 0x9c, 0x61, 0x7e, 0x1c, 0xfb, 0xc9, 0xd7, 0x61, 0x88, 0x4b, 0x84, 0xd8, 0x4c, 0x16, + 0x38, 0x49, 0xd9, 0x80, 0x8a, 0x99, 0x93, 0xee, 0x7a, 0xb9, 0x7f, 0x56, 0x30, 0x42, 0xf7, 0x60, + 0x62, 0xc3, 0x8b, 0xe2, 0x84, 0x6e, 0x08, 0xe3, 0xc4, 0xd9, 0x6e, 0x1f, 0x65, 0x23, 0xa9, 0x86, + 0x64, 0xd9, 0x60, 0x85, 0x33, 0xac, 0xd1, 0x16, 0x8c, 0xd3, 0x7d, 0x4c, 0x5a, 0xd7, 0x70, 0xff, + 0x75, 0x29, 0x5f, 0xd2, 0x4d, 0x9d, 0x13, 0x36, 0x19, 0x53, 0x65, 0xd4, 0x62, 0x1b, 0x9f, 0x11, + 0xb6, 0xa4, 0x2b, 0x65, 0xc4, 0x77, 0x3c, 0x1c, 0x47, 0x75, 0x1a, 0x3b, 0x3f, 0xae, 0x99, 0x3a, + 0x2d, 0x3d, 0x25, 0xb6, 0xbf, 0x4b, 0x17, 0x20, 0x3a, 0x8a, 0x27, 0xa1, 0xbb, 0xaf, 0x9b, 0xba, + 0xfb, 0x89, 0x12, 0x1f, 0xb7, 0x87, 0xde, 0xfe, 0x32, 0x8c, 0x6a, 0xdf, 0x1e, 0x5d, 0x86, 0x5a, + 0x4b, 0x1e, 0x75, 0x0a, 0x05, 0xae, 0x0c, 0x08, 0x75, 0x06, 0x8a, 0x53, 0x1a, 0x3a, 0x30, 0xd4, + 0xf0, 0xca, 0x46, 0x44, 0x50, 0xb3, 0x0c, 0x33, 0x8c, 0xfd, 0x3c, 0xc0, 0xd2, 0x03, 0xd2, 0x9a, + 0x6f, 0xb1, 0x83, 0x78, 0xed, 0xdc, 0xc4, 0xea, 0x7d, 0x6e, 0x62, 0x7f, 0xc7, 0x82, 0x89, 0xe5, + 0x45, 0xc3, 0x92, 0x9d, 0x03, 0xe0, 0x16, 0xe1, 0xdd, 0xbb, 0xb7, 0xa4, 0xa7, 0x93, 0xbb, 0xa3, + 0x14, 0x14, 0x6b, 0x14, 0xe8, 0x51, 0xa8, 0xfa, 0x9d, 0x40, 0x18, 0x6a, 0xc3, 0xfb, 0x7b, 0xb3, + 0xd5, 0x9b, 0x9d, 0x00, 0x53, 0x98, 0x16, 0x7a, 0x50, 0x2d, 0x1d, 0x7a, 0x50, 0x1c, 0x7c, 0xf7, + 0xad, 0x2a, 0x4c, 0x2d, 0xfb, 0xe4, 0x81, 0xd1, 0xea, 0xa7, 0x60, 0xc8, 0x8d, 0xbc, 0x1d, 0x12, + 0x65, 0x1d, 0x19, 0x75, 0x06, 0xc5, 0x02, 0x5b, 0x3a, 0x1a, 0xc2, 0x88, 0x04, 0xa9, 0x1e, 0x73, + 0x24, 0x48, 0x61, 0x9f, 0xd1, 0x06, 0x0c, 0x87, 0x7c, 0x23, 0x3d, 0x3d, 0xc8, 0x44, 0xf1, 0x95, + 0xc3, 0x1b, 0x93, 0x1d, 0x9f, 0x39, 0xb1, 0x0d, 0xe7, 0xc7, 0xd2, 0x4a, 0x9d, 0x09, 0x28, 0x96, + 0xcc, 0x67, 0x3e, 0x03, 0x63, 0x3a, 0x65, 0x5f, 0xe7, 0xd3, 0x3f, 0x67, 0xc1, 0xe9, 0x65, 0x3f, + 0x6c, 0xdd, 0xcb, 0x84, 0xab, 0xbc, 0x08, 0xa3, 0x74, 0x32, 0xc5, 0x46, 0x0c, 0x97, 0x11, 0xac, + 0x26, 0x50, 0x58, 0xa7, 0xd3, 0x8a, 0xdd, 0xb9, 0xb3, 0x52, 0xcf, 0x8b, 0x71, 0x13, 0x28, 0xac, + 0xd3, 0xd9, 0xff, 0xd9, 0x82, 0xc7, 0xaf, 0x2d, 0x2e, 0x35, 0xe8, 0x44, 0x8f, 0x13, 0x12, 0x24, + 0x5d, 0x61, 0x76, 0x4f, 0xc1, 0x50, 0xdb, 0xd5, 0x9a, 0xa2, 0x44, 0xa0, 0x51, 0x67, 0xad, 0x10, + 0xd8, 0x0f, 0x4b, 0xac, 0xe9, 0x2f, 0x5b, 0x70, 0xfa, 0x9a, 0x97, 0x60, 0xd2, 0x0e, 0xb3, 0x91, + 0x71, 0x11, 0x69, 0x87, 0xb1, 0x97, 0x84, 0xd1, 0x6e, 0x36, 0x32, 0x0e, 0x2b, 0x0c, 0xd6, 0xa8, + 0x78, 0xcd, 0x3b, 0x1e, 0x55, 0x81, 0xa2, 0x53, 0x5a, 0xcd, 0x1c, 0x8e, 0x15, 0x05, 0xed, 0x98, + 0xeb, 0x45, 0xcc, 0x5a, 0xd8, 0x15, 0x33, 0x58, 0x75, 0xac, 0x2e, 0x11, 0x38, 0xa5, 0xb1, 0xff, + 0xae, 0x05, 0x67, 0xaf, 0xf9, 0x9d, 0x38, 0x21, 0xd1, 0x46, 0x6c, 0x34, 0xf6, 0x79, 0xa8, 0x11, + 0x69, 0xd9, 0x8a, 0xb6, 0xaa, 0x55, 0x43, 0x99, 0xbc, 0x3c, 0x2c, 0x4f, 0xd1, 0x95, 0x88, 0x02, + 0xeb, 0x2f, 0x66, 0xe9, 0x5f, 0x57, 0x60, 0xfc, 0xfa, 0xda, 0x5a, 0xe3, 0x1a, 0x49, 0x84, 0x96, + 0x2c, 0x76, 0xc5, 0x34, 0xb4, 0x7d, 0xe8, 0xe8, 0xd5, 0xb9, 0x1e, 0xb3, 0xae, 0x93, 0x78, 0xfe, + 0x1c, 0x8f, 0x82, 0x9e, 0x5b, 0x09, 0x92, 0xdb, 0x51, 0x33, 0x89, 0xbc, 0x60, 0x33, 0x77, 0xdf, + 0x2a, 0x35, 0x79, 0xb5, 0x97, 0x26, 0x47, 0xcf, 0xc3, 0x10, 0x0b, 0xc2, 0x96, 0xd6, 0xc7, 0x47, + 0x95, 0xa1, 0xc0, 0xa0, 0x07, 0x7b, 0xb3, 0xb5, 0x3b, 0x78, 0x85, 0xff, 0xc1, 0x82, 0x14, 0xbd, + 0x03, 0xa3, 0x5b, 0x49, 0xd2, 0xbe, 0x4e, 0x1c, 0x97, 0x44, 0x52, 0x4b, 0x14, 0xd8, 0x69, 0x74, + 0x30, 0x78, 0x81, 0x74, 0x62, 0xa5, 0xb0, 0x18, 0xeb, 0x1c, 0xed, 0x26, 0x40, 0x8a, 0x7b, 0x48, + 0x9b, 0x0f, 0xfb, 0x2f, 0x57, 0x60, 0xf8, 0xba, 0x13, 0xb8, 0x3e, 0x89, 0xd0, 0x32, 0x0c, 0x90, + 0x07, 0xa4, 0x55, 0xce, 0xc4, 0x4c, 0x97, 0x3a, 0xee, 0x4b, 0xa2, 0xff, 0x31, 0x2b, 0x8f, 0x30, + 0x0c, 0xd3, 0x76, 0x5f, 0x53, 0xa1, 0x93, 0xcf, 0x16, 0x8f, 0x82, 0x12, 0x09, 0xbe, 0x4e, 0x0a, + 0x10, 0x96, 0x8c, 0x98, 0xd7, 0xa5, 0xd5, 0x6e, 0x52, 0xe5, 0x96, 0x94, 0x8b, 0x8e, 0x5e, 0x5b, + 0x6c, 0x70, 0x72, 0xc1, 0x97, 0x7b, 0x5d, 0x24, 0x10, 0xa7, 0xec, 0xec, 0x97, 0xe1, 0x0c, 0x3b, + 0xb7, 0x73, 0x92, 0x2d, 0x63, 0xce, 0x14, 0x0a, 0xa7, 0xfd, 0x0f, 0x2a, 0x70, 0x6a, 0xa5, 0xb9, + 0xd8, 0x34, 0xfd, 0x65, 0x2f, 0xc3, 0x18, 0x5f, 0x9e, 0xa9, 0xd0, 0x39, 0xbe, 0x28, 0xaf, 0x1c, + 0xcd, 0x6b, 0x1a, 0x0e, 0x1b, 0x94, 0xe8, 0x71, 0xa8, 0x7a, 0xef, 0x06, 0xd9, 0x08, 0x9e, 0x95, + 0xd7, 0x6f, 0x61, 0x0a, 0xa7, 0x68, 0xba, 0xd2, 0x73, 0x15, 0xa7, 0xd0, 0x6a, 0xb5, 0x7f, 0x0d, + 0x26, 0xbc, 0xb8, 0x15, 0x7b, 0x2b, 0x01, 0x9d, 0xff, 0x4e, 0x4b, 0x8a, 0x6f, 0x6a, 0x9d, 0xd3, + 0xa6, 0x2a, 0x2c, 0xce, 0x50, 0x6b, 0xfa, 0x76, 0xb0, 0xb4, 0xb5, 0x50, 0x1c, 0x43, 0xf9, 0x15, + 0xa8, 0xa9, 0x58, 0x17, 0x19, 0xa2, 0x64, 0xe5, 0x87, 0x28, 0x95, 0x50, 0x38, 0xd2, 0x8b, 0x59, + 0xcd, 0xf5, 0x62, 0xfe, 0x33, 0x0b, 0xd2, 0x63, 0x7d, 0x84, 0xa1, 0xd6, 0x0e, 0xd9, 0x11, 0x41, + 0x24, 0x8f, 0xe3, 0x9e, 0x2c, 0x90, 0x44, 0x3e, 0x13, 0xb8, 0xac, 0x34, 0x64, 0x59, 0x9c, 0xb2, + 0x41, 0x37, 0x61, 0xb8, 0x1d, 0x91, 0x66, 0xc2, 0x02, 0x71, 0xfb, 0xe0, 0xc8, 0xa4, 0xba, 0xc1, + 0x4b, 0x62, 0xc9, 0xc2, 0xfe, 0x0d, 0x0b, 0xe0, 0xa6, 0xb7, 0xed, 0x25, 0xd8, 0x09, 0x36, 0xc9, + 0x31, 0xee, 0xf3, 0x6e, 0xc1, 0x40, 0xdc, 0x26, 0xad, 0x72, 0x87, 0x3b, 0x69, 0x8b, 0x9a, 0x6d, + 0xd2, 0x4a, 0x3f, 0x03, 0xfd, 0x87, 0x19, 0x1f, 0xfb, 0x57, 0x01, 0x26, 0x52, 0x32, 0x6a, 0x68, + 0xa3, 0xe7, 0x8c, 0xc8, 0xd3, 0x47, 0x33, 0x91, 0xa7, 0x35, 0x46, 0xad, 0x05, 0x9b, 0x26, 0x50, + 0xdd, 0x76, 0x1e, 0x08, 0xbb, 0xfe, 0xc5, 0xb2, 0x0d, 0xa2, 0x35, 0xcd, 0xad, 0x3a, 0x0f, 0xb8, + 0x19, 0xf5, 0xac, 0x14, 0xa0, 0x55, 0xe7, 0xc1, 0x01, 0x3f, 0xc2, 0x61, 0x33, 0x90, 0x6e, 0x24, + 0xbe, 0xfe, 0x5f, 0xd3, 0xff, 0x4c, 0x29, 0xd2, 0xea, 0x58, 0xad, 0x5e, 0x20, 0x9c, 0x71, 0x7d, + 0xd6, 0xea, 0x05, 0xd9, 0x5a, 0xbd, 0xa0, 0x44, 0xad, 0x5e, 0x80, 0xde, 0xb3, 0x60, 0x58, 0xf8, + 0xb0, 0x59, 0x80, 0xd4, 0xe8, 0xd5, 0x4f, 0xf7, 0x55, 0xb5, 0x70, 0x86, 0xf3, 0xea, 0x2f, 0x4b, + 0xdb, 0x51, 0x40, 0x0b, 0x9b, 0x20, 0xab, 0x46, 0xdf, 0xb6, 0x60, 0x42, 0xfc, 0xc6, 0xe4, 0xdd, + 0x0e, 0x89, 0x13, 0xb1, 0x4a, 0x7d, 0xee, 0x28, 0xad, 0x11, 0x2c, 0x78, 0xa3, 0x3e, 0x25, 0x55, + 0x8c, 0x89, 0x2c, 0x6c, 0x5b, 0xa6, 0x3d, 0xe8, 0x7b, 0x16, 0x9c, 0xd9, 0x76, 0x1e, 0xf0, 0x1a, + 0x39, 0x0c, 0x3b, 0x89, 0x17, 0x8a, 0x20, 0xb0, 0xe5, 0x7e, 0xe5, 0xa4, 0x8b, 0x11, 0x6f, 0xee, + 0xab, 0xf2, 0x60, 0x31, 0x8f, 0xa4, 0xb0, 0xd1, 0xb9, 0x2d, 0x9c, 0x71, 0x61, 0x44, 0x0a, 0x66, + 0x8e, 0xd5, 0xbe, 0xa0, 0x2f, 0xc6, 0x87, 0xcf, 0x40, 0xe9, 0xe2, 0x9a, 0x7b, 0xbd, 0xe3, 0x04, + 0x89, 0x97, 0xec, 0x6a, 0x36, 0x3e, 0xab, 0x45, 0x08, 0xe2, 0x31, 0xd6, 0xb2, 0x05, 0x63, 0xba, + 0xcc, 0x1d, 0x63, 0x4d, 0x21, 0x9c, 0xce, 0x91, 0xa7, 0x63, 0xac, 0xb0, 0x03, 0x8f, 0xf6, 0x94, + 0x8b, 0xe3, 0xab, 0xd6, 0xfe, 0xa1, 0xa5, 0x2b, 0xcc, 0x93, 0x70, 0x9d, 0xac, 0x9a, 0xae, 0x93, + 0x8b, 0x65, 0xa7, 0x4e, 0x0f, 0xff, 0xc9, 0x86, 0xde, 0x7e, 0xba, 0x12, 0xa0, 0x35, 0x18, 0xf2, + 0x29, 0x44, 0x9e, 0xd7, 0x5c, 0xea, 0x67, 0x72, 0xa6, 0xc6, 0x05, 0x83, 0xc7, 0x58, 0xf0, 0xb2, + 0x7f, 0xd3, 0x82, 0x81, 0x93, 0x18, 0x9e, 0x86, 0x39, 0x3c, 0xbd, 0x4c, 0x54, 0x71, 0x29, 0x73, + 0x0e, 0x3b, 0xf7, 0x97, 0x1e, 0x24, 0x24, 0x88, 0x99, 0x29, 0x99, 0x3b, 0x42, 0xbf, 0x52, 0x81, + 0x51, 0x5a, 0x91, 0x3c, 0x70, 0x7f, 0x05, 0xc6, 0x7d, 0x67, 0x9d, 0xf8, 0xd2, 0xe1, 0x9b, 0xdd, + 0x76, 0xdd, 0xd4, 0x91, 0xd8, 0xa4, 0xa5, 0x85, 0x37, 0x74, 0x7f, 0xb8, 0x30, 0x89, 0x54, 0x61, + 0xc3, 0x59, 0x8e, 0x4d, 0x5a, 0x6a, 0xf9, 0xdf, 0x77, 0x92, 0xd6, 0x96, 0xd8, 0x92, 0xa9, 0xe6, + 0xde, 0xa5, 0x40, 0xcc, 0x71, 0x68, 0x1e, 0x26, 0xa5, 0xc4, 0xbe, 0xc1, 0x87, 0x4e, 0x98, 0x8b, + 0xea, 0x26, 0x1d, 0x36, 0xd1, 0x38, 0x4b, 0x8f, 0x3e, 0x03, 0x13, 0x74, 0x70, 0xc2, 0x4e, 0x22, + 0xc3, 0x09, 0x06, 0x59, 0x38, 0x01, 0x0b, 0xdf, 0x5c, 0x33, 0x30, 0x38, 0x43, 0x69, 0xbf, 0x03, + 0xa7, 0x6f, 0x86, 0x8e, 0xbb, 0xe0, 0xf8, 0x4e, 0xd0, 0x22, 0xd1, 0x4a, 0xb0, 0x59, 0x78, 0xf2, + 0xaa, 0x9f, 0x8e, 0x56, 0x8a, 0x4e, 0x47, 0xed, 0x08, 0x90, 0x5e, 0x81, 0x08, 0x84, 0x79, 0x0b, + 0x86, 0x3d, 0x5e, 0x95, 0x90, 0xda, 0x2b, 0x45, 0x4e, 0xa5, 0xae, 0x36, 0x6a, 0x81, 0x1d, 0x1c, + 0x80, 0x25, 0x4b, 0xba, 0x93, 0xc8, 0xf3, 0x42, 0x15, 0x6f, 0xd6, 0xec, 0xbf, 0x6a, 0xc1, 0xe4, + 0xad, 0xcc, 0x75, 0xad, 0xa7, 0x60, 0x28, 0x26, 0x51, 0x8e, 0x4b, 0xad, 0xc9, 0xa0, 0x58, 0x60, + 0x1f, 0xfa, 0x36, 0xfd, 0x17, 0x2b, 0x50, 0x63, 0x51, 0x95, 0x6d, 0xa7, 0x75, 0x9c, 0x46, 0xe9, + 0xaa, 0x61, 0x94, 0x16, 0x6c, 0x12, 0x55, 0x83, 0x7a, 0xd9, 0xa4, 0xe8, 0x8e, 0xba, 0xbe, 0x54, + 0x6a, 0x7f, 0x98, 0x32, 0xe4, 0x37, 0x5d, 0x26, 0xcc, 0xdb, 0x4e, 0xf2, 0x6a, 0x13, 0x3b, 0xaf, + 0x54, 0xb4, 0x1f, 0xbe, 0xf3, 0x4a, 0xd5, 0xb4, 0x1e, 0x5a, 0xa9, 0xa1, 0xb5, 0x9e, 0xa9, 0xed, + 0xcf, 0xb2, 0x10, 0x39, 0xc7, 0xf7, 0xbe, 0x4a, 0xd4, 0x35, 0xc0, 0x59, 0x11, 0xf1, 0x26, 0xa0, + 0x07, 0x4c, 0xc1, 0x88, 0x7f, 0xfc, 0x76, 0x67, 0x5a, 0xc4, 0xbe, 0x0e, 0x93, 0x99, 0xb1, 0x43, + 0x2f, 0xc2, 0x60, 0x7b, 0xcb, 0x89, 0x49, 0x26, 0xf6, 0x62, 0xb0, 0x41, 0x81, 0x07, 0x7b, 0xb3, + 0x13, 0xaa, 0x00, 0x83, 0x60, 0x4e, 0x6d, 0xff, 0x89, 0x05, 0x03, 0xb7, 0x42, 0xf7, 0x38, 0x65, + 0xec, 0xba, 0x21, 0x63, 0x4f, 0x15, 0xdf, 0x09, 0xef, 0x29, 0x5e, 0x8d, 0x8c, 0x78, 0x5d, 0x2c, + 0xc1, 0xeb, 0x70, 0xc9, 0xda, 0x86, 0x51, 0x76, 0xe7, 0x5c, 0x04, 0x9d, 0x3c, 0x6f, 0x6c, 0xa0, + 0x66, 0x33, 0x1b, 0xa8, 0x49, 0x8d, 0x54, 0xdb, 0x46, 0x3d, 0x0d, 0xc3, 0x22, 0xc8, 0x21, 0x1b, + 0x17, 0x28, 0x68, 0xb1, 0xc4, 0xdb, 0xbf, 0x5e, 0x05, 0xe3, 0x8e, 0x3b, 0xfa, 0x91, 0x05, 0x73, + 0x11, 0xbf, 0x94, 0xe0, 0xd6, 0x3b, 0x91, 0x17, 0x6c, 0x36, 0x5b, 0x5b, 0xc4, 0xed, 0xf8, 0x5e, + 0xb0, 0xb9, 0xb2, 0x19, 0x84, 0x0a, 0xbc, 0xf4, 0x80, 0xb4, 0x3a, 0xcc, 0xbb, 0x5a, 0xfa, 0x6a, + 0xbd, 0x3a, 0xe5, 0xbc, 0xba, 0xbf, 0x37, 0x3b, 0x87, 0xfb, 0xaa, 0x05, 0xf7, 0xd9, 0x2a, 0xf4, + 0xfb, 0x16, 0x5c, 0xe6, 0xb7, 0xbc, 0xcb, 0xf7, 0xa4, 0xd4, 0xc6, 0xb3, 0x21, 0x99, 0xa6, 0xec, + 0xd6, 0x48, 0xb4, 0xbd, 0xf0, 0x92, 0x18, 0xe4, 0xcb, 0x8d, 0xfe, 0x6a, 0xc5, 0xfd, 0x36, 0xd3, + 0xfe, 0xb7, 0x55, 0x18, 0xa7, 0xe3, 0x99, 0xde, 0xf0, 0x7c, 0xd1, 0x10, 0x93, 0x8f, 0x65, 0xc4, + 0xe4, 0x94, 0x41, 0xfc, 0x70, 0x2e, 0x77, 0x26, 0x70, 0xca, 0x77, 0xe2, 0xe4, 0x3a, 0x71, 0xa2, + 0x64, 0x9d, 0x38, 0xec, 0x48, 0x51, 0x4c, 0x82, 0xbe, 0x8e, 0x29, 0x55, 0xe4, 0xcc, 0xcd, 0x2c, + 0x37, 0xdc, 0x5d, 0x01, 0xba, 0x0f, 0x88, 0x9d, 0x5f, 0x46, 0x4e, 0x10, 0xf3, 0xce, 0x78, 0xc2, + 0x21, 0xdb, 0x67, 0xb5, 0x33, 0xa2, 0x5a, 0x74, 0xb3, 0x8b, 0x1d, 0xce, 0xa9, 0x42, 0x3b, 0xa4, + 0x1e, 0x2c, 0x7b, 0x48, 0x3d, 0x54, 0x10, 0x92, 0xfb, 0xf3, 0x16, 0x9c, 0xa6, 0x1f, 0xc6, 0x0c, + 0xdf, 0x8c, 0x51, 0x08, 0x93, 0xb4, 0x07, 0x3e, 0x49, 0x24, 0x4c, 0xcc, 0xb0, 0x02, 0x5b, 0xda, + 0xe4, 0x93, 0x5a, 0x6c, 0x37, 0x4c, 0x66, 0x38, 0xcb, 0xdd, 0xfe, 0x75, 0x0b, 0x58, 0x7c, 0xd8, + 0x49, 0xac, 0x63, 0xd7, 0xcc, 0x75, 0xcc, 0x2e, 0x56, 0x1a, 0x3d, 0x96, 0xb0, 0x17, 0x60, 0x8a, + 0x62, 0x1b, 0x51, 0xf8, 0x60, 0x57, 0x1a, 0xd7, 0xc5, 0xbe, 0xd9, 0xf7, 0x2a, 0x7c, 0xe6, 0xa8, + 0x0b, 0x56, 0xe8, 0x17, 0x2c, 0x18, 0x69, 0x39, 0x6d, 0xa7, 0xc5, 0x93, 0x84, 0x94, 0xf0, 0xc3, + 0x18, 0xe5, 0xe7, 0x16, 0x45, 0x59, 0xee, 0x43, 0xf8, 0xa4, 0xec, 0xba, 0x04, 0x17, 0xfa, 0x0d, + 0x54, 0xe5, 0x33, 0x1e, 0x8c, 0x1b, 0xcc, 0x8e, 0x71, 0xe3, 0xf9, 0x0b, 0x16, 0xd7, 0xfa, 0x6a, + 0x73, 0x70, 0x1f, 0x4e, 0x05, 0xda, 0x7f, 0xaa, 0xcf, 0xa4, 0x2d, 0x3c, 0x57, 0x5e, 0xaf, 0x33, + 0x35, 0xa8, 0x85, 0xc2, 0x65, 0x18, 0xe2, 0xee, 0x3a, 0xec, 0x7f, 0x68, 0xc1, 0x23, 0x3a, 0xa1, + 0x76, 0x1f, 0xae, 0xc8, 0x2f, 0x5c, 0x87, 0x91, 0xb0, 0x4d, 0x22, 0x27, 0xdd, 0x08, 0x5d, 0x94, + 0xa3, 0x7f, 0x5b, 0xc0, 0x0f, 0xf6, 0x66, 0xcf, 0xe8, 0xdc, 0x25, 0x1c, 0xab, 0x92, 0xc8, 0x86, + 0x21, 0x36, 0x2e, 0xb1, 0xb8, 0xc9, 0xc8, 0x52, 0x66, 0xb0, 0xd3, 0x90, 0x18, 0x0b, 0x8c, 0xfd, + 0xd7, 0x2c, 0x2e, 0x6c, 0x7a, 0xd3, 0xd1, 0xd7, 0x60, 0x6a, 0x9b, 0xee, 0x99, 0x96, 0x1e, 0xb4, + 0xe9, 0x4a, 0xca, 0x4e, 0x81, 0xad, 0x32, 0xeb, 0x47, 0x8f, 0xee, 0x2e, 0x4c, 0x8b, 0xd6, 0x4f, + 0xad, 0x66, 0xd8, 0xe2, 0xae, 0x8a, 0xec, 0x3f, 0x10, 0x53, 0x96, 0x19, 0x6f, 0x4f, 0xc3, 0x70, + 0x3b, 0x74, 0x17, 0x57, 0xea, 0x58, 0x8c, 0x95, 0xd2, 0x39, 0x0d, 0x0e, 0xc6, 0x12, 0x8f, 0xae, + 0x02, 0x90, 0x07, 0x09, 0x89, 0x02, 0xc7, 0x57, 0xa7, 0xb7, 0xca, 0x56, 0x5a, 0x52, 0x18, 0xac, + 0x51, 0xd1, 0x32, 0xed, 0x28, 0xdc, 0xf1, 0x5c, 0x16, 0x97, 0x5e, 0x35, 0xcb, 0x34, 0x14, 0x06, + 0x6b, 0x54, 0x74, 0xa7, 0xda, 0x09, 0x62, 0xbe, 0x8e, 0x39, 0xeb, 0x22, 0xd3, 0xc3, 0x48, 0xba, + 0x53, 0xbd, 0xa3, 0x23, 0xb1, 0x49, 0x6b, 0xff, 0x4e, 0x0d, 0x20, 0xb5, 0x94, 0xd0, 0x7b, 0xdd, + 0x33, 0xf4, 0x53, 0x65, 0xcd, 0xac, 0x87, 0x37, 0x3d, 0xd1, 0x37, 0x2d, 0x18, 0x75, 0x7c, 0x3f, + 0x6c, 0x39, 0x09, 0xeb, 0x51, 0xa5, 0xac, 0xae, 0x10, 0x2d, 0x99, 0x4f, 0xcb, 0xf2, 0xc6, 0x3c, + 0x2f, 0x0f, 0xf7, 0x34, 0x4c, 0x61, 0x7b, 0xf4, 0x26, 0xa0, 0x4f, 0x4a, 0x0b, 0x9b, 0x7f, 0x94, + 0x99, 0xac, 0x85, 0x5d, 0x63, 0x1a, 0x52, 0x33, 0xae, 0xd1, 0x3b, 0x46, 0x52, 0x83, 0x81, 0x32, + 0x97, 0x68, 0x0d, 0xdb, 0xa1, 0x28, 0x9f, 0x01, 0xfa, 0xa2, 0x1e, 0xb2, 0x3b, 0x58, 0xe6, 0x86, + 0xaa, 0x66, 0xc2, 0x16, 0x84, 0xeb, 0x26, 0x30, 0xe9, 0x9a, 0x6b, 0xa5, 0x88, 0xc1, 0xba, 0x52, + 0x5c, 0x43, 0x66, 0x91, 0x4d, 0x57, 0xc7, 0x0c, 0x02, 0x67, 0xab, 0x40, 0x5f, 0xe4, 0x01, 0xd5, + 0x2b, 0xc1, 0x46, 0x28, 0xc2, 0xb0, 0x2e, 0x95, 0xf8, 0xe6, 0xbb, 0x71, 0x42, 0xb6, 0x69, 0x99, + 0x74, 0x35, 0xbc, 0x25, 0xb8, 0x60, 0xc5, 0x0f, 0xad, 0xc1, 0x10, 0xbb, 0xfe, 0x11, 0x4f, 0x8f, + 0x94, 0xf1, 0x96, 0x99, 0x17, 0x1f, 0x53, 0x1b, 0x84, 0xfd, 0x8d, 0xb1, 0xe0, 0x85, 0xae, 0xcb, + 0x8b, 0xc2, 0xf1, 0x4a, 0x70, 0x27, 0x26, 0xec, 0xa2, 0x70, 0x6d, 0xe1, 0xe3, 0xe9, 0xcd, 0x5f, + 0x0e, 0xcf, 0x4d, 0xe3, 0x64, 0x94, 0xa4, 0xa6, 0x88, 0xf8, 0x2f, 0xb3, 0x43, 0x4d, 0x43, 0x99, + 0x86, 0x9a, 0xb9, 0xa4, 0xd2, 0xc1, 0x7e, 0xc3, 0x64, 0x86, 0xb3, 0xdc, 0x4f, 0x70, 0x0d, 0x9c, + 0xf1, 0x61, 0x2a, 0x3b, 0x25, 0x8f, 0x71, 0xc5, 0xfd, 0xe3, 0x01, 0x98, 0x30, 0x05, 0x03, 0x5d, + 0x86, 0xda, 0x36, 0xcb, 0xdd, 0x94, 0x66, 0x8c, 0x51, 0xf2, 0xbf, 0x2a, 0x11, 0x38, 0xa5, 0x61, + 0xb9, 0x73, 0x58, 0x71, 0x2d, 0xf4, 0x26, 0xcd, 0x9d, 0xa3, 0x30, 0x58, 0xa3, 0xa2, 0x76, 0xeb, + 0x7a, 0x18, 0x26, 0x4a, 0x71, 0x2b, 0x99, 0x59, 0x60, 0x50, 0x2c, 0xb0, 0x54, 0x61, 0xdf, 0xa3, + 0x1d, 0xf2, 0x4d, 0xb7, 0x9f, 0x52, 0xd8, 0x37, 0x74, 0x24, 0x36, 0x69, 0xe9, 0x02, 0x14, 0xc6, + 0x4c, 0x08, 0x85, 0x75, 0x9c, 0x86, 0x32, 0x35, 0xf9, 0x75, 0x28, 0x89, 0x47, 0x5f, 0x80, 0x47, + 0xd4, 0xed, 0x25, 0xcc, 0xdd, 0xa8, 0xb2, 0xc6, 0x21, 0x63, 0x8b, 0xfb, 0xc8, 0x62, 0x3e, 0x19, + 0xee, 0x55, 0x1e, 0xbd, 0x06, 0x13, 0xc2, 0xb2, 0x95, 0x1c, 0x87, 0xcd, 0x93, 0xee, 0x1b, 0x06, + 0x16, 0x67, 0xa8, 0x51, 0x1d, 0xa6, 0x28, 0x84, 0x59, 0x94, 0x92, 0x03, 0xbf, 0x85, 0xa5, 0x56, + 0xe6, 0x1b, 0x19, 0x3c, 0xee, 0x2a, 0x81, 0xe6, 0x61, 0x92, 0xdb, 0x16, 0x74, 0x23, 0xc7, 0xbe, + 0x83, 0x08, 0x9b, 0x54, 0x93, 0xe0, 0xb6, 0x89, 0xc6, 0x59, 0x7a, 0xf4, 0x32, 0x8c, 0x39, 0x51, + 0x6b, 0xcb, 0x4b, 0x48, 0x2b, 0xe9, 0x44, 0xfc, 0x0a, 0xbe, 0x16, 0x2a, 0x30, 0xaf, 0xe1, 0xb0, + 0x41, 0x69, 0x7f, 0x15, 0x4e, 0xe7, 0x44, 0x67, 0x53, 0xc1, 0x71, 0xda, 0x9e, 0xec, 0x53, 0x26, + 0x28, 0x69, 0xbe, 0xb1, 0x22, 0x7b, 0xa3, 0x51, 0x51, 0xe9, 0x64, 0xfe, 0x63, 0x2d, 0x91, 0x9b, + 0x92, 0xce, 0x65, 0x89, 0xc0, 0x29, 0x8d, 0xfd, 0x3f, 0x6a, 0xa0, 0x79, 0x5b, 0x4a, 0x84, 0xa2, + 0xbc, 0x0c, 0x63, 0x32, 0x37, 0xa1, 0x96, 0x13, 0x4c, 0x75, 0xf3, 0x9a, 0x86, 0xc3, 0x06, 0x25, + 0x6d, 0x5b, 0x20, 0x7d, 0x47, 0xd9, 0x10, 0x28, 0xe5, 0x54, 0xc2, 0x29, 0x0d, 0xba, 0x04, 0x23, + 0x31, 0xf1, 0x37, 0x6e, 0x7a, 0xc1, 0x3d, 0x21, 0xd8, 0x4a, 0x2b, 0x37, 0x05, 0x1c, 0x2b, 0x0a, + 0xf4, 0x39, 0xa8, 0x76, 0x3c, 0x57, 0x88, 0xf2, 0x9c, 0xb4, 0x3b, 0xef, 0xac, 0xd4, 0x0f, 0xf6, + 0x66, 0x67, 0xf3, 0x13, 0x2e, 0xd2, 0xdd, 0x74, 0x3c, 0x47, 0x27, 0x1f, 0x2d, 0x9a, 0xe7, 0x46, + 0x1f, 0xea, 0xd3, 0x8d, 0x7e, 0x15, 0x40, 0xf4, 0x59, 0x4a, 0x72, 0x35, 0xfd, 0x66, 0xd7, 0x14, + 0x06, 0x6b, 0x54, 0x74, 0x4f, 0xde, 0x8a, 0x88, 0x23, 0x37, 0xad, 0x3c, 0x74, 0x78, 0xe4, 0x03, + 0xec, 0xc9, 0x17, 0xb3, 0xdc, 0x70, 0x77, 0x05, 0xa8, 0x0d, 0xa7, 0x5c, 0x3a, 0x8f, 0x8c, 0x5a, + 0x6b, 0x47, 0x08, 0x58, 0xa6, 0x35, 0xd6, 0xb3, 0x9c, 0x70, 0x37, 0x73, 0xf4, 0x36, 0xcc, 0x48, + 0x60, 0xf7, 0xfd, 0x44, 0x36, 0x5d, 0xaa, 0x0b, 0xe7, 0xf7, 0xf7, 0x66, 0x67, 0xea, 0x3d, 0xa9, + 0xf0, 0x21, 0x1c, 0xd0, 0x5b, 0x30, 0xc4, 0x0e, 0x5e, 0xe2, 0xe9, 0x51, 0xb6, 0xda, 0xbd, 0x50, + 0xd6, 0xef, 0x38, 0xc7, 0x8e, 0x6f, 0x44, 0x3c, 0x67, 0x7a, 0x98, 0xc5, 0x80, 0x58, 0xf0, 0x44, + 0x6d, 0x18, 0x75, 0x82, 0x20, 0x4c, 0x1c, 0x6e, 0x84, 0x8d, 0x95, 0xb1, 0x23, 0xb5, 0x2a, 0xe6, + 0xd3, 0xb2, 0xbc, 0x1e, 0x15, 0x24, 0xa6, 0x61, 0xb0, 0x5e, 0x05, 0x5d, 0xc6, 0xc3, 0xfb, 0x54, + 0x61, 0xca, 0xb3, 0x87, 0x78, 0x7a, 0xbc, 0xcc, 0x32, 0x7e, 0xdb, 0x28, 0xa4, 0x69, 0x30, 0x93, + 0x19, 0xce, 0x72, 0x47, 0x73, 0x86, 0x3b, 0x79, 0x22, 0x8d, 0x56, 0x4e, 0xdd, 0xc9, 0xba, 0xf7, + 0x98, 0xdd, 0x7d, 0xe5, 0x11, 0x8a, 0x4c, 0x13, 0x4c, 0x66, 0xee, 0xbe, 0xa6, 0x28, 0xac, 0xd3, + 0xcd, 0x7c, 0x1a, 0x46, 0xb5, 0x01, 0xef, 0x27, 0x2c, 0x76, 0xe6, 0x35, 0x98, 0xca, 0x0e, 0x64, + 0x5f, 0x61, 0xb5, 0xff, 0xab, 0x02, 0x93, 0x39, 0x07, 0x3a, 0xf7, 0x3c, 0x16, 0xda, 0x6d, 0xa8, + 0xbc, 0x1b, 0x5e, 0xe0, 0x62, 0x86, 0x31, 0x15, 0x57, 0xa5, 0x84, 0xe2, 0x92, 0x5a, 0xb4, 0xda, + 0x53, 0x8b, 0x0a, 0x65, 0x35, 0x70, 0x74, 0x65, 0x65, 0xae, 0x0e, 0x83, 0xa5, 0x56, 0x87, 0x87, + 0xa0, 0xe0, 0x8c, 0x05, 0x66, 0xb8, 0xc4, 0x02, 0x73, 0x60, 0xc1, 0x84, 0x29, 0x79, 0x25, 0x46, + 0xfc, 0xc3, 0x3a, 0x80, 0x73, 0x6c, 0x23, 0x96, 0x44, 0xa1, 0xef, 0x93, 0x48, 0x04, 0xcc, 0x4d, + 0x88, 0x7d, 0x95, 0x80, 0x62, 0x8d, 0xc2, 0xfe, 0x76, 0x05, 0xa6, 0xd2, 0xe8, 0x69, 0x91, 0xa3, + 0xf5, 0xf8, 0x4e, 0x48, 0xd6, 0x8c, 0x13, 0x92, 0xa2, 0xd4, 0xab, 0x99, 0x76, 0xf5, 0x3c, 0x2d, + 0x79, 0x2b, 0x73, 0x5a, 0xf2, 0x42, 0x9f, 0x7c, 0x0f, 0x3f, 0x39, 0xf9, 0xe7, 0x15, 0x38, 0x9b, + 0x2d, 0xb2, 0xe8, 0x3b, 0xde, 0xf6, 0x31, 0x8e, 0xd3, 0x17, 0x8c, 0x71, 0x7a, 0xa9, 0xbf, 0xfe, + 0xb0, 0xc6, 0xf5, 0x1c, 0x2c, 0x27, 0x33, 0x58, 0x9f, 0x3e, 0x0a, 0xf3, 0xc3, 0x47, 0xec, 0x77, + 0x2d, 0x78, 0x34, 0xb7, 0xdc, 0x49, 0x78, 0x82, 0xdf, 0x34, 0x3d, 0xc1, 0xcf, 0x1f, 0xa1, 0x7b, + 0x3d, 0x5c, 0xc3, 0xff, 0xad, 0xd2, 0xa3, 0x5b, 0xcc, 0x5b, 0x76, 0x1b, 0x46, 0x9d, 0x56, 0x8b, + 0xc4, 0xf1, 0x6a, 0xe8, 0xaa, 0xa4, 0x41, 0xcf, 0xb1, 0xf5, 0x33, 0x05, 0x1f, 0xec, 0xcd, 0xce, + 0x64, 0x59, 0xa4, 0x68, 0xac, 0x73, 0x30, 0x93, 0x7f, 0x55, 0x8e, 0x29, 0xf9, 0xd7, 0x55, 0x80, + 0x1d, 0xb5, 0x4b, 0xcf, 0x3a, 0xe1, 0xb4, 0xfd, 0xbb, 0x46, 0x85, 0xde, 0x66, 0x56, 0x2f, 0x8f, + 0x14, 0x19, 0x28, 0x9c, 0x70, 0xc6, 0x07, 0xd4, 0xc3, 0x4e, 0xf8, 0xe5, 0x4e, 0xe5, 0xb1, 0x54, + 0x3c, 0xed, 0xef, 0x56, 0xe1, 0xa3, 0x87, 0x88, 0x1d, 0x9a, 0x37, 0x0f, 0x80, 0x9f, 0xcd, 0xba, + 0xa7, 0x66, 0x72, 0x0b, 0x1b, 0xfe, 0xaa, 0xcc, 0xc7, 0xaa, 0x7c, 0xe0, 0x8f, 0xf5, 0x2d, 0xdd, + 0x99, 0xc8, 0x23, 0x3e, 0xaf, 0x1d, 0x79, 0x62, 0xfd, 0x74, 0x3a, 0xff, 0xbf, 0x6e, 0xc1, 0xc7, + 0x72, 0x3b, 0x65, 0xc4, 0x99, 0x5c, 0x86, 0x5a, 0x8b, 0x02, 0xb5, 0x2b, 0x39, 0xe9, 0x5d, 0x38, + 0x89, 0xc0, 0x29, 0x8d, 0x11, 0x4e, 0x52, 0x29, 0x0c, 0x27, 0xf9, 0x0f, 0x16, 0x9c, 0xc9, 0x36, + 0xe2, 0x24, 0xb4, 0x4e, 0xd3, 0xd4, 0x3a, 0x73, 0xfd, 0x7d, 0xfb, 0x1e, 0x0a, 0xe7, 0xdb, 0xe3, + 0x70, 0xae, 0x6b, 0xb1, 0xe2, 0xc3, 0xf8, 0xb3, 0x16, 0x9c, 0xda, 0x64, 0xfb, 0x0b, 0xed, 0xe2, + 0x93, 0xe8, 0x58, 0xc1, 0x6d, 0xb1, 0x43, 0xef, 0x4b, 0xf1, 0xdd, 0x52, 0x17, 0x09, 0xee, 0xae, + 0x0c, 0x7d, 0xc3, 0x82, 0x33, 0xce, 0xfd, 0xb8, 0x2b, 0xe1, 0xbf, 0x90, 0xa3, 0xd7, 0x0a, 0x5c, + 0x79, 0x05, 0x4f, 0x05, 0x2c, 0x4c, 0xef, 0xef, 0xcd, 0x9e, 0xc9, 0xa3, 0xc2, 0xb9, 0xb5, 0xa2, + 0xb7, 0x44, 0xa2, 0x34, 0x6a, 0xf6, 0x95, 0xba, 0xc2, 0x97, 0x77, 0x0d, 0x83, 0xeb, 0x24, 0x89, + 0xc1, 0x8a, 0x23, 0xfa, 0x32, 0xd4, 0x36, 0xe5, 0x5d, 0x27, 0xa1, 0xf4, 0x0a, 0x56, 0x96, 0xdc, + 0xab, 0x51, 0x3c, 0xd8, 0x5f, 0xa1, 0x70, 0xca, 0x14, 0x5d, 0x87, 0x6a, 0xb0, 0x11, 0x8b, 0x8b, + 0xc5, 0x45, 0xe1, 0x44, 0x66, 0xf0, 0x16, 0xbf, 0x88, 0x79, 0x6b, 0xb9, 0x89, 0x29, 0x0b, 0xca, + 0x29, 0x5a, 0x77, 0x85, 0x0f, 0xbb, 0x80, 0x13, 0x5e, 0xa8, 0x77, 0x73, 0xc2, 0x0b, 0x75, 0x4c, + 0x59, 0xb0, 0xb8, 0xc5, 0xb8, 0x15, 0x7b, 0xc2, 0x41, 0x5d, 0x70, 0xeb, 0xbc, 0xeb, 0x72, 0x0a, + 0xcf, 0x99, 0xc7, 0xc0, 0x98, 0x33, 0x42, 0x6b, 0x30, 0xd4, 0x62, 0x39, 0xae, 0x85, 0xff, 0xa0, + 0x28, 0xf3, 0x71, 0x57, 0x3e, 0x6c, 0x7e, 0x90, 0xc6, 0xe1, 0x58, 0xf0, 0x62, 0x5c, 0x49, 0x7b, + 0x6b, 0x23, 0x16, 0xfe, 0x81, 0x22, 0xae, 0x5d, 0xd9, 0xca, 0x05, 0x57, 0x06, 0xc7, 0x82, 0x17, + 0xaa, 0x43, 0x65, 0xa3, 0x25, 0x12, 0x55, 0x16, 0xec, 0x68, 0xcd, 0x5b, 0xb5, 0x0b, 0x43, 0xfb, + 0x7b, 0xb3, 0x95, 0xe5, 0x45, 0x5c, 0xd9, 0x68, 0xa1, 0x37, 0x61, 0x78, 0x83, 0xdf, 0x93, 0x14, + 0x49, 0x29, 0xaf, 0x14, 0x5d, 0xe6, 0xec, 0xba, 0x54, 0xc9, 0x2f, 0x74, 0x08, 0x04, 0x96, 0xec, + 0xd0, 0xdb, 0x00, 0x1b, 0xea, 0xe6, 0xa7, 0xc8, 0x4a, 0x39, 0xd7, 0xdf, 0x4d, 0x51, 0xb1, 0x7b, + 0x56, 0x50, 0xac, 0x71, 0xa4, 0x32, 0xef, 0xc8, 0x34, 0xfd, 0x2c, 0x23, 0x65, 0xa1, 0xcc, 0xe7, + 0x66, 0xf5, 0xe7, 0x32, 0xaf, 0x50, 0x38, 0x65, 0x8a, 0x3a, 0x30, 0xbe, 0x13, 0xb7, 0xb7, 0x88, + 0x9c, 0xfa, 0x2c, 0x4d, 0xe5, 0xe8, 0xd5, 0x57, 0x0b, 0x72, 0x8f, 0x8a, 0x22, 0x5e, 0x94, 0x74, + 0x1c, 0xbf, 0x4b, 0x83, 0xb1, 0x7c, 0x4f, 0x6f, 0xe8, 0x6c, 0xb1, 0x59, 0x0b, 0xfd, 0x24, 0xef, + 0x76, 0xc2, 0xf5, 0xdd, 0x84, 0x88, 0x34, 0x96, 0x05, 0x9f, 0xe4, 0x75, 0x4e, 0xdc, 0xfd, 0x49, + 0x04, 0x02, 0x4b, 0x76, 0x6a, 0xc8, 0x98, 0x36, 0x9e, 0x2a, 0x3d, 0x64, 0x5d, 0x7d, 0x48, 0x87, + 0x8c, 0x69, 0xdf, 0x94, 0x29, 0xd3, 0xba, 0xed, 0xad, 0x30, 0x09, 0x83, 0x8c, 0xee, 0x3f, 0x55, + 0x46, 0xeb, 0x36, 0x72, 0x4a, 0x76, 0x6b, 0xdd, 0x3c, 0x2a, 0x9c, 0x5b, 0xab, 0xfd, 0x07, 0x83, + 0xdd, 0xeb, 0x2d, 0x33, 0x87, 0x7f, 0xa9, 0xfb, 0x74, 0xf5, 0x73, 0xfd, 0x6f, 0xf7, 0x1e, 0xe2, + 0x39, 0xeb, 0x37, 0x2c, 0x38, 0xd7, 0xce, 0x5d, 0x4c, 0xc5, 0x82, 0xd5, 0xef, 0xae, 0x91, 0x0f, + 0x98, 0xca, 0xd1, 0x9a, 0x8f, 0xc7, 0x3d, 0xea, 0xcc, 0x5a, 0xa0, 0xd5, 0x0f, 0x6c, 0x81, 0xde, + 0x85, 0x11, 0x66, 0x34, 0xa5, 0x49, 0x42, 0xfa, 0xcc, 0xab, 0xc1, 0x96, 0xbe, 0x45, 0xc1, 0x02, + 0x2b, 0x66, 0x74, 0xe0, 0x1e, 0xcf, 0x76, 0x02, 0x13, 0x86, 0x16, 0xc9, 0x65, 0xb9, 0x6b, 0x62, + 0x59, 0x8c, 0xc4, 0xe3, 0x8d, 0xc3, 0x88, 0x0f, 0x8a, 0x08, 0xf0, 0xe1, 0x95, 0x9d, 0xa4, 0x45, + 0xfb, 0x4f, 0xac, 0x1c, 0xfb, 0x8b, 0xef, 0x41, 0x5e, 0x35, 0xf7, 0x20, 0x4f, 0x65, 0xf7, 0x20, + 0x5d, 0x1e, 0x03, 0x63, 0xfb, 0x51, 0x3e, 0xc1, 0x62, 0xd9, 0x2c, 0x26, 0xb6, 0x0f, 0x17, 0x8a, + 0x26, 0x37, 0x8b, 0x63, 0x72, 0xd5, 0xa1, 0x60, 0x1a, 0xc7, 0xe4, 0xae, 0xd4, 0x31, 0xc3, 0x94, + 0xbd, 0x05, 0x6f, 0xff, 0x1f, 0x0b, 0xaa, 0x8d, 0xd0, 0x3d, 0x46, 0x0f, 0xc8, 0x35, 0xc3, 0x03, + 0xf2, 0x64, 0xe1, 0xe3, 0x44, 0x3d, 0xfd, 0x1d, 0xb7, 0x33, 0xfe, 0x8e, 0x4f, 0x14, 0xb3, 0x3a, + 0xdc, 0xbb, 0xf1, 0xbd, 0x2a, 0xe8, 0xcf, 0x2b, 0xa1, 0xdf, 0x3e, 0x4a, 0x64, 0x6b, 0xb5, 0xdc, + 0x8b, 0x4b, 0xa2, 0x0e, 0x16, 0x00, 0x25, 0xaf, 0xbd, 0xfd, 0xd4, 0x06, 0xb8, 0xde, 0x25, 0xde, + 0xe6, 0x56, 0x42, 0xdc, 0x6c, 0xc7, 0x4e, 0x2e, 0xc0, 0xf5, 0xbf, 0x5b, 0x30, 0x99, 0xa9, 0x1d, + 0x6d, 0xe7, 0xdd, 0x9c, 0x39, 0xaa, 0x4b, 0xe3, 0x54, 0xe1, 0x5d, 0x9b, 0x39, 0x00, 0xe5, 0x86, + 0x97, 0x8e, 0x07, 0x66, 0x84, 0x29, 0x3f, 0x7d, 0x8c, 0x35, 0x0a, 0xf4, 0x22, 0x8c, 0x26, 0x61, + 0x3b, 0xf4, 0xc3, 0xcd, 0xdd, 0x1b, 0x44, 0x26, 0x66, 0x50, 0x47, 0x18, 0x6b, 0x29, 0x0a, 0xeb, + 0x74, 0xf6, 0x0f, 0xaa, 0x90, 0x7d, 0x9d, 0xeb, 0xcf, 0x05, 0xf5, 0xa7, 0x47, 0x50, 0x7f, 0xcf, + 0x82, 0x29, 0x5a, 0x3b, 0x8b, 0x5f, 0x91, 0x61, 0xa8, 0x2a, 0x2f, 0xba, 0x75, 0x48, 0x5e, 0xf4, + 0xa7, 0xa8, 0xba, 0x73, 0xc3, 0x4e, 0x22, 0x9c, 0x25, 0x9a, 0x16, 0xa3, 0x50, 0x2c, 0xb0, 0x82, + 0x8e, 0x44, 0x91, 0xb8, 0xa3, 0xa3, 0xd3, 0x91, 0x28, 0xc2, 0x02, 0x2b, 0xd3, 0xa6, 0x0f, 0xe4, + 0xa7, 0x4d, 0xe7, 0xa9, 0x8d, 0x44, 0xdc, 0x84, 0xb0, 0x03, 0xb4, 0xd4, 0x46, 0x32, 0xa0, 0x22, + 0xa5, 0xb1, 0xff, 0x65, 0x15, 0xc6, 0x1a, 0xa1, 0x9b, 0x86, 0x98, 0xbf, 0x60, 0x84, 0x98, 0x5f, + 0xc8, 0x84, 0x98, 0x4f, 0xe9, 0xb4, 0x0f, 0x27, 0xc2, 0x5c, 0x24, 0xc1, 0x62, 0x89, 0xfd, 0x8f, + 0x1a, 0x5d, 0x6e, 0x24, 0xc1, 0x52, 0x9c, 0xb0, 0xc9, 0xf8, 0xcf, 0x54, 0x54, 0xf9, 0x9f, 0x58, + 0x30, 0xd1, 0x08, 0x5d, 0x2a, 0xa2, 0x7f, 0x96, 0xe4, 0x51, 0x4f, 0x9d, 0x35, 0x74, 0x48, 0xea, + 0xac, 0x5f, 0xb3, 0x60, 0xb8, 0x11, 0xba, 0x27, 0xe1, 0x4a, 0x5c, 0x36, 0x5d, 0x89, 0x1f, 0x2b, + 0x54, 0xbe, 0x3d, 0xbc, 0x87, 0xbf, 0x59, 0x85, 0x71, 0xda, 0xe4, 0x70, 0x53, 0x7e, 0x30, 0x63, + 0x70, 0xac, 0x12, 0x83, 0x43, 0xcd, 0xc1, 0xd0, 0xf7, 0xc3, 0xfb, 0xd9, 0x8f, 0xb7, 0xcc, 0xa0, + 0x58, 0x60, 0xd1, 0x25, 0x18, 0x69, 0x47, 0x64, 0xc7, 0x0b, 0x3b, 0x71, 0xf6, 0xca, 0x5f, 0x43, + 0xc0, 0xb1, 0xa2, 0x40, 0x2f, 0xc0, 0x58, 0xec, 0x05, 0x2d, 0x22, 0x03, 0x2b, 0x06, 0x58, 0x60, + 0x05, 0xcf, 0x50, 0xa8, 0xc1, 0xb1, 0x41, 0x85, 0xde, 0x84, 0x1a, 0xfb, 0xcf, 0xe6, 0xd0, 0x11, + 0x72, 0xb9, 0xf3, 0xe4, 0x5c, 0x92, 0x03, 0x4e, 0x99, 0xa1, 0xab, 0x00, 0x89, 0x8c, 0x01, 0x89, + 0xc5, 0x99, 0xa9, 0x32, 0x4e, 0x55, 0x74, 0x48, 0x8c, 0x35, 0x2a, 0xf4, 0x2c, 0xd4, 0x12, 0xc7, + 0xf3, 0x6f, 0x7a, 0x01, 0x89, 0x45, 0x14, 0x8d, 0xc8, 0xb4, 0x2b, 0x80, 0x38, 0xc5, 0xd3, 0x35, + 0x9f, 0x5d, 0x38, 0xe6, 0x2f, 0x45, 0x8c, 0x30, 0x6a, 0xb6, 0xe6, 0xdf, 0x54, 0x50, 0xac, 0x51, + 0xd8, 0xcf, 0xb3, 0xb5, 0xbb, 0xcf, 0x2b, 0x08, 0x3f, 0xa9, 0x00, 0x6a, 0xb0, 0x58, 0x13, 0xe3, + 0x31, 0x8d, 0x2d, 0x98, 0x88, 0xc9, 0x4d, 0x2f, 0xe8, 0x3c, 0x10, 0xac, 0xca, 0x5d, 0xfa, 0x68, + 0x2e, 0xe9, 0x65, 0xf8, 0x25, 0x5b, 0x13, 0x86, 0x33, 0x7c, 0xe9, 0x90, 0x44, 0x9d, 0x60, 0x3e, + 0xbe, 0x13, 0x93, 0x48, 0x3c, 0x87, 0xc1, 0x86, 0x04, 0x4b, 0x20, 0x4e, 0xf1, 0x54, 0x06, 0xd8, + 0x9f, 0x5b, 0x61, 0x80, 0xc3, 0x30, 0x91, 0x52, 0xc3, 0x72, 0xa3, 0x6b, 0x70, 0x6c, 0x50, 0xa1, + 0x65, 0x40, 0x71, 0xa7, 0xdd, 0xf6, 0xd9, 0xd1, 0x96, 0xe3, 0x5f, 0x8b, 0xc2, 0x4e, 0x9b, 0x87, + 0x1b, 0x8b, 0xb4, 0xe2, 0xcd, 0x2e, 0x2c, 0xce, 0x29, 0x41, 0x27, 0xfd, 0x46, 0xcc, 0x7e, 0x8b, + 0x4b, 0xc4, 0xdc, 0xc1, 0xd6, 0x64, 0x20, 0x2c, 0x71, 0x76, 0x87, 0x2d, 0x55, 0xec, 0x99, 0x82, + 0xa4, 0x13, 0x11, 0x44, 0x60, 0xbc, 0xcd, 0x96, 0x23, 0x79, 0xbe, 0x5e, 0x6a, 0x28, 0x33, 0xd1, + 0x2e, 0x3c, 0x1d, 0xb9, 0xce, 0x06, 0x9b, 0x5c, 0xed, 0xff, 0x04, 0x4c, 0xd7, 0x88, 0x53, 0xc5, + 0x61, 0x11, 0xcb, 0x2a, 0x6c, 0xb1, 0x8f, 0x97, 0x79, 0x97, 0x27, 0xd5, 0xe3, 0x22, 0x32, 0x16, + 0x4b, 0x2e, 0xe8, 0x4b, 0x3c, 0x40, 0x80, 0xcd, 0xef, 0xf2, 0x8f, 0x65, 0x71, 0x7a, 0x23, 0x4a, + 0x5b, 0xb0, 0xc0, 0x1a, 0x3b, 0x74, 0x13, 0xc6, 0x45, 0x2e, 0x7b, 0xe1, 0x19, 0xa8, 0x1a, 0xbb, + 0xe3, 0x71, 0xac, 0x23, 0x0f, 0xb2, 0x00, 0x6c, 0x16, 0x46, 0x9b, 0xf0, 0xb8, 0xf6, 0xc0, 0x4d, + 0x4e, 0x44, 0x16, 0x57, 0x1c, 0x1f, 0xdb, 0xdf, 0x9b, 0x7d, 0x7c, 0xed, 0x30, 0x42, 0x7c, 0x38, + 0x1f, 0x74, 0x1b, 0xce, 0x3a, 0xad, 0xc4, 0xdb, 0x21, 0x75, 0xe2, 0xb8, 0xbe, 0x17, 0x10, 0xf3, + 0x86, 0xf9, 0xa3, 0xfb, 0x7b, 0xb3, 0x67, 0xe7, 0xf3, 0x08, 0x70, 0x7e, 0x39, 0xf4, 0x2a, 0xd4, + 0xdc, 0x20, 0x16, 0x63, 0x30, 0x64, 0xbc, 0xe5, 0x53, 0xab, 0xdf, 0x6a, 0xaa, 0xfe, 0xa7, 0x7f, + 0x70, 0x5a, 0x00, 0xbd, 0xcb, 0x9f, 0x18, 0x56, 0x1b, 0x12, 0xfe, 0x86, 0xd4, 0x4b, 0xa5, 0xb6, + 0xc0, 0xc6, 0x2d, 0x10, 0xee, 0x34, 0x53, 0x91, 0x8f, 0xc6, 0x05, 0x11, 0xa3, 0x0a, 0xf4, 0x79, + 0x40, 0x31, 0x89, 0x76, 0xbc, 0x16, 0x99, 0x6f, 0xb1, 0xdc, 0x9c, 0xec, 0x78, 0x6e, 0xc4, 0x08, + 0xff, 0x47, 0xcd, 0x2e, 0x0a, 0x9c, 0x53, 0x0a, 0x5d, 0xa7, 0x1a, 0x47, 0x87, 0x8a, 0x40, 0x55, + 0x69, 0xda, 0x4d, 0xd7, 0x49, 0x3b, 0x22, 0x2d, 0x27, 0x21, 0xae, 0xc9, 0x11, 0x67, 0xca, 0xd1, + 0x65, 0x45, 0xe5, 0x1c, 0x07, 0x33, 0xbc, 0xb2, 0x3b, 0xef, 0x38, 0xdd, 0x29, 0x6d, 0x85, 0x71, + 0x72, 0x8b, 0x24, 0xf7, 0xc3, 0xe8, 0x1e, 0x73, 0xb6, 0x8f, 0x68, 0x99, 0xce, 0x52, 0x14, 0xd6, + 0xe9, 0xa8, 0x0d, 0xc4, 0x4e, 0x79, 0x56, 0xea, 0xcc, 0x85, 0x3e, 0x92, 0xce, 0x9d, 0xeb, 0x1c, + 0x8c, 0x25, 0x5e, 0x92, 0xae, 0x34, 0x16, 0x99, 0x3b, 0x3c, 0x43, 0xba, 0xd2, 0x58, 0xc4, 0x12, + 0x8f, 0xc2, 0xee, 0x17, 0x93, 0x26, 0xca, 0x1c, 0x4d, 0x74, 0x6b, 0xf0, 0x92, 0x8f, 0x26, 0x3d, + 0x80, 0x29, 0xf5, 0x6a, 0x13, 0x4f, 0x41, 0x19, 0x4f, 0x4f, 0x96, 0x79, 0xe0, 0x38, 0x37, 0x93, + 0xa5, 0x8a, 0x4c, 0x5e, 0xc9, 0xf0, 0xc4, 0x5d, 0xb5, 0x18, 0x99, 0x12, 0xa6, 0x0a, 0xf3, 0xc8, + 0x5f, 0x86, 0x5a, 0xdc, 0x59, 0x77, 0xc3, 0x6d, 0xc7, 0x0b, 0x98, 0xcf, 0x5a, 0x7f, 0xae, 0x57, + 0x22, 0x70, 0x4a, 0x33, 0xf3, 0x59, 0x38, 0xd5, 0x25, 0xd3, 0x7d, 0x85, 0xd4, 0xfd, 0xd2, 0x00, + 0xd4, 0x94, 0x57, 0x07, 0x5d, 0x36, 0x1d, 0x77, 0x8f, 0x66, 0x1d, 0x77, 0x23, 0x74, 0xe5, 0xd5, + 0x7d, 0x75, 0x6f, 0xe7, 0xbc, 0xd7, 0xf9, 0x4c, 0xe1, 0x47, 0x2c, 0x7f, 0xb3, 0xa5, 0x8f, 0xd7, + 0x4c, 0x53, 0xb3, 0x7e, 0xe0, 0x50, 0xb3, 0xbe, 0xe4, 0x73, 0x4c, 0xd4, 0x80, 0x6f, 0x87, 0xee, + 0x4a, 0x23, 0xfb, 0xd4, 0x48, 0x83, 0x02, 0x31, 0xc7, 0x31, 0xbb, 0x8b, 0x2a, 0x65, 0x66, 0x77, + 0x0d, 0x1f, 0xd5, 0xee, 0x92, 0x1c, 0x70, 0xca, 0x0c, 0xed, 0xc0, 0xa9, 0x96, 0xf9, 0x74, 0x8c, + 0xba, 0xb0, 0xf2, 0x5c, 0x1f, 0x4f, 0xb7, 0x74, 0xb4, 0x34, 0xf9, 0x8b, 0x59, 0x7e, 0xb8, 0xbb, + 0x0a, 0xfb, 0x07, 0xdc, 0x0b, 0x24, 0xb6, 0x85, 0x24, 0xee, 0xf8, 0xc7, 0x99, 0xf5, 0xfa, 0xb6, + 0xb1, 0x53, 0x7d, 0x08, 0xfe, 0xc7, 0xdf, 0xb2, 0x98, 0xff, 0x71, 0x8d, 0x6c, 0xb7, 0x7d, 0x27, + 0x39, 0xce, 0x68, 0xbd, 0x2f, 0xc1, 0x48, 0x22, 0x6a, 0x29, 0x97, 0xaa, 0x5b, 0x6b, 0x16, 0xf3, + 0xc7, 0x2a, 0x45, 0x20, 0xa1, 0x58, 0x31, 0xb4, 0xff, 0x0d, 0xff, 0x0a, 0x12, 0x73, 0x12, 0x3b, + 0xab, 0x5b, 0xe6, 0xce, 0xea, 0xe9, 0xd2, 0x9d, 0xe9, 0xb1, 0xc3, 0xfa, 0xae, 0xd9, 0x05, 0x66, + 0xb0, 0x7d, 0xf8, 0x3d, 0xe2, 0xf6, 0x2a, 0x98, 0xcf, 0xe1, 0xa0, 0x57, 0x79, 0xa8, 0x2a, 0xd7, + 0x88, 0xcf, 0xf4, 0x19, 0xa6, 0x6a, 0xff, 0x46, 0x05, 0xce, 0xe4, 0xbd, 0x92, 0x8f, 0x5c, 0x18, + 0x6b, 0x6b, 0xe6, 0x73, 0xb9, 0x7c, 0x0e, 0xba, 0xc1, 0x9d, 0x9a, 0x2e, 0x3a, 0x14, 0x1b, 0x5c, + 0x11, 0x81, 0x31, 0xb2, 0xe3, 0xb5, 0x94, 0x7b, 0xa5, 0xd2, 0xbf, 0x8a, 0x52, 0xd5, 0x2c, 0x69, + 0x8c, 0xb0, 0xc1, 0xf6, 0x18, 0xb2, 0xc9, 0xdb, 0xff, 0xc8, 0x82, 0x47, 0x7a, 0x24, 0x7d, 0xa0, + 0xd5, 0xdd, 0x67, 0x5e, 0x48, 0xf1, 0xdc, 0x92, 0xaa, 0x8e, 0xfb, 0x26, 0xb1, 0xc0, 0xa2, 0x75, + 0x00, 0xee, 0x5b, 0x64, 0x6f, 0xd0, 0x56, 0xca, 0xc4, 0x00, 0x74, 0xdd, 0xac, 0xd6, 0x2e, 0xdd, + 0xaa, 0x57, 0x67, 0x35, 0xae, 0xf6, 0x77, 0xaa, 0x30, 0xc8, 0x9f, 0xc1, 0x6c, 0xc0, 0xf0, 0x16, + 0xcf, 0x31, 0xd9, 0x5f, 0x8a, 0xcb, 0xd4, 0x4e, 0xe2, 0x00, 0x2c, 0xd9, 0xa0, 0x55, 0x38, 0xed, + 0x05, 0x5e, 0xe2, 0x39, 0x7e, 0x9d, 0xf8, 0xce, 0xae, 0x34, 0xbc, 0x79, 0x7e, 0x71, 0x99, 0x0a, + 0xf7, 0xf4, 0x4a, 0x37, 0x09, 0xce, 0x2b, 0x87, 0x5e, 0xeb, 0x4a, 0x12, 0xc5, 0x73, 0x77, 0xaa, + 0xbb, 0x5a, 0x87, 0x27, 0x8a, 0x42, 0xaf, 0xc0, 0x78, 0xbb, 0x6b, 0x8b, 0xa1, 0xbd, 0x9f, 0x68, + 0x6e, 0x2b, 0x4c, 0x5a, 0x54, 0x87, 0xa9, 0xb8, 0xc3, 0x4e, 0x64, 0xd7, 0xb6, 0x22, 0x12, 0x6f, + 0x85, 0xbe, 0x2b, 0xde, 0xfd, 0x52, 0xe6, 0x54, 0x33, 0x83, 0xc7, 0x5d, 0x25, 0x28, 0x97, 0x0d, + 0xc7, 0xf3, 0x3b, 0x11, 0x49, 0xb9, 0x0c, 0x99, 0x5c, 0x96, 0x33, 0x78, 0xdc, 0x55, 0xc2, 0xfe, + 0x23, 0x0b, 0x4e, 0xe7, 0x84, 0x2d, 0xf0, 0x68, 0xba, 0x4d, 0x2f, 0x4e, 0x54, 0x16, 0x69, 0x2d, + 0x9a, 0x8e, 0xc3, 0xb1, 0xa2, 0xa0, 0x52, 0xc8, 0xf7, 0x8d, 0xd9, 0xe3, 0x40, 0x71, 0x30, 0x2b, + 0xb0, 0xfd, 0xa5, 0x7c, 0x52, 0xaf, 0xf9, 0x0f, 0xf4, 0x7c, 0xcd, 0xff, 0x09, 0x18, 0xdc, 0x54, + 0xbb, 0x73, 0xcd, 0x30, 0xe1, 0xfb, 0x73, 0x8e, 0xb3, 0xbf, 0x55, 0x85, 0xc9, 0x4c, 0xf8, 0x12, + 0x6d, 0xc8, 0x76, 0x18, 0x78, 0x49, 0xa8, 0xb2, 0x0d, 0x31, 0x97, 0xc2, 0x22, 0x69, 0x6f, 0xad, + 0x0a, 0x38, 0x56, 0x14, 0xe8, 0x29, 0xf3, 0x4d, 0xe2, 0xb4, 0xcd, 0x0b, 0x75, 0xe3, 0xb5, 0xb5, + 0xb2, 0x99, 0xed, 0x9f, 0x80, 0x81, 0x76, 0xa8, 0x1e, 0xcf, 0x54, 0x42, 0x8f, 0x17, 0xea, 0x8d, + 0x30, 0xf4, 0x31, 0x43, 0xa2, 0x27, 0x45, 0xef, 0x33, 0xce, 0x49, 0xec, 0xb8, 0x61, 0xac, 0x0d, + 0xc1, 0xd3, 0x30, 0x7c, 0x8f, 0xec, 0x46, 0x5e, 0xb0, 0x99, 0x75, 0xcd, 0xde, 0xe0, 0x60, 0x2c, + 0xf1, 0x66, 0xf6, 0xfa, 0xe1, 0x63, 0xce, 0x5e, 0x3f, 0x52, 0x18, 0x82, 0xf9, 0xab, 0x16, 0x4c, + 0xb2, 0xd4, 0x7b, 0xe2, 0x1a, 0xac, 0x17, 0x06, 0xc7, 0xb8, 0x2a, 0x3e, 0x01, 0x83, 0x11, 0xad, + 0x2c, 0x9b, 0x78, 0x9a, 0xb5, 0x00, 0x73, 0x1c, 0x7a, 0x4c, 0x3c, 0xed, 0x4e, 0x3f, 0xdf, 0x18, + 0x4f, 0xe4, 0x9b, 0xbe, 0xd1, 0xce, 0x02, 0xfc, 0x31, 0x69, 0xfb, 0x1e, 0x6f, 0x6c, 0xea, 0x89, + 0xf9, 0xb0, 0x04, 0xf8, 0xe7, 0x36, 0xee, 0x61, 0x05, 0xf8, 0xe7, 0x33, 0x3f, 0xdc, 0x04, 0xfd, + 0x9f, 0x15, 0x38, 0x9f, 0x5b, 0x2e, 0x3d, 0xd6, 0x59, 0x36, 0x8e, 0x75, 0xae, 0x66, 0x8e, 0x75, + 0xec, 0xc3, 0x4b, 0x3f, 0x9c, 0x83, 0x9e, 0xfc, 0xe3, 0x97, 0xea, 0x49, 0x1e, 0xbf, 0x0c, 0x94, + 0xb5, 0x15, 0x06, 0x0b, 0x6c, 0x85, 0xdf, 0xb5, 0xe0, 0xd1, 0xdc, 0x31, 0xfb, 0xf0, 0x5d, 0xa9, + 0xc8, 0x6d, 0x66, 0x0f, 0x0b, 0xfa, 0x6f, 0x54, 0x7b, 0x74, 0x8b, 0xd9, 0xd2, 0x17, 0xa9, 0xde, + 0x61, 0xc8, 0x58, 0x98, 0x41, 0x63, 0x5c, 0xe7, 0x70, 0x18, 0x56, 0x58, 0x14, 0x6b, 0x57, 0x12, + 0x78, 0x23, 0x97, 0x8e, 0x38, 0xa5, 0xe6, 0x4c, 0xe7, 0x99, 0x7e, 0x9f, 0x37, 0x73, 0x4f, 0x01, + 0xdd, 0xd5, 0xb6, 0x47, 0xd5, 0xa3, 0x6c, 0x8f, 0xc6, 0xf2, 0xb7, 0x46, 0x68, 0x1e, 0x26, 0xb7, + 0xbd, 0x80, 0x3d, 0xee, 0x66, 0xda, 0x21, 0xea, 0x16, 0xdc, 0xaa, 0x89, 0xc6, 0x59, 0xfa, 0x99, + 0x57, 0x60, 0xfc, 0xe8, 0x1e, 0x93, 0xf7, 0xab, 0xf0, 0xd1, 0x43, 0xd4, 0x02, 0x5f, 0x0f, 0x8c, + 0xef, 0xa2, 0xad, 0x07, 0x5d, 0xdf, 0xa6, 0x01, 0x67, 0x36, 0x3a, 0xbe, 0xbf, 0xcb, 0xc2, 0x22, + 0x88, 0x2b, 0x29, 0x84, 0x8d, 0xa7, 0x9e, 0x5d, 0x5d, 0xce, 0xa1, 0xc1, 0xb9, 0x25, 0xd1, 0xe7, + 0x01, 0x85, 0xeb, 0x2c, 0x1f, 0xa5, 0x9b, 0xde, 0x58, 0x66, 0x9f, 0xa0, 0x9a, 0xce, 0xd5, 0xdb, + 0x5d, 0x14, 0x38, 0xa7, 0x14, 0xb5, 0xf8, 0xd8, 0x8b, 0xad, 0xaa, 0x59, 0x19, 0x8b, 0x0f, 0xeb, + 0x48, 0x6c, 0xd2, 0xa2, 0x6b, 0x70, 0xca, 0xd9, 0x71, 0x3c, 0x9e, 0x6d, 0x46, 0x32, 0xe0, 0x26, + 0x9f, 0x72, 0x49, 0xcc, 0x67, 0x09, 0x70, 0x77, 0x19, 0xd4, 0x36, 0x9c, 0x4c, 0x3c, 0xff, 0xf4, + 0xab, 0x47, 0x90, 0xe0, 0xd2, 0x6e, 0x27, 0xfb, 0x0f, 0x2d, 0xba, 0xe8, 0xe5, 0x3c, 0x86, 0x66, + 0xbc, 0x21, 0xae, 0xdd, 0xd2, 0xe8, 0x7e, 0x43, 0x9c, 0xf9, 0x5f, 0x4d, 0x5a, 0x2e, 0x1a, 0x71, + 0x1a, 0x56, 0x69, 0xd8, 0x97, 0xe2, 0x76, 0x92, 0xa2, 0x40, 0x77, 0x61, 0xd8, 0xf5, 0x76, 0xbc, + 0x38, 0x8c, 0x4a, 0x3c, 0xd9, 0xdb, 0x15, 0xaa, 0x97, 0xaa, 0xcb, 0x3a, 0x67, 0x82, 0x25, 0x37, + 0xfb, 0x6f, 0x55, 0x60, 0x5c, 0xd6, 0xf7, 0x7a, 0x27, 0x64, 0x3a, 0xec, 0xb8, 0x96, 0xf2, 0xd7, + 0x8d, 0xa5, 0xfc, 0x72, 0xb9, 0x2b, 0x5a, 0xac, 0x51, 0x3d, 0x97, 0xf0, 0x2f, 0x64, 0x96, 0xf0, + 0x2b, 0xfd, 0x30, 0x2d, 0xf4, 0x1e, 0x9d, 0x32, 0xe8, 0x3f, 0x44, 0xf9, 0x8f, 0xf3, 0xba, 0xd3, + 0x63, 0xe1, 0xf8, 0x4e, 0x25, 0xd3, 0x0d, 0xb6, 0x60, 0x7c, 0x0d, 0x06, 0xb6, 0x9c, 0xc8, 0x2d, + 0x97, 0x6f, 0xad, 0xab, 0xf8, 0xdc, 0x75, 0x27, 0x72, 0xb9, 0xda, 0xbf, 0xa4, 0x1e, 0x6a, 0x71, + 0x22, 0xb7, 0x30, 0xc8, 0x98, 0x55, 0x8a, 0x5e, 0x86, 0xa1, 0xb8, 0x15, 0xb6, 0x55, 0x54, 0xd7, + 0x05, 0xfe, 0x88, 0x0b, 0x85, 0x1c, 0xec, 0xcd, 0x22, 0xb3, 0x3a, 0x0a, 0xc6, 0x82, 0x7e, 0x86, + 0x40, 0x4d, 0x55, 0x7d, 0x8c, 0xe1, 0xac, 0xef, 0x57, 0xe1, 0x74, 0x8e, 0xa8, 0xa0, 0x9f, 0x31, + 0x46, 0xed, 0x95, 0xbe, 0x65, 0xed, 0x03, 0x8e, 0xdb, 0xcf, 0xb0, 0x0d, 0x91, 0x2b, 0x64, 0xe3, + 0x08, 0xd5, 0xdf, 0x89, 0x49, 0xb6, 0x7a, 0x0a, 0x2a, 0xae, 0x9e, 0x56, 0x7b, 0x42, 0x83, 0x4f, + 0xab, 0x51, 0xed, 0x3c, 0xc6, 0x6f, 0xfc, 0xde, 0x00, 0x9c, 0xc9, 0xbb, 0x06, 0x8a, 0x7e, 0xde, + 0xca, 0x64, 0x50, 0x7f, 0xad, 0xff, 0xbb, 0xa4, 0x3c, 0xad, 0xba, 0x48, 0x0f, 0x31, 0x67, 0xe6, + 0x54, 0x2f, 0x1c, 0x6d, 0x51, 0x3b, 0xbb, 0x18, 0x10, 0xf1, 0x64, 0xf8, 0x52, 0x1f, 0x7c, 0xee, + 0x08, 0x4d, 0x11, 0xf9, 0xf4, 0xe3, 0xcc, 0xc5, 0x00, 0x09, 0x2e, 0xbe, 0x18, 0x20, 0xdb, 0x30, + 0xb3, 0x09, 0xa3, 0x5a, 0xbf, 0x8e, 0x51, 0x04, 0x3c, 0xba, 0x26, 0x69, 0xad, 0x3e, 0x46, 0x31, + 0xf8, 0x3b, 0x16, 0x64, 0xc2, 0x35, 0x94, 0xd7, 0xc5, 0xea, 0xe9, 0x75, 0xb9, 0x00, 0x03, 0x51, + 0xe8, 0x93, 0x6c, 0x6a, 0x6f, 0x1c, 0xfa, 0x04, 0x33, 0x8c, 0x7a, 0xb0, 0xb1, 0xda, 0xeb, 0xc1, + 0x46, 0xba, 0x1d, 0xf7, 0xc9, 0x0e, 0x91, 0x3e, 0x10, 0xa5, 0xbc, 0x6f, 0x52, 0x20, 0xe6, 0x38, + 0xfb, 0x47, 0x55, 0x18, 0xe2, 0x8e, 0x86, 0x63, 0x5c, 0x96, 0x1b, 0x62, 0xcf, 0x5f, 0xea, 0x42, + 0x26, 0x6f, 0xcd, 0x5c, 0xdd, 0x49, 0x1c, 0x2e, 0x50, 0xaa, 0x6f, 0xa9, 0x9f, 0x00, 0xcd, 0x19, + 0xbd, 0x9f, 0xc9, 0x6c, 0x69, 0x81, 0xf3, 0xd0, 0xc6, 0x62, 0x0b, 0x20, 0x66, 0x2f, 0x83, 0x51, + 0x1e, 0x22, 0x29, 0xde, 0x0b, 0xa5, 0xda, 0xd1, 0x54, 0xc5, 0x78, 0x6b, 0xd2, 0x6c, 0x5c, 0x0a, + 0x81, 0x35, 0xde, 0x33, 0x2f, 0x41, 0x4d, 0x11, 0x17, 0x59, 0xfa, 0x63, 0xba, 0x48, 0xfe, 0x05, + 0x98, 0xcc, 0xd4, 0xd5, 0xd7, 0x46, 0xe1, 0xfb, 0x16, 0x9c, 0xea, 0x7a, 0x6b, 0x16, 0xbd, 0x67, + 0xc1, 0x19, 0x3f, 0xc7, 0xc3, 0x24, 0x3e, 0xf0, 0x51, 0x7c, 0x53, 0x6a, 0x97, 0x90, 0x87, 0xc5, + 0xb9, 0xb5, 0xc9, 0x34, 0x9f, 0x95, 0xfc, 0x34, 0x9f, 0xec, 0x39, 0x24, 0xde, 0xf6, 0x93, 0xb0, + 0x80, 0x56, 0x4c, 0x0b, 0xe8, 0xe3, 0x65, 0xc4, 0xa0, 0x87, 0xe9, 0xf3, 0xef, 0x2d, 0x40, 0x9c, + 0x20, 0xfb, 0x42, 0x20, 0xf7, 0xd8, 0x69, 0x36, 0x7b, 0x2a, 0x37, 0x0a, 0x83, 0x35, 0xaa, 0x3e, + 0xb3, 0xbf, 0xab, 0x97, 0xb5, 0xca, 0x3d, 0xb0, 0x5f, 0x2d, 0xf1, 0xc0, 0xfe, 0x6f, 0x55, 0x21, + 0x1b, 0xda, 0x80, 0xbe, 0x0c, 0x63, 0x2d, 0xa7, 0xed, 0xac, 0x7b, 0xbe, 0x97, 0x78, 0x24, 0x2e, + 0x77, 0x6c, 0xb4, 0xa8, 0x95, 0x10, 0x3e, 0x5f, 0x0d, 0x82, 0x0d, 0x8e, 0x68, 0x0e, 0xa0, 0x1d, + 0x79, 0x3b, 0x9e, 0x4f, 0x36, 0x99, 0xdd, 0xa1, 0x92, 0xa4, 0x34, 0x14, 0x14, 0x6b, 0x14, 0x39, + 0x31, 0x74, 0xd5, 0x93, 0x88, 0xa1, 0x1b, 0xe8, 0x33, 0x86, 0x6e, 0xb0, 0x54, 0x0c, 0x1d, 0x86, + 0x73, 0xd2, 0x55, 0x4b, 0xff, 0x2f, 0x7b, 0x3e, 0xe1, 0x79, 0xfd, 0x44, 0xe4, 0xe3, 0xcc, 0xfe, + 0xde, 0xec, 0x39, 0x9c, 0x4b, 0x81, 0x7b, 0x94, 0xb4, 0x3b, 0x70, 0xba, 0x49, 0x22, 0x8f, 0xa5, + 0x5d, 0x72, 0xd3, 0x19, 0xf8, 0x36, 0xd4, 0xa2, 0xcc, 0xe4, 0xef, 0xf3, 0x4e, 0x9a, 0x96, 0xbc, + 0x42, 0x4e, 0xf6, 0x94, 0xa5, 0xfd, 0x57, 0x2a, 0x30, 0x2c, 0x42, 0x88, 0x8e, 0x71, 0x21, 0xb9, + 0x61, 0xec, 0xef, 0x9e, 0x2e, 0x9a, 0xb9, 0xac, 0x39, 0x3d, 0x77, 0x76, 0xcd, 0xcc, 0xce, 0xee, + 0xd9, 0x72, 0xec, 0x0e, 0xdf, 0xd3, 0xfd, 0xb0, 0x02, 0x13, 0x66, 0x28, 0xd5, 0x31, 0x0e, 0xc7, + 0x9b, 0x30, 0x1c, 0x8b, 0xf8, 0xa2, 0x4a, 0x99, 0x58, 0x8d, 0xec, 0x27, 0x4d, 0x1f, 0xeb, 0x17, + 0x11, 0x45, 0x92, 0x5d, 0x6e, 0x08, 0x53, 0xf5, 0x24, 0x42, 0x98, 0xec, 0x1f, 0x31, 0x95, 0xaa, + 0x0f, 0xe0, 0x49, 0xac, 0x09, 0xaf, 0x9b, 0xda, 0xf7, 0x52, 0x29, 0x51, 0x10, 0xed, 0xeb, 0xb1, + 0x36, 0x7c, 0xcf, 0x82, 0x51, 0x41, 0x78, 0x12, 0x3d, 0xf8, 0xbc, 0xd9, 0x83, 0x27, 0x4b, 0xf5, + 0xa0, 0x47, 0xd3, 0xff, 0x5e, 0x45, 0x35, 0xbd, 0x21, 0x5e, 0x4e, 0x2d, 0x4c, 0xf4, 0x38, 0xd2, + 0x8e, 0xc2, 0x24, 0x6c, 0x85, 0xbe, 0x58, 0xe5, 0x1f, 0x4b, 0xa3, 0xce, 0x39, 0xfc, 0x40, 0xfb, + 0x8d, 0x15, 0x35, 0x8b, 0xa6, 0x0e, 0xa3, 0x44, 0x2c, 0x51, 0x79, 0xef, 0xb6, 0xae, 0xcb, 0x77, + 0xb1, 0x29, 0x4c, 0x5c, 0xd9, 0xe8, 0xf7, 0x3d, 0xd8, 0x34, 0x86, 0x5c, 0x71, 0xc2, 0x1a, 0x57, + 0x19, 0xde, 0xc8, 0x6a, 0x18, 0x34, 0xdd, 0xa8, 0xb7, 0x04, 0x1c, 0x2b, 0x0a, 0xfb, 0x25, 0xa6, + 0x63, 0xd9, 0xf0, 0xf4, 0x17, 0x18, 0xfe, 0x8b, 0x43, 0x6a, 0x60, 0x99, 0x93, 0xe4, 0x16, 0x0c, + 0xd2, 0x2e, 0xca, 0x7d, 0x60, 0x39, 0x85, 0x46, 0x9b, 0xa0, 0x07, 0x88, 0x45, 0x49, 0x8c, 0x39, + 0x1b, 0x44, 0xba, 0x7c, 0xef, 0x2f, 0x95, 0xd6, 0x91, 0x7d, 0x78, 0xdb, 0x59, 0xe2, 0x18, 0x96, + 0x2c, 0x63, 0xa5, 0x91, 0x4d, 0xce, 0xb9, 0x28, 0x11, 0x38, 0xa5, 0x41, 0x97, 0x85, 0xb9, 0x6e, + 0x3e, 0xab, 0x2b, 0xcd, 0x75, 0x39, 0x24, 0x9a, 0xbd, 0x7e, 0x05, 0x46, 0x55, 0x7a, 0xf2, 0x06, + 0xcf, 0x32, 0x5d, 0xe3, 0xf6, 0xcb, 0x52, 0x0a, 0xc6, 0x3a, 0x0d, 0x5a, 0x81, 0xd3, 0xae, 0x8a, + 0x66, 0x6d, 0x74, 0xd6, 0x7d, 0xaf, 0x45, 0x8b, 0xf2, 0x9b, 0x24, 0x8f, 0xec, 0xef, 0xcd, 0x9e, + 0xae, 0x77, 0xa3, 0x71, 0x5e, 0x19, 0xb4, 0x06, 0x93, 0x31, 0x4f, 0xc3, 0x2e, 0xef, 0x9c, 0x89, + 0xec, 0x75, 0xcf, 0x48, 0xa7, 0x7f, 0xd3, 0x44, 0x1f, 0x30, 0x10, 0x57, 0x0a, 0x02, 0x84, 0xb3, + 0x2c, 0xd0, 0x6b, 0x30, 0xe1, 0xeb, 0xaf, 0x4a, 0x35, 0x44, 0x50, 0xaf, 0x0a, 0x88, 0x30, 0xde, + 0x9c, 0x6a, 0xe0, 0x0c, 0x35, 0x7a, 0x13, 0xa6, 0x75, 0x88, 0xb8, 0xd4, 0xee, 0x04, 0x9b, 0x24, + 0x16, 0xf9, 0x9f, 0x1f, 0xdb, 0xdf, 0x9b, 0x9d, 0xbe, 0xd9, 0x83, 0x06, 0xf7, 0x2c, 0x8d, 0x5e, + 0x86, 0x31, 0x39, 0x92, 0x5a, 0x80, 0x6f, 0x1a, 0x8a, 0xa3, 0xe1, 0xb0, 0x41, 0xf9, 0xc1, 0xce, + 0x36, 0xbe, 0x46, 0x0b, 0x6b, 0x8b, 0x2a, 0xfa, 0x0a, 0x8c, 0xe9, 0x6d, 0x14, 0x6a, 0xf2, 0x93, + 0xe5, 0x5f, 0xea, 0x12, 0x8b, 0xb3, 0x6a, 0xb9, 0x8e, 0xc3, 0x06, 0x6f, 0xfb, 0x36, 0x0c, 0x35, + 0x77, 0xe3, 0x56, 0xe2, 0x3f, 0xac, 0x17, 0x95, 0x5b, 0x30, 0x99, 0x79, 0x7a, 0x58, 0xbd, 0x61, + 0x6d, 0x3d, 0xac, 0x37, 0xac, 0xed, 0xaf, 0x5b, 0x30, 0xb8, 0xe6, 0x78, 0xc5, 0x2f, 0x27, 0x94, + 0x69, 0x32, 0x7a, 0x11, 0x86, 0xc8, 0xc6, 0x06, 0x69, 0xc9, 0x37, 0xb1, 0x1f, 0x97, 0x46, 0xcd, + 0x12, 0x83, 0xd2, 0xa9, 0xc9, 0x2a, 0xe3, 0x7f, 0xb1, 0x20, 0xb6, 0xff, 0xa3, 0x05, 0xb0, 0x16, + 0xfa, 0xf2, 0xd8, 0xa6, 0xa0, 0x25, 0x0b, 0x5d, 0x6f, 0x38, 0x3c, 0x95, 0xf3, 0x86, 0x03, 0x4a, + 0x19, 0xe6, 0xbc, 0xe0, 0xa0, 0x7a, 0x53, 0x2d, 0xd5, 0x9b, 0x81, 0x7e, 0x7a, 0xf3, 0x4d, 0x0b, + 0x44, 0x0c, 0x4d, 0x09, 0x49, 0x70, 0x65, 0xde, 0x75, 0x23, 0x5d, 0xc5, 0x33, 0x65, 0x2e, 0x82, + 0x88, 0x24, 0x15, 0x4a, 0x36, 0x8d, 0xd4, 0x14, 0x06, 0x57, 0xba, 0x97, 0x1f, 0xe5, 0xe8, 0x55, + 0x66, 0x41, 0x16, 0xb7, 0xab, 0xaf, 0xcc, 0x5c, 0x2c, 0x2d, 0x39, 0x65, 0xac, 0x12, 0x34, 0xe9, + 0x69, 0xc9, 0x25, 0x02, 0xa7, 0x34, 0xe8, 0x69, 0x18, 0x8e, 0x3b, 0xeb, 0x8c, 0x3c, 0x13, 0x50, + 0xd3, 0xe4, 0x60, 0x2c, 0xf1, 0xf6, 0xcf, 0x21, 0x30, 0xba, 0x66, 0x24, 0x83, 0xb2, 0x1e, 0x7a, + 0x32, 0xa8, 0xb7, 0x60, 0x84, 0x6c, 0xb7, 0x93, 0xdd, 0xba, 0x17, 0x95, 0x4b, 0xcc, 0xb7, 0x24, + 0xa8, 0xbb, 0xb9, 0x4b, 0x0c, 0x56, 0x1c, 0x7b, 0xa4, 0xf6, 0xaa, 0x7e, 0x28, 0x52, 0x7b, 0x0d, + 0xfc, 0xa9, 0xa4, 0xf6, 0x7a, 0x13, 0x86, 0x37, 0xbd, 0x04, 0x93, 0x76, 0x28, 0x2e, 0xfe, 0x15, + 0x9c, 0x87, 0x5d, 0xe3, 0xc4, 0xdd, 0xf9, 0x7a, 0x04, 0x02, 0x4b, 0x76, 0x68, 0x0d, 0x86, 0xf8, + 0xee, 0x43, 0x64, 0xcb, 0xfa, 0x64, 0x19, 0xbf, 0x4c, 0x77, 0xe2, 0x28, 0x11, 0x35, 0x25, 0x78, + 0xc9, 0x54, 0x5e, 0xc3, 0x1f, 0x3c, 0x95, 0x97, 0x4a, 0xc0, 0x35, 0xf2, 0xb0, 0x12, 0x70, 0x19, + 0x89, 0xcc, 0x6a, 0xc7, 0x91, 0xc8, 0xec, 0x9b, 0x16, 0x9c, 0x6d, 0xe7, 0xe5, 0x01, 0x14, 0xa9, + 0xb4, 0x3e, 0x7b, 0x84, 0xbc, 0x88, 0x46, 0xd5, 0xec, 0x3e, 0x56, 0x2e, 0x19, 0xce, 0xaf, 0x58, + 0x66, 0x44, 0x1b, 0xfd, 0xe0, 0x19, 0xd1, 0x8e, 0x3b, 0xe7, 0x56, 0x9a, 0x1f, 0x6d, 0xfc, 0x58, + 0xf2, 0xa3, 0x4d, 0x3c, 0xc4, 0xfc, 0x68, 0x5a, 0x66, 0xb3, 0xc9, 0x87, 0x9b, 0xd9, 0x6c, 0x0b, + 0x46, 0xdd, 0xf0, 0x7e, 0x70, 0xdf, 0x89, 0xdc, 0xf9, 0xc6, 0x8a, 0x48, 0xa4, 0x55, 0x90, 0xb4, + 0xa1, 0x9e, 0x16, 0x30, 0x6a, 0xe0, 0x0e, 0xc8, 0x14, 0x89, 0x75, 0xd6, 0x22, 0xc7, 0xdb, 0xa9, + 0x0f, 0x98, 0xe3, 0xcd, 0xc8, 0x94, 0x86, 0x8e, 0x23, 0x53, 0xda, 0x97, 0xd9, 0xd5, 0xed, 0x0d, + 0x6f, 0x73, 0xd5, 0x69, 0x4f, 0x9f, 0x2e, 0x53, 0xc3, 0xa2, 0x24, 0xef, 0xae, 0x41, 0xa1, 0x70, + 0xca, 0xb4, 0x3b, 0x17, 0xdb, 0x99, 0x93, 0xce, 0xc5, 0x76, 0xf6, 0x18, 0x73, 0xb1, 0x9d, 0x3b, + 0xd1, 0x5c, 0x6c, 0x8f, 0xfc, 0xa9, 0xe4, 0x62, 0xfb, 0x4b, 0x70, 0xfe, 0xf0, 0xcf, 0x91, 0x66, + 0xfb, 0x6d, 0xa4, 0x2e, 0x83, 0x4c, 0xb6, 0x5f, 0x66, 0xea, 0x68, 0x54, 0xa5, 0x53, 0x42, 0xfd, + 0x0b, 0x0b, 0x1e, 0xe9, 0x91, 0x38, 0xa5, 0xf4, 0x6d, 0x86, 0x36, 0x4c, 0xb6, 0xcd, 0xa2, 0xa5, + 0xef, 0x1d, 0x19, 0x89, 0x5a, 0x54, 0x9c, 0x5c, 0x06, 0x81, 0xb3, 0xec, 0x17, 0x3e, 0xfe, 0xe3, + 0xf7, 0xcf, 0x7f, 0xe4, 0x27, 0xef, 0x9f, 0xff, 0xc8, 0xef, 0xbf, 0x7f, 0xfe, 0x23, 0x3f, 0xbb, + 0x7f, 0xde, 0xfa, 0xf1, 0xfe, 0x79, 0xeb, 0x27, 0xfb, 0xe7, 0xad, 0x3f, 0xda, 0x3f, 0x6f, 0x7d, + 0xf3, 0x8f, 0xcf, 0x7f, 0xe4, 0x8b, 0x95, 0x9d, 0x2b, 0xff, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x1a, + 0xda, 0xcb, 0x09, 0x5a, 0xb6, 0x00, 0x00, } diff --git a/pkg/api/v1/generated.proto b/pkg/api/v1/generated.proto index 59b2be5ef49..451fb30b266 100644 --- a/pkg/api/v1/generated.proto +++ b/pkg/api/v1/generated.proto @@ -888,15 +888,6 @@ message ExecAction { repeated string command = 1; } -// ExportOptions is the query options to the standard REST get call. -message ExportOptions { - // Should this value be exported. Export strips fields that a user can not specify. - optional bool export = 1; - - // Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' - optional bool exact = 2; -} - // Represents a Fibre Channel volume. // Fibre Channel volumes can only be mounted as read/write once. // Fibre Channel volumes support ownership management and SELinux relabeling. diff --git a/pkg/api/v1/types.generated.go b/pkg/api/v1/types.generated.go index 50aac6d3840..8917b9f2e82 100644 --- a/pkg/api/v1/types.generated.go +++ b/pkg/api/v1/types.generated.go @@ -44468,7 +44468,7 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -44482,16 +44482,21 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep3491 := !z.EncBinary() yy2arr3491 := z.EncBasicHandle().StructToArray - var yyq3491 [4]bool + var yyq3491 [7]bool _, _, _ = yysep3491, yyq3491, yy2arr3491 const yyr3491 bool = false yyq3491[0] = x.Kind != "" yyq3491[1] = x.APIVersion != "" + yyq3491[2] = x.LabelSelector != "" + yyq3491[3] = x.FieldSelector != "" + yyq3491[4] = x.Watch != false + yyq3491[5] = x.ResourceVersion != "" + yyq3491[6] = x.TimeoutSeconds != nil var yynn3491 int if yyr3491 || yy2arr3491 { - r.EncodeArrayStart(4) + r.EncodeArrayStart(7) } else { - yynn3491 = 2 + yynn3491 = 0 for _, b := range yyq3491 { if b { yynn3491++ @@ -44552,313 +44557,9 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr3491 || yy2arr3491 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3499 := z.EncBinary() - _ = yym3499 - if false { - } else { - r.EncodeBool(bool(x.Export)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("export")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3500 := z.EncBinary() - _ = yym3500 - if false { - } else { - r.EncodeBool(bool(x.Export)) - } - } - if yyr3491 || yy2arr3491 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3502 := z.EncBinary() - _ = yym3502 - if false { - } else { - r.EncodeBool(bool(x.Exact)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("exact")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3503 := z.EncBinary() - _ = yym3503 - if false { - } else { - r.EncodeBool(bool(x.Exact)) - } - } - if yyr3491 || yy2arr3491 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3504 := z.DecBinary() - _ = yym3504 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3505 := r.ContainerType() - if yyct3505 == codecSelferValueTypeMap1234 { - yyl3505 := r.ReadMapStart() - if yyl3505 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3505, d) - } - } else if yyct3505 == codecSelferValueTypeArray1234 { - yyl3505 := r.ReadArrayStart() - if yyl3505 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3505, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3506Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3506Slc - var yyhl3506 bool = l >= 0 - for yyj3506 := 0; ; yyj3506++ { - if yyhl3506 { - if yyj3506 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3506Slc = r.DecodeBytes(yys3506Slc, true, true) - yys3506 := string(yys3506Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3506 { - 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 "export": - if r.TryDecodeAsNil() { - x.Export = false - } else { - x.Export = bool(r.DecodeBool()) - } - case "exact": - if r.TryDecodeAsNil() { - x.Exact = false - } else { - x.Exact = bool(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys3506) - } // end switch yys3506 - } // end for yyj3506 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3511 int - var yyb3511 bool - var yyhl3511 bool = l >= 0 - yyj3511++ - if yyhl3511 { - yyb3511 = yyj3511 > l - } else { - yyb3511 = r.CheckBreak() - } - if yyb3511 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj3511++ - if yyhl3511 { - yyb3511 = yyj3511 > l - } else { - yyb3511 = r.CheckBreak() - } - if yyb3511 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3511++ - if yyhl3511 { - yyb3511 = yyj3511 > l - } else { - yyb3511 = r.CheckBreak() - } - if yyb3511 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Export = false - } else { - x.Export = bool(r.DecodeBool()) - } - yyj3511++ - if yyhl3511 { - yyb3511 = yyj3511 > l - } else { - yyb3511 = r.CheckBreak() - } - if yyb3511 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Exact = false - } else { - x.Exact = bool(r.DecodeBool()) - } - for { - yyj3511++ - if yyhl3511 { - yyb3511 = yyj3511 > l - } else { - yyb3511 = r.CheckBreak() - } - if yyb3511 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3511-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3516 := z.EncBinary() - _ = yym3516 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3517 := !z.EncBinary() - yy2arr3517 := z.EncBasicHandle().StructToArray - var yyq3517 [7]bool - _, _, _ = yysep3517, yyq3517, yy2arr3517 - const yyr3517 bool = false - yyq3517[0] = x.Kind != "" - yyq3517[1] = x.APIVersion != "" - yyq3517[2] = x.LabelSelector != "" - yyq3517[3] = x.FieldSelector != "" - yyq3517[4] = x.Watch != false - yyq3517[5] = x.ResourceVersion != "" - yyq3517[6] = x.TimeoutSeconds != nil - var yynn3517 int - if yyr3517 || yy2arr3517 { - r.EncodeArrayStart(7) - } else { - yynn3517 = 0 - for _, b := range yyq3517 { - if b { - yynn3517++ - } - } - r.EncodeMapStart(yynn3517) - yynn3517 = 0 - } - if yyr3517 || yy2arr3517 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3517[0] { - yym3519 := z.EncBinary() - _ = yym3519 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3517[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3520 := z.EncBinary() - _ = yym3520 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3517 || yy2arr3517 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3517[1] { - yym3522 := z.EncBinary() - _ = yym3522 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3517[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3523 := z.EncBinary() - _ = yym3523 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3517 || yy2arr3517 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3517[2] { - yym3525 := z.EncBinary() - _ = yym3525 + if yyq3491[2] { + yym3499 := z.EncBinary() + _ = yym3499 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) @@ -44867,23 +44568,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3517[2] { + if yyq3491[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3526 := z.EncBinary() - _ = yym3526 + yym3500 := z.EncBinary() + _ = yym3500 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) } } } - if yyr3517 || yy2arr3517 { + if yyr3491 || yy2arr3491 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3517[3] { - yym3528 := z.EncBinary() - _ = yym3528 + if yyq3491[3] { + yym3502 := z.EncBinary() + _ = yym3502 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) @@ -44892,23 +44593,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3517[3] { + if yyq3491[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3529 := z.EncBinary() - _ = yym3529 + yym3503 := z.EncBinary() + _ = yym3503 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) } } } - if yyr3517 || yy2arr3517 { + if yyr3491 || yy2arr3491 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3517[4] { - yym3531 := z.EncBinary() - _ = yym3531 + if yyq3491[4] { + yym3505 := z.EncBinary() + _ = yym3505 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -44917,23 +44618,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3517[4] { + if yyq3491[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3532 := z.EncBinary() - _ = yym3532 + yym3506 := z.EncBinary() + _ = yym3506 if false { } else { r.EncodeBool(bool(x.Watch)) } } } - if yyr3517 || yy2arr3517 { + if yyr3491 || yy2arr3491 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3517[5] { - yym3534 := z.EncBinary() - _ = yym3534 + if yyq3491[5] { + yym3508 := z.EncBinary() + _ = yym3508 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -44942,54 +44643,54 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3517[5] { + if yyq3491[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3535 := z.EncBinary() - _ = yym3535 + yym3509 := z.EncBinary() + _ = yym3509 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3517 || yy2arr3517 { + if yyr3491 || yy2arr3491 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3517[6] { + if yyq3491[6] { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3537 := *x.TimeoutSeconds - yym3538 := z.EncBinary() - _ = yym3538 + yy3511 := *x.TimeoutSeconds + yym3512 := z.EncBinary() + _ = yym3512 if false { } else { - r.EncodeInt(int64(yy3537)) + r.EncodeInt(int64(yy3511)) } } } else { r.EncodeNil() } } else { - if yyq3517[6] { + if yyq3491[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3539 := *x.TimeoutSeconds - yym3540 := z.EncBinary() - _ = yym3540 + yy3513 := *x.TimeoutSeconds + yym3514 := z.EncBinary() + _ = yym3514 if false { } else { - r.EncodeInt(int64(yy3539)) + r.EncodeInt(int64(yy3513)) } } } } - if yyr3517 || yy2arr3517 { + if yyr3491 || yy2arr3491 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45002,25 +44703,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3541 := z.DecBinary() - _ = yym3541 + yym3515 := z.DecBinary() + _ = yym3515 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3542 := r.ContainerType() - if yyct3542 == codecSelferValueTypeMap1234 { - yyl3542 := r.ReadMapStart() - if yyl3542 == 0 { + yyct3516 := r.ContainerType() + if yyct3516 == codecSelferValueTypeMap1234 { + yyl3516 := r.ReadMapStart() + if yyl3516 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3542, d) + x.codecDecodeSelfFromMap(yyl3516, d) } - } else if yyct3542 == codecSelferValueTypeArray1234 { - yyl3542 := r.ReadArrayStart() - if yyl3542 == 0 { + } else if yyct3516 == codecSelferValueTypeArray1234 { + yyl3516 := r.ReadArrayStart() + if yyl3516 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3542, d) + x.codecDecodeSelfFromArray(yyl3516, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45032,12 +44733,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3543Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3543Slc - var yyhl3543 bool = l >= 0 - for yyj3543 := 0; ; yyj3543++ { - if yyhl3543 { - if yyj3543 >= l { + var yys3517Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3517Slc + var yyhl3517 bool = l >= 0 + for yyj3517 := 0; ; yyj3517++ { + if yyhl3517 { + if yyj3517 >= l { break } } else { @@ -45046,10 +44747,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3543Slc = r.DecodeBytes(yys3543Slc, true, true) - yys3543 := string(yys3543Slc) + yys3517Slc = r.DecodeBytes(yys3517Slc, true, true) + yys3517 := string(yys3517Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3543 { + switch yys3517 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45095,17 +44796,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3551 := z.DecBinary() - _ = yym3551 + yym3525 := z.DecBinary() + _ = yym3525 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3543) - } // end switch yys3543 - } // end for yyj3543 + z.DecStructFieldNotFound(-1, yys3517) + } // end switch yys3517 + } // end for yyj3517 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45113,16 +44814,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3552 int - var yyb3552 bool - var yyhl3552 bool = l >= 0 - yyj3552++ - if yyhl3552 { - yyb3552 = yyj3552 > l + var yyj3526 int + var yyb3526 bool + var yyhl3526 bool = l >= 0 + yyj3526++ + if yyhl3526 { + yyb3526 = yyj3526 > l } else { - yyb3552 = r.CheckBreak() + yyb3526 = r.CheckBreak() } - if yyb3552 { + if yyb3526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45132,13 +44833,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3552++ - if yyhl3552 { - yyb3552 = yyj3552 > l + yyj3526++ + if yyhl3526 { + yyb3526 = yyj3526 > l } else { - yyb3552 = r.CheckBreak() + yyb3526 = r.CheckBreak() } - if yyb3552 { + if yyb3526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45148,13 +44849,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3552++ - if yyhl3552 { - yyb3552 = yyj3552 > l + yyj3526++ + if yyhl3526 { + yyb3526 = yyj3526 > l } else { - yyb3552 = r.CheckBreak() + yyb3526 = r.CheckBreak() } - if yyb3552 { + if yyb3526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45164,13 +44865,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LabelSelector = string(r.DecodeString()) } - yyj3552++ - if yyhl3552 { - yyb3552 = yyj3552 > l + yyj3526++ + if yyhl3526 { + yyb3526 = yyj3526 > l } else { - yyb3552 = r.CheckBreak() + yyb3526 = r.CheckBreak() } - if yyb3552 { + if yyb3526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45180,13 +44881,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FieldSelector = string(r.DecodeString()) } - yyj3552++ - if yyhl3552 { - yyb3552 = yyj3552 > l + yyj3526++ + if yyhl3526 { + yyb3526 = yyj3526 > l } else { - yyb3552 = r.CheckBreak() + yyb3526 = r.CheckBreak() } - if yyb3552 { + if yyb3526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45196,13 +44897,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3552++ - if yyhl3552 { - yyb3552 = yyj3552 > l + yyj3526++ + if yyhl3526 { + yyb3526 = yyj3526 > l } else { - yyb3552 = r.CheckBreak() + yyb3526 = r.CheckBreak() } - if yyb3552 { + if yyb3526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45212,13 +44913,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3552++ - if yyhl3552 { - yyb3552 = yyj3552 > l + yyj3526++ + if yyhl3526 { + yyb3526 = yyj3526 > l } else { - yyb3552 = r.CheckBreak() + yyb3526 = r.CheckBreak() } - if yyb3552 { + if yyb3526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45231,25 +44932,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3560 := z.DecBinary() - _ = yym3560 + yym3534 := z.DecBinary() + _ = yym3534 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3552++ - if yyhl3552 { - yyb3552 = yyj3552 > l + yyj3526++ + if yyhl3526 { + yyb3526 = yyj3526 > l } else { - yyb3552 = r.CheckBreak() + yyb3526 = r.CheckBreak() } - if yyb3552 { + if yyb3526 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3552-1, "") + z.DecStructFieldNotFound(yyj3526-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45261,44 +44962,44 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3561 := z.EncBinary() - _ = yym3561 + yym3535 := z.EncBinary() + _ = yym3535 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3562 := !z.EncBinary() - yy2arr3562 := z.EncBasicHandle().StructToArray - var yyq3562 [10]bool - _, _, _ = yysep3562, yyq3562, yy2arr3562 - const yyr3562 bool = false - yyq3562[0] = x.Kind != "" - yyq3562[1] = x.APIVersion != "" - yyq3562[2] = x.Container != "" - yyq3562[3] = x.Follow != false - yyq3562[4] = x.Previous != false - yyq3562[5] = x.SinceSeconds != nil - yyq3562[6] = x.SinceTime != nil - yyq3562[7] = x.Timestamps != false - yyq3562[8] = x.TailLines != nil - yyq3562[9] = x.LimitBytes != nil - var yynn3562 int - if yyr3562 || yy2arr3562 { + yysep3536 := !z.EncBinary() + yy2arr3536 := z.EncBasicHandle().StructToArray + var yyq3536 [10]bool + _, _, _ = yysep3536, yyq3536, yy2arr3536 + const yyr3536 bool = false + yyq3536[0] = x.Kind != "" + yyq3536[1] = x.APIVersion != "" + yyq3536[2] = x.Container != "" + yyq3536[3] = x.Follow != false + yyq3536[4] = x.Previous != false + yyq3536[5] = x.SinceSeconds != nil + yyq3536[6] = x.SinceTime != nil + yyq3536[7] = x.Timestamps != false + yyq3536[8] = x.TailLines != nil + yyq3536[9] = x.LimitBytes != nil + var yynn3536 int + if yyr3536 || yy2arr3536 { r.EncodeArrayStart(10) } else { - yynn3562 = 0 - for _, b := range yyq3562 { + yynn3536 = 0 + for _, b := range yyq3536 { if b { - yynn3562++ + yynn3536++ } } - r.EncodeMapStart(yynn3562) - yynn3562 = 0 + r.EncodeMapStart(yynn3536) + yynn3536 = 0 } - if yyr3562 || yy2arr3562 { + if yyr3536 || yy2arr3536 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3562[0] { - yym3564 := z.EncBinary() - _ = yym3564 + if yyq3536[0] { + yym3538 := z.EncBinary() + _ = yym3538 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45307,23 +45008,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3562[0] { + if yyq3536[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3565 := z.EncBinary() - _ = yym3565 + yym3539 := z.EncBinary() + _ = yym3539 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3562 || yy2arr3562 { + if yyr3536 || yy2arr3536 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3562[1] { - yym3567 := z.EncBinary() - _ = yym3567 + if yyq3536[1] { + yym3541 := z.EncBinary() + _ = yym3541 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45332,23 +45033,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3562[1] { + if yyq3536[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3568 := z.EncBinary() - _ = yym3568 + yym3542 := z.EncBinary() + _ = yym3542 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3562 || yy2arr3562 { + if yyr3536 || yy2arr3536 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3562[2] { - yym3570 := z.EncBinary() - _ = yym3570 + if yyq3536[2] { + yym3544 := z.EncBinary() + _ = yym3544 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -45357,23 +45058,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3562[2] { + if yyq3536[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3571 := z.EncBinary() - _ = yym3571 + yym3545 := z.EncBinary() + _ = yym3545 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3562 || yy2arr3562 { + if yyr3536 || yy2arr3536 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3562[3] { - yym3573 := z.EncBinary() - _ = yym3573 + if yyq3536[3] { + yym3547 := z.EncBinary() + _ = yym3547 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -45382,23 +45083,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3562[3] { + if yyq3536[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3574 := z.EncBinary() - _ = yym3574 + yym3548 := z.EncBinary() + _ = yym3548 if false { } else { r.EncodeBool(bool(x.Follow)) } } } - if yyr3562 || yy2arr3562 { + if yyr3536 || yy2arr3536 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3562[4] { - yym3576 := z.EncBinary() - _ = yym3576 + if yyq3536[4] { + yym3550 := z.EncBinary() + _ = yym3550 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -45407,66 +45108,66 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3562[4] { + if yyq3536[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3577 := z.EncBinary() - _ = yym3577 + yym3551 := z.EncBinary() + _ = yym3551 if false { } else { r.EncodeBool(bool(x.Previous)) } } } - if yyr3562 || yy2arr3562 { + if yyr3536 || yy2arr3536 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3562[5] { + if yyq3536[5] { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3579 := *x.SinceSeconds - yym3580 := z.EncBinary() - _ = yym3580 + yy3553 := *x.SinceSeconds + yym3554 := z.EncBinary() + _ = yym3554 if false { } else { - r.EncodeInt(int64(yy3579)) + r.EncodeInt(int64(yy3553)) } } } else { r.EncodeNil() } } else { - if yyq3562[5] { + if yyq3536[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3581 := *x.SinceSeconds - yym3582 := z.EncBinary() - _ = yym3582 + yy3555 := *x.SinceSeconds + yym3556 := z.EncBinary() + _ = yym3556 if false { } else { - r.EncodeInt(int64(yy3581)) + r.EncodeInt(int64(yy3555)) } } } } - if yyr3562 || yy2arr3562 { + if yyr3536 || yy2arr3536 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3562[6] { + if yyq3536[6] { if x.SinceTime == nil { r.EncodeNil() } else { - yym3584 := z.EncBinary() - _ = yym3584 + yym3558 := z.EncBinary() + _ = yym3558 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3584 { + } else if yym3558 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3584 && z.IsJSONHandle() { + } else if !yym3558 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -45476,20 +45177,20 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3562[6] { + if yyq3536[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3585 := z.EncBinary() - _ = yym3585 + yym3559 := z.EncBinary() + _ = yym3559 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3585 { + } else if yym3559 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3585 && z.IsJSONHandle() { + } else if !yym3559 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -45497,11 +45198,11 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3562 || yy2arr3562 { + if yyr3536 || yy2arr3536 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3562[7] { - yym3587 := z.EncBinary() - _ = yym3587 + if yyq3536[7] { + yym3561 := z.EncBinary() + _ = yym3561 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -45510,89 +45211,89 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3562[7] { + if yyq3536[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3588 := z.EncBinary() - _ = yym3588 + yym3562 := z.EncBinary() + _ = yym3562 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } } - if yyr3562 || yy2arr3562 { + if yyr3536 || yy2arr3536 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3562[8] { + if yyq3536[8] { if x.TailLines == nil { r.EncodeNil() } else { - yy3590 := *x.TailLines - yym3591 := z.EncBinary() - _ = yym3591 + yy3564 := *x.TailLines + yym3565 := z.EncBinary() + _ = yym3565 if false { } else { - r.EncodeInt(int64(yy3590)) + r.EncodeInt(int64(yy3564)) } } } else { r.EncodeNil() } } else { - if yyq3562[8] { + if yyq3536[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tailLines")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3592 := *x.TailLines - yym3593 := z.EncBinary() - _ = yym3593 + yy3566 := *x.TailLines + yym3567 := z.EncBinary() + _ = yym3567 if false { } else { - r.EncodeInt(int64(yy3592)) + r.EncodeInt(int64(yy3566)) } } } } - if yyr3562 || yy2arr3562 { + if yyr3536 || yy2arr3536 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3562[9] { + if yyq3536[9] { if x.LimitBytes == nil { r.EncodeNil() } else { - yy3595 := *x.LimitBytes - yym3596 := z.EncBinary() - _ = yym3596 + yy3569 := *x.LimitBytes + yym3570 := z.EncBinary() + _ = yym3570 if false { } else { - r.EncodeInt(int64(yy3595)) + r.EncodeInt(int64(yy3569)) } } } else { r.EncodeNil() } } else { - if yyq3562[9] { + if yyq3536[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limitBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3597 := *x.LimitBytes - yym3598 := z.EncBinary() - _ = yym3598 + yy3571 := *x.LimitBytes + yym3572 := z.EncBinary() + _ = yym3572 if false { } else { - r.EncodeInt(int64(yy3597)) + r.EncodeInt(int64(yy3571)) } } } } - if yyr3562 || yy2arr3562 { + if yyr3536 || yy2arr3536 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45605,25 +45306,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3599 := z.DecBinary() - _ = yym3599 + yym3573 := z.DecBinary() + _ = yym3573 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3600 := r.ContainerType() - if yyct3600 == codecSelferValueTypeMap1234 { - yyl3600 := r.ReadMapStart() - if yyl3600 == 0 { + yyct3574 := r.ContainerType() + if yyct3574 == codecSelferValueTypeMap1234 { + yyl3574 := r.ReadMapStart() + if yyl3574 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3600, d) + x.codecDecodeSelfFromMap(yyl3574, d) } - } else if yyct3600 == codecSelferValueTypeArray1234 { - yyl3600 := r.ReadArrayStart() - if yyl3600 == 0 { + } else if yyct3574 == codecSelferValueTypeArray1234 { + yyl3574 := r.ReadArrayStart() + if yyl3574 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3600, d) + x.codecDecodeSelfFromArray(yyl3574, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45635,12 +45336,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3601Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3601Slc - var yyhl3601 bool = l >= 0 - for yyj3601 := 0; ; yyj3601++ { - if yyhl3601 { - if yyj3601 >= l { + var yys3575Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3575Slc + var yyhl3575 bool = l >= 0 + for yyj3575 := 0; ; yyj3575++ { + if yyhl3575 { + if yyj3575 >= l { break } } else { @@ -45649,10 +45350,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3601Slc = r.DecodeBytes(yys3601Slc, true, true) - yys3601 := string(yys3601Slc) + yys3575Slc = r.DecodeBytes(yys3575Slc, true, true) + yys3575 := string(yys3575Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3601 { + switch yys3575 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45692,8 +45393,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3608 := z.DecBinary() - _ = yym3608 + yym3582 := z.DecBinary() + _ = yym3582 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -45708,13 +45409,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3610 := z.DecBinary() - _ = yym3610 + yym3584 := z.DecBinary() + _ = yym3584 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3610 { + } else if yym3584 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3610 && z.IsJSONHandle() { + } else if !yym3584 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -45735,8 +45436,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3613 := z.DecBinary() - _ = yym3613 + yym3587 := z.DecBinary() + _ = yym3587 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -45751,17 +45452,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3615 := z.DecBinary() - _ = yym3615 + yym3589 := z.DecBinary() + _ = yym3589 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3601) - } // end switch yys3601 - } // end for yyj3601 + z.DecStructFieldNotFound(-1, yys3575) + } // end switch yys3575 + } // end for yyj3575 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45769,16 +45470,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3616 int - var yyb3616 bool - var yyhl3616 bool = l >= 0 - yyj3616++ - if yyhl3616 { - yyb3616 = yyj3616 > l + var yyj3590 int + var yyb3590 bool + var yyhl3590 bool = l >= 0 + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3616 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3616 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45788,13 +45489,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3616++ - if yyhl3616 { - yyb3616 = yyj3616 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3616 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3616 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45804,13 +45505,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3616++ - if yyhl3616 { - yyb3616 = yyj3616 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3616 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3616 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45820,13 +45521,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3616++ - if yyhl3616 { - yyb3616 = yyj3616 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3616 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3616 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45836,13 +45537,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3616++ - if yyhl3616 { - yyb3616 = yyj3616 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3616 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3616 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45852,13 +45553,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3616++ - if yyhl3616 { - yyb3616 = yyj3616 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3616 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3616 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45871,20 +45572,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3623 := z.DecBinary() - _ = yym3623 + yym3597 := z.DecBinary() + _ = yym3597 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3616++ - if yyhl3616 { - yyb3616 = yyj3616 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3616 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3616 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45897,25 +45598,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym3625 := z.DecBinary() - _ = yym3625 + yym3599 := z.DecBinary() + _ = yym3599 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3625 { + } else if yym3599 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3625 && z.IsJSONHandle() { + } else if !yym3599 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3616++ - if yyhl3616 { - yyb3616 = yyj3616 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3616 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3616 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45925,13 +45626,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3616++ - if yyhl3616 { - yyb3616 = yyj3616 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3616 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3616 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45944,20 +45645,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3628 := z.DecBinary() - _ = yym3628 + yym3602 := z.DecBinary() + _ = yym3602 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3616++ - if yyhl3616 { - yyb3616 = yyj3616 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3616 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3616 { + if yyb3590 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45970,25 +45671,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3630 := z.DecBinary() - _ = yym3630 + yym3604 := z.DecBinary() + _ = yym3604 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3616++ - if yyhl3616 { - yyb3616 = yyj3616 > l + yyj3590++ + if yyhl3590 { + yyb3590 = yyj3590 > l } else { - yyb3616 = r.CheckBreak() + yyb3590 = r.CheckBreak() } - if yyb3616 { + if yyb3590 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3616-1, "") + z.DecStructFieldNotFound(yyj3590-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46000,41 +45701,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3631 := z.EncBinary() - _ = yym3631 + yym3605 := z.EncBinary() + _ = yym3605 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3632 := !z.EncBinary() - yy2arr3632 := z.EncBasicHandle().StructToArray - var yyq3632 [7]bool - _, _, _ = yysep3632, yyq3632, yy2arr3632 - const yyr3632 bool = false - yyq3632[0] = x.Kind != "" - yyq3632[1] = x.APIVersion != "" - yyq3632[2] = x.Stdin != false - yyq3632[3] = x.Stdout != false - yyq3632[4] = x.Stderr != false - yyq3632[5] = x.TTY != false - yyq3632[6] = x.Container != "" - var yynn3632 int - if yyr3632 || yy2arr3632 { + yysep3606 := !z.EncBinary() + yy2arr3606 := z.EncBasicHandle().StructToArray + var yyq3606 [7]bool + _, _, _ = yysep3606, yyq3606, yy2arr3606 + const yyr3606 bool = false + yyq3606[0] = x.Kind != "" + yyq3606[1] = x.APIVersion != "" + yyq3606[2] = x.Stdin != false + yyq3606[3] = x.Stdout != false + yyq3606[4] = x.Stderr != false + yyq3606[5] = x.TTY != false + yyq3606[6] = x.Container != "" + var yynn3606 int + if yyr3606 || yy2arr3606 { r.EncodeArrayStart(7) } else { - yynn3632 = 0 - for _, b := range yyq3632 { + yynn3606 = 0 + for _, b := range yyq3606 { if b { - yynn3632++ + yynn3606++ } } - r.EncodeMapStart(yynn3632) - yynn3632 = 0 + r.EncodeMapStart(yynn3606) + yynn3606 = 0 } - if yyr3632 || yy2arr3632 { + if yyr3606 || yy2arr3606 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3632[0] { - yym3634 := z.EncBinary() - _ = yym3634 + if yyq3606[0] { + yym3608 := z.EncBinary() + _ = yym3608 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46043,23 +45744,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3632[0] { + if yyq3606[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3635 := z.EncBinary() - _ = yym3635 + yym3609 := z.EncBinary() + _ = yym3609 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3632 || yy2arr3632 { + if yyr3606 || yy2arr3606 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3632[1] { - yym3637 := z.EncBinary() - _ = yym3637 + if yyq3606[1] { + yym3611 := z.EncBinary() + _ = yym3611 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46068,23 +45769,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3632[1] { + if yyq3606[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3638 := z.EncBinary() - _ = yym3638 + yym3612 := z.EncBinary() + _ = yym3612 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3632 || yy2arr3632 { + if yyr3606 || yy2arr3606 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3632[2] { - yym3640 := z.EncBinary() - _ = yym3640 + if yyq3606[2] { + yym3614 := z.EncBinary() + _ = yym3614 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -46093,23 +45794,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3632[2] { + if yyq3606[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3641 := z.EncBinary() - _ = yym3641 + yym3615 := z.EncBinary() + _ = yym3615 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3632 || yy2arr3632 { + if yyr3606 || yy2arr3606 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3632[3] { - yym3643 := z.EncBinary() - _ = yym3643 + if yyq3606[3] { + yym3617 := z.EncBinary() + _ = yym3617 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -46118,23 +45819,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3632[3] { + if yyq3606[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3644 := z.EncBinary() - _ = yym3644 + yym3618 := z.EncBinary() + _ = yym3618 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3632 || yy2arr3632 { + if yyr3606 || yy2arr3606 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3632[4] { - yym3646 := z.EncBinary() - _ = yym3646 + if yyq3606[4] { + yym3620 := z.EncBinary() + _ = yym3620 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -46143,23 +45844,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3632[4] { + if yyq3606[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3647 := z.EncBinary() - _ = yym3647 + yym3621 := z.EncBinary() + _ = yym3621 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3632 || yy2arr3632 { + if yyr3606 || yy2arr3606 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3632[5] { - yym3649 := z.EncBinary() - _ = yym3649 + if yyq3606[5] { + yym3623 := z.EncBinary() + _ = yym3623 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -46168,23 +45869,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3632[5] { + if yyq3606[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3650 := z.EncBinary() - _ = yym3650 + yym3624 := z.EncBinary() + _ = yym3624 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3632 || yy2arr3632 { + if yyr3606 || yy2arr3606 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3632[6] { - yym3652 := z.EncBinary() - _ = yym3652 + if yyq3606[6] { + yym3626 := z.EncBinary() + _ = yym3626 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -46193,19 +45894,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3632[6] { + if yyq3606[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3653 := z.EncBinary() - _ = yym3653 + yym3627 := z.EncBinary() + _ = yym3627 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3632 || yy2arr3632 { + if yyr3606 || yy2arr3606 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46218,25 +45919,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3654 := z.DecBinary() - _ = yym3654 + yym3628 := z.DecBinary() + _ = yym3628 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3655 := r.ContainerType() - if yyct3655 == codecSelferValueTypeMap1234 { - yyl3655 := r.ReadMapStart() - if yyl3655 == 0 { + yyct3629 := r.ContainerType() + if yyct3629 == codecSelferValueTypeMap1234 { + yyl3629 := r.ReadMapStart() + if yyl3629 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3655, d) + x.codecDecodeSelfFromMap(yyl3629, d) } - } else if yyct3655 == codecSelferValueTypeArray1234 { - yyl3655 := r.ReadArrayStart() - if yyl3655 == 0 { + } else if yyct3629 == codecSelferValueTypeArray1234 { + yyl3629 := r.ReadArrayStart() + if yyl3629 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3655, d) + x.codecDecodeSelfFromArray(yyl3629, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46248,12 +45949,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3656Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3656Slc - var yyhl3656 bool = l >= 0 - for yyj3656 := 0; ; yyj3656++ { - if yyhl3656 { - if yyj3656 >= l { + var yys3630Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3630Slc + var yyhl3630 bool = l >= 0 + for yyj3630 := 0; ; yyj3630++ { + if yyhl3630 { + if yyj3630 >= l { break } } else { @@ -46262,10 +45963,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3656Slc = r.DecodeBytes(yys3656Slc, true, true) - yys3656 := string(yys3656Slc) + yys3630Slc = r.DecodeBytes(yys3630Slc, true, true) + yys3630 := string(yys3630Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3656 { + switch yys3630 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46309,9 +46010,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3656) - } // end switch yys3656 - } // end for yyj3656 + z.DecStructFieldNotFound(-1, yys3630) + } // end switch yys3630 + } // end for yyj3630 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46319,16 +46020,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3664 int - var yyb3664 bool - var yyhl3664 bool = l >= 0 - yyj3664++ - if yyhl3664 { - yyb3664 = yyj3664 > l + var yyj3638 int + var yyb3638 bool + var yyhl3638 bool = l >= 0 + yyj3638++ + if yyhl3638 { + yyb3638 = yyj3638 > l } else { - yyb3664 = r.CheckBreak() + yyb3638 = r.CheckBreak() } - if yyb3664 { + if yyb3638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46338,13 +46039,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3664++ - if yyhl3664 { - yyb3664 = yyj3664 > l + yyj3638++ + if yyhl3638 { + yyb3638 = yyj3638 > l } else { - yyb3664 = r.CheckBreak() + yyb3638 = r.CheckBreak() } - if yyb3664 { + if yyb3638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46354,13 +46055,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3664++ - if yyhl3664 { - yyb3664 = yyj3664 > l + yyj3638++ + if yyhl3638 { + yyb3638 = yyj3638 > l } else { - yyb3664 = r.CheckBreak() + yyb3638 = r.CheckBreak() } - if yyb3664 { + if yyb3638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46370,13 +46071,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3664++ - if yyhl3664 { - yyb3664 = yyj3664 > l + yyj3638++ + if yyhl3638 { + yyb3638 = yyj3638 > l } else { - yyb3664 = r.CheckBreak() + yyb3638 = r.CheckBreak() } - if yyb3664 { + if yyb3638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46386,13 +46087,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3664++ - if yyhl3664 { - yyb3664 = yyj3664 > l + yyj3638++ + if yyhl3638 { + yyb3638 = yyj3638 > l } else { - yyb3664 = r.CheckBreak() + yyb3638 = r.CheckBreak() } - if yyb3664 { + if yyb3638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46402,13 +46103,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3664++ - if yyhl3664 { - yyb3664 = yyj3664 > l + yyj3638++ + if yyhl3638 { + yyb3638 = yyj3638 > l } else { - yyb3664 = r.CheckBreak() + yyb3638 = r.CheckBreak() } - if yyb3664 { + if yyb3638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46418,13 +46119,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3664++ - if yyhl3664 { - yyb3664 = yyj3664 > l + yyj3638++ + if yyhl3638 { + yyb3638 = yyj3638 > l } else { - yyb3664 = r.CheckBreak() + yyb3638 = r.CheckBreak() } - if yyb3664 { + if yyb3638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46435,17 +46136,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3664++ - if yyhl3664 { - yyb3664 = yyj3664 > l + yyj3638++ + if yyhl3638 { + yyb3638 = yyj3638 > l } else { - yyb3664 = r.CheckBreak() + yyb3638 = r.CheckBreak() } - if yyb3664 { + if yyb3638 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3664-1, "") + z.DecStructFieldNotFound(yyj3638-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46457,41 +46158,41 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3672 := z.EncBinary() - _ = yym3672 + yym3646 := z.EncBinary() + _ = yym3646 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3673 := !z.EncBinary() - yy2arr3673 := z.EncBasicHandle().StructToArray - var yyq3673 [8]bool - _, _, _ = yysep3673, yyq3673, yy2arr3673 - const yyr3673 bool = false - yyq3673[0] = x.Kind != "" - yyq3673[1] = x.APIVersion != "" - yyq3673[2] = x.Stdin != false - yyq3673[3] = x.Stdout != false - yyq3673[4] = x.Stderr != false - yyq3673[5] = x.TTY != false - yyq3673[6] = x.Container != "" - var yynn3673 int - if yyr3673 || yy2arr3673 { + yysep3647 := !z.EncBinary() + yy2arr3647 := z.EncBasicHandle().StructToArray + var yyq3647 [8]bool + _, _, _ = yysep3647, yyq3647, yy2arr3647 + const yyr3647 bool = false + yyq3647[0] = x.Kind != "" + yyq3647[1] = x.APIVersion != "" + yyq3647[2] = x.Stdin != false + yyq3647[3] = x.Stdout != false + yyq3647[4] = x.Stderr != false + yyq3647[5] = x.TTY != false + yyq3647[6] = x.Container != "" + var yynn3647 int + if yyr3647 || yy2arr3647 { r.EncodeArrayStart(8) } else { - yynn3673 = 1 - for _, b := range yyq3673 { + yynn3647 = 1 + for _, b := range yyq3647 { if b { - yynn3673++ + yynn3647++ } } - r.EncodeMapStart(yynn3673) - yynn3673 = 0 + r.EncodeMapStart(yynn3647) + yynn3647 = 0 } - if yyr3673 || yy2arr3673 { + if yyr3647 || yy2arr3647 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3673[0] { - yym3675 := z.EncBinary() - _ = yym3675 + if yyq3647[0] { + yym3649 := z.EncBinary() + _ = yym3649 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46500,23 +46201,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3673[0] { + if yyq3647[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3676 := z.EncBinary() - _ = yym3676 + yym3650 := z.EncBinary() + _ = yym3650 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3673 || yy2arr3673 { + if yyr3647 || yy2arr3647 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3673[1] { - yym3678 := z.EncBinary() - _ = yym3678 + if yyq3647[1] { + yym3652 := z.EncBinary() + _ = yym3652 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46525,23 +46226,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3673[1] { + if yyq3647[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3679 := z.EncBinary() - _ = yym3679 + yym3653 := z.EncBinary() + _ = yym3653 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3673 || yy2arr3673 { + if yyr3647 || yy2arr3647 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3673[2] { - yym3681 := z.EncBinary() - _ = yym3681 + if yyq3647[2] { + yym3655 := z.EncBinary() + _ = yym3655 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -46550,23 +46251,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3673[2] { + if yyq3647[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3682 := z.EncBinary() - _ = yym3682 + yym3656 := z.EncBinary() + _ = yym3656 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3673 || yy2arr3673 { + if yyr3647 || yy2arr3647 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3673[3] { - yym3684 := z.EncBinary() - _ = yym3684 + if yyq3647[3] { + yym3658 := z.EncBinary() + _ = yym3658 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -46575,23 +46276,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3673[3] { + if yyq3647[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3685 := z.EncBinary() - _ = yym3685 + yym3659 := z.EncBinary() + _ = yym3659 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3673 || yy2arr3673 { + if yyr3647 || yy2arr3647 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3673[4] { - yym3687 := z.EncBinary() - _ = yym3687 + if yyq3647[4] { + yym3661 := z.EncBinary() + _ = yym3661 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -46600,23 +46301,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3673[4] { + if yyq3647[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3688 := z.EncBinary() - _ = yym3688 + yym3662 := z.EncBinary() + _ = yym3662 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3673 || yy2arr3673 { + if yyr3647 || yy2arr3647 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3673[5] { - yym3690 := z.EncBinary() - _ = yym3690 + if yyq3647[5] { + yym3664 := z.EncBinary() + _ = yym3664 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -46625,23 +46326,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3673[5] { + if yyq3647[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3691 := z.EncBinary() - _ = yym3691 + yym3665 := z.EncBinary() + _ = yym3665 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3673 || yy2arr3673 { + if yyr3647 || yy2arr3647 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3673[6] { - yym3693 := z.EncBinary() - _ = yym3693 + if yyq3647[6] { + yym3667 := z.EncBinary() + _ = yym3667 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -46650,25 +46351,25 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3673[6] { + if yyq3647[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3694 := z.EncBinary() - _ = yym3694 + yym3668 := z.EncBinary() + _ = yym3668 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3673 || yy2arr3673 { + if yyr3647 || yy2arr3647 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3696 := z.EncBinary() - _ = yym3696 + yym3670 := z.EncBinary() + _ = yym3670 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -46681,15 +46382,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3697 := z.EncBinary() - _ = yym3697 + yym3671 := z.EncBinary() + _ = yym3671 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3673 || yy2arr3673 { + if yyr3647 || yy2arr3647 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46702,25 +46403,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3698 := z.DecBinary() - _ = yym3698 + yym3672 := z.DecBinary() + _ = yym3672 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3699 := r.ContainerType() - if yyct3699 == codecSelferValueTypeMap1234 { - yyl3699 := r.ReadMapStart() - if yyl3699 == 0 { + yyct3673 := r.ContainerType() + if yyct3673 == codecSelferValueTypeMap1234 { + yyl3673 := r.ReadMapStart() + if yyl3673 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3699, d) + x.codecDecodeSelfFromMap(yyl3673, d) } - } else if yyct3699 == codecSelferValueTypeArray1234 { - yyl3699 := r.ReadArrayStart() - if yyl3699 == 0 { + } else if yyct3673 == codecSelferValueTypeArray1234 { + yyl3673 := r.ReadArrayStart() + if yyl3673 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3699, d) + x.codecDecodeSelfFromArray(yyl3673, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46732,12 +46433,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3700Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3700Slc - var yyhl3700 bool = l >= 0 - for yyj3700 := 0; ; yyj3700++ { - if yyhl3700 { - if yyj3700 >= l { + var yys3674Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3674Slc + var yyhl3674 bool = l >= 0 + for yyj3674 := 0; ; yyj3674++ { + if yyhl3674 { + if yyj3674 >= l { break } } else { @@ -46746,10 +46447,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3700Slc = r.DecodeBytes(yys3700Slc, true, true) - yys3700 := string(yys3700Slc) + yys3674Slc = r.DecodeBytes(yys3674Slc, true, true) + yys3674 := string(yys3674Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3700 { + switch yys3674 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46796,18 +46497,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3708 := &x.Command - yym3709 := z.DecBinary() - _ = yym3709 + yyv3682 := &x.Command + yym3683 := z.DecBinary() + _ = yym3683 if false { } else { - z.F.DecSliceStringX(yyv3708, false, d) + z.F.DecSliceStringX(yyv3682, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3700) - } // end switch yys3700 - } // end for yyj3700 + z.DecStructFieldNotFound(-1, yys3674) + } // end switch yys3674 + } // end for yyj3674 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46815,16 +46516,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3710 int - var yyb3710 bool - var yyhl3710 bool = l >= 0 - yyj3710++ - if yyhl3710 { - yyb3710 = yyj3710 > l + var yyj3684 int + var yyb3684 bool + var yyhl3684 bool = l >= 0 + yyj3684++ + if yyhl3684 { + yyb3684 = yyj3684 > l } else { - yyb3710 = r.CheckBreak() + yyb3684 = r.CheckBreak() } - if yyb3710 { + if yyb3684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46834,13 +46535,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3710++ - if yyhl3710 { - yyb3710 = yyj3710 > l + yyj3684++ + if yyhl3684 { + yyb3684 = yyj3684 > l } else { - yyb3710 = r.CheckBreak() + yyb3684 = r.CheckBreak() } - if yyb3710 { + if yyb3684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46850,13 +46551,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3710++ - if yyhl3710 { - yyb3710 = yyj3710 > l + yyj3684++ + if yyhl3684 { + yyb3684 = yyj3684 > l } else { - yyb3710 = r.CheckBreak() + yyb3684 = r.CheckBreak() } - if yyb3710 { + if yyb3684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46866,13 +46567,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3710++ - if yyhl3710 { - yyb3710 = yyj3710 > l + yyj3684++ + if yyhl3684 { + yyb3684 = yyj3684 > l } else { - yyb3710 = r.CheckBreak() + yyb3684 = r.CheckBreak() } - if yyb3710 { + if yyb3684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46882,13 +46583,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3710++ - if yyhl3710 { - yyb3710 = yyj3710 > l + yyj3684++ + if yyhl3684 { + yyb3684 = yyj3684 > l } else { - yyb3710 = r.CheckBreak() + yyb3684 = r.CheckBreak() } - if yyb3710 { + if yyb3684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46898,13 +46599,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3710++ - if yyhl3710 { - yyb3710 = yyj3710 > l + yyj3684++ + if yyhl3684 { + yyb3684 = yyj3684 > l } else { - yyb3710 = r.CheckBreak() + yyb3684 = r.CheckBreak() } - if yyb3710 { + if yyb3684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46914,13 +46615,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3710++ - if yyhl3710 { - yyb3710 = yyj3710 > l + yyj3684++ + if yyhl3684 { + yyb3684 = yyj3684 > l } else { - yyb3710 = r.CheckBreak() + yyb3684 = r.CheckBreak() } - if yyb3710 { + if yyb3684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46930,13 +46631,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3710++ - if yyhl3710 { - yyb3710 = yyj3710 > l + yyj3684++ + if yyhl3684 { + yyb3684 = yyj3684 > l } else { - yyb3710 = r.CheckBreak() + yyb3684 = r.CheckBreak() } - if yyb3710 { + if yyb3684 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46944,26 +46645,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3718 := &x.Command - yym3719 := z.DecBinary() - _ = yym3719 + yyv3692 := &x.Command + yym3693 := z.DecBinary() + _ = yym3693 if false { } else { - z.F.DecSliceStringX(yyv3718, false, d) + z.F.DecSliceStringX(yyv3692, false, d) } } for { - yyj3710++ - if yyhl3710 { - yyb3710 = yyj3710 > l + yyj3684++ + if yyhl3684 { + yyb3684 = yyj3684 > l } else { - yyb3710 = r.CheckBreak() + yyb3684 = r.CheckBreak() } - if yyb3710 { + if yyb3684 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3710-1, "") + z.DecStructFieldNotFound(yyj3684-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46975,37 +46676,37 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3720 := z.EncBinary() - _ = yym3720 + yym3694 := z.EncBinary() + _ = yym3694 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3721 := !z.EncBinary() - yy2arr3721 := z.EncBasicHandle().StructToArray - var yyq3721 [3]bool - _, _, _ = yysep3721, yyq3721, yy2arr3721 - const yyr3721 bool = false - yyq3721[0] = x.Kind != "" - yyq3721[1] = x.APIVersion != "" - yyq3721[2] = x.Path != "" - var yynn3721 int - if yyr3721 || yy2arr3721 { + 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 { r.EncodeArrayStart(3) } else { - yynn3721 = 0 - for _, b := range yyq3721 { + yynn3695 = 0 + for _, b := range yyq3695 { if b { - yynn3721++ + yynn3695++ } } - r.EncodeMapStart(yynn3721) - yynn3721 = 0 + r.EncodeMapStart(yynn3695) + yynn3695 = 0 } - if yyr3721 || yy2arr3721 { + if yyr3695 || yy2arr3695 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3721[0] { - yym3723 := z.EncBinary() - _ = yym3723 + if yyq3695[0] { + yym3697 := z.EncBinary() + _ = yym3697 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47014,23 +46715,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3721[0] { + if yyq3695[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3724 := z.EncBinary() - _ = yym3724 + yym3698 := z.EncBinary() + _ = yym3698 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3721 || yy2arr3721 { + if yyr3695 || yy2arr3695 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3721[1] { - yym3726 := z.EncBinary() - _ = yym3726 + if yyq3695[1] { + yym3700 := z.EncBinary() + _ = yym3700 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47039,23 +46740,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3721[1] { + if yyq3695[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3727 := z.EncBinary() - _ = yym3727 + yym3701 := z.EncBinary() + _ = yym3701 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3721 || yy2arr3721 { + if yyr3695 || yy2arr3695 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3721[2] { - yym3729 := z.EncBinary() - _ = yym3729 + if yyq3695[2] { + yym3703 := z.EncBinary() + _ = yym3703 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -47064,19 +46765,19 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3721[2] { + if yyq3695[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3730 := z.EncBinary() - _ = yym3730 + yym3704 := z.EncBinary() + _ = yym3704 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3721 || yy2arr3721 { + if yyr3695 || yy2arr3695 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47089,25 +46790,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3731 := z.DecBinary() - _ = yym3731 + yym3705 := z.DecBinary() + _ = yym3705 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3732 := r.ContainerType() - if yyct3732 == codecSelferValueTypeMap1234 { - yyl3732 := r.ReadMapStart() - if yyl3732 == 0 { + yyct3706 := r.ContainerType() + if yyct3706 == codecSelferValueTypeMap1234 { + yyl3706 := r.ReadMapStart() + if yyl3706 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3732, d) + x.codecDecodeSelfFromMap(yyl3706, d) } - } else if yyct3732 == codecSelferValueTypeArray1234 { - yyl3732 := r.ReadArrayStart() - if yyl3732 == 0 { + } else if yyct3706 == codecSelferValueTypeArray1234 { + yyl3706 := r.ReadArrayStart() + if yyl3706 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3732, d) + x.codecDecodeSelfFromArray(yyl3706, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47119,12 +46820,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3733Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3733Slc - var yyhl3733 bool = l >= 0 - for yyj3733 := 0; ; yyj3733++ { - if yyhl3733 { - if yyj3733 >= l { + var yys3707Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3707Slc + var yyhl3707 bool = l >= 0 + for yyj3707 := 0; ; yyj3707++ { + if yyhl3707 { + if yyj3707 >= l { break } } else { @@ -47133,10 +46834,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3733Slc = r.DecodeBytes(yys3733Slc, true, true) - yys3733 := string(yys3733Slc) + yys3707Slc = r.DecodeBytes(yys3707Slc, true, true) + yys3707 := string(yys3707Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3733 { + switch yys3707 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47156,9 +46857,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3733) - } // end switch yys3733 - } // end for yyj3733 + z.DecStructFieldNotFound(-1, yys3707) + } // end switch yys3707 + } // end for yyj3707 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47166,16 +46867,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3737 int - var yyb3737 bool - var yyhl3737 bool = l >= 0 - yyj3737++ - if yyhl3737 { - yyb3737 = yyj3737 > l + var yyj3711 int + var yyb3711 bool + var yyhl3711 bool = l >= 0 + yyj3711++ + if yyhl3711 { + yyb3711 = yyj3711 > l } else { - yyb3737 = r.CheckBreak() + yyb3711 = r.CheckBreak() } - if yyb3737 { + if yyb3711 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47185,13 +46886,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3737++ - if yyhl3737 { - yyb3737 = yyj3737 > l + yyj3711++ + if yyhl3711 { + yyb3711 = yyj3711 > l } else { - yyb3737 = r.CheckBreak() + yyb3711 = r.CheckBreak() } - if yyb3737 { + if yyb3711 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47201,13 +46902,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3737++ - if yyhl3737 { - yyb3737 = yyj3737 > l + yyj3711++ + if yyhl3711 { + yyb3711 = yyj3711 > l } else { - yyb3737 = r.CheckBreak() + yyb3711 = r.CheckBreak() } - if yyb3737 { + if yyb3711 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47218,17 +46919,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3737++ - if yyhl3737 { - yyb3737 = yyj3737 > l + yyj3711++ + if yyhl3711 { + yyb3711 = yyj3711 > l } else { - yyb3737 = r.CheckBreak() + yyb3711 = r.CheckBreak() } - if yyb3737 { + if yyb3711 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3737-1, "") + z.DecStructFieldNotFound(yyj3711-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47240,37 +46941,37 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3741 := z.EncBinary() - _ = yym3741 + yym3715 := z.EncBinary() + _ = yym3715 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3742 := !z.EncBinary() - yy2arr3742 := z.EncBasicHandle().StructToArray - var yyq3742 [3]bool - _, _, _ = yysep3742, yyq3742, yy2arr3742 - const yyr3742 bool = false - yyq3742[0] = x.Kind != "" - yyq3742[1] = x.APIVersion != "" - yyq3742[2] = x.Path != "" - var yynn3742 int - if yyr3742 || yy2arr3742 { + yysep3716 := !z.EncBinary() + yy2arr3716 := z.EncBasicHandle().StructToArray + var yyq3716 [3]bool + _, _, _ = yysep3716, yyq3716, yy2arr3716 + const yyr3716 bool = false + yyq3716[0] = x.Kind != "" + yyq3716[1] = x.APIVersion != "" + yyq3716[2] = x.Path != "" + var yynn3716 int + if yyr3716 || yy2arr3716 { r.EncodeArrayStart(3) } else { - yynn3742 = 0 - for _, b := range yyq3742 { + yynn3716 = 0 + for _, b := range yyq3716 { if b { - yynn3742++ + yynn3716++ } } - r.EncodeMapStart(yynn3742) - yynn3742 = 0 + r.EncodeMapStart(yynn3716) + yynn3716 = 0 } - if yyr3742 || yy2arr3742 { + if yyr3716 || yy2arr3716 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3742[0] { - yym3744 := z.EncBinary() - _ = yym3744 + if yyq3716[0] { + yym3718 := z.EncBinary() + _ = yym3718 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47279,23 +46980,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3742[0] { + if yyq3716[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3745 := z.EncBinary() - _ = yym3745 + yym3719 := z.EncBinary() + _ = yym3719 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3742 || yy2arr3742 { + if yyr3716 || yy2arr3716 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3742[1] { - yym3747 := z.EncBinary() - _ = yym3747 + if yyq3716[1] { + yym3721 := z.EncBinary() + _ = yym3721 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47304,23 +47005,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3742[1] { + if yyq3716[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3748 := z.EncBinary() - _ = yym3748 + yym3722 := z.EncBinary() + _ = yym3722 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3742 || yy2arr3742 { + if yyr3716 || yy2arr3716 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3742[2] { - yym3750 := z.EncBinary() - _ = yym3750 + if yyq3716[2] { + yym3724 := z.EncBinary() + _ = yym3724 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -47329,19 +47030,19 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3742[2] { + if yyq3716[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3751 := z.EncBinary() - _ = yym3751 + yym3725 := z.EncBinary() + _ = yym3725 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3742 || yy2arr3742 { + if yyr3716 || yy2arr3716 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47354,25 +47055,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3752 := z.DecBinary() - _ = yym3752 + yym3726 := z.DecBinary() + _ = yym3726 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3753 := r.ContainerType() - if yyct3753 == codecSelferValueTypeMap1234 { - yyl3753 := r.ReadMapStart() - if yyl3753 == 0 { + yyct3727 := r.ContainerType() + if yyct3727 == codecSelferValueTypeMap1234 { + yyl3727 := r.ReadMapStart() + if yyl3727 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3753, d) + x.codecDecodeSelfFromMap(yyl3727, d) } - } else if yyct3753 == codecSelferValueTypeArray1234 { - yyl3753 := r.ReadArrayStart() - if yyl3753 == 0 { + } else if yyct3727 == codecSelferValueTypeArray1234 { + yyl3727 := r.ReadArrayStart() + if yyl3727 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3753, d) + x.codecDecodeSelfFromArray(yyl3727, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47384,12 +47085,12 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3754Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3754Slc - var yyhl3754 bool = l >= 0 - for yyj3754 := 0; ; yyj3754++ { - if yyhl3754 { - if yyj3754 >= l { + var yys3728Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3728Slc + var yyhl3728 bool = l >= 0 + for yyj3728 := 0; ; yyj3728++ { + if yyhl3728 { + if yyj3728 >= l { break } } else { @@ -47398,10 +47099,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3754Slc = r.DecodeBytes(yys3754Slc, true, true) - yys3754 := string(yys3754Slc) + yys3728Slc = r.DecodeBytes(yys3728Slc, true, true) + yys3728 := string(yys3728Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3754 { + switch yys3728 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47421,9 +47122,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3754) - } // end switch yys3754 - } // end for yyj3754 + z.DecStructFieldNotFound(-1, yys3728) + } // end switch yys3728 + } // end for yyj3728 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47431,16 +47132,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3758 int - var yyb3758 bool - var yyhl3758 bool = l >= 0 - yyj3758++ - if yyhl3758 { - yyb3758 = yyj3758 > l + var yyj3732 int + var yyb3732 bool + var yyhl3732 bool = l >= 0 + yyj3732++ + if yyhl3732 { + yyb3732 = yyj3732 > l } else { - yyb3758 = r.CheckBreak() + yyb3732 = r.CheckBreak() } - if yyb3758 { + if yyb3732 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47450,13 +47151,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3758++ - if yyhl3758 { - yyb3758 = yyj3758 > l + yyj3732++ + if yyhl3732 { + yyb3732 = yyj3732 > l } else { - yyb3758 = r.CheckBreak() + yyb3732 = r.CheckBreak() } - if yyb3758 { + if yyb3732 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47466,13 +47167,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3758++ - if yyhl3758 { - yyb3758 = yyj3758 > l + yyj3732++ + if yyhl3732 { + yyb3732 = yyj3732 > l } else { - yyb3758 = r.CheckBreak() + yyb3732 = r.CheckBreak() } - if yyb3758 { + if yyb3732 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47483,17 +47184,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3758++ - if yyhl3758 { - yyb3758 = yyj3758 > l + yyj3732++ + if yyhl3732 { + yyb3732 = yyj3732 > l } else { - yyb3758 = r.CheckBreak() + yyb3732 = r.CheckBreak() } - if yyb3758 { + if yyb3732 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3758-1, "") + z.DecStructFieldNotFound(yyj3732-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47505,37 +47206,37 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3762 := z.EncBinary() - _ = yym3762 + yym3736 := z.EncBinary() + _ = yym3736 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - 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 != "" - yyq3763[2] = x.Path != "" - var yynn3763 int - if yyr3763 || yy2arr3763 { + yysep3737 := !z.EncBinary() + yy2arr3737 := z.EncBasicHandle().StructToArray + var yyq3737 [3]bool + _, _, _ = yysep3737, yyq3737, yy2arr3737 + const yyr3737 bool = false + yyq3737[0] = x.Kind != "" + yyq3737[1] = x.APIVersion != "" + yyq3737[2] = x.Path != "" + var yynn3737 int + if yyr3737 || yy2arr3737 { r.EncodeArrayStart(3) } else { - yynn3763 = 0 - for _, b := range yyq3763 { + yynn3737 = 0 + for _, b := range yyq3737 { if b { - yynn3763++ + yynn3737++ } } - r.EncodeMapStart(yynn3763) - yynn3763 = 0 + r.EncodeMapStart(yynn3737) + yynn3737 = 0 } - if yyr3763 || yy2arr3763 { + if yyr3737 || yy2arr3737 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3763[0] { - yym3765 := z.EncBinary() - _ = yym3765 + if yyq3737[0] { + yym3739 := z.EncBinary() + _ = yym3739 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47544,23 +47245,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3763[0] { + if yyq3737[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3766 := z.EncBinary() - _ = yym3766 + yym3740 := z.EncBinary() + _ = yym3740 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3763 || yy2arr3763 { + if yyr3737 || yy2arr3737 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3763[1] { - yym3768 := z.EncBinary() - _ = yym3768 + if yyq3737[1] { + yym3742 := z.EncBinary() + _ = yym3742 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47569,23 +47270,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3763[1] { + if yyq3737[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3769 := z.EncBinary() - _ = yym3769 + yym3743 := z.EncBinary() + _ = yym3743 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3763 || yy2arr3763 { + if yyr3737 || yy2arr3737 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3763[2] { - yym3771 := z.EncBinary() - _ = yym3771 + if yyq3737[2] { + yym3745 := z.EncBinary() + _ = yym3745 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -47594,19 +47295,19 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3763[2] { + if yyq3737[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3772 := z.EncBinary() - _ = yym3772 + yym3746 := z.EncBinary() + _ = yym3746 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3763 || yy2arr3763 { + if yyr3737 || yy2arr3737 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47619,25 +47320,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3773 := z.DecBinary() - _ = yym3773 + yym3747 := z.DecBinary() + _ = yym3747 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3774 := r.ContainerType() - if yyct3774 == codecSelferValueTypeMap1234 { - yyl3774 := r.ReadMapStart() - if yyl3774 == 0 { + yyct3748 := r.ContainerType() + if yyct3748 == codecSelferValueTypeMap1234 { + yyl3748 := r.ReadMapStart() + if yyl3748 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3774, d) + x.codecDecodeSelfFromMap(yyl3748, d) } - } else if yyct3774 == codecSelferValueTypeArray1234 { - yyl3774 := r.ReadArrayStart() - if yyl3774 == 0 { + } else if yyct3748 == codecSelferValueTypeArray1234 { + yyl3748 := r.ReadArrayStart() + if yyl3748 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3774, d) + x.codecDecodeSelfFromArray(yyl3748, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47649,12 +47350,12 @@ func (x *ServiceProxyOptions) 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 yys3749Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3749Slc + var yyhl3749 bool = l >= 0 + for yyj3749 := 0; ; yyj3749++ { + if yyhl3749 { + if yyj3749 >= l { break } } else { @@ -47663,10 +47364,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3775Slc = r.DecodeBytes(yys3775Slc, true, true) - yys3775 := string(yys3775Slc) + yys3749Slc = r.DecodeBytes(yys3749Slc, true, true) + yys3749 := string(yys3749Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3775 { + switch yys3749 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47686,9 +47387,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3775) - } // end switch yys3775 - } // end for yyj3775 + z.DecStructFieldNotFound(-1, yys3749) + } // end switch yys3749 + } // end for yyj3749 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47696,16 +47397,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3779 int - var yyb3779 bool - var yyhl3779 bool = l >= 0 - yyj3779++ - if yyhl3779 { - yyb3779 = yyj3779 > l + var yyj3753 int + var yyb3753 bool + var yyhl3753 bool = l >= 0 + yyj3753++ + if yyhl3753 { + yyb3753 = yyj3753 > l } else { - yyb3779 = r.CheckBreak() + yyb3753 = r.CheckBreak() } - if yyb3779 { + if yyb3753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47715,13 +47416,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3779++ - if yyhl3779 { - yyb3779 = yyj3779 > l + yyj3753++ + if yyhl3753 { + yyb3753 = yyj3753 > l } else { - yyb3779 = r.CheckBreak() + yyb3753 = r.CheckBreak() } - if yyb3779 { + if yyb3753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47731,13 +47432,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3779++ - if yyhl3779 { - yyb3779 = yyj3779 > l + yyj3753++ + if yyhl3753 { + yyb3753 = yyj3753 > l } else { - yyb3779 = r.CheckBreak() + yyb3753 = r.CheckBreak() } - if yyb3779 { + if yyb3753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47748,17 +47449,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3779++ - if yyhl3779 { - yyb3779 = yyj3779 > l + yyj3753++ + if yyhl3753 { + yyb3753 = yyj3753 > l } else { - yyb3779 = r.CheckBreak() + yyb3753 = r.CheckBreak() } - if yyb3779 { + if yyb3753 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3779-1, "") + z.DecStructFieldNotFound(yyj3753-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47770,34 +47471,34 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3783 := z.EncBinary() - _ = yym3783 + yym3757 := z.EncBinary() + _ = yym3757 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3784 := !z.EncBinary() - yy2arr3784 := z.EncBasicHandle().StructToArray - var yyq3784 [5]bool - _, _, _ = yysep3784, yyq3784, yy2arr3784 - const yyr3784 bool = false - yyq3784[4] = x.Controller != nil - var yynn3784 int - if yyr3784 || yy2arr3784 { + yysep3758 := !z.EncBinary() + yy2arr3758 := z.EncBasicHandle().StructToArray + var yyq3758 [5]bool + _, _, _ = yysep3758, yyq3758, yy2arr3758 + const yyr3758 bool = false + yyq3758[4] = x.Controller != nil + var yynn3758 int + if yyr3758 || yy2arr3758 { r.EncodeArrayStart(5) } else { - yynn3784 = 4 - for _, b := range yyq3784 { + yynn3758 = 4 + for _, b := range yyq3758 { if b { - yynn3784++ + yynn3758++ } } - r.EncodeMapStart(yynn3784) - yynn3784 = 0 + r.EncodeMapStart(yynn3758) + yynn3758 = 0 } - if yyr3784 || yy2arr3784 { + if yyr3758 || yy2arr3758 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3786 := z.EncBinary() - _ = yym3786 + yym3760 := z.EncBinary() + _ = yym3760 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47806,17 +47507,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3787 := z.EncBinary() - _ = yym3787 + yym3761 := z.EncBinary() + _ = yym3761 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr3784 || yy2arr3784 { + if yyr3758 || yy2arr3758 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3789 := z.EncBinary() - _ = yym3789 + yym3763 := z.EncBinary() + _ = yym3763 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47825,17 +47526,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3790 := z.EncBinary() - _ = yym3790 + yym3764 := z.EncBinary() + _ = yym3764 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } - if yyr3784 || yy2arr3784 { + if yyr3758 || yy2arr3758 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3792 := z.EncBinary() - _ = yym3792 + yym3766 := z.EncBinary() + _ = yym3766 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -47844,17 +47545,17 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3793 := z.EncBinary() - _ = yym3793 + yym3767 := z.EncBinary() + _ = yym3767 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr3784 || yy2arr3784 { + if yyr3758 || yy2arr3758 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3795 := z.EncBinary() - _ = yym3795 + yym3769 := z.EncBinary() + _ = yym3769 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -47864,50 +47565,50 @@ func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3796 := z.EncBinary() - _ = yym3796 + yym3770 := z.EncBinary() + _ = yym3770 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.UID)) } } - if yyr3784 || yy2arr3784 { + if yyr3758 || yy2arr3758 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3784[4] { + if yyq3758[4] { if x.Controller == nil { r.EncodeNil() } else { - yy3798 := *x.Controller - yym3799 := z.EncBinary() - _ = yym3799 + yy3772 := *x.Controller + yym3773 := z.EncBinary() + _ = yym3773 if false { } else { - r.EncodeBool(bool(yy3798)) + r.EncodeBool(bool(yy3772)) } } } else { r.EncodeNil() } } else { - if yyq3784[4] { + if yyq3758[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("controller")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Controller == nil { r.EncodeNil() } else { - yy3800 := *x.Controller - yym3801 := z.EncBinary() - _ = yym3801 + yy3774 := *x.Controller + yym3775 := z.EncBinary() + _ = yym3775 if false { } else { - r.EncodeBool(bool(yy3800)) + r.EncodeBool(bool(yy3774)) } } } } - if yyr3784 || yy2arr3784 { + if yyr3758 || yy2arr3758 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47920,25 +47621,25 @@ func (x *OwnerReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3802 := z.DecBinary() - _ = yym3802 + yym3776 := z.DecBinary() + _ = yym3776 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3803 := r.ContainerType() - if yyct3803 == codecSelferValueTypeMap1234 { - yyl3803 := r.ReadMapStart() - if yyl3803 == 0 { + yyct3777 := r.ContainerType() + if yyct3777 == codecSelferValueTypeMap1234 { + yyl3777 := r.ReadMapStart() + if yyl3777 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3803, d) + x.codecDecodeSelfFromMap(yyl3777, d) } - } else if yyct3803 == codecSelferValueTypeArray1234 { - yyl3803 := r.ReadArrayStart() - if yyl3803 == 0 { + } else if yyct3777 == codecSelferValueTypeArray1234 { + yyl3777 := r.ReadArrayStart() + if yyl3777 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3803, d) + x.codecDecodeSelfFromArray(yyl3777, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47950,12 +47651,12 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3804Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3804Slc - var yyhl3804 bool = l >= 0 - for yyj3804 := 0; ; yyj3804++ { - if yyhl3804 { - if yyj3804 >= l { + var yys3778Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3778Slc + var yyhl3778 bool = l >= 0 + for yyj3778 := 0; ; yyj3778++ { + if yyhl3778 { + if yyj3778 >= l { break } } else { @@ -47964,10 +47665,10 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3804Slc = r.DecodeBytes(yys3804Slc, true, true) - yys3804 := string(yys3804Slc) + yys3778Slc = r.DecodeBytes(yys3778Slc, true, true) + yys3778 := string(yys3778Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3804 { + switch yys3778 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -48001,17 +47702,17 @@ func (x *OwnerReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3810 := z.DecBinary() - _ = yym3810 + yym3784 := z.DecBinary() + _ = yym3784 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3804) - } // end switch yys3804 - } // end for yyj3804 + z.DecStructFieldNotFound(-1, yys3778) + } // end switch yys3778 + } // end for yyj3778 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48019,16 +47720,16 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3811 int - var yyb3811 bool - var yyhl3811 bool = l >= 0 - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + var yyj3785 int + var yyb3785 bool + var yyhl3785 bool = l >= 0 + yyj3785++ + if yyhl3785 { + yyb3785 = yyj3785 > l } else { - yyb3811 = r.CheckBreak() + yyb3785 = r.CheckBreak() } - if yyb3811 { + if yyb3785 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48038,13 +47739,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3785++ + if yyhl3785 { + yyb3785 = yyj3785 > l } else { - yyb3811 = r.CheckBreak() + yyb3785 = r.CheckBreak() } - if yyb3811 { + if yyb3785 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48054,13 +47755,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3785++ + if yyhl3785 { + yyb3785 = yyj3785 > l } else { - yyb3811 = r.CheckBreak() + yyb3785 = r.CheckBreak() } - if yyb3811 { + if yyb3785 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48070,13 +47771,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3785++ + if yyhl3785 { + yyb3785 = yyj3785 > l } else { - yyb3811 = r.CheckBreak() + yyb3785 = r.CheckBreak() } - if yyb3811 { + if yyb3785 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48086,13 +47787,13 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3785++ + if yyhl3785 { + yyb3785 = yyj3785 > l } else { - yyb3811 = r.CheckBreak() + yyb3785 = r.CheckBreak() } - if yyb3811 { + if yyb3785 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48105,25 +47806,25 @@ func (x *OwnerReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Controller == nil { x.Controller = new(bool) } - yym3817 := z.DecBinary() - _ = yym3817 + yym3791 := z.DecBinary() + _ = yym3791 if false { } else { *((*bool)(x.Controller)) = r.DecodeBool() } } for { - yyj3811++ - if yyhl3811 { - yyb3811 = yyj3811 > l + yyj3785++ + if yyhl3785 { + yyb3785 = yyj3785 > l } else { - yyb3811 = r.CheckBreak() + yyb3785 = r.CheckBreak() } - if yyb3811 { + if yyb3785 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3811-1, "") + z.DecStructFieldNotFound(yyj3785-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48135,41 +47836,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3818 := z.EncBinary() - _ = yym3818 + yym3792 := z.EncBinary() + _ = yym3792 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3819 := !z.EncBinary() - yy2arr3819 := z.EncBasicHandle().StructToArray - var yyq3819 [7]bool - _, _, _ = yysep3819, yyq3819, yy2arr3819 - const yyr3819 bool = false - yyq3819[0] = x.Kind != "" - yyq3819[1] = x.Namespace != "" - yyq3819[2] = x.Name != "" - yyq3819[3] = x.UID != "" - yyq3819[4] = x.APIVersion != "" - yyq3819[5] = x.ResourceVersion != "" - yyq3819[6] = x.FieldPath != "" - var yynn3819 int - if yyr3819 || yy2arr3819 { + yysep3793 := !z.EncBinary() + yy2arr3793 := z.EncBasicHandle().StructToArray + var yyq3793 [7]bool + _, _, _ = yysep3793, yyq3793, yy2arr3793 + const yyr3793 bool = false + yyq3793[0] = x.Kind != "" + yyq3793[1] = x.Namespace != "" + yyq3793[2] = x.Name != "" + yyq3793[3] = x.UID != "" + yyq3793[4] = x.APIVersion != "" + yyq3793[5] = x.ResourceVersion != "" + yyq3793[6] = x.FieldPath != "" + var yynn3793 int + if yyr3793 || yy2arr3793 { r.EncodeArrayStart(7) } else { - yynn3819 = 0 - for _, b := range yyq3819 { + yynn3793 = 0 + for _, b := range yyq3793 { if b { - yynn3819++ + yynn3793++ } } - r.EncodeMapStart(yynn3819) - yynn3819 = 0 + r.EncodeMapStart(yynn3793) + yynn3793 = 0 } - if yyr3819 || yy2arr3819 { + if yyr3793 || yy2arr3793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3819[0] { - yym3821 := z.EncBinary() - _ = yym3821 + if yyq3793[0] { + yym3795 := z.EncBinary() + _ = yym3795 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48178,23 +47879,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3819[0] { + if yyq3793[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3822 := z.EncBinary() - _ = yym3822 + yym3796 := z.EncBinary() + _ = yym3796 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3819 || yy2arr3819 { + if yyr3793 || yy2arr3793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3819[1] { - yym3824 := z.EncBinary() - _ = yym3824 + if yyq3793[1] { + yym3798 := z.EncBinary() + _ = yym3798 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -48203,23 +47904,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3819[1] { + if yyq3793[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3825 := z.EncBinary() - _ = yym3825 + yym3799 := z.EncBinary() + _ = yym3799 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3819 || yy2arr3819 { + if yyr3793 || yy2arr3793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3819[2] { - yym3827 := z.EncBinary() - _ = yym3827 + if yyq3793[2] { + yym3801 := z.EncBinary() + _ = yym3801 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -48228,23 +47929,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3819[2] { + if yyq3793[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3828 := z.EncBinary() - _ = yym3828 + yym3802 := z.EncBinary() + _ = yym3802 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3819 || yy2arr3819 { + if yyr3793 || yy2arr3793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3819[3] { - yym3830 := z.EncBinary() - _ = yym3830 + if yyq3793[3] { + yym3804 := z.EncBinary() + _ = yym3804 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -48254,12 +47955,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3819[3] { + if yyq3793[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3831 := z.EncBinary() - _ = yym3831 + yym3805 := z.EncBinary() + _ = yym3805 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -48267,11 +47968,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3819 || yy2arr3819 { + if yyr3793 || yy2arr3793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3819[4] { - yym3833 := z.EncBinary() - _ = yym3833 + if yyq3793[4] { + yym3807 := z.EncBinary() + _ = yym3807 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48280,23 +47981,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3819[4] { + if yyq3793[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3834 := z.EncBinary() - _ = yym3834 + yym3808 := z.EncBinary() + _ = yym3808 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3819 || yy2arr3819 { + if yyr3793 || yy2arr3793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3819[5] { - yym3836 := z.EncBinary() - _ = yym3836 + if yyq3793[5] { + yym3810 := z.EncBinary() + _ = yym3810 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -48305,23 +48006,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3819[5] { + if yyq3793[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3837 := z.EncBinary() - _ = yym3837 + yym3811 := z.EncBinary() + _ = yym3811 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3819 || yy2arr3819 { + if yyr3793 || yy2arr3793 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3819[6] { - yym3839 := z.EncBinary() - _ = yym3839 + if yyq3793[6] { + yym3813 := z.EncBinary() + _ = yym3813 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -48330,19 +48031,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3819[6] { + if yyq3793[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3840 := z.EncBinary() - _ = yym3840 + yym3814 := z.EncBinary() + _ = yym3814 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3819 || yy2arr3819 { + if yyr3793 || yy2arr3793 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48355,25 +48056,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3841 := z.DecBinary() - _ = yym3841 + yym3815 := z.DecBinary() + _ = yym3815 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3842 := r.ContainerType() - if yyct3842 == codecSelferValueTypeMap1234 { - yyl3842 := r.ReadMapStart() - if yyl3842 == 0 { + yyct3816 := r.ContainerType() + if yyct3816 == codecSelferValueTypeMap1234 { + yyl3816 := r.ReadMapStart() + if yyl3816 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3842, d) + x.codecDecodeSelfFromMap(yyl3816, d) } - } else if yyct3842 == codecSelferValueTypeArray1234 { - yyl3842 := r.ReadArrayStart() - if yyl3842 == 0 { + } else if yyct3816 == codecSelferValueTypeArray1234 { + yyl3816 := r.ReadArrayStart() + if yyl3816 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3842, d) + x.codecDecodeSelfFromArray(yyl3816, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48385,12 +48086,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3843Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3843Slc - var yyhl3843 bool = l >= 0 - for yyj3843 := 0; ; yyj3843++ { - if yyhl3843 { - if yyj3843 >= l { + var 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 { @@ -48399,10 +48100,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3843Slc = r.DecodeBytes(yys3843Slc, true, true) - yys3843 := string(yys3843Slc) + yys3817Slc = r.DecodeBytes(yys3817Slc, true, true) + yys3817 := string(yys3817Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3843 { + switch yys3817 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48446,9 +48147,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3843) - } // end switch yys3843 - } // end for yyj3843 + z.DecStructFieldNotFound(-1, yys3817) + } // end switch yys3817 + } // end for yyj3817 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48456,16 +48157,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3851 int - var yyb3851 bool - var yyhl3851 bool = l >= 0 - yyj3851++ - if yyhl3851 { - yyb3851 = yyj3851 > l + var yyj3825 int + var yyb3825 bool + var yyhl3825 bool = l >= 0 + yyj3825++ + if yyhl3825 { + yyb3825 = yyj3825 > l } else { - yyb3851 = r.CheckBreak() + yyb3825 = r.CheckBreak() } - if yyb3851 { + if yyb3825 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48475,13 +48176,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3851++ - if yyhl3851 { - yyb3851 = yyj3851 > l + yyj3825++ + if yyhl3825 { + yyb3825 = yyj3825 > l } else { - yyb3851 = r.CheckBreak() + yyb3825 = r.CheckBreak() } - if yyb3851 { + if yyb3825 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48491,13 +48192,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3851++ - if yyhl3851 { - yyb3851 = yyj3851 > l + yyj3825++ + if yyhl3825 { + yyb3825 = yyj3825 > l } else { - yyb3851 = r.CheckBreak() + yyb3825 = r.CheckBreak() } - if yyb3851 { + if yyb3825 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48507,13 +48208,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3851++ - if yyhl3851 { - yyb3851 = yyj3851 > l + yyj3825++ + if yyhl3825 { + yyb3825 = yyj3825 > l } else { - yyb3851 = r.CheckBreak() + yyb3825 = r.CheckBreak() } - if yyb3851 { + if yyb3825 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48523,13 +48224,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3851++ - if yyhl3851 { - yyb3851 = yyj3851 > l + yyj3825++ + if yyhl3825 { + yyb3825 = yyj3825 > l } else { - yyb3851 = r.CheckBreak() + yyb3825 = r.CheckBreak() } - if yyb3851 { + if yyb3825 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48539,13 +48240,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3851++ - if yyhl3851 { - yyb3851 = yyj3851 > l + yyj3825++ + if yyhl3825 { + yyb3825 = yyj3825 > l } else { - yyb3851 = r.CheckBreak() + yyb3825 = r.CheckBreak() } - if yyb3851 { + if yyb3825 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48555,13 +48256,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3851++ - if yyhl3851 { - yyb3851 = yyj3851 > l + yyj3825++ + if yyhl3825 { + yyb3825 = yyj3825 > l } else { - yyb3851 = r.CheckBreak() + yyb3825 = r.CheckBreak() } - if yyb3851 { + if yyb3825 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48572,17 +48273,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3851++ - if yyhl3851 { - yyb3851 = yyj3851 > l + yyj3825++ + if yyhl3825 { + yyb3825 = yyj3825 > l } else { - yyb3851 = r.CheckBreak() + yyb3825 = r.CheckBreak() } - if yyb3851 { + if yyb3825 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3851-1, "") + z.DecStructFieldNotFound(yyj3825-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48594,35 +48295,35 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3859 := z.EncBinary() - _ = yym3859 + yym3833 := z.EncBinary() + _ = yym3833 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3860 := !z.EncBinary() - yy2arr3860 := z.EncBasicHandle().StructToArray - var yyq3860 [1]bool - _, _, _ = yysep3860, yyq3860, yy2arr3860 - const yyr3860 bool = false - yyq3860[0] = x.Name != "" - var yynn3860 int - if yyr3860 || yy2arr3860 { + yysep3834 := !z.EncBinary() + yy2arr3834 := z.EncBasicHandle().StructToArray + var yyq3834 [1]bool + _, _, _ = yysep3834, yyq3834, yy2arr3834 + const yyr3834 bool = false + yyq3834[0] = x.Name != "" + var yynn3834 int + if yyr3834 || yy2arr3834 { r.EncodeArrayStart(1) } else { - yynn3860 = 0 - for _, b := range yyq3860 { + yynn3834 = 0 + for _, b := range yyq3834 { if b { - yynn3860++ + yynn3834++ } } - r.EncodeMapStart(yynn3860) - yynn3860 = 0 + r.EncodeMapStart(yynn3834) + yynn3834 = 0 } - if yyr3860 || yy2arr3860 { + if yyr3834 || yy2arr3834 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3860[0] { - yym3862 := z.EncBinary() - _ = yym3862 + if yyq3834[0] { + yym3836 := z.EncBinary() + _ = yym3836 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -48631,19 +48332,19 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3860[0] { + if yyq3834[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3863 := z.EncBinary() - _ = yym3863 + yym3837 := z.EncBinary() + _ = yym3837 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3860 || yy2arr3860 { + if yyr3834 || yy2arr3834 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48656,25 +48357,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3864 := z.DecBinary() - _ = yym3864 + yym3838 := z.DecBinary() + _ = yym3838 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3865 := r.ContainerType() - if yyct3865 == codecSelferValueTypeMap1234 { - yyl3865 := r.ReadMapStart() - if yyl3865 == 0 { + yyct3839 := r.ContainerType() + if yyct3839 == codecSelferValueTypeMap1234 { + yyl3839 := r.ReadMapStart() + if yyl3839 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3865, d) + x.codecDecodeSelfFromMap(yyl3839, d) } - } else if yyct3865 == codecSelferValueTypeArray1234 { - yyl3865 := r.ReadArrayStart() - if yyl3865 == 0 { + } else if yyct3839 == codecSelferValueTypeArray1234 { + yyl3839 := r.ReadArrayStart() + if yyl3839 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3865, d) + x.codecDecodeSelfFromArray(yyl3839, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48686,12 +48387,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3866Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3866Slc - var yyhl3866 bool = l >= 0 - for yyj3866 := 0; ; yyj3866++ { - if yyhl3866 { - if yyj3866 >= l { + var yys3840Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3840Slc + var yyhl3840 bool = l >= 0 + for yyj3840 := 0; ; yyj3840++ { + if yyhl3840 { + if yyj3840 >= l { break } } else { @@ -48700,10 +48401,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3866Slc = r.DecodeBytes(yys3866Slc, true, true) - yys3866 := string(yys3866Slc) + yys3840Slc = r.DecodeBytes(yys3840Slc, true, true) + yys3840 := string(yys3840Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3866 { + switch yys3840 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -48711,9 +48412,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3866) - } // end switch yys3866 - } // end for yyj3866 + z.DecStructFieldNotFound(-1, yys3840) + } // end switch yys3840 + } // end for yyj3840 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48721,16 +48422,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3868 int - var yyb3868 bool - var yyhl3868 bool = l >= 0 - yyj3868++ - if yyhl3868 { - yyb3868 = yyj3868 > l + var yyj3842 int + var yyb3842 bool + var yyhl3842 bool = l >= 0 + yyj3842++ + if yyhl3842 { + yyb3842 = yyj3842 > l } else { - yyb3868 = r.CheckBreak() + yyb3842 = r.CheckBreak() } - if yyb3868 { + if yyb3842 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48741,17 +48442,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj3868++ - if yyhl3868 { - yyb3868 = yyj3868 > l + yyj3842++ + if yyhl3842 { + yyb3842 = yyj3842 > l } else { - yyb3868 = r.CheckBreak() + yyb3842 = r.CheckBreak() } - if yyb3868 { + if yyb3842 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3868-1, "") + z.DecStructFieldNotFound(yyj3842-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48763,37 +48464,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3870 := z.EncBinary() - _ = yym3870 + yym3844 := z.EncBinary() + _ = yym3844 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3871 := !z.EncBinary() - yy2arr3871 := z.EncBasicHandle().StructToArray - var yyq3871 [3]bool - _, _, _ = yysep3871, yyq3871, yy2arr3871 - const yyr3871 bool = false - yyq3871[0] = x.Kind != "" - yyq3871[1] = x.APIVersion != "" - yyq3871[2] = true - var yynn3871 int - if yyr3871 || yy2arr3871 { + yysep3845 := !z.EncBinary() + yy2arr3845 := z.EncBasicHandle().StructToArray + var yyq3845 [3]bool + _, _, _ = yysep3845, yyq3845, yy2arr3845 + const yyr3845 bool = false + yyq3845[0] = x.Kind != "" + yyq3845[1] = x.APIVersion != "" + yyq3845[2] = true + var yynn3845 int + if yyr3845 || yy2arr3845 { r.EncodeArrayStart(3) } else { - yynn3871 = 0 - for _, b := range yyq3871 { + yynn3845 = 0 + for _, b := range yyq3845 { if b { - yynn3871++ + yynn3845++ } } - r.EncodeMapStart(yynn3871) - yynn3871 = 0 + r.EncodeMapStart(yynn3845) + yynn3845 = 0 } - if yyr3871 || yy2arr3871 { + if yyr3845 || yy2arr3845 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3871[0] { - yym3873 := z.EncBinary() - _ = yym3873 + if yyq3845[0] { + yym3847 := z.EncBinary() + _ = yym3847 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48802,23 +48503,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3871[0] { + if yyq3845[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3874 := z.EncBinary() - _ = yym3874 + yym3848 := z.EncBinary() + _ = yym3848 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3871 || yy2arr3871 { + if yyr3845 || yy2arr3845 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3871[1] { - yym3876 := z.EncBinary() - _ = yym3876 + if yyq3845[1] { + yym3850 := z.EncBinary() + _ = yym3850 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48827,36 +48528,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3871[1] { + if yyq3845[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3877 := z.EncBinary() - _ = yym3877 + yym3851 := z.EncBinary() + _ = yym3851 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3871 || yy2arr3871 { + if yyr3845 || yy2arr3845 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3871[2] { - yy3879 := &x.Reference - yy3879.CodecEncodeSelf(e) + if yyq3845[2] { + yy3853 := &x.Reference + yy3853.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3871[2] { + if yyq3845[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3880 := &x.Reference - yy3880.CodecEncodeSelf(e) + yy3854 := &x.Reference + yy3854.CodecEncodeSelf(e) } } - if yyr3871 || yy2arr3871 { + if yyr3845 || yy2arr3845 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48869,25 +48570,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3881 := z.DecBinary() - _ = yym3881 + yym3855 := z.DecBinary() + _ = yym3855 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3882 := r.ContainerType() - if yyct3882 == codecSelferValueTypeMap1234 { - yyl3882 := r.ReadMapStart() - if yyl3882 == 0 { + yyct3856 := r.ContainerType() + if yyct3856 == codecSelferValueTypeMap1234 { + yyl3856 := r.ReadMapStart() + if yyl3856 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3882, d) + x.codecDecodeSelfFromMap(yyl3856, d) } - } else if yyct3882 == codecSelferValueTypeArray1234 { - yyl3882 := r.ReadArrayStart() - if yyl3882 == 0 { + } else if yyct3856 == codecSelferValueTypeArray1234 { + yyl3856 := r.ReadArrayStart() + if yyl3856 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3882, d) + x.codecDecodeSelfFromArray(yyl3856, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48899,12 +48600,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3883Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3883Slc - var yyhl3883 bool = l >= 0 - for yyj3883 := 0; ; yyj3883++ { - if yyhl3883 { - if yyj3883 >= l { + var yys3857Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3857Slc + var yyhl3857 bool = l >= 0 + for yyj3857 := 0; ; yyj3857++ { + if yyhl3857 { + if yyj3857 >= l { break } } else { @@ -48913,10 +48614,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3883Slc = r.DecodeBytes(yys3883Slc, true, true) - yys3883 := string(yys3883Slc) + yys3857Slc = r.DecodeBytes(yys3857Slc, true, true) + yys3857 := string(yys3857Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3883 { + switch yys3857 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48933,13 +48634,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3886 := &x.Reference - yyv3886.CodecDecodeSelf(d) + yyv3860 := &x.Reference + yyv3860.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3883) - } // end switch yys3883 - } // end for yyj3883 + z.DecStructFieldNotFound(-1, yys3857) + } // end switch yys3857 + } // end for yyj3857 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48947,16 +48648,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3887 int - var yyb3887 bool - var yyhl3887 bool = l >= 0 - yyj3887++ - if yyhl3887 { - yyb3887 = yyj3887 > l + var yyj3861 int + var yyb3861 bool + var yyhl3861 bool = l >= 0 + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3887 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3887 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48966,13 +48667,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3887++ - if yyhl3887 { - yyb3887 = yyj3887 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3887 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3887 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48982,13 +48683,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3887++ - if yyhl3887 { - yyb3887 = yyj3887 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3887 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3887 { + if yyb3861 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48996,21 +48697,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3890 := &x.Reference - yyv3890.CodecDecodeSelf(d) + yyv3864 := &x.Reference + yyv3864.CodecDecodeSelf(d) } for { - yyj3887++ - if yyhl3887 { - yyb3887 = yyj3887 > l + yyj3861++ + if yyhl3861 { + yyb3861 = yyj3861 > l } else { - yyb3887 = r.CheckBreak() + yyb3861 = r.CheckBreak() } - if yyb3887 { + if yyb3861 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3887-1, "") + z.DecStructFieldNotFound(yyj3861-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49022,36 +48723,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3891 := z.EncBinary() - _ = yym3891 + yym3865 := z.EncBinary() + _ = yym3865 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3892 := !z.EncBinary() - yy2arr3892 := z.EncBasicHandle().StructToArray - var yyq3892 [2]bool - _, _, _ = yysep3892, yyq3892, yy2arr3892 - const yyr3892 bool = false - yyq3892[0] = x.Component != "" - yyq3892[1] = x.Host != "" - var yynn3892 int - if yyr3892 || yy2arr3892 { + yysep3866 := !z.EncBinary() + yy2arr3866 := z.EncBasicHandle().StructToArray + var yyq3866 [2]bool + _, _, _ = yysep3866, yyq3866, yy2arr3866 + const yyr3866 bool = false + yyq3866[0] = x.Component != "" + yyq3866[1] = x.Host != "" + var yynn3866 int + if yyr3866 || yy2arr3866 { r.EncodeArrayStart(2) } else { - yynn3892 = 0 - for _, b := range yyq3892 { + yynn3866 = 0 + for _, b := range yyq3866 { if b { - yynn3892++ + yynn3866++ } } - r.EncodeMapStart(yynn3892) - yynn3892 = 0 + r.EncodeMapStart(yynn3866) + yynn3866 = 0 } - if yyr3892 || yy2arr3892 { + if yyr3866 || yy2arr3866 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3892[0] { - yym3894 := z.EncBinary() - _ = yym3894 + if yyq3866[0] { + yym3868 := z.EncBinary() + _ = yym3868 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -49060,23 +48761,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3892[0] { + if yyq3866[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3895 := z.EncBinary() - _ = yym3895 + yym3869 := z.EncBinary() + _ = yym3869 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr3892 || yy2arr3892 { + if yyr3866 || yy2arr3866 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3892[1] { - yym3897 := z.EncBinary() - _ = yym3897 + if yyq3866[1] { + yym3871 := z.EncBinary() + _ = yym3871 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -49085,19 +48786,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3892[1] { + if yyq3866[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3898 := z.EncBinary() - _ = yym3898 + yym3872 := z.EncBinary() + _ = yym3872 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3892 || yy2arr3892 { + if yyr3866 || yy2arr3866 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49110,25 +48811,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3899 := z.DecBinary() - _ = yym3899 + yym3873 := z.DecBinary() + _ = yym3873 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3900 := r.ContainerType() - if yyct3900 == codecSelferValueTypeMap1234 { - yyl3900 := r.ReadMapStart() - if yyl3900 == 0 { + yyct3874 := r.ContainerType() + if yyct3874 == codecSelferValueTypeMap1234 { + yyl3874 := r.ReadMapStart() + if yyl3874 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3900, d) + x.codecDecodeSelfFromMap(yyl3874, d) } - } else if yyct3900 == codecSelferValueTypeArray1234 { - yyl3900 := r.ReadArrayStart() - if yyl3900 == 0 { + } else if yyct3874 == codecSelferValueTypeArray1234 { + yyl3874 := r.ReadArrayStart() + if yyl3874 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3900, d) + x.codecDecodeSelfFromArray(yyl3874, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49140,12 +48841,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3901Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3901Slc - var yyhl3901 bool = l >= 0 - for yyj3901 := 0; ; yyj3901++ { - if yyhl3901 { - if yyj3901 >= l { + var yys3875Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3875Slc + var yyhl3875 bool = l >= 0 + for yyj3875 := 0; ; yyj3875++ { + if yyhl3875 { + if yyj3875 >= l { break } } else { @@ -49154,10 +48855,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3901Slc = r.DecodeBytes(yys3901Slc, true, true) - yys3901 := string(yys3901Slc) + yys3875Slc = r.DecodeBytes(yys3875Slc, true, true) + yys3875 := string(yys3875Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3901 { + switch yys3875 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -49171,9 +48872,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3901) - } // end switch yys3901 - } // end for yyj3901 + z.DecStructFieldNotFound(-1, yys3875) + } // end switch yys3875 + } // end for yyj3875 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49181,16 +48882,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3904 int - var yyb3904 bool - var yyhl3904 bool = l >= 0 - yyj3904++ - if yyhl3904 { - yyb3904 = yyj3904 > l + var yyj3878 int + var yyb3878 bool + var yyhl3878 bool = l >= 0 + yyj3878++ + if yyhl3878 { + yyb3878 = yyj3878 > l } else { - yyb3904 = r.CheckBreak() + yyb3878 = r.CheckBreak() } - if yyb3904 { + if yyb3878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49200,13 +48901,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3904++ - if yyhl3904 { - yyb3904 = yyj3904 > l + yyj3878++ + if yyhl3878 { + yyb3878 = yyj3878 > l } else { - yyb3904 = r.CheckBreak() + yyb3878 = r.CheckBreak() } - if yyb3904 { + if yyb3878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49217,17 +48918,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3904++ - if yyhl3904 { - yyb3904 = yyj3904 > l + yyj3878++ + if yyhl3878 { + yyb3878 = yyj3878 > l } else { - yyb3904 = r.CheckBreak() + yyb3878 = r.CheckBreak() } - if yyb3904 { + if yyb3878 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3904-1, "") + z.DecStructFieldNotFound(yyj3878-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49239,43 +48940,43 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3907 := z.EncBinary() - _ = yym3907 + yym3881 := z.EncBinary() + _ = yym3881 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3908 := !z.EncBinary() - yy2arr3908 := z.EncBasicHandle().StructToArray - var yyq3908 [11]bool - _, _, _ = yysep3908, yyq3908, yy2arr3908 - const yyr3908 bool = false - yyq3908[0] = x.Kind != "" - yyq3908[1] = x.APIVersion != "" - yyq3908[4] = x.Reason != "" - yyq3908[5] = x.Message != "" - yyq3908[6] = true - yyq3908[7] = true - yyq3908[8] = true - yyq3908[9] = x.Count != 0 - yyq3908[10] = x.Type != "" - var yynn3908 int - if yyr3908 || yy2arr3908 { + yysep3882 := !z.EncBinary() + yy2arr3882 := z.EncBasicHandle().StructToArray + var yyq3882 [11]bool + _, _, _ = yysep3882, yyq3882, yy2arr3882 + const yyr3882 bool = false + yyq3882[0] = x.Kind != "" + yyq3882[1] = x.APIVersion != "" + yyq3882[4] = x.Reason != "" + yyq3882[5] = x.Message != "" + yyq3882[6] = true + yyq3882[7] = true + yyq3882[8] = true + yyq3882[9] = x.Count != 0 + yyq3882[10] = x.Type != "" + var yynn3882 int + if yyr3882 || yy2arr3882 { r.EncodeArrayStart(11) } else { - yynn3908 = 2 - for _, b := range yyq3908 { + yynn3882 = 2 + for _, b := range yyq3882 { if b { - yynn3908++ + yynn3882++ } } - r.EncodeMapStart(yynn3908) - yynn3908 = 0 + r.EncodeMapStart(yynn3882) + yynn3882 = 0 } - if yyr3908 || yy2arr3908 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3908[0] { - yym3910 := z.EncBinary() - _ = yym3910 + if yyq3882[0] { + yym3884 := z.EncBinary() + _ = yym3884 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49284,23 +48985,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3908[0] { + if yyq3882[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3911 := z.EncBinary() - _ = yym3911 + yym3885 := z.EncBinary() + _ = yym3885 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3908 || yy2arr3908 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3908[1] { - yym3913 := z.EncBinary() - _ = yym3913 + if yyq3882[1] { + yym3887 := z.EncBinary() + _ = yym3887 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49309,45 +49010,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3908[1] { + if yyq3882[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3914 := z.EncBinary() - _ = yym3914 + yym3888 := z.EncBinary() + _ = yym3888 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3908 || yy2arr3908 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3916 := &x.ObjectMeta - yy3916.CodecEncodeSelf(e) + yy3890 := &x.ObjectMeta + yy3890.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3917 := &x.ObjectMeta - yy3917.CodecEncodeSelf(e) + yy3891 := &x.ObjectMeta + yy3891.CodecEncodeSelf(e) } - if yyr3908 || yy2arr3908 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3919 := &x.InvolvedObject - yy3919.CodecEncodeSelf(e) + yy3893 := &x.InvolvedObject + yy3893.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3920 := &x.InvolvedObject - yy3920.CodecEncodeSelf(e) + yy3894 := &x.InvolvedObject + yy3894.CodecEncodeSelf(e) } - if yyr3908 || yy2arr3908 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3908[4] { - yym3922 := z.EncBinary() - _ = yym3922 + if yyq3882[4] { + yym3896 := z.EncBinary() + _ = yym3896 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -49356,23 +49057,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3908[4] { + if yyq3882[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3923 := z.EncBinary() - _ = yym3923 + yym3897 := z.EncBinary() + _ = yym3897 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3908 || yy2arr3908 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3908[5] { - yym3925 := z.EncBinary() - _ = yym3925 + if yyq3882[5] { + yym3899 := z.EncBinary() + _ = yym3899 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -49381,114 +49082,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3908[5] { + if yyq3882[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3926 := z.EncBinary() - _ = yym3926 + yym3900 := z.EncBinary() + _ = yym3900 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3908 || yy2arr3908 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3908[6] { - yy3928 := &x.Source - yy3928.CodecEncodeSelf(e) + if yyq3882[6] { + yy3902 := &x.Source + yy3902.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3908[6] { + if yyq3882[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3929 := &x.Source - yy3929.CodecEncodeSelf(e) + yy3903 := &x.Source + yy3903.CodecEncodeSelf(e) } } - if yyr3908 || yy2arr3908 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3908[7] { - yy3931 := &x.FirstTimestamp - yym3932 := z.EncBinary() - _ = yym3932 + if yyq3882[7] { + yy3905 := &x.FirstTimestamp + yym3906 := z.EncBinary() + _ = yym3906 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(yy3905) { + } else if yym3906 { + z.EncBinaryMarshal(yy3905) + } else if !yym3906 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3905) } else { - z.EncFallback(yy3931) + z.EncFallback(yy3905) } } else { r.EncodeNil() } } else { - if yyq3908[7] { + if yyq3882[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3933 := &x.FirstTimestamp - yym3934 := z.EncBinary() - _ = yym3934 + yy3907 := &x.FirstTimestamp + yym3908 := z.EncBinary() + _ = yym3908 if false { - } else if z.HasExtensions() && z.EncExt(yy3933) { - } else if yym3934 { - z.EncBinaryMarshal(yy3933) - } else if !yym3934 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3933) + } else if z.HasExtensions() && z.EncExt(yy3907) { + } else if yym3908 { + z.EncBinaryMarshal(yy3907) + } else if !yym3908 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3907) } else { - z.EncFallback(yy3933) + z.EncFallback(yy3907) } } } - if yyr3908 || yy2arr3908 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3908[8] { - yy3936 := &x.LastTimestamp - yym3937 := z.EncBinary() - _ = yym3937 + if yyq3882[8] { + yy3910 := &x.LastTimestamp + yym3911 := z.EncBinary() + _ = yym3911 if false { - } else if z.HasExtensions() && z.EncExt(yy3936) { - } else if yym3937 { - z.EncBinaryMarshal(yy3936) - } else if !yym3937 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3936) + } else if z.HasExtensions() && z.EncExt(yy3910) { + } else if yym3911 { + z.EncBinaryMarshal(yy3910) + } else if !yym3911 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3910) } else { - z.EncFallback(yy3936) + z.EncFallback(yy3910) } } else { r.EncodeNil() } } else { - if yyq3908[8] { + if yyq3882[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3938 := &x.LastTimestamp - yym3939 := z.EncBinary() - _ = yym3939 + yy3912 := &x.LastTimestamp + yym3913 := z.EncBinary() + _ = yym3913 if false { - } else if z.HasExtensions() && z.EncExt(yy3938) { - } else if yym3939 { - z.EncBinaryMarshal(yy3938) - } else if !yym3939 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3938) + } else if z.HasExtensions() && z.EncExt(yy3912) { + } else if yym3913 { + z.EncBinaryMarshal(yy3912) + } else if !yym3913 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3912) } else { - z.EncFallback(yy3938) + z.EncFallback(yy3912) } } } - if yyr3908 || yy2arr3908 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3908[9] { - yym3941 := z.EncBinary() - _ = yym3941 + if yyq3882[9] { + yym3915 := z.EncBinary() + _ = yym3915 if false { } else { r.EncodeInt(int64(x.Count)) @@ -49497,23 +49198,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3908[9] { + if yyq3882[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3942 := z.EncBinary() - _ = yym3942 + yym3916 := z.EncBinary() + _ = yym3916 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3908 || yy2arr3908 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3908[10] { - yym3944 := z.EncBinary() - _ = yym3944 + if yyq3882[10] { + yym3918 := z.EncBinary() + _ = yym3918 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -49522,19 +49223,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3908[10] { + if yyq3882[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3945 := z.EncBinary() - _ = yym3945 + yym3919 := z.EncBinary() + _ = yym3919 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3908 || yy2arr3908 { + if yyr3882 || yy2arr3882 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49547,25 +49248,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3946 := z.DecBinary() - _ = yym3946 + yym3920 := z.DecBinary() + _ = yym3920 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3947 := r.ContainerType() - if yyct3947 == codecSelferValueTypeMap1234 { - yyl3947 := r.ReadMapStart() - if yyl3947 == 0 { + yyct3921 := r.ContainerType() + if yyct3921 == codecSelferValueTypeMap1234 { + yyl3921 := r.ReadMapStart() + if yyl3921 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3947, d) + x.codecDecodeSelfFromMap(yyl3921, d) } - } else if yyct3947 == codecSelferValueTypeArray1234 { - yyl3947 := r.ReadArrayStart() - if yyl3947 == 0 { + } else if yyct3921 == codecSelferValueTypeArray1234 { + yyl3921 := r.ReadArrayStart() + if yyl3921 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3947, d) + x.codecDecodeSelfFromArray(yyl3921, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49577,12 +49278,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3948Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3948Slc - var yyhl3948 bool = l >= 0 - for yyj3948 := 0; ; yyj3948++ { - if yyhl3948 { - if yyj3948 >= l { + var yys3922Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3922Slc + var yyhl3922 bool = l >= 0 + for yyj3922 := 0; ; yyj3922++ { + if yyhl3922 { + if yyj3922 >= l { break } } else { @@ -49591,10 +49292,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3948Slc = r.DecodeBytes(yys3948Slc, true, true) - yys3948 := string(yys3948Slc) + yys3922Slc = r.DecodeBytes(yys3922Slc, true, true) + yys3922 := string(yys3922Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3948 { + switch yys3922 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49611,15 +49312,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3951 := &x.ObjectMeta - yyv3951.CodecDecodeSelf(d) + yyv3925 := &x.ObjectMeta + yyv3925.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3952 := &x.InvolvedObject - yyv3952.CodecDecodeSelf(d) + yyv3926 := &x.InvolvedObject + yyv3926.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -49637,41 +49338,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3955 := &x.Source - yyv3955.CodecDecodeSelf(d) + yyv3929 := &x.Source + yyv3929.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3956 := &x.FirstTimestamp - yym3957 := z.DecBinary() - _ = yym3957 + yyv3930 := &x.FirstTimestamp + yym3931 := z.DecBinary() + _ = yym3931 if false { - } else if z.HasExtensions() && z.DecExt(yyv3956) { - } else if yym3957 { - z.DecBinaryUnmarshal(yyv3956) - } else if !yym3957 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3956) + } else if z.HasExtensions() && z.DecExt(yyv3930) { + } else if yym3931 { + z.DecBinaryUnmarshal(yyv3930) + } else if !yym3931 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3930) } else { - z.DecFallback(yyv3956, false) + z.DecFallback(yyv3930, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3958 := &x.LastTimestamp - yym3959 := z.DecBinary() - _ = yym3959 + yyv3932 := &x.LastTimestamp + yym3933 := z.DecBinary() + _ = yym3933 if false { - } else if z.HasExtensions() && z.DecExt(yyv3958) { - } else if yym3959 { - z.DecBinaryUnmarshal(yyv3958) - } else if !yym3959 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3958) + } else if z.HasExtensions() && z.DecExt(yyv3932) { + } else if yym3933 { + z.DecBinaryUnmarshal(yyv3932) + } else if !yym3933 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3932) } else { - z.DecFallback(yyv3958, false) + z.DecFallback(yyv3932, false) } } case "count": @@ -49687,9 +49388,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3948) - } // end switch yys3948 - } // end for yyj3948 + z.DecStructFieldNotFound(-1, yys3922) + } // end switch yys3922 + } // end for yyj3922 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49697,16 +49398,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3962 int - var yyb3962 bool - var yyhl3962 bool = l >= 0 - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + var yyj3936 int + var yyb3936 bool + var yyhl3936 bool = l >= 0 + yyj3936++ + if yyhl3936 { + yyb3936 = yyj3936 > l } else { - yyb3962 = r.CheckBreak() + yyb3936 = r.CheckBreak() } - if yyb3962 { + if yyb3936 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49716,13 +49417,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3936++ + if yyhl3936 { + yyb3936 = yyj3936 > l } else { - yyb3962 = r.CheckBreak() + yyb3936 = r.CheckBreak() } - if yyb3962 { + if yyb3936 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49732,13 +49433,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3936++ + if yyhl3936 { + yyb3936 = yyj3936 > l } else { - yyb3962 = r.CheckBreak() + yyb3936 = r.CheckBreak() } - if yyb3962 { + if yyb3936 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49746,16 +49447,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3965 := &x.ObjectMeta - yyv3965.CodecDecodeSelf(d) + yyv3939 := &x.ObjectMeta + yyv3939.CodecDecodeSelf(d) } - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3936++ + if yyhl3936 { + yyb3936 = yyj3936 > l } else { - yyb3962 = r.CheckBreak() + yyb3936 = r.CheckBreak() } - if yyb3962 { + if yyb3936 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49763,16 +49464,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3966 := &x.InvolvedObject - yyv3966.CodecDecodeSelf(d) + yyv3940 := &x.InvolvedObject + yyv3940.CodecDecodeSelf(d) } - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3936++ + if yyhl3936 { + yyb3936 = yyj3936 > l } else { - yyb3962 = r.CheckBreak() + yyb3936 = r.CheckBreak() } - if yyb3962 { + if yyb3936 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49782,13 +49483,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3936++ + if yyhl3936 { + yyb3936 = yyj3936 > l } else { - yyb3962 = r.CheckBreak() + yyb3936 = r.CheckBreak() } - if yyb3962 { + if yyb3936 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49798,13 +49499,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3936++ + if yyhl3936 { + yyb3936 = yyj3936 > l } else { - yyb3962 = r.CheckBreak() + yyb3936 = r.CheckBreak() } - if yyb3962 { + if yyb3936 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49812,16 +49513,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3969 := &x.Source - yyv3969.CodecDecodeSelf(d) + yyv3943 := &x.Source + yyv3943.CodecDecodeSelf(d) } - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3936++ + if yyhl3936 { + yyb3936 = yyj3936 > l } else { - yyb3962 = r.CheckBreak() + yyb3936 = r.CheckBreak() } - if yyb3962 { + if yyb3936 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49829,26 +49530,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3970 := &x.FirstTimestamp - yym3971 := z.DecBinary() - _ = yym3971 + yyv3944 := &x.FirstTimestamp + yym3945 := z.DecBinary() + _ = yym3945 if false { - } else if z.HasExtensions() && z.DecExt(yyv3970) { - } else if yym3971 { - z.DecBinaryUnmarshal(yyv3970) - } else if !yym3971 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3970) + } else if z.HasExtensions() && z.DecExt(yyv3944) { + } else if yym3945 { + z.DecBinaryUnmarshal(yyv3944) + } else if !yym3945 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3944) } else { - z.DecFallback(yyv3970, false) + z.DecFallback(yyv3944, false) } } - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3936++ + if yyhl3936 { + yyb3936 = yyj3936 > l } else { - yyb3962 = r.CheckBreak() + yyb3936 = r.CheckBreak() } - if yyb3962 { + if yyb3936 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49856,26 +49557,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3972 := &x.LastTimestamp - yym3973 := z.DecBinary() - _ = yym3973 + yyv3946 := &x.LastTimestamp + yym3947 := z.DecBinary() + _ = yym3947 if false { - } else if z.HasExtensions() && z.DecExt(yyv3972) { - } else if yym3973 { - z.DecBinaryUnmarshal(yyv3972) - } else if !yym3973 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3972) + } else if z.HasExtensions() && z.DecExt(yyv3946) { + } else if yym3947 { + z.DecBinaryUnmarshal(yyv3946) + } else if !yym3947 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3946) } else { - z.DecFallback(yyv3972, false) + z.DecFallback(yyv3946, false) } } - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3936++ + if yyhl3936 { + yyb3936 = yyj3936 > l } else { - yyb3962 = r.CheckBreak() + yyb3936 = r.CheckBreak() } - if yyb3962 { + if yyb3936 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49885,13 +49586,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3936++ + if yyhl3936 { + yyb3936 = yyj3936 > l } else { - yyb3962 = r.CheckBreak() + yyb3936 = r.CheckBreak() } - if yyb3962 { + if yyb3936 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49902,17 +49603,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3962++ - if yyhl3962 { - yyb3962 = yyj3962 > l + yyj3936++ + if yyhl3936 { + yyb3936 = yyj3936 > l } else { - yyb3962 = r.CheckBreak() + yyb3936 = r.CheckBreak() } - if yyb3962 { + if yyb3936 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3962-1, "") + z.DecStructFieldNotFound(yyj3936-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49924,37 +49625,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3976 := z.EncBinary() - _ = yym3976 + yym3950 := z.EncBinary() + _ = yym3950 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3977 := !z.EncBinary() - yy2arr3977 := z.EncBasicHandle().StructToArray - var yyq3977 [4]bool - _, _, _ = yysep3977, yyq3977, yy2arr3977 - const yyr3977 bool = false - yyq3977[0] = x.Kind != "" - yyq3977[1] = x.APIVersion != "" - yyq3977[2] = true - var yynn3977 int - if yyr3977 || yy2arr3977 { + yysep3951 := !z.EncBinary() + yy2arr3951 := z.EncBasicHandle().StructToArray + var yyq3951 [4]bool + _, _, _ = yysep3951, yyq3951, yy2arr3951 + const yyr3951 bool = false + yyq3951[0] = x.Kind != "" + yyq3951[1] = x.APIVersion != "" + yyq3951[2] = true + var yynn3951 int + if yyr3951 || yy2arr3951 { r.EncodeArrayStart(4) } else { - yynn3977 = 1 - for _, b := range yyq3977 { + yynn3951 = 1 + for _, b := range yyq3951 { if b { - yynn3977++ + yynn3951++ } } - r.EncodeMapStart(yynn3977) - yynn3977 = 0 + r.EncodeMapStart(yynn3951) + yynn3951 = 0 } - if yyr3977 || yy2arr3977 { + if yyr3951 || yy2arr3951 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3977[0] { - yym3979 := z.EncBinary() - _ = yym3979 + if yyq3951[0] { + yym3953 := z.EncBinary() + _ = yym3953 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -49963,23 +49664,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3977[0] { + if yyq3951[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3980 := z.EncBinary() - _ = yym3980 + yym3954 := z.EncBinary() + _ = yym3954 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3977 || yy2arr3977 { + if yyr3951 || yy2arr3951 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3977[1] { - yym3982 := z.EncBinary() - _ = yym3982 + if yyq3951[1] { + yym3956 := z.EncBinary() + _ = yym3956 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -49988,54 +49689,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3977[1] { + if yyq3951[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3983 := z.EncBinary() - _ = yym3983 + yym3957 := z.EncBinary() + _ = yym3957 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3977 || yy2arr3977 { + if yyr3951 || yy2arr3951 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3977[2] { - yy3985 := &x.ListMeta - yym3986 := z.EncBinary() - _ = yym3986 + if yyq3951[2] { + yy3959 := &x.ListMeta + yym3960 := z.EncBinary() + _ = yym3960 if false { - } else if z.HasExtensions() && z.EncExt(yy3985) { + } else if z.HasExtensions() && z.EncExt(yy3959) { } else { - z.EncFallback(yy3985) + z.EncFallback(yy3959) } } else { r.EncodeNil() } } else { - if yyq3977[2] { + if yyq3951[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3987 := &x.ListMeta - yym3988 := z.EncBinary() - _ = yym3988 + yy3961 := &x.ListMeta + yym3962 := z.EncBinary() + _ = yym3962 if false { - } else if z.HasExtensions() && z.EncExt(yy3987) { + } else if z.HasExtensions() && z.EncExt(yy3961) { } else { - z.EncFallback(yy3987) + z.EncFallback(yy3961) } } } - if yyr3977 || yy2arr3977 { + if yyr3951 || yy2arr3951 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3990 := z.EncBinary() - _ = yym3990 + yym3964 := z.EncBinary() + _ = yym3964 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -50048,15 +49749,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3991 := z.EncBinary() - _ = yym3991 + yym3965 := z.EncBinary() + _ = yym3965 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3977 || yy2arr3977 { + if yyr3951 || yy2arr3951 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50069,25 +49770,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3992 := z.DecBinary() - _ = yym3992 + yym3966 := z.DecBinary() + _ = yym3966 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3993 := r.ContainerType() - if yyct3993 == codecSelferValueTypeMap1234 { - yyl3993 := r.ReadMapStart() - if yyl3993 == 0 { + yyct3967 := r.ContainerType() + if yyct3967 == codecSelferValueTypeMap1234 { + yyl3967 := r.ReadMapStart() + if yyl3967 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3993, d) + x.codecDecodeSelfFromMap(yyl3967, d) } - } else if yyct3993 == codecSelferValueTypeArray1234 { - yyl3993 := r.ReadArrayStart() - if yyl3993 == 0 { + } else if yyct3967 == codecSelferValueTypeArray1234 { + yyl3967 := r.ReadArrayStart() + if yyl3967 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3993, d) + x.codecDecodeSelfFromArray(yyl3967, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50099,12 +49800,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3994Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3994Slc - var yyhl3994 bool = l >= 0 - for yyj3994 := 0; ; yyj3994++ { - if yyhl3994 { - if yyj3994 >= l { + var yys3968Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3968Slc + var yyhl3968 bool = l >= 0 + for yyj3968 := 0; ; yyj3968++ { + if yyhl3968 { + if yyj3968 >= l { break } } else { @@ -50113,10 +49814,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3994Slc = r.DecodeBytes(yys3994Slc, true, true) - yys3994 := string(yys3994Slc) + yys3968Slc = r.DecodeBytes(yys3968Slc, true, true) + yys3968 := string(yys3968Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3994 { + switch yys3968 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50133,31 +49834,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3997 := &x.ListMeta - yym3998 := z.DecBinary() - _ = yym3998 + yyv3971 := &x.ListMeta + yym3972 := z.DecBinary() + _ = yym3972 if false { - } else if z.HasExtensions() && z.DecExt(yyv3997) { + } else if z.HasExtensions() && z.DecExt(yyv3971) { } else { - z.DecFallback(yyv3997, false) + z.DecFallback(yyv3971, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3999 := &x.Items - yym4000 := z.DecBinary() - _ = yym4000 + yyv3973 := &x.Items + yym3974 := z.DecBinary() + _ = yym3974 if false { } else { - h.decSliceEvent((*[]Event)(yyv3999), d) + h.decSliceEvent((*[]Event)(yyv3973), d) } } default: - z.DecStructFieldNotFound(-1, yys3994) - } // end switch yys3994 - } // end for yyj3994 + z.DecStructFieldNotFound(-1, yys3968) + } // end switch yys3968 + } // end for yyj3968 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50165,16 +49866,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4001 int - var yyb4001 bool - var yyhl4001 bool = l >= 0 - yyj4001++ - if yyhl4001 { - yyb4001 = yyj4001 > l + var yyj3975 int + var yyb3975 bool + var yyhl3975 bool = l >= 0 + yyj3975++ + if yyhl3975 { + yyb3975 = yyj3975 > l } else { - yyb4001 = r.CheckBreak() + yyb3975 = r.CheckBreak() } - if yyb4001 { + if yyb3975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50184,13 +49885,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4001++ - if yyhl4001 { - yyb4001 = yyj4001 > l + yyj3975++ + if yyhl3975 { + yyb3975 = yyj3975 > l } else { - yyb4001 = r.CheckBreak() + yyb3975 = r.CheckBreak() } - if yyb4001 { + if yyb3975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50200,13 +49901,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4001++ - if yyhl4001 { - yyb4001 = yyj4001 > l + yyj3975++ + if yyhl3975 { + yyb3975 = yyj3975 > l } else { - yyb4001 = r.CheckBreak() + yyb3975 = r.CheckBreak() } - if yyb4001 { + if yyb3975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50214,22 +49915,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4004 := &x.ListMeta - yym4005 := z.DecBinary() - _ = yym4005 + yyv3978 := &x.ListMeta + yym3979 := z.DecBinary() + _ = yym3979 if false { - } else if z.HasExtensions() && z.DecExt(yyv4004) { + } else if z.HasExtensions() && z.DecExt(yyv3978) { } else { - z.DecFallback(yyv4004, false) + z.DecFallback(yyv3978, false) } } - yyj4001++ - if yyhl4001 { - yyb4001 = yyj4001 > l + yyj3975++ + if yyhl3975 { + yyb3975 = yyj3975 > l } else { - yyb4001 = r.CheckBreak() + yyb3975 = r.CheckBreak() } - if yyb4001 { + if yyb3975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50237,26 +49938,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4006 := &x.Items - yym4007 := z.DecBinary() - _ = yym4007 + yyv3980 := &x.Items + yym3981 := z.DecBinary() + _ = yym3981 if false { } else { - h.decSliceEvent((*[]Event)(yyv4006), d) + h.decSliceEvent((*[]Event)(yyv3980), d) } } for { - yyj4001++ - if yyhl4001 { - yyb4001 = yyj4001 > l + yyj3975++ + if yyhl3975 { + yyb3975 = yyj3975 > l } else { - yyb4001 = r.CheckBreak() + yyb3975 = r.CheckBreak() } - if yyb4001 { + if yyb3975 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4001-1, "") + z.DecStructFieldNotFound(yyj3975-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50268,37 +49969,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4008 := z.EncBinary() - _ = yym4008 + yym3982 := z.EncBinary() + _ = yym3982 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4009 := !z.EncBinary() - yy2arr4009 := z.EncBasicHandle().StructToArray - var yyq4009 [4]bool - _, _, _ = yysep4009, yyq4009, yy2arr4009 - const yyr4009 bool = false - yyq4009[0] = x.Kind != "" - yyq4009[1] = x.APIVersion != "" - yyq4009[2] = true - var yynn4009 int - if yyr4009 || yy2arr4009 { + yysep3983 := !z.EncBinary() + yy2arr3983 := z.EncBasicHandle().StructToArray + var yyq3983 [4]bool + _, _, _ = yysep3983, yyq3983, yy2arr3983 + const yyr3983 bool = false + yyq3983[0] = x.Kind != "" + yyq3983[1] = x.APIVersion != "" + yyq3983[2] = true + var yynn3983 int + if yyr3983 || yy2arr3983 { r.EncodeArrayStart(4) } else { - yynn4009 = 1 - for _, b := range yyq4009 { + yynn3983 = 1 + for _, b := range yyq3983 { if b { - yynn4009++ + yynn3983++ } } - r.EncodeMapStart(yynn4009) - yynn4009 = 0 + r.EncodeMapStart(yynn3983) + yynn3983 = 0 } - if yyr4009 || yy2arr4009 { + if yyr3983 || yy2arr3983 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4009[0] { - yym4011 := z.EncBinary() - _ = yym4011 + if yyq3983[0] { + yym3985 := z.EncBinary() + _ = yym3985 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50307,23 +50008,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4009[0] { + if yyq3983[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4012 := z.EncBinary() - _ = yym4012 + yym3986 := z.EncBinary() + _ = yym3986 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4009 || yy2arr4009 { + if yyr3983 || yy2arr3983 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4009[1] { - yym4014 := z.EncBinary() - _ = yym4014 + if yyq3983[1] { + yym3988 := z.EncBinary() + _ = yym3988 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50332,54 +50033,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4009[1] { + if yyq3983[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4015 := z.EncBinary() - _ = yym4015 + yym3989 := z.EncBinary() + _ = yym3989 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4009 || yy2arr4009 { + if yyr3983 || yy2arr3983 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4009[2] { - yy4017 := &x.ListMeta - yym4018 := z.EncBinary() - _ = yym4018 + if yyq3983[2] { + yy3991 := &x.ListMeta + yym3992 := z.EncBinary() + _ = yym3992 if false { - } else if z.HasExtensions() && z.EncExt(yy4017) { + } else if z.HasExtensions() && z.EncExt(yy3991) { } else { - z.EncFallback(yy4017) + z.EncFallback(yy3991) } } else { r.EncodeNil() } } else { - if yyq4009[2] { + if yyq3983[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4019 := &x.ListMeta - yym4020 := z.EncBinary() - _ = yym4020 + yy3993 := &x.ListMeta + yym3994 := z.EncBinary() + _ = yym3994 if false { - } else if z.HasExtensions() && z.EncExt(yy4019) { + } else if z.HasExtensions() && z.EncExt(yy3993) { } else { - z.EncFallback(yy4019) + z.EncFallback(yy3993) } } } - if yyr4009 || yy2arr4009 { + if yyr3983 || yy2arr3983 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4022 := z.EncBinary() - _ = yym4022 + yym3996 := z.EncBinary() + _ = yym3996 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) @@ -50392,15 +50093,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4023 := z.EncBinary() - _ = yym4023 + yym3997 := z.EncBinary() + _ = yym3997 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) } } } - if yyr4009 || yy2arr4009 { + if yyr3983 || yy2arr3983 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50410,6 +50111,403 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { } func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3998 := z.DecBinary() + _ = yym3998 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3999 := r.ContainerType() + if yyct3999 == codecSelferValueTypeMap1234 { + yyl3999 := r.ReadMapStart() + if yyl3999 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3999, d) + } + } else if yyct3999 == codecSelferValueTypeArray1234 { + yyl3999 := r.ReadArrayStart() + if yyl3999 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3999, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys4000Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4000Slc + var yyhl4000 bool = l >= 0 + for yyj4000 := 0; ; yyj4000++ { + if yyhl4000 { + if yyj4000 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys4000Slc = r.DecodeBytes(yys4000Slc, true, true) + yys4000 := string(yys4000Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys4000 { + 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 { + yyv4003 := &x.ListMeta + yym4004 := z.DecBinary() + _ = yym4004 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4003) { + } else { + z.DecFallback(yyv4003, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv4005 := &x.Items + yym4006 := z.DecBinary() + _ = yym4006 + if false { + } else { + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv4005), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys4000) + } // end switch yys4000 + } // end for yyj4000 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4007 int + var yyb4007 bool + var yyhl4007 bool = l >= 0 + yyj4007++ + if yyhl4007 { + yyb4007 = yyj4007 > l + } else { + yyb4007 = r.CheckBreak() + } + if yyb4007 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj4007++ + if yyhl4007 { + yyb4007 = yyj4007 > l + } else { + yyb4007 = r.CheckBreak() + } + if yyb4007 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj4007++ + if yyhl4007 { + yyb4007 = yyj4007 > l + } else { + yyb4007 = r.CheckBreak() + } + if yyb4007 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv4010 := &x.ListMeta + yym4011 := z.DecBinary() + _ = yym4011 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4010) { + } else { + z.DecFallback(yyv4010, false) + } + } + yyj4007++ + if yyhl4007 { + yyb4007 = yyj4007 > l + } else { + yyb4007 = r.CheckBreak() + } + if yyb4007 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv4012 := &x.Items + yym4013 := z.DecBinary() + _ = yym4013 + if false { + } else { + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv4012), d) + } + } + for { + yyj4007++ + if yyhl4007 { + yyb4007 = yyj4007 > l + } else { + yyb4007 = r.CheckBreak() + } + if yyb4007 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj4007-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym4014 := z.EncBinary() + _ = yym4014 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4015 := z.DecBinary() + _ = yym4015 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym4016 := z.EncBinary() + _ = yym4016 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep4017 := !z.EncBinary() + yy2arr4017 := z.EncBasicHandle().StructToArray + var yyq4017 [6]bool + _, _, _ = yysep4017, yyq4017, yy2arr4017 + const yyr4017 bool = false + yyq4017[0] = x.Type != "" + yyq4017[1] = len(x.Max) != 0 + yyq4017[2] = len(x.Min) != 0 + yyq4017[3] = len(x.Default) != 0 + yyq4017[4] = len(x.DefaultRequest) != 0 + yyq4017[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn4017 int + if yyr4017 || yy2arr4017 { + r.EncodeArrayStart(6) + } else { + yynn4017 = 0 + for _, b := range yyq4017 { + if b { + yynn4017++ + } + } + r.EncodeMapStart(yynn4017) + yynn4017 = 0 + } + if yyr4017 || yy2arr4017 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4017[0] { + x.Type.CodecEncodeSelf(e) + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4017[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("type")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Type.CodecEncodeSelf(e) + } + } + if yyr4017 || yy2arr4017 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4017[1] { + if x.Max == nil { + r.EncodeNil() + } else { + x.Max.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq4017[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("max")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Max == nil { + r.EncodeNil() + } else { + x.Max.CodecEncodeSelf(e) + } + } + } + if yyr4017 || yy2arr4017 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4017[2] { + if x.Min == nil { + r.EncodeNil() + } else { + x.Min.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq4017[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("min")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Min == nil { + r.EncodeNil() + } else { + x.Min.CodecEncodeSelf(e) + } + } + } + if yyr4017 || yy2arr4017 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4017[3] { + if x.Default == nil { + r.EncodeNil() + } else { + x.Default.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq4017[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("default")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Default == nil { + r.EncodeNil() + } else { + x.Default.CodecEncodeSelf(e) + } + } + } + if yyr4017 || yy2arr4017 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4017[4] { + if x.DefaultRequest == nil { + r.EncodeNil() + } else { + x.DefaultRequest.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq4017[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.DefaultRequest == nil { + r.EncodeNil() + } else { + x.DefaultRequest.CodecEncodeSelf(e) + } + } + } + if yyr4017 || yy2arr4017 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4017[5] { + if x.MaxLimitRequestRatio == nil { + r.EncodeNil() + } else { + x.MaxLimitRequestRatio.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq4017[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.MaxLimitRequestRatio == nil { + r.EncodeNil() + } else { + x.MaxLimitRequestRatio.CodecEncodeSelf(e) + } + } + } + if yyr4017 || yy2arr4017 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -50439,7 +50537,7 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -50461,42 +50559,46 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { yys4026 := string(yys4026Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys4026 { - case "kind": + case "type": if r.TryDecodeAsNil() { - x.Kind = "" + x.Type = "" } else { - x.Kind = string(r.DecodeString()) + x.Type = LimitType(r.DecodeString()) } - case "apiVersion": + case "max": if r.TryDecodeAsNil() { - x.APIVersion = "" + x.Max = nil } else { - x.APIVersion = string(r.DecodeString()) + yyv4028 := &x.Max + yyv4028.CodecDecodeSelf(d) } - case "metadata": + case "min": if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} + x.Min = nil } else { - yyv4029 := &x.ListMeta - yym4030 := z.DecBinary() - _ = yym4030 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4029) { - } else { - z.DecFallback(yyv4029, false) - } + yyv4029 := &x.Min + yyv4029.CodecDecodeSelf(d) } - case "items": + case "default": if r.TryDecodeAsNil() { - x.Items = nil + x.Default = nil } else { - yyv4031 := &x.Items - yym4032 := z.DecBinary() - _ = yym4032 - if false { - } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv4031), d) - } + yyv4030 := &x.Default + yyv4030.CodecDecodeSelf(d) + } + case "defaultRequest": + if r.TryDecodeAsNil() { + x.DefaultRequest = nil + } else { + yyv4031 := &x.DefaultRequest + yyv4031.CodecDecodeSelf(d) + } + case "maxLimitRequestRatio": + if r.TryDecodeAsNil() { + x.MaxLimitRequestRatio = nil + } else { + yyv4032 := &x.MaxLimitRequestRatio + yyv4032.CodecDecodeSelf(d) } default: z.DecStructFieldNotFound(-1, yys4026) @@ -50505,7 +50607,7 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -50524,9 +50626,9 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Kind = "" + x.Type = "" } else { - x.Kind = string(r.DecodeString()) + x.Type = LimitType(r.DecodeString()) } yyj4033++ if yyhl4033 { @@ -50540,9 +50642,10 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.APIVersion = "" + x.Max = nil } else { - x.APIVersion = string(r.DecodeString()) + yyv4035 := &x.Max + yyv4035.CodecDecodeSelf(d) } yyj4033++ if yyhl4033 { @@ -50556,16 +50659,10 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} + x.Min = nil } else { - yyv4036 := &x.ListMeta - yym4037 := z.DecBinary() - _ = yym4037 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4036) { - } else { - z.DecFallback(yyv4036, false) - } + yyv4036 := &x.Min + yyv4036.CodecDecodeSelf(d) } yyj4033++ if yyhl4033 { @@ -50579,15 +50676,44 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Items = nil + x.Default = nil } else { - yyv4038 := &x.Items - yym4039 := z.DecBinary() - _ = yym4039 - if false { - } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv4038), d) - } + yyv4037 := &x.Default + yyv4037.CodecDecodeSelf(d) + } + yyj4033++ + if yyhl4033 { + yyb4033 = yyj4033 > l + } else { + yyb4033 = r.CheckBreak() + } + if yyb4033 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.DefaultRequest = nil + } else { + yyv4038 := &x.DefaultRequest + yyv4038.CodecDecodeSelf(d) + } + yyj4033++ + if yyhl4033 { + yyb4033 = yyj4033 > l + } else { + yyb4033 = r.CheckBreak() + } + if yyb4033 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.MaxLimitRequestRatio = nil + } else { + yyv4039 := &x.MaxLimitRequestRatio + yyv4039.CodecDecodeSelf(d) } for { yyj4033++ @@ -50605,431 +50731,6 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym4040 := z.EncBinary() - _ = yym4040 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4041 := z.DecBinary() - _ = yym4041 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym4042 := z.EncBinary() - _ = yym4042 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep4043 := !z.EncBinary() - yy2arr4043 := z.EncBasicHandle().StructToArray - var yyq4043 [6]bool - _, _, _ = yysep4043, yyq4043, yy2arr4043 - const yyr4043 bool = false - yyq4043[0] = x.Type != "" - yyq4043[1] = len(x.Max) != 0 - yyq4043[2] = len(x.Min) != 0 - yyq4043[3] = len(x.Default) != 0 - yyq4043[4] = len(x.DefaultRequest) != 0 - yyq4043[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn4043 int - if yyr4043 || yy2arr4043 { - r.EncodeArrayStart(6) - } else { - yynn4043 = 0 - for _, b := range yyq4043 { - if b { - yynn4043++ - } - } - r.EncodeMapStart(yynn4043) - yynn4043 = 0 - } - if yyr4043 || yy2arr4043 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4043[0] { - x.Type.CodecEncodeSelf(e) - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4043[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("type")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Type.CodecEncodeSelf(e) - } - } - if yyr4043 || yy2arr4043 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4043[1] { - if x.Max == nil { - r.EncodeNil() - } else { - x.Max.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq4043[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("max")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Max == nil { - r.EncodeNil() - } else { - x.Max.CodecEncodeSelf(e) - } - } - } - if yyr4043 || yy2arr4043 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4043[2] { - if x.Min == nil { - r.EncodeNil() - } else { - x.Min.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq4043[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("min")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Min == nil { - r.EncodeNil() - } else { - x.Min.CodecEncodeSelf(e) - } - } - } - if yyr4043 || yy2arr4043 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4043[3] { - if x.Default == nil { - r.EncodeNil() - } else { - x.Default.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq4043[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("default")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Default == nil { - r.EncodeNil() - } else { - x.Default.CodecEncodeSelf(e) - } - } - } - if yyr4043 || yy2arr4043 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4043[4] { - if x.DefaultRequest == nil { - r.EncodeNil() - } else { - x.DefaultRequest.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq4043[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.DefaultRequest == nil { - r.EncodeNil() - } else { - x.DefaultRequest.CodecEncodeSelf(e) - } - } - } - if yyr4043 || yy2arr4043 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4043[5] { - if x.MaxLimitRequestRatio == nil { - r.EncodeNil() - } else { - x.MaxLimitRequestRatio.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq4043[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.MaxLimitRequestRatio == nil { - r.EncodeNil() - } else { - x.MaxLimitRequestRatio.CodecEncodeSelf(e) - } - } - } - if yyr4043 || yy2arr4043 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4050 := z.DecBinary() - _ = yym4050 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct4051 := r.ContainerType() - if yyct4051 == codecSelferValueTypeMap1234 { - yyl4051 := r.ReadMapStart() - if yyl4051 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl4051, d) - } - } else if yyct4051 == codecSelferValueTypeArray1234 { - yyl4051 := r.ReadArrayStart() - if yyl4051 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl4051, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys4052Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4052Slc - var yyhl4052 bool = l >= 0 - for yyj4052 := 0; ; yyj4052++ { - if yyhl4052 { - if yyj4052 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4052Slc = r.DecodeBytes(yys4052Slc, true, true) - yys4052 := string(yys4052Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4052 { - case "type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = LimitType(r.DecodeString()) - } - case "max": - if r.TryDecodeAsNil() { - x.Max = nil - } else { - yyv4054 := &x.Max - yyv4054.CodecDecodeSelf(d) - } - case "min": - if r.TryDecodeAsNil() { - x.Min = nil - } else { - yyv4055 := &x.Min - yyv4055.CodecDecodeSelf(d) - } - case "default": - if r.TryDecodeAsNil() { - x.Default = nil - } else { - yyv4056 := &x.Default - yyv4056.CodecDecodeSelf(d) - } - case "defaultRequest": - if r.TryDecodeAsNil() { - x.DefaultRequest = nil - } else { - yyv4057 := &x.DefaultRequest - yyv4057.CodecDecodeSelf(d) - } - case "maxLimitRequestRatio": - if r.TryDecodeAsNil() { - x.MaxLimitRequestRatio = nil - } else { - yyv4058 := &x.MaxLimitRequestRatio - yyv4058.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys4052) - } // end switch yys4052 - } // end for yyj4052 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj4059 int - var yyb4059 bool - var yyhl4059 bool = l >= 0 - yyj4059++ - if yyhl4059 { - yyb4059 = yyj4059 > l - } else { - yyb4059 = r.CheckBreak() - } - if yyb4059 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = LimitType(r.DecodeString()) - } - yyj4059++ - if yyhl4059 { - yyb4059 = yyj4059 > l - } else { - yyb4059 = r.CheckBreak() - } - if yyb4059 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Max = nil - } else { - yyv4061 := &x.Max - yyv4061.CodecDecodeSelf(d) - } - yyj4059++ - if yyhl4059 { - yyb4059 = yyj4059 > l - } else { - yyb4059 = r.CheckBreak() - } - if yyb4059 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Min = nil - } else { - yyv4062 := &x.Min - yyv4062.CodecDecodeSelf(d) - } - yyj4059++ - if yyhl4059 { - yyb4059 = yyj4059 > l - } else { - yyb4059 = r.CheckBreak() - } - if yyb4059 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Default = nil - } else { - yyv4063 := &x.Default - yyv4063.CodecDecodeSelf(d) - } - yyj4059++ - if yyhl4059 { - yyb4059 = yyj4059 > l - } else { - yyb4059 = r.CheckBreak() - } - if yyb4059 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.DefaultRequest = nil - } else { - yyv4064 := &x.DefaultRequest - yyv4064.CodecDecodeSelf(d) - } - yyj4059++ - if yyhl4059 { - yyb4059 = yyj4059 > l - } else { - yyb4059 = r.CheckBreak() - } - if yyb4059 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.MaxLimitRequestRatio = nil - } else { - yyv4065 := &x.MaxLimitRequestRatio - yyv4065.CodecDecodeSelf(d) - } - for { - yyj4059++ - if yyhl4059 { - yyb4059 = yyj4059 > l - } else { - yyb4059 = r.CheckBreak() - } - if yyb4059 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4059-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -51037,36 +50738,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4066 := z.EncBinary() - _ = yym4066 + yym4040 := z.EncBinary() + _ = yym4040 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4067 := !z.EncBinary() - yy2arr4067 := z.EncBasicHandle().StructToArray - var yyq4067 [1]bool - _, _, _ = yysep4067, yyq4067, yy2arr4067 - const yyr4067 bool = false - var yynn4067 int - if yyr4067 || yy2arr4067 { + yysep4041 := !z.EncBinary() + yy2arr4041 := z.EncBasicHandle().StructToArray + var yyq4041 [1]bool + _, _, _ = yysep4041, yyq4041, yy2arr4041 + const yyr4041 bool = false + var yynn4041 int + if yyr4041 || yy2arr4041 { r.EncodeArrayStart(1) } else { - yynn4067 = 1 - for _, b := range yyq4067 { + yynn4041 = 1 + for _, b := range yyq4041 { if b { - yynn4067++ + yynn4041++ } } - r.EncodeMapStart(yynn4067) - yynn4067 = 0 + r.EncodeMapStart(yynn4041) + yynn4041 = 0 } - if yyr4067 || yy2arr4067 { + if yyr4041 || yy2arr4041 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym4069 := z.EncBinary() - _ = yym4069 + yym4043 := z.EncBinary() + _ = yym4043 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -51079,15 +50780,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym4070 := z.EncBinary() - _ = yym4070 + yym4044 := z.EncBinary() + _ = yym4044 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr4067 || yy2arr4067 { + if yyr4041 || yy2arr4041 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51100,25 +50801,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4071 := z.DecBinary() - _ = yym4071 + yym4045 := z.DecBinary() + _ = yym4045 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4072 := r.ContainerType() - if yyct4072 == codecSelferValueTypeMap1234 { - yyl4072 := r.ReadMapStart() - if yyl4072 == 0 { + yyct4046 := r.ContainerType() + if yyct4046 == codecSelferValueTypeMap1234 { + yyl4046 := r.ReadMapStart() + if yyl4046 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4072, d) + x.codecDecodeSelfFromMap(yyl4046, d) } - } else if yyct4072 == codecSelferValueTypeArray1234 { - yyl4072 := r.ReadArrayStart() - if yyl4072 == 0 { + } else if yyct4046 == codecSelferValueTypeArray1234 { + yyl4046 := r.ReadArrayStart() + if yyl4046 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4072, d) + x.codecDecodeSelfFromArray(yyl4046, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51130,12 +50831,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4073Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4073Slc - var yyhl4073 bool = l >= 0 - for yyj4073 := 0; ; yyj4073++ { - if yyhl4073 { - if yyj4073 >= l { + var yys4047Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4047Slc + var yyhl4047 bool = l >= 0 + for yyj4047 := 0; ; yyj4047++ { + if yyhl4047 { + if yyj4047 >= l { break } } else { @@ -51144,26 +50845,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4073Slc = r.DecodeBytes(yys4073Slc, true, true) - yys4073 := string(yys4073Slc) + yys4047Slc = r.DecodeBytes(yys4047Slc, true, true) + yys4047 := string(yys4047Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4073 { + switch yys4047 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv4074 := &x.Limits - yym4075 := z.DecBinary() - _ = yym4075 + yyv4048 := &x.Limits + yym4049 := z.DecBinary() + _ = yym4049 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4074), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4048), d) } } default: - z.DecStructFieldNotFound(-1, yys4073) - } // end switch yys4073 - } // end for yyj4073 + z.DecStructFieldNotFound(-1, yys4047) + } // end switch yys4047 + } // end for yyj4047 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51171,16 +50872,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4076 int - var yyb4076 bool - var yyhl4076 bool = l >= 0 - yyj4076++ - if yyhl4076 { - yyb4076 = yyj4076 > l + var yyj4050 int + var yyb4050 bool + var yyhl4050 bool = l >= 0 + yyj4050++ + if yyhl4050 { + yyb4050 = yyj4050 > l } else { - yyb4076 = r.CheckBreak() + yyb4050 = r.CheckBreak() } - if yyb4076 { + if yyb4050 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51188,31 +50889,332 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv4077 := &x.Limits - yym4078 := z.DecBinary() - _ = yym4078 + yyv4051 := &x.Limits + yym4052 := z.DecBinary() + _ = yym4052 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4077), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4051), d) } } for { - yyj4076++ - if yyhl4076 { - yyb4076 = yyj4076 > l + yyj4050++ + if yyhl4050 { + yyb4050 = yyj4050 > l } else { - yyb4076 = r.CheckBreak() + yyb4050 = r.CheckBreak() } - if yyb4076 { + if yyb4050 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4076-1, "") + z.DecStructFieldNotFound(yyj4050-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym4053 := z.EncBinary() + _ = yym4053 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep4054 := !z.EncBinary() + yy2arr4054 := z.EncBasicHandle().StructToArray + var yyq4054 [4]bool + _, _, _ = yysep4054, yyq4054, yy2arr4054 + const yyr4054 bool = false + yyq4054[0] = x.Kind != "" + yyq4054[1] = x.APIVersion != "" + yyq4054[2] = true + yyq4054[3] = true + var yynn4054 int + if yyr4054 || yy2arr4054 { + r.EncodeArrayStart(4) + } else { + yynn4054 = 0 + for _, b := range yyq4054 { + if b { + yynn4054++ + } + } + r.EncodeMapStart(yynn4054) + yynn4054 = 0 + } + if yyr4054 || yy2arr4054 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4054[0] { + yym4056 := z.EncBinary() + _ = yym4056 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4054[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4057 := z.EncBinary() + _ = yym4057 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4054 || yy2arr4054 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4054[1] { + yym4059 := z.EncBinary() + _ = yym4059 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4054[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4060 := z.EncBinary() + _ = yym4060 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr4054 || yy2arr4054 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4054[2] { + yy4062 := &x.ObjectMeta + yy4062.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq4054[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy4063 := &x.ObjectMeta + yy4063.CodecEncodeSelf(e) + } + } + if yyr4054 || yy2arr4054 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4054[3] { + yy4065 := &x.Spec + yy4065.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq4054[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("spec")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy4066 := &x.Spec + yy4066.CodecEncodeSelf(e) + } + } + if yyr4054 || yy2arr4054 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4067 := z.DecBinary() + _ = yym4067 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct4068 := r.ContainerType() + if yyct4068 == codecSelferValueTypeMap1234 { + yyl4068 := r.ReadMapStart() + if yyl4068 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl4068, d) + } + } else if yyct4068 == codecSelferValueTypeArray1234 { + yyl4068 := r.ReadArrayStart() + if yyl4068 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl4068, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys4069Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4069Slc + var yyhl4069 bool = l >= 0 + for yyj4069 := 0; ; yyj4069++ { + if yyhl4069 { + if yyj4069 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys4069Slc = r.DecodeBytes(yys4069Slc, true, true) + yys4069 := string(yys4069Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys4069 { + 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.ObjectMeta = ObjectMeta{} + } else { + yyv4072 := &x.ObjectMeta + yyv4072.CodecDecodeSelf(d) + } + case "spec": + if r.TryDecodeAsNil() { + x.Spec = LimitRangeSpec{} + } else { + yyv4073 := &x.Spec + yyv4073.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys4069) + } // end switch yys4069 + } // end for yyj4069 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4074 int + var yyb4074 bool + var yyhl4074 bool = l >= 0 + yyj4074++ + if yyhl4074 { + yyb4074 = yyj4074 > l + } else { + yyb4074 = r.CheckBreak() + } + if yyb4074 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj4074++ + if yyhl4074 { + yyb4074 = yyj4074 > l + } else { + yyb4074 = r.CheckBreak() + } + if yyb4074 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj4074++ + if yyhl4074 { + yyb4074 = yyj4074 > l + } else { + yyb4074 = r.CheckBreak() + } + if yyb4074 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv4077 := &x.ObjectMeta + yyv4077.CodecDecodeSelf(d) + } + yyj4074++ + if yyhl4074 { + yyb4074 = yyj4074 > l + } else { + yyb4074 = r.CheckBreak() + } + if yyb4074 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Spec = LimitRangeSpec{} + } else { + yyv4078 := &x.Spec + yyv4078.CodecDecodeSelf(d) + } + for { + yyj4074++ + if yyhl4074 { + yyb4074 = yyj4074 > l + } else { + yyb4074 = r.CheckBreak() + } + if yyb4074 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj4074-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -51232,12 +51234,11 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { yyq4080[0] = x.Kind != "" yyq4080[1] = x.APIVersion != "" yyq4080[2] = true - yyq4080[3] = true var yynn4080 int if yyr4080 || yy2arr4080 { r.EncodeArrayStart(4) } else { - yynn4080 = 0 + yynn4080 = 1 for _, b := range yyq4080 { if b { yynn4080++ @@ -51299,8 +51300,14 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if yyr4080 || yy2arr4080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq4080[2] { - yy4088 := &x.ObjectMeta - yy4088.CodecEncodeSelf(e) + yy4088 := &x.ListMeta + yym4089 := z.EncBinary() + _ = yym4089 + if false { + } else if z.HasExtensions() && z.EncExt(yy4088) { + } else { + z.EncFallback(yy4088) + } } else { r.EncodeNil() } @@ -51309,329 +51316,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4089 := &x.ObjectMeta - yy4089.CodecEncodeSelf(e) + yy4090 := &x.ListMeta + yym4091 := z.EncBinary() + _ = yym4091 + if false { + } else if z.HasExtensions() && z.EncExt(yy4090) { + } else { + z.EncFallback(yy4090) + } } } if yyr4080 || yy2arr4080 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4080[3] { - yy4091 := &x.Spec - yy4091.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq4080[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4092 := &x.Spec - yy4092.CodecEncodeSelf(e) - } - } - if yyr4080 || yy2arr4080 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4093 := z.DecBinary() - _ = yym4093 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct4094 := r.ContainerType() - if yyct4094 == codecSelferValueTypeMap1234 { - yyl4094 := r.ReadMapStart() - if yyl4094 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl4094, d) - } - } else if yyct4094 == codecSelferValueTypeArray1234 { - yyl4094 := r.ReadArrayStart() - if yyl4094 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl4094, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys4095Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4095Slc - var yyhl4095 bool = l >= 0 - for yyj4095 := 0; ; yyj4095++ { - if yyhl4095 { - if yyj4095 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4095Slc = r.DecodeBytes(yys4095Slc, true, true) - yys4095 := string(yys4095Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4095 { - 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.ObjectMeta = ObjectMeta{} - } else { - yyv4098 := &x.ObjectMeta - yyv4098.CodecDecodeSelf(d) - } - case "spec": - if r.TryDecodeAsNil() { - x.Spec = LimitRangeSpec{} - } else { - yyv4099 := &x.Spec - yyv4099.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys4095) - } // end switch yys4095 - } // end for yyj4095 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj4100 int - var yyb4100 bool - var yyhl4100 bool = l >= 0 - yyj4100++ - if yyhl4100 { - yyb4100 = yyj4100 > l - } else { - yyb4100 = r.CheckBreak() - } - if yyb4100 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj4100++ - if yyhl4100 { - yyb4100 = yyj4100 > l - } else { - yyb4100 = r.CheckBreak() - } - if yyb4100 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj4100++ - if yyhl4100 { - yyb4100 = yyj4100 > l - } else { - yyb4100 = r.CheckBreak() - } - if yyb4100 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv4103 := &x.ObjectMeta - yyv4103.CodecDecodeSelf(d) - } - yyj4100++ - if yyhl4100 { - yyb4100 = yyj4100 > l - } else { - yyb4100 = r.CheckBreak() - } - if yyb4100 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Spec = LimitRangeSpec{} - } else { - yyv4104 := &x.Spec - yyv4104.CodecDecodeSelf(d) - } - for { - yyj4100++ - if yyhl4100 { - yyb4100 = yyj4100 > l - } else { - yyb4100 = r.CheckBreak() - } - if yyb4100 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4100-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym4105 := z.EncBinary() - _ = yym4105 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep4106 := !z.EncBinary() - yy2arr4106 := z.EncBasicHandle().StructToArray - var yyq4106 [4]bool - _, _, _ = yysep4106, yyq4106, yy2arr4106 - const yyr4106 bool = false - yyq4106[0] = x.Kind != "" - yyq4106[1] = x.APIVersion != "" - yyq4106[2] = true - var yynn4106 int - if yyr4106 || yy2arr4106 { - r.EncodeArrayStart(4) - } else { - yynn4106 = 1 - for _, b := range yyq4106 { - if b { - yynn4106++ - } - } - r.EncodeMapStart(yynn4106) - yynn4106 = 0 - } - if yyr4106 || yy2arr4106 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4106[0] { - yym4108 := z.EncBinary() - _ = yym4108 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4106[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4109 := z.EncBinary() - _ = yym4109 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4106 || yy2arr4106 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4106[1] { - yym4111 := z.EncBinary() - _ = yym4111 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4106[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4112 := z.EncBinary() - _ = yym4112 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr4106 || yy2arr4106 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4106[2] { - yy4114 := &x.ListMeta - yym4115 := z.EncBinary() - _ = yym4115 - if false { - } else if z.HasExtensions() && z.EncExt(yy4114) { - } else { - z.EncFallback(yy4114) - } - } else { - r.EncodeNil() - } - } else { - if yyq4106[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4116 := &x.ListMeta - yym4117 := z.EncBinary() - _ = yym4117 - if false { - } else if z.HasExtensions() && z.EncExt(yy4116) { - } else { - z.EncFallback(yy4116) - } - } - } - if yyr4106 || yy2arr4106 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4119 := z.EncBinary() - _ = yym4119 + yym4093 := z.EncBinary() + _ = yym4093 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -51644,15 +51345,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4120 := z.EncBinary() - _ = yym4120 + yym4094 := z.EncBinary() + _ = yym4094 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr4106 || yy2arr4106 { + if yyr4080 || yy2arr4080 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51665,25 +51366,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4121 := z.DecBinary() - _ = yym4121 + yym4095 := z.DecBinary() + _ = yym4095 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4122 := r.ContainerType() - if yyct4122 == codecSelferValueTypeMap1234 { - yyl4122 := r.ReadMapStart() - if yyl4122 == 0 { + yyct4096 := r.ContainerType() + if yyct4096 == codecSelferValueTypeMap1234 { + yyl4096 := r.ReadMapStart() + if yyl4096 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4122, d) + x.codecDecodeSelfFromMap(yyl4096, d) } - } else if yyct4122 == codecSelferValueTypeArray1234 { - yyl4122 := r.ReadArrayStart() - if yyl4122 == 0 { + } else if yyct4096 == codecSelferValueTypeArray1234 { + yyl4096 := r.ReadArrayStart() + if yyl4096 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4122, d) + x.codecDecodeSelfFromArray(yyl4096, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51695,12 +51396,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4123Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4123Slc - var yyhl4123 bool = l >= 0 - for yyj4123 := 0; ; yyj4123++ { - if yyhl4123 { - if yyj4123 >= l { + var yys4097Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4097Slc + var yyhl4097 bool = l >= 0 + for yyj4097 := 0; ; yyj4097++ { + if yyhl4097 { + if yyj4097 >= l { break } } else { @@ -51709,10 +51410,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4123Slc = r.DecodeBytes(yys4123Slc, true, true) - yys4123 := string(yys4123Slc) + yys4097Slc = r.DecodeBytes(yys4097Slc, true, true) + yys4097 := string(yys4097Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4123 { + switch yys4097 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51729,31 +51430,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4126 := &x.ListMeta - yym4127 := z.DecBinary() - _ = yym4127 + yyv4100 := &x.ListMeta + yym4101 := z.DecBinary() + _ = yym4101 if false { - } else if z.HasExtensions() && z.DecExt(yyv4126) { + } else if z.HasExtensions() && z.DecExt(yyv4100) { } else { - z.DecFallback(yyv4126, false) + z.DecFallback(yyv4100, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4128 := &x.Items - yym4129 := z.DecBinary() - _ = yym4129 + yyv4102 := &x.Items + yym4103 := z.DecBinary() + _ = yym4103 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4128), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4102), d) } } default: - z.DecStructFieldNotFound(-1, yys4123) - } // end switch yys4123 - } // end for yyj4123 + z.DecStructFieldNotFound(-1, yys4097) + } // end switch yys4097 + } // end for yyj4097 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51761,16 +51462,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4130 int - var yyb4130 bool - var yyhl4130 bool = l >= 0 - yyj4130++ - if yyhl4130 { - yyb4130 = yyj4130 > l + var yyj4104 int + var yyb4104 bool + var yyhl4104 bool = l >= 0 + yyj4104++ + if yyhl4104 { + yyb4104 = yyj4104 > l } else { - yyb4130 = r.CheckBreak() + yyb4104 = r.CheckBreak() } - if yyb4130 { + if yyb4104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51780,13 +51481,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4130++ - if yyhl4130 { - yyb4130 = yyj4130 > l + yyj4104++ + if yyhl4104 { + yyb4104 = yyj4104 > l } else { - yyb4130 = r.CheckBreak() + yyb4104 = r.CheckBreak() } - if yyb4130 { + if yyb4104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51796,13 +51497,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4130++ - if yyhl4130 { - yyb4130 = yyj4130 > l + yyj4104++ + if yyhl4104 { + yyb4104 = yyj4104 > l } else { - yyb4130 = r.CheckBreak() + yyb4104 = r.CheckBreak() } - if yyb4130 { + if yyb4104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51810,22 +51511,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4133 := &x.ListMeta - yym4134 := z.DecBinary() - _ = yym4134 + yyv4107 := &x.ListMeta + yym4108 := z.DecBinary() + _ = yym4108 if false { - } else if z.HasExtensions() && z.DecExt(yyv4133) { + } else if z.HasExtensions() && z.DecExt(yyv4107) { } else { - z.DecFallback(yyv4133, false) + z.DecFallback(yyv4107, false) } } - yyj4130++ - if yyhl4130 { - yyb4130 = yyj4130 > l + yyj4104++ + if yyhl4104 { + yyb4104 = yyj4104 > l } else { - yyb4130 = r.CheckBreak() + yyb4104 = r.CheckBreak() } - if yyb4130 { + if yyb4104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51833,26 +51534,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4135 := &x.Items - yym4136 := z.DecBinary() - _ = yym4136 + yyv4109 := &x.Items + yym4110 := z.DecBinary() + _ = yym4110 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4135), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4109), d) } } for { - yyj4130++ - if yyhl4130 { - yyb4130 = yyj4130 > l + yyj4104++ + if yyhl4104 { + yyb4104 = yyj4104 > l } else { - yyb4130 = r.CheckBreak() + yyb4104 = r.CheckBreak() } - if yyb4130 { + if yyb4104 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4130-1, "") + z.DecStructFieldNotFound(yyj4104-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51861,8 +51562,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4137 := z.EncBinary() - _ = yym4137 + yym4111 := z.EncBinary() + _ = yym4111 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -51874,8 +51575,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4138 := z.DecBinary() - _ = yym4138 + yym4112 := z.DecBinary() + _ = yym4112 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -51890,34 +51591,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4139 := z.EncBinary() - _ = yym4139 + yym4113 := z.EncBinary() + _ = yym4113 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4140 := !z.EncBinary() - yy2arr4140 := z.EncBasicHandle().StructToArray - var yyq4140 [2]bool - _, _, _ = yysep4140, yyq4140, yy2arr4140 - const yyr4140 bool = false - yyq4140[0] = len(x.Hard) != 0 - yyq4140[1] = len(x.Scopes) != 0 - var yynn4140 int - if yyr4140 || yy2arr4140 { + yysep4114 := !z.EncBinary() + yy2arr4114 := z.EncBasicHandle().StructToArray + var yyq4114 [2]bool + _, _, _ = yysep4114, yyq4114, yy2arr4114 + const yyr4114 bool = false + yyq4114[0] = len(x.Hard) != 0 + yyq4114[1] = len(x.Scopes) != 0 + var yynn4114 int + if yyr4114 || yy2arr4114 { r.EncodeArrayStart(2) } else { - yynn4140 = 0 - for _, b := range yyq4140 { + yynn4114 = 0 + for _, b := range yyq4114 { if b { - yynn4140++ + yynn4114++ } } - r.EncodeMapStart(yynn4140) - yynn4140 = 0 + r.EncodeMapStart(yynn4114) + yynn4114 = 0 } - if yyr4140 || yy2arr4140 { + if yyr4114 || yy2arr4114 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4140[0] { + if yyq4114[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -51927,7 +51628,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4140[0] { + if yyq4114[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -51938,14 +51639,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4140 || yy2arr4140 { + if yyr4114 || yy2arr4114 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4140[1] { + if yyq4114[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym4143 := z.EncBinary() - _ = yym4143 + yym4117 := z.EncBinary() + _ = yym4117 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -51955,15 +51656,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4140[1] { + if yyq4114[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym4144 := z.EncBinary() - _ = yym4144 + yym4118 := z.EncBinary() + _ = yym4118 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -51971,7 +51672,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4140 || yy2arr4140 { + if yyr4114 || yy2arr4114 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51984,25 +51685,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4145 := z.DecBinary() - _ = yym4145 + yym4119 := z.DecBinary() + _ = yym4119 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4146 := r.ContainerType() - if yyct4146 == codecSelferValueTypeMap1234 { - yyl4146 := r.ReadMapStart() - if yyl4146 == 0 { + yyct4120 := r.ContainerType() + if yyct4120 == codecSelferValueTypeMap1234 { + yyl4120 := r.ReadMapStart() + if yyl4120 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4146, d) + x.codecDecodeSelfFromMap(yyl4120, d) } - } else if yyct4146 == codecSelferValueTypeArray1234 { - yyl4146 := r.ReadArrayStart() - if yyl4146 == 0 { + } else if yyct4120 == codecSelferValueTypeArray1234 { + yyl4120 := r.ReadArrayStart() + if yyl4120 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4146, d) + x.codecDecodeSelfFromArray(yyl4120, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52014,12 +51715,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4147Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4147Slc - var yyhl4147 bool = l >= 0 - for yyj4147 := 0; ; yyj4147++ { - if yyhl4147 { - if yyj4147 >= l { + var yys4121Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4121Slc + var yyhl4121 bool = l >= 0 + for yyj4121 := 0; ; yyj4121++ { + if yyhl4121 { + if yyj4121 >= l { break } } else { @@ -52028,33 +51729,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4147Slc = r.DecodeBytes(yys4147Slc, true, true) - yys4147 := string(yys4147Slc) + yys4121Slc = r.DecodeBytes(yys4121Slc, true, true) + yys4121 := string(yys4121Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4147 { + switch yys4121 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4148 := &x.Hard - yyv4148.CodecDecodeSelf(d) + yyv4122 := &x.Hard + yyv4122.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4149 := &x.Scopes - yym4150 := z.DecBinary() - _ = yym4150 + yyv4123 := &x.Scopes + yym4124 := z.DecBinary() + _ = yym4124 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4149), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4123), d) } } default: - z.DecStructFieldNotFound(-1, yys4147) - } // end switch yys4147 - } // end for yyj4147 + z.DecStructFieldNotFound(-1, yys4121) + } // end switch yys4121 + } // end for yyj4121 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52062,16 +51763,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4151 int - var yyb4151 bool - var yyhl4151 bool = l >= 0 - yyj4151++ - if yyhl4151 { - yyb4151 = yyj4151 > l + var yyj4125 int + var yyb4125 bool + var yyhl4125 bool = l >= 0 + yyj4125++ + if yyhl4125 { + yyb4125 = yyj4125 > l } else { - yyb4151 = r.CheckBreak() + yyb4125 = r.CheckBreak() } - if yyb4151 { + if yyb4125 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52079,16 +51780,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4152 := &x.Hard - yyv4152.CodecDecodeSelf(d) + yyv4126 := &x.Hard + yyv4126.CodecDecodeSelf(d) } - yyj4151++ - if yyhl4151 { - yyb4151 = yyj4151 > l + yyj4125++ + if yyhl4125 { + yyb4125 = yyj4125 > l } else { - yyb4151 = r.CheckBreak() + yyb4125 = r.CheckBreak() } - if yyb4151 { + if yyb4125 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52096,26 +51797,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4153 := &x.Scopes - yym4154 := z.DecBinary() - _ = yym4154 + yyv4127 := &x.Scopes + yym4128 := z.DecBinary() + _ = yym4128 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4153), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4127), d) } } for { - yyj4151++ - if yyhl4151 { - yyb4151 = yyj4151 > l + yyj4125++ + if yyhl4125 { + yyb4125 = yyj4125 > l } else { - yyb4151 = r.CheckBreak() + yyb4125 = r.CheckBreak() } - if yyb4151 { + if yyb4125 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4151-1, "") + z.DecStructFieldNotFound(yyj4125-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52127,34 +51828,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4155 := z.EncBinary() - _ = yym4155 + yym4129 := z.EncBinary() + _ = yym4129 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4156 := !z.EncBinary() - yy2arr4156 := z.EncBasicHandle().StructToArray - var yyq4156 [2]bool - _, _, _ = yysep4156, yyq4156, yy2arr4156 - const yyr4156 bool = false - yyq4156[0] = len(x.Hard) != 0 - yyq4156[1] = len(x.Used) != 0 - var yynn4156 int - if yyr4156 || yy2arr4156 { + yysep4130 := !z.EncBinary() + yy2arr4130 := z.EncBasicHandle().StructToArray + var yyq4130 [2]bool + _, _, _ = yysep4130, yyq4130, yy2arr4130 + const yyr4130 bool = false + yyq4130[0] = len(x.Hard) != 0 + yyq4130[1] = len(x.Used) != 0 + var yynn4130 int + if yyr4130 || yy2arr4130 { r.EncodeArrayStart(2) } else { - yynn4156 = 0 - for _, b := range yyq4156 { + yynn4130 = 0 + for _, b := range yyq4130 { if b { - yynn4156++ + yynn4130++ } } - r.EncodeMapStart(yynn4156) - yynn4156 = 0 + r.EncodeMapStart(yynn4130) + yynn4130 = 0 } - if yyr4156 || yy2arr4156 { + if yyr4130 || yy2arr4130 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4156[0] { + if yyq4130[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -52164,7 +51865,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4156[0] { + if yyq4130[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -52175,9 +51876,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4156 || yy2arr4156 { + if yyr4130 || yy2arr4130 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4156[1] { + if yyq4130[1] { if x.Used == nil { r.EncodeNil() } else { @@ -52187,7 +51888,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4156[1] { + if yyq4130[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -52198,7 +51899,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4156 || yy2arr4156 { + if yyr4130 || yy2arr4130 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52211,25 +51912,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4159 := z.DecBinary() - _ = yym4159 + yym4133 := z.DecBinary() + _ = yym4133 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4160 := r.ContainerType() - if yyct4160 == codecSelferValueTypeMap1234 { - yyl4160 := r.ReadMapStart() - if yyl4160 == 0 { + yyct4134 := r.ContainerType() + if yyct4134 == codecSelferValueTypeMap1234 { + yyl4134 := r.ReadMapStart() + if yyl4134 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4160, d) + x.codecDecodeSelfFromMap(yyl4134, d) } - } else if yyct4160 == codecSelferValueTypeArray1234 { - yyl4160 := r.ReadArrayStart() - if yyl4160 == 0 { + } else if yyct4134 == codecSelferValueTypeArray1234 { + yyl4134 := r.ReadArrayStart() + if yyl4134 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4160, d) + x.codecDecodeSelfFromArray(yyl4134, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52241,12 +51942,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4161Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4161Slc - var yyhl4161 bool = l >= 0 - for yyj4161 := 0; ; yyj4161++ { - if yyhl4161 { - if yyj4161 >= l { + var yys4135Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4135Slc + var yyhl4135 bool = l >= 0 + for yyj4135 := 0; ; yyj4135++ { + if yyhl4135 { + if yyj4135 >= l { break } } else { @@ -52255,28 +51956,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4161Slc = r.DecodeBytes(yys4161Slc, true, true) - yys4161 := string(yys4161Slc) + yys4135Slc = r.DecodeBytes(yys4135Slc, true, true) + yys4135 := string(yys4135Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4161 { + switch yys4135 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4162 := &x.Hard - yyv4162.CodecDecodeSelf(d) + yyv4136 := &x.Hard + yyv4136.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4163 := &x.Used - yyv4163.CodecDecodeSelf(d) + yyv4137 := &x.Used + yyv4137.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4161) - } // end switch yys4161 - } // end for yyj4161 + z.DecStructFieldNotFound(-1, yys4135) + } // end switch yys4135 + } // end for yyj4135 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52284,16 +51985,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4164 int - var yyb4164 bool - var yyhl4164 bool = l >= 0 - yyj4164++ - if yyhl4164 { - yyb4164 = yyj4164 > l + var yyj4138 int + var yyb4138 bool + var yyhl4138 bool = l >= 0 + yyj4138++ + if yyhl4138 { + yyb4138 = yyj4138 > l } else { - yyb4164 = r.CheckBreak() + yyb4138 = r.CheckBreak() } - if yyb4164 { + if yyb4138 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52301,16 +52002,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4165 := &x.Hard - yyv4165.CodecDecodeSelf(d) + yyv4139 := &x.Hard + yyv4139.CodecDecodeSelf(d) } - yyj4164++ - if yyhl4164 { - yyb4164 = yyj4164 > l + yyj4138++ + if yyhl4138 { + yyb4138 = yyj4138 > l } else { - yyb4164 = r.CheckBreak() + yyb4138 = r.CheckBreak() } - if yyb4164 { + if yyb4138 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52318,21 +52019,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4166 := &x.Used - yyv4166.CodecDecodeSelf(d) + yyv4140 := &x.Used + yyv4140.CodecDecodeSelf(d) } for { - yyj4164++ - if yyhl4164 { - yyb4164 = yyj4164 > l + yyj4138++ + if yyhl4138 { + yyb4138 = yyj4138 > l } else { - yyb4164 = r.CheckBreak() + yyb4138 = r.CheckBreak() } - if yyb4164 { + if yyb4138 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4164-1, "") + z.DecStructFieldNotFound(yyj4138-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52344,39 +52045,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4167 := z.EncBinary() - _ = yym4167 + yym4141 := z.EncBinary() + _ = yym4141 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4168 := !z.EncBinary() - yy2arr4168 := z.EncBasicHandle().StructToArray - var yyq4168 [5]bool - _, _, _ = yysep4168, yyq4168, yy2arr4168 - const yyr4168 bool = false - yyq4168[0] = x.Kind != "" - yyq4168[1] = x.APIVersion != "" - yyq4168[2] = true - yyq4168[3] = true - yyq4168[4] = true - var yynn4168 int - if yyr4168 || yy2arr4168 { + yysep4142 := !z.EncBinary() + yy2arr4142 := z.EncBasicHandle().StructToArray + var yyq4142 [5]bool + _, _, _ = yysep4142, yyq4142, yy2arr4142 + const yyr4142 bool = false + yyq4142[0] = x.Kind != "" + yyq4142[1] = x.APIVersion != "" + yyq4142[2] = true + yyq4142[3] = true + yyq4142[4] = true + var yynn4142 int + if yyr4142 || yy2arr4142 { r.EncodeArrayStart(5) } else { - yynn4168 = 0 - for _, b := range yyq4168 { + yynn4142 = 0 + for _, b := range yyq4142 { if b { - yynn4168++ + yynn4142++ } } - r.EncodeMapStart(yynn4168) - yynn4168 = 0 + r.EncodeMapStart(yynn4142) + yynn4142 = 0 } - if yyr4168 || yy2arr4168 { + if yyr4142 || yy2arr4142 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4168[0] { - yym4170 := z.EncBinary() - _ = yym4170 + if yyq4142[0] { + yym4144 := z.EncBinary() + _ = yym4144 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52385,23 +52086,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4168[0] { + if yyq4142[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4171 := z.EncBinary() - _ = yym4171 + yym4145 := z.EncBinary() + _ = yym4145 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4168 || yy2arr4168 { + if yyr4142 || yy2arr4142 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4168[1] { - yym4173 := z.EncBinary() - _ = yym4173 + if yyq4142[1] { + yym4147 := z.EncBinary() + _ = yym4147 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52410,70 +52111,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4168[1] { + if yyq4142[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4174 := z.EncBinary() - _ = yym4174 + yym4148 := z.EncBinary() + _ = yym4148 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4168 || yy2arr4168 { + if yyr4142 || yy2arr4142 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4168[2] { - yy4176 := &x.ObjectMeta - yy4176.CodecEncodeSelf(e) + if yyq4142[2] { + yy4150 := &x.ObjectMeta + yy4150.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4168[2] { + if yyq4142[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4177 := &x.ObjectMeta - yy4177.CodecEncodeSelf(e) + yy4151 := &x.ObjectMeta + yy4151.CodecEncodeSelf(e) } } - if yyr4168 || yy2arr4168 { + if yyr4142 || yy2arr4142 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4168[3] { - yy4179 := &x.Spec - yy4179.CodecEncodeSelf(e) + if yyq4142[3] { + yy4153 := &x.Spec + yy4153.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4168[3] { + if yyq4142[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4180 := &x.Spec - yy4180.CodecEncodeSelf(e) + yy4154 := &x.Spec + yy4154.CodecEncodeSelf(e) } } - if yyr4168 || yy2arr4168 { + if yyr4142 || yy2arr4142 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4168[4] { - yy4182 := &x.Status - yy4182.CodecEncodeSelf(e) + if yyq4142[4] { + yy4156 := &x.Status + yy4156.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4168[4] { + if yyq4142[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4183 := &x.Status - yy4183.CodecEncodeSelf(e) + yy4157 := &x.Status + yy4157.CodecEncodeSelf(e) } } - if yyr4168 || yy2arr4168 { + if yyr4142 || yy2arr4142 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52486,25 +52187,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4184 := z.DecBinary() - _ = yym4184 + yym4158 := z.DecBinary() + _ = yym4158 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4185 := r.ContainerType() - if yyct4185 == codecSelferValueTypeMap1234 { - yyl4185 := r.ReadMapStart() - if yyl4185 == 0 { + yyct4159 := r.ContainerType() + if yyct4159 == codecSelferValueTypeMap1234 { + yyl4159 := r.ReadMapStart() + if yyl4159 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4185, d) + x.codecDecodeSelfFromMap(yyl4159, d) } - } else if yyct4185 == codecSelferValueTypeArray1234 { - yyl4185 := r.ReadArrayStart() - if yyl4185 == 0 { + } else if yyct4159 == codecSelferValueTypeArray1234 { + yyl4159 := r.ReadArrayStart() + if yyl4159 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4185, d) + x.codecDecodeSelfFromArray(yyl4159, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52516,12 +52217,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4186Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4186Slc - var yyhl4186 bool = l >= 0 - for yyj4186 := 0; ; yyj4186++ { - if yyhl4186 { - if yyj4186 >= l { + var yys4160Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4160Slc + var yyhl4160 bool = l >= 0 + for yyj4160 := 0; ; yyj4160++ { + if yyhl4160 { + if yyj4160 >= l { break } } else { @@ -52530,10 +52231,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4186Slc = r.DecodeBytes(yys4186Slc, true, true) - yys4186 := string(yys4186Slc) + yys4160Slc = r.DecodeBytes(yys4160Slc, true, true) + yys4160 := string(yys4160Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4186 { + switch yys4160 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52550,27 +52251,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4189 := &x.ObjectMeta - yyv4189.CodecDecodeSelf(d) + yyv4163 := &x.ObjectMeta + yyv4163.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4190 := &x.Spec - yyv4190.CodecDecodeSelf(d) + yyv4164 := &x.Spec + yyv4164.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4191 := &x.Status - yyv4191.CodecDecodeSelf(d) + yyv4165 := &x.Status + yyv4165.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4186) - } // end switch yys4186 - } // end for yyj4186 + z.DecStructFieldNotFound(-1, yys4160) + } // end switch yys4160 + } // end for yyj4160 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52578,16 +52279,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4192 int - var yyb4192 bool - var yyhl4192 bool = l >= 0 - yyj4192++ - if yyhl4192 { - yyb4192 = yyj4192 > l + var yyj4166 int + var yyb4166 bool + var yyhl4166 bool = l >= 0 + yyj4166++ + if yyhl4166 { + yyb4166 = yyj4166 > l } else { - yyb4192 = r.CheckBreak() + yyb4166 = r.CheckBreak() } - if yyb4192 { + if yyb4166 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52597,13 +52298,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4192++ - if yyhl4192 { - yyb4192 = yyj4192 > l + yyj4166++ + if yyhl4166 { + yyb4166 = yyj4166 > l } else { - yyb4192 = r.CheckBreak() + yyb4166 = r.CheckBreak() } - if yyb4192 { + if yyb4166 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52613,13 +52314,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4192++ - if yyhl4192 { - yyb4192 = yyj4192 > l + yyj4166++ + if yyhl4166 { + yyb4166 = yyj4166 > l } else { - yyb4192 = r.CheckBreak() + yyb4166 = r.CheckBreak() } - if yyb4192 { + if yyb4166 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52627,16 +52328,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4195 := &x.ObjectMeta - yyv4195.CodecDecodeSelf(d) + yyv4169 := &x.ObjectMeta + yyv4169.CodecDecodeSelf(d) } - yyj4192++ - if yyhl4192 { - yyb4192 = yyj4192 > l + yyj4166++ + if yyhl4166 { + yyb4166 = yyj4166 > l } else { - yyb4192 = r.CheckBreak() + yyb4166 = r.CheckBreak() } - if yyb4192 { + if yyb4166 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52644,16 +52345,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4196 := &x.Spec - yyv4196.CodecDecodeSelf(d) + yyv4170 := &x.Spec + yyv4170.CodecDecodeSelf(d) } - yyj4192++ - if yyhl4192 { - yyb4192 = yyj4192 > l + yyj4166++ + if yyhl4166 { + yyb4166 = yyj4166 > l } else { - yyb4192 = r.CheckBreak() + yyb4166 = r.CheckBreak() } - if yyb4192 { + if yyb4166 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52661,21 +52362,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4197 := &x.Status - yyv4197.CodecDecodeSelf(d) + yyv4171 := &x.Status + yyv4171.CodecDecodeSelf(d) } for { - yyj4192++ - if yyhl4192 { - yyb4192 = yyj4192 > l + yyj4166++ + if yyhl4166 { + yyb4166 = yyj4166 > l } else { - yyb4192 = r.CheckBreak() + yyb4166 = r.CheckBreak() } - if yyb4192 { + if yyb4166 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4192-1, "") + z.DecStructFieldNotFound(yyj4166-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52687,37 +52388,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4198 := z.EncBinary() - _ = yym4198 + yym4172 := z.EncBinary() + _ = yym4172 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4199 := !z.EncBinary() - yy2arr4199 := z.EncBasicHandle().StructToArray - var yyq4199 [4]bool - _, _, _ = yysep4199, yyq4199, yy2arr4199 - const yyr4199 bool = false - yyq4199[0] = x.Kind != "" - yyq4199[1] = x.APIVersion != "" - yyq4199[2] = true - var yynn4199 int - if yyr4199 || yy2arr4199 { + yysep4173 := !z.EncBinary() + yy2arr4173 := z.EncBasicHandle().StructToArray + var yyq4173 [4]bool + _, _, _ = yysep4173, yyq4173, yy2arr4173 + const yyr4173 bool = false + yyq4173[0] = x.Kind != "" + yyq4173[1] = x.APIVersion != "" + yyq4173[2] = true + var yynn4173 int + if yyr4173 || yy2arr4173 { r.EncodeArrayStart(4) } else { - yynn4199 = 1 - for _, b := range yyq4199 { + yynn4173 = 1 + for _, b := range yyq4173 { if b { - yynn4199++ + yynn4173++ } } - r.EncodeMapStart(yynn4199) - yynn4199 = 0 + r.EncodeMapStart(yynn4173) + yynn4173 = 0 } - if yyr4199 || yy2arr4199 { + if yyr4173 || yy2arr4173 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4199[0] { - yym4201 := z.EncBinary() - _ = yym4201 + if yyq4173[0] { + yym4175 := z.EncBinary() + _ = yym4175 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -52726,23 +52427,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4199[0] { + if yyq4173[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4202 := z.EncBinary() - _ = yym4202 + yym4176 := z.EncBinary() + _ = yym4176 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4199 || yy2arr4199 { + if yyr4173 || yy2arr4173 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4199[1] { - yym4204 := z.EncBinary() - _ = yym4204 + if yyq4173[1] { + yym4178 := z.EncBinary() + _ = yym4178 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -52751,54 +52452,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4199[1] { + if yyq4173[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4205 := z.EncBinary() - _ = yym4205 + yym4179 := z.EncBinary() + _ = yym4179 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4199 || yy2arr4199 { + if yyr4173 || yy2arr4173 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4199[2] { - yy4207 := &x.ListMeta - yym4208 := z.EncBinary() - _ = yym4208 + if yyq4173[2] { + yy4181 := &x.ListMeta + yym4182 := z.EncBinary() + _ = yym4182 if false { - } else if z.HasExtensions() && z.EncExt(yy4207) { + } else if z.HasExtensions() && z.EncExt(yy4181) { } else { - z.EncFallback(yy4207) + z.EncFallback(yy4181) } } else { r.EncodeNil() } } else { - if yyq4199[2] { + if yyq4173[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4209 := &x.ListMeta - yym4210 := z.EncBinary() - _ = yym4210 + yy4183 := &x.ListMeta + yym4184 := z.EncBinary() + _ = yym4184 if false { - } else if z.HasExtensions() && z.EncExt(yy4209) { + } else if z.HasExtensions() && z.EncExt(yy4183) { } else { - z.EncFallback(yy4209) + z.EncFallback(yy4183) } } } - if yyr4199 || yy2arr4199 { + if yyr4173 || yy2arr4173 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4212 := z.EncBinary() - _ = yym4212 + yym4186 := z.EncBinary() + _ = yym4186 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -52811,15 +52512,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4213 := z.EncBinary() - _ = yym4213 + yym4187 := z.EncBinary() + _ = yym4187 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr4199 || yy2arr4199 { + if yyr4173 || yy2arr4173 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52832,25 +52533,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4214 := z.DecBinary() - _ = yym4214 + yym4188 := z.DecBinary() + _ = yym4188 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4215 := r.ContainerType() - if yyct4215 == codecSelferValueTypeMap1234 { - yyl4215 := r.ReadMapStart() - if yyl4215 == 0 { + yyct4189 := r.ContainerType() + if yyct4189 == codecSelferValueTypeMap1234 { + yyl4189 := r.ReadMapStart() + if yyl4189 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4215, d) + x.codecDecodeSelfFromMap(yyl4189, d) } - } else if yyct4215 == codecSelferValueTypeArray1234 { - yyl4215 := r.ReadArrayStart() - if yyl4215 == 0 { + } else if yyct4189 == codecSelferValueTypeArray1234 { + yyl4189 := r.ReadArrayStart() + if yyl4189 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4215, d) + x.codecDecodeSelfFromArray(yyl4189, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52862,12 +52563,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4216Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4216Slc - var yyhl4216 bool = l >= 0 - for yyj4216 := 0; ; yyj4216++ { - if yyhl4216 { - if yyj4216 >= l { + var yys4190Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4190Slc + var yyhl4190 bool = l >= 0 + for yyj4190 := 0; ; yyj4190++ { + if yyhl4190 { + if yyj4190 >= l { break } } else { @@ -52876,10 +52577,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4216Slc = r.DecodeBytes(yys4216Slc, true, true) - yys4216 := string(yys4216Slc) + yys4190Slc = r.DecodeBytes(yys4190Slc, true, true) + yys4190 := string(yys4190Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4216 { + switch yys4190 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52896,31 +52597,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4219 := &x.ListMeta - yym4220 := z.DecBinary() - _ = yym4220 + yyv4193 := &x.ListMeta + yym4194 := z.DecBinary() + _ = yym4194 if false { - } else if z.HasExtensions() && z.DecExt(yyv4219) { + } else if z.HasExtensions() && z.DecExt(yyv4193) { } else { - z.DecFallback(yyv4219, false) + z.DecFallback(yyv4193, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4221 := &x.Items - yym4222 := z.DecBinary() - _ = yym4222 + yyv4195 := &x.Items + yym4196 := z.DecBinary() + _ = yym4196 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4221), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4195), d) } } default: - z.DecStructFieldNotFound(-1, yys4216) - } // end switch yys4216 - } // end for yyj4216 + z.DecStructFieldNotFound(-1, yys4190) + } // end switch yys4190 + } // end for yyj4190 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52928,16 +52629,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4223 int - var yyb4223 bool - var yyhl4223 bool = l >= 0 - yyj4223++ - if yyhl4223 { - yyb4223 = yyj4223 > l + var yyj4197 int + var yyb4197 bool + var yyhl4197 bool = l >= 0 + yyj4197++ + if yyhl4197 { + yyb4197 = yyj4197 > l } else { - yyb4223 = r.CheckBreak() + yyb4197 = r.CheckBreak() } - if yyb4223 { + if yyb4197 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52947,13 +52648,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj4223++ - if yyhl4223 { - yyb4223 = yyj4223 > l + yyj4197++ + if yyhl4197 { + yyb4197 = yyj4197 > l } else { - yyb4223 = r.CheckBreak() + yyb4197 = r.CheckBreak() } - if yyb4223 { + if yyb4197 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52963,13 +52664,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj4223++ - if yyhl4223 { - yyb4223 = yyj4223 > l + yyj4197++ + if yyhl4197 { + yyb4197 = yyj4197 > l } else { - yyb4223 = r.CheckBreak() + yyb4197 = r.CheckBreak() } - if yyb4223 { + if yyb4197 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52977,22 +52678,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4226 := &x.ListMeta - yym4227 := z.DecBinary() - _ = yym4227 + yyv4200 := &x.ListMeta + yym4201 := z.DecBinary() + _ = yym4201 if false { - } else if z.HasExtensions() && z.DecExt(yyv4226) { + } else if z.HasExtensions() && z.DecExt(yyv4200) { } else { - z.DecFallback(yyv4226, false) + z.DecFallback(yyv4200, false) } } - yyj4223++ - if yyhl4223 { - yyb4223 = yyj4223 > l + yyj4197++ + if yyhl4197 { + yyb4197 = yyj4197 > l } else { - yyb4223 = r.CheckBreak() + yyb4197 = r.CheckBreak() } - if yyb4223 { + if yyb4197 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53000,26 +52701,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4228 := &x.Items - yym4229 := z.DecBinary() - _ = yym4229 + yyv4202 := &x.Items + yym4203 := z.DecBinary() + _ = yym4203 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4228), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4202), d) } } for { - yyj4223++ - if yyhl4223 { - yyb4223 = yyj4223 > l + yyj4197++ + if yyhl4197 { + yyb4197 = yyj4197 > l } else { - yyb4223 = r.CheckBreak() + yyb4197 = r.CheckBreak() } - if yyb4223 { + if yyb4197 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4223-1, "") + z.DecStructFieldNotFound(yyj4197-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53031,40 +52732,40 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4230 := z.EncBinary() - _ = yym4230 + yym4204 := z.EncBinary() + _ = yym4204 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4231 := !z.EncBinary() - yy2arr4231 := z.EncBasicHandle().StructToArray - var yyq4231 [6]bool - _, _, _ = yysep4231, yyq4231, yy2arr4231 - const yyr4231 bool = false - yyq4231[0] = x.Kind != "" - yyq4231[1] = x.APIVersion != "" - yyq4231[2] = true - yyq4231[3] = len(x.Data) != 0 - yyq4231[4] = len(x.StringData) != 0 - yyq4231[5] = x.Type != "" - var yynn4231 int - if yyr4231 || yy2arr4231 { + yysep4205 := !z.EncBinary() + yy2arr4205 := z.EncBasicHandle().StructToArray + var yyq4205 [6]bool + _, _, _ = yysep4205, yyq4205, yy2arr4205 + const yyr4205 bool = false + yyq4205[0] = x.Kind != "" + yyq4205[1] = x.APIVersion != "" + yyq4205[2] = true + yyq4205[3] = len(x.Data) != 0 + yyq4205[4] = len(x.StringData) != 0 + yyq4205[5] = x.Type != "" + var yynn4205 int + if yyr4205 || yy2arr4205 { r.EncodeArrayStart(6) } else { - yynn4231 = 0 - for _, b := range yyq4231 { + yynn4205 = 0 + for _, b := range yyq4205 { if b { - yynn4231++ + yynn4205++ } } - r.EncodeMapStart(yynn4231) - yynn4231 = 0 + r.EncodeMapStart(yynn4205) + yynn4205 = 0 } - if yyr4231 || yy2arr4231 { + if yyr4205 || yy2arr4205 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4231[0] { - yym4233 := z.EncBinary() - _ = yym4233 + if yyq4205[0] { + yym4207 := z.EncBinary() + _ = yym4207 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53073,23 +52774,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4231[0] { + if yyq4205[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4234 := z.EncBinary() - _ = yym4234 + yym4208 := z.EncBinary() + _ = yym4208 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4231 || yy2arr4231 { + if yyr4205 || yy2arr4205 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4231[1] { - yym4236 := z.EncBinary() - _ = yym4236 + if yyq4205[1] { + yym4210 := z.EncBinary() + _ = yym4210 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53098,43 +52799,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4231[1] { + if yyq4205[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4237 := z.EncBinary() - _ = yym4237 + yym4211 := z.EncBinary() + _ = yym4211 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4231 || yy2arr4231 { + if yyr4205 || yy2arr4205 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4231[2] { - yy4239 := &x.ObjectMeta - yy4239.CodecEncodeSelf(e) + if yyq4205[2] { + yy4213 := &x.ObjectMeta + yy4213.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4231[2] { + if yyq4205[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4240 := &x.ObjectMeta - yy4240.CodecEncodeSelf(e) + yy4214 := &x.ObjectMeta + yy4214.CodecEncodeSelf(e) } } - if yyr4231 || yy2arr4231 { + if yyr4205 || yy2arr4205 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4231[3] { + if yyq4205[3] { if x.Data == nil { r.EncodeNil() } else { - yym4242 := z.EncBinary() - _ = yym4242 + yym4216 := z.EncBinary() + _ = yym4216 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -53144,15 +52845,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4231[3] { + if yyq4205[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4243 := z.EncBinary() - _ = yym4243 + yym4217 := z.EncBinary() + _ = yym4217 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -53160,14 +52861,14 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4231 || yy2arr4231 { + if yyr4205 || yy2arr4205 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4231[4] { + if yyq4205[4] { if x.StringData == nil { r.EncodeNil() } else { - yym4245 := z.EncBinary() - _ = yym4245 + yym4219 := z.EncBinary() + _ = yym4219 if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) @@ -53177,15 +52878,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4231[4] { + if yyq4205[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stringData")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StringData == nil { r.EncodeNil() } else { - yym4246 := z.EncBinary() - _ = yym4246 + yym4220 := z.EncBinary() + _ = yym4220 if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) @@ -53193,22 +52894,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4231 || yy2arr4231 { + if yyr4205 || yy2arr4205 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4231[5] { + if yyq4205[5] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4231[5] { + if yyq4205[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4231 || yy2arr4231 { + if yyr4205 || yy2arr4205 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53221,25 +52922,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4248 := z.DecBinary() - _ = yym4248 + yym4222 := z.DecBinary() + _ = yym4222 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4249 := r.ContainerType() - if yyct4249 == codecSelferValueTypeMap1234 { - yyl4249 := r.ReadMapStart() - if yyl4249 == 0 { + yyct4223 := r.ContainerType() + if yyct4223 == codecSelferValueTypeMap1234 { + yyl4223 := r.ReadMapStart() + if yyl4223 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4249, d) + x.codecDecodeSelfFromMap(yyl4223, d) } - } else if yyct4249 == codecSelferValueTypeArray1234 { - yyl4249 := r.ReadArrayStart() - if yyl4249 == 0 { + } else if yyct4223 == codecSelferValueTypeArray1234 { + yyl4223 := r.ReadArrayStart() + if yyl4223 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4249, d) + x.codecDecodeSelfFromArray(yyl4223, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53251,12 +52952,12 @@ func (x *Secret) 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 yys4224Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4224Slc + var yyhl4224 bool = l >= 0 + for yyj4224 := 0; ; yyj4224++ { + if yyhl4224 { + if yyj4224 >= l { break } } else { @@ -53265,10 +52966,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4250Slc = r.DecodeBytes(yys4250Slc, true, true) - yys4250 := string(yys4250Slc) + yys4224Slc = r.DecodeBytes(yys4224Slc, true, true) + yys4224 := string(yys4224Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4250 { + switch yys4224 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53285,31 +52986,31 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4253 := &x.ObjectMeta - yyv4253.CodecDecodeSelf(d) + yyv4227 := &x.ObjectMeta + yyv4227.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4254 := &x.Data - yym4255 := z.DecBinary() - _ = yym4255 + yyv4228 := &x.Data + yym4229 := z.DecBinary() + _ = yym4229 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4254), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4228), d) } } case "stringData": if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4256 := &x.StringData - yym4257 := z.DecBinary() - _ = yym4257 + yyv4230 := &x.StringData + yym4231 := z.DecBinary() + _ = yym4231 if false { } else { - z.F.DecMapStringStringX(yyv4256, false, d) + z.F.DecMapStringStringX(yyv4230, false, d) } } case "type": @@ -53319,9 +53020,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4250) - } // end switch yys4250 - } // end for yyj4250 + z.DecStructFieldNotFound(-1, yys4224) + } // end switch yys4224 + } // end for yyj4224 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53329,16 +53030,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4259 int - var yyb4259 bool - var yyhl4259 bool = l >= 0 - yyj4259++ - if yyhl4259 { - yyb4259 = yyj4259 > l + var yyj4233 int + var yyb4233 bool + var yyhl4233 bool = l >= 0 + yyj4233++ + if yyhl4233 { + yyb4233 = yyj4233 > l } else { - yyb4259 = r.CheckBreak() + yyb4233 = r.CheckBreak() } - if yyb4259 { + if yyb4233 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53348,13 +53049,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4259++ - if yyhl4259 { - yyb4259 = yyj4259 > l + yyj4233++ + if yyhl4233 { + yyb4233 = yyj4233 > l } else { - yyb4259 = r.CheckBreak() + yyb4233 = r.CheckBreak() } - if yyb4259 { + if yyb4233 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53364,13 +53065,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4259++ - if yyhl4259 { - yyb4259 = yyj4259 > l + yyj4233++ + if yyhl4233 { + yyb4233 = yyj4233 > l } else { - yyb4259 = r.CheckBreak() + yyb4233 = r.CheckBreak() } - if yyb4259 { + if yyb4233 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53378,16 +53079,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4262 := &x.ObjectMeta - yyv4262.CodecDecodeSelf(d) + yyv4236 := &x.ObjectMeta + yyv4236.CodecDecodeSelf(d) } - yyj4259++ - if yyhl4259 { - yyb4259 = yyj4259 > l + yyj4233++ + if yyhl4233 { + yyb4233 = yyj4233 > l } else { - yyb4259 = r.CheckBreak() + yyb4233 = r.CheckBreak() } - if yyb4259 { + if yyb4233 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53395,21 +53096,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4263 := &x.Data - yym4264 := z.DecBinary() - _ = yym4264 + yyv4237 := &x.Data + yym4238 := z.DecBinary() + _ = yym4238 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4263), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4237), d) } } - yyj4259++ - if yyhl4259 { - yyb4259 = yyj4259 > l + yyj4233++ + if yyhl4233 { + yyb4233 = yyj4233 > l } else { - yyb4259 = r.CheckBreak() + yyb4233 = r.CheckBreak() } - if yyb4259 { + if yyb4233 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53417,21 +53118,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4265 := &x.StringData - yym4266 := z.DecBinary() - _ = yym4266 + yyv4239 := &x.StringData + yym4240 := z.DecBinary() + _ = yym4240 if false { } else { - z.F.DecMapStringStringX(yyv4265, false, d) + z.F.DecMapStringStringX(yyv4239, false, d) } } - yyj4259++ - if yyhl4259 { - yyb4259 = yyj4259 > l + yyj4233++ + if yyhl4233 { + yyb4233 = yyj4233 > l } else { - yyb4259 = r.CheckBreak() + yyb4233 = r.CheckBreak() } - if yyb4259 { + if yyb4233 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53442,17 +53143,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj4259++ - if yyhl4259 { - yyb4259 = yyj4259 > l + yyj4233++ + if yyhl4233 { + yyb4233 = yyj4233 > l } else { - yyb4259 = r.CheckBreak() + yyb4233 = r.CheckBreak() } - if yyb4259 { + if yyb4233 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4259-1, "") + z.DecStructFieldNotFound(yyj4233-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53461,8 +53162,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4268 := z.EncBinary() - _ = yym4268 + yym4242 := z.EncBinary() + _ = yym4242 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -53474,8 +53175,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4269 := z.DecBinary() - _ = yym4269 + yym4243 := z.DecBinary() + _ = yym4243 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -53490,37 +53191,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4270 := z.EncBinary() - _ = yym4270 + yym4244 := z.EncBinary() + _ = yym4244 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4271 := !z.EncBinary() - yy2arr4271 := z.EncBasicHandle().StructToArray - var yyq4271 [4]bool - _, _, _ = yysep4271, yyq4271, yy2arr4271 - const yyr4271 bool = false - yyq4271[0] = x.Kind != "" - yyq4271[1] = x.APIVersion != "" - yyq4271[2] = true - var yynn4271 int - if yyr4271 || yy2arr4271 { + yysep4245 := !z.EncBinary() + yy2arr4245 := z.EncBasicHandle().StructToArray + var yyq4245 [4]bool + _, _, _ = yysep4245, yyq4245, yy2arr4245 + const yyr4245 bool = false + yyq4245[0] = x.Kind != "" + yyq4245[1] = x.APIVersion != "" + yyq4245[2] = true + var yynn4245 int + if yyr4245 || yy2arr4245 { r.EncodeArrayStart(4) } else { - yynn4271 = 1 - for _, b := range yyq4271 { + yynn4245 = 1 + for _, b := range yyq4245 { if b { - yynn4271++ + yynn4245++ } } - r.EncodeMapStart(yynn4271) - yynn4271 = 0 + r.EncodeMapStart(yynn4245) + yynn4245 = 0 } - if yyr4271 || yy2arr4271 { + if yyr4245 || yy2arr4245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4271[0] { - yym4273 := z.EncBinary() - _ = yym4273 + if yyq4245[0] { + yym4247 := z.EncBinary() + _ = yym4247 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53529,23 +53230,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4271[0] { + if yyq4245[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4274 := z.EncBinary() - _ = yym4274 + yym4248 := z.EncBinary() + _ = yym4248 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4271 || yy2arr4271 { + if yyr4245 || yy2arr4245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4271[1] { - yym4276 := z.EncBinary() - _ = yym4276 + if yyq4245[1] { + yym4250 := z.EncBinary() + _ = yym4250 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53554,54 +53255,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4271[1] { + if yyq4245[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4277 := z.EncBinary() - _ = yym4277 + yym4251 := z.EncBinary() + _ = yym4251 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4271 || yy2arr4271 { + if yyr4245 || yy2arr4245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4271[2] { - yy4279 := &x.ListMeta - yym4280 := z.EncBinary() - _ = yym4280 + if yyq4245[2] { + yy4253 := &x.ListMeta + yym4254 := z.EncBinary() + _ = yym4254 if false { - } else if z.HasExtensions() && z.EncExt(yy4279) { + } else if z.HasExtensions() && z.EncExt(yy4253) { } else { - z.EncFallback(yy4279) + z.EncFallback(yy4253) } } else { r.EncodeNil() } } else { - if yyq4271[2] { + if yyq4245[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4281 := &x.ListMeta - yym4282 := z.EncBinary() - _ = yym4282 + yy4255 := &x.ListMeta + yym4256 := z.EncBinary() + _ = yym4256 if false { - } else if z.HasExtensions() && z.EncExt(yy4281) { + } else if z.HasExtensions() && z.EncExt(yy4255) { } else { - z.EncFallback(yy4281) + z.EncFallback(yy4255) } } } - if yyr4271 || yy2arr4271 { + if yyr4245 || yy2arr4245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4284 := z.EncBinary() - _ = yym4284 + yym4258 := z.EncBinary() + _ = yym4258 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -53614,15 +53315,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4285 := z.EncBinary() - _ = yym4285 + yym4259 := z.EncBinary() + _ = yym4259 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4271 || yy2arr4271 { + if yyr4245 || yy2arr4245 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53635,25 +53336,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4286 := z.DecBinary() - _ = yym4286 + yym4260 := z.DecBinary() + _ = yym4260 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4287 := r.ContainerType() - if yyct4287 == codecSelferValueTypeMap1234 { - yyl4287 := r.ReadMapStart() - if yyl4287 == 0 { + yyct4261 := r.ContainerType() + if yyct4261 == codecSelferValueTypeMap1234 { + yyl4261 := r.ReadMapStart() + if yyl4261 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4287, d) + x.codecDecodeSelfFromMap(yyl4261, d) } - } else if yyct4287 == codecSelferValueTypeArray1234 { - yyl4287 := r.ReadArrayStart() - if yyl4287 == 0 { + } else if yyct4261 == codecSelferValueTypeArray1234 { + yyl4261 := r.ReadArrayStart() + if yyl4261 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4287, d) + x.codecDecodeSelfFromArray(yyl4261, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53665,12 +53366,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4288Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4288Slc - var yyhl4288 bool = l >= 0 - for yyj4288 := 0; ; yyj4288++ { - if yyhl4288 { - if yyj4288 >= l { + var yys4262Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4262Slc + var yyhl4262 bool = l >= 0 + for yyj4262 := 0; ; yyj4262++ { + if yyhl4262 { + if yyj4262 >= l { break } } else { @@ -53679,10 +53380,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4288Slc = r.DecodeBytes(yys4288Slc, true, true) - yys4288 := string(yys4288Slc) + yys4262Slc = r.DecodeBytes(yys4262Slc, true, true) + yys4262 := string(yys4262Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4288 { + switch yys4262 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53699,31 +53400,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4291 := &x.ListMeta - yym4292 := z.DecBinary() - _ = yym4292 + yyv4265 := &x.ListMeta + yym4266 := z.DecBinary() + _ = yym4266 if false { - } else if z.HasExtensions() && z.DecExt(yyv4291) { + } else if z.HasExtensions() && z.DecExt(yyv4265) { } else { - z.DecFallback(yyv4291, false) + z.DecFallback(yyv4265, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4293 := &x.Items - yym4294 := z.DecBinary() - _ = yym4294 + yyv4267 := &x.Items + yym4268 := z.DecBinary() + _ = yym4268 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4293), d) + h.decSliceSecret((*[]Secret)(yyv4267), d) } } default: - z.DecStructFieldNotFound(-1, yys4288) - } // end switch yys4288 - } // end for yyj4288 + z.DecStructFieldNotFound(-1, yys4262) + } // end switch yys4262 + } // end for yyj4262 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53731,16 +53432,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4295 int - var yyb4295 bool - var yyhl4295 bool = l >= 0 - yyj4295++ - if yyhl4295 { - yyb4295 = yyj4295 > l + var yyj4269 int + var yyb4269 bool + var yyhl4269 bool = l >= 0 + yyj4269++ + if yyhl4269 { + yyb4269 = yyj4269 > l } else { - yyb4295 = r.CheckBreak() + yyb4269 = r.CheckBreak() } - if yyb4295 { + if yyb4269 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53750,13 +53451,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4295++ - if yyhl4295 { - yyb4295 = yyj4295 > l + yyj4269++ + if yyhl4269 { + yyb4269 = yyj4269 > l } else { - yyb4295 = r.CheckBreak() + yyb4269 = r.CheckBreak() } - if yyb4295 { + if yyb4269 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53766,13 +53467,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4295++ - if yyhl4295 { - yyb4295 = yyj4295 > l + yyj4269++ + if yyhl4269 { + yyb4269 = yyj4269 > l } else { - yyb4295 = r.CheckBreak() + yyb4269 = r.CheckBreak() } - if yyb4295 { + if yyb4269 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53780,22 +53481,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4298 := &x.ListMeta - yym4299 := z.DecBinary() - _ = yym4299 + yyv4272 := &x.ListMeta + yym4273 := z.DecBinary() + _ = yym4273 if false { - } else if z.HasExtensions() && z.DecExt(yyv4298) { + } else if z.HasExtensions() && z.DecExt(yyv4272) { } else { - z.DecFallback(yyv4298, false) + z.DecFallback(yyv4272, false) } } - yyj4295++ - if yyhl4295 { - yyb4295 = yyj4295 > l + yyj4269++ + if yyhl4269 { + yyb4269 = yyj4269 > l } else { - yyb4295 = r.CheckBreak() + yyb4269 = r.CheckBreak() } - if yyb4295 { + if yyb4269 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53803,26 +53504,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4300 := &x.Items - yym4301 := z.DecBinary() - _ = yym4301 + yyv4274 := &x.Items + yym4275 := z.DecBinary() + _ = yym4275 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4300), d) + h.decSliceSecret((*[]Secret)(yyv4274), d) } } for { - yyj4295++ - if yyhl4295 { - yyb4295 = yyj4295 > l + yyj4269++ + if yyhl4269 { + yyb4269 = yyj4269 > l } else { - yyb4295 = r.CheckBreak() + yyb4269 = r.CheckBreak() } - if yyb4295 { + if yyb4269 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4295-1, "") + z.DecStructFieldNotFound(yyj4269-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53834,38 +53535,38 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4302 := z.EncBinary() - _ = yym4302 + yym4276 := z.EncBinary() + _ = yym4276 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4303 := !z.EncBinary() - yy2arr4303 := z.EncBasicHandle().StructToArray - var yyq4303 [4]bool - _, _, _ = yysep4303, yyq4303, yy2arr4303 - const yyr4303 bool = false - yyq4303[0] = x.Kind != "" - yyq4303[1] = x.APIVersion != "" - yyq4303[2] = true - yyq4303[3] = len(x.Data) != 0 - var yynn4303 int - if yyr4303 || yy2arr4303 { + yysep4277 := !z.EncBinary() + yy2arr4277 := z.EncBasicHandle().StructToArray + var yyq4277 [4]bool + _, _, _ = yysep4277, yyq4277, yy2arr4277 + const yyr4277 bool = false + yyq4277[0] = x.Kind != "" + yyq4277[1] = x.APIVersion != "" + yyq4277[2] = true + yyq4277[3] = len(x.Data) != 0 + var yynn4277 int + if yyr4277 || yy2arr4277 { r.EncodeArrayStart(4) } else { - yynn4303 = 0 - for _, b := range yyq4303 { + yynn4277 = 0 + for _, b := range yyq4277 { if b { - yynn4303++ + yynn4277++ } } - r.EncodeMapStart(yynn4303) - yynn4303 = 0 + r.EncodeMapStart(yynn4277) + yynn4277 = 0 } - if yyr4303 || yy2arr4303 { + if yyr4277 || yy2arr4277 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4303[0] { - yym4305 := z.EncBinary() - _ = yym4305 + if yyq4277[0] { + yym4279 := z.EncBinary() + _ = yym4279 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -53874,23 +53575,23 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4303[0] { + if yyq4277[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4306 := z.EncBinary() - _ = yym4306 + yym4280 := z.EncBinary() + _ = yym4280 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4303 || yy2arr4303 { + if yyr4277 || yy2arr4277 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4303[1] { - yym4308 := z.EncBinary() - _ = yym4308 + if yyq4277[1] { + yym4282 := z.EncBinary() + _ = yym4282 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -53899,43 +53600,43 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4303[1] { + if yyq4277[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4309 := z.EncBinary() - _ = yym4309 + yym4283 := z.EncBinary() + _ = yym4283 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4303 || yy2arr4303 { + if yyr4277 || yy2arr4277 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4303[2] { - yy4311 := &x.ObjectMeta - yy4311.CodecEncodeSelf(e) + if yyq4277[2] { + yy4285 := &x.ObjectMeta + yy4285.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4303[2] { + if yyq4277[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4312 := &x.ObjectMeta - yy4312.CodecEncodeSelf(e) + yy4286 := &x.ObjectMeta + yy4286.CodecEncodeSelf(e) } } - if yyr4303 || yy2arr4303 { + if yyr4277 || yy2arr4277 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4303[3] { + if yyq4277[3] { if x.Data == nil { r.EncodeNil() } else { - yym4314 := z.EncBinary() - _ = yym4314 + yym4288 := z.EncBinary() + _ = yym4288 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -53945,15 +53646,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4303[3] { + if yyq4277[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4315 := z.EncBinary() - _ = yym4315 + yym4289 := z.EncBinary() + _ = yym4289 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -53961,7 +53662,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4303 || yy2arr4303 { + if yyr4277 || yy2arr4277 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53974,25 +53675,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4316 := z.DecBinary() - _ = yym4316 + yym4290 := z.DecBinary() + _ = yym4290 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4317 := r.ContainerType() - if yyct4317 == codecSelferValueTypeMap1234 { - yyl4317 := r.ReadMapStart() - if yyl4317 == 0 { + yyct4291 := r.ContainerType() + if yyct4291 == codecSelferValueTypeMap1234 { + yyl4291 := r.ReadMapStart() + if yyl4291 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4317, d) + x.codecDecodeSelfFromMap(yyl4291, d) } - } else if yyct4317 == codecSelferValueTypeArray1234 { - yyl4317 := r.ReadArrayStart() - if yyl4317 == 0 { + } else if yyct4291 == codecSelferValueTypeArray1234 { + yyl4291 := r.ReadArrayStart() + if yyl4291 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4317, d) + x.codecDecodeSelfFromArray(yyl4291, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54004,12 +53705,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4318Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4318Slc - var yyhl4318 bool = l >= 0 - for yyj4318 := 0; ; yyj4318++ { - if yyhl4318 { - if yyj4318 >= l { + var yys4292Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4292Slc + var yyhl4292 bool = l >= 0 + for yyj4292 := 0; ; yyj4292++ { + if yyhl4292 { + if yyj4292 >= l { break } } else { @@ -54018,10 +53719,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4318Slc = r.DecodeBytes(yys4318Slc, true, true) - yys4318 := string(yys4318Slc) + yys4292Slc = r.DecodeBytes(yys4292Slc, true, true) + yys4292 := string(yys4292Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4318 { + switch yys4292 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54038,25 +53739,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4321 := &x.ObjectMeta - yyv4321.CodecDecodeSelf(d) + yyv4295 := &x.ObjectMeta + yyv4295.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4322 := &x.Data - yym4323 := z.DecBinary() - _ = yym4323 + yyv4296 := &x.Data + yym4297 := z.DecBinary() + _ = yym4297 if false { } else { - z.F.DecMapStringStringX(yyv4322, false, d) + z.F.DecMapStringStringX(yyv4296, false, d) } } default: - z.DecStructFieldNotFound(-1, yys4318) - } // end switch yys4318 - } // end for yyj4318 + z.DecStructFieldNotFound(-1, yys4292) + } // end switch yys4292 + } // end for yyj4292 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54064,16 +53765,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4324 int - var yyb4324 bool - var yyhl4324 bool = l >= 0 - yyj4324++ - if yyhl4324 { - yyb4324 = yyj4324 > l + var yyj4298 int + var yyb4298 bool + var yyhl4298 bool = l >= 0 + yyj4298++ + if yyhl4298 { + yyb4298 = yyj4298 > l } else { - yyb4324 = r.CheckBreak() + yyb4298 = r.CheckBreak() } - if yyb4324 { + if yyb4298 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54083,13 +53784,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4324++ - if yyhl4324 { - yyb4324 = yyj4324 > l + yyj4298++ + if yyhl4298 { + yyb4298 = yyj4298 > l } else { - yyb4324 = r.CheckBreak() + yyb4298 = r.CheckBreak() } - if yyb4324 { + if yyb4298 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54099,13 +53800,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4324++ - if yyhl4324 { - yyb4324 = yyj4324 > l + yyj4298++ + if yyhl4298 { + yyb4298 = yyj4298 > l } else { - yyb4324 = r.CheckBreak() + yyb4298 = r.CheckBreak() } - if yyb4324 { + if yyb4298 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54113,16 +53814,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4327 := &x.ObjectMeta - yyv4327.CodecDecodeSelf(d) + yyv4301 := &x.ObjectMeta + yyv4301.CodecDecodeSelf(d) } - yyj4324++ - if yyhl4324 { - yyb4324 = yyj4324 > l + yyj4298++ + if yyhl4298 { + yyb4298 = yyj4298 > l } else { - yyb4324 = r.CheckBreak() + yyb4298 = r.CheckBreak() } - if yyb4324 { + if yyb4298 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54130,26 +53831,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4328 := &x.Data - yym4329 := z.DecBinary() - _ = yym4329 + yyv4302 := &x.Data + yym4303 := z.DecBinary() + _ = yym4303 if false { } else { - z.F.DecMapStringStringX(yyv4328, false, d) + z.F.DecMapStringStringX(yyv4302, false, d) } } for { - yyj4324++ - if yyhl4324 { - yyb4324 = yyj4324 > l + yyj4298++ + if yyhl4298 { + yyb4298 = yyj4298 > l } else { - yyb4324 = r.CheckBreak() + yyb4298 = r.CheckBreak() } - if yyb4324 { + if yyb4298 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4324-1, "") + z.DecStructFieldNotFound(yyj4298-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54161,37 +53862,37 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4330 := z.EncBinary() - _ = yym4330 + yym4304 := z.EncBinary() + _ = yym4304 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4331 := !z.EncBinary() - yy2arr4331 := z.EncBasicHandle().StructToArray - var yyq4331 [4]bool - _, _, _ = yysep4331, yyq4331, yy2arr4331 - const yyr4331 bool = false - yyq4331[0] = x.Kind != "" - yyq4331[1] = x.APIVersion != "" - yyq4331[2] = true - var yynn4331 int - if yyr4331 || yy2arr4331 { + yysep4305 := !z.EncBinary() + yy2arr4305 := z.EncBasicHandle().StructToArray + var yyq4305 [4]bool + _, _, _ = yysep4305, yyq4305, yy2arr4305 + const yyr4305 bool = false + yyq4305[0] = x.Kind != "" + yyq4305[1] = x.APIVersion != "" + yyq4305[2] = true + var yynn4305 int + if yyr4305 || yy2arr4305 { r.EncodeArrayStart(4) } else { - yynn4331 = 1 - for _, b := range yyq4331 { + yynn4305 = 1 + for _, b := range yyq4305 { if b { - yynn4331++ + yynn4305++ } } - r.EncodeMapStart(yynn4331) - yynn4331 = 0 + r.EncodeMapStart(yynn4305) + yynn4305 = 0 } - if yyr4331 || yy2arr4331 { + if yyr4305 || yy2arr4305 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4331[0] { - yym4333 := z.EncBinary() - _ = yym4333 + if yyq4305[0] { + yym4307 := z.EncBinary() + _ = yym4307 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -54200,23 +53901,23 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4331[0] { + if yyq4305[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4334 := z.EncBinary() - _ = yym4334 + yym4308 := z.EncBinary() + _ = yym4308 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4331 || yy2arr4331 { + if yyr4305 || yy2arr4305 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4331[1] { - yym4336 := z.EncBinary() - _ = yym4336 + if yyq4305[1] { + yym4310 := z.EncBinary() + _ = yym4310 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -54225,54 +53926,54 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4331[1] { + if yyq4305[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4337 := z.EncBinary() - _ = yym4337 + yym4311 := z.EncBinary() + _ = yym4311 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4331 || yy2arr4331 { + if yyr4305 || yy2arr4305 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4331[2] { - yy4339 := &x.ListMeta - yym4340 := z.EncBinary() - _ = yym4340 + if yyq4305[2] { + yy4313 := &x.ListMeta + yym4314 := z.EncBinary() + _ = yym4314 if false { - } else if z.HasExtensions() && z.EncExt(yy4339) { + } else if z.HasExtensions() && z.EncExt(yy4313) { } else { - z.EncFallback(yy4339) + z.EncFallback(yy4313) } } else { r.EncodeNil() } } else { - if yyq4331[2] { + if yyq4305[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4341 := &x.ListMeta - yym4342 := z.EncBinary() - _ = yym4342 + yy4315 := &x.ListMeta + yym4316 := z.EncBinary() + _ = yym4316 if false { - } else if z.HasExtensions() && z.EncExt(yy4341) { + } else if z.HasExtensions() && z.EncExt(yy4315) { } else { - z.EncFallback(yy4341) + z.EncFallback(yy4315) } } } - if yyr4331 || yy2arr4331 { + if yyr4305 || yy2arr4305 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4344 := z.EncBinary() - _ = yym4344 + yym4318 := z.EncBinary() + _ = yym4318 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -54285,15 +53986,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4345 := z.EncBinary() - _ = yym4345 + yym4319 := z.EncBinary() + _ = yym4319 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) } } } - if yyr4331 || yy2arr4331 { + if yyr4305 || yy2arr4305 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54306,25 +54007,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4346 := z.DecBinary() - _ = yym4346 + yym4320 := z.DecBinary() + _ = yym4320 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4347 := r.ContainerType() - if yyct4347 == codecSelferValueTypeMap1234 { - yyl4347 := r.ReadMapStart() - if yyl4347 == 0 { + yyct4321 := r.ContainerType() + if yyct4321 == codecSelferValueTypeMap1234 { + yyl4321 := r.ReadMapStart() + if yyl4321 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4347, d) + x.codecDecodeSelfFromMap(yyl4321, d) } - } else if yyct4347 == codecSelferValueTypeArray1234 { - yyl4347 := r.ReadArrayStart() - if yyl4347 == 0 { + } else if yyct4321 == codecSelferValueTypeArray1234 { + yyl4321 := r.ReadArrayStart() + if yyl4321 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4347, d) + x.codecDecodeSelfFromArray(yyl4321, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54336,12 +54037,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4348Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4348Slc - var yyhl4348 bool = l >= 0 - for yyj4348 := 0; ; yyj4348++ { - if yyhl4348 { - if yyj4348 >= l { + var yys4322Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4322Slc + var yyhl4322 bool = l >= 0 + for yyj4322 := 0; ; yyj4322++ { + if yyhl4322 { + if yyj4322 >= l { break } } else { @@ -54350,10 +54051,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4348Slc = r.DecodeBytes(yys4348Slc, true, true) - yys4348 := string(yys4348Slc) + yys4322Slc = r.DecodeBytes(yys4322Slc, true, true) + yys4322 := string(yys4322Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4348 { + switch yys4322 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54370,35 +54071,353 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv4351 := &x.ListMeta - yym4352 := z.DecBinary() - _ = yym4352 + yyv4325 := &x.ListMeta + yym4326 := z.DecBinary() + _ = yym4326 if false { - } else if z.HasExtensions() && z.DecExt(yyv4351) { + } else if z.HasExtensions() && z.DecExt(yyv4325) { } else { - z.DecFallback(yyv4351, false) + z.DecFallback(yyv4325, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4353 := &x.Items - yym4354 := z.DecBinary() - _ = yym4354 + yyv4327 := &x.Items + yym4328 := z.DecBinary() + _ = yym4328 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4353), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4327), d) } } default: - z.DecStructFieldNotFound(-1, yys4348) - } // end switch yys4348 - } // end for yyj4348 + z.DecStructFieldNotFound(-1, yys4322) + } // end switch yys4322 + } // end for yyj4322 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4329 int + var yyb4329 bool + var yyhl4329 bool = l >= 0 + yyj4329++ + if yyhl4329 { + yyb4329 = yyj4329 > l + } else { + yyb4329 = r.CheckBreak() + } + if yyb4329 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj4329++ + if yyhl4329 { + yyb4329 = yyj4329 > l + } else { + yyb4329 = r.CheckBreak() + } + if yyb4329 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj4329++ + if yyhl4329 { + yyb4329 = yyj4329 > l + } else { + yyb4329 = r.CheckBreak() + } + if yyb4329 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv4332 := &x.ListMeta + yym4333 := z.DecBinary() + _ = yym4333 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4332) { + } else { + z.DecFallback(yyv4332, false) + } + } + yyj4329++ + if yyhl4329 { + yyb4329 = yyj4329 > l + } else { + yyb4329 = r.CheckBreak() + } + if yyb4329 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv4334 := &x.Items + yym4335 := z.DecBinary() + _ = yym4335 + if false { + } else { + h.decSliceConfigMap((*[]ConfigMap)(yyv4334), d) + } + } + for { + yyj4329++ + if yyhl4329 { + yyb4329 = yyj4329 > l + } else { + yyb4329 = r.CheckBreak() + } + if yyb4329 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj4329-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym4336 := z.EncBinary() + _ = yym4336 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4337 := z.DecBinary() + _ = yym4337 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym4338 := z.EncBinary() + _ = yym4338 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep4339 := !z.EncBinary() + yy2arr4339 := z.EncBasicHandle().StructToArray + var yyq4339 [4]bool + _, _, _ = yysep4339, yyq4339, yy2arr4339 + const yyr4339 bool = false + yyq4339[2] = x.Message != "" + yyq4339[3] = x.Error != "" + var yynn4339 int + if yyr4339 || yy2arr4339 { + r.EncodeArrayStart(4) + } else { + yynn4339 = 2 + for _, b := range yyq4339 { + if b { + yynn4339++ + } + } + r.EncodeMapStart(yynn4339) + yynn4339 = 0 + } + if yyr4339 || yy2arr4339 { + 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 yyr4339 || yy2arr4339 { + 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 yyr4339 || yy2arr4339 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4339[2] { + yym4343 := z.EncBinary() + _ = yym4343 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4339[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4344 := z.EncBinary() + _ = yym4344 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } + } + if yyr4339 || yy2arr4339 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4339[3] { + yym4346 := z.EncBinary() + _ = yym4346 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Error)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4339[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("error")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4347 := z.EncBinary() + _ = yym4347 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Error)) + } + } + } + if yyr4339 || yy2arr4339 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4348 := z.DecBinary() + _ = yym4348 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct4349 := r.ContainerType() + if yyct4349 == codecSelferValueTypeMap1234 { + yyl4349 := r.ReadMapStart() + if yyl4349 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl4349, d) + } + } else if yyct4349 == codecSelferValueTypeArray1234 { + yyl4349 := r.ReadArrayStart() + if yyl4349 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl4349, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys4350Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4350Slc + var yyhl4350 bool = l >= 0 + for yyj4350 := 0; ; yyj4350++ { + if yyhl4350 { + if yyj4350 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys4350Slc = r.DecodeBytes(yys4350Slc, true, true) + yys4350 := string(yys4350Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys4350 { + case "type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = ComponentConditionType(r.DecodeString()) + } + case "status": + if r.TryDecodeAsNil() { + x.Status = "" + } else { + x.Status = ConditionStatus(r.DecodeString()) + } + case "message": + if r.TryDecodeAsNil() { + x.Message = "" + } else { + x.Message = string(r.DecodeString()) + } + case "error": + if r.TryDecodeAsNil() { + x.Error = "" + } else { + x.Error = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys4350) + } // end switch yys4350 + } // end for yyj4350 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -54417,9 +54436,9 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Kind = "" + x.Type = "" } else { - x.Kind = string(r.DecodeString()) + x.Type = ComponentConditionType(r.DecodeString()) } yyj4355++ if yyhl4355 { @@ -54433,9 +54452,9 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.APIVersion = "" + x.Status = "" } else { - x.APIVersion = string(r.DecodeString()) + x.Status = ConditionStatus(r.DecodeString()) } yyj4355++ if yyhl4355 { @@ -54449,16 +54468,9 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} + x.Message = "" } else { - yyv4358 := &x.ListMeta - yym4359 := z.DecBinary() - _ = yym4359 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4358) { - } else { - z.DecFallback(yyv4358, false) - } + x.Message = string(r.DecodeString()) } yyj4355++ if yyhl4355 { @@ -54472,15 +54484,9 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Items = nil + x.Error = "" } else { - yyv4360 := &x.Items - yym4361 := z.DecBinary() - _ = yym4361 - if false { - } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4360), d) - } + x.Error = string(r.DecodeString()) } for { yyj4355++ @@ -54498,133 +54504,141 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym4362 := z.EncBinary() - _ = yym4362 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4363 := z.DecBinary() - _ = yym4363 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r if x == nil { r.EncodeNil() } else { - yym4364 := z.EncBinary() - _ = yym4364 + yym4360 := z.EncBinary() + _ = yym4360 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4365 := !z.EncBinary() - yy2arr4365 := z.EncBasicHandle().StructToArray - var yyq4365 [4]bool - _, _, _ = yysep4365, yyq4365, yy2arr4365 - const yyr4365 bool = false - yyq4365[2] = x.Message != "" - yyq4365[3] = x.Error != "" - var yynn4365 int - if yyr4365 || yy2arr4365 { + yysep4361 := !z.EncBinary() + yy2arr4361 := z.EncBasicHandle().StructToArray + var yyq4361 [4]bool + _, _, _ = yysep4361, yyq4361, yy2arr4361 + const yyr4361 bool = false + yyq4361[0] = x.Kind != "" + yyq4361[1] = x.APIVersion != "" + yyq4361[2] = true + yyq4361[3] = len(x.Conditions) != 0 + var yynn4361 int + if yyr4361 || yy2arr4361 { r.EncodeArrayStart(4) } else { - yynn4365 = 2 - for _, b := range yyq4365 { + yynn4361 = 0 + for _, b := range yyq4361 { if b { - yynn4365++ + yynn4361++ } } - r.EncodeMapStart(yynn4365) - yynn4365 = 0 + r.EncodeMapStart(yynn4361) + yynn4361 = 0 } - if yyr4365 || yy2arr4365 { + if yyr4361 || yy2arr4361 { 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 yyr4365 || yy2arr4365 { - 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 yyr4365 || yy2arr4365 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4365[2] { - yym4369 := z.EncBinary() - _ = yym4369 + if yyq4361[0] { + yym4363 := z.EncBinary() + _ = yym4363 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4365[2] { + if yyq4361[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("message")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4370 := z.EncBinary() - _ = yym4370 + yym4364 := z.EncBinary() + _ = yym4364 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4365 || yy2arr4365 { + if yyr4361 || yy2arr4361 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4365[3] { - yym4372 := z.EncBinary() - _ = yym4372 + if yyq4361[1] { + yym4366 := z.EncBinary() + _ = yym4366 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Error)) + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4365[3] { + if yyq4361[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("error")) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4373 := z.EncBinary() - _ = yym4373 + yym4367 := z.EncBinary() + _ = yym4367 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Error)) + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4365 || yy2arr4365 { + if yyr4361 || yy2arr4361 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4361[2] { + yy4369 := &x.ObjectMeta + yy4369.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq4361[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy4370 := &x.ObjectMeta + yy4370.CodecEncodeSelf(e) + } + } + if yyr4361 || yy2arr4361 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4361[3] { + if x.Conditions == nil { + r.EncodeNil() + } else { + yym4372 := z.EncBinary() + _ = yym4372 + if false { + } else { + h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq4361[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("conditions")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Conditions == nil { + r.EncodeNil() + } else { + yym4373 := z.EncBinary() + _ = yym4373 + if false { + } else { + h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) + } + } + } + } + if yyr4361 || yy2arr4361 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54633,7 +54647,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -54663,7 +54677,7 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -54685,319 +54699,6 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) yys4376 := string(yys4376Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys4376 { - case "type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = ComponentConditionType(r.DecodeString()) - } - case "status": - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = ConditionStatus(r.DecodeString()) - } - case "message": - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = string(r.DecodeString()) - } - case "error": - if r.TryDecodeAsNil() { - x.Error = "" - } else { - x.Error = string(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys4376) - } // end switch yys4376 - } // end for yyj4376 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj4381 int - var yyb4381 bool - var yyhl4381 bool = l >= 0 - yyj4381++ - if yyhl4381 { - yyb4381 = yyj4381 > l - } else { - yyb4381 = r.CheckBreak() - } - if yyb4381 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = ComponentConditionType(r.DecodeString()) - } - yyj4381++ - if yyhl4381 { - yyb4381 = yyj4381 > l - } else { - yyb4381 = r.CheckBreak() - } - if yyb4381 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = ConditionStatus(r.DecodeString()) - } - yyj4381++ - if yyhl4381 { - yyb4381 = yyj4381 > l - } else { - yyb4381 = r.CheckBreak() - } - if yyb4381 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = string(r.DecodeString()) - } - yyj4381++ - if yyhl4381 { - yyb4381 = yyj4381 > l - } else { - yyb4381 = r.CheckBreak() - } - if yyb4381 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Error = "" - } else { - x.Error = string(r.DecodeString()) - } - for { - yyj4381++ - if yyhl4381 { - yyb4381 = yyj4381 > l - } else { - yyb4381 = r.CheckBreak() - } - if yyb4381 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4381-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym4386 := z.EncBinary() - _ = yym4386 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep4387 := !z.EncBinary() - yy2arr4387 := z.EncBasicHandle().StructToArray - var yyq4387 [4]bool - _, _, _ = yysep4387, yyq4387, yy2arr4387 - const yyr4387 bool = false - yyq4387[0] = x.Kind != "" - yyq4387[1] = x.APIVersion != "" - yyq4387[2] = true - yyq4387[3] = len(x.Conditions) != 0 - var yynn4387 int - if yyr4387 || yy2arr4387 { - r.EncodeArrayStart(4) - } else { - yynn4387 = 0 - for _, b := range yyq4387 { - if b { - yynn4387++ - } - } - r.EncodeMapStart(yynn4387) - yynn4387 = 0 - } - if yyr4387 || yy2arr4387 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4387[0] { - yym4389 := z.EncBinary() - _ = yym4389 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4387[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4390 := z.EncBinary() - _ = yym4390 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4387 || yy2arr4387 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4387[1] { - yym4392 := z.EncBinary() - _ = yym4392 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4387[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4393 := z.EncBinary() - _ = yym4393 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr4387 || yy2arr4387 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4387[2] { - yy4395 := &x.ObjectMeta - yy4395.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq4387[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4396 := &x.ObjectMeta - yy4396.CodecEncodeSelf(e) - } - } - if yyr4387 || yy2arr4387 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4387[3] { - if x.Conditions == nil { - r.EncodeNil() - } else { - yym4398 := z.EncBinary() - _ = yym4398 - if false { - } else { - h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq4387[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("conditions")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Conditions == nil { - r.EncodeNil() - } else { - yym4399 := z.EncBinary() - _ = yym4399 - if false { - } else { - h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) - } - } - } - } - if yyr4387 || yy2arr4387 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4400 := z.DecBinary() - _ = yym4400 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct4401 := r.ContainerType() - if yyct4401 == codecSelferValueTypeMap1234 { - yyl4401 := r.ReadMapStart() - if yyl4401 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl4401, d) - } - } else if yyct4401 == codecSelferValueTypeArray1234 { - yyl4401 := r.ReadArrayStart() - if yyl4401 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl4401, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys4402Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4402Slc - var yyhl4402 bool = l >= 0 - for yyj4402 := 0; ; yyj4402++ { - if yyhl4402 { - if yyj4402 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4402Slc = r.DecodeBytes(yys4402Slc, true, true) - yys4402 := string(yys4402Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4402 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -55014,25 +54715,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4405 := &x.ObjectMeta - yyv4405.CodecDecodeSelf(d) + yyv4379 := &x.ObjectMeta + yyv4379.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4406 := &x.Conditions - yym4407 := z.DecBinary() - _ = yym4407 + yyv4380 := &x.Conditions + yym4381 := z.DecBinary() + _ = yym4381 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4406), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4380), d) } } default: - z.DecStructFieldNotFound(-1, yys4402) - } // end switch yys4402 - } // end for yyj4402 + z.DecStructFieldNotFound(-1, yys4376) + } // end switch yys4376 + } // end for yyj4376 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55040,16 +54741,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4408 int - var yyb4408 bool - var yyhl4408 bool = l >= 0 - yyj4408++ - if yyhl4408 { - yyb4408 = yyj4408 > l + var yyj4382 int + var yyb4382 bool + var yyhl4382 bool = l >= 0 + yyj4382++ + if yyhl4382 { + yyb4382 = yyj4382 > l } else { - yyb4408 = r.CheckBreak() + yyb4382 = r.CheckBreak() } - if yyb4408 { + if yyb4382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55059,13 +54760,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4408++ - if yyhl4408 { - yyb4408 = yyj4408 > l + yyj4382++ + if yyhl4382 { + yyb4382 = yyj4382 > l } else { - yyb4408 = r.CheckBreak() + yyb4382 = r.CheckBreak() } - if yyb4408 { + if yyb4382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55075,13 +54776,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4408++ - if yyhl4408 { - yyb4408 = yyj4408 > l + yyj4382++ + if yyhl4382 { + yyb4382 = yyj4382 > l } else { - yyb4408 = r.CheckBreak() + yyb4382 = r.CheckBreak() } - if yyb4408 { + if yyb4382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55089,16 +54790,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4411 := &x.ObjectMeta - yyv4411.CodecDecodeSelf(d) + yyv4385 := &x.ObjectMeta + yyv4385.CodecDecodeSelf(d) } - yyj4408++ - if yyhl4408 { - yyb4408 = yyj4408 > l + yyj4382++ + if yyhl4382 { + yyb4382 = yyj4382 > l } else { - yyb4408 = r.CheckBreak() + yyb4382 = r.CheckBreak() } - if yyb4408 { + if yyb4382 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55106,26 +54807,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4412 := &x.Conditions - yym4413 := z.DecBinary() - _ = yym4413 + yyv4386 := &x.Conditions + yym4387 := z.DecBinary() + _ = yym4387 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4412), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4386), d) } } for { - yyj4408++ - if yyhl4408 { - yyb4408 = yyj4408 > l + yyj4382++ + if yyhl4382 { + yyb4382 = yyj4382 > l } else { - yyb4408 = r.CheckBreak() + yyb4382 = r.CheckBreak() } - if yyb4408 { + if yyb4382 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4408-1, "") + z.DecStructFieldNotFound(yyj4382-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55137,37 +54838,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4414 := z.EncBinary() - _ = yym4414 + yym4388 := z.EncBinary() + _ = yym4388 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4415 := !z.EncBinary() - yy2arr4415 := z.EncBasicHandle().StructToArray - var yyq4415 [4]bool - _, _, _ = yysep4415, yyq4415, yy2arr4415 - const yyr4415 bool = false - yyq4415[0] = x.Kind != "" - yyq4415[1] = x.APIVersion != "" - yyq4415[2] = true - var yynn4415 int - if yyr4415 || yy2arr4415 { + yysep4389 := !z.EncBinary() + yy2arr4389 := z.EncBasicHandle().StructToArray + var yyq4389 [4]bool + _, _, _ = yysep4389, yyq4389, yy2arr4389 + const yyr4389 bool = false + yyq4389[0] = x.Kind != "" + yyq4389[1] = x.APIVersion != "" + yyq4389[2] = true + var yynn4389 int + if yyr4389 || yy2arr4389 { r.EncodeArrayStart(4) } else { - yynn4415 = 1 - for _, b := range yyq4415 { + yynn4389 = 1 + for _, b := range yyq4389 { if b { - yynn4415++ + yynn4389++ } } - r.EncodeMapStart(yynn4415) - yynn4415 = 0 + r.EncodeMapStart(yynn4389) + yynn4389 = 0 } - if yyr4415 || yy2arr4415 { + if yyr4389 || yy2arr4389 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4415[0] { - yym4417 := z.EncBinary() - _ = yym4417 + if yyq4389[0] { + yym4391 := z.EncBinary() + _ = yym4391 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -55176,23 +54877,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4415[0] { + if yyq4389[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4418 := z.EncBinary() - _ = yym4418 + yym4392 := z.EncBinary() + _ = yym4392 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4415 || yy2arr4415 { + if yyr4389 || yy2arr4389 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4415[1] { - yym4420 := z.EncBinary() - _ = yym4420 + if yyq4389[1] { + yym4394 := z.EncBinary() + _ = yym4394 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -55201,54 +54902,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4415[1] { + if yyq4389[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4421 := z.EncBinary() - _ = yym4421 + yym4395 := z.EncBinary() + _ = yym4395 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4415 || yy2arr4415 { + if yyr4389 || yy2arr4389 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4415[2] { - yy4423 := &x.ListMeta - yym4424 := z.EncBinary() - _ = yym4424 + if yyq4389[2] { + yy4397 := &x.ListMeta + yym4398 := z.EncBinary() + _ = yym4398 if false { - } else if z.HasExtensions() && z.EncExt(yy4423) { + } else if z.HasExtensions() && z.EncExt(yy4397) { } else { - z.EncFallback(yy4423) + z.EncFallback(yy4397) } } else { r.EncodeNil() } } else { - if yyq4415[2] { + if yyq4389[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4425 := &x.ListMeta - yym4426 := z.EncBinary() - _ = yym4426 + yy4399 := &x.ListMeta + yym4400 := z.EncBinary() + _ = yym4400 if false { - } else if z.HasExtensions() && z.EncExt(yy4425) { + } else if z.HasExtensions() && z.EncExt(yy4399) { } else { - z.EncFallback(yy4425) + z.EncFallback(yy4399) } } } - if yyr4415 || yy2arr4415 { + if yyr4389 || yy2arr4389 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4428 := z.EncBinary() - _ = yym4428 + yym4402 := z.EncBinary() + _ = yym4402 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -55261,15 +54962,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4429 := z.EncBinary() - _ = yym4429 + yym4403 := z.EncBinary() + _ = yym4403 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4415 || yy2arr4415 { + if yyr4389 || yy2arr4389 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55279,6 +54980,311 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { } func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4404 := z.DecBinary() + _ = yym4404 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct4405 := r.ContainerType() + if yyct4405 == codecSelferValueTypeMap1234 { + yyl4405 := r.ReadMapStart() + if yyl4405 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl4405, d) + } + } else if yyct4405 == codecSelferValueTypeArray1234 { + yyl4405 := r.ReadArrayStart() + if yyl4405 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl4405, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys4406Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4406Slc + var yyhl4406 bool = l >= 0 + for yyj4406 := 0; ; yyj4406++ { + if yyhl4406 { + if yyj4406 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys4406Slc = r.DecodeBytes(yys4406Slc, true, true) + yys4406 := string(yys4406Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys4406 { + 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 { + yyv4409 := &x.ListMeta + yym4410 := z.DecBinary() + _ = yym4410 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4409) { + } else { + z.DecFallback(yyv4409, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv4411 := &x.Items + yym4412 := z.DecBinary() + _ = yym4412 + if false { + } else { + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4411), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys4406) + } // end switch yys4406 + } // end for yyj4406 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4413 int + var yyb4413 bool + var yyhl4413 bool = l >= 0 + yyj4413++ + if yyhl4413 { + yyb4413 = yyj4413 > l + } else { + yyb4413 = r.CheckBreak() + } + if yyb4413 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj4413++ + if yyhl4413 { + yyb4413 = yyj4413 > l + } else { + yyb4413 = r.CheckBreak() + } + if yyb4413 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj4413++ + if yyhl4413 { + yyb4413 = yyj4413 > l + } else { + yyb4413 = r.CheckBreak() + } + if yyb4413 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv4416 := &x.ListMeta + yym4417 := z.DecBinary() + _ = yym4417 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4416) { + } else { + z.DecFallback(yyv4416, false) + } + } + yyj4413++ + if yyhl4413 { + yyb4413 = yyj4413 > l + } else { + yyb4413 = r.CheckBreak() + } + if yyb4413 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv4418 := &x.Items + yym4419 := z.DecBinary() + _ = yym4419 + if false { + } else { + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4418), d) + } + } + for { + yyj4413++ + if yyhl4413 { + yyb4413 = yyj4413 > l + } else { + yyb4413 = r.CheckBreak() + } + if yyb4413 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj4413-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym4420 := z.EncBinary() + _ = yym4420 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep4421 := !z.EncBinary() + yy2arr4421 := z.EncBasicHandle().StructToArray + var yyq4421 [2]bool + _, _, _ = yysep4421, yyq4421, yy2arr4421 + const yyr4421 bool = false + yyq4421[0] = len(x.Items) != 0 + yyq4421[1] = x.DefaultMode != nil + var yynn4421 int + if yyr4421 || yy2arr4421 { + r.EncodeArrayStart(2) + } else { + yynn4421 = 0 + for _, b := range yyq4421 { + if b { + yynn4421++ + } + } + r.EncodeMapStart(yynn4421) + yynn4421 = 0 + } + if yyr4421 || yy2arr4421 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4421[0] { + if x.Items == nil { + r.EncodeNil() + } else { + yym4423 := z.EncBinary() + _ = yym4423 + if false { + } else { + h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq4421[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("items")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym4424 := z.EncBinary() + _ = yym4424 + if false { + } else { + h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) + } + } + } + } + if yyr4421 || yy2arr4421 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4421[1] { + if x.DefaultMode == nil { + r.EncodeNil() + } else { + yy4426 := *x.DefaultMode + yym4427 := z.EncBinary() + _ = yym4427 + if false { + } else { + r.EncodeInt(int64(yy4426)) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq4421[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.DefaultMode == nil { + r.EncodeNil() + } else { + yy4428 := *x.DefaultMode + yym4429 := z.EncBinary() + _ = yym4429 + if false { + } else { + r.EncodeInt(int64(yy4428)) + } + } + } + } + if yyr4421 || yy2arr4421 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -55308,7 +55314,7 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -55330,321 +55336,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder yys4432 := string(yys4432Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys4432 { - 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 { - yyv4435 := &x.ListMeta - yym4436 := z.DecBinary() - _ = yym4436 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4435) { - } else { - z.DecFallback(yyv4435, false) - } - } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4437 := &x.Items - yym4438 := z.DecBinary() - _ = yym4438 + yyv4433 := &x.Items + yym4434 := z.DecBinary() + _ = yym4434 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4437), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys4432) - } // end switch yys4432 - } // end for yyj4432 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj4439 int - var yyb4439 bool - var yyhl4439 bool = l >= 0 - yyj4439++ - if yyhl4439 { - yyb4439 = yyj4439 > l - } else { - yyb4439 = r.CheckBreak() - } - if yyb4439 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj4439++ - if yyhl4439 { - yyb4439 = yyj4439 > l - } else { - yyb4439 = r.CheckBreak() - } - if yyb4439 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj4439++ - if yyhl4439 { - yyb4439 = yyj4439 > l - } else { - yyb4439 = r.CheckBreak() - } - if yyb4439 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv4442 := &x.ListMeta - yym4443 := z.DecBinary() - _ = yym4443 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4442) { - } else { - z.DecFallback(yyv4442, false) - } - } - yyj4439++ - if yyhl4439 { - yyb4439 = yyj4439 > l - } else { - yyb4439 = r.CheckBreak() - } - if yyb4439 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv4444 := &x.Items - yym4445 := z.DecBinary() - _ = yym4445 - if false { - } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4444), d) - } - } - for { - yyj4439++ - if yyhl4439 { - yyb4439 = yyj4439 > l - } else { - yyb4439 = r.CheckBreak() - } - if yyb4439 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4439-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym4446 := z.EncBinary() - _ = yym4446 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep4447 := !z.EncBinary() - yy2arr4447 := z.EncBasicHandle().StructToArray - var yyq4447 [2]bool - _, _, _ = yysep4447, yyq4447, yy2arr4447 - const yyr4447 bool = false - yyq4447[0] = len(x.Items) != 0 - yyq4447[1] = x.DefaultMode != nil - var yynn4447 int - if yyr4447 || yy2arr4447 { - r.EncodeArrayStart(2) - } else { - yynn4447 = 0 - for _, b := range yyq4447 { - if b { - yynn4447++ - } - } - r.EncodeMapStart(yynn4447) - yynn4447 = 0 - } - if yyr4447 || yy2arr4447 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4447[0] { - if x.Items == nil { - r.EncodeNil() - } else { - yym4449 := z.EncBinary() - _ = yym4449 - if false { - } else { - h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq4447[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("items")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym4450 := z.EncBinary() - _ = yym4450 - if false { - } else { - h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) - } - } - } - } - if yyr4447 || yy2arr4447 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4447[1] { - if x.DefaultMode == nil { - r.EncodeNil() - } else { - yy4452 := *x.DefaultMode - yym4453 := z.EncBinary() - _ = yym4453 - if false { - } else { - r.EncodeInt(int64(yy4452)) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq4447[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.DefaultMode == nil { - r.EncodeNil() - } else { - yy4454 := *x.DefaultMode - yym4455 := z.EncBinary() - _ = yym4455 - if false { - } else { - r.EncodeInt(int64(yy4454)) - } - } - } - } - if yyr4447 || yy2arr4447 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4456 := z.DecBinary() - _ = yym4456 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct4457 := r.ContainerType() - if yyct4457 == codecSelferValueTypeMap1234 { - yyl4457 := r.ReadMapStart() - if yyl4457 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl4457, d) - } - } else if yyct4457 == codecSelferValueTypeArray1234 { - yyl4457 := r.ReadArrayStart() - if yyl4457 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl4457, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys4458Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4458Slc - var yyhl4458 bool = l >= 0 - for yyj4458 := 0; ; yyj4458++ { - if yyhl4458 { - if yyj4458 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4458Slc = r.DecodeBytes(yys4458Slc, true, true) - yys4458 := string(yys4458Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4458 { - case "items": - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv4459 := &x.Items - yym4460 := z.DecBinary() - _ = yym4460 - if false { - } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4459), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4433), d) } } case "defaultMode": @@ -55656,17 +55357,17 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym4462 := z.DecBinary() - _ = yym4462 + yym4436 := z.DecBinary() + _ = yym4436 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys4458) - } // end switch yys4458 - } // end for yyj4458 + z.DecStructFieldNotFound(-1, yys4432) + } // end switch yys4432 + } // end for yyj4432 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55674,16 +55375,16 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D 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 yyj4437 int + var yyb4437 bool + var yyhl4437 bool = l >= 0 + yyj4437++ + if yyhl4437 { + yyb4437 = yyj4437 > l } else { - yyb4463 = r.CheckBreak() + yyb4437 = r.CheckBreak() } - if yyb4463 { + if yyb4437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55691,21 +55392,21 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4464 := &x.Items - yym4465 := z.DecBinary() - _ = yym4465 + yyv4438 := &x.Items + yym4439 := z.DecBinary() + _ = yym4439 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4464), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4438), d) } } - yyj4463++ - if yyhl4463 { - yyb4463 = yyj4463 > l + yyj4437++ + if yyhl4437 { + yyb4437 = yyj4437 > l } else { - yyb4463 = r.CheckBreak() + yyb4437 = r.CheckBreak() } - if yyb4463 { + if yyb4437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55718,25 +55419,25 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym4467 := z.DecBinary() - _ = yym4467 + yym4441 := z.DecBinary() + _ = yym4441 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj4463++ - if yyhl4463 { - yyb4463 = yyj4463 > l + yyj4437++ + if yyhl4437 { + yyb4437 = yyj4437 > l } else { - yyb4463 = r.CheckBreak() + yyb4437 = r.CheckBreak() } - if yyb4463 { + if yyb4437 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4463-1, "") + z.DecStructFieldNotFound(yyj4437-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55748,36 +55449,36 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4468 := z.EncBinary() - _ = yym4468 + yym4442 := z.EncBinary() + _ = yym4442 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4469 := !z.EncBinary() - yy2arr4469 := z.EncBasicHandle().StructToArray - var yyq4469 [4]bool - _, _, _ = yysep4469, yyq4469, yy2arr4469 - const yyr4469 bool = false - yyq4469[1] = x.FieldRef != nil - yyq4469[2] = x.ResourceFieldRef != nil - yyq4469[3] = x.Mode != nil - var yynn4469 int - if yyr4469 || yy2arr4469 { + yysep4443 := !z.EncBinary() + yy2arr4443 := z.EncBasicHandle().StructToArray + var yyq4443 [4]bool + _, _, _ = yysep4443, yyq4443, yy2arr4443 + const yyr4443 bool = false + yyq4443[1] = x.FieldRef != nil + yyq4443[2] = x.ResourceFieldRef != nil + yyq4443[3] = x.Mode != nil + var yynn4443 int + if yyr4443 || yy2arr4443 { r.EncodeArrayStart(4) } else { - yynn4469 = 1 - for _, b := range yyq4469 { + yynn4443 = 1 + for _, b := range yyq4443 { if b { - yynn4469++ + yynn4443++ } } - r.EncodeMapStart(yynn4469) - yynn4469 = 0 + r.EncodeMapStart(yynn4443) + yynn4443 = 0 } - if yyr4469 || yy2arr4469 { + if yyr4443 || yy2arr4443 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4471 := z.EncBinary() - _ = yym4471 + yym4445 := z.EncBinary() + _ = yym4445 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -55786,16 +55487,16 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4472 := z.EncBinary() - _ = yym4472 + yym4446 := z.EncBinary() + _ = yym4446 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr4469 || yy2arr4469 { + if yyr4443 || yy2arr4443 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4469[1] { + if yyq4443[1] { if x.FieldRef == nil { r.EncodeNil() } else { @@ -55805,7 +55506,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4469[1] { + if yyq4443[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -55816,9 +55517,9 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4469 || yy2arr4469 { + if yyr4443 || yy2arr4443 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4469[2] { + if yyq4443[2] { if x.ResourceFieldRef == nil { r.EncodeNil() } else { @@ -55828,7 +55529,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4469[2] { + if yyq4443[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceFieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -55839,42 +55540,42 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4469 || yy2arr4469 { + if yyr4443 || yy2arr4443 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4469[3] { + if yyq4443[3] { if x.Mode == nil { r.EncodeNil() } else { - yy4476 := *x.Mode - yym4477 := z.EncBinary() - _ = yym4477 + yy4450 := *x.Mode + yym4451 := z.EncBinary() + _ = yym4451 if false { } else { - r.EncodeInt(int64(yy4476)) + r.EncodeInt(int64(yy4450)) } } } else { r.EncodeNil() } } else { - if yyq4469[3] { + if yyq4443[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Mode == nil { r.EncodeNil() } else { - yy4478 := *x.Mode - yym4479 := z.EncBinary() - _ = yym4479 + yy4452 := *x.Mode + yym4453 := z.EncBinary() + _ = yym4453 if false { } else { - r.EncodeInt(int64(yy4478)) + r.EncodeInt(int64(yy4452)) } } } } - if yyr4469 || yy2arr4469 { + if yyr4443 || yy2arr4443 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55887,25 +55588,25 @@ func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4480 := z.DecBinary() - _ = yym4480 + yym4454 := z.DecBinary() + _ = yym4454 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4481 := r.ContainerType() - if yyct4481 == codecSelferValueTypeMap1234 { - yyl4481 := r.ReadMapStart() - if yyl4481 == 0 { + yyct4455 := r.ContainerType() + if yyct4455 == codecSelferValueTypeMap1234 { + yyl4455 := r.ReadMapStart() + if yyl4455 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4481, d) + x.codecDecodeSelfFromMap(yyl4455, d) } - } else if yyct4481 == codecSelferValueTypeArray1234 { - yyl4481 := r.ReadArrayStart() - if yyl4481 == 0 { + } else if yyct4455 == codecSelferValueTypeArray1234 { + yyl4455 := r.ReadArrayStart() + if yyl4455 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4481, d) + x.codecDecodeSelfFromArray(yyl4455, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55917,12 +55618,12 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4482Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4482Slc - var yyhl4482 bool = l >= 0 - for yyj4482 := 0; ; yyj4482++ { - if yyhl4482 { - if yyj4482 >= l { + var yys4456Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4456Slc + var yyhl4456 bool = l >= 0 + for yyj4456 := 0; ; yyj4456++ { + if yyhl4456 { + if yyj4456 >= l { break } } else { @@ -55931,10 +55632,10 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4482Slc = r.DecodeBytes(yys4482Slc, true, true) - yys4482 := string(yys4482Slc) + yys4456Slc = r.DecodeBytes(yys4456Slc, true, true) + yys4456 := string(yys4456Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4482 { + switch yys4456 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -55972,17 +55673,17 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod if x.Mode == nil { x.Mode = new(int32) } - yym4487 := z.DecBinary() - _ = yym4487 + yym4461 := z.DecBinary() + _ = yym4461 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys4482) - } // end switch yys4482 - } // end for yyj4482 + z.DecStructFieldNotFound(-1, yys4456) + } // end switch yys4456 + } // end for yyj4456 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55990,16 +55691,16 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4488 int - var yyb4488 bool - var yyhl4488 bool = l >= 0 - yyj4488++ - if yyhl4488 { - yyb4488 = yyj4488 > l + var yyj4462 int + var yyb4462 bool + var yyhl4462 bool = l >= 0 + yyj4462++ + if yyhl4462 { + yyb4462 = yyj4462 > l } else { - yyb4488 = r.CheckBreak() + yyb4462 = r.CheckBreak() } - if yyb4488 { + if yyb4462 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56009,13 +55710,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj4488++ - if yyhl4488 { - yyb4488 = yyj4488 > l + yyj4462++ + if yyhl4462 { + yyb4462 = yyj4462 > l } else { - yyb4488 = r.CheckBreak() + yyb4462 = r.CheckBreak() } - if yyb4488 { + if yyb4462 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56030,13 +55731,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.FieldRef.CodecDecodeSelf(d) } - yyj4488++ - if yyhl4488 { - yyb4488 = yyj4488 > l + yyj4462++ + if yyhl4462 { + yyb4462 = yyj4462 > l } else { - yyb4488 = r.CheckBreak() + yyb4462 = r.CheckBreak() } - if yyb4488 { + if yyb4462 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56051,13 +55752,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.ResourceFieldRef.CodecDecodeSelf(d) } - yyj4488++ - if yyhl4488 { - yyb4488 = yyj4488 > l + yyj4462++ + if yyhl4462 { + yyb4462 = yyj4462 > l } else { - yyb4488 = r.CheckBreak() + yyb4462 = r.CheckBreak() } - if yyb4488 { + if yyb4462 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56070,25 +55771,25 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec if x.Mode == nil { x.Mode = new(int32) } - yym4493 := z.DecBinary() - _ = yym4493 + yym4467 := z.DecBinary() + _ = yym4467 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } for { - yyj4488++ - if yyhl4488 { - yyb4488 = yyj4488 > l + yyj4462++ + if yyhl4462 { + yyb4462 = yyj4462 > l } else { - yyb4488 = r.CheckBreak() + yyb4462 = r.CheckBreak() } - if yyb4488 { + if yyb4462 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4488-1, "") + z.DecStructFieldNotFound(yyj4462-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56100,38 +55801,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4494 := z.EncBinary() - _ = yym4494 + yym4468 := z.EncBinary() + _ = yym4468 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4495 := !z.EncBinary() - yy2arr4495 := z.EncBasicHandle().StructToArray - var yyq4495 [6]bool - _, _, _ = yysep4495, yyq4495, yy2arr4495 - const yyr4495 bool = false - yyq4495[0] = x.Capabilities != nil - yyq4495[1] = x.Privileged != nil - yyq4495[2] = x.SELinuxOptions != nil - yyq4495[3] = x.RunAsUser != nil - yyq4495[4] = x.RunAsNonRoot != nil - yyq4495[5] = x.ReadOnlyRootFilesystem != nil - var yynn4495 int - if yyr4495 || yy2arr4495 { + yysep4469 := !z.EncBinary() + yy2arr4469 := z.EncBasicHandle().StructToArray + var yyq4469 [6]bool + _, _, _ = yysep4469, yyq4469, yy2arr4469 + const yyr4469 bool = false + yyq4469[0] = x.Capabilities != nil + yyq4469[1] = x.Privileged != nil + yyq4469[2] = x.SELinuxOptions != nil + yyq4469[3] = x.RunAsUser != nil + yyq4469[4] = x.RunAsNonRoot != nil + yyq4469[5] = x.ReadOnlyRootFilesystem != nil + var yynn4469 int + if yyr4469 || yy2arr4469 { r.EncodeArrayStart(6) } else { - yynn4495 = 0 - for _, b := range yyq4495 { + yynn4469 = 0 + for _, b := range yyq4469 { if b { - yynn4495++ + yynn4469++ } } - r.EncodeMapStart(yynn4495) - yynn4495 = 0 + r.EncodeMapStart(yynn4469) + yynn4469 = 0 } - if yyr4495 || yy2arr4495 { + if yyr4469 || yy2arr4469 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4495[0] { + if yyq4469[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -56141,7 +55842,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4495[0] { + if yyq4469[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -56152,44 +55853,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4495 || yy2arr4495 { + if yyr4469 || yy2arr4469 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4495[1] { + if yyq4469[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4498 := *x.Privileged - yym4499 := z.EncBinary() - _ = yym4499 + yy4472 := *x.Privileged + yym4473 := z.EncBinary() + _ = yym4473 if false { } else { - r.EncodeBool(bool(yy4498)) + r.EncodeBool(bool(yy4472)) } } } else { r.EncodeNil() } } else { - if yyq4495[1] { + if yyq4469[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4500 := *x.Privileged - yym4501 := z.EncBinary() - _ = yym4501 + yy4474 := *x.Privileged + yym4475 := z.EncBinary() + _ = yym4475 if false { } else { - r.EncodeBool(bool(yy4500)) + r.EncodeBool(bool(yy4474)) } } } } - if yyr4495 || yy2arr4495 { + if yyr4469 || yy2arr4469 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4495[2] { + if yyq4469[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -56199,7 +55900,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4495[2] { + if yyq4469[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -56210,112 +55911,112 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4495 || yy2arr4495 { + if yyr4469 || yy2arr4469 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4495[3] { + if yyq4469[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4504 := *x.RunAsUser - yym4505 := z.EncBinary() - _ = yym4505 + yy4478 := *x.RunAsUser + yym4479 := z.EncBinary() + _ = yym4479 if false { } else { - r.EncodeInt(int64(yy4504)) + r.EncodeInt(int64(yy4478)) } } } else { r.EncodeNil() } } else { - if yyq4495[3] { + if yyq4469[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4506 := *x.RunAsUser - yym4507 := z.EncBinary() - _ = yym4507 + yy4480 := *x.RunAsUser + yym4481 := z.EncBinary() + _ = yym4481 if false { } else { - r.EncodeInt(int64(yy4506)) + r.EncodeInt(int64(yy4480)) } } } } - if yyr4495 || yy2arr4495 { + if yyr4469 || yy2arr4469 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4495[4] { + if yyq4469[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4509 := *x.RunAsNonRoot - yym4510 := z.EncBinary() - _ = yym4510 + yy4483 := *x.RunAsNonRoot + yym4484 := z.EncBinary() + _ = yym4484 if false { } else { - r.EncodeBool(bool(yy4509)) + r.EncodeBool(bool(yy4483)) } } } else { r.EncodeNil() } } else { - if yyq4495[4] { + if yyq4469[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4511 := *x.RunAsNonRoot - yym4512 := z.EncBinary() - _ = yym4512 + yy4485 := *x.RunAsNonRoot + yym4486 := z.EncBinary() + _ = yym4486 if false { } else { - r.EncodeBool(bool(yy4511)) + r.EncodeBool(bool(yy4485)) } } } } - if yyr4495 || yy2arr4495 { + if yyr4469 || yy2arr4469 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4495[5] { + if yyq4469[5] { if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4514 := *x.ReadOnlyRootFilesystem - yym4515 := z.EncBinary() - _ = yym4515 + yy4488 := *x.ReadOnlyRootFilesystem + yym4489 := z.EncBinary() + _ = yym4489 if false { } else { - r.EncodeBool(bool(yy4514)) + r.EncodeBool(bool(yy4488)) } } } else { r.EncodeNil() } } else { - if yyq4495[5] { + if yyq4469[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4516 := *x.ReadOnlyRootFilesystem - yym4517 := z.EncBinary() - _ = yym4517 + yy4490 := *x.ReadOnlyRootFilesystem + yym4491 := z.EncBinary() + _ = yym4491 if false { } else { - r.EncodeBool(bool(yy4516)) + r.EncodeBool(bool(yy4490)) } } } } - if yyr4495 || yy2arr4495 { + if yyr4469 || yy2arr4469 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -56328,25 +56029,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4518 := z.DecBinary() - _ = yym4518 + yym4492 := z.DecBinary() + _ = yym4492 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4519 := r.ContainerType() - if yyct4519 == codecSelferValueTypeMap1234 { - yyl4519 := r.ReadMapStart() - if yyl4519 == 0 { + yyct4493 := r.ContainerType() + if yyct4493 == codecSelferValueTypeMap1234 { + yyl4493 := r.ReadMapStart() + if yyl4493 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4519, d) + x.codecDecodeSelfFromMap(yyl4493, d) } - } else if yyct4519 == codecSelferValueTypeArray1234 { - yyl4519 := r.ReadArrayStart() - if yyl4519 == 0 { + } else if yyct4493 == codecSelferValueTypeArray1234 { + yyl4493 := r.ReadArrayStart() + if yyl4493 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4519, d) + x.codecDecodeSelfFromArray(yyl4493, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -56358,12 +56059,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4520Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4520Slc - var yyhl4520 bool = l >= 0 - for yyj4520 := 0; ; yyj4520++ { - if yyhl4520 { - if yyj4520 >= l { + var yys4494Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4494Slc + var yyhl4494 bool = l >= 0 + for yyj4494 := 0; ; yyj4494++ { + if yyhl4494 { + if yyj4494 >= l { break } } else { @@ -56372,10 +56073,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4520Slc = r.DecodeBytes(yys4520Slc, true, true) - yys4520 := string(yys4520Slc) + yys4494Slc = r.DecodeBytes(yys4494Slc, true, true) + yys4494 := string(yys4494Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4520 { + switch yys4494 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -56396,8 +56097,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4523 := z.DecBinary() - _ = yym4523 + yym4497 := z.DecBinary() + _ = yym4497 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -56423,8 +56124,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4526 := z.DecBinary() - _ = yym4526 + yym4500 := z.DecBinary() + _ = yym4500 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -56439,8 +56140,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4528 := z.DecBinary() - _ = yym4528 + yym4502 := z.DecBinary() + _ = yym4502 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -56455,17 +56156,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4530 := z.DecBinary() - _ = yym4530 + yym4504 := z.DecBinary() + _ = yym4504 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4520) - } // end switch yys4520 - } // end for yyj4520 + z.DecStructFieldNotFound(-1, yys4494) + } // end switch yys4494 + } // end for yyj4494 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -56473,16 +56174,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4531 int - var yyb4531 bool - var yyhl4531 bool = l >= 0 - yyj4531++ - if yyhl4531 { - yyb4531 = yyj4531 > l + var yyj4505 int + var yyb4505 bool + var yyhl4505 bool = l >= 0 + yyj4505++ + if yyhl4505 { + yyb4505 = yyj4505 > l } else { - yyb4531 = r.CheckBreak() + yyb4505 = r.CheckBreak() } - if yyb4531 { + if yyb4505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56497,13 +56198,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4531++ - if yyhl4531 { - yyb4531 = yyj4531 > l + yyj4505++ + if yyhl4505 { + yyb4505 = yyj4505 > l } else { - yyb4531 = r.CheckBreak() + yyb4505 = r.CheckBreak() } - if yyb4531 { + if yyb4505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56516,20 +56217,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4534 := z.DecBinary() - _ = yym4534 + yym4508 := z.DecBinary() + _ = yym4508 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4531++ - if yyhl4531 { - yyb4531 = yyj4531 > l + yyj4505++ + if yyhl4505 { + yyb4505 = yyj4505 > l } else { - yyb4531 = r.CheckBreak() + yyb4505 = r.CheckBreak() } - if yyb4531 { + if yyb4505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56544,13 +56245,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4531++ - if yyhl4531 { - yyb4531 = yyj4531 > l + yyj4505++ + if yyhl4505 { + yyb4505 = yyj4505 > l } else { - yyb4531 = r.CheckBreak() + yyb4505 = r.CheckBreak() } - if yyb4531 { + if yyb4505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56563,20 +56264,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4537 := z.DecBinary() - _ = yym4537 + yym4511 := z.DecBinary() + _ = yym4511 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4531++ - if yyhl4531 { - yyb4531 = yyj4531 > l + yyj4505++ + if yyhl4505 { + yyb4505 = yyj4505 > l } else { - yyb4531 = r.CheckBreak() + yyb4505 = r.CheckBreak() } - if yyb4531 { + if yyb4505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56589,20 +56290,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4539 := z.DecBinary() - _ = yym4539 + yym4513 := z.DecBinary() + _ = yym4513 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4531++ - if yyhl4531 { - yyb4531 = yyj4531 > l + yyj4505++ + if yyhl4505 { + yyb4505 = yyj4505 > l } else { - yyb4531 = r.CheckBreak() + yyb4505 = r.CheckBreak() } - if yyb4531 { + if yyb4505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56615,25 +56316,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4541 := z.DecBinary() - _ = yym4541 + yym4515 := z.DecBinary() + _ = yym4515 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4531++ - if yyhl4531 { - yyb4531 = yyj4531 > l + yyj4505++ + if yyhl4505 { + yyb4505 = yyj4505 > l } else { - yyb4531 = r.CheckBreak() + yyb4505 = r.CheckBreak() } - if yyb4531 { + if yyb4505 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4531-1, "") + z.DecStructFieldNotFound(yyj4505-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56645,38 +56346,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4542 := z.EncBinary() - _ = yym4542 + yym4516 := z.EncBinary() + _ = yym4516 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4543 := !z.EncBinary() - yy2arr4543 := z.EncBasicHandle().StructToArray - var yyq4543 [4]bool - _, _, _ = yysep4543, yyq4543, yy2arr4543 - const yyr4543 bool = false - yyq4543[0] = x.User != "" - yyq4543[1] = x.Role != "" - yyq4543[2] = x.Type != "" - yyq4543[3] = x.Level != "" - var yynn4543 int - if yyr4543 || yy2arr4543 { + yysep4517 := !z.EncBinary() + yy2arr4517 := z.EncBasicHandle().StructToArray + var yyq4517 [4]bool + _, _, _ = yysep4517, yyq4517, yy2arr4517 + const yyr4517 bool = false + yyq4517[0] = x.User != "" + yyq4517[1] = x.Role != "" + yyq4517[2] = x.Type != "" + yyq4517[3] = x.Level != "" + var yynn4517 int + if yyr4517 || yy2arr4517 { r.EncodeArrayStart(4) } else { - yynn4543 = 0 - for _, b := range yyq4543 { + yynn4517 = 0 + for _, b := range yyq4517 { if b { - yynn4543++ + yynn4517++ } } - r.EncodeMapStart(yynn4543) - yynn4543 = 0 + r.EncodeMapStart(yynn4517) + yynn4517 = 0 } - if yyr4543 || yy2arr4543 { + if yyr4517 || yy2arr4517 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4543[0] { - yym4545 := z.EncBinary() - _ = yym4545 + if yyq4517[0] { + yym4519 := z.EncBinary() + _ = yym4519 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -56685,23 +56386,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4543[0] { + if yyq4517[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4546 := z.EncBinary() - _ = yym4546 + yym4520 := z.EncBinary() + _ = yym4520 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4543 || yy2arr4543 { + if yyr4517 || yy2arr4517 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4543[1] { - yym4548 := z.EncBinary() - _ = yym4548 + if yyq4517[1] { + yym4522 := z.EncBinary() + _ = yym4522 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -56710,23 +56411,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4543[1] { + if yyq4517[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4549 := z.EncBinary() - _ = yym4549 + yym4523 := z.EncBinary() + _ = yym4523 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr4543 || yy2arr4543 { + if yyr4517 || yy2arr4517 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4543[2] { - yym4551 := z.EncBinary() - _ = yym4551 + if yyq4517[2] { + yym4525 := z.EncBinary() + _ = yym4525 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -56735,23 +56436,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4543[2] { + if yyq4517[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4552 := z.EncBinary() - _ = yym4552 + yym4526 := z.EncBinary() + _ = yym4526 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4543 || yy2arr4543 { + if yyr4517 || yy2arr4517 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4543[3] { - yym4554 := z.EncBinary() - _ = yym4554 + if yyq4517[3] { + yym4528 := z.EncBinary() + _ = yym4528 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -56760,19 +56461,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4543[3] { + if yyq4517[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4555 := z.EncBinary() - _ = yym4555 + yym4529 := z.EncBinary() + _ = yym4529 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4543 || yy2arr4543 { + if yyr4517 || yy2arr4517 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -56785,25 +56486,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4556 := z.DecBinary() - _ = yym4556 + yym4530 := z.DecBinary() + _ = yym4530 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4557 := r.ContainerType() - if yyct4557 == codecSelferValueTypeMap1234 { - yyl4557 := r.ReadMapStart() - if yyl4557 == 0 { + yyct4531 := r.ContainerType() + if yyct4531 == codecSelferValueTypeMap1234 { + yyl4531 := r.ReadMapStart() + if yyl4531 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4557, d) + x.codecDecodeSelfFromMap(yyl4531, d) } - } else if yyct4557 == codecSelferValueTypeArray1234 { - yyl4557 := r.ReadArrayStart() - if yyl4557 == 0 { + } else if yyct4531 == codecSelferValueTypeArray1234 { + yyl4531 := r.ReadArrayStart() + if yyl4531 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4557, d) + x.codecDecodeSelfFromArray(yyl4531, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -56815,12 +56516,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4558Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4558Slc - var yyhl4558 bool = l >= 0 - for yyj4558 := 0; ; yyj4558++ { - if yyhl4558 { - if yyj4558 >= l { + var yys4532Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4532Slc + var yyhl4532 bool = l >= 0 + for yyj4532 := 0; ; yyj4532++ { + if yyhl4532 { + if yyj4532 >= l { break } } else { @@ -56829,10 +56530,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4558Slc = r.DecodeBytes(yys4558Slc, true, true) - yys4558 := string(yys4558Slc) + yys4532Slc = r.DecodeBytes(yys4532Slc, true, true) + yys4532 := string(yys4532Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4558 { + switch yys4532 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -56858,9 +56559,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4558) - } // end switch yys4558 - } // end for yyj4558 + z.DecStructFieldNotFound(-1, yys4532) + } // end switch yys4532 + } // end for yyj4532 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -56868,16 +56569,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4563 int - var yyb4563 bool - var yyhl4563 bool = l >= 0 - yyj4563++ - if yyhl4563 { - yyb4563 = yyj4563 > l + var yyj4537 int + var yyb4537 bool + var yyhl4537 bool = l >= 0 + yyj4537++ + if yyhl4537 { + yyb4537 = yyj4537 > l } else { - yyb4563 = r.CheckBreak() + yyb4537 = r.CheckBreak() } - if yyb4563 { + if yyb4537 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56887,13 +56588,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4563++ - if yyhl4563 { - yyb4563 = yyj4563 > l + yyj4537++ + if yyhl4537 { + yyb4537 = yyj4537 > l } else { - yyb4563 = r.CheckBreak() + yyb4537 = r.CheckBreak() } - if yyb4563 { + if yyb4537 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56903,13 +56604,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4563++ - if yyhl4563 { - yyb4563 = yyj4563 > l + yyj4537++ + if yyhl4537 { + yyb4537 = yyj4537 > l } else { - yyb4563 = r.CheckBreak() + yyb4537 = r.CheckBreak() } - if yyb4563 { + if yyb4537 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56919,13 +56620,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4563++ - if yyhl4563 { - yyb4563 = yyj4563 > l + yyj4537++ + if yyhl4537 { + yyb4537 = yyj4537 > l } else { - yyb4563 = r.CheckBreak() + yyb4537 = r.CheckBreak() } - if yyb4563 { + if yyb4537 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56936,17 +56637,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4563++ - if yyhl4563 { - yyb4563 = yyj4563 > l + yyj4537++ + if yyhl4537 { + yyb4537 = yyj4537 > l } else { - yyb4563 = r.CheckBreak() + yyb4537 = r.CheckBreak() } - if yyb4563 { + if yyb4537 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4563-1, "") + z.DecStructFieldNotFound(yyj4537-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56958,37 +56659,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4568 := z.EncBinary() - _ = yym4568 + yym4542 := z.EncBinary() + _ = yym4542 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4569 := !z.EncBinary() - yy2arr4569 := z.EncBasicHandle().StructToArray - var yyq4569 [5]bool - _, _, _ = yysep4569, yyq4569, yy2arr4569 - const yyr4569 bool = false - yyq4569[0] = x.Kind != "" - yyq4569[1] = x.APIVersion != "" - yyq4569[2] = true - var yynn4569 int - if yyr4569 || yy2arr4569 { + yysep4543 := !z.EncBinary() + yy2arr4543 := z.EncBasicHandle().StructToArray + var yyq4543 [5]bool + _, _, _ = yysep4543, yyq4543, yy2arr4543 + const yyr4543 bool = false + yyq4543[0] = x.Kind != "" + yyq4543[1] = x.APIVersion != "" + yyq4543[2] = true + var yynn4543 int + if yyr4543 || yy2arr4543 { r.EncodeArrayStart(5) } else { - yynn4569 = 2 - for _, b := range yyq4569 { + yynn4543 = 2 + for _, b := range yyq4543 { if b { - yynn4569++ + yynn4543++ } } - r.EncodeMapStart(yynn4569) - yynn4569 = 0 + r.EncodeMapStart(yynn4543) + yynn4543 = 0 } - if yyr4569 || yy2arr4569 { + if yyr4543 || yy2arr4543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4569[0] { - yym4571 := z.EncBinary() - _ = yym4571 + if yyq4543[0] { + yym4545 := z.EncBinary() + _ = yym4545 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -56997,23 +56698,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4569[0] { + if yyq4543[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4572 := z.EncBinary() - _ = yym4572 + yym4546 := z.EncBinary() + _ = yym4546 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4569 || yy2arr4569 { + if yyr4543 || yy2arr4543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4569[1] { - yym4574 := z.EncBinary() - _ = yym4574 + if yyq4543[1] { + yym4548 := z.EncBinary() + _ = yym4548 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -57022,39 +56723,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4569[1] { + if yyq4543[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4575 := z.EncBinary() - _ = yym4575 + yym4549 := z.EncBinary() + _ = yym4549 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4569 || yy2arr4569 { + if yyr4543 || yy2arr4543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4569[2] { - yy4577 := &x.ObjectMeta - yy4577.CodecEncodeSelf(e) + if yyq4543[2] { + yy4551 := &x.ObjectMeta + yy4551.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4569[2] { + if yyq4543[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4578 := &x.ObjectMeta - yy4578.CodecEncodeSelf(e) + yy4552 := &x.ObjectMeta + yy4552.CodecEncodeSelf(e) } } - if yyr4569 || yy2arr4569 { + if yyr4543 || yy2arr4543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4580 := z.EncBinary() - _ = yym4580 + yym4554 := z.EncBinary() + _ = yym4554 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -57063,20 +56764,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4581 := z.EncBinary() - _ = yym4581 + yym4555 := z.EncBinary() + _ = yym4555 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4569 || yy2arr4569 { + if yyr4543 || yy2arr4543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4583 := z.EncBinary() - _ = yym4583 + yym4557 := z.EncBinary() + _ = yym4557 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -57089,15 +56790,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4584 := z.EncBinary() - _ = yym4584 + yym4558 := z.EncBinary() + _ = yym4558 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4569 || yy2arr4569 { + if yyr4543 || yy2arr4543 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -57110,25 +56811,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4585 := z.DecBinary() - _ = yym4585 + yym4559 := z.DecBinary() + _ = yym4559 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4586 := r.ContainerType() - if yyct4586 == codecSelferValueTypeMap1234 { - yyl4586 := r.ReadMapStart() - if yyl4586 == 0 { + yyct4560 := r.ContainerType() + if yyct4560 == codecSelferValueTypeMap1234 { + yyl4560 := r.ReadMapStart() + if yyl4560 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4586, d) + x.codecDecodeSelfFromMap(yyl4560, d) } - } else if yyct4586 == codecSelferValueTypeArray1234 { - yyl4586 := r.ReadArrayStart() - if yyl4586 == 0 { + } else if yyct4560 == codecSelferValueTypeArray1234 { + yyl4560 := r.ReadArrayStart() + if yyl4560 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4586, d) + x.codecDecodeSelfFromArray(yyl4560, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -57140,12 +56841,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4587Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4587Slc - var yyhl4587 bool = l >= 0 - for yyj4587 := 0; ; yyj4587++ { - if yyhl4587 { - if yyj4587 >= l { + var yys4561Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4561Slc + var yyhl4561 bool = l >= 0 + for yyj4561 := 0; ; yyj4561++ { + if yyhl4561 { + if yyj4561 >= l { break } } else { @@ -57154,10 +56855,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4587Slc = r.DecodeBytes(yys4587Slc, true, true) - yys4587 := string(yys4587Slc) + yys4561Slc = r.DecodeBytes(yys4561Slc, true, true) + yys4561 := string(yys4561Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4587 { + switch yys4561 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -57174,8 +56875,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4590 := &x.ObjectMeta - yyv4590.CodecDecodeSelf(d) + yyv4564 := &x.ObjectMeta + yyv4564.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -57187,18 +56888,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4592 := &x.Data - yym4593 := z.DecBinary() - _ = yym4593 + yyv4566 := &x.Data + yym4567 := z.DecBinary() + _ = yym4567 if false { } else { - *yyv4592 = r.DecodeBytes(*(*[]byte)(yyv4592), false, false) + *yyv4566 = r.DecodeBytes(*(*[]byte)(yyv4566), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4587) - } // end switch yys4587 - } // end for yyj4587 + z.DecStructFieldNotFound(-1, yys4561) + } // end switch yys4561 + } // end for yyj4561 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -57206,16 +56907,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4594 int - var yyb4594 bool - var yyhl4594 bool = l >= 0 - yyj4594++ - if yyhl4594 { - yyb4594 = yyj4594 > l + var yyj4568 int + var yyb4568 bool + var yyhl4568 bool = l >= 0 + yyj4568++ + if yyhl4568 { + yyb4568 = yyj4568 > l } else { - yyb4594 = r.CheckBreak() + yyb4568 = r.CheckBreak() } - if yyb4594 { + if yyb4568 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -57225,13 +56926,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4594++ - if yyhl4594 { - yyb4594 = yyj4594 > l + yyj4568++ + if yyhl4568 { + yyb4568 = yyj4568 > l } else { - yyb4594 = r.CheckBreak() + yyb4568 = r.CheckBreak() } - if yyb4594 { + if yyb4568 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -57241,13 +56942,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4594++ - if yyhl4594 { - yyb4594 = yyj4594 > l + yyj4568++ + if yyhl4568 { + yyb4568 = yyj4568 > l } else { - yyb4594 = r.CheckBreak() + yyb4568 = r.CheckBreak() } - if yyb4594 { + if yyb4568 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -57255,16 +56956,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4597 := &x.ObjectMeta - yyv4597.CodecDecodeSelf(d) + yyv4571 := &x.ObjectMeta + yyv4571.CodecDecodeSelf(d) } - yyj4594++ - if yyhl4594 { - yyb4594 = yyj4594 > l + yyj4568++ + if yyhl4568 { + yyb4568 = yyj4568 > l } else { - yyb4594 = r.CheckBreak() + yyb4568 = r.CheckBreak() } - if yyb4594 { + if yyb4568 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -57274,13 +56975,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4594++ - if yyhl4594 { - yyb4594 = yyj4594 > l + yyj4568++ + if yyhl4568 { + yyb4568 = yyj4568 > l } else { - yyb4594 = r.CheckBreak() + yyb4568 = r.CheckBreak() } - if yyb4594 { + if yyb4568 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -57288,26 +56989,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4599 := &x.Data - yym4600 := z.DecBinary() - _ = yym4600 + yyv4573 := &x.Data + yym4574 := z.DecBinary() + _ = yym4574 if false { } else { - *yyv4599 = r.DecodeBytes(*(*[]byte)(yyv4599), false, false) + *yyv4573 = r.DecodeBytes(*(*[]byte)(yyv4573), false, false) } } for { - yyj4594++ - if yyhl4594 { - yyb4594 = yyj4594 > l + yyj4568++ + if yyhl4568 { + yyb4568 = yyj4568 > l } else { - yyb4594 = r.CheckBreak() + yyb4568 = r.CheckBreak() } - if yyb4594 { + if yyb4568 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4594-1, "") + z.DecStructFieldNotFound(yyj4568-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57317,10 +57018,10 @@ func (x codecSelfer1234) encSliceOwnerReference(v []OwnerReference, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4601 := range v { + for _, yyv4575 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4602 := &yyv4601 - yy4602.CodecEncodeSelf(e) + yy4576 := &yyv4575 + yy4576.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57330,83 +57031,83 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4603 := *v - yyh4603, yyl4603 := z.DecSliceHelperStart() - var yyc4603 bool - if yyl4603 == 0 { - if yyv4603 == nil { - yyv4603 = []OwnerReference{} - yyc4603 = true - } else if len(yyv4603) != 0 { - yyv4603 = yyv4603[:0] - yyc4603 = true + yyv4577 := *v + yyh4577, yyl4577 := z.DecSliceHelperStart() + var yyc4577 bool + if yyl4577 == 0 { + if yyv4577 == nil { + yyv4577 = []OwnerReference{} + yyc4577 = true + } else if len(yyv4577) != 0 { + yyv4577 = yyv4577[:0] + yyc4577 = true } - } else if yyl4603 > 0 { - var yyrr4603, yyrl4603 int - var yyrt4603 bool - if yyl4603 > cap(yyv4603) { + } else if yyl4577 > 0 { + var yyrr4577, yyrl4577 int + var yyrt4577 bool + if yyl4577 > cap(yyv4577) { - yyrg4603 := len(yyv4603) > 0 - yyv24603 := yyv4603 - yyrl4603, yyrt4603 = z.DecInferLen(yyl4603, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4603 { - if yyrl4603 <= cap(yyv4603) { - yyv4603 = yyv4603[:yyrl4603] + yyrg4577 := len(yyv4577) > 0 + yyv24577 := yyv4577 + yyrl4577, yyrt4577 = z.DecInferLen(yyl4577, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4577 { + if yyrl4577 <= cap(yyv4577) { + yyv4577 = yyv4577[:yyrl4577] } else { - yyv4603 = make([]OwnerReference, yyrl4603) + yyv4577 = make([]OwnerReference, yyrl4577) } } else { - yyv4603 = make([]OwnerReference, yyrl4603) + yyv4577 = make([]OwnerReference, yyrl4577) } - yyc4603 = true - yyrr4603 = len(yyv4603) - if yyrg4603 { - copy(yyv4603, yyv24603) + yyc4577 = true + yyrr4577 = len(yyv4577) + if yyrg4577 { + copy(yyv4577, yyv24577) } - } else if yyl4603 != len(yyv4603) { - yyv4603 = yyv4603[:yyl4603] - yyc4603 = true + } else if yyl4577 != len(yyv4577) { + yyv4577 = yyv4577[:yyl4577] + yyc4577 = true } - yyj4603 := 0 - for ; yyj4603 < yyrr4603; yyj4603++ { - yyh4603.ElemContainerState(yyj4603) + yyj4577 := 0 + for ; yyj4577 < yyrr4577; yyj4577++ { + yyh4577.ElemContainerState(yyj4577) if r.TryDecodeAsNil() { - yyv4603[yyj4603] = OwnerReference{} + yyv4577[yyj4577] = OwnerReference{} } else { - yyv4604 := &yyv4603[yyj4603] - yyv4604.CodecDecodeSelf(d) + yyv4578 := &yyv4577[yyj4577] + yyv4578.CodecDecodeSelf(d) } } - if yyrt4603 { - for ; yyj4603 < yyl4603; yyj4603++ { - yyv4603 = append(yyv4603, OwnerReference{}) - yyh4603.ElemContainerState(yyj4603) + if yyrt4577 { + for ; yyj4577 < yyl4577; yyj4577++ { + yyv4577 = append(yyv4577, OwnerReference{}) + yyh4577.ElemContainerState(yyj4577) if r.TryDecodeAsNil() { - yyv4603[yyj4603] = OwnerReference{} + yyv4577[yyj4577] = OwnerReference{} } else { - yyv4605 := &yyv4603[yyj4603] - yyv4605.CodecDecodeSelf(d) + yyv4579 := &yyv4577[yyj4577] + yyv4579.CodecDecodeSelf(d) } } } } else { - yyj4603 := 0 - for ; !r.CheckBreak(); yyj4603++ { + yyj4577 := 0 + for ; !r.CheckBreak(); yyj4577++ { - if yyj4603 >= len(yyv4603) { - yyv4603 = append(yyv4603, OwnerReference{}) // var yyz4603 OwnerReference - yyc4603 = true + if yyj4577 >= len(yyv4577) { + yyv4577 = append(yyv4577, OwnerReference{}) // var yyz4577 OwnerReference + yyc4577 = true } - yyh4603.ElemContainerState(yyj4603) - if yyj4603 < len(yyv4603) { + yyh4577.ElemContainerState(yyj4577) + if yyj4577 < len(yyv4577) { if r.TryDecodeAsNil() { - yyv4603[yyj4603] = OwnerReference{} + yyv4577[yyj4577] = OwnerReference{} } else { - yyv4606 := &yyv4603[yyj4603] - yyv4606.CodecDecodeSelf(d) + yyv4580 := &yyv4577[yyj4577] + yyv4580.CodecDecodeSelf(d) } } else { @@ -57414,17 +57115,17 @@ func (x codecSelfer1234) decSliceOwnerReference(v *[]OwnerReference, d *codec197 } } - if yyj4603 < len(yyv4603) { - yyv4603 = yyv4603[:yyj4603] - yyc4603 = true - } else if yyj4603 == 0 && yyv4603 == nil { - yyv4603 = []OwnerReference{} - yyc4603 = true + if yyj4577 < len(yyv4577) { + yyv4577 = yyv4577[:yyj4577] + yyc4577 = true + } else if yyj4577 == 0 && yyv4577 == nil { + yyv4577 = []OwnerReference{} + yyc4577 = true } } - yyh4603.End() - if yyc4603 { - *v = yyv4603 + yyh4577.End() + if yyc4577 { + *v = yyv4577 } } @@ -57433,9 +57134,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4607 := range v { + for _, yyv4581 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4607.CodecEncodeSelf(e) + yyv4581.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57445,75 +57146,75 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4608 := *v - yyh4608, yyl4608 := z.DecSliceHelperStart() - var yyc4608 bool - if yyl4608 == 0 { - if yyv4608 == nil { - yyv4608 = []PersistentVolumeAccessMode{} - yyc4608 = true - } else if len(yyv4608) != 0 { - yyv4608 = yyv4608[:0] - yyc4608 = true + yyv4582 := *v + yyh4582, yyl4582 := z.DecSliceHelperStart() + var yyc4582 bool + if yyl4582 == 0 { + if yyv4582 == nil { + yyv4582 = []PersistentVolumeAccessMode{} + yyc4582 = true + } else if len(yyv4582) != 0 { + yyv4582 = yyv4582[:0] + yyc4582 = true } - } else if yyl4608 > 0 { - var yyrr4608, yyrl4608 int - var yyrt4608 bool - if yyl4608 > cap(yyv4608) { + } else if yyl4582 > 0 { + var yyrr4582, yyrl4582 int + var yyrt4582 bool + if yyl4582 > cap(yyv4582) { - yyrl4608, yyrt4608 = z.DecInferLen(yyl4608, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4608 { - if yyrl4608 <= cap(yyv4608) { - yyv4608 = yyv4608[:yyrl4608] + yyrl4582, yyrt4582 = z.DecInferLen(yyl4582, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4582 { + if yyrl4582 <= cap(yyv4582) { + yyv4582 = yyv4582[:yyrl4582] } else { - yyv4608 = make([]PersistentVolumeAccessMode, yyrl4608) + yyv4582 = make([]PersistentVolumeAccessMode, yyrl4582) } } else { - yyv4608 = make([]PersistentVolumeAccessMode, yyrl4608) + yyv4582 = make([]PersistentVolumeAccessMode, yyrl4582) } - yyc4608 = true - yyrr4608 = len(yyv4608) - } else if yyl4608 != len(yyv4608) { - yyv4608 = yyv4608[:yyl4608] - yyc4608 = true + yyc4582 = true + yyrr4582 = len(yyv4582) + } else if yyl4582 != len(yyv4582) { + yyv4582 = yyv4582[:yyl4582] + yyc4582 = true } - yyj4608 := 0 - for ; yyj4608 < yyrr4608; yyj4608++ { - yyh4608.ElemContainerState(yyj4608) + yyj4582 := 0 + for ; yyj4582 < yyrr4582; yyj4582++ { + yyh4582.ElemContainerState(yyj4582) if r.TryDecodeAsNil() { - yyv4608[yyj4608] = "" + yyv4582[yyj4582] = "" } else { - yyv4608[yyj4608] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4582[yyj4582] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt4608 { - for ; yyj4608 < yyl4608; yyj4608++ { - yyv4608 = append(yyv4608, "") - yyh4608.ElemContainerState(yyj4608) + if yyrt4582 { + for ; yyj4582 < yyl4582; yyj4582++ { + yyv4582 = append(yyv4582, "") + yyh4582.ElemContainerState(yyj4582) if r.TryDecodeAsNil() { - yyv4608[yyj4608] = "" + yyv4582[yyj4582] = "" } else { - yyv4608[yyj4608] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4582[yyj4582] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj4608 := 0 - for ; !r.CheckBreak(); yyj4608++ { + yyj4582 := 0 + for ; !r.CheckBreak(); yyj4582++ { - if yyj4608 >= len(yyv4608) { - yyv4608 = append(yyv4608, "") // var yyz4608 PersistentVolumeAccessMode - yyc4608 = true + if yyj4582 >= len(yyv4582) { + yyv4582 = append(yyv4582, "") // var yyz4582 PersistentVolumeAccessMode + yyc4582 = true } - yyh4608.ElemContainerState(yyj4608) - if yyj4608 < len(yyv4608) { + yyh4582.ElemContainerState(yyj4582) + if yyj4582 < len(yyv4582) { if r.TryDecodeAsNil() { - yyv4608[yyj4608] = "" + yyv4582[yyj4582] = "" } else { - yyv4608[yyj4608] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4582[yyj4582] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -57521,17 +57222,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } - if yyj4608 < len(yyv4608) { - yyv4608 = yyv4608[:yyj4608] - yyc4608 = true - } else if yyj4608 == 0 && yyv4608 == nil { - yyv4608 = []PersistentVolumeAccessMode{} - yyc4608 = true + if yyj4582 < len(yyv4582) { + yyv4582 = yyv4582[:yyj4582] + yyc4582 = true + } else if yyj4582 == 0 && yyv4582 == nil { + yyv4582 = []PersistentVolumeAccessMode{} + yyc4582 = true } } - yyh4608.End() - if yyc4608 { - *v = yyv4608 + yyh4582.End() + if yyc4582 { + *v = yyv4582 } } @@ -57540,10 +57241,10 @@ func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4612 := range v { + for _, yyv4586 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4613 := &yyv4612 - yy4613.CodecEncodeSelf(e) + yy4587 := &yyv4586 + yy4587.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57553,83 +57254,83 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4614 := *v - yyh4614, yyl4614 := z.DecSliceHelperStart() - var yyc4614 bool - if yyl4614 == 0 { - if yyv4614 == nil { - yyv4614 = []PersistentVolume{} - yyc4614 = true - } else if len(yyv4614) != 0 { - yyv4614 = yyv4614[:0] - yyc4614 = true + yyv4588 := *v + yyh4588, yyl4588 := z.DecSliceHelperStart() + var yyc4588 bool + if yyl4588 == 0 { + if yyv4588 == nil { + yyv4588 = []PersistentVolume{} + yyc4588 = true + } else if len(yyv4588) != 0 { + yyv4588 = yyv4588[:0] + yyc4588 = true } - } else if yyl4614 > 0 { - var yyrr4614, yyrl4614 int - var yyrt4614 bool - if yyl4614 > cap(yyv4614) { + } else if yyl4588 > 0 { + var yyrr4588, yyrl4588 int + var yyrt4588 bool + if yyl4588 > cap(yyv4588) { - yyrg4614 := len(yyv4614) > 0 - yyv24614 := yyv4614 - yyrl4614, yyrt4614 = z.DecInferLen(yyl4614, z.DecBasicHandle().MaxInitLen, 496) - if yyrt4614 { - if yyrl4614 <= cap(yyv4614) { - yyv4614 = yyv4614[:yyrl4614] + yyrg4588 := len(yyv4588) > 0 + yyv24588 := yyv4588 + yyrl4588, yyrt4588 = z.DecInferLen(yyl4588, z.DecBasicHandle().MaxInitLen, 496) + if yyrt4588 { + if yyrl4588 <= cap(yyv4588) { + yyv4588 = yyv4588[:yyrl4588] } else { - yyv4614 = make([]PersistentVolume, yyrl4614) + yyv4588 = make([]PersistentVolume, yyrl4588) } } else { - yyv4614 = make([]PersistentVolume, yyrl4614) + yyv4588 = make([]PersistentVolume, yyrl4588) } - yyc4614 = true - yyrr4614 = len(yyv4614) - if yyrg4614 { - copy(yyv4614, yyv24614) + yyc4588 = true + yyrr4588 = len(yyv4588) + if yyrg4588 { + copy(yyv4588, yyv24588) } - } else if yyl4614 != len(yyv4614) { - yyv4614 = yyv4614[:yyl4614] - yyc4614 = true + } else if yyl4588 != len(yyv4588) { + yyv4588 = yyv4588[:yyl4588] + yyc4588 = true } - yyj4614 := 0 - for ; yyj4614 < yyrr4614; yyj4614++ { - yyh4614.ElemContainerState(yyj4614) + yyj4588 := 0 + for ; yyj4588 < yyrr4588; yyj4588++ { + yyh4588.ElemContainerState(yyj4588) if r.TryDecodeAsNil() { - yyv4614[yyj4614] = PersistentVolume{} + yyv4588[yyj4588] = PersistentVolume{} } else { - yyv4615 := &yyv4614[yyj4614] - yyv4615.CodecDecodeSelf(d) + yyv4589 := &yyv4588[yyj4588] + yyv4589.CodecDecodeSelf(d) } } - if yyrt4614 { - for ; yyj4614 < yyl4614; yyj4614++ { - yyv4614 = append(yyv4614, PersistentVolume{}) - yyh4614.ElemContainerState(yyj4614) + if yyrt4588 { + for ; yyj4588 < yyl4588; yyj4588++ { + yyv4588 = append(yyv4588, PersistentVolume{}) + yyh4588.ElemContainerState(yyj4588) if r.TryDecodeAsNil() { - yyv4614[yyj4614] = PersistentVolume{} + yyv4588[yyj4588] = PersistentVolume{} } else { - yyv4616 := &yyv4614[yyj4614] - yyv4616.CodecDecodeSelf(d) + yyv4590 := &yyv4588[yyj4588] + yyv4590.CodecDecodeSelf(d) } } } } else { - yyj4614 := 0 - for ; !r.CheckBreak(); yyj4614++ { + yyj4588 := 0 + for ; !r.CheckBreak(); yyj4588++ { - if yyj4614 >= len(yyv4614) { - yyv4614 = append(yyv4614, PersistentVolume{}) // var yyz4614 PersistentVolume - yyc4614 = true + if yyj4588 >= len(yyv4588) { + yyv4588 = append(yyv4588, PersistentVolume{}) // var yyz4588 PersistentVolume + yyc4588 = true } - yyh4614.ElemContainerState(yyj4614) - if yyj4614 < len(yyv4614) { + yyh4588.ElemContainerState(yyj4588) + if yyj4588 < len(yyv4588) { if r.TryDecodeAsNil() { - yyv4614[yyj4614] = PersistentVolume{} + yyv4588[yyj4588] = PersistentVolume{} } else { - yyv4617 := &yyv4614[yyj4614] - yyv4617.CodecDecodeSelf(d) + yyv4591 := &yyv4588[yyj4588] + yyv4591.CodecDecodeSelf(d) } } else { @@ -57637,17 +57338,17 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj4614 < len(yyv4614) { - yyv4614 = yyv4614[:yyj4614] - yyc4614 = true - } else if yyj4614 == 0 && yyv4614 == nil { - yyv4614 = []PersistentVolume{} - yyc4614 = true + if yyj4588 < len(yyv4588) { + yyv4588 = yyv4588[:yyj4588] + yyc4588 = true + } else if yyj4588 == 0 && yyv4588 == nil { + yyv4588 = []PersistentVolume{} + yyc4588 = true } } - yyh4614.End() - if yyc4614 { - *v = yyv4614 + yyh4588.End() + if yyc4588 { + *v = yyv4588 } } @@ -57656,10 +57357,10 @@ func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4618 := range v { + for _, yyv4592 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4619 := &yyv4618 - yy4619.CodecEncodeSelf(e) + yy4593 := &yyv4592 + yy4593.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57669,83 +57370,83 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4620 := *v - yyh4620, yyl4620 := z.DecSliceHelperStart() - var yyc4620 bool - if yyl4620 == 0 { - if yyv4620 == nil { - yyv4620 = []PersistentVolumeClaim{} - yyc4620 = true - } else if len(yyv4620) != 0 { - yyv4620 = yyv4620[:0] - yyc4620 = true + yyv4594 := *v + yyh4594, yyl4594 := z.DecSliceHelperStart() + var yyc4594 bool + if yyl4594 == 0 { + if yyv4594 == nil { + yyv4594 = []PersistentVolumeClaim{} + yyc4594 = true + } else if len(yyv4594) != 0 { + yyv4594 = yyv4594[:0] + yyc4594 = true } - } else if yyl4620 > 0 { - var yyrr4620, yyrl4620 int - var yyrt4620 bool - if yyl4620 > cap(yyv4620) { + } else if yyl4594 > 0 { + var yyrr4594, yyrl4594 int + var yyrt4594 bool + if yyl4594 > cap(yyv4594) { - yyrg4620 := len(yyv4620) > 0 - yyv24620 := yyv4620 - yyrl4620, yyrt4620 = z.DecInferLen(yyl4620, z.DecBasicHandle().MaxInitLen, 368) - if yyrt4620 { - if yyrl4620 <= cap(yyv4620) { - yyv4620 = yyv4620[:yyrl4620] + yyrg4594 := len(yyv4594) > 0 + yyv24594 := yyv4594 + yyrl4594, yyrt4594 = z.DecInferLen(yyl4594, z.DecBasicHandle().MaxInitLen, 368) + if yyrt4594 { + if yyrl4594 <= cap(yyv4594) { + yyv4594 = yyv4594[:yyrl4594] } else { - yyv4620 = make([]PersistentVolumeClaim, yyrl4620) + yyv4594 = make([]PersistentVolumeClaim, yyrl4594) } } else { - yyv4620 = make([]PersistentVolumeClaim, yyrl4620) + yyv4594 = make([]PersistentVolumeClaim, yyrl4594) } - yyc4620 = true - yyrr4620 = len(yyv4620) - if yyrg4620 { - copy(yyv4620, yyv24620) + yyc4594 = true + yyrr4594 = len(yyv4594) + if yyrg4594 { + copy(yyv4594, yyv24594) } - } else if yyl4620 != len(yyv4620) { - yyv4620 = yyv4620[:yyl4620] - yyc4620 = true + } else if yyl4594 != len(yyv4594) { + yyv4594 = yyv4594[:yyl4594] + yyc4594 = true } - yyj4620 := 0 - for ; yyj4620 < yyrr4620; yyj4620++ { - yyh4620.ElemContainerState(yyj4620) + yyj4594 := 0 + for ; yyj4594 < yyrr4594; yyj4594++ { + yyh4594.ElemContainerState(yyj4594) if r.TryDecodeAsNil() { - yyv4620[yyj4620] = PersistentVolumeClaim{} + yyv4594[yyj4594] = PersistentVolumeClaim{} } else { - yyv4621 := &yyv4620[yyj4620] - yyv4621.CodecDecodeSelf(d) + yyv4595 := &yyv4594[yyj4594] + yyv4595.CodecDecodeSelf(d) } } - if yyrt4620 { - for ; yyj4620 < yyl4620; yyj4620++ { - yyv4620 = append(yyv4620, PersistentVolumeClaim{}) - yyh4620.ElemContainerState(yyj4620) + if yyrt4594 { + for ; yyj4594 < yyl4594; yyj4594++ { + yyv4594 = append(yyv4594, PersistentVolumeClaim{}) + yyh4594.ElemContainerState(yyj4594) if r.TryDecodeAsNil() { - yyv4620[yyj4620] = PersistentVolumeClaim{} + yyv4594[yyj4594] = PersistentVolumeClaim{} } else { - yyv4622 := &yyv4620[yyj4620] - yyv4622.CodecDecodeSelf(d) + yyv4596 := &yyv4594[yyj4594] + yyv4596.CodecDecodeSelf(d) } } } } else { - yyj4620 := 0 - for ; !r.CheckBreak(); yyj4620++ { + yyj4594 := 0 + for ; !r.CheckBreak(); yyj4594++ { - if yyj4620 >= len(yyv4620) { - yyv4620 = append(yyv4620, PersistentVolumeClaim{}) // var yyz4620 PersistentVolumeClaim - yyc4620 = true + if yyj4594 >= len(yyv4594) { + yyv4594 = append(yyv4594, PersistentVolumeClaim{}) // var yyz4594 PersistentVolumeClaim + yyc4594 = true } - yyh4620.ElemContainerState(yyj4620) - if yyj4620 < len(yyv4620) { + yyh4594.ElemContainerState(yyj4594) + if yyj4594 < len(yyv4594) { if r.TryDecodeAsNil() { - yyv4620[yyj4620] = PersistentVolumeClaim{} + yyv4594[yyj4594] = PersistentVolumeClaim{} } else { - yyv4623 := &yyv4620[yyj4620] - yyv4623.CodecDecodeSelf(d) + yyv4597 := &yyv4594[yyj4594] + yyv4597.CodecDecodeSelf(d) } } else { @@ -57753,17 +57454,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj4620 < len(yyv4620) { - yyv4620 = yyv4620[:yyj4620] - yyc4620 = true - } else if yyj4620 == 0 && yyv4620 == nil { - yyv4620 = []PersistentVolumeClaim{} - yyc4620 = true + if yyj4594 < len(yyv4594) { + yyv4594 = yyv4594[:yyj4594] + yyc4594 = true + } else if yyj4594 == 0 && yyv4594 == nil { + yyv4594 = []PersistentVolumeClaim{} + yyc4594 = true } } - yyh4620.End() - if yyc4620 { - *v = yyv4620 + yyh4594.End() + if yyc4594 { + *v = yyv4594 } } @@ -57772,10 +57473,10 @@ func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4624 := range v { + for _, yyv4598 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4625 := &yyv4624 - yy4625.CodecEncodeSelf(e) + yy4599 := &yyv4598 + yy4599.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57785,83 +57486,83 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4626 := *v - yyh4626, yyl4626 := z.DecSliceHelperStart() - var yyc4626 bool - if yyl4626 == 0 { - if yyv4626 == nil { - yyv4626 = []KeyToPath{} - yyc4626 = true - } else if len(yyv4626) != 0 { - yyv4626 = yyv4626[:0] - yyc4626 = true + yyv4600 := *v + yyh4600, yyl4600 := z.DecSliceHelperStart() + var yyc4600 bool + if yyl4600 == 0 { + if yyv4600 == nil { + yyv4600 = []KeyToPath{} + yyc4600 = true + } else if len(yyv4600) != 0 { + yyv4600 = yyv4600[:0] + yyc4600 = true } - } else if yyl4626 > 0 { - var yyrr4626, yyrl4626 int - var yyrt4626 bool - if yyl4626 > cap(yyv4626) { + } else if yyl4600 > 0 { + var yyrr4600, yyrl4600 int + var yyrt4600 bool + if yyl4600 > cap(yyv4600) { - yyrg4626 := len(yyv4626) > 0 - yyv24626 := yyv4626 - yyrl4626, yyrt4626 = z.DecInferLen(yyl4626, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4626 { - if yyrl4626 <= cap(yyv4626) { - yyv4626 = yyv4626[:yyrl4626] + yyrg4600 := len(yyv4600) > 0 + yyv24600 := yyv4600 + yyrl4600, yyrt4600 = z.DecInferLen(yyl4600, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4600 { + if yyrl4600 <= cap(yyv4600) { + yyv4600 = yyv4600[:yyrl4600] } else { - yyv4626 = make([]KeyToPath, yyrl4626) + yyv4600 = make([]KeyToPath, yyrl4600) } } else { - yyv4626 = make([]KeyToPath, yyrl4626) + yyv4600 = make([]KeyToPath, yyrl4600) } - yyc4626 = true - yyrr4626 = len(yyv4626) - if yyrg4626 { - copy(yyv4626, yyv24626) + yyc4600 = true + yyrr4600 = len(yyv4600) + if yyrg4600 { + copy(yyv4600, yyv24600) } - } else if yyl4626 != len(yyv4626) { - yyv4626 = yyv4626[:yyl4626] - yyc4626 = true + } else if yyl4600 != len(yyv4600) { + yyv4600 = yyv4600[:yyl4600] + yyc4600 = true } - yyj4626 := 0 - for ; yyj4626 < yyrr4626; yyj4626++ { - yyh4626.ElemContainerState(yyj4626) + yyj4600 := 0 + for ; yyj4600 < yyrr4600; yyj4600++ { + yyh4600.ElemContainerState(yyj4600) if r.TryDecodeAsNil() { - yyv4626[yyj4626] = KeyToPath{} + yyv4600[yyj4600] = KeyToPath{} } else { - yyv4627 := &yyv4626[yyj4626] - yyv4627.CodecDecodeSelf(d) + yyv4601 := &yyv4600[yyj4600] + yyv4601.CodecDecodeSelf(d) } } - if yyrt4626 { - for ; yyj4626 < yyl4626; yyj4626++ { - yyv4626 = append(yyv4626, KeyToPath{}) - yyh4626.ElemContainerState(yyj4626) + if yyrt4600 { + for ; yyj4600 < yyl4600; yyj4600++ { + yyv4600 = append(yyv4600, KeyToPath{}) + yyh4600.ElemContainerState(yyj4600) if r.TryDecodeAsNil() { - yyv4626[yyj4626] = KeyToPath{} + yyv4600[yyj4600] = KeyToPath{} } else { - yyv4628 := &yyv4626[yyj4626] - yyv4628.CodecDecodeSelf(d) + yyv4602 := &yyv4600[yyj4600] + yyv4602.CodecDecodeSelf(d) } } } } else { - yyj4626 := 0 - for ; !r.CheckBreak(); yyj4626++ { + yyj4600 := 0 + for ; !r.CheckBreak(); yyj4600++ { - if yyj4626 >= len(yyv4626) { - yyv4626 = append(yyv4626, KeyToPath{}) // var yyz4626 KeyToPath - yyc4626 = true + if yyj4600 >= len(yyv4600) { + yyv4600 = append(yyv4600, KeyToPath{}) // var yyz4600 KeyToPath + yyc4600 = true } - yyh4626.ElemContainerState(yyj4626) - if yyj4626 < len(yyv4626) { + yyh4600.ElemContainerState(yyj4600) + if yyj4600 < len(yyv4600) { if r.TryDecodeAsNil() { - yyv4626[yyj4626] = KeyToPath{} + yyv4600[yyj4600] = KeyToPath{} } else { - yyv4629 := &yyv4626[yyj4626] - yyv4629.CodecDecodeSelf(d) + yyv4603 := &yyv4600[yyj4600] + yyv4603.CodecDecodeSelf(d) } } else { @@ -57869,17 +57570,17 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) } } - if yyj4626 < len(yyv4626) { - yyv4626 = yyv4626[:yyj4626] - yyc4626 = true - } else if yyj4626 == 0 && yyv4626 == nil { - yyv4626 = []KeyToPath{} - yyc4626 = true + if yyj4600 < len(yyv4600) { + yyv4600 = yyv4600[:yyj4600] + yyc4600 = true + } else if yyj4600 == 0 && yyv4600 == nil { + yyv4600 = []KeyToPath{} + yyc4600 = true } } - yyh4626.End() - if yyc4626 { - *v = yyv4626 + yyh4600.End() + if yyc4600 { + *v = yyv4600 } } @@ -57888,10 +57589,10 @@ func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4630 := range v { + for _, yyv4604 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4631 := &yyv4630 - yy4631.CodecEncodeSelf(e) + yy4605 := &yyv4604 + yy4605.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57901,83 +57602,83 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4632 := *v - yyh4632, yyl4632 := z.DecSliceHelperStart() - var yyc4632 bool - if yyl4632 == 0 { - if yyv4632 == nil { - yyv4632 = []HTTPHeader{} - yyc4632 = true - } else if len(yyv4632) != 0 { - yyv4632 = yyv4632[:0] - yyc4632 = true + yyv4606 := *v + yyh4606, yyl4606 := z.DecSliceHelperStart() + var yyc4606 bool + if yyl4606 == 0 { + if yyv4606 == nil { + yyv4606 = []HTTPHeader{} + yyc4606 = true + } else if len(yyv4606) != 0 { + yyv4606 = yyv4606[:0] + yyc4606 = true } - } else if yyl4632 > 0 { - var yyrr4632, yyrl4632 int - var yyrt4632 bool - if yyl4632 > cap(yyv4632) { + } else if yyl4606 > 0 { + var yyrr4606, yyrl4606 int + var yyrt4606 bool + if yyl4606 > cap(yyv4606) { - yyrg4632 := len(yyv4632) > 0 - yyv24632 := yyv4632 - yyrl4632, yyrt4632 = z.DecInferLen(yyl4632, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4632 { - if yyrl4632 <= cap(yyv4632) { - yyv4632 = yyv4632[:yyrl4632] + yyrg4606 := len(yyv4606) > 0 + yyv24606 := yyv4606 + yyrl4606, yyrt4606 = z.DecInferLen(yyl4606, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4606 { + if yyrl4606 <= cap(yyv4606) { + yyv4606 = yyv4606[:yyrl4606] } else { - yyv4632 = make([]HTTPHeader, yyrl4632) + yyv4606 = make([]HTTPHeader, yyrl4606) } } else { - yyv4632 = make([]HTTPHeader, yyrl4632) + yyv4606 = make([]HTTPHeader, yyrl4606) } - yyc4632 = true - yyrr4632 = len(yyv4632) - if yyrg4632 { - copy(yyv4632, yyv24632) + yyc4606 = true + yyrr4606 = len(yyv4606) + if yyrg4606 { + copy(yyv4606, yyv24606) } - } else if yyl4632 != len(yyv4632) { - yyv4632 = yyv4632[:yyl4632] - yyc4632 = true + } else if yyl4606 != len(yyv4606) { + yyv4606 = yyv4606[:yyl4606] + yyc4606 = true } - yyj4632 := 0 - for ; yyj4632 < yyrr4632; yyj4632++ { - yyh4632.ElemContainerState(yyj4632) + yyj4606 := 0 + for ; yyj4606 < yyrr4606; yyj4606++ { + yyh4606.ElemContainerState(yyj4606) if r.TryDecodeAsNil() { - yyv4632[yyj4632] = HTTPHeader{} + yyv4606[yyj4606] = HTTPHeader{} } else { - yyv4633 := &yyv4632[yyj4632] - yyv4633.CodecDecodeSelf(d) + yyv4607 := &yyv4606[yyj4606] + yyv4607.CodecDecodeSelf(d) } } - if yyrt4632 { - for ; yyj4632 < yyl4632; yyj4632++ { - yyv4632 = append(yyv4632, HTTPHeader{}) - yyh4632.ElemContainerState(yyj4632) + if yyrt4606 { + for ; yyj4606 < yyl4606; yyj4606++ { + yyv4606 = append(yyv4606, HTTPHeader{}) + yyh4606.ElemContainerState(yyj4606) if r.TryDecodeAsNil() { - yyv4632[yyj4632] = HTTPHeader{} + yyv4606[yyj4606] = HTTPHeader{} } else { - yyv4634 := &yyv4632[yyj4632] - yyv4634.CodecDecodeSelf(d) + yyv4608 := &yyv4606[yyj4606] + yyv4608.CodecDecodeSelf(d) } } } } else { - yyj4632 := 0 - for ; !r.CheckBreak(); yyj4632++ { + yyj4606 := 0 + for ; !r.CheckBreak(); yyj4606++ { - if yyj4632 >= len(yyv4632) { - yyv4632 = append(yyv4632, HTTPHeader{}) // var yyz4632 HTTPHeader - yyc4632 = true + if yyj4606 >= len(yyv4606) { + yyv4606 = append(yyv4606, HTTPHeader{}) // var yyz4606 HTTPHeader + yyc4606 = true } - yyh4632.ElemContainerState(yyj4632) - if yyj4632 < len(yyv4632) { + yyh4606.ElemContainerState(yyj4606) + if yyj4606 < len(yyv4606) { if r.TryDecodeAsNil() { - yyv4632[yyj4632] = HTTPHeader{} + yyv4606[yyj4606] = HTTPHeader{} } else { - yyv4635 := &yyv4632[yyj4632] - yyv4635.CodecDecodeSelf(d) + yyv4609 := &yyv4606[yyj4606] + yyv4609.CodecDecodeSelf(d) } } else { @@ -57985,17 +57686,17 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode } } - if yyj4632 < len(yyv4632) { - yyv4632 = yyv4632[:yyj4632] - yyc4632 = true - } else if yyj4632 == 0 && yyv4632 == nil { - yyv4632 = []HTTPHeader{} - yyc4632 = true + if yyj4606 < len(yyv4606) { + yyv4606 = yyv4606[:yyj4606] + yyc4606 = true + } else if yyj4606 == 0 && yyv4606 == nil { + yyv4606 = []HTTPHeader{} + yyc4606 = true } } - yyh4632.End() - if yyc4632 { - *v = yyv4632 + yyh4606.End() + if yyc4606 { + *v = yyv4606 } } @@ -58004,9 +57705,9 @@ func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4636 := range v { + for _, yyv4610 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4636.CodecEncodeSelf(e) + yyv4610.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58016,75 +57717,75 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4637 := *v - yyh4637, yyl4637 := z.DecSliceHelperStart() - var yyc4637 bool - if yyl4637 == 0 { - if yyv4637 == nil { - yyv4637 = []Capability{} - yyc4637 = true - } else if len(yyv4637) != 0 { - yyv4637 = yyv4637[:0] - yyc4637 = true + yyv4611 := *v + yyh4611, yyl4611 := z.DecSliceHelperStart() + var yyc4611 bool + if yyl4611 == 0 { + if yyv4611 == nil { + yyv4611 = []Capability{} + yyc4611 = true + } else if len(yyv4611) != 0 { + yyv4611 = yyv4611[:0] + yyc4611 = true } - } else if yyl4637 > 0 { - var yyrr4637, yyrl4637 int - var yyrt4637 bool - if yyl4637 > cap(yyv4637) { + } else if yyl4611 > 0 { + var yyrr4611, yyrl4611 int + var yyrt4611 bool + if yyl4611 > cap(yyv4611) { - yyrl4637, yyrt4637 = z.DecInferLen(yyl4637, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4637 { - if yyrl4637 <= cap(yyv4637) { - yyv4637 = yyv4637[:yyrl4637] + yyrl4611, yyrt4611 = z.DecInferLen(yyl4611, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4611 { + if yyrl4611 <= cap(yyv4611) { + yyv4611 = yyv4611[:yyrl4611] } else { - yyv4637 = make([]Capability, yyrl4637) + yyv4611 = make([]Capability, yyrl4611) } } else { - yyv4637 = make([]Capability, yyrl4637) + yyv4611 = make([]Capability, yyrl4611) } - yyc4637 = true - yyrr4637 = len(yyv4637) - } else if yyl4637 != len(yyv4637) { - yyv4637 = yyv4637[:yyl4637] - yyc4637 = true + yyc4611 = true + yyrr4611 = len(yyv4611) + } else if yyl4611 != len(yyv4611) { + yyv4611 = yyv4611[:yyl4611] + yyc4611 = true } - yyj4637 := 0 - for ; yyj4637 < yyrr4637; yyj4637++ { - yyh4637.ElemContainerState(yyj4637) + yyj4611 := 0 + for ; yyj4611 < yyrr4611; yyj4611++ { + yyh4611.ElemContainerState(yyj4611) if r.TryDecodeAsNil() { - yyv4637[yyj4637] = "" + yyv4611[yyj4611] = "" } else { - yyv4637[yyj4637] = Capability(r.DecodeString()) + yyv4611[yyj4611] = Capability(r.DecodeString()) } } - if yyrt4637 { - for ; yyj4637 < yyl4637; yyj4637++ { - yyv4637 = append(yyv4637, "") - yyh4637.ElemContainerState(yyj4637) + if yyrt4611 { + for ; yyj4611 < yyl4611; yyj4611++ { + yyv4611 = append(yyv4611, "") + yyh4611.ElemContainerState(yyj4611) if r.TryDecodeAsNil() { - yyv4637[yyj4637] = "" + yyv4611[yyj4611] = "" } else { - yyv4637[yyj4637] = Capability(r.DecodeString()) + yyv4611[yyj4611] = Capability(r.DecodeString()) } } } } else { - yyj4637 := 0 - for ; !r.CheckBreak(); yyj4637++ { + yyj4611 := 0 + for ; !r.CheckBreak(); yyj4611++ { - if yyj4637 >= len(yyv4637) { - yyv4637 = append(yyv4637, "") // var yyz4637 Capability - yyc4637 = true + if yyj4611 >= len(yyv4611) { + yyv4611 = append(yyv4611, "") // var yyz4611 Capability + yyc4611 = true } - yyh4637.ElemContainerState(yyj4637) - if yyj4637 < len(yyv4637) { + yyh4611.ElemContainerState(yyj4611) + if yyj4611 < len(yyv4611) { if r.TryDecodeAsNil() { - yyv4637[yyj4637] = "" + yyv4611[yyj4611] = "" } else { - yyv4637[yyj4637] = Capability(r.DecodeString()) + yyv4611[yyj4611] = Capability(r.DecodeString()) } } else { @@ -58092,17 +57793,17 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } - if yyj4637 < len(yyv4637) { - yyv4637 = yyv4637[:yyj4637] - yyc4637 = true - } else if yyj4637 == 0 && yyv4637 == nil { - yyv4637 = []Capability{} - yyc4637 = true + if yyj4611 < len(yyv4611) { + yyv4611 = yyv4611[:yyj4611] + yyc4611 = true + } else if yyj4611 == 0 && yyv4611 == nil { + yyv4611 = []Capability{} + yyc4611 = true } } - yyh4637.End() - if yyc4637 { - *v = yyv4637 + yyh4611.End() + if yyc4611 { + *v = yyv4611 } } @@ -58111,10 +57812,10 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4641 := range v { + for _, yyv4615 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4642 := &yyv4641 - yy4642.CodecEncodeSelf(e) + yy4616 := &yyv4615 + yy4616.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58124,83 +57825,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4643 := *v - yyh4643, yyl4643 := z.DecSliceHelperStart() - var yyc4643 bool - if yyl4643 == 0 { - if yyv4643 == nil { - yyv4643 = []ContainerPort{} - yyc4643 = true - } else if len(yyv4643) != 0 { - yyv4643 = yyv4643[:0] - yyc4643 = true + yyv4617 := *v + yyh4617, yyl4617 := z.DecSliceHelperStart() + var yyc4617 bool + if yyl4617 == 0 { + if yyv4617 == nil { + yyv4617 = []ContainerPort{} + yyc4617 = true + } else if len(yyv4617) != 0 { + yyv4617 = yyv4617[:0] + yyc4617 = true } - } else if yyl4643 > 0 { - var yyrr4643, yyrl4643 int - var yyrt4643 bool - if yyl4643 > cap(yyv4643) { + } else if yyl4617 > 0 { + var yyrr4617, yyrl4617 int + var yyrt4617 bool + if yyl4617 > cap(yyv4617) { - yyrg4643 := len(yyv4643) > 0 - yyv24643 := yyv4643 - yyrl4643, yyrt4643 = z.DecInferLen(yyl4643, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4643 { - if yyrl4643 <= cap(yyv4643) { - yyv4643 = yyv4643[:yyrl4643] + yyrg4617 := len(yyv4617) > 0 + yyv24617 := yyv4617 + yyrl4617, yyrt4617 = z.DecInferLen(yyl4617, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4617 { + if yyrl4617 <= cap(yyv4617) { + yyv4617 = yyv4617[:yyrl4617] } else { - yyv4643 = make([]ContainerPort, yyrl4643) + yyv4617 = make([]ContainerPort, yyrl4617) } } else { - yyv4643 = make([]ContainerPort, yyrl4643) + yyv4617 = make([]ContainerPort, yyrl4617) } - yyc4643 = true - yyrr4643 = len(yyv4643) - if yyrg4643 { - copy(yyv4643, yyv24643) + yyc4617 = true + yyrr4617 = len(yyv4617) + if yyrg4617 { + copy(yyv4617, yyv24617) } - } else if yyl4643 != len(yyv4643) { - yyv4643 = yyv4643[:yyl4643] - yyc4643 = true + } else if yyl4617 != len(yyv4617) { + yyv4617 = yyv4617[:yyl4617] + yyc4617 = true } - yyj4643 := 0 - for ; yyj4643 < yyrr4643; yyj4643++ { - yyh4643.ElemContainerState(yyj4643) + yyj4617 := 0 + for ; yyj4617 < yyrr4617; yyj4617++ { + yyh4617.ElemContainerState(yyj4617) if r.TryDecodeAsNil() { - yyv4643[yyj4643] = ContainerPort{} + yyv4617[yyj4617] = ContainerPort{} } else { - yyv4644 := &yyv4643[yyj4643] - yyv4644.CodecDecodeSelf(d) + yyv4618 := &yyv4617[yyj4617] + yyv4618.CodecDecodeSelf(d) } } - if yyrt4643 { - for ; yyj4643 < yyl4643; yyj4643++ { - yyv4643 = append(yyv4643, ContainerPort{}) - yyh4643.ElemContainerState(yyj4643) + if yyrt4617 { + for ; yyj4617 < yyl4617; yyj4617++ { + yyv4617 = append(yyv4617, ContainerPort{}) + yyh4617.ElemContainerState(yyj4617) if r.TryDecodeAsNil() { - yyv4643[yyj4643] = ContainerPort{} + yyv4617[yyj4617] = ContainerPort{} } else { - yyv4645 := &yyv4643[yyj4643] - yyv4645.CodecDecodeSelf(d) + yyv4619 := &yyv4617[yyj4617] + yyv4619.CodecDecodeSelf(d) } } } } else { - yyj4643 := 0 - for ; !r.CheckBreak(); yyj4643++ { + yyj4617 := 0 + for ; !r.CheckBreak(); yyj4617++ { - if yyj4643 >= len(yyv4643) { - yyv4643 = append(yyv4643, ContainerPort{}) // var yyz4643 ContainerPort - yyc4643 = true + if yyj4617 >= len(yyv4617) { + yyv4617 = append(yyv4617, ContainerPort{}) // var yyz4617 ContainerPort + yyc4617 = true } - yyh4643.ElemContainerState(yyj4643) - if yyj4643 < len(yyv4643) { + yyh4617.ElemContainerState(yyj4617) + if yyj4617 < len(yyv4617) { if r.TryDecodeAsNil() { - yyv4643[yyj4643] = ContainerPort{} + yyv4617[yyj4617] = ContainerPort{} } else { - yyv4646 := &yyv4643[yyj4643] - yyv4646.CodecDecodeSelf(d) + yyv4620 := &yyv4617[yyj4617] + yyv4620.CodecDecodeSelf(d) } } else { @@ -58208,17 +57909,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj4643 < len(yyv4643) { - yyv4643 = yyv4643[:yyj4643] - yyc4643 = true - } else if yyj4643 == 0 && yyv4643 == nil { - yyv4643 = []ContainerPort{} - yyc4643 = true + if yyj4617 < len(yyv4617) { + yyv4617 = yyv4617[:yyj4617] + yyc4617 = true + } else if yyj4617 == 0 && yyv4617 == nil { + yyv4617 = []ContainerPort{} + yyc4617 = true } } - yyh4643.End() - if yyc4643 { - *v = yyv4643 + yyh4617.End() + if yyc4617 { + *v = yyv4617 } } @@ -58227,10 +57928,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4647 := range v { + for _, yyv4621 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4648 := &yyv4647 - yy4648.CodecEncodeSelf(e) + yy4622 := &yyv4621 + yy4622.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58240,83 +57941,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, 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 = []EnvVar{} - yyc4649 = true - } else if len(yyv4649) != 0 { - yyv4649 = yyv4649[:0] - yyc4649 = true + yyv4623 := *v + yyh4623, yyl4623 := z.DecSliceHelperStart() + var yyc4623 bool + if yyl4623 == 0 { + if yyv4623 == nil { + yyv4623 = []EnvVar{} + yyc4623 = true + } else if len(yyv4623) != 0 { + yyv4623 = yyv4623[:0] + yyc4623 = true } - } else if yyl4649 > 0 { - var yyrr4649, yyrl4649 int - var yyrt4649 bool - if yyl4649 > cap(yyv4649) { + } else if yyl4623 > 0 { + var yyrr4623, yyrl4623 int + var yyrt4623 bool + if yyl4623 > cap(yyv4623) { - yyrg4649 := len(yyv4649) > 0 - yyv24649 := yyv4649 - yyrl4649, yyrt4649 = z.DecInferLen(yyl4649, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4649 { - if yyrl4649 <= cap(yyv4649) { - yyv4649 = yyv4649[:yyrl4649] + yyrg4623 := len(yyv4623) > 0 + yyv24623 := yyv4623 + yyrl4623, yyrt4623 = z.DecInferLen(yyl4623, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4623 { + if yyrl4623 <= cap(yyv4623) { + yyv4623 = yyv4623[:yyrl4623] } else { - yyv4649 = make([]EnvVar, yyrl4649) + yyv4623 = make([]EnvVar, yyrl4623) } } else { - yyv4649 = make([]EnvVar, yyrl4649) + yyv4623 = make([]EnvVar, yyrl4623) } - yyc4649 = true - yyrr4649 = len(yyv4649) - if yyrg4649 { - copy(yyv4649, yyv24649) + yyc4623 = true + yyrr4623 = len(yyv4623) + if yyrg4623 { + copy(yyv4623, yyv24623) } - } else if yyl4649 != len(yyv4649) { - yyv4649 = yyv4649[:yyl4649] - yyc4649 = true + } else if yyl4623 != len(yyv4623) { + yyv4623 = yyv4623[:yyl4623] + yyc4623 = true } - yyj4649 := 0 - for ; yyj4649 < yyrr4649; yyj4649++ { - yyh4649.ElemContainerState(yyj4649) + yyj4623 := 0 + for ; yyj4623 < yyrr4623; yyj4623++ { + yyh4623.ElemContainerState(yyj4623) if r.TryDecodeAsNil() { - yyv4649[yyj4649] = EnvVar{} + yyv4623[yyj4623] = EnvVar{} } else { - yyv4650 := &yyv4649[yyj4649] - yyv4650.CodecDecodeSelf(d) + yyv4624 := &yyv4623[yyj4623] + yyv4624.CodecDecodeSelf(d) } } - if yyrt4649 { - for ; yyj4649 < yyl4649; yyj4649++ { - yyv4649 = append(yyv4649, EnvVar{}) - yyh4649.ElemContainerState(yyj4649) + if yyrt4623 { + for ; yyj4623 < yyl4623; yyj4623++ { + yyv4623 = append(yyv4623, EnvVar{}) + yyh4623.ElemContainerState(yyj4623) if r.TryDecodeAsNil() { - yyv4649[yyj4649] = EnvVar{} + yyv4623[yyj4623] = EnvVar{} } else { - yyv4651 := &yyv4649[yyj4649] - yyv4651.CodecDecodeSelf(d) + yyv4625 := &yyv4623[yyj4623] + yyv4625.CodecDecodeSelf(d) } } } } else { - yyj4649 := 0 - for ; !r.CheckBreak(); yyj4649++ { + yyj4623 := 0 + for ; !r.CheckBreak(); yyj4623++ { - if yyj4649 >= len(yyv4649) { - yyv4649 = append(yyv4649, EnvVar{}) // var yyz4649 EnvVar - yyc4649 = true + if yyj4623 >= len(yyv4623) { + yyv4623 = append(yyv4623, EnvVar{}) // var yyz4623 EnvVar + yyc4623 = true } - yyh4649.ElemContainerState(yyj4649) - if yyj4649 < len(yyv4649) { + yyh4623.ElemContainerState(yyj4623) + if yyj4623 < len(yyv4623) { if r.TryDecodeAsNil() { - yyv4649[yyj4649] = EnvVar{} + yyv4623[yyj4623] = EnvVar{} } else { - yyv4652 := &yyv4649[yyj4649] - yyv4652.CodecDecodeSelf(d) + yyv4626 := &yyv4623[yyj4623] + yyv4626.CodecDecodeSelf(d) } } else { @@ -58324,17 +58025,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj4649 < len(yyv4649) { - yyv4649 = yyv4649[:yyj4649] - yyc4649 = true - } else if yyj4649 == 0 && yyv4649 == nil { - yyv4649 = []EnvVar{} - yyc4649 = true + if yyj4623 < len(yyv4623) { + yyv4623 = yyv4623[:yyj4623] + yyc4623 = true + } else if yyj4623 == 0 && yyv4623 == nil { + yyv4623 = []EnvVar{} + yyc4623 = true } } - yyh4649.End() - if yyc4649 { - *v = yyv4649 + yyh4623.End() + if yyc4623 { + *v = yyv4623 } } @@ -58343,10 +58044,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4653 := range v { + for _, yyv4627 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4654 := &yyv4653 - yy4654.CodecEncodeSelf(e) + yy4628 := &yyv4627 + yy4628.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58356,83 +58057,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4655 := *v - yyh4655, yyl4655 := z.DecSliceHelperStart() - var yyc4655 bool - if yyl4655 == 0 { - if yyv4655 == nil { - yyv4655 = []VolumeMount{} - yyc4655 = true - } else if len(yyv4655) != 0 { - yyv4655 = yyv4655[:0] - yyc4655 = true + yyv4629 := *v + yyh4629, yyl4629 := z.DecSliceHelperStart() + var yyc4629 bool + if yyl4629 == 0 { + if yyv4629 == nil { + yyv4629 = []VolumeMount{} + yyc4629 = true + } else if len(yyv4629) != 0 { + yyv4629 = yyv4629[:0] + yyc4629 = true } - } else if yyl4655 > 0 { - var yyrr4655, yyrl4655 int - var yyrt4655 bool - if yyl4655 > cap(yyv4655) { + } else if yyl4629 > 0 { + var yyrr4629, yyrl4629 int + var yyrt4629 bool + if yyl4629 > cap(yyv4629) { - yyrg4655 := len(yyv4655) > 0 - yyv24655 := yyv4655 - yyrl4655, yyrt4655 = z.DecInferLen(yyl4655, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4655 { - if yyrl4655 <= cap(yyv4655) { - yyv4655 = yyv4655[:yyrl4655] + yyrg4629 := len(yyv4629) > 0 + yyv24629 := yyv4629 + yyrl4629, yyrt4629 = z.DecInferLen(yyl4629, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4629 { + if yyrl4629 <= cap(yyv4629) { + yyv4629 = yyv4629[:yyrl4629] } else { - yyv4655 = make([]VolumeMount, yyrl4655) + yyv4629 = make([]VolumeMount, yyrl4629) } } else { - yyv4655 = make([]VolumeMount, yyrl4655) + yyv4629 = make([]VolumeMount, yyrl4629) } - yyc4655 = true - yyrr4655 = len(yyv4655) - if yyrg4655 { - copy(yyv4655, yyv24655) + yyc4629 = true + yyrr4629 = len(yyv4629) + if yyrg4629 { + copy(yyv4629, yyv24629) } - } else if yyl4655 != len(yyv4655) { - yyv4655 = yyv4655[:yyl4655] - yyc4655 = true + } else if yyl4629 != len(yyv4629) { + yyv4629 = yyv4629[:yyl4629] + yyc4629 = true } - yyj4655 := 0 - for ; yyj4655 < yyrr4655; yyj4655++ { - yyh4655.ElemContainerState(yyj4655) + yyj4629 := 0 + for ; yyj4629 < yyrr4629; yyj4629++ { + yyh4629.ElemContainerState(yyj4629) if r.TryDecodeAsNil() { - yyv4655[yyj4655] = VolumeMount{} + yyv4629[yyj4629] = VolumeMount{} } else { - yyv4656 := &yyv4655[yyj4655] - yyv4656.CodecDecodeSelf(d) + yyv4630 := &yyv4629[yyj4629] + yyv4630.CodecDecodeSelf(d) } } - if yyrt4655 { - for ; yyj4655 < yyl4655; yyj4655++ { - yyv4655 = append(yyv4655, VolumeMount{}) - yyh4655.ElemContainerState(yyj4655) + if yyrt4629 { + for ; yyj4629 < yyl4629; yyj4629++ { + yyv4629 = append(yyv4629, VolumeMount{}) + yyh4629.ElemContainerState(yyj4629) if r.TryDecodeAsNil() { - yyv4655[yyj4655] = VolumeMount{} + yyv4629[yyj4629] = VolumeMount{} } else { - yyv4657 := &yyv4655[yyj4655] - yyv4657.CodecDecodeSelf(d) + yyv4631 := &yyv4629[yyj4629] + yyv4631.CodecDecodeSelf(d) } } } } else { - yyj4655 := 0 - for ; !r.CheckBreak(); yyj4655++ { + yyj4629 := 0 + for ; !r.CheckBreak(); yyj4629++ { - if yyj4655 >= len(yyv4655) { - yyv4655 = append(yyv4655, VolumeMount{}) // var yyz4655 VolumeMount - yyc4655 = true + if yyj4629 >= len(yyv4629) { + yyv4629 = append(yyv4629, VolumeMount{}) // var yyz4629 VolumeMount + yyc4629 = true } - yyh4655.ElemContainerState(yyj4655) - if yyj4655 < len(yyv4655) { + yyh4629.ElemContainerState(yyj4629) + if yyj4629 < len(yyv4629) { if r.TryDecodeAsNil() { - yyv4655[yyj4655] = VolumeMount{} + yyv4629[yyj4629] = VolumeMount{} } else { - yyv4658 := &yyv4655[yyj4655] - yyv4658.CodecDecodeSelf(d) + yyv4632 := &yyv4629[yyj4629] + yyv4632.CodecDecodeSelf(d) } } else { @@ -58440,17 +58141,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj4655 < len(yyv4655) { - yyv4655 = yyv4655[:yyj4655] - yyc4655 = true - } else if yyj4655 == 0 && yyv4655 == nil { - yyv4655 = []VolumeMount{} - yyc4655 = true + if yyj4629 < len(yyv4629) { + yyv4629 = yyv4629[:yyj4629] + yyc4629 = true + } else if yyj4629 == 0 && yyv4629 == nil { + yyv4629 = []VolumeMount{} + yyc4629 = true } } - yyh4655.End() - if yyc4655 { - *v = yyv4655 + yyh4629.End() + if yyc4629 { + *v = yyv4629 } } @@ -58459,10 +58160,10 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4659 := range v { + for _, yyv4633 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4660 := &yyv4659 - yy4660.CodecEncodeSelf(e) + yy4634 := &yyv4633 + yy4634.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58472,83 +58173,83 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4661 := *v - yyh4661, yyl4661 := z.DecSliceHelperStart() - var yyc4661 bool - if yyl4661 == 0 { - if yyv4661 == nil { - yyv4661 = []NodeSelectorTerm{} - yyc4661 = true - } else if len(yyv4661) != 0 { - yyv4661 = yyv4661[:0] - yyc4661 = true + yyv4635 := *v + yyh4635, yyl4635 := z.DecSliceHelperStart() + var yyc4635 bool + if yyl4635 == 0 { + if yyv4635 == nil { + yyv4635 = []NodeSelectorTerm{} + yyc4635 = true + } else if len(yyv4635) != 0 { + yyv4635 = yyv4635[:0] + yyc4635 = true } - } else if yyl4661 > 0 { - var yyrr4661, yyrl4661 int - var yyrt4661 bool - if yyl4661 > cap(yyv4661) { + } else if yyl4635 > 0 { + var yyrr4635, yyrl4635 int + var yyrt4635 bool + if yyl4635 > cap(yyv4635) { - yyrg4661 := len(yyv4661) > 0 - yyv24661 := yyv4661 - yyrl4661, yyrt4661 = z.DecInferLen(yyl4661, z.DecBasicHandle().MaxInitLen, 24) - if yyrt4661 { - if yyrl4661 <= cap(yyv4661) { - yyv4661 = yyv4661[:yyrl4661] + yyrg4635 := len(yyv4635) > 0 + yyv24635 := yyv4635 + yyrl4635, yyrt4635 = z.DecInferLen(yyl4635, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4635 { + if yyrl4635 <= cap(yyv4635) { + yyv4635 = yyv4635[:yyrl4635] } else { - yyv4661 = make([]NodeSelectorTerm, yyrl4661) + yyv4635 = make([]NodeSelectorTerm, yyrl4635) } } else { - yyv4661 = make([]NodeSelectorTerm, yyrl4661) + yyv4635 = make([]NodeSelectorTerm, yyrl4635) } - yyc4661 = true - yyrr4661 = len(yyv4661) - if yyrg4661 { - copy(yyv4661, yyv24661) + yyc4635 = true + yyrr4635 = len(yyv4635) + if yyrg4635 { + copy(yyv4635, yyv24635) } - } else if yyl4661 != len(yyv4661) { - yyv4661 = yyv4661[:yyl4661] - yyc4661 = true + } else if yyl4635 != len(yyv4635) { + yyv4635 = yyv4635[:yyl4635] + yyc4635 = true } - yyj4661 := 0 - for ; yyj4661 < yyrr4661; yyj4661++ { - yyh4661.ElemContainerState(yyj4661) + yyj4635 := 0 + for ; yyj4635 < yyrr4635; yyj4635++ { + yyh4635.ElemContainerState(yyj4635) if r.TryDecodeAsNil() { - yyv4661[yyj4661] = NodeSelectorTerm{} + yyv4635[yyj4635] = NodeSelectorTerm{} } else { - yyv4662 := &yyv4661[yyj4661] - yyv4662.CodecDecodeSelf(d) + yyv4636 := &yyv4635[yyj4635] + yyv4636.CodecDecodeSelf(d) } } - if yyrt4661 { - for ; yyj4661 < yyl4661; yyj4661++ { - yyv4661 = append(yyv4661, NodeSelectorTerm{}) - yyh4661.ElemContainerState(yyj4661) + if yyrt4635 { + for ; yyj4635 < yyl4635; yyj4635++ { + yyv4635 = append(yyv4635, NodeSelectorTerm{}) + yyh4635.ElemContainerState(yyj4635) if r.TryDecodeAsNil() { - yyv4661[yyj4661] = NodeSelectorTerm{} + yyv4635[yyj4635] = NodeSelectorTerm{} } else { - yyv4663 := &yyv4661[yyj4661] - yyv4663.CodecDecodeSelf(d) + yyv4637 := &yyv4635[yyj4635] + yyv4637.CodecDecodeSelf(d) } } } } else { - yyj4661 := 0 - for ; !r.CheckBreak(); yyj4661++ { + yyj4635 := 0 + for ; !r.CheckBreak(); yyj4635++ { - if yyj4661 >= len(yyv4661) { - yyv4661 = append(yyv4661, NodeSelectorTerm{}) // var yyz4661 NodeSelectorTerm - yyc4661 = true + if yyj4635 >= len(yyv4635) { + yyv4635 = append(yyv4635, NodeSelectorTerm{}) // var yyz4635 NodeSelectorTerm + yyc4635 = true } - yyh4661.ElemContainerState(yyj4661) - if yyj4661 < len(yyv4661) { + yyh4635.ElemContainerState(yyj4635) + if yyj4635 < len(yyv4635) { if r.TryDecodeAsNil() { - yyv4661[yyj4661] = NodeSelectorTerm{} + yyv4635[yyj4635] = NodeSelectorTerm{} } else { - yyv4664 := &yyv4661[yyj4661] - yyv4664.CodecDecodeSelf(d) + yyv4638 := &yyv4635[yyj4635] + yyv4638.CodecDecodeSelf(d) } } else { @@ -58556,17 +58257,17 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } - if yyj4661 < len(yyv4661) { - yyv4661 = yyv4661[:yyj4661] - yyc4661 = true - } else if yyj4661 == 0 && yyv4661 == nil { - yyv4661 = []NodeSelectorTerm{} - yyc4661 = true + if yyj4635 < len(yyv4635) { + yyv4635 = yyv4635[:yyj4635] + yyc4635 = true + } else if yyj4635 == 0 && yyv4635 == nil { + yyv4635 = []NodeSelectorTerm{} + yyc4635 = true } } - yyh4661.End() - if yyc4661 { - *v = yyv4661 + yyh4635.End() + if yyc4635 { + *v = yyv4635 } } @@ -58575,10 +58276,10 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4665 := range v { + for _, yyv4639 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4666 := &yyv4665 - yy4666.CodecEncodeSelf(e) + yy4640 := &yyv4639 + yy4640.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58588,83 +58289,83 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4667 := *v - yyh4667, yyl4667 := z.DecSliceHelperStart() - var yyc4667 bool - if yyl4667 == 0 { - if yyv4667 == nil { - yyv4667 = []NodeSelectorRequirement{} - yyc4667 = true - } else if len(yyv4667) != 0 { - yyv4667 = yyv4667[:0] - yyc4667 = true + yyv4641 := *v + yyh4641, yyl4641 := z.DecSliceHelperStart() + var yyc4641 bool + if yyl4641 == 0 { + if yyv4641 == nil { + yyv4641 = []NodeSelectorRequirement{} + yyc4641 = true + } else if len(yyv4641) != 0 { + yyv4641 = yyv4641[:0] + yyc4641 = true } - } else if yyl4667 > 0 { - var yyrr4667, yyrl4667 int - var yyrt4667 bool - if yyl4667 > cap(yyv4667) { + } else if yyl4641 > 0 { + var yyrr4641, yyrl4641 int + var yyrt4641 bool + if yyl4641 > cap(yyv4641) { - yyrg4667 := len(yyv4667) > 0 - yyv24667 := yyv4667 - yyrl4667, yyrt4667 = z.DecInferLen(yyl4667, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4667 { - if yyrl4667 <= cap(yyv4667) { - yyv4667 = yyv4667[:yyrl4667] + yyrg4641 := len(yyv4641) > 0 + yyv24641 := yyv4641 + yyrl4641, yyrt4641 = z.DecInferLen(yyl4641, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4641 { + if yyrl4641 <= cap(yyv4641) { + yyv4641 = yyv4641[:yyrl4641] } else { - yyv4667 = make([]NodeSelectorRequirement, yyrl4667) + yyv4641 = make([]NodeSelectorRequirement, yyrl4641) } } else { - yyv4667 = make([]NodeSelectorRequirement, yyrl4667) + yyv4641 = make([]NodeSelectorRequirement, yyrl4641) } - yyc4667 = true - yyrr4667 = len(yyv4667) - if yyrg4667 { - copy(yyv4667, yyv24667) + yyc4641 = true + yyrr4641 = len(yyv4641) + if yyrg4641 { + copy(yyv4641, yyv24641) } - } else if yyl4667 != len(yyv4667) { - yyv4667 = yyv4667[:yyl4667] - yyc4667 = true + } else if yyl4641 != len(yyv4641) { + yyv4641 = yyv4641[:yyl4641] + yyc4641 = true } - yyj4667 := 0 - for ; yyj4667 < yyrr4667; yyj4667++ { - yyh4667.ElemContainerState(yyj4667) + yyj4641 := 0 + for ; yyj4641 < yyrr4641; yyj4641++ { + yyh4641.ElemContainerState(yyj4641) if r.TryDecodeAsNil() { - yyv4667[yyj4667] = NodeSelectorRequirement{} + yyv4641[yyj4641] = NodeSelectorRequirement{} } else { - yyv4668 := &yyv4667[yyj4667] - yyv4668.CodecDecodeSelf(d) + yyv4642 := &yyv4641[yyj4641] + yyv4642.CodecDecodeSelf(d) } } - if yyrt4667 { - for ; yyj4667 < yyl4667; yyj4667++ { - yyv4667 = append(yyv4667, NodeSelectorRequirement{}) - yyh4667.ElemContainerState(yyj4667) + if yyrt4641 { + for ; yyj4641 < yyl4641; yyj4641++ { + yyv4641 = append(yyv4641, NodeSelectorRequirement{}) + yyh4641.ElemContainerState(yyj4641) if r.TryDecodeAsNil() { - yyv4667[yyj4667] = NodeSelectorRequirement{} + yyv4641[yyj4641] = NodeSelectorRequirement{} } else { - yyv4669 := &yyv4667[yyj4667] - yyv4669.CodecDecodeSelf(d) + yyv4643 := &yyv4641[yyj4641] + yyv4643.CodecDecodeSelf(d) } } } } else { - yyj4667 := 0 - for ; !r.CheckBreak(); yyj4667++ { + yyj4641 := 0 + for ; !r.CheckBreak(); yyj4641++ { - if yyj4667 >= len(yyv4667) { - yyv4667 = append(yyv4667, NodeSelectorRequirement{}) // var yyz4667 NodeSelectorRequirement - yyc4667 = true + if yyj4641 >= len(yyv4641) { + yyv4641 = append(yyv4641, NodeSelectorRequirement{}) // var yyz4641 NodeSelectorRequirement + yyc4641 = true } - yyh4667.ElemContainerState(yyj4667) - if yyj4667 < len(yyv4667) { + yyh4641.ElemContainerState(yyj4641) + if yyj4641 < len(yyv4641) { if r.TryDecodeAsNil() { - yyv4667[yyj4667] = NodeSelectorRequirement{} + yyv4641[yyj4641] = NodeSelectorRequirement{} } else { - yyv4670 := &yyv4667[yyj4667] - yyv4670.CodecDecodeSelf(d) + yyv4644 := &yyv4641[yyj4641] + yyv4644.CodecDecodeSelf(d) } } else { @@ -58672,17 +58373,17 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj4667 < len(yyv4667) { - yyv4667 = yyv4667[:yyj4667] - yyc4667 = true - } else if yyj4667 == 0 && yyv4667 == nil { - yyv4667 = []NodeSelectorRequirement{} - yyc4667 = true + if yyj4641 < len(yyv4641) { + yyv4641 = yyv4641[:yyj4641] + yyc4641 = true + } else if yyj4641 == 0 && yyv4641 == nil { + yyv4641 = []NodeSelectorRequirement{} + yyc4641 = true } } - yyh4667.End() - if yyc4667 { - *v = yyv4667 + yyh4641.End() + if yyc4641 { + *v = yyv4641 } } @@ -58691,10 +58392,10 @@ func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4671 := range v { + for _, yyv4645 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4672 := &yyv4671 - yy4672.CodecEncodeSelf(e) + yy4646 := &yyv4645 + yy4646.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58704,83 +58405,83 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4673 := *v - yyh4673, yyl4673 := z.DecSliceHelperStart() - var yyc4673 bool - if yyl4673 == 0 { - if yyv4673 == nil { - yyv4673 = []PodAffinityTerm{} - yyc4673 = true - } else if len(yyv4673) != 0 { - yyv4673 = yyv4673[:0] - yyc4673 = true + yyv4647 := *v + yyh4647, yyl4647 := z.DecSliceHelperStart() + var yyc4647 bool + if yyl4647 == 0 { + if yyv4647 == nil { + yyv4647 = []PodAffinityTerm{} + yyc4647 = true + } else if len(yyv4647) != 0 { + yyv4647 = yyv4647[:0] + yyc4647 = true } - } else if yyl4673 > 0 { - var yyrr4673, yyrl4673 int - var yyrt4673 bool - if yyl4673 > cap(yyv4673) { + } else if yyl4647 > 0 { + var yyrr4647, yyrl4647 int + var yyrt4647 bool + if yyl4647 > cap(yyv4647) { - yyrg4673 := len(yyv4673) > 0 - yyv24673 := yyv4673 - yyrl4673, yyrt4673 = z.DecInferLen(yyl4673, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4673 { - if yyrl4673 <= cap(yyv4673) { - yyv4673 = yyv4673[:yyrl4673] + yyrg4647 := len(yyv4647) > 0 + yyv24647 := yyv4647 + yyrl4647, yyrt4647 = z.DecInferLen(yyl4647, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4647 { + if yyrl4647 <= cap(yyv4647) { + yyv4647 = yyv4647[:yyrl4647] } else { - yyv4673 = make([]PodAffinityTerm, yyrl4673) + yyv4647 = make([]PodAffinityTerm, yyrl4647) } } else { - yyv4673 = make([]PodAffinityTerm, yyrl4673) + yyv4647 = make([]PodAffinityTerm, yyrl4647) } - yyc4673 = true - yyrr4673 = len(yyv4673) - if yyrg4673 { - copy(yyv4673, yyv24673) + yyc4647 = true + yyrr4647 = len(yyv4647) + if yyrg4647 { + copy(yyv4647, yyv24647) } - } else if yyl4673 != len(yyv4673) { - yyv4673 = yyv4673[:yyl4673] - yyc4673 = true + } else if yyl4647 != len(yyv4647) { + yyv4647 = yyv4647[:yyl4647] + yyc4647 = true } - yyj4673 := 0 - for ; yyj4673 < yyrr4673; yyj4673++ { - yyh4673.ElemContainerState(yyj4673) + yyj4647 := 0 + for ; yyj4647 < yyrr4647; yyj4647++ { + yyh4647.ElemContainerState(yyj4647) if r.TryDecodeAsNil() { - yyv4673[yyj4673] = PodAffinityTerm{} + yyv4647[yyj4647] = PodAffinityTerm{} } else { - yyv4674 := &yyv4673[yyj4673] - yyv4674.CodecDecodeSelf(d) + yyv4648 := &yyv4647[yyj4647] + yyv4648.CodecDecodeSelf(d) } } - if yyrt4673 { - for ; yyj4673 < yyl4673; yyj4673++ { - yyv4673 = append(yyv4673, PodAffinityTerm{}) - yyh4673.ElemContainerState(yyj4673) + if yyrt4647 { + for ; yyj4647 < yyl4647; yyj4647++ { + yyv4647 = append(yyv4647, PodAffinityTerm{}) + yyh4647.ElemContainerState(yyj4647) if r.TryDecodeAsNil() { - yyv4673[yyj4673] = PodAffinityTerm{} + yyv4647[yyj4647] = PodAffinityTerm{} } else { - yyv4675 := &yyv4673[yyj4673] - yyv4675.CodecDecodeSelf(d) + yyv4649 := &yyv4647[yyj4647] + yyv4649.CodecDecodeSelf(d) } } } } else { - yyj4673 := 0 - for ; !r.CheckBreak(); yyj4673++ { + yyj4647 := 0 + for ; !r.CheckBreak(); yyj4647++ { - if yyj4673 >= len(yyv4673) { - yyv4673 = append(yyv4673, PodAffinityTerm{}) // var yyz4673 PodAffinityTerm - yyc4673 = true + if yyj4647 >= len(yyv4647) { + yyv4647 = append(yyv4647, PodAffinityTerm{}) // var yyz4647 PodAffinityTerm + yyc4647 = true } - yyh4673.ElemContainerState(yyj4673) - if yyj4673 < len(yyv4673) { + yyh4647.ElemContainerState(yyj4647) + if yyj4647 < len(yyv4647) { if r.TryDecodeAsNil() { - yyv4673[yyj4673] = PodAffinityTerm{} + yyv4647[yyj4647] = PodAffinityTerm{} } else { - yyv4676 := &yyv4673[yyj4673] - yyv4676.CodecDecodeSelf(d) + yyv4650 := &yyv4647[yyj4647] + yyv4650.CodecDecodeSelf(d) } } else { @@ -58788,17 +58489,17 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } - if yyj4673 < len(yyv4673) { - yyv4673 = yyv4673[:yyj4673] - yyc4673 = true - } else if yyj4673 == 0 && yyv4673 == nil { - yyv4673 = []PodAffinityTerm{} - yyc4673 = true + if yyj4647 < len(yyv4647) { + yyv4647 = yyv4647[:yyj4647] + yyc4647 = true + } else if yyj4647 == 0 && yyv4647 == nil { + yyv4647 = []PodAffinityTerm{} + yyc4647 = true } } - yyh4673.End() - if yyc4673 { - *v = yyv4673 + yyh4647.End() + if yyc4647 { + *v = yyv4647 } } @@ -58807,10 +58508,10 @@ func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinity z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4677 := range v { + for _, yyv4651 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4678 := &yyv4677 - yy4678.CodecEncodeSelf(e) + yy4652 := &yyv4651 + yy4652.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58820,83 +58521,83 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4679 := *v - yyh4679, yyl4679 := z.DecSliceHelperStart() - var yyc4679 bool - if yyl4679 == 0 { - if yyv4679 == nil { - yyv4679 = []WeightedPodAffinityTerm{} - yyc4679 = true - } else if len(yyv4679) != 0 { - yyv4679 = yyv4679[:0] - yyc4679 = true + yyv4653 := *v + yyh4653, yyl4653 := z.DecSliceHelperStart() + var yyc4653 bool + if yyl4653 == 0 { + if yyv4653 == nil { + yyv4653 = []WeightedPodAffinityTerm{} + yyc4653 = true + } else if len(yyv4653) != 0 { + yyv4653 = yyv4653[:0] + yyc4653 = true } - } else if yyl4679 > 0 { - var yyrr4679, yyrl4679 int - var yyrt4679 bool - if yyl4679 > cap(yyv4679) { + } else if yyl4653 > 0 { + var yyrr4653, yyrl4653 int + var yyrt4653 bool + if yyl4653 > cap(yyv4653) { - yyrg4679 := len(yyv4679) > 0 - yyv24679 := yyv4679 - yyrl4679, yyrt4679 = z.DecInferLen(yyl4679, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4679 { - if yyrl4679 <= cap(yyv4679) { - yyv4679 = yyv4679[:yyrl4679] + yyrg4653 := len(yyv4653) > 0 + yyv24653 := yyv4653 + yyrl4653, yyrt4653 = z.DecInferLen(yyl4653, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4653 { + if yyrl4653 <= cap(yyv4653) { + yyv4653 = yyv4653[:yyrl4653] } else { - yyv4679 = make([]WeightedPodAffinityTerm, yyrl4679) + yyv4653 = make([]WeightedPodAffinityTerm, yyrl4653) } } else { - yyv4679 = make([]WeightedPodAffinityTerm, yyrl4679) + yyv4653 = make([]WeightedPodAffinityTerm, yyrl4653) } - yyc4679 = true - yyrr4679 = len(yyv4679) - if yyrg4679 { - copy(yyv4679, yyv24679) + yyc4653 = true + yyrr4653 = len(yyv4653) + if yyrg4653 { + copy(yyv4653, yyv24653) } - } else if yyl4679 != len(yyv4679) { - yyv4679 = yyv4679[:yyl4679] - yyc4679 = true + } else if yyl4653 != len(yyv4653) { + yyv4653 = yyv4653[:yyl4653] + yyc4653 = true } - yyj4679 := 0 - for ; yyj4679 < yyrr4679; yyj4679++ { - yyh4679.ElemContainerState(yyj4679) + yyj4653 := 0 + for ; yyj4653 < yyrr4653; yyj4653++ { + yyh4653.ElemContainerState(yyj4653) if r.TryDecodeAsNil() { - yyv4679[yyj4679] = WeightedPodAffinityTerm{} + yyv4653[yyj4653] = WeightedPodAffinityTerm{} } else { - yyv4680 := &yyv4679[yyj4679] - yyv4680.CodecDecodeSelf(d) + yyv4654 := &yyv4653[yyj4653] + yyv4654.CodecDecodeSelf(d) } } - if yyrt4679 { - for ; yyj4679 < yyl4679; yyj4679++ { - yyv4679 = append(yyv4679, WeightedPodAffinityTerm{}) - yyh4679.ElemContainerState(yyj4679) + if yyrt4653 { + for ; yyj4653 < yyl4653; yyj4653++ { + yyv4653 = append(yyv4653, WeightedPodAffinityTerm{}) + yyh4653.ElemContainerState(yyj4653) if r.TryDecodeAsNil() { - yyv4679[yyj4679] = WeightedPodAffinityTerm{} + yyv4653[yyj4653] = WeightedPodAffinityTerm{} } else { - yyv4681 := &yyv4679[yyj4679] - yyv4681.CodecDecodeSelf(d) + yyv4655 := &yyv4653[yyj4653] + yyv4655.CodecDecodeSelf(d) } } } } else { - yyj4679 := 0 - for ; !r.CheckBreak(); yyj4679++ { + yyj4653 := 0 + for ; !r.CheckBreak(); yyj4653++ { - if yyj4679 >= len(yyv4679) { - yyv4679 = append(yyv4679, WeightedPodAffinityTerm{}) // var yyz4679 WeightedPodAffinityTerm - yyc4679 = true + if yyj4653 >= len(yyv4653) { + yyv4653 = append(yyv4653, WeightedPodAffinityTerm{}) // var yyz4653 WeightedPodAffinityTerm + yyc4653 = true } - yyh4679.ElemContainerState(yyj4679) - if yyj4679 < len(yyv4679) { + yyh4653.ElemContainerState(yyj4653) + if yyj4653 < len(yyv4653) { if r.TryDecodeAsNil() { - yyv4679[yyj4679] = WeightedPodAffinityTerm{} + yyv4653[yyj4653] = WeightedPodAffinityTerm{} } else { - yyv4682 := &yyv4679[yyj4679] - yyv4682.CodecDecodeSelf(d) + yyv4656 := &yyv4653[yyj4653] + yyv4656.CodecDecodeSelf(d) } } else { @@ -58904,17 +58605,17 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } - if yyj4679 < len(yyv4679) { - yyv4679 = yyv4679[:yyj4679] - yyc4679 = true - } else if yyj4679 == 0 && yyv4679 == nil { - yyv4679 = []WeightedPodAffinityTerm{} - yyc4679 = true + if yyj4653 < len(yyv4653) { + yyv4653 = yyv4653[:yyj4653] + yyc4653 = true + } else if yyj4653 == 0 && yyv4653 == nil { + yyv4653 = []WeightedPodAffinityTerm{} + yyc4653 = true } } - yyh4679.End() - if yyc4679 { - *v = yyv4679 + yyh4653.End() + if yyc4653 { + *v = yyv4653 } } @@ -58923,10 +58624,10 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4683 := range v { + for _, yyv4657 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4684 := &yyv4683 - yy4684.CodecEncodeSelf(e) + yy4658 := &yyv4657 + yy4658.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58936,83 +58637,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4685 := *v - yyh4685, yyl4685 := z.DecSliceHelperStart() - var yyc4685 bool - if yyl4685 == 0 { - if yyv4685 == nil { - yyv4685 = []PreferredSchedulingTerm{} - yyc4685 = true - } else if len(yyv4685) != 0 { - yyv4685 = yyv4685[:0] - yyc4685 = true + yyv4659 := *v + yyh4659, yyl4659 := z.DecSliceHelperStart() + var yyc4659 bool + if yyl4659 == 0 { + if yyv4659 == nil { + yyv4659 = []PreferredSchedulingTerm{} + yyc4659 = true + } else if len(yyv4659) != 0 { + yyv4659 = yyv4659[:0] + yyc4659 = true } - } else if yyl4685 > 0 { - var yyrr4685, yyrl4685 int - var yyrt4685 bool - if yyl4685 > cap(yyv4685) { + } else if yyl4659 > 0 { + var yyrr4659, yyrl4659 int + var yyrt4659 bool + if yyl4659 > cap(yyv4659) { - yyrg4685 := len(yyv4685) > 0 - yyv24685 := yyv4685 - yyrl4685, yyrt4685 = z.DecInferLen(yyl4685, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4685 { - if yyrl4685 <= cap(yyv4685) { - yyv4685 = yyv4685[:yyrl4685] + yyrg4659 := len(yyv4659) > 0 + yyv24659 := yyv4659 + yyrl4659, yyrt4659 = z.DecInferLen(yyl4659, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4659 { + if yyrl4659 <= cap(yyv4659) { + yyv4659 = yyv4659[:yyrl4659] } else { - yyv4685 = make([]PreferredSchedulingTerm, yyrl4685) + yyv4659 = make([]PreferredSchedulingTerm, yyrl4659) } } else { - yyv4685 = make([]PreferredSchedulingTerm, yyrl4685) + yyv4659 = make([]PreferredSchedulingTerm, yyrl4659) } - yyc4685 = true - yyrr4685 = len(yyv4685) - if yyrg4685 { - copy(yyv4685, yyv24685) + yyc4659 = true + yyrr4659 = len(yyv4659) + if yyrg4659 { + copy(yyv4659, yyv24659) } - } else if yyl4685 != len(yyv4685) { - yyv4685 = yyv4685[:yyl4685] - yyc4685 = true + } else if yyl4659 != len(yyv4659) { + yyv4659 = yyv4659[:yyl4659] + yyc4659 = true } - yyj4685 := 0 - for ; yyj4685 < yyrr4685; yyj4685++ { - yyh4685.ElemContainerState(yyj4685) + yyj4659 := 0 + for ; yyj4659 < yyrr4659; yyj4659++ { + yyh4659.ElemContainerState(yyj4659) if r.TryDecodeAsNil() { - yyv4685[yyj4685] = PreferredSchedulingTerm{} + yyv4659[yyj4659] = PreferredSchedulingTerm{} } else { - yyv4686 := &yyv4685[yyj4685] - yyv4686.CodecDecodeSelf(d) + yyv4660 := &yyv4659[yyj4659] + yyv4660.CodecDecodeSelf(d) } } - if yyrt4685 { - for ; yyj4685 < yyl4685; yyj4685++ { - yyv4685 = append(yyv4685, PreferredSchedulingTerm{}) - yyh4685.ElemContainerState(yyj4685) + if yyrt4659 { + for ; yyj4659 < yyl4659; yyj4659++ { + yyv4659 = append(yyv4659, PreferredSchedulingTerm{}) + yyh4659.ElemContainerState(yyj4659) if r.TryDecodeAsNil() { - yyv4685[yyj4685] = PreferredSchedulingTerm{} + yyv4659[yyj4659] = PreferredSchedulingTerm{} } else { - yyv4687 := &yyv4685[yyj4685] - yyv4687.CodecDecodeSelf(d) + yyv4661 := &yyv4659[yyj4659] + yyv4661.CodecDecodeSelf(d) } } } } else { - yyj4685 := 0 - for ; !r.CheckBreak(); yyj4685++ { + yyj4659 := 0 + for ; !r.CheckBreak(); yyj4659++ { - if yyj4685 >= len(yyv4685) { - yyv4685 = append(yyv4685, PreferredSchedulingTerm{}) // var yyz4685 PreferredSchedulingTerm - yyc4685 = true + if yyj4659 >= len(yyv4659) { + yyv4659 = append(yyv4659, PreferredSchedulingTerm{}) // var yyz4659 PreferredSchedulingTerm + yyc4659 = true } - yyh4685.ElemContainerState(yyj4685) - if yyj4685 < len(yyv4685) { + yyh4659.ElemContainerState(yyj4659) + if yyj4659 < len(yyv4659) { if r.TryDecodeAsNil() { - yyv4685[yyj4685] = PreferredSchedulingTerm{} + yyv4659[yyj4659] = PreferredSchedulingTerm{} } else { - yyv4688 := &yyv4685[yyj4685] - yyv4688.CodecDecodeSelf(d) + yyv4662 := &yyv4659[yyj4659] + yyv4662.CodecDecodeSelf(d) } } else { @@ -59020,17 +58721,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj4685 < len(yyv4685) { - yyv4685 = yyv4685[:yyj4685] - yyc4685 = true - } else if yyj4685 == 0 && yyv4685 == nil { - yyv4685 = []PreferredSchedulingTerm{} - yyc4685 = true + if yyj4659 < len(yyv4659) { + yyv4659 = yyv4659[:yyj4659] + yyc4659 = true + } else if yyj4659 == 0 && yyv4659 == nil { + yyv4659 = []PreferredSchedulingTerm{} + yyc4659 = true } } - yyh4685.End() - if yyc4685 { - *v = yyv4685 + yyh4659.End() + if yyc4659 { + *v = yyv4659 } } @@ -59039,10 +58740,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4689 := range v { + for _, yyv4663 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4690 := &yyv4689 - yy4690.CodecEncodeSelf(e) + yy4664 := &yyv4663 + yy4664.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59052,83 +58753,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4691 := *v - yyh4691, yyl4691 := z.DecSliceHelperStart() - var yyc4691 bool - if yyl4691 == 0 { - if yyv4691 == nil { - yyv4691 = []Volume{} - yyc4691 = true - } else if len(yyv4691) != 0 { - yyv4691 = yyv4691[:0] - yyc4691 = true + yyv4665 := *v + yyh4665, yyl4665 := z.DecSliceHelperStart() + var yyc4665 bool + if yyl4665 == 0 { + if yyv4665 == nil { + yyv4665 = []Volume{} + yyc4665 = true + } else if len(yyv4665) != 0 { + yyv4665 = yyv4665[:0] + yyc4665 = true } - } else if yyl4691 > 0 { - var yyrr4691, yyrl4691 int - var yyrt4691 bool - if yyl4691 > cap(yyv4691) { + } else if yyl4665 > 0 { + var yyrr4665, yyrl4665 int + var yyrt4665 bool + if yyl4665 > cap(yyv4665) { - yyrg4691 := len(yyv4691) > 0 - yyv24691 := yyv4691 - yyrl4691, yyrt4691 = z.DecInferLen(yyl4691, z.DecBasicHandle().MaxInitLen, 200) - if yyrt4691 { - if yyrl4691 <= cap(yyv4691) { - yyv4691 = yyv4691[:yyrl4691] + yyrg4665 := len(yyv4665) > 0 + yyv24665 := yyv4665 + yyrl4665, yyrt4665 = z.DecInferLen(yyl4665, z.DecBasicHandle().MaxInitLen, 200) + if yyrt4665 { + if yyrl4665 <= cap(yyv4665) { + yyv4665 = yyv4665[:yyrl4665] } else { - yyv4691 = make([]Volume, yyrl4691) + yyv4665 = make([]Volume, yyrl4665) } } else { - yyv4691 = make([]Volume, yyrl4691) + yyv4665 = make([]Volume, yyrl4665) } - yyc4691 = true - yyrr4691 = len(yyv4691) - if yyrg4691 { - copy(yyv4691, yyv24691) + yyc4665 = true + yyrr4665 = len(yyv4665) + if yyrg4665 { + copy(yyv4665, yyv24665) } - } else if yyl4691 != len(yyv4691) { - yyv4691 = yyv4691[:yyl4691] - yyc4691 = true + } else if yyl4665 != len(yyv4665) { + yyv4665 = yyv4665[:yyl4665] + yyc4665 = true } - yyj4691 := 0 - for ; yyj4691 < yyrr4691; yyj4691++ { - yyh4691.ElemContainerState(yyj4691) + yyj4665 := 0 + for ; yyj4665 < yyrr4665; yyj4665++ { + yyh4665.ElemContainerState(yyj4665) if r.TryDecodeAsNil() { - yyv4691[yyj4691] = Volume{} + yyv4665[yyj4665] = Volume{} } else { - yyv4692 := &yyv4691[yyj4691] - yyv4692.CodecDecodeSelf(d) + yyv4666 := &yyv4665[yyj4665] + yyv4666.CodecDecodeSelf(d) } } - if yyrt4691 { - for ; yyj4691 < yyl4691; yyj4691++ { - yyv4691 = append(yyv4691, Volume{}) - yyh4691.ElemContainerState(yyj4691) + if yyrt4665 { + for ; yyj4665 < yyl4665; yyj4665++ { + yyv4665 = append(yyv4665, Volume{}) + yyh4665.ElemContainerState(yyj4665) if r.TryDecodeAsNil() { - yyv4691[yyj4691] = Volume{} + yyv4665[yyj4665] = Volume{} } else { - yyv4693 := &yyv4691[yyj4691] - yyv4693.CodecDecodeSelf(d) + yyv4667 := &yyv4665[yyj4665] + yyv4667.CodecDecodeSelf(d) } } } } else { - yyj4691 := 0 - for ; !r.CheckBreak(); yyj4691++ { + yyj4665 := 0 + for ; !r.CheckBreak(); yyj4665++ { - if yyj4691 >= len(yyv4691) { - yyv4691 = append(yyv4691, Volume{}) // var yyz4691 Volume - yyc4691 = true + if yyj4665 >= len(yyv4665) { + yyv4665 = append(yyv4665, Volume{}) // var yyz4665 Volume + yyc4665 = true } - yyh4691.ElemContainerState(yyj4691) - if yyj4691 < len(yyv4691) { + yyh4665.ElemContainerState(yyj4665) + if yyj4665 < len(yyv4665) { if r.TryDecodeAsNil() { - yyv4691[yyj4691] = Volume{} + yyv4665[yyj4665] = Volume{} } else { - yyv4694 := &yyv4691[yyj4691] - yyv4694.CodecDecodeSelf(d) + yyv4668 := &yyv4665[yyj4665] + yyv4668.CodecDecodeSelf(d) } } else { @@ -59136,17 +58837,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4691 < len(yyv4691) { - yyv4691 = yyv4691[:yyj4691] - yyc4691 = true - } else if yyj4691 == 0 && yyv4691 == nil { - yyv4691 = []Volume{} - yyc4691 = true + if yyj4665 < len(yyv4665) { + yyv4665 = yyv4665[:yyj4665] + yyc4665 = true + } else if yyj4665 == 0 && yyv4665 == nil { + yyv4665 = []Volume{} + yyc4665 = true } } - yyh4691.End() - if yyc4691 { - *v = yyv4691 + yyh4665.End() + if yyc4665 { + *v = yyv4665 } } @@ -59155,10 +58856,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4695 := range v { + for _, yyv4669 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4696 := &yyv4695 - yy4696.CodecEncodeSelf(e) + yy4670 := &yyv4669 + yy4670.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59168,83 +58869,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4697 := *v - yyh4697, yyl4697 := z.DecSliceHelperStart() - var yyc4697 bool - if yyl4697 == 0 { - if yyv4697 == nil { - yyv4697 = []Container{} - yyc4697 = true - } else if len(yyv4697) != 0 { - yyv4697 = yyv4697[:0] - yyc4697 = true + yyv4671 := *v + yyh4671, yyl4671 := z.DecSliceHelperStart() + var yyc4671 bool + if yyl4671 == 0 { + if yyv4671 == nil { + yyv4671 = []Container{} + yyc4671 = true + } else if len(yyv4671) != 0 { + yyv4671 = yyv4671[:0] + yyc4671 = true } - } else if yyl4697 > 0 { - var yyrr4697, yyrl4697 int - var yyrt4697 bool - if yyl4697 > cap(yyv4697) { + } else if yyl4671 > 0 { + var yyrr4671, yyrl4671 int + var yyrt4671 bool + if yyl4671 > cap(yyv4671) { - yyrg4697 := len(yyv4697) > 0 - yyv24697 := yyv4697 - yyrl4697, yyrt4697 = z.DecInferLen(yyl4697, z.DecBasicHandle().MaxInitLen, 256) - if yyrt4697 { - if yyrl4697 <= cap(yyv4697) { - yyv4697 = yyv4697[:yyrl4697] + yyrg4671 := len(yyv4671) > 0 + yyv24671 := yyv4671 + yyrl4671, yyrt4671 = z.DecInferLen(yyl4671, z.DecBasicHandle().MaxInitLen, 256) + if yyrt4671 { + if yyrl4671 <= cap(yyv4671) { + yyv4671 = yyv4671[:yyrl4671] } else { - yyv4697 = make([]Container, yyrl4697) + yyv4671 = make([]Container, yyrl4671) } } else { - yyv4697 = make([]Container, yyrl4697) + yyv4671 = make([]Container, yyrl4671) } - yyc4697 = true - yyrr4697 = len(yyv4697) - if yyrg4697 { - copy(yyv4697, yyv24697) + yyc4671 = true + yyrr4671 = len(yyv4671) + if yyrg4671 { + copy(yyv4671, yyv24671) } - } else if yyl4697 != len(yyv4697) { - yyv4697 = yyv4697[:yyl4697] - yyc4697 = true + } else if yyl4671 != len(yyv4671) { + yyv4671 = yyv4671[:yyl4671] + yyc4671 = true } - yyj4697 := 0 - for ; yyj4697 < yyrr4697; yyj4697++ { - yyh4697.ElemContainerState(yyj4697) + yyj4671 := 0 + for ; yyj4671 < yyrr4671; yyj4671++ { + yyh4671.ElemContainerState(yyj4671) if r.TryDecodeAsNil() { - yyv4697[yyj4697] = Container{} + yyv4671[yyj4671] = Container{} } else { - yyv4698 := &yyv4697[yyj4697] - yyv4698.CodecDecodeSelf(d) + yyv4672 := &yyv4671[yyj4671] + yyv4672.CodecDecodeSelf(d) } } - if yyrt4697 { - for ; yyj4697 < yyl4697; yyj4697++ { - yyv4697 = append(yyv4697, Container{}) - yyh4697.ElemContainerState(yyj4697) + if yyrt4671 { + for ; yyj4671 < yyl4671; yyj4671++ { + yyv4671 = append(yyv4671, Container{}) + yyh4671.ElemContainerState(yyj4671) if r.TryDecodeAsNil() { - yyv4697[yyj4697] = Container{} + yyv4671[yyj4671] = Container{} } else { - yyv4699 := &yyv4697[yyj4697] - yyv4699.CodecDecodeSelf(d) + yyv4673 := &yyv4671[yyj4671] + yyv4673.CodecDecodeSelf(d) } } } } else { - yyj4697 := 0 - for ; !r.CheckBreak(); yyj4697++ { + yyj4671 := 0 + for ; !r.CheckBreak(); yyj4671++ { - if yyj4697 >= len(yyv4697) { - yyv4697 = append(yyv4697, Container{}) // var yyz4697 Container - yyc4697 = true + if yyj4671 >= len(yyv4671) { + yyv4671 = append(yyv4671, Container{}) // var yyz4671 Container + yyc4671 = true } - yyh4697.ElemContainerState(yyj4697) - if yyj4697 < len(yyv4697) { + yyh4671.ElemContainerState(yyj4671) + if yyj4671 < len(yyv4671) { if r.TryDecodeAsNil() { - yyv4697[yyj4697] = Container{} + yyv4671[yyj4671] = Container{} } else { - yyv4700 := &yyv4697[yyj4697] - yyv4700.CodecDecodeSelf(d) + yyv4674 := &yyv4671[yyj4671] + yyv4674.CodecDecodeSelf(d) } } else { @@ -59252,17 +58953,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4697 < len(yyv4697) { - yyv4697 = yyv4697[:yyj4697] - yyc4697 = true - } else if yyj4697 == 0 && yyv4697 == nil { - yyv4697 = []Container{} - yyc4697 = true + if yyj4671 < len(yyv4671) { + yyv4671 = yyv4671[:yyj4671] + yyc4671 = true + } else if yyj4671 == 0 && yyv4671 == nil { + yyv4671 = []Container{} + yyc4671 = true } } - yyh4697.End() - if yyc4697 { - *v = yyv4697 + yyh4671.End() + if yyc4671 { + *v = yyv4671 } } @@ -59271,10 +58972,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4701 := range v { + for _, yyv4675 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4702 := &yyv4701 - yy4702.CodecEncodeSelf(e) + yy4676 := &yyv4675 + yy4676.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59284,83 +58985,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4703 := *v - yyh4703, yyl4703 := z.DecSliceHelperStart() - var yyc4703 bool - if yyl4703 == 0 { - if yyv4703 == nil { - yyv4703 = []LocalObjectReference{} - yyc4703 = true - } else if len(yyv4703) != 0 { - yyv4703 = yyv4703[:0] - yyc4703 = true + yyv4677 := *v + yyh4677, yyl4677 := z.DecSliceHelperStart() + var yyc4677 bool + if yyl4677 == 0 { + if yyv4677 == nil { + yyv4677 = []LocalObjectReference{} + yyc4677 = true + } else if len(yyv4677) != 0 { + yyv4677 = yyv4677[:0] + yyc4677 = true } - } else if yyl4703 > 0 { - var yyrr4703, yyrl4703 int - var yyrt4703 bool - if yyl4703 > cap(yyv4703) { + } else if yyl4677 > 0 { + var yyrr4677, yyrl4677 int + var yyrt4677 bool + if yyl4677 > cap(yyv4677) { - yyrg4703 := len(yyv4703) > 0 - yyv24703 := yyv4703 - yyrl4703, yyrt4703 = z.DecInferLen(yyl4703, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4703 { - if yyrl4703 <= cap(yyv4703) { - yyv4703 = yyv4703[:yyrl4703] + yyrg4677 := len(yyv4677) > 0 + yyv24677 := yyv4677 + yyrl4677, yyrt4677 = z.DecInferLen(yyl4677, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4677 { + if yyrl4677 <= cap(yyv4677) { + yyv4677 = yyv4677[:yyrl4677] } else { - yyv4703 = make([]LocalObjectReference, yyrl4703) + yyv4677 = make([]LocalObjectReference, yyrl4677) } } else { - yyv4703 = make([]LocalObjectReference, yyrl4703) + yyv4677 = make([]LocalObjectReference, yyrl4677) } - yyc4703 = true - yyrr4703 = len(yyv4703) - if yyrg4703 { - copy(yyv4703, yyv24703) + yyc4677 = true + yyrr4677 = len(yyv4677) + if yyrg4677 { + copy(yyv4677, yyv24677) } - } else if yyl4703 != len(yyv4703) { - yyv4703 = yyv4703[:yyl4703] - yyc4703 = true + } else if yyl4677 != len(yyv4677) { + yyv4677 = yyv4677[:yyl4677] + yyc4677 = true } - yyj4703 := 0 - for ; yyj4703 < yyrr4703; yyj4703++ { - yyh4703.ElemContainerState(yyj4703) + yyj4677 := 0 + for ; yyj4677 < yyrr4677; yyj4677++ { + yyh4677.ElemContainerState(yyj4677) if r.TryDecodeAsNil() { - yyv4703[yyj4703] = LocalObjectReference{} + yyv4677[yyj4677] = LocalObjectReference{} } else { - yyv4704 := &yyv4703[yyj4703] - yyv4704.CodecDecodeSelf(d) + yyv4678 := &yyv4677[yyj4677] + yyv4678.CodecDecodeSelf(d) } } - if yyrt4703 { - for ; yyj4703 < yyl4703; yyj4703++ { - yyv4703 = append(yyv4703, LocalObjectReference{}) - yyh4703.ElemContainerState(yyj4703) + if yyrt4677 { + for ; yyj4677 < yyl4677; yyj4677++ { + yyv4677 = append(yyv4677, LocalObjectReference{}) + yyh4677.ElemContainerState(yyj4677) if r.TryDecodeAsNil() { - yyv4703[yyj4703] = LocalObjectReference{} + yyv4677[yyj4677] = LocalObjectReference{} } else { - yyv4705 := &yyv4703[yyj4703] - yyv4705.CodecDecodeSelf(d) + yyv4679 := &yyv4677[yyj4677] + yyv4679.CodecDecodeSelf(d) } } } } else { - yyj4703 := 0 - for ; !r.CheckBreak(); yyj4703++ { + yyj4677 := 0 + for ; !r.CheckBreak(); yyj4677++ { - if yyj4703 >= len(yyv4703) { - yyv4703 = append(yyv4703, LocalObjectReference{}) // var yyz4703 LocalObjectReference - yyc4703 = true + if yyj4677 >= len(yyv4677) { + yyv4677 = append(yyv4677, LocalObjectReference{}) // var yyz4677 LocalObjectReference + yyc4677 = true } - yyh4703.ElemContainerState(yyj4703) - if yyj4703 < len(yyv4703) { + yyh4677.ElemContainerState(yyj4677) + if yyj4677 < len(yyv4677) { if r.TryDecodeAsNil() { - yyv4703[yyj4703] = LocalObjectReference{} + yyv4677[yyj4677] = LocalObjectReference{} } else { - yyv4706 := &yyv4703[yyj4703] - yyv4706.CodecDecodeSelf(d) + yyv4680 := &yyv4677[yyj4677] + yyv4680.CodecDecodeSelf(d) } } else { @@ -59368,17 +59069,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4703 < len(yyv4703) { - yyv4703 = yyv4703[:yyj4703] - yyc4703 = true - } else if yyj4703 == 0 && yyv4703 == nil { - yyv4703 = []LocalObjectReference{} - yyc4703 = true + if yyj4677 < len(yyv4677) { + yyv4677 = yyv4677[:yyj4677] + yyc4677 = true + } else if yyj4677 == 0 && yyv4677 == nil { + yyv4677 = []LocalObjectReference{} + yyc4677 = true } } - yyh4703.End() - if yyc4703 { - *v = yyv4703 + yyh4677.End() + if yyc4677 { + *v = yyv4677 } } @@ -59387,10 +59088,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4707 := range v { + for _, yyv4681 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4708 := &yyv4707 - yy4708.CodecEncodeSelf(e) + yy4682 := &yyv4681 + yy4682.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59400,83 +59101,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4709 := *v - yyh4709, yyl4709 := z.DecSliceHelperStart() - var yyc4709 bool - if yyl4709 == 0 { - if yyv4709 == nil { - yyv4709 = []PodCondition{} - yyc4709 = true - } else if len(yyv4709) != 0 { - yyv4709 = yyv4709[:0] - yyc4709 = true + yyv4683 := *v + yyh4683, yyl4683 := z.DecSliceHelperStart() + var yyc4683 bool + if yyl4683 == 0 { + if yyv4683 == nil { + yyv4683 = []PodCondition{} + yyc4683 = true + } else if len(yyv4683) != 0 { + yyv4683 = yyv4683[:0] + yyc4683 = true } - } else if yyl4709 > 0 { - var yyrr4709, yyrl4709 int - var yyrt4709 bool - if yyl4709 > cap(yyv4709) { + } else if yyl4683 > 0 { + var yyrr4683, yyrl4683 int + var yyrt4683 bool + if yyl4683 > cap(yyv4683) { - yyrg4709 := len(yyv4709) > 0 - yyv24709 := yyv4709 - yyrl4709, yyrt4709 = z.DecInferLen(yyl4709, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4709 { - if yyrl4709 <= cap(yyv4709) { - yyv4709 = yyv4709[:yyrl4709] + yyrg4683 := len(yyv4683) > 0 + yyv24683 := yyv4683 + yyrl4683, yyrt4683 = z.DecInferLen(yyl4683, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4683 { + if yyrl4683 <= cap(yyv4683) { + yyv4683 = yyv4683[:yyrl4683] } else { - yyv4709 = make([]PodCondition, yyrl4709) + yyv4683 = make([]PodCondition, yyrl4683) } } else { - yyv4709 = make([]PodCondition, yyrl4709) + yyv4683 = make([]PodCondition, yyrl4683) } - yyc4709 = true - yyrr4709 = len(yyv4709) - if yyrg4709 { - copy(yyv4709, yyv24709) + yyc4683 = true + yyrr4683 = len(yyv4683) + if yyrg4683 { + copy(yyv4683, yyv24683) } - } else if yyl4709 != len(yyv4709) { - yyv4709 = yyv4709[:yyl4709] - yyc4709 = true + } else if yyl4683 != len(yyv4683) { + yyv4683 = yyv4683[:yyl4683] + yyc4683 = true } - yyj4709 := 0 - for ; yyj4709 < yyrr4709; yyj4709++ { - yyh4709.ElemContainerState(yyj4709) + yyj4683 := 0 + for ; yyj4683 < yyrr4683; yyj4683++ { + yyh4683.ElemContainerState(yyj4683) if r.TryDecodeAsNil() { - yyv4709[yyj4709] = PodCondition{} + yyv4683[yyj4683] = PodCondition{} } else { - yyv4710 := &yyv4709[yyj4709] - yyv4710.CodecDecodeSelf(d) + yyv4684 := &yyv4683[yyj4683] + yyv4684.CodecDecodeSelf(d) } } - if yyrt4709 { - for ; yyj4709 < yyl4709; yyj4709++ { - yyv4709 = append(yyv4709, PodCondition{}) - yyh4709.ElemContainerState(yyj4709) + if yyrt4683 { + for ; yyj4683 < yyl4683; yyj4683++ { + yyv4683 = append(yyv4683, PodCondition{}) + yyh4683.ElemContainerState(yyj4683) if r.TryDecodeAsNil() { - yyv4709[yyj4709] = PodCondition{} + yyv4683[yyj4683] = PodCondition{} } else { - yyv4711 := &yyv4709[yyj4709] - yyv4711.CodecDecodeSelf(d) + yyv4685 := &yyv4683[yyj4683] + yyv4685.CodecDecodeSelf(d) } } } } else { - yyj4709 := 0 - for ; !r.CheckBreak(); yyj4709++ { + yyj4683 := 0 + for ; !r.CheckBreak(); yyj4683++ { - if yyj4709 >= len(yyv4709) { - yyv4709 = append(yyv4709, PodCondition{}) // var yyz4709 PodCondition - yyc4709 = true + if yyj4683 >= len(yyv4683) { + yyv4683 = append(yyv4683, PodCondition{}) // var yyz4683 PodCondition + yyc4683 = true } - yyh4709.ElemContainerState(yyj4709) - if yyj4709 < len(yyv4709) { + yyh4683.ElemContainerState(yyj4683) + if yyj4683 < len(yyv4683) { if r.TryDecodeAsNil() { - yyv4709[yyj4709] = PodCondition{} + yyv4683[yyj4683] = PodCondition{} } else { - yyv4712 := &yyv4709[yyj4709] - yyv4712.CodecDecodeSelf(d) + yyv4686 := &yyv4683[yyj4683] + yyv4686.CodecDecodeSelf(d) } } else { @@ -59484,17 +59185,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4709 < len(yyv4709) { - yyv4709 = yyv4709[:yyj4709] - yyc4709 = true - } else if yyj4709 == 0 && yyv4709 == nil { - yyv4709 = []PodCondition{} - yyc4709 = true + if yyj4683 < len(yyv4683) { + yyv4683 = yyv4683[:yyj4683] + yyc4683 = true + } else if yyj4683 == 0 && yyv4683 == nil { + yyv4683 = []PodCondition{} + yyc4683 = true } } - yyh4709.End() - if yyc4709 { - *v = yyv4709 + yyh4683.End() + if yyc4683 { + *v = yyv4683 } } @@ -59503,10 +59204,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4713 := range v { + for _, yyv4687 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4714 := &yyv4713 - yy4714.CodecEncodeSelf(e) + yy4688 := &yyv4687 + yy4688.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59516,83 +59217,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4715 := *v - yyh4715, yyl4715 := z.DecSliceHelperStart() - var yyc4715 bool - if yyl4715 == 0 { - if yyv4715 == nil { - yyv4715 = []ContainerStatus{} - yyc4715 = true - } else if len(yyv4715) != 0 { - yyv4715 = yyv4715[:0] - yyc4715 = true + yyv4689 := *v + yyh4689, yyl4689 := z.DecSliceHelperStart() + var yyc4689 bool + if yyl4689 == 0 { + if yyv4689 == nil { + yyv4689 = []ContainerStatus{} + yyc4689 = true + } else if len(yyv4689) != 0 { + yyv4689 = yyv4689[:0] + yyc4689 = true } - } else if yyl4715 > 0 { - var yyrr4715, yyrl4715 int - var yyrt4715 bool - if yyl4715 > cap(yyv4715) { + } else if yyl4689 > 0 { + var yyrr4689, yyrl4689 int + var yyrt4689 bool + if yyl4689 > cap(yyv4689) { - yyrg4715 := len(yyv4715) > 0 - yyv24715 := yyv4715 - yyrl4715, yyrt4715 = z.DecInferLen(yyl4715, z.DecBasicHandle().MaxInitLen, 120) - if yyrt4715 { - if yyrl4715 <= cap(yyv4715) { - yyv4715 = yyv4715[:yyrl4715] + yyrg4689 := len(yyv4689) > 0 + yyv24689 := yyv4689 + yyrl4689, yyrt4689 = z.DecInferLen(yyl4689, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4689 { + if yyrl4689 <= cap(yyv4689) { + yyv4689 = yyv4689[:yyrl4689] } else { - yyv4715 = make([]ContainerStatus, yyrl4715) + yyv4689 = make([]ContainerStatus, yyrl4689) } } else { - yyv4715 = make([]ContainerStatus, yyrl4715) + yyv4689 = make([]ContainerStatus, yyrl4689) } - yyc4715 = true - yyrr4715 = len(yyv4715) - if yyrg4715 { - copy(yyv4715, yyv24715) + yyc4689 = true + yyrr4689 = len(yyv4689) + if yyrg4689 { + copy(yyv4689, yyv24689) } - } else if yyl4715 != len(yyv4715) { - yyv4715 = yyv4715[:yyl4715] - yyc4715 = true + } else if yyl4689 != len(yyv4689) { + yyv4689 = yyv4689[:yyl4689] + yyc4689 = true } - yyj4715 := 0 - for ; yyj4715 < yyrr4715; yyj4715++ { - yyh4715.ElemContainerState(yyj4715) + yyj4689 := 0 + for ; yyj4689 < yyrr4689; yyj4689++ { + yyh4689.ElemContainerState(yyj4689) if r.TryDecodeAsNil() { - yyv4715[yyj4715] = ContainerStatus{} + yyv4689[yyj4689] = ContainerStatus{} } else { - yyv4716 := &yyv4715[yyj4715] - yyv4716.CodecDecodeSelf(d) + yyv4690 := &yyv4689[yyj4689] + yyv4690.CodecDecodeSelf(d) } } - if yyrt4715 { - for ; yyj4715 < yyl4715; yyj4715++ { - yyv4715 = append(yyv4715, ContainerStatus{}) - yyh4715.ElemContainerState(yyj4715) + if yyrt4689 { + for ; yyj4689 < yyl4689; yyj4689++ { + yyv4689 = append(yyv4689, ContainerStatus{}) + yyh4689.ElemContainerState(yyj4689) if r.TryDecodeAsNil() { - yyv4715[yyj4715] = ContainerStatus{} + yyv4689[yyj4689] = ContainerStatus{} } else { - yyv4717 := &yyv4715[yyj4715] - yyv4717.CodecDecodeSelf(d) + yyv4691 := &yyv4689[yyj4689] + yyv4691.CodecDecodeSelf(d) } } } } else { - yyj4715 := 0 - for ; !r.CheckBreak(); yyj4715++ { + yyj4689 := 0 + for ; !r.CheckBreak(); yyj4689++ { - if yyj4715 >= len(yyv4715) { - yyv4715 = append(yyv4715, ContainerStatus{}) // var yyz4715 ContainerStatus - yyc4715 = true + if yyj4689 >= len(yyv4689) { + yyv4689 = append(yyv4689, ContainerStatus{}) // var yyz4689 ContainerStatus + yyc4689 = true } - yyh4715.ElemContainerState(yyj4715) - if yyj4715 < len(yyv4715) { + yyh4689.ElemContainerState(yyj4689) + if yyj4689 < len(yyv4689) { if r.TryDecodeAsNil() { - yyv4715[yyj4715] = ContainerStatus{} + yyv4689[yyj4689] = ContainerStatus{} } else { - yyv4718 := &yyv4715[yyj4715] - yyv4718.CodecDecodeSelf(d) + yyv4692 := &yyv4689[yyj4689] + yyv4692.CodecDecodeSelf(d) } } else { @@ -59600,17 +59301,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4715 < len(yyv4715) { - yyv4715 = yyv4715[:yyj4715] - yyc4715 = true - } else if yyj4715 == 0 && yyv4715 == nil { - yyv4715 = []ContainerStatus{} - yyc4715 = true + if yyj4689 < len(yyv4689) { + yyv4689 = yyv4689[:yyj4689] + yyc4689 = true + } else if yyj4689 == 0 && yyv4689 == nil { + yyv4689 = []ContainerStatus{} + yyc4689 = true } } - yyh4715.End() - if yyc4715 { - *v = yyv4715 + yyh4689.End() + if yyc4689 { + *v = yyv4689 } } @@ -59619,10 +59320,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4719 := range v { + for _, yyv4693 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4720 := &yyv4719 - yy4720.CodecEncodeSelf(e) + yy4694 := &yyv4693 + yy4694.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59632,83 +59333,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4721 := *v - yyh4721, yyl4721 := z.DecSliceHelperStart() - var yyc4721 bool - if yyl4721 == 0 { - if yyv4721 == nil { - yyv4721 = []Pod{} - yyc4721 = true - } else if len(yyv4721) != 0 { - yyv4721 = yyv4721[:0] - yyc4721 = true + yyv4695 := *v + yyh4695, yyl4695 := z.DecSliceHelperStart() + var yyc4695 bool + if yyl4695 == 0 { + if yyv4695 == nil { + yyv4695 = []Pod{} + yyc4695 = true + } else if len(yyv4695) != 0 { + yyv4695 = yyv4695[:0] + yyc4695 = true } - } else if yyl4721 > 0 { - var yyrr4721, yyrl4721 int - var yyrt4721 bool - if yyl4721 > cap(yyv4721) { + } else if yyl4695 > 0 { + var yyrr4695, yyrl4695 int + var yyrt4695 bool + if yyl4695 > cap(yyv4695) { - yyrg4721 := len(yyv4721) > 0 - yyv24721 := yyv4721 - yyrl4721, yyrt4721 = z.DecInferLen(yyl4721, z.DecBasicHandle().MaxInitLen, 664) - if yyrt4721 { - if yyrl4721 <= cap(yyv4721) { - yyv4721 = yyv4721[:yyrl4721] + yyrg4695 := len(yyv4695) > 0 + yyv24695 := yyv4695 + yyrl4695, yyrt4695 = z.DecInferLen(yyl4695, z.DecBasicHandle().MaxInitLen, 664) + if yyrt4695 { + if yyrl4695 <= cap(yyv4695) { + yyv4695 = yyv4695[:yyrl4695] } else { - yyv4721 = make([]Pod, yyrl4721) + yyv4695 = make([]Pod, yyrl4695) } } else { - yyv4721 = make([]Pod, yyrl4721) + yyv4695 = make([]Pod, yyrl4695) } - yyc4721 = true - yyrr4721 = len(yyv4721) - if yyrg4721 { - copy(yyv4721, yyv24721) + yyc4695 = true + yyrr4695 = len(yyv4695) + if yyrg4695 { + copy(yyv4695, yyv24695) } - } else if yyl4721 != len(yyv4721) { - yyv4721 = yyv4721[:yyl4721] - yyc4721 = true + } else if yyl4695 != len(yyv4695) { + yyv4695 = yyv4695[:yyl4695] + yyc4695 = true } - yyj4721 := 0 - for ; yyj4721 < yyrr4721; yyj4721++ { - yyh4721.ElemContainerState(yyj4721) + yyj4695 := 0 + for ; yyj4695 < yyrr4695; yyj4695++ { + yyh4695.ElemContainerState(yyj4695) if r.TryDecodeAsNil() { - yyv4721[yyj4721] = Pod{} + yyv4695[yyj4695] = Pod{} } else { - yyv4722 := &yyv4721[yyj4721] - yyv4722.CodecDecodeSelf(d) + yyv4696 := &yyv4695[yyj4695] + yyv4696.CodecDecodeSelf(d) } } - if yyrt4721 { - for ; yyj4721 < yyl4721; yyj4721++ { - yyv4721 = append(yyv4721, Pod{}) - yyh4721.ElemContainerState(yyj4721) + if yyrt4695 { + for ; yyj4695 < yyl4695; yyj4695++ { + yyv4695 = append(yyv4695, Pod{}) + yyh4695.ElemContainerState(yyj4695) if r.TryDecodeAsNil() { - yyv4721[yyj4721] = Pod{} + yyv4695[yyj4695] = Pod{} } else { - yyv4723 := &yyv4721[yyj4721] - yyv4723.CodecDecodeSelf(d) + yyv4697 := &yyv4695[yyj4695] + yyv4697.CodecDecodeSelf(d) } } } } else { - yyj4721 := 0 - for ; !r.CheckBreak(); yyj4721++ { + yyj4695 := 0 + for ; !r.CheckBreak(); yyj4695++ { - if yyj4721 >= len(yyv4721) { - yyv4721 = append(yyv4721, Pod{}) // var yyz4721 Pod - yyc4721 = true + if yyj4695 >= len(yyv4695) { + yyv4695 = append(yyv4695, Pod{}) // var yyz4695 Pod + yyc4695 = true } - yyh4721.ElemContainerState(yyj4721) - if yyj4721 < len(yyv4721) { + yyh4695.ElemContainerState(yyj4695) + if yyj4695 < len(yyv4695) { if r.TryDecodeAsNil() { - yyv4721[yyj4721] = Pod{} + yyv4695[yyj4695] = Pod{} } else { - yyv4724 := &yyv4721[yyj4721] - yyv4724.CodecDecodeSelf(d) + yyv4698 := &yyv4695[yyj4695] + yyv4698.CodecDecodeSelf(d) } } else { @@ -59716,17 +59417,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj4721 < len(yyv4721) { - yyv4721 = yyv4721[:yyj4721] - yyc4721 = true - } else if yyj4721 == 0 && yyv4721 == nil { - yyv4721 = []Pod{} - yyc4721 = true + if yyj4695 < len(yyv4695) { + yyv4695 = yyv4695[:yyj4695] + yyc4695 = true + } else if yyj4695 == 0 && yyv4695 == nil { + yyv4695 = []Pod{} + yyc4695 = true } } - yyh4721.End() - if yyc4721 { - *v = yyv4721 + yyh4695.End() + if yyc4695 { + *v = yyv4695 } } @@ -59735,10 +59436,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4725 := range v { + for _, yyv4699 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4726 := &yyv4725 - yy4726.CodecEncodeSelf(e) + yy4700 := &yyv4699 + yy4700.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59748,83 +59449,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4727 := *v - yyh4727, yyl4727 := z.DecSliceHelperStart() - var yyc4727 bool - if yyl4727 == 0 { - if yyv4727 == nil { - yyv4727 = []PodTemplate{} - yyc4727 = true - } else if len(yyv4727) != 0 { - yyv4727 = yyv4727[:0] - yyc4727 = true + yyv4701 := *v + yyh4701, yyl4701 := z.DecSliceHelperStart() + var yyc4701 bool + if yyl4701 == 0 { + if yyv4701 == nil { + yyv4701 = []PodTemplate{} + yyc4701 = true + } else if len(yyv4701) != 0 { + yyv4701 = yyv4701[:0] + yyc4701 = true } - } else if yyl4727 > 0 { - var yyrr4727, yyrl4727 int - var yyrt4727 bool - if yyl4727 > cap(yyv4727) { + } else if yyl4701 > 0 { + var yyrr4701, yyrl4701 int + var yyrt4701 bool + if yyl4701 > cap(yyv4701) { - yyrg4727 := len(yyv4727) > 0 - yyv24727 := yyv4727 - yyrl4727, yyrt4727 = z.DecInferLen(yyl4727, z.DecBasicHandle().MaxInitLen, 728) - if yyrt4727 { - if yyrl4727 <= cap(yyv4727) { - yyv4727 = yyv4727[:yyrl4727] + yyrg4701 := len(yyv4701) > 0 + yyv24701 := yyv4701 + yyrl4701, yyrt4701 = z.DecInferLen(yyl4701, z.DecBasicHandle().MaxInitLen, 728) + if yyrt4701 { + if yyrl4701 <= cap(yyv4701) { + yyv4701 = yyv4701[:yyrl4701] } else { - yyv4727 = make([]PodTemplate, yyrl4727) + yyv4701 = make([]PodTemplate, yyrl4701) } } else { - yyv4727 = make([]PodTemplate, yyrl4727) + yyv4701 = make([]PodTemplate, yyrl4701) } - yyc4727 = true - yyrr4727 = len(yyv4727) - if yyrg4727 { - copy(yyv4727, yyv24727) + yyc4701 = true + yyrr4701 = len(yyv4701) + if yyrg4701 { + copy(yyv4701, yyv24701) } - } else if yyl4727 != len(yyv4727) { - yyv4727 = yyv4727[:yyl4727] - yyc4727 = true + } else if yyl4701 != len(yyv4701) { + yyv4701 = yyv4701[:yyl4701] + yyc4701 = true } - yyj4727 := 0 - for ; yyj4727 < yyrr4727; yyj4727++ { - yyh4727.ElemContainerState(yyj4727) + yyj4701 := 0 + for ; yyj4701 < yyrr4701; yyj4701++ { + yyh4701.ElemContainerState(yyj4701) if r.TryDecodeAsNil() { - yyv4727[yyj4727] = PodTemplate{} + yyv4701[yyj4701] = PodTemplate{} } else { - yyv4728 := &yyv4727[yyj4727] - yyv4728.CodecDecodeSelf(d) + yyv4702 := &yyv4701[yyj4701] + yyv4702.CodecDecodeSelf(d) } } - if yyrt4727 { - for ; yyj4727 < yyl4727; yyj4727++ { - yyv4727 = append(yyv4727, PodTemplate{}) - yyh4727.ElemContainerState(yyj4727) + if yyrt4701 { + for ; yyj4701 < yyl4701; yyj4701++ { + yyv4701 = append(yyv4701, PodTemplate{}) + yyh4701.ElemContainerState(yyj4701) if r.TryDecodeAsNil() { - yyv4727[yyj4727] = PodTemplate{} + yyv4701[yyj4701] = PodTemplate{} } else { - yyv4729 := &yyv4727[yyj4727] - yyv4729.CodecDecodeSelf(d) + yyv4703 := &yyv4701[yyj4701] + yyv4703.CodecDecodeSelf(d) } } } } else { - yyj4727 := 0 - for ; !r.CheckBreak(); yyj4727++ { + yyj4701 := 0 + for ; !r.CheckBreak(); yyj4701++ { - if yyj4727 >= len(yyv4727) { - yyv4727 = append(yyv4727, PodTemplate{}) // var yyz4727 PodTemplate - yyc4727 = true + if yyj4701 >= len(yyv4701) { + yyv4701 = append(yyv4701, PodTemplate{}) // var yyz4701 PodTemplate + yyc4701 = true } - yyh4727.ElemContainerState(yyj4727) - if yyj4727 < len(yyv4727) { + yyh4701.ElemContainerState(yyj4701) + if yyj4701 < len(yyv4701) { if r.TryDecodeAsNil() { - yyv4727[yyj4727] = PodTemplate{} + yyv4701[yyj4701] = PodTemplate{} } else { - yyv4730 := &yyv4727[yyj4727] - yyv4730.CodecDecodeSelf(d) + yyv4704 := &yyv4701[yyj4701] + yyv4704.CodecDecodeSelf(d) } } else { @@ -59832,17 +59533,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4727 < len(yyv4727) { - yyv4727 = yyv4727[:yyj4727] - yyc4727 = true - } else if yyj4727 == 0 && yyv4727 == nil { - yyv4727 = []PodTemplate{} - yyc4727 = true + if yyj4701 < len(yyv4701) { + yyv4701 = yyv4701[:yyj4701] + yyc4701 = true + } else if yyj4701 == 0 && yyv4701 == nil { + yyv4701 = []PodTemplate{} + yyc4701 = true } } - yyh4727.End() - if yyc4727 { - *v = yyv4727 + yyh4701.End() + if yyc4701 { + *v = yyv4701 } } @@ -59851,10 +59552,10 @@ func (x codecSelfer1234) encSliceReplicationControllerCondition(v []ReplicationC z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4731 := range v { + for _, yyv4705 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4732 := &yyv4731 - yy4732.CodecEncodeSelf(e) + yy4706 := &yyv4705 + yy4706.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59864,83 +59565,83 @@ func (x codecSelfer1234) decSliceReplicationControllerCondition(v *[]Replication z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4733 := *v - yyh4733, yyl4733 := z.DecSliceHelperStart() - var yyc4733 bool - if yyl4733 == 0 { - if yyv4733 == nil { - yyv4733 = []ReplicationControllerCondition{} - yyc4733 = true - } else if len(yyv4733) != 0 { - yyv4733 = yyv4733[:0] - yyc4733 = true + yyv4707 := *v + yyh4707, yyl4707 := z.DecSliceHelperStart() + var yyc4707 bool + if yyl4707 == 0 { + if yyv4707 == nil { + yyv4707 = []ReplicationControllerCondition{} + yyc4707 = true + } else if len(yyv4707) != 0 { + yyv4707 = yyv4707[:0] + yyc4707 = true } - } else if yyl4733 > 0 { - var yyrr4733, yyrl4733 int - var yyrt4733 bool - if yyl4733 > cap(yyv4733) { + } else if yyl4707 > 0 { + var yyrr4707, yyrl4707 int + var yyrt4707 bool + if yyl4707 > cap(yyv4707) { - yyrg4733 := len(yyv4733) > 0 - yyv24733 := yyv4733 - yyrl4733, yyrt4733 = z.DecInferLen(yyl4733, z.DecBasicHandle().MaxInitLen, 88) - if yyrt4733 { - if yyrl4733 <= cap(yyv4733) { - yyv4733 = yyv4733[:yyrl4733] + yyrg4707 := len(yyv4707) > 0 + yyv24707 := yyv4707 + yyrl4707, yyrt4707 = z.DecInferLen(yyl4707, z.DecBasicHandle().MaxInitLen, 88) + if yyrt4707 { + if yyrl4707 <= cap(yyv4707) { + yyv4707 = yyv4707[:yyrl4707] } else { - yyv4733 = make([]ReplicationControllerCondition, yyrl4733) + yyv4707 = make([]ReplicationControllerCondition, yyrl4707) } } else { - yyv4733 = make([]ReplicationControllerCondition, yyrl4733) + yyv4707 = make([]ReplicationControllerCondition, yyrl4707) } - yyc4733 = true - yyrr4733 = len(yyv4733) - if yyrg4733 { - copy(yyv4733, yyv24733) + yyc4707 = true + yyrr4707 = len(yyv4707) + if yyrg4707 { + copy(yyv4707, yyv24707) } - } else if yyl4733 != len(yyv4733) { - yyv4733 = yyv4733[:yyl4733] - yyc4733 = true + } else if yyl4707 != len(yyv4707) { + yyv4707 = yyv4707[:yyl4707] + yyc4707 = true } - yyj4733 := 0 - for ; yyj4733 < yyrr4733; yyj4733++ { - yyh4733.ElemContainerState(yyj4733) + yyj4707 := 0 + for ; yyj4707 < yyrr4707; yyj4707++ { + yyh4707.ElemContainerState(yyj4707) if r.TryDecodeAsNil() { - yyv4733[yyj4733] = ReplicationControllerCondition{} + yyv4707[yyj4707] = ReplicationControllerCondition{} } else { - yyv4734 := &yyv4733[yyj4733] - yyv4734.CodecDecodeSelf(d) + yyv4708 := &yyv4707[yyj4707] + yyv4708.CodecDecodeSelf(d) } } - if yyrt4733 { - for ; yyj4733 < yyl4733; yyj4733++ { - yyv4733 = append(yyv4733, ReplicationControllerCondition{}) - yyh4733.ElemContainerState(yyj4733) + if yyrt4707 { + for ; yyj4707 < yyl4707; yyj4707++ { + yyv4707 = append(yyv4707, ReplicationControllerCondition{}) + yyh4707.ElemContainerState(yyj4707) if r.TryDecodeAsNil() { - yyv4733[yyj4733] = ReplicationControllerCondition{} + yyv4707[yyj4707] = ReplicationControllerCondition{} } else { - yyv4735 := &yyv4733[yyj4733] - yyv4735.CodecDecodeSelf(d) + yyv4709 := &yyv4707[yyj4707] + yyv4709.CodecDecodeSelf(d) } } } } else { - yyj4733 := 0 - for ; !r.CheckBreak(); yyj4733++ { + yyj4707 := 0 + for ; !r.CheckBreak(); yyj4707++ { - if yyj4733 >= len(yyv4733) { - yyv4733 = append(yyv4733, ReplicationControllerCondition{}) // var yyz4733 ReplicationControllerCondition - yyc4733 = true + if yyj4707 >= len(yyv4707) { + yyv4707 = append(yyv4707, ReplicationControllerCondition{}) // var yyz4707 ReplicationControllerCondition + yyc4707 = true } - yyh4733.ElemContainerState(yyj4733) - if yyj4733 < len(yyv4733) { + yyh4707.ElemContainerState(yyj4707) + if yyj4707 < len(yyv4707) { if r.TryDecodeAsNil() { - yyv4733[yyj4733] = ReplicationControllerCondition{} + yyv4707[yyj4707] = ReplicationControllerCondition{} } else { - yyv4736 := &yyv4733[yyj4733] - yyv4736.CodecDecodeSelf(d) + yyv4710 := &yyv4707[yyj4707] + yyv4710.CodecDecodeSelf(d) } } else { @@ -59948,17 +59649,17 @@ func (x codecSelfer1234) decSliceReplicationControllerCondition(v *[]Replication } } - if yyj4733 < len(yyv4733) { - yyv4733 = yyv4733[:yyj4733] - yyc4733 = true - } else if yyj4733 == 0 && yyv4733 == nil { - yyv4733 = []ReplicationControllerCondition{} - yyc4733 = true + if yyj4707 < len(yyv4707) { + yyv4707 = yyv4707[:yyj4707] + yyc4707 = true + } else if yyj4707 == 0 && yyv4707 == nil { + yyv4707 = []ReplicationControllerCondition{} + yyc4707 = true } } - yyh4733.End() - if yyc4733 { - *v = yyv4733 + yyh4707.End() + if yyc4707 { + *v = yyv4707 } } @@ -59967,10 +59668,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4737 := range v { + for _, yyv4711 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4738 := &yyv4737 - yy4738.CodecEncodeSelf(e) + yy4712 := &yyv4711 + yy4712.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59980,83 +59681,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4739 := *v - yyh4739, yyl4739 := z.DecSliceHelperStart() - var yyc4739 bool - if yyl4739 == 0 { - if yyv4739 == nil { - yyv4739 = []ReplicationController{} - yyc4739 = true - } else if len(yyv4739) != 0 { - yyv4739 = yyv4739[:0] - yyc4739 = true + yyv4713 := *v + yyh4713, yyl4713 := z.DecSliceHelperStart() + var yyc4713 bool + if yyl4713 == 0 { + if yyv4713 == nil { + yyv4713 = []ReplicationController{} + yyc4713 = true + } else if len(yyv4713) != 0 { + yyv4713 = yyv4713[:0] + yyc4713 = true } - } else if yyl4739 > 0 { - var yyrr4739, yyrl4739 int - var yyrt4739 bool - if yyl4739 > cap(yyv4739) { + } else if yyl4713 > 0 { + var yyrr4713, yyrl4713 int + var yyrt4713 bool + if yyl4713 > cap(yyv4713) { - yyrg4739 := len(yyv4739) > 0 - yyv24739 := yyv4739 - yyrl4739, yyrt4739 = z.DecInferLen(yyl4739, z.DecBasicHandle().MaxInitLen, 336) - if yyrt4739 { - if yyrl4739 <= cap(yyv4739) { - yyv4739 = yyv4739[:yyrl4739] + yyrg4713 := len(yyv4713) > 0 + yyv24713 := yyv4713 + yyrl4713, yyrt4713 = z.DecInferLen(yyl4713, z.DecBasicHandle().MaxInitLen, 336) + if yyrt4713 { + if yyrl4713 <= cap(yyv4713) { + yyv4713 = yyv4713[:yyrl4713] } else { - yyv4739 = make([]ReplicationController, yyrl4739) + yyv4713 = make([]ReplicationController, yyrl4713) } } else { - yyv4739 = make([]ReplicationController, yyrl4739) + yyv4713 = make([]ReplicationController, yyrl4713) } - yyc4739 = true - yyrr4739 = len(yyv4739) - if yyrg4739 { - copy(yyv4739, yyv24739) + yyc4713 = true + yyrr4713 = len(yyv4713) + if yyrg4713 { + copy(yyv4713, yyv24713) } - } else if yyl4739 != len(yyv4739) { - yyv4739 = yyv4739[:yyl4739] - yyc4739 = true + } else if yyl4713 != len(yyv4713) { + yyv4713 = yyv4713[:yyl4713] + yyc4713 = true } - yyj4739 := 0 - for ; yyj4739 < yyrr4739; yyj4739++ { - yyh4739.ElemContainerState(yyj4739) + yyj4713 := 0 + for ; yyj4713 < yyrr4713; yyj4713++ { + yyh4713.ElemContainerState(yyj4713) if r.TryDecodeAsNil() { - yyv4739[yyj4739] = ReplicationController{} + yyv4713[yyj4713] = ReplicationController{} } else { - yyv4740 := &yyv4739[yyj4739] - yyv4740.CodecDecodeSelf(d) + yyv4714 := &yyv4713[yyj4713] + yyv4714.CodecDecodeSelf(d) } } - if yyrt4739 { - for ; yyj4739 < yyl4739; yyj4739++ { - yyv4739 = append(yyv4739, ReplicationController{}) - yyh4739.ElemContainerState(yyj4739) + if yyrt4713 { + for ; yyj4713 < yyl4713; yyj4713++ { + yyv4713 = append(yyv4713, ReplicationController{}) + yyh4713.ElemContainerState(yyj4713) if r.TryDecodeAsNil() { - yyv4739[yyj4739] = ReplicationController{} + yyv4713[yyj4713] = ReplicationController{} } else { - yyv4741 := &yyv4739[yyj4739] - yyv4741.CodecDecodeSelf(d) + yyv4715 := &yyv4713[yyj4713] + yyv4715.CodecDecodeSelf(d) } } } } else { - yyj4739 := 0 - for ; !r.CheckBreak(); yyj4739++ { + yyj4713 := 0 + for ; !r.CheckBreak(); yyj4713++ { - if yyj4739 >= len(yyv4739) { - yyv4739 = append(yyv4739, ReplicationController{}) // var yyz4739 ReplicationController - yyc4739 = true + if yyj4713 >= len(yyv4713) { + yyv4713 = append(yyv4713, ReplicationController{}) // var yyz4713 ReplicationController + yyc4713 = true } - yyh4739.ElemContainerState(yyj4739) - if yyj4739 < len(yyv4739) { + yyh4713.ElemContainerState(yyj4713) + if yyj4713 < len(yyv4713) { if r.TryDecodeAsNil() { - yyv4739[yyj4739] = ReplicationController{} + yyv4713[yyj4713] = ReplicationController{} } else { - yyv4742 := &yyv4739[yyj4739] - yyv4742.CodecDecodeSelf(d) + yyv4716 := &yyv4713[yyj4713] + yyv4716.CodecDecodeSelf(d) } } else { @@ -60064,17 +59765,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4739 < len(yyv4739) { - yyv4739 = yyv4739[:yyj4739] - yyc4739 = true - } else if yyj4739 == 0 && yyv4739 == nil { - yyv4739 = []ReplicationController{} - yyc4739 = true + if yyj4713 < len(yyv4713) { + yyv4713 = yyv4713[:yyj4713] + yyc4713 = true + } else if yyj4713 == 0 && yyv4713 == nil { + yyv4713 = []ReplicationController{} + yyc4713 = true } } - yyh4739.End() - if yyc4739 { - *v = yyv4739 + yyh4713.End() + if yyc4713 { + *v = yyv4713 } } @@ -60083,10 +59784,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4743 := range v { + for _, yyv4717 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4744 := &yyv4743 - yy4744.CodecEncodeSelf(e) + yy4718 := &yyv4717 + yy4718.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60096,83 +59797,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4745 := *v - yyh4745, yyl4745 := z.DecSliceHelperStart() - var yyc4745 bool - if yyl4745 == 0 { - if yyv4745 == nil { - yyv4745 = []LoadBalancerIngress{} - yyc4745 = true - } else if len(yyv4745) != 0 { - yyv4745 = yyv4745[:0] - yyc4745 = true + yyv4719 := *v + yyh4719, yyl4719 := z.DecSliceHelperStart() + var yyc4719 bool + if yyl4719 == 0 { + if yyv4719 == nil { + yyv4719 = []LoadBalancerIngress{} + yyc4719 = true + } else if len(yyv4719) != 0 { + yyv4719 = yyv4719[:0] + yyc4719 = true } - } else if yyl4745 > 0 { - var yyrr4745, yyrl4745 int - var yyrt4745 bool - if yyl4745 > cap(yyv4745) { + } else if yyl4719 > 0 { + var yyrr4719, yyrl4719 int + var yyrt4719 bool + if yyl4719 > cap(yyv4719) { - yyrg4745 := len(yyv4745) > 0 - yyv24745 := yyv4745 - yyrl4745, yyrt4745 = z.DecInferLen(yyl4745, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4745 { - if yyrl4745 <= cap(yyv4745) { - yyv4745 = yyv4745[:yyrl4745] + yyrg4719 := len(yyv4719) > 0 + yyv24719 := yyv4719 + yyrl4719, yyrt4719 = z.DecInferLen(yyl4719, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4719 { + if yyrl4719 <= cap(yyv4719) { + yyv4719 = yyv4719[:yyrl4719] } else { - yyv4745 = make([]LoadBalancerIngress, yyrl4745) + yyv4719 = make([]LoadBalancerIngress, yyrl4719) } } else { - yyv4745 = make([]LoadBalancerIngress, yyrl4745) + yyv4719 = make([]LoadBalancerIngress, yyrl4719) } - yyc4745 = true - yyrr4745 = len(yyv4745) - if yyrg4745 { - copy(yyv4745, yyv24745) + yyc4719 = true + yyrr4719 = len(yyv4719) + if yyrg4719 { + copy(yyv4719, yyv24719) } - } else if yyl4745 != len(yyv4745) { - yyv4745 = yyv4745[:yyl4745] - yyc4745 = true + } else if yyl4719 != len(yyv4719) { + yyv4719 = yyv4719[:yyl4719] + yyc4719 = true } - yyj4745 := 0 - for ; yyj4745 < yyrr4745; yyj4745++ { - yyh4745.ElemContainerState(yyj4745) + yyj4719 := 0 + for ; yyj4719 < yyrr4719; yyj4719++ { + yyh4719.ElemContainerState(yyj4719) if r.TryDecodeAsNil() { - yyv4745[yyj4745] = LoadBalancerIngress{} + yyv4719[yyj4719] = LoadBalancerIngress{} } else { - yyv4746 := &yyv4745[yyj4745] - yyv4746.CodecDecodeSelf(d) + yyv4720 := &yyv4719[yyj4719] + yyv4720.CodecDecodeSelf(d) } } - if yyrt4745 { - for ; yyj4745 < yyl4745; yyj4745++ { - yyv4745 = append(yyv4745, LoadBalancerIngress{}) - yyh4745.ElemContainerState(yyj4745) + if yyrt4719 { + for ; yyj4719 < yyl4719; yyj4719++ { + yyv4719 = append(yyv4719, LoadBalancerIngress{}) + yyh4719.ElemContainerState(yyj4719) if r.TryDecodeAsNil() { - yyv4745[yyj4745] = LoadBalancerIngress{} + yyv4719[yyj4719] = LoadBalancerIngress{} } else { - yyv4747 := &yyv4745[yyj4745] - yyv4747.CodecDecodeSelf(d) + yyv4721 := &yyv4719[yyj4719] + yyv4721.CodecDecodeSelf(d) } } } } else { - yyj4745 := 0 - for ; !r.CheckBreak(); yyj4745++ { + yyj4719 := 0 + for ; !r.CheckBreak(); yyj4719++ { - if yyj4745 >= len(yyv4745) { - yyv4745 = append(yyv4745, LoadBalancerIngress{}) // var yyz4745 LoadBalancerIngress - yyc4745 = true + if yyj4719 >= len(yyv4719) { + yyv4719 = append(yyv4719, LoadBalancerIngress{}) // var yyz4719 LoadBalancerIngress + yyc4719 = true } - yyh4745.ElemContainerState(yyj4745) - if yyj4745 < len(yyv4745) { + yyh4719.ElemContainerState(yyj4719) + if yyj4719 < len(yyv4719) { if r.TryDecodeAsNil() { - yyv4745[yyj4745] = LoadBalancerIngress{} + yyv4719[yyj4719] = LoadBalancerIngress{} } else { - yyv4748 := &yyv4745[yyj4745] - yyv4748.CodecDecodeSelf(d) + yyv4722 := &yyv4719[yyj4719] + yyv4722.CodecDecodeSelf(d) } } else { @@ -60180,17 +59881,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4745 < len(yyv4745) { - yyv4745 = yyv4745[:yyj4745] - yyc4745 = true - } else if yyj4745 == 0 && yyv4745 == nil { - yyv4745 = []LoadBalancerIngress{} - yyc4745 = true + if yyj4719 < len(yyv4719) { + yyv4719 = yyv4719[:yyj4719] + yyc4719 = true + } else if yyj4719 == 0 && yyv4719 == nil { + yyv4719 = []LoadBalancerIngress{} + yyc4719 = true } } - yyh4745.End() - if yyc4745 { - *v = yyv4745 + yyh4719.End() + if yyc4719 { + *v = yyv4719 } } @@ -60199,10 +59900,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4749 := range v { + for _, yyv4723 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4750 := &yyv4749 - yy4750.CodecEncodeSelf(e) + yy4724 := &yyv4723 + yy4724.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60212,83 +59913,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4751 := *v - yyh4751, yyl4751 := z.DecSliceHelperStart() - var yyc4751 bool - if yyl4751 == 0 { - if yyv4751 == nil { - yyv4751 = []ServicePort{} - yyc4751 = true - } else if len(yyv4751) != 0 { - yyv4751 = yyv4751[:0] - yyc4751 = true + yyv4725 := *v + yyh4725, yyl4725 := z.DecSliceHelperStart() + var yyc4725 bool + if yyl4725 == 0 { + if yyv4725 == nil { + yyv4725 = []ServicePort{} + yyc4725 = true + } else if len(yyv4725) != 0 { + yyv4725 = yyv4725[:0] + yyc4725 = true } - } else if yyl4751 > 0 { - var yyrr4751, yyrl4751 int - var yyrt4751 bool - if yyl4751 > cap(yyv4751) { + } else if yyl4725 > 0 { + var yyrr4725, yyrl4725 int + var yyrt4725 bool + if yyl4725 > cap(yyv4725) { - yyrg4751 := len(yyv4751) > 0 - yyv24751 := yyv4751 - yyrl4751, yyrt4751 = z.DecInferLen(yyl4751, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4751 { - if yyrl4751 <= cap(yyv4751) { - yyv4751 = yyv4751[:yyrl4751] + yyrg4725 := len(yyv4725) > 0 + yyv24725 := yyv4725 + yyrl4725, yyrt4725 = z.DecInferLen(yyl4725, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4725 { + if yyrl4725 <= cap(yyv4725) { + yyv4725 = yyv4725[:yyrl4725] } else { - yyv4751 = make([]ServicePort, yyrl4751) + yyv4725 = make([]ServicePort, yyrl4725) } } else { - yyv4751 = make([]ServicePort, yyrl4751) + yyv4725 = make([]ServicePort, yyrl4725) } - yyc4751 = true - yyrr4751 = len(yyv4751) - if yyrg4751 { - copy(yyv4751, yyv24751) + yyc4725 = true + yyrr4725 = len(yyv4725) + if yyrg4725 { + copy(yyv4725, yyv24725) } - } else if yyl4751 != len(yyv4751) { - yyv4751 = yyv4751[:yyl4751] - yyc4751 = true + } else if yyl4725 != len(yyv4725) { + yyv4725 = yyv4725[:yyl4725] + yyc4725 = true } - yyj4751 := 0 - for ; yyj4751 < yyrr4751; yyj4751++ { - yyh4751.ElemContainerState(yyj4751) + yyj4725 := 0 + for ; yyj4725 < yyrr4725; yyj4725++ { + yyh4725.ElemContainerState(yyj4725) if r.TryDecodeAsNil() { - yyv4751[yyj4751] = ServicePort{} + yyv4725[yyj4725] = ServicePort{} } else { - yyv4752 := &yyv4751[yyj4751] - yyv4752.CodecDecodeSelf(d) + yyv4726 := &yyv4725[yyj4725] + yyv4726.CodecDecodeSelf(d) } } - if yyrt4751 { - for ; yyj4751 < yyl4751; yyj4751++ { - yyv4751 = append(yyv4751, ServicePort{}) - yyh4751.ElemContainerState(yyj4751) + if yyrt4725 { + for ; yyj4725 < yyl4725; yyj4725++ { + yyv4725 = append(yyv4725, ServicePort{}) + yyh4725.ElemContainerState(yyj4725) if r.TryDecodeAsNil() { - yyv4751[yyj4751] = ServicePort{} + yyv4725[yyj4725] = ServicePort{} } else { - yyv4753 := &yyv4751[yyj4751] - yyv4753.CodecDecodeSelf(d) + yyv4727 := &yyv4725[yyj4725] + yyv4727.CodecDecodeSelf(d) } } } } else { - yyj4751 := 0 - for ; !r.CheckBreak(); yyj4751++ { + yyj4725 := 0 + for ; !r.CheckBreak(); yyj4725++ { - if yyj4751 >= len(yyv4751) { - yyv4751 = append(yyv4751, ServicePort{}) // var yyz4751 ServicePort - yyc4751 = true + if yyj4725 >= len(yyv4725) { + yyv4725 = append(yyv4725, ServicePort{}) // var yyz4725 ServicePort + yyc4725 = true } - yyh4751.ElemContainerState(yyj4751) - if yyj4751 < len(yyv4751) { + yyh4725.ElemContainerState(yyj4725) + if yyj4725 < len(yyv4725) { if r.TryDecodeAsNil() { - yyv4751[yyj4751] = ServicePort{} + yyv4725[yyj4725] = ServicePort{} } else { - yyv4754 := &yyv4751[yyj4751] - yyv4754.CodecDecodeSelf(d) + yyv4728 := &yyv4725[yyj4725] + yyv4728.CodecDecodeSelf(d) } } else { @@ -60296,17 +59997,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4751 < len(yyv4751) { - yyv4751 = yyv4751[:yyj4751] - yyc4751 = true - } else if yyj4751 == 0 && yyv4751 == nil { - yyv4751 = []ServicePort{} - yyc4751 = true + if yyj4725 < len(yyv4725) { + yyv4725 = yyv4725[:yyj4725] + yyc4725 = true + } else if yyj4725 == 0 && yyv4725 == nil { + yyv4725 = []ServicePort{} + yyc4725 = true } } - yyh4751.End() - if yyc4751 { - *v = yyv4751 + yyh4725.End() + if yyc4725 { + *v = yyv4725 } } @@ -60315,10 +60016,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4755 := range v { + for _, yyv4729 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4756 := &yyv4755 - yy4756.CodecEncodeSelf(e) + yy4730 := &yyv4729 + yy4730.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60328,83 +60029,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4757 := *v - yyh4757, yyl4757 := z.DecSliceHelperStart() - var yyc4757 bool - if yyl4757 == 0 { - if yyv4757 == nil { - yyv4757 = []Service{} - yyc4757 = true - } else if len(yyv4757) != 0 { - yyv4757 = yyv4757[:0] - yyc4757 = true + yyv4731 := *v + yyh4731, yyl4731 := z.DecSliceHelperStart() + var yyc4731 bool + if yyl4731 == 0 { + if yyv4731 == nil { + yyv4731 = []Service{} + yyc4731 = true + } else if len(yyv4731) != 0 { + yyv4731 = yyv4731[:0] + yyc4731 = true } - } else if yyl4757 > 0 { - var yyrr4757, yyrl4757 int - var yyrt4757 bool - if yyl4757 > cap(yyv4757) { + } else if yyl4731 > 0 { + var yyrr4731, yyrl4731 int + var yyrt4731 bool + if yyl4731 > cap(yyv4731) { - yyrg4757 := len(yyv4757) > 0 - yyv24757 := yyv4757 - yyrl4757, yyrt4757 = z.DecInferLen(yyl4757, z.DecBasicHandle().MaxInitLen, 464) - if yyrt4757 { - if yyrl4757 <= cap(yyv4757) { - yyv4757 = yyv4757[:yyrl4757] + yyrg4731 := len(yyv4731) > 0 + yyv24731 := yyv4731 + yyrl4731, yyrt4731 = z.DecInferLen(yyl4731, z.DecBasicHandle().MaxInitLen, 464) + if yyrt4731 { + if yyrl4731 <= cap(yyv4731) { + yyv4731 = yyv4731[:yyrl4731] } else { - yyv4757 = make([]Service, yyrl4757) + yyv4731 = make([]Service, yyrl4731) } } else { - yyv4757 = make([]Service, yyrl4757) + yyv4731 = make([]Service, yyrl4731) } - yyc4757 = true - yyrr4757 = len(yyv4757) - if yyrg4757 { - copy(yyv4757, yyv24757) + yyc4731 = true + yyrr4731 = len(yyv4731) + if yyrg4731 { + copy(yyv4731, yyv24731) } - } else if yyl4757 != len(yyv4757) { - yyv4757 = yyv4757[:yyl4757] - yyc4757 = true + } else if yyl4731 != len(yyv4731) { + yyv4731 = yyv4731[:yyl4731] + yyc4731 = true } - yyj4757 := 0 - for ; yyj4757 < yyrr4757; yyj4757++ { - yyh4757.ElemContainerState(yyj4757) + yyj4731 := 0 + for ; yyj4731 < yyrr4731; yyj4731++ { + yyh4731.ElemContainerState(yyj4731) if r.TryDecodeAsNil() { - yyv4757[yyj4757] = Service{} + yyv4731[yyj4731] = Service{} } else { - yyv4758 := &yyv4757[yyj4757] - yyv4758.CodecDecodeSelf(d) + yyv4732 := &yyv4731[yyj4731] + yyv4732.CodecDecodeSelf(d) } } - if yyrt4757 { - for ; yyj4757 < yyl4757; yyj4757++ { - yyv4757 = append(yyv4757, Service{}) - yyh4757.ElemContainerState(yyj4757) + if yyrt4731 { + for ; yyj4731 < yyl4731; yyj4731++ { + yyv4731 = append(yyv4731, Service{}) + yyh4731.ElemContainerState(yyj4731) if r.TryDecodeAsNil() { - yyv4757[yyj4757] = Service{} + yyv4731[yyj4731] = Service{} } else { - yyv4759 := &yyv4757[yyj4757] - yyv4759.CodecDecodeSelf(d) + yyv4733 := &yyv4731[yyj4731] + yyv4733.CodecDecodeSelf(d) } } } } else { - yyj4757 := 0 - for ; !r.CheckBreak(); yyj4757++ { + yyj4731 := 0 + for ; !r.CheckBreak(); yyj4731++ { - if yyj4757 >= len(yyv4757) { - yyv4757 = append(yyv4757, Service{}) // var yyz4757 Service - yyc4757 = true + if yyj4731 >= len(yyv4731) { + yyv4731 = append(yyv4731, Service{}) // var yyz4731 Service + yyc4731 = true } - yyh4757.ElemContainerState(yyj4757) - if yyj4757 < len(yyv4757) { + yyh4731.ElemContainerState(yyj4731) + if yyj4731 < len(yyv4731) { if r.TryDecodeAsNil() { - yyv4757[yyj4757] = Service{} + yyv4731[yyj4731] = Service{} } else { - yyv4760 := &yyv4757[yyj4757] - yyv4760.CodecDecodeSelf(d) + yyv4734 := &yyv4731[yyj4731] + yyv4734.CodecDecodeSelf(d) } } else { @@ -60412,17 +60113,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4757 < len(yyv4757) { - yyv4757 = yyv4757[:yyj4757] - yyc4757 = true - } else if yyj4757 == 0 && yyv4757 == nil { - yyv4757 = []Service{} - yyc4757 = true + if yyj4731 < len(yyv4731) { + yyv4731 = yyv4731[:yyj4731] + yyc4731 = true + } else if yyj4731 == 0 && yyv4731 == nil { + yyv4731 = []Service{} + yyc4731 = true } } - yyh4757.End() - if yyc4757 { - *v = yyv4757 + yyh4731.End() + if yyc4731 { + *v = yyv4731 } } @@ -60431,10 +60132,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4761 := range v { + for _, yyv4735 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4762 := &yyv4761 - yy4762.CodecEncodeSelf(e) + yy4736 := &yyv4735 + yy4736.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60444,83 +60145,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4763 := *v - yyh4763, yyl4763 := z.DecSliceHelperStart() - var yyc4763 bool - if yyl4763 == 0 { - if yyv4763 == nil { - yyv4763 = []ObjectReference{} - yyc4763 = true - } else if len(yyv4763) != 0 { - yyv4763 = yyv4763[:0] - yyc4763 = true + yyv4737 := *v + yyh4737, yyl4737 := z.DecSliceHelperStart() + var yyc4737 bool + if yyl4737 == 0 { + if yyv4737 == nil { + yyv4737 = []ObjectReference{} + yyc4737 = true + } else if len(yyv4737) != 0 { + yyv4737 = yyv4737[:0] + yyc4737 = true } - } else if yyl4763 > 0 { - var yyrr4763, yyrl4763 int - var yyrt4763 bool - if yyl4763 > cap(yyv4763) { + } else if yyl4737 > 0 { + var yyrr4737, yyrl4737 int + var yyrt4737 bool + if yyl4737 > cap(yyv4737) { - yyrg4763 := len(yyv4763) > 0 - yyv24763 := yyv4763 - yyrl4763, yyrt4763 = z.DecInferLen(yyl4763, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4763 { - if yyrl4763 <= cap(yyv4763) { - yyv4763 = yyv4763[:yyrl4763] + yyrg4737 := len(yyv4737) > 0 + yyv24737 := yyv4737 + yyrl4737, yyrt4737 = z.DecInferLen(yyl4737, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4737 { + if yyrl4737 <= cap(yyv4737) { + yyv4737 = yyv4737[:yyrl4737] } else { - yyv4763 = make([]ObjectReference, yyrl4763) + yyv4737 = make([]ObjectReference, yyrl4737) } } else { - yyv4763 = make([]ObjectReference, yyrl4763) + yyv4737 = make([]ObjectReference, yyrl4737) } - yyc4763 = true - yyrr4763 = len(yyv4763) - if yyrg4763 { - copy(yyv4763, yyv24763) + yyc4737 = true + yyrr4737 = len(yyv4737) + if yyrg4737 { + copy(yyv4737, yyv24737) } - } else if yyl4763 != len(yyv4763) { - yyv4763 = yyv4763[:yyl4763] - yyc4763 = true + } else if yyl4737 != len(yyv4737) { + yyv4737 = yyv4737[:yyl4737] + yyc4737 = true } - yyj4763 := 0 - for ; yyj4763 < yyrr4763; yyj4763++ { - yyh4763.ElemContainerState(yyj4763) + yyj4737 := 0 + for ; yyj4737 < yyrr4737; yyj4737++ { + yyh4737.ElemContainerState(yyj4737) if r.TryDecodeAsNil() { - yyv4763[yyj4763] = ObjectReference{} + yyv4737[yyj4737] = ObjectReference{} } else { - yyv4764 := &yyv4763[yyj4763] - yyv4764.CodecDecodeSelf(d) + yyv4738 := &yyv4737[yyj4737] + yyv4738.CodecDecodeSelf(d) } } - if yyrt4763 { - for ; yyj4763 < yyl4763; yyj4763++ { - yyv4763 = append(yyv4763, ObjectReference{}) - yyh4763.ElemContainerState(yyj4763) + if yyrt4737 { + for ; yyj4737 < yyl4737; yyj4737++ { + yyv4737 = append(yyv4737, ObjectReference{}) + yyh4737.ElemContainerState(yyj4737) if r.TryDecodeAsNil() { - yyv4763[yyj4763] = ObjectReference{} + yyv4737[yyj4737] = ObjectReference{} } else { - yyv4765 := &yyv4763[yyj4763] - yyv4765.CodecDecodeSelf(d) + yyv4739 := &yyv4737[yyj4737] + yyv4739.CodecDecodeSelf(d) } } } } else { - yyj4763 := 0 - for ; !r.CheckBreak(); yyj4763++ { + yyj4737 := 0 + for ; !r.CheckBreak(); yyj4737++ { - if yyj4763 >= len(yyv4763) { - yyv4763 = append(yyv4763, ObjectReference{}) // var yyz4763 ObjectReference - yyc4763 = true + if yyj4737 >= len(yyv4737) { + yyv4737 = append(yyv4737, ObjectReference{}) // var yyz4737 ObjectReference + yyc4737 = true } - yyh4763.ElemContainerState(yyj4763) - if yyj4763 < len(yyv4763) { + yyh4737.ElemContainerState(yyj4737) + if yyj4737 < len(yyv4737) { if r.TryDecodeAsNil() { - yyv4763[yyj4763] = ObjectReference{} + yyv4737[yyj4737] = ObjectReference{} } else { - yyv4766 := &yyv4763[yyj4763] - yyv4766.CodecDecodeSelf(d) + yyv4740 := &yyv4737[yyj4737] + yyv4740.CodecDecodeSelf(d) } } else { @@ -60528,17 +60229,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj4763 < len(yyv4763) { - yyv4763 = yyv4763[:yyj4763] - yyc4763 = true - } else if yyj4763 == 0 && yyv4763 == nil { - yyv4763 = []ObjectReference{} - yyc4763 = true + if yyj4737 < len(yyv4737) { + yyv4737 = yyv4737[:yyj4737] + yyc4737 = true + } else if yyj4737 == 0 && yyv4737 == nil { + yyv4737 = []ObjectReference{} + yyc4737 = true } } - yyh4763.End() - if yyc4763 { - *v = yyv4763 + yyh4737.End() + if yyc4737 { + *v = yyv4737 } } @@ -60547,10 +60248,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4767 := range v { + for _, yyv4741 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4768 := &yyv4767 - yy4768.CodecEncodeSelf(e) + yy4742 := &yyv4741 + yy4742.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60560,83 +60261,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4769 := *v - yyh4769, yyl4769 := z.DecSliceHelperStart() - var yyc4769 bool - if yyl4769 == 0 { - if yyv4769 == nil { - yyv4769 = []ServiceAccount{} - yyc4769 = true - } else if len(yyv4769) != 0 { - yyv4769 = yyv4769[:0] - yyc4769 = true + yyv4743 := *v + yyh4743, yyl4743 := z.DecSliceHelperStart() + var yyc4743 bool + if yyl4743 == 0 { + if yyv4743 == nil { + yyv4743 = []ServiceAccount{} + yyc4743 = true + } else if len(yyv4743) != 0 { + yyv4743 = yyv4743[:0] + yyc4743 = true } - } else if yyl4769 > 0 { - var yyrr4769, yyrl4769 int - var yyrt4769 bool - if yyl4769 > cap(yyv4769) { + } else if yyl4743 > 0 { + var yyrr4743, yyrl4743 int + var yyrt4743 bool + if yyl4743 > cap(yyv4743) { - yyrg4769 := len(yyv4769) > 0 - yyv24769 := yyv4769 - yyrl4769, yyrt4769 = z.DecInferLen(yyl4769, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4769 { - if yyrl4769 <= cap(yyv4769) { - yyv4769 = yyv4769[:yyrl4769] + yyrg4743 := len(yyv4743) > 0 + yyv24743 := yyv4743 + yyrl4743, yyrt4743 = z.DecInferLen(yyl4743, z.DecBasicHandle().MaxInitLen, 304) + if yyrt4743 { + if yyrl4743 <= cap(yyv4743) { + yyv4743 = yyv4743[:yyrl4743] } else { - yyv4769 = make([]ServiceAccount, yyrl4769) + yyv4743 = make([]ServiceAccount, yyrl4743) } } else { - yyv4769 = make([]ServiceAccount, yyrl4769) + yyv4743 = make([]ServiceAccount, yyrl4743) } - yyc4769 = true - yyrr4769 = len(yyv4769) - if yyrg4769 { - copy(yyv4769, yyv24769) + yyc4743 = true + yyrr4743 = len(yyv4743) + if yyrg4743 { + copy(yyv4743, yyv24743) } - } else if yyl4769 != len(yyv4769) { - yyv4769 = yyv4769[:yyl4769] - yyc4769 = true + } else if yyl4743 != len(yyv4743) { + yyv4743 = yyv4743[:yyl4743] + yyc4743 = true } - yyj4769 := 0 - for ; yyj4769 < yyrr4769; yyj4769++ { - yyh4769.ElemContainerState(yyj4769) + yyj4743 := 0 + for ; yyj4743 < yyrr4743; yyj4743++ { + yyh4743.ElemContainerState(yyj4743) if r.TryDecodeAsNil() { - yyv4769[yyj4769] = ServiceAccount{} + yyv4743[yyj4743] = ServiceAccount{} } else { - yyv4770 := &yyv4769[yyj4769] - yyv4770.CodecDecodeSelf(d) + yyv4744 := &yyv4743[yyj4743] + yyv4744.CodecDecodeSelf(d) } } - if yyrt4769 { - for ; yyj4769 < yyl4769; yyj4769++ { - yyv4769 = append(yyv4769, ServiceAccount{}) - yyh4769.ElemContainerState(yyj4769) + if yyrt4743 { + for ; yyj4743 < yyl4743; yyj4743++ { + yyv4743 = append(yyv4743, ServiceAccount{}) + yyh4743.ElemContainerState(yyj4743) if r.TryDecodeAsNil() { - yyv4769[yyj4769] = ServiceAccount{} + yyv4743[yyj4743] = ServiceAccount{} } else { - yyv4771 := &yyv4769[yyj4769] - yyv4771.CodecDecodeSelf(d) + yyv4745 := &yyv4743[yyj4743] + yyv4745.CodecDecodeSelf(d) } } } } else { - yyj4769 := 0 - for ; !r.CheckBreak(); yyj4769++ { + yyj4743 := 0 + for ; !r.CheckBreak(); yyj4743++ { - if yyj4769 >= len(yyv4769) { - yyv4769 = append(yyv4769, ServiceAccount{}) // var yyz4769 ServiceAccount - yyc4769 = true + if yyj4743 >= len(yyv4743) { + yyv4743 = append(yyv4743, ServiceAccount{}) // var yyz4743 ServiceAccount + yyc4743 = true } - yyh4769.ElemContainerState(yyj4769) - if yyj4769 < len(yyv4769) { + yyh4743.ElemContainerState(yyj4743) + if yyj4743 < len(yyv4743) { if r.TryDecodeAsNil() { - yyv4769[yyj4769] = ServiceAccount{} + yyv4743[yyj4743] = ServiceAccount{} } else { - yyv4772 := &yyv4769[yyj4769] - yyv4772.CodecDecodeSelf(d) + yyv4746 := &yyv4743[yyj4743] + yyv4746.CodecDecodeSelf(d) } } else { @@ -60644,17 +60345,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj4769 < len(yyv4769) { - yyv4769 = yyv4769[:yyj4769] - yyc4769 = true - } else if yyj4769 == 0 && yyv4769 == nil { - yyv4769 = []ServiceAccount{} - yyc4769 = true + if yyj4743 < len(yyv4743) { + yyv4743 = yyv4743[:yyj4743] + yyc4743 = true + } else if yyj4743 == 0 && yyv4743 == nil { + yyv4743 = []ServiceAccount{} + yyc4743 = true } } - yyh4769.End() - if yyc4769 { - *v = yyv4769 + yyh4743.End() + if yyc4743 { + *v = yyv4743 } } @@ -60663,10 +60364,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4773 := range v { + for _, yyv4747 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4774 := &yyv4773 - yy4774.CodecEncodeSelf(e) + yy4748 := &yyv4747 + yy4748.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60676,83 +60377,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4775 := *v - yyh4775, yyl4775 := z.DecSliceHelperStart() - var yyc4775 bool - if yyl4775 == 0 { - if yyv4775 == nil { - yyv4775 = []EndpointSubset{} - yyc4775 = true - } else if len(yyv4775) != 0 { - yyv4775 = yyv4775[:0] - yyc4775 = true + yyv4749 := *v + yyh4749, yyl4749 := z.DecSliceHelperStart() + var yyc4749 bool + if yyl4749 == 0 { + if yyv4749 == nil { + yyv4749 = []EndpointSubset{} + yyc4749 = true + } else if len(yyv4749) != 0 { + yyv4749 = yyv4749[:0] + yyc4749 = true } - } else if yyl4775 > 0 { - var yyrr4775, yyrl4775 int - var yyrt4775 bool - if yyl4775 > cap(yyv4775) { + } else if yyl4749 > 0 { + var yyrr4749, yyrl4749 int + var yyrt4749 bool + if yyl4749 > cap(yyv4749) { - yyrg4775 := len(yyv4775) > 0 - yyv24775 := yyv4775 - yyrl4775, yyrt4775 = z.DecInferLen(yyl4775, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4775 { - if yyrl4775 <= cap(yyv4775) { - yyv4775 = yyv4775[:yyrl4775] + yyrg4749 := len(yyv4749) > 0 + yyv24749 := yyv4749 + yyrl4749, yyrt4749 = z.DecInferLen(yyl4749, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4749 { + if yyrl4749 <= cap(yyv4749) { + yyv4749 = yyv4749[:yyrl4749] } else { - yyv4775 = make([]EndpointSubset, yyrl4775) + yyv4749 = make([]EndpointSubset, yyrl4749) } } else { - yyv4775 = make([]EndpointSubset, yyrl4775) + yyv4749 = make([]EndpointSubset, yyrl4749) } - yyc4775 = true - yyrr4775 = len(yyv4775) - if yyrg4775 { - copy(yyv4775, yyv24775) + yyc4749 = true + yyrr4749 = len(yyv4749) + if yyrg4749 { + copy(yyv4749, yyv24749) } - } else if yyl4775 != len(yyv4775) { - yyv4775 = yyv4775[:yyl4775] - yyc4775 = true + } else if yyl4749 != len(yyv4749) { + yyv4749 = yyv4749[:yyl4749] + yyc4749 = true } - yyj4775 := 0 - for ; yyj4775 < yyrr4775; yyj4775++ { - yyh4775.ElemContainerState(yyj4775) + yyj4749 := 0 + for ; yyj4749 < yyrr4749; yyj4749++ { + yyh4749.ElemContainerState(yyj4749) if r.TryDecodeAsNil() { - yyv4775[yyj4775] = EndpointSubset{} + yyv4749[yyj4749] = EndpointSubset{} } else { - yyv4776 := &yyv4775[yyj4775] - yyv4776.CodecDecodeSelf(d) + yyv4750 := &yyv4749[yyj4749] + yyv4750.CodecDecodeSelf(d) } } - if yyrt4775 { - for ; yyj4775 < yyl4775; yyj4775++ { - yyv4775 = append(yyv4775, EndpointSubset{}) - yyh4775.ElemContainerState(yyj4775) + if yyrt4749 { + for ; yyj4749 < yyl4749; yyj4749++ { + yyv4749 = append(yyv4749, EndpointSubset{}) + yyh4749.ElemContainerState(yyj4749) if r.TryDecodeAsNil() { - yyv4775[yyj4775] = EndpointSubset{} + yyv4749[yyj4749] = EndpointSubset{} } else { - yyv4777 := &yyv4775[yyj4775] - yyv4777.CodecDecodeSelf(d) + yyv4751 := &yyv4749[yyj4749] + yyv4751.CodecDecodeSelf(d) } } } } else { - yyj4775 := 0 - for ; !r.CheckBreak(); yyj4775++ { + yyj4749 := 0 + for ; !r.CheckBreak(); yyj4749++ { - if yyj4775 >= len(yyv4775) { - yyv4775 = append(yyv4775, EndpointSubset{}) // var yyz4775 EndpointSubset - yyc4775 = true + if yyj4749 >= len(yyv4749) { + yyv4749 = append(yyv4749, EndpointSubset{}) // var yyz4749 EndpointSubset + yyc4749 = true } - yyh4775.ElemContainerState(yyj4775) - if yyj4775 < len(yyv4775) { + yyh4749.ElemContainerState(yyj4749) + if yyj4749 < len(yyv4749) { if r.TryDecodeAsNil() { - yyv4775[yyj4775] = EndpointSubset{} + yyv4749[yyj4749] = EndpointSubset{} } else { - yyv4778 := &yyv4775[yyj4775] - yyv4778.CodecDecodeSelf(d) + yyv4752 := &yyv4749[yyj4749] + yyv4752.CodecDecodeSelf(d) } } else { @@ -60760,17 +60461,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj4775 < len(yyv4775) { - yyv4775 = yyv4775[:yyj4775] - yyc4775 = true - } else if yyj4775 == 0 && yyv4775 == nil { - yyv4775 = []EndpointSubset{} - yyc4775 = true + if yyj4749 < len(yyv4749) { + yyv4749 = yyv4749[:yyj4749] + yyc4749 = true + } else if yyj4749 == 0 && yyv4749 == nil { + yyv4749 = []EndpointSubset{} + yyc4749 = true } } - yyh4775.End() - if yyc4775 { - *v = yyv4775 + yyh4749.End() + if yyc4749 { + *v = yyv4749 } } @@ -60779,10 +60480,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4779 := range v { + for _, yyv4753 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4780 := &yyv4779 - yy4780.CodecEncodeSelf(e) + yy4754 := &yyv4753 + yy4754.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60792,83 +60493,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4781 := *v - yyh4781, yyl4781 := z.DecSliceHelperStart() - var yyc4781 bool - if yyl4781 == 0 { - if yyv4781 == nil { - yyv4781 = []EndpointAddress{} - yyc4781 = true - } else if len(yyv4781) != 0 { - yyv4781 = yyv4781[:0] - yyc4781 = true + yyv4755 := *v + yyh4755, yyl4755 := z.DecSliceHelperStart() + var yyc4755 bool + if yyl4755 == 0 { + if yyv4755 == nil { + yyv4755 = []EndpointAddress{} + yyc4755 = true + } else if len(yyv4755) != 0 { + yyv4755 = yyv4755[:0] + yyc4755 = true } - } else if yyl4781 > 0 { - var yyrr4781, yyrl4781 int - var yyrt4781 bool - if yyl4781 > cap(yyv4781) { + } else if yyl4755 > 0 { + var yyrr4755, yyrl4755 int + var yyrt4755 bool + if yyl4755 > cap(yyv4755) { - yyrg4781 := len(yyv4781) > 0 - yyv24781 := yyv4781 - yyrl4781, yyrt4781 = z.DecInferLen(yyl4781, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4781 { - if yyrl4781 <= cap(yyv4781) { - yyv4781 = yyv4781[:yyrl4781] + yyrg4755 := len(yyv4755) > 0 + yyv24755 := yyv4755 + yyrl4755, yyrt4755 = z.DecInferLen(yyl4755, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4755 { + if yyrl4755 <= cap(yyv4755) { + yyv4755 = yyv4755[:yyrl4755] } else { - yyv4781 = make([]EndpointAddress, yyrl4781) + yyv4755 = make([]EndpointAddress, yyrl4755) } } else { - yyv4781 = make([]EndpointAddress, yyrl4781) + yyv4755 = make([]EndpointAddress, yyrl4755) } - yyc4781 = true - yyrr4781 = len(yyv4781) - if yyrg4781 { - copy(yyv4781, yyv24781) + yyc4755 = true + yyrr4755 = len(yyv4755) + if yyrg4755 { + copy(yyv4755, yyv24755) } - } else if yyl4781 != len(yyv4781) { - yyv4781 = yyv4781[:yyl4781] - yyc4781 = true + } else if yyl4755 != len(yyv4755) { + yyv4755 = yyv4755[:yyl4755] + yyc4755 = true } - yyj4781 := 0 - for ; yyj4781 < yyrr4781; yyj4781++ { - yyh4781.ElemContainerState(yyj4781) + yyj4755 := 0 + for ; yyj4755 < yyrr4755; yyj4755++ { + yyh4755.ElemContainerState(yyj4755) if r.TryDecodeAsNil() { - yyv4781[yyj4781] = EndpointAddress{} + yyv4755[yyj4755] = EndpointAddress{} } else { - yyv4782 := &yyv4781[yyj4781] - yyv4782.CodecDecodeSelf(d) + yyv4756 := &yyv4755[yyj4755] + yyv4756.CodecDecodeSelf(d) } } - if yyrt4781 { - for ; yyj4781 < yyl4781; yyj4781++ { - yyv4781 = append(yyv4781, EndpointAddress{}) - yyh4781.ElemContainerState(yyj4781) + if yyrt4755 { + for ; yyj4755 < yyl4755; yyj4755++ { + yyv4755 = append(yyv4755, EndpointAddress{}) + yyh4755.ElemContainerState(yyj4755) if r.TryDecodeAsNil() { - yyv4781[yyj4781] = EndpointAddress{} + yyv4755[yyj4755] = EndpointAddress{} } else { - yyv4783 := &yyv4781[yyj4781] - yyv4783.CodecDecodeSelf(d) + yyv4757 := &yyv4755[yyj4755] + yyv4757.CodecDecodeSelf(d) } } } } else { - yyj4781 := 0 - for ; !r.CheckBreak(); yyj4781++ { + yyj4755 := 0 + for ; !r.CheckBreak(); yyj4755++ { - if yyj4781 >= len(yyv4781) { - yyv4781 = append(yyv4781, EndpointAddress{}) // var yyz4781 EndpointAddress - yyc4781 = true + if yyj4755 >= len(yyv4755) { + yyv4755 = append(yyv4755, EndpointAddress{}) // var yyz4755 EndpointAddress + yyc4755 = true } - yyh4781.ElemContainerState(yyj4781) - if yyj4781 < len(yyv4781) { + yyh4755.ElemContainerState(yyj4755) + if yyj4755 < len(yyv4755) { if r.TryDecodeAsNil() { - yyv4781[yyj4781] = EndpointAddress{} + yyv4755[yyj4755] = EndpointAddress{} } else { - yyv4784 := &yyv4781[yyj4781] - yyv4784.CodecDecodeSelf(d) + yyv4758 := &yyv4755[yyj4755] + yyv4758.CodecDecodeSelf(d) } } else { @@ -60876,17 +60577,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj4781 < len(yyv4781) { - yyv4781 = yyv4781[:yyj4781] - yyc4781 = true - } else if yyj4781 == 0 && yyv4781 == nil { - yyv4781 = []EndpointAddress{} - yyc4781 = true + if yyj4755 < len(yyv4755) { + yyv4755 = yyv4755[:yyj4755] + yyc4755 = true + } else if yyj4755 == 0 && yyv4755 == nil { + yyv4755 = []EndpointAddress{} + yyc4755 = true } } - yyh4781.End() - if yyc4781 { - *v = yyv4781 + yyh4755.End() + if yyc4755 { + *v = yyv4755 } } @@ -60895,10 +60596,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4785 := range v { + for _, yyv4759 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4786 := &yyv4785 - yy4786.CodecEncodeSelf(e) + yy4760 := &yyv4759 + yy4760.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60908,83 +60609,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4787 := *v - yyh4787, yyl4787 := z.DecSliceHelperStart() - var yyc4787 bool - if yyl4787 == 0 { - if yyv4787 == nil { - yyv4787 = []EndpointPort{} - yyc4787 = true - } else if len(yyv4787) != 0 { - yyv4787 = yyv4787[:0] - yyc4787 = true + yyv4761 := *v + yyh4761, yyl4761 := z.DecSliceHelperStart() + var yyc4761 bool + if yyl4761 == 0 { + if yyv4761 == nil { + yyv4761 = []EndpointPort{} + yyc4761 = true + } else if len(yyv4761) != 0 { + yyv4761 = yyv4761[:0] + yyc4761 = true } - } else if yyl4787 > 0 { - var yyrr4787, yyrl4787 int - var yyrt4787 bool - if yyl4787 > cap(yyv4787) { + } else if yyl4761 > 0 { + var yyrr4761, yyrl4761 int + var yyrt4761 bool + if yyl4761 > cap(yyv4761) { - yyrg4787 := len(yyv4787) > 0 - yyv24787 := yyv4787 - yyrl4787, yyrt4787 = z.DecInferLen(yyl4787, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4787 { - if yyrl4787 <= cap(yyv4787) { - yyv4787 = yyv4787[:yyrl4787] + yyrg4761 := len(yyv4761) > 0 + yyv24761 := yyv4761 + yyrl4761, yyrt4761 = z.DecInferLen(yyl4761, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4761 { + if yyrl4761 <= cap(yyv4761) { + yyv4761 = yyv4761[:yyrl4761] } else { - yyv4787 = make([]EndpointPort, yyrl4787) + yyv4761 = make([]EndpointPort, yyrl4761) } } else { - yyv4787 = make([]EndpointPort, yyrl4787) + yyv4761 = make([]EndpointPort, yyrl4761) } - yyc4787 = true - yyrr4787 = len(yyv4787) - if yyrg4787 { - copy(yyv4787, yyv24787) + yyc4761 = true + yyrr4761 = len(yyv4761) + if yyrg4761 { + copy(yyv4761, yyv24761) } - } else if yyl4787 != len(yyv4787) { - yyv4787 = yyv4787[:yyl4787] - yyc4787 = true + } else if yyl4761 != len(yyv4761) { + yyv4761 = yyv4761[:yyl4761] + yyc4761 = true } - yyj4787 := 0 - for ; yyj4787 < yyrr4787; yyj4787++ { - yyh4787.ElemContainerState(yyj4787) + yyj4761 := 0 + for ; yyj4761 < yyrr4761; yyj4761++ { + yyh4761.ElemContainerState(yyj4761) if r.TryDecodeAsNil() { - yyv4787[yyj4787] = EndpointPort{} + yyv4761[yyj4761] = EndpointPort{} } else { - yyv4788 := &yyv4787[yyj4787] - yyv4788.CodecDecodeSelf(d) + yyv4762 := &yyv4761[yyj4761] + yyv4762.CodecDecodeSelf(d) } } - if yyrt4787 { - for ; yyj4787 < yyl4787; yyj4787++ { - yyv4787 = append(yyv4787, EndpointPort{}) - yyh4787.ElemContainerState(yyj4787) + if yyrt4761 { + for ; yyj4761 < yyl4761; yyj4761++ { + yyv4761 = append(yyv4761, EndpointPort{}) + yyh4761.ElemContainerState(yyj4761) if r.TryDecodeAsNil() { - yyv4787[yyj4787] = EndpointPort{} + yyv4761[yyj4761] = EndpointPort{} } else { - yyv4789 := &yyv4787[yyj4787] - yyv4789.CodecDecodeSelf(d) + yyv4763 := &yyv4761[yyj4761] + yyv4763.CodecDecodeSelf(d) } } } } else { - yyj4787 := 0 - for ; !r.CheckBreak(); yyj4787++ { + yyj4761 := 0 + for ; !r.CheckBreak(); yyj4761++ { - if yyj4787 >= len(yyv4787) { - yyv4787 = append(yyv4787, EndpointPort{}) // var yyz4787 EndpointPort - yyc4787 = true + if yyj4761 >= len(yyv4761) { + yyv4761 = append(yyv4761, EndpointPort{}) // var yyz4761 EndpointPort + yyc4761 = true } - yyh4787.ElemContainerState(yyj4787) - if yyj4787 < len(yyv4787) { + yyh4761.ElemContainerState(yyj4761) + if yyj4761 < len(yyv4761) { if r.TryDecodeAsNil() { - yyv4787[yyj4787] = EndpointPort{} + yyv4761[yyj4761] = EndpointPort{} } else { - yyv4790 := &yyv4787[yyj4787] - yyv4790.CodecDecodeSelf(d) + yyv4764 := &yyv4761[yyj4761] + yyv4764.CodecDecodeSelf(d) } } else { @@ -60992,17 +60693,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj4787 < len(yyv4787) { - yyv4787 = yyv4787[:yyj4787] - yyc4787 = true - } else if yyj4787 == 0 && yyv4787 == nil { - yyv4787 = []EndpointPort{} - yyc4787 = true + if yyj4761 < len(yyv4761) { + yyv4761 = yyv4761[:yyj4761] + yyc4761 = true + } else if yyj4761 == 0 && yyv4761 == nil { + yyv4761 = []EndpointPort{} + yyc4761 = true } } - yyh4787.End() - if yyc4787 { - *v = yyv4787 + yyh4761.End() + if yyc4761 { + *v = yyv4761 } } @@ -61011,10 +60712,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4791 := range v { + for _, yyv4765 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4792 := &yyv4791 - yy4792.CodecEncodeSelf(e) + yy4766 := &yyv4765 + yy4766.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61024,83 +60725,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4793 := *v - yyh4793, yyl4793 := z.DecSliceHelperStart() - var yyc4793 bool - if yyl4793 == 0 { - if yyv4793 == nil { - yyv4793 = []Endpoints{} - yyc4793 = true - } else if len(yyv4793) != 0 { - yyv4793 = yyv4793[:0] - yyc4793 = true + yyv4767 := *v + yyh4767, yyl4767 := z.DecSliceHelperStart() + var yyc4767 bool + if yyl4767 == 0 { + if yyv4767 == nil { + yyv4767 = []Endpoints{} + yyc4767 = true + } else if len(yyv4767) != 0 { + yyv4767 = yyv4767[:0] + yyc4767 = true } - } else if yyl4793 > 0 { - var yyrr4793, yyrl4793 int - var yyrt4793 bool - if yyl4793 > cap(yyv4793) { + } else if yyl4767 > 0 { + var yyrr4767, yyrl4767 int + var yyrt4767 bool + if yyl4767 > cap(yyv4767) { - yyrg4793 := len(yyv4793) > 0 - yyv24793 := yyv4793 - yyrl4793, yyrt4793 = z.DecInferLen(yyl4793, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4793 { - if yyrl4793 <= cap(yyv4793) { - yyv4793 = yyv4793[:yyrl4793] + yyrg4767 := len(yyv4767) > 0 + yyv24767 := yyv4767 + yyrl4767, yyrt4767 = z.DecInferLen(yyl4767, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4767 { + if yyrl4767 <= cap(yyv4767) { + yyv4767 = yyv4767[:yyrl4767] } else { - yyv4793 = make([]Endpoints, yyrl4793) + yyv4767 = make([]Endpoints, yyrl4767) } } else { - yyv4793 = make([]Endpoints, yyrl4793) + yyv4767 = make([]Endpoints, yyrl4767) } - yyc4793 = true - yyrr4793 = len(yyv4793) - if yyrg4793 { - copy(yyv4793, yyv24793) + yyc4767 = true + yyrr4767 = len(yyv4767) + if yyrg4767 { + copy(yyv4767, yyv24767) } - } else if yyl4793 != len(yyv4793) { - yyv4793 = yyv4793[:yyl4793] - yyc4793 = true + } else if yyl4767 != len(yyv4767) { + yyv4767 = yyv4767[:yyl4767] + yyc4767 = true } - yyj4793 := 0 - for ; yyj4793 < yyrr4793; yyj4793++ { - yyh4793.ElemContainerState(yyj4793) + yyj4767 := 0 + for ; yyj4767 < yyrr4767; yyj4767++ { + yyh4767.ElemContainerState(yyj4767) if r.TryDecodeAsNil() { - yyv4793[yyj4793] = Endpoints{} + yyv4767[yyj4767] = Endpoints{} } else { - yyv4794 := &yyv4793[yyj4793] - yyv4794.CodecDecodeSelf(d) + yyv4768 := &yyv4767[yyj4767] + yyv4768.CodecDecodeSelf(d) } } - if yyrt4793 { - for ; yyj4793 < yyl4793; yyj4793++ { - yyv4793 = append(yyv4793, Endpoints{}) - yyh4793.ElemContainerState(yyj4793) + if yyrt4767 { + for ; yyj4767 < yyl4767; yyj4767++ { + yyv4767 = append(yyv4767, Endpoints{}) + yyh4767.ElemContainerState(yyj4767) if r.TryDecodeAsNil() { - yyv4793[yyj4793] = Endpoints{} + yyv4767[yyj4767] = Endpoints{} } else { - yyv4795 := &yyv4793[yyj4793] - yyv4795.CodecDecodeSelf(d) + yyv4769 := &yyv4767[yyj4767] + yyv4769.CodecDecodeSelf(d) } } } } else { - yyj4793 := 0 - for ; !r.CheckBreak(); yyj4793++ { + yyj4767 := 0 + for ; !r.CheckBreak(); yyj4767++ { - if yyj4793 >= len(yyv4793) { - yyv4793 = append(yyv4793, Endpoints{}) // var yyz4793 Endpoints - yyc4793 = true + if yyj4767 >= len(yyv4767) { + yyv4767 = append(yyv4767, Endpoints{}) // var yyz4767 Endpoints + yyc4767 = true } - yyh4793.ElemContainerState(yyj4793) - if yyj4793 < len(yyv4793) { + yyh4767.ElemContainerState(yyj4767) + if yyj4767 < len(yyv4767) { if r.TryDecodeAsNil() { - yyv4793[yyj4793] = Endpoints{} + yyv4767[yyj4767] = Endpoints{} } else { - yyv4796 := &yyv4793[yyj4793] - yyv4796.CodecDecodeSelf(d) + yyv4770 := &yyv4767[yyj4767] + yyv4770.CodecDecodeSelf(d) } } else { @@ -61108,17 +60809,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj4793 < len(yyv4793) { - yyv4793 = yyv4793[:yyj4793] - yyc4793 = true - } else if yyj4793 == 0 && yyv4793 == nil { - yyv4793 = []Endpoints{} - yyc4793 = true + if yyj4767 < len(yyv4767) { + yyv4767 = yyv4767[:yyj4767] + yyc4767 = true + } else if yyj4767 == 0 && yyv4767 == nil { + yyv4767 = []Endpoints{} + yyc4767 = true } } - yyh4793.End() - if yyc4793 { - *v = yyv4793 + yyh4767.End() + if yyc4767 { + *v = yyv4767 } } @@ -61127,10 +60828,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4797 := range v { + for _, yyv4771 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4798 := &yyv4797 - yy4798.CodecEncodeSelf(e) + yy4772 := &yyv4771 + yy4772.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61140,83 +60841,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4799 := *v - yyh4799, yyl4799 := z.DecSliceHelperStart() - var yyc4799 bool - if yyl4799 == 0 { - if yyv4799 == nil { - yyv4799 = []NodeCondition{} - yyc4799 = true - } else if len(yyv4799) != 0 { - yyv4799 = yyv4799[:0] - yyc4799 = true + yyv4773 := *v + yyh4773, yyl4773 := z.DecSliceHelperStart() + var yyc4773 bool + if yyl4773 == 0 { + if yyv4773 == nil { + yyv4773 = []NodeCondition{} + yyc4773 = true + } else if len(yyv4773) != 0 { + yyv4773 = yyv4773[:0] + yyc4773 = true } - } else if yyl4799 > 0 { - var yyrr4799, yyrl4799 int - var yyrt4799 bool - if yyl4799 > cap(yyv4799) { + } else if yyl4773 > 0 { + var yyrr4773, yyrl4773 int + var yyrt4773 bool + if yyl4773 > cap(yyv4773) { - yyrg4799 := len(yyv4799) > 0 - yyv24799 := yyv4799 - yyrl4799, yyrt4799 = z.DecInferLen(yyl4799, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4799 { - if yyrl4799 <= cap(yyv4799) { - yyv4799 = yyv4799[:yyrl4799] + yyrg4773 := len(yyv4773) > 0 + yyv24773 := yyv4773 + yyrl4773, yyrt4773 = z.DecInferLen(yyl4773, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4773 { + if yyrl4773 <= cap(yyv4773) { + yyv4773 = yyv4773[:yyrl4773] } else { - yyv4799 = make([]NodeCondition, yyrl4799) + yyv4773 = make([]NodeCondition, yyrl4773) } } else { - yyv4799 = make([]NodeCondition, yyrl4799) + yyv4773 = make([]NodeCondition, yyrl4773) } - yyc4799 = true - yyrr4799 = len(yyv4799) - if yyrg4799 { - copy(yyv4799, yyv24799) + yyc4773 = true + yyrr4773 = len(yyv4773) + if yyrg4773 { + copy(yyv4773, yyv24773) } - } else if yyl4799 != len(yyv4799) { - yyv4799 = yyv4799[:yyl4799] - yyc4799 = true + } else if yyl4773 != len(yyv4773) { + yyv4773 = yyv4773[:yyl4773] + yyc4773 = true } - yyj4799 := 0 - for ; yyj4799 < yyrr4799; yyj4799++ { - yyh4799.ElemContainerState(yyj4799) + yyj4773 := 0 + for ; yyj4773 < yyrr4773; yyj4773++ { + yyh4773.ElemContainerState(yyj4773) if r.TryDecodeAsNil() { - yyv4799[yyj4799] = NodeCondition{} + yyv4773[yyj4773] = NodeCondition{} } else { - yyv4800 := &yyv4799[yyj4799] - yyv4800.CodecDecodeSelf(d) + yyv4774 := &yyv4773[yyj4773] + yyv4774.CodecDecodeSelf(d) } } - if yyrt4799 { - for ; yyj4799 < yyl4799; yyj4799++ { - yyv4799 = append(yyv4799, NodeCondition{}) - yyh4799.ElemContainerState(yyj4799) + if yyrt4773 { + for ; yyj4773 < yyl4773; yyj4773++ { + yyv4773 = append(yyv4773, NodeCondition{}) + yyh4773.ElemContainerState(yyj4773) if r.TryDecodeAsNil() { - yyv4799[yyj4799] = NodeCondition{} + yyv4773[yyj4773] = NodeCondition{} } else { - yyv4801 := &yyv4799[yyj4799] - yyv4801.CodecDecodeSelf(d) + yyv4775 := &yyv4773[yyj4773] + yyv4775.CodecDecodeSelf(d) } } } } else { - yyj4799 := 0 - for ; !r.CheckBreak(); yyj4799++ { + yyj4773 := 0 + for ; !r.CheckBreak(); yyj4773++ { - if yyj4799 >= len(yyv4799) { - yyv4799 = append(yyv4799, NodeCondition{}) // var yyz4799 NodeCondition - yyc4799 = true + if yyj4773 >= len(yyv4773) { + yyv4773 = append(yyv4773, NodeCondition{}) // var yyz4773 NodeCondition + yyc4773 = true } - yyh4799.ElemContainerState(yyj4799) - if yyj4799 < len(yyv4799) { + yyh4773.ElemContainerState(yyj4773) + if yyj4773 < len(yyv4773) { if r.TryDecodeAsNil() { - yyv4799[yyj4799] = NodeCondition{} + yyv4773[yyj4773] = NodeCondition{} } else { - yyv4802 := &yyv4799[yyj4799] - yyv4802.CodecDecodeSelf(d) + yyv4776 := &yyv4773[yyj4773] + yyv4776.CodecDecodeSelf(d) } } else { @@ -61224,17 +60925,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj4799 < len(yyv4799) { - yyv4799 = yyv4799[:yyj4799] - yyc4799 = true - } else if yyj4799 == 0 && yyv4799 == nil { - yyv4799 = []NodeCondition{} - yyc4799 = true + if yyj4773 < len(yyv4773) { + yyv4773 = yyv4773[:yyj4773] + yyc4773 = true + } else if yyj4773 == 0 && yyv4773 == nil { + yyv4773 = []NodeCondition{} + yyc4773 = true } } - yyh4799.End() - if yyc4799 { - *v = yyv4799 + yyh4773.End() + if yyc4773 { + *v = yyv4773 } } @@ -61243,10 +60944,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4803 := range v { + for _, yyv4777 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4804 := &yyv4803 - yy4804.CodecEncodeSelf(e) + yy4778 := &yyv4777 + yy4778.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61256,83 +60957,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4805 := *v - yyh4805, yyl4805 := z.DecSliceHelperStart() - var yyc4805 bool - if yyl4805 == 0 { - if yyv4805 == nil { - yyv4805 = []NodeAddress{} - yyc4805 = true - } else if len(yyv4805) != 0 { - yyv4805 = yyv4805[:0] - yyc4805 = true + yyv4779 := *v + yyh4779, yyl4779 := z.DecSliceHelperStart() + var yyc4779 bool + if yyl4779 == 0 { + if yyv4779 == nil { + yyv4779 = []NodeAddress{} + yyc4779 = true + } else if len(yyv4779) != 0 { + yyv4779 = yyv4779[:0] + yyc4779 = true } - } else if yyl4805 > 0 { - var yyrr4805, yyrl4805 int - var yyrt4805 bool - if yyl4805 > cap(yyv4805) { + } else if yyl4779 > 0 { + var yyrr4779, yyrl4779 int + var yyrt4779 bool + if yyl4779 > cap(yyv4779) { - yyrg4805 := len(yyv4805) > 0 - yyv24805 := yyv4805 - yyrl4805, yyrt4805 = z.DecInferLen(yyl4805, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4805 { - if yyrl4805 <= cap(yyv4805) { - yyv4805 = yyv4805[:yyrl4805] + yyrg4779 := len(yyv4779) > 0 + yyv24779 := yyv4779 + yyrl4779, yyrt4779 = z.DecInferLen(yyl4779, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4779 { + if yyrl4779 <= cap(yyv4779) { + yyv4779 = yyv4779[:yyrl4779] } else { - yyv4805 = make([]NodeAddress, yyrl4805) + yyv4779 = make([]NodeAddress, yyrl4779) } } else { - yyv4805 = make([]NodeAddress, yyrl4805) + yyv4779 = make([]NodeAddress, yyrl4779) } - yyc4805 = true - yyrr4805 = len(yyv4805) - if yyrg4805 { - copy(yyv4805, yyv24805) + yyc4779 = true + yyrr4779 = len(yyv4779) + if yyrg4779 { + copy(yyv4779, yyv24779) } - } else if yyl4805 != len(yyv4805) { - yyv4805 = yyv4805[:yyl4805] - yyc4805 = true + } else if yyl4779 != len(yyv4779) { + yyv4779 = yyv4779[:yyl4779] + yyc4779 = true } - yyj4805 := 0 - for ; yyj4805 < yyrr4805; yyj4805++ { - yyh4805.ElemContainerState(yyj4805) + yyj4779 := 0 + for ; yyj4779 < yyrr4779; yyj4779++ { + yyh4779.ElemContainerState(yyj4779) if r.TryDecodeAsNil() { - yyv4805[yyj4805] = NodeAddress{} + yyv4779[yyj4779] = NodeAddress{} } else { - yyv4806 := &yyv4805[yyj4805] - yyv4806.CodecDecodeSelf(d) + yyv4780 := &yyv4779[yyj4779] + yyv4780.CodecDecodeSelf(d) } } - if yyrt4805 { - for ; yyj4805 < yyl4805; yyj4805++ { - yyv4805 = append(yyv4805, NodeAddress{}) - yyh4805.ElemContainerState(yyj4805) + if yyrt4779 { + for ; yyj4779 < yyl4779; yyj4779++ { + yyv4779 = append(yyv4779, NodeAddress{}) + yyh4779.ElemContainerState(yyj4779) if r.TryDecodeAsNil() { - yyv4805[yyj4805] = NodeAddress{} + yyv4779[yyj4779] = NodeAddress{} } else { - yyv4807 := &yyv4805[yyj4805] - yyv4807.CodecDecodeSelf(d) + yyv4781 := &yyv4779[yyj4779] + yyv4781.CodecDecodeSelf(d) } } } } else { - yyj4805 := 0 - for ; !r.CheckBreak(); yyj4805++ { + yyj4779 := 0 + for ; !r.CheckBreak(); yyj4779++ { - if yyj4805 >= len(yyv4805) { - yyv4805 = append(yyv4805, NodeAddress{}) // var yyz4805 NodeAddress - yyc4805 = true + if yyj4779 >= len(yyv4779) { + yyv4779 = append(yyv4779, NodeAddress{}) // var yyz4779 NodeAddress + yyc4779 = true } - yyh4805.ElemContainerState(yyj4805) - if yyj4805 < len(yyv4805) { + yyh4779.ElemContainerState(yyj4779) + if yyj4779 < len(yyv4779) { if r.TryDecodeAsNil() { - yyv4805[yyj4805] = NodeAddress{} + yyv4779[yyj4779] = NodeAddress{} } else { - yyv4808 := &yyv4805[yyj4805] - yyv4808.CodecDecodeSelf(d) + yyv4782 := &yyv4779[yyj4779] + yyv4782.CodecDecodeSelf(d) } } else { @@ -61340,17 +61041,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj4805 < len(yyv4805) { - yyv4805 = yyv4805[:yyj4805] - yyc4805 = true - } else if yyj4805 == 0 && yyv4805 == nil { - yyv4805 = []NodeAddress{} - yyc4805 = true + if yyj4779 < len(yyv4779) { + yyv4779 = yyv4779[:yyj4779] + yyc4779 = true + } else if yyj4779 == 0 && yyv4779 == nil { + yyv4779 = []NodeAddress{} + yyc4779 = true } } - yyh4805.End() - if yyc4805 { - *v = yyv4805 + yyh4779.End() + if yyc4779 { + *v = yyv4779 } } @@ -61359,10 +61060,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4809 := range v { + for _, yyv4783 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4810 := &yyv4809 - yy4810.CodecEncodeSelf(e) + yy4784 := &yyv4783 + yy4784.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61372,83 +61073,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4811 := *v - yyh4811, yyl4811 := z.DecSliceHelperStart() - var yyc4811 bool - if yyl4811 == 0 { - if yyv4811 == nil { - yyv4811 = []ContainerImage{} - yyc4811 = true - } else if len(yyv4811) != 0 { - yyv4811 = yyv4811[:0] - yyc4811 = true + yyv4785 := *v + yyh4785, yyl4785 := z.DecSliceHelperStart() + var yyc4785 bool + if yyl4785 == 0 { + if yyv4785 == nil { + yyv4785 = []ContainerImage{} + yyc4785 = true + } else if len(yyv4785) != 0 { + yyv4785 = yyv4785[:0] + yyc4785 = true } - } else if yyl4811 > 0 { - var yyrr4811, yyrl4811 int - var yyrt4811 bool - if yyl4811 > cap(yyv4811) { + } else if yyl4785 > 0 { + var yyrr4785, yyrl4785 int + var yyrt4785 bool + if yyl4785 > cap(yyv4785) { - yyrg4811 := len(yyv4811) > 0 - yyv24811 := yyv4811 - yyrl4811, yyrt4811 = z.DecInferLen(yyl4811, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4811 { - if yyrl4811 <= cap(yyv4811) { - yyv4811 = yyv4811[:yyrl4811] + yyrg4785 := len(yyv4785) > 0 + yyv24785 := yyv4785 + yyrl4785, yyrt4785 = z.DecInferLen(yyl4785, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4785 { + if yyrl4785 <= cap(yyv4785) { + yyv4785 = yyv4785[:yyrl4785] } else { - yyv4811 = make([]ContainerImage, yyrl4811) + yyv4785 = make([]ContainerImage, yyrl4785) } } else { - yyv4811 = make([]ContainerImage, yyrl4811) + yyv4785 = make([]ContainerImage, yyrl4785) } - yyc4811 = true - yyrr4811 = len(yyv4811) - if yyrg4811 { - copy(yyv4811, yyv24811) + yyc4785 = true + yyrr4785 = len(yyv4785) + if yyrg4785 { + copy(yyv4785, yyv24785) } - } else if yyl4811 != len(yyv4811) { - yyv4811 = yyv4811[:yyl4811] - yyc4811 = true + } else if yyl4785 != len(yyv4785) { + yyv4785 = yyv4785[:yyl4785] + yyc4785 = true } - yyj4811 := 0 - for ; yyj4811 < yyrr4811; yyj4811++ { - yyh4811.ElemContainerState(yyj4811) + yyj4785 := 0 + for ; yyj4785 < yyrr4785; yyj4785++ { + yyh4785.ElemContainerState(yyj4785) if r.TryDecodeAsNil() { - yyv4811[yyj4811] = ContainerImage{} + yyv4785[yyj4785] = ContainerImage{} } else { - yyv4812 := &yyv4811[yyj4811] - yyv4812.CodecDecodeSelf(d) + yyv4786 := &yyv4785[yyj4785] + yyv4786.CodecDecodeSelf(d) } } - if yyrt4811 { - for ; yyj4811 < yyl4811; yyj4811++ { - yyv4811 = append(yyv4811, ContainerImage{}) - yyh4811.ElemContainerState(yyj4811) + if yyrt4785 { + for ; yyj4785 < yyl4785; yyj4785++ { + yyv4785 = append(yyv4785, ContainerImage{}) + yyh4785.ElemContainerState(yyj4785) if r.TryDecodeAsNil() { - yyv4811[yyj4811] = ContainerImage{} + yyv4785[yyj4785] = ContainerImage{} } else { - yyv4813 := &yyv4811[yyj4811] - yyv4813.CodecDecodeSelf(d) + yyv4787 := &yyv4785[yyj4785] + yyv4787.CodecDecodeSelf(d) } } } } else { - yyj4811 := 0 - for ; !r.CheckBreak(); yyj4811++ { + yyj4785 := 0 + for ; !r.CheckBreak(); yyj4785++ { - if yyj4811 >= len(yyv4811) { - yyv4811 = append(yyv4811, ContainerImage{}) // var yyz4811 ContainerImage - yyc4811 = true + if yyj4785 >= len(yyv4785) { + yyv4785 = append(yyv4785, ContainerImage{}) // var yyz4785 ContainerImage + yyc4785 = true } - yyh4811.ElemContainerState(yyj4811) - if yyj4811 < len(yyv4811) { + yyh4785.ElemContainerState(yyj4785) + if yyj4785 < len(yyv4785) { if r.TryDecodeAsNil() { - yyv4811[yyj4811] = ContainerImage{} + yyv4785[yyj4785] = ContainerImage{} } else { - yyv4814 := &yyv4811[yyj4811] - yyv4814.CodecDecodeSelf(d) + yyv4788 := &yyv4785[yyj4785] + yyv4788.CodecDecodeSelf(d) } } else { @@ -61456,17 +61157,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj4811 < len(yyv4811) { - yyv4811 = yyv4811[:yyj4811] - yyc4811 = true - } else if yyj4811 == 0 && yyv4811 == nil { - yyv4811 = []ContainerImage{} - yyc4811 = true + if yyj4785 < len(yyv4785) { + yyv4785 = yyv4785[:yyj4785] + yyc4785 = true + } else if yyj4785 == 0 && yyv4785 == nil { + yyv4785 = []ContainerImage{} + yyc4785 = true } } - yyh4811.End() - if yyc4811 { - *v = yyv4811 + yyh4785.End() + if yyc4785 { + *v = yyv4785 } } @@ -61475,9 +61176,9 @@ func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4815 := range v { + for _, yyv4789 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4815.CodecEncodeSelf(e) + yyv4789.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61487,75 +61188,75 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4816 := *v - yyh4816, yyl4816 := z.DecSliceHelperStart() - var yyc4816 bool - if yyl4816 == 0 { - if yyv4816 == nil { - yyv4816 = []UniqueVolumeName{} - yyc4816 = true - } else if len(yyv4816) != 0 { - yyv4816 = yyv4816[:0] - yyc4816 = true + yyv4790 := *v + yyh4790, yyl4790 := z.DecSliceHelperStart() + var yyc4790 bool + if yyl4790 == 0 { + if yyv4790 == nil { + yyv4790 = []UniqueVolumeName{} + yyc4790 = true + } else if len(yyv4790) != 0 { + yyv4790 = yyv4790[:0] + yyc4790 = true } - } else if yyl4816 > 0 { - var yyrr4816, yyrl4816 int - var yyrt4816 bool - if yyl4816 > cap(yyv4816) { + } else if yyl4790 > 0 { + var yyrr4790, yyrl4790 int + var yyrt4790 bool + if yyl4790 > cap(yyv4790) { - yyrl4816, yyrt4816 = z.DecInferLen(yyl4816, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4816 { - if yyrl4816 <= cap(yyv4816) { - yyv4816 = yyv4816[:yyrl4816] + yyrl4790, yyrt4790 = z.DecInferLen(yyl4790, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4790 { + if yyrl4790 <= cap(yyv4790) { + yyv4790 = yyv4790[:yyrl4790] } else { - yyv4816 = make([]UniqueVolumeName, yyrl4816) + yyv4790 = make([]UniqueVolumeName, yyrl4790) } } else { - yyv4816 = make([]UniqueVolumeName, yyrl4816) + yyv4790 = make([]UniqueVolumeName, yyrl4790) } - yyc4816 = true - yyrr4816 = len(yyv4816) - } else if yyl4816 != len(yyv4816) { - yyv4816 = yyv4816[:yyl4816] - yyc4816 = true + yyc4790 = true + yyrr4790 = len(yyv4790) + } else if yyl4790 != len(yyv4790) { + yyv4790 = yyv4790[:yyl4790] + yyc4790 = true } - yyj4816 := 0 - for ; yyj4816 < yyrr4816; yyj4816++ { - yyh4816.ElemContainerState(yyj4816) + yyj4790 := 0 + for ; yyj4790 < yyrr4790; yyj4790++ { + yyh4790.ElemContainerState(yyj4790) if r.TryDecodeAsNil() { - yyv4816[yyj4816] = "" + yyv4790[yyj4790] = "" } else { - yyv4816[yyj4816] = UniqueVolumeName(r.DecodeString()) + yyv4790[yyj4790] = UniqueVolumeName(r.DecodeString()) } } - if yyrt4816 { - for ; yyj4816 < yyl4816; yyj4816++ { - yyv4816 = append(yyv4816, "") - yyh4816.ElemContainerState(yyj4816) + if yyrt4790 { + for ; yyj4790 < yyl4790; yyj4790++ { + yyv4790 = append(yyv4790, "") + yyh4790.ElemContainerState(yyj4790) if r.TryDecodeAsNil() { - yyv4816[yyj4816] = "" + yyv4790[yyj4790] = "" } else { - yyv4816[yyj4816] = UniqueVolumeName(r.DecodeString()) + yyv4790[yyj4790] = UniqueVolumeName(r.DecodeString()) } } } } else { - yyj4816 := 0 - for ; !r.CheckBreak(); yyj4816++ { + yyj4790 := 0 + for ; !r.CheckBreak(); yyj4790++ { - if yyj4816 >= len(yyv4816) { - yyv4816 = append(yyv4816, "") // var yyz4816 UniqueVolumeName - yyc4816 = true + if yyj4790 >= len(yyv4790) { + yyv4790 = append(yyv4790, "") // var yyz4790 UniqueVolumeName + yyc4790 = true } - yyh4816.ElemContainerState(yyj4816) - if yyj4816 < len(yyv4816) { + yyh4790.ElemContainerState(yyj4790) + if yyj4790 < len(yyv4790) { if r.TryDecodeAsNil() { - yyv4816[yyj4816] = "" + yyv4790[yyj4790] = "" } else { - yyv4816[yyj4816] = UniqueVolumeName(r.DecodeString()) + yyv4790[yyj4790] = UniqueVolumeName(r.DecodeString()) } } else { @@ -61563,17 +61264,17 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code } } - if yyj4816 < len(yyv4816) { - yyv4816 = yyv4816[:yyj4816] - yyc4816 = true - } else if yyj4816 == 0 && yyv4816 == nil { - yyv4816 = []UniqueVolumeName{} - yyc4816 = true + if yyj4790 < len(yyv4790) { + yyv4790 = yyv4790[:yyj4790] + yyc4790 = true + } else if yyj4790 == 0 && yyv4790 == nil { + yyv4790 = []UniqueVolumeName{} + yyc4790 = true } } - yyh4816.End() - if yyc4816 { - *v = yyv4816 + yyh4790.End() + if yyc4790 { + *v = yyv4790 } } @@ -61582,10 +61283,10 @@ func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4820 := range v { + for _, yyv4794 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4821 := &yyv4820 - yy4821.CodecEncodeSelf(e) + yy4795 := &yyv4794 + yy4795.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61595,83 +61296,83 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4822 := *v - yyh4822, yyl4822 := z.DecSliceHelperStart() - var yyc4822 bool - if yyl4822 == 0 { - if yyv4822 == nil { - yyv4822 = []AttachedVolume{} - yyc4822 = true - } else if len(yyv4822) != 0 { - yyv4822 = yyv4822[:0] - yyc4822 = true + yyv4796 := *v + yyh4796, yyl4796 := z.DecSliceHelperStart() + var yyc4796 bool + if yyl4796 == 0 { + if yyv4796 == nil { + yyv4796 = []AttachedVolume{} + yyc4796 = true + } else if len(yyv4796) != 0 { + yyv4796 = yyv4796[:0] + yyc4796 = true } - } else if yyl4822 > 0 { - var yyrr4822, yyrl4822 int - var yyrt4822 bool - if yyl4822 > cap(yyv4822) { + } else if yyl4796 > 0 { + var yyrr4796, yyrl4796 int + var yyrt4796 bool + if yyl4796 > cap(yyv4796) { - yyrg4822 := len(yyv4822) > 0 - yyv24822 := yyv4822 - yyrl4822, yyrt4822 = z.DecInferLen(yyl4822, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4822 { - if yyrl4822 <= cap(yyv4822) { - yyv4822 = yyv4822[:yyrl4822] + yyrg4796 := len(yyv4796) > 0 + yyv24796 := yyv4796 + yyrl4796, yyrt4796 = z.DecInferLen(yyl4796, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4796 { + if yyrl4796 <= cap(yyv4796) { + yyv4796 = yyv4796[:yyrl4796] } else { - yyv4822 = make([]AttachedVolume, yyrl4822) + yyv4796 = make([]AttachedVolume, yyrl4796) } } else { - yyv4822 = make([]AttachedVolume, yyrl4822) + yyv4796 = make([]AttachedVolume, yyrl4796) } - yyc4822 = true - yyrr4822 = len(yyv4822) - if yyrg4822 { - copy(yyv4822, yyv24822) + yyc4796 = true + yyrr4796 = len(yyv4796) + if yyrg4796 { + copy(yyv4796, yyv24796) } - } else if yyl4822 != len(yyv4822) { - yyv4822 = yyv4822[:yyl4822] - yyc4822 = true + } else if yyl4796 != len(yyv4796) { + yyv4796 = yyv4796[:yyl4796] + yyc4796 = true } - yyj4822 := 0 - for ; yyj4822 < yyrr4822; yyj4822++ { - yyh4822.ElemContainerState(yyj4822) + yyj4796 := 0 + for ; yyj4796 < yyrr4796; yyj4796++ { + yyh4796.ElemContainerState(yyj4796) if r.TryDecodeAsNil() { - yyv4822[yyj4822] = AttachedVolume{} + yyv4796[yyj4796] = AttachedVolume{} } else { - yyv4823 := &yyv4822[yyj4822] - yyv4823.CodecDecodeSelf(d) + yyv4797 := &yyv4796[yyj4796] + yyv4797.CodecDecodeSelf(d) } } - if yyrt4822 { - for ; yyj4822 < yyl4822; yyj4822++ { - yyv4822 = append(yyv4822, AttachedVolume{}) - yyh4822.ElemContainerState(yyj4822) + if yyrt4796 { + for ; yyj4796 < yyl4796; yyj4796++ { + yyv4796 = append(yyv4796, AttachedVolume{}) + yyh4796.ElemContainerState(yyj4796) if r.TryDecodeAsNil() { - yyv4822[yyj4822] = AttachedVolume{} + yyv4796[yyj4796] = AttachedVolume{} } else { - yyv4824 := &yyv4822[yyj4822] - yyv4824.CodecDecodeSelf(d) + yyv4798 := &yyv4796[yyj4796] + yyv4798.CodecDecodeSelf(d) } } } } else { - yyj4822 := 0 - for ; !r.CheckBreak(); yyj4822++ { + yyj4796 := 0 + for ; !r.CheckBreak(); yyj4796++ { - if yyj4822 >= len(yyv4822) { - yyv4822 = append(yyv4822, AttachedVolume{}) // var yyz4822 AttachedVolume - yyc4822 = true + if yyj4796 >= len(yyv4796) { + yyv4796 = append(yyv4796, AttachedVolume{}) // var yyz4796 AttachedVolume + yyc4796 = true } - yyh4822.ElemContainerState(yyj4822) - if yyj4822 < len(yyv4822) { + yyh4796.ElemContainerState(yyj4796) + if yyj4796 < len(yyv4796) { if r.TryDecodeAsNil() { - yyv4822[yyj4822] = AttachedVolume{} + yyv4796[yyj4796] = AttachedVolume{} } else { - yyv4825 := &yyv4822[yyj4822] - yyv4825.CodecDecodeSelf(d) + yyv4799 := &yyv4796[yyj4796] + yyv4799.CodecDecodeSelf(d) } } else { @@ -61679,17 +61380,17 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } } - if yyj4822 < len(yyv4822) { - yyv4822 = yyv4822[:yyj4822] - yyc4822 = true - } else if yyj4822 == 0 && yyv4822 == nil { - yyv4822 = []AttachedVolume{} - yyc4822 = true + if yyj4796 < len(yyv4796) { + yyv4796 = yyv4796[:yyj4796] + yyc4796 = true + } else if yyj4796 == 0 && yyv4796 == nil { + yyv4796 = []AttachedVolume{} + yyc4796 = true } } - yyh4822.End() - if yyc4822 { - *v = yyv4822 + yyh4796.End() + if yyc4796 { + *v = yyv4796 } } @@ -61698,10 +61399,10 @@ func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4826 := range v { + for _, yyv4800 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4827 := &yyv4826 - yy4827.CodecEncodeSelf(e) + yy4801 := &yyv4800 + yy4801.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61711,83 +61412,83 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4828 := *v - yyh4828, yyl4828 := z.DecSliceHelperStart() - var yyc4828 bool - if yyl4828 == 0 { - if yyv4828 == nil { - yyv4828 = []PreferAvoidPodsEntry{} - yyc4828 = true - } else if len(yyv4828) != 0 { - yyv4828 = yyv4828[:0] - yyc4828 = true + yyv4802 := *v + yyh4802, yyl4802 := z.DecSliceHelperStart() + var yyc4802 bool + if yyl4802 == 0 { + if yyv4802 == nil { + yyv4802 = []PreferAvoidPodsEntry{} + yyc4802 = true + } else if len(yyv4802) != 0 { + yyv4802 = yyv4802[:0] + yyc4802 = true } - } else if yyl4828 > 0 { - var yyrr4828, yyrl4828 int - var yyrt4828 bool - if yyl4828 > cap(yyv4828) { + } else if yyl4802 > 0 { + var yyrr4802, yyrl4802 int + var yyrt4802 bool + if yyl4802 > cap(yyv4802) { - yyrg4828 := len(yyv4828) > 0 - yyv24828 := yyv4828 - yyrl4828, yyrt4828 = z.DecInferLen(yyl4828, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4828 { - if yyrl4828 <= cap(yyv4828) { - yyv4828 = yyv4828[:yyrl4828] + yyrg4802 := len(yyv4802) > 0 + yyv24802 := yyv4802 + yyrl4802, yyrt4802 = z.DecInferLen(yyl4802, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4802 { + if yyrl4802 <= cap(yyv4802) { + yyv4802 = yyv4802[:yyrl4802] } else { - yyv4828 = make([]PreferAvoidPodsEntry, yyrl4828) + yyv4802 = make([]PreferAvoidPodsEntry, yyrl4802) } } else { - yyv4828 = make([]PreferAvoidPodsEntry, yyrl4828) + yyv4802 = make([]PreferAvoidPodsEntry, yyrl4802) } - yyc4828 = true - yyrr4828 = len(yyv4828) - if yyrg4828 { - copy(yyv4828, yyv24828) + yyc4802 = true + yyrr4802 = len(yyv4802) + if yyrg4802 { + copy(yyv4802, yyv24802) } - } else if yyl4828 != len(yyv4828) { - yyv4828 = yyv4828[:yyl4828] - yyc4828 = true + } else if yyl4802 != len(yyv4802) { + yyv4802 = yyv4802[:yyl4802] + yyc4802 = true } - yyj4828 := 0 - for ; yyj4828 < yyrr4828; yyj4828++ { - yyh4828.ElemContainerState(yyj4828) + yyj4802 := 0 + for ; yyj4802 < yyrr4802; yyj4802++ { + yyh4802.ElemContainerState(yyj4802) if r.TryDecodeAsNil() { - yyv4828[yyj4828] = PreferAvoidPodsEntry{} + yyv4802[yyj4802] = PreferAvoidPodsEntry{} } else { - yyv4829 := &yyv4828[yyj4828] - yyv4829.CodecDecodeSelf(d) + yyv4803 := &yyv4802[yyj4802] + yyv4803.CodecDecodeSelf(d) } } - if yyrt4828 { - for ; yyj4828 < yyl4828; yyj4828++ { - yyv4828 = append(yyv4828, PreferAvoidPodsEntry{}) - yyh4828.ElemContainerState(yyj4828) + if yyrt4802 { + for ; yyj4802 < yyl4802; yyj4802++ { + yyv4802 = append(yyv4802, PreferAvoidPodsEntry{}) + yyh4802.ElemContainerState(yyj4802) if r.TryDecodeAsNil() { - yyv4828[yyj4828] = PreferAvoidPodsEntry{} + yyv4802[yyj4802] = PreferAvoidPodsEntry{} } else { - yyv4830 := &yyv4828[yyj4828] - yyv4830.CodecDecodeSelf(d) + yyv4804 := &yyv4802[yyj4802] + yyv4804.CodecDecodeSelf(d) } } } } else { - yyj4828 := 0 - for ; !r.CheckBreak(); yyj4828++ { + yyj4802 := 0 + for ; !r.CheckBreak(); yyj4802++ { - if yyj4828 >= len(yyv4828) { - yyv4828 = append(yyv4828, PreferAvoidPodsEntry{}) // var yyz4828 PreferAvoidPodsEntry - yyc4828 = true + if yyj4802 >= len(yyv4802) { + yyv4802 = append(yyv4802, PreferAvoidPodsEntry{}) // var yyz4802 PreferAvoidPodsEntry + yyc4802 = true } - yyh4828.ElemContainerState(yyj4828) - if yyj4828 < len(yyv4828) { + yyh4802.ElemContainerState(yyj4802) + if yyj4802 < len(yyv4802) { if r.TryDecodeAsNil() { - yyv4828[yyj4828] = PreferAvoidPodsEntry{} + yyv4802[yyj4802] = PreferAvoidPodsEntry{} } else { - yyv4831 := &yyv4828[yyj4828] - yyv4831.CodecDecodeSelf(d) + yyv4805 := &yyv4802[yyj4802] + yyv4805.CodecDecodeSelf(d) } } else { @@ -61795,17 +61496,17 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } } - if yyj4828 < len(yyv4828) { - yyv4828 = yyv4828[:yyj4828] - yyc4828 = true - } else if yyj4828 == 0 && yyv4828 == nil { - yyv4828 = []PreferAvoidPodsEntry{} - yyc4828 = true + if yyj4802 < len(yyv4802) { + yyv4802 = yyv4802[:yyj4802] + yyc4802 = true + } else if yyj4802 == 0 && yyv4802 == nil { + yyv4802 = []PreferAvoidPodsEntry{} + yyc4802 = true } } - yyh4828.End() - if yyc4828 { - *v = yyv4828 + yyh4802.End() + if yyc4802 { + *v = yyv4802 } } @@ -61814,19 +61515,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4832, yyv4832 := range v { + for yyk4806, yyv4806 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4832.CodecEncodeSelf(e) + yyk4806.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4833 := &yyv4832 - yym4834 := z.EncBinary() - _ = yym4834 + yy4807 := &yyv4806 + yym4808 := z.EncBinary() + _ = yym4808 if false { - } else if z.HasExtensions() && z.EncExt(yy4833) { - } else if !yym4834 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4833) + } else if z.HasExtensions() && z.EncExt(yy4807) { + } else if !yym4808 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4807) } else { - z.EncFallback(yy4833) + z.EncFallback(yy4807) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -61837,86 +61538,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4835 := *v - yyl4835 := r.ReadMapStart() - yybh4835 := z.DecBasicHandle() - if yyv4835 == nil { - yyrl4835, _ := z.DecInferLen(yyl4835, yybh4835.MaxInitLen, 72) - yyv4835 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4835) - *v = yyv4835 + yyv4809 := *v + yyl4809 := r.ReadMapStart() + yybh4809 := z.DecBasicHandle() + if yyv4809 == nil { + yyrl4809, _ := z.DecInferLen(yyl4809, yybh4809.MaxInitLen, 72) + yyv4809 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4809) + *v = yyv4809 } - var yymk4835 ResourceName - var yymv4835 pkg3_resource.Quantity - var yymg4835 bool - if yybh4835.MapValueReset { - yymg4835 = true + var yymk4809 ResourceName + var yymv4809 pkg3_resource.Quantity + var yymg4809 bool + if yybh4809.MapValueReset { + yymg4809 = true } - if yyl4835 > 0 { - for yyj4835 := 0; yyj4835 < yyl4835; yyj4835++ { + if yyl4809 > 0 { + for yyj4809 := 0; yyj4809 < yyl4809; yyj4809++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4835 = "" + yymk4809 = "" } else { - yymk4835 = ResourceName(r.DecodeString()) + yymk4809 = ResourceName(r.DecodeString()) } - if yymg4835 { - yymv4835 = yyv4835[yymk4835] + if yymg4809 { + yymv4809 = yyv4809[yymk4809] } else { - yymv4835 = pkg3_resource.Quantity{} + yymv4809 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4835 = pkg3_resource.Quantity{} + yymv4809 = pkg3_resource.Quantity{} } else { - yyv4837 := &yymv4835 - yym4838 := z.DecBinary() - _ = yym4838 + yyv4811 := &yymv4809 + yym4812 := z.DecBinary() + _ = yym4812 if false { - } else if z.HasExtensions() && z.DecExt(yyv4837) { - } else if !yym4838 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4837) + } else if z.HasExtensions() && z.DecExt(yyv4811) { + } else if !yym4812 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4811) } else { - z.DecFallback(yyv4837, false) + z.DecFallback(yyv4811, false) } } - if yyv4835 != nil { - yyv4835[yymk4835] = yymv4835 + if yyv4809 != nil { + yyv4809[yymk4809] = yymv4809 } } - } else if yyl4835 < 0 { - for yyj4835 := 0; !r.CheckBreak(); yyj4835++ { + } else if yyl4809 < 0 { + for yyj4809 := 0; !r.CheckBreak(); yyj4809++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4835 = "" + yymk4809 = "" } else { - yymk4835 = ResourceName(r.DecodeString()) + yymk4809 = ResourceName(r.DecodeString()) } - if yymg4835 { - yymv4835 = yyv4835[yymk4835] + if yymg4809 { + yymv4809 = yyv4809[yymk4809] } else { - yymv4835 = pkg3_resource.Quantity{} + yymv4809 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4835 = pkg3_resource.Quantity{} + yymv4809 = pkg3_resource.Quantity{} } else { - yyv4840 := &yymv4835 - yym4841 := z.DecBinary() - _ = yym4841 + yyv4814 := &yymv4809 + yym4815 := z.DecBinary() + _ = yym4815 if false { - } else if z.HasExtensions() && z.DecExt(yyv4840) { - } else if !yym4841 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4840) + } else if z.HasExtensions() && z.DecExt(yyv4814) { + } else if !yym4815 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4814) } else { - z.DecFallback(yyv4840, false) + z.DecFallback(yyv4814, false) } } - if yyv4835 != nil { - yyv4835[yymk4835] = yymv4835 + if yyv4809 != nil { + yyv4809[yymk4809] = yymv4809 } } } // else len==0: TODO: Should we clear map entries? @@ -61928,10 +61629,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4842 := range v { + for _, yyv4816 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4843 := &yyv4842 - yy4843.CodecEncodeSelf(e) + yy4817 := &yyv4816 + yy4817.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61941,83 +61642,83 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4844 := *v - yyh4844, yyl4844 := z.DecSliceHelperStart() - var yyc4844 bool - if yyl4844 == 0 { - if yyv4844 == nil { - yyv4844 = []Node{} - yyc4844 = true - } else if len(yyv4844) != 0 { - yyv4844 = yyv4844[:0] - yyc4844 = true + yyv4818 := *v + yyh4818, yyl4818 := z.DecSliceHelperStart() + var yyc4818 bool + if yyl4818 == 0 { + if yyv4818 == nil { + yyv4818 = []Node{} + yyc4818 = true + } else if len(yyv4818) != 0 { + yyv4818 = yyv4818[:0] + yyc4818 = true } - } else if yyl4844 > 0 { - var yyrr4844, yyrl4844 int - var yyrt4844 bool - if yyl4844 > cap(yyv4844) { + } else if yyl4818 > 0 { + var yyrr4818, yyrl4818 int + var yyrt4818 bool + if yyl4818 > cap(yyv4818) { - yyrg4844 := len(yyv4844) > 0 - yyv24844 := yyv4844 - yyrl4844, yyrt4844 = z.DecInferLen(yyl4844, z.DecBasicHandle().MaxInitLen, 632) - if yyrt4844 { - if yyrl4844 <= cap(yyv4844) { - yyv4844 = yyv4844[:yyrl4844] + yyrg4818 := len(yyv4818) > 0 + yyv24818 := yyv4818 + yyrl4818, yyrt4818 = z.DecInferLen(yyl4818, z.DecBasicHandle().MaxInitLen, 632) + if yyrt4818 { + if yyrl4818 <= cap(yyv4818) { + yyv4818 = yyv4818[:yyrl4818] } else { - yyv4844 = make([]Node, yyrl4844) + yyv4818 = make([]Node, yyrl4818) } } else { - yyv4844 = make([]Node, yyrl4844) + yyv4818 = make([]Node, yyrl4818) } - yyc4844 = true - yyrr4844 = len(yyv4844) - if yyrg4844 { - copy(yyv4844, yyv24844) + yyc4818 = true + yyrr4818 = len(yyv4818) + if yyrg4818 { + copy(yyv4818, yyv24818) } - } else if yyl4844 != len(yyv4844) { - yyv4844 = yyv4844[:yyl4844] - yyc4844 = true + } else if yyl4818 != len(yyv4818) { + yyv4818 = yyv4818[:yyl4818] + yyc4818 = true } - yyj4844 := 0 - for ; yyj4844 < yyrr4844; yyj4844++ { - yyh4844.ElemContainerState(yyj4844) + yyj4818 := 0 + for ; yyj4818 < yyrr4818; yyj4818++ { + yyh4818.ElemContainerState(yyj4818) if r.TryDecodeAsNil() { - yyv4844[yyj4844] = Node{} + yyv4818[yyj4818] = Node{} } else { - yyv4845 := &yyv4844[yyj4844] - yyv4845.CodecDecodeSelf(d) + yyv4819 := &yyv4818[yyj4818] + yyv4819.CodecDecodeSelf(d) } } - if yyrt4844 { - for ; yyj4844 < yyl4844; yyj4844++ { - yyv4844 = append(yyv4844, Node{}) - yyh4844.ElemContainerState(yyj4844) + if yyrt4818 { + for ; yyj4818 < yyl4818; yyj4818++ { + yyv4818 = append(yyv4818, Node{}) + yyh4818.ElemContainerState(yyj4818) if r.TryDecodeAsNil() { - yyv4844[yyj4844] = Node{} + yyv4818[yyj4818] = Node{} } else { - yyv4846 := &yyv4844[yyj4844] - yyv4846.CodecDecodeSelf(d) + yyv4820 := &yyv4818[yyj4818] + yyv4820.CodecDecodeSelf(d) } } } } else { - yyj4844 := 0 - for ; !r.CheckBreak(); yyj4844++ { + yyj4818 := 0 + for ; !r.CheckBreak(); yyj4818++ { - if yyj4844 >= len(yyv4844) { - yyv4844 = append(yyv4844, Node{}) // var yyz4844 Node - yyc4844 = true + if yyj4818 >= len(yyv4818) { + yyv4818 = append(yyv4818, Node{}) // var yyz4818 Node + yyc4818 = true } - yyh4844.ElemContainerState(yyj4844) - if yyj4844 < len(yyv4844) { + yyh4818.ElemContainerState(yyj4818) + if yyj4818 < len(yyv4818) { if r.TryDecodeAsNil() { - yyv4844[yyj4844] = Node{} + yyv4818[yyj4818] = Node{} } else { - yyv4847 := &yyv4844[yyj4844] - yyv4847.CodecDecodeSelf(d) + yyv4821 := &yyv4818[yyj4818] + yyv4821.CodecDecodeSelf(d) } } else { @@ -62025,17 +61726,17 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { } } - if yyj4844 < len(yyv4844) { - yyv4844 = yyv4844[:yyj4844] - yyc4844 = true - } else if yyj4844 == 0 && yyv4844 == nil { - yyv4844 = []Node{} - yyc4844 = true + if yyj4818 < len(yyv4818) { + yyv4818 = yyv4818[:yyj4818] + yyc4818 = true + } else if yyj4818 == 0 && yyv4818 == nil { + yyv4818 = []Node{} + yyc4818 = true } } - yyh4844.End() - if yyc4844 { - *v = yyv4844 + yyh4818.End() + if yyc4818 { + *v = yyv4818 } } @@ -62044,9 +61745,9 @@ func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4848 := range v { + for _, yyv4822 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4848.CodecEncodeSelf(e) + yyv4822.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62056,75 +61757,75 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4849 := *v - yyh4849, yyl4849 := z.DecSliceHelperStart() - var yyc4849 bool - if yyl4849 == 0 { - if yyv4849 == nil { - yyv4849 = []FinalizerName{} - yyc4849 = true - } else if len(yyv4849) != 0 { - yyv4849 = yyv4849[:0] - yyc4849 = true + yyv4823 := *v + yyh4823, yyl4823 := z.DecSliceHelperStart() + var yyc4823 bool + if yyl4823 == 0 { + if yyv4823 == nil { + yyv4823 = []FinalizerName{} + yyc4823 = true + } else if len(yyv4823) != 0 { + yyv4823 = yyv4823[:0] + yyc4823 = true } - } else if yyl4849 > 0 { - var yyrr4849, yyrl4849 int - var yyrt4849 bool - if yyl4849 > cap(yyv4849) { + } else if yyl4823 > 0 { + var yyrr4823, yyrl4823 int + var yyrt4823 bool + if yyl4823 > cap(yyv4823) { - yyrl4849, yyrt4849 = z.DecInferLen(yyl4849, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4849 { - if yyrl4849 <= cap(yyv4849) { - yyv4849 = yyv4849[:yyrl4849] + yyrl4823, yyrt4823 = z.DecInferLen(yyl4823, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4823 { + if yyrl4823 <= cap(yyv4823) { + yyv4823 = yyv4823[:yyrl4823] } else { - yyv4849 = make([]FinalizerName, yyrl4849) + yyv4823 = make([]FinalizerName, yyrl4823) } } else { - yyv4849 = make([]FinalizerName, yyrl4849) + yyv4823 = make([]FinalizerName, yyrl4823) } - yyc4849 = true - yyrr4849 = len(yyv4849) - } else if yyl4849 != len(yyv4849) { - yyv4849 = yyv4849[:yyl4849] - yyc4849 = true + yyc4823 = true + yyrr4823 = len(yyv4823) + } else if yyl4823 != len(yyv4823) { + yyv4823 = yyv4823[:yyl4823] + yyc4823 = true } - yyj4849 := 0 - for ; yyj4849 < yyrr4849; yyj4849++ { - yyh4849.ElemContainerState(yyj4849) + yyj4823 := 0 + for ; yyj4823 < yyrr4823; yyj4823++ { + yyh4823.ElemContainerState(yyj4823) if r.TryDecodeAsNil() { - yyv4849[yyj4849] = "" + yyv4823[yyj4823] = "" } else { - yyv4849[yyj4849] = FinalizerName(r.DecodeString()) + yyv4823[yyj4823] = FinalizerName(r.DecodeString()) } } - if yyrt4849 { - for ; yyj4849 < yyl4849; yyj4849++ { - yyv4849 = append(yyv4849, "") - yyh4849.ElemContainerState(yyj4849) + if yyrt4823 { + for ; yyj4823 < yyl4823; yyj4823++ { + yyv4823 = append(yyv4823, "") + yyh4823.ElemContainerState(yyj4823) if r.TryDecodeAsNil() { - yyv4849[yyj4849] = "" + yyv4823[yyj4823] = "" } else { - yyv4849[yyj4849] = FinalizerName(r.DecodeString()) + yyv4823[yyj4823] = FinalizerName(r.DecodeString()) } } } } else { - yyj4849 := 0 - for ; !r.CheckBreak(); yyj4849++ { + yyj4823 := 0 + for ; !r.CheckBreak(); yyj4823++ { - if yyj4849 >= len(yyv4849) { - yyv4849 = append(yyv4849, "") // var yyz4849 FinalizerName - yyc4849 = true + if yyj4823 >= len(yyv4823) { + yyv4823 = append(yyv4823, "") // var yyz4823 FinalizerName + yyc4823 = true } - yyh4849.ElemContainerState(yyj4849) - if yyj4849 < len(yyv4849) { + yyh4823.ElemContainerState(yyj4823) + if yyj4823 < len(yyv4823) { if r.TryDecodeAsNil() { - yyv4849[yyj4849] = "" + yyv4823[yyj4823] = "" } else { - yyv4849[yyj4849] = FinalizerName(r.DecodeString()) + yyv4823[yyj4823] = FinalizerName(r.DecodeString()) } } else { @@ -62132,17 +61833,17 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } - if yyj4849 < len(yyv4849) { - yyv4849 = yyv4849[:yyj4849] - yyc4849 = true - } else if yyj4849 == 0 && yyv4849 == nil { - yyv4849 = []FinalizerName{} - yyc4849 = true + if yyj4823 < len(yyv4823) { + yyv4823 = yyv4823[:yyj4823] + yyc4823 = true + } else if yyj4823 == 0 && yyv4823 == nil { + yyv4823 = []FinalizerName{} + yyc4823 = true } } - yyh4849.End() - if yyc4849 { - *v = yyv4849 + yyh4823.End() + if yyc4823 { + *v = yyv4823 } } @@ -62151,10 +61852,10 @@ func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4853 := range v { + for _, yyv4827 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4854 := &yyv4853 - yy4854.CodecEncodeSelf(e) + yy4828 := &yyv4827 + yy4828.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62164,83 +61865,83 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, 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 = []Namespace{} - yyc4855 = true - } else if len(yyv4855) != 0 { - yyv4855 = yyv4855[:0] - yyc4855 = true + yyv4829 := *v + yyh4829, yyl4829 := z.DecSliceHelperStart() + var yyc4829 bool + if yyl4829 == 0 { + if yyv4829 == nil { + yyv4829 = []Namespace{} + yyc4829 = true + } else if len(yyv4829) != 0 { + yyv4829 = yyv4829[:0] + yyc4829 = true } - } else if yyl4855 > 0 { - var yyrr4855, yyrl4855 int - var yyrt4855 bool - if yyl4855 > cap(yyv4855) { + } else if yyl4829 > 0 { + var yyrr4829, yyrl4829 int + var yyrt4829 bool + if yyl4829 > cap(yyv4829) { - yyrg4855 := len(yyv4855) > 0 - yyv24855 := yyv4855 - yyrl4855, yyrt4855 = z.DecInferLen(yyl4855, z.DecBasicHandle().MaxInitLen, 296) - if yyrt4855 { - if yyrl4855 <= cap(yyv4855) { - yyv4855 = yyv4855[:yyrl4855] + yyrg4829 := len(yyv4829) > 0 + yyv24829 := yyv4829 + yyrl4829, yyrt4829 = z.DecInferLen(yyl4829, z.DecBasicHandle().MaxInitLen, 296) + if yyrt4829 { + if yyrl4829 <= cap(yyv4829) { + yyv4829 = yyv4829[:yyrl4829] } else { - yyv4855 = make([]Namespace, yyrl4855) + yyv4829 = make([]Namespace, yyrl4829) } } else { - yyv4855 = make([]Namespace, yyrl4855) + yyv4829 = make([]Namespace, yyrl4829) } - yyc4855 = true - yyrr4855 = len(yyv4855) - if yyrg4855 { - copy(yyv4855, yyv24855) + yyc4829 = true + yyrr4829 = len(yyv4829) + if yyrg4829 { + copy(yyv4829, yyv24829) } - } else if yyl4855 != len(yyv4855) { - yyv4855 = yyv4855[:yyl4855] - yyc4855 = true + } else if yyl4829 != len(yyv4829) { + yyv4829 = yyv4829[:yyl4829] + yyc4829 = true } - yyj4855 := 0 - for ; yyj4855 < yyrr4855; yyj4855++ { - yyh4855.ElemContainerState(yyj4855) + yyj4829 := 0 + for ; yyj4829 < yyrr4829; yyj4829++ { + yyh4829.ElemContainerState(yyj4829) if r.TryDecodeAsNil() { - yyv4855[yyj4855] = Namespace{} + yyv4829[yyj4829] = Namespace{} } else { - yyv4856 := &yyv4855[yyj4855] - yyv4856.CodecDecodeSelf(d) + yyv4830 := &yyv4829[yyj4829] + yyv4830.CodecDecodeSelf(d) } } - if yyrt4855 { - for ; yyj4855 < yyl4855; yyj4855++ { - yyv4855 = append(yyv4855, Namespace{}) - yyh4855.ElemContainerState(yyj4855) + if yyrt4829 { + for ; yyj4829 < yyl4829; yyj4829++ { + yyv4829 = append(yyv4829, Namespace{}) + yyh4829.ElemContainerState(yyj4829) if r.TryDecodeAsNil() { - yyv4855[yyj4855] = Namespace{} + yyv4829[yyj4829] = Namespace{} } else { - yyv4857 := &yyv4855[yyj4855] - yyv4857.CodecDecodeSelf(d) + yyv4831 := &yyv4829[yyj4829] + yyv4831.CodecDecodeSelf(d) } } } } else { - yyj4855 := 0 - for ; !r.CheckBreak(); yyj4855++ { + yyj4829 := 0 + for ; !r.CheckBreak(); yyj4829++ { - if yyj4855 >= len(yyv4855) { - yyv4855 = append(yyv4855, Namespace{}) // var yyz4855 Namespace - yyc4855 = true + if yyj4829 >= len(yyv4829) { + yyv4829 = append(yyv4829, Namespace{}) // var yyz4829 Namespace + yyc4829 = true } - yyh4855.ElemContainerState(yyj4855) - if yyj4855 < len(yyv4855) { + yyh4829.ElemContainerState(yyj4829) + if yyj4829 < len(yyv4829) { if r.TryDecodeAsNil() { - yyv4855[yyj4855] = Namespace{} + yyv4829[yyj4829] = Namespace{} } else { - yyv4858 := &yyv4855[yyj4855] - yyv4858.CodecDecodeSelf(d) + yyv4832 := &yyv4829[yyj4829] + yyv4832.CodecDecodeSelf(d) } } else { @@ -62248,17 +61949,17 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4855 < len(yyv4855) { - yyv4855 = yyv4855[:yyj4855] - yyc4855 = true - } else if yyj4855 == 0 && yyv4855 == nil { - yyv4855 = []Namespace{} - yyc4855 = true + if yyj4829 < len(yyv4829) { + yyv4829 = yyv4829[:yyj4829] + yyc4829 = true + } else if yyj4829 == 0 && yyv4829 == nil { + yyv4829 = []Namespace{} + yyc4829 = true } } - yyh4855.End() - if yyc4855 { - *v = yyv4855 + yyh4829.End() + if yyc4829 { + *v = yyv4829 } } @@ -62267,10 +61968,10 @@ func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4859 := range v { + for _, yyv4833 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4860 := &yyv4859 - yy4860.CodecEncodeSelf(e) + yy4834 := &yyv4833 + yy4834.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62280,83 +61981,83 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4861 := *v - yyh4861, yyl4861 := z.DecSliceHelperStart() - var yyc4861 bool - if yyl4861 == 0 { - if yyv4861 == nil { - yyv4861 = []Event{} - yyc4861 = true - } else if len(yyv4861) != 0 { - yyv4861 = yyv4861[:0] - yyc4861 = true + yyv4835 := *v + yyh4835, yyl4835 := z.DecSliceHelperStart() + var yyc4835 bool + if yyl4835 == 0 { + if yyv4835 == nil { + yyv4835 = []Event{} + yyc4835 = true + } else if len(yyv4835) != 0 { + yyv4835 = yyv4835[:0] + yyc4835 = true } - } else if yyl4861 > 0 { - var yyrr4861, yyrl4861 int - var yyrt4861 bool - if yyl4861 > cap(yyv4861) { + } else if yyl4835 > 0 { + var yyrr4835, yyrl4835 int + var yyrt4835 bool + if yyl4835 > cap(yyv4835) { - yyrg4861 := len(yyv4861) > 0 - yyv24861 := yyv4861 - yyrl4861, yyrt4861 = z.DecInferLen(yyl4861, z.DecBasicHandle().MaxInitLen, 504) - if yyrt4861 { - if yyrl4861 <= cap(yyv4861) { - yyv4861 = yyv4861[:yyrl4861] + yyrg4835 := len(yyv4835) > 0 + yyv24835 := yyv4835 + yyrl4835, yyrt4835 = z.DecInferLen(yyl4835, z.DecBasicHandle().MaxInitLen, 504) + if yyrt4835 { + if yyrl4835 <= cap(yyv4835) { + yyv4835 = yyv4835[:yyrl4835] } else { - yyv4861 = make([]Event, yyrl4861) + yyv4835 = make([]Event, yyrl4835) } } else { - yyv4861 = make([]Event, yyrl4861) + yyv4835 = make([]Event, yyrl4835) } - yyc4861 = true - yyrr4861 = len(yyv4861) - if yyrg4861 { - copy(yyv4861, yyv24861) + yyc4835 = true + yyrr4835 = len(yyv4835) + if yyrg4835 { + copy(yyv4835, yyv24835) } - } else if yyl4861 != len(yyv4861) { - yyv4861 = yyv4861[:yyl4861] - yyc4861 = true + } else if yyl4835 != len(yyv4835) { + yyv4835 = yyv4835[:yyl4835] + yyc4835 = true } - yyj4861 := 0 - for ; yyj4861 < yyrr4861; yyj4861++ { - yyh4861.ElemContainerState(yyj4861) + yyj4835 := 0 + for ; yyj4835 < yyrr4835; yyj4835++ { + yyh4835.ElemContainerState(yyj4835) if r.TryDecodeAsNil() { - yyv4861[yyj4861] = Event{} + yyv4835[yyj4835] = Event{} } else { - yyv4862 := &yyv4861[yyj4861] - yyv4862.CodecDecodeSelf(d) + yyv4836 := &yyv4835[yyj4835] + yyv4836.CodecDecodeSelf(d) } } - if yyrt4861 { - for ; yyj4861 < yyl4861; yyj4861++ { - yyv4861 = append(yyv4861, Event{}) - yyh4861.ElemContainerState(yyj4861) + if yyrt4835 { + for ; yyj4835 < yyl4835; yyj4835++ { + yyv4835 = append(yyv4835, Event{}) + yyh4835.ElemContainerState(yyj4835) if r.TryDecodeAsNil() { - yyv4861[yyj4861] = Event{} + yyv4835[yyj4835] = Event{} } else { - yyv4863 := &yyv4861[yyj4861] - yyv4863.CodecDecodeSelf(d) + yyv4837 := &yyv4835[yyj4835] + yyv4837.CodecDecodeSelf(d) } } } } else { - yyj4861 := 0 - for ; !r.CheckBreak(); yyj4861++ { + yyj4835 := 0 + for ; !r.CheckBreak(); yyj4835++ { - if yyj4861 >= len(yyv4861) { - yyv4861 = append(yyv4861, Event{}) // var yyz4861 Event - yyc4861 = true + if yyj4835 >= len(yyv4835) { + yyv4835 = append(yyv4835, Event{}) // var yyz4835 Event + yyc4835 = true } - yyh4861.ElemContainerState(yyj4861) - if yyj4861 < len(yyv4861) { + yyh4835.ElemContainerState(yyj4835) + if yyj4835 < len(yyv4835) { if r.TryDecodeAsNil() { - yyv4861[yyj4861] = Event{} + yyv4835[yyj4835] = Event{} } else { - yyv4864 := &yyv4861[yyj4861] - yyv4864.CodecDecodeSelf(d) + yyv4838 := &yyv4835[yyj4835] + yyv4838.CodecDecodeSelf(d) } } else { @@ -62364,17 +62065,17 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4861 < len(yyv4861) { - yyv4861 = yyv4861[:yyj4861] - yyc4861 = true - } else if yyj4861 == 0 && yyv4861 == nil { - yyv4861 = []Event{} - yyc4861 = true + if yyj4835 < len(yyv4835) { + yyv4835 = yyv4835[:yyj4835] + yyc4835 = true + } else if yyj4835 == 0 && yyv4835 == nil { + yyv4835 = []Event{} + yyc4835 = true } } - yyh4861.End() - if yyc4861 { - *v = yyv4861 + yyh4835.End() + if yyc4835 { + *v = yyv4835 } } @@ -62383,17 +62084,17 @@ func (x codecSelfer1234) encSliceruntime_RawExtension(v []pkg5_runtime.RawExtens z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4865 := range v { + for _, yyv4839 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4866 := &yyv4865 - yym4867 := z.EncBinary() - _ = yym4867 + yy4840 := &yyv4839 + yym4841 := z.EncBinary() + _ = yym4841 if false { - } else if z.HasExtensions() && z.EncExt(yy4866) { - } else if !yym4867 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4866) + } else if z.HasExtensions() && z.EncExt(yy4840) { + } else if !yym4841 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4840) } else { - z.EncFallback(yy4866) + z.EncFallback(yy4840) } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) @@ -62404,12 +62105,491 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r + yyv4842 := *v + yyh4842, yyl4842 := z.DecSliceHelperStart() + var yyc4842 bool + if yyl4842 == 0 { + if yyv4842 == nil { + yyv4842 = []pkg5_runtime.RawExtension{} + yyc4842 = true + } else if len(yyv4842) != 0 { + yyv4842 = yyv4842[:0] + yyc4842 = true + } + } else if yyl4842 > 0 { + var yyrr4842, yyrl4842 int + var yyrt4842 bool + if yyl4842 > cap(yyv4842) { + + yyrg4842 := len(yyv4842) > 0 + yyv24842 := yyv4842 + yyrl4842, yyrt4842 = z.DecInferLen(yyl4842, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4842 { + if yyrl4842 <= cap(yyv4842) { + yyv4842 = yyv4842[:yyrl4842] + } else { + yyv4842 = make([]pkg5_runtime.RawExtension, yyrl4842) + } + } else { + yyv4842 = make([]pkg5_runtime.RawExtension, yyrl4842) + } + yyc4842 = true + yyrr4842 = len(yyv4842) + if yyrg4842 { + copy(yyv4842, yyv24842) + } + } else if yyl4842 != len(yyv4842) { + yyv4842 = yyv4842[:yyl4842] + yyc4842 = true + } + yyj4842 := 0 + for ; yyj4842 < yyrr4842; yyj4842++ { + yyh4842.ElemContainerState(yyj4842) + if r.TryDecodeAsNil() { + yyv4842[yyj4842] = pkg5_runtime.RawExtension{} + } else { + yyv4843 := &yyv4842[yyj4842] + yym4844 := z.DecBinary() + _ = yym4844 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4843) { + } else if !yym4844 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4843) + } else { + z.DecFallback(yyv4843, false) + } + } + + } + if yyrt4842 { + for ; yyj4842 < yyl4842; yyj4842++ { + yyv4842 = append(yyv4842, pkg5_runtime.RawExtension{}) + yyh4842.ElemContainerState(yyj4842) + if r.TryDecodeAsNil() { + yyv4842[yyj4842] = pkg5_runtime.RawExtension{} + } else { + yyv4845 := &yyv4842[yyj4842] + yym4846 := z.DecBinary() + _ = yym4846 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4845) { + } else if !yym4846 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4845) + } else { + z.DecFallback(yyv4845, false) + } + } + + } + } + + } else { + yyj4842 := 0 + for ; !r.CheckBreak(); yyj4842++ { + + if yyj4842 >= len(yyv4842) { + yyv4842 = append(yyv4842, pkg5_runtime.RawExtension{}) // var yyz4842 pkg5_runtime.RawExtension + yyc4842 = true + } + yyh4842.ElemContainerState(yyj4842) + if yyj4842 < len(yyv4842) { + if r.TryDecodeAsNil() { + yyv4842[yyj4842] = pkg5_runtime.RawExtension{} + } else { + yyv4847 := &yyv4842[yyj4842] + yym4848 := z.DecBinary() + _ = yym4848 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4847) { + } else if !yym4848 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4847) + } else { + z.DecFallback(yyv4847, false) + } + } + + } else { + z.DecSwallow() + } + + } + if yyj4842 < len(yyv4842) { + yyv4842 = yyv4842[:yyj4842] + yyc4842 = true + } else if yyj4842 == 0 && yyv4842 == nil { + yyv4842 = []pkg5_runtime.RawExtension{} + yyc4842 = true + } + } + yyh4842.End() + if yyc4842 { + *v = yyv4842 + } +} + +func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4849 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4850 := &yyv4849 + yy4850.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4851 := *v + yyh4851, yyl4851 := z.DecSliceHelperStart() + var yyc4851 bool + if yyl4851 == 0 { + if yyv4851 == nil { + yyv4851 = []LimitRangeItem{} + yyc4851 = true + } else if len(yyv4851) != 0 { + yyv4851 = yyv4851[:0] + yyc4851 = true + } + } else if yyl4851 > 0 { + var yyrr4851, yyrl4851 int + var yyrt4851 bool + if yyl4851 > cap(yyv4851) { + + yyrg4851 := len(yyv4851) > 0 + yyv24851 := yyv4851 + yyrl4851, yyrt4851 = z.DecInferLen(yyl4851, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4851 { + if yyrl4851 <= cap(yyv4851) { + yyv4851 = yyv4851[:yyrl4851] + } else { + yyv4851 = make([]LimitRangeItem, yyrl4851) + } + } else { + yyv4851 = make([]LimitRangeItem, yyrl4851) + } + yyc4851 = true + yyrr4851 = len(yyv4851) + if yyrg4851 { + copy(yyv4851, yyv24851) + } + } else if yyl4851 != len(yyv4851) { + yyv4851 = yyv4851[:yyl4851] + yyc4851 = true + } + yyj4851 := 0 + for ; yyj4851 < yyrr4851; yyj4851++ { + yyh4851.ElemContainerState(yyj4851) + if r.TryDecodeAsNil() { + yyv4851[yyj4851] = LimitRangeItem{} + } else { + yyv4852 := &yyv4851[yyj4851] + yyv4852.CodecDecodeSelf(d) + } + + } + if yyrt4851 { + for ; yyj4851 < yyl4851; yyj4851++ { + yyv4851 = append(yyv4851, LimitRangeItem{}) + yyh4851.ElemContainerState(yyj4851) + if r.TryDecodeAsNil() { + yyv4851[yyj4851] = LimitRangeItem{} + } else { + yyv4853 := &yyv4851[yyj4851] + yyv4853.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4851 := 0 + for ; !r.CheckBreak(); yyj4851++ { + + if yyj4851 >= len(yyv4851) { + yyv4851 = append(yyv4851, LimitRangeItem{}) // var yyz4851 LimitRangeItem + yyc4851 = true + } + yyh4851.ElemContainerState(yyj4851) + if yyj4851 < len(yyv4851) { + if r.TryDecodeAsNil() { + yyv4851[yyj4851] = LimitRangeItem{} + } else { + yyv4854 := &yyv4851[yyj4851] + yyv4854.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4851 < len(yyv4851) { + yyv4851 = yyv4851[:yyj4851] + yyc4851 = true + } else if yyj4851 == 0 && yyv4851 == nil { + yyv4851 = []LimitRangeItem{} + yyc4851 = true + } + } + yyh4851.End() + if yyc4851 { + *v = yyv4851 + } +} + +func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4855 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4856 := &yyv4855 + yy4856.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4857 := *v + yyh4857, yyl4857 := z.DecSliceHelperStart() + var yyc4857 bool + if yyl4857 == 0 { + if yyv4857 == nil { + yyv4857 = []LimitRange{} + yyc4857 = true + } else if len(yyv4857) != 0 { + yyv4857 = yyv4857[:0] + yyc4857 = true + } + } else if yyl4857 > 0 { + var yyrr4857, yyrl4857 int + var yyrt4857 bool + if yyl4857 > cap(yyv4857) { + + yyrg4857 := len(yyv4857) > 0 + yyv24857 := yyv4857 + yyrl4857, yyrt4857 = z.DecInferLen(yyl4857, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4857 { + if yyrl4857 <= cap(yyv4857) { + yyv4857 = yyv4857[:yyrl4857] + } else { + yyv4857 = make([]LimitRange, yyrl4857) + } + } else { + yyv4857 = make([]LimitRange, yyrl4857) + } + yyc4857 = true + yyrr4857 = len(yyv4857) + if yyrg4857 { + copy(yyv4857, yyv24857) + } + } else if yyl4857 != len(yyv4857) { + yyv4857 = yyv4857[:yyl4857] + yyc4857 = true + } + yyj4857 := 0 + for ; yyj4857 < yyrr4857; yyj4857++ { + yyh4857.ElemContainerState(yyj4857) + if r.TryDecodeAsNil() { + yyv4857[yyj4857] = LimitRange{} + } else { + yyv4858 := &yyv4857[yyj4857] + yyv4858.CodecDecodeSelf(d) + } + + } + if yyrt4857 { + for ; yyj4857 < yyl4857; yyj4857++ { + yyv4857 = append(yyv4857, LimitRange{}) + yyh4857.ElemContainerState(yyj4857) + if r.TryDecodeAsNil() { + yyv4857[yyj4857] = LimitRange{} + } else { + yyv4859 := &yyv4857[yyj4857] + yyv4859.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4857 := 0 + for ; !r.CheckBreak(); yyj4857++ { + + if yyj4857 >= len(yyv4857) { + yyv4857 = append(yyv4857, LimitRange{}) // var yyz4857 LimitRange + yyc4857 = true + } + yyh4857.ElemContainerState(yyj4857) + if yyj4857 < len(yyv4857) { + if r.TryDecodeAsNil() { + yyv4857[yyj4857] = LimitRange{} + } else { + yyv4860 := &yyv4857[yyj4857] + yyv4860.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4857 < len(yyv4857) { + yyv4857 = yyv4857[:yyj4857] + yyc4857 = true + } else if yyj4857 == 0 && yyv4857 == nil { + yyv4857 = []LimitRange{} + yyc4857 = true + } + } + yyh4857.End() + if yyc4857 { + *v = yyv4857 + } +} + +func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4861 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yyv4861.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4862 := *v + yyh4862, yyl4862 := z.DecSliceHelperStart() + var yyc4862 bool + if yyl4862 == 0 { + if yyv4862 == nil { + yyv4862 = []ResourceQuotaScope{} + yyc4862 = true + } else if len(yyv4862) != 0 { + yyv4862 = yyv4862[:0] + yyc4862 = true + } + } else if yyl4862 > 0 { + var yyrr4862, yyrl4862 int + var yyrt4862 bool + if yyl4862 > cap(yyv4862) { + + yyrl4862, yyrt4862 = z.DecInferLen(yyl4862, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4862 { + if yyrl4862 <= cap(yyv4862) { + yyv4862 = yyv4862[:yyrl4862] + } else { + yyv4862 = make([]ResourceQuotaScope, yyrl4862) + } + } else { + yyv4862 = make([]ResourceQuotaScope, yyrl4862) + } + yyc4862 = true + yyrr4862 = len(yyv4862) + } else if yyl4862 != len(yyv4862) { + yyv4862 = yyv4862[:yyl4862] + yyc4862 = true + } + yyj4862 := 0 + for ; yyj4862 < yyrr4862; yyj4862++ { + yyh4862.ElemContainerState(yyj4862) + if r.TryDecodeAsNil() { + yyv4862[yyj4862] = "" + } else { + yyv4862[yyj4862] = ResourceQuotaScope(r.DecodeString()) + } + + } + if yyrt4862 { + for ; yyj4862 < yyl4862; yyj4862++ { + yyv4862 = append(yyv4862, "") + yyh4862.ElemContainerState(yyj4862) + if r.TryDecodeAsNil() { + yyv4862[yyj4862] = "" + } else { + yyv4862[yyj4862] = ResourceQuotaScope(r.DecodeString()) + } + + } + } + + } else { + yyj4862 := 0 + for ; !r.CheckBreak(); yyj4862++ { + + if yyj4862 >= len(yyv4862) { + yyv4862 = append(yyv4862, "") // var yyz4862 ResourceQuotaScope + yyc4862 = true + } + yyh4862.ElemContainerState(yyj4862) + if yyj4862 < len(yyv4862) { + if r.TryDecodeAsNil() { + yyv4862[yyj4862] = "" + } else { + yyv4862[yyj4862] = ResourceQuotaScope(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4862 < len(yyv4862) { + yyv4862 = yyv4862[:yyj4862] + yyc4862 = true + } else if yyj4862 == 0 && yyv4862 == nil { + yyv4862 = []ResourceQuotaScope{} + yyc4862 = true + } + } + yyh4862.End() + if yyc4862 { + *v = yyv4862 + } +} + +func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4866 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4867 := &yyv4866 + yy4867.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yyv4868 := *v yyh4868, yyl4868 := z.DecSliceHelperStart() var yyc4868 bool if yyl4868 == 0 { if yyv4868 == nil { - yyv4868 = []pkg5_runtime.RawExtension{} + yyv4868 = []ResourceQuota{} yyc4868 = true } else if len(yyv4868) != 0 { yyv4868 = yyv4868[:0] @@ -62422,15 +62602,15 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten yyrg4868 := len(yyv4868) > 0 yyv24868 := yyv4868 - yyrl4868, yyrt4868 = z.DecInferLen(yyl4868, z.DecBasicHandle().MaxInitLen, 40) + yyrl4868, yyrt4868 = z.DecInferLen(yyl4868, z.DecBasicHandle().MaxInitLen, 304) if yyrt4868 { if yyrl4868 <= cap(yyv4868) { yyv4868 = yyv4868[:yyrl4868] } else { - yyv4868 = make([]pkg5_runtime.RawExtension, yyrl4868) + yyv4868 = make([]ResourceQuota, yyrl4868) } } else { - yyv4868 = make([]pkg5_runtime.RawExtension, yyrl4868) + yyv4868 = make([]ResourceQuota, yyrl4868) } yyc4868 = true yyrr4868 = len(yyv4868) @@ -62445,38 +62625,22 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten for ; yyj4868 < yyrr4868; yyj4868++ { yyh4868.ElemContainerState(yyj4868) if r.TryDecodeAsNil() { - yyv4868[yyj4868] = pkg5_runtime.RawExtension{} + yyv4868[yyj4868] = ResourceQuota{} } else { yyv4869 := &yyv4868[yyj4868] - yym4870 := z.DecBinary() - _ = yym4870 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4869) { - } else if !yym4870 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4869) - } else { - z.DecFallback(yyv4869, false) - } + yyv4869.CodecDecodeSelf(d) } } if yyrt4868 { for ; yyj4868 < yyl4868; yyj4868++ { - yyv4868 = append(yyv4868, pkg5_runtime.RawExtension{}) + yyv4868 = append(yyv4868, ResourceQuota{}) yyh4868.ElemContainerState(yyj4868) if r.TryDecodeAsNil() { - yyv4868[yyj4868] = pkg5_runtime.RawExtension{} + yyv4868[yyj4868] = ResourceQuota{} } else { - yyv4871 := &yyv4868[yyj4868] - yym4872 := z.DecBinary() - _ = yym4872 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4871) { - } else if !yym4872 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4871) - } else { - z.DecFallback(yyv4871, false) - } + yyv4870 := &yyv4868[yyj4868] + yyv4870.CodecDecodeSelf(d) } } @@ -62487,24 +62651,16 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten for ; !r.CheckBreak(); yyj4868++ { if yyj4868 >= len(yyv4868) { - yyv4868 = append(yyv4868, pkg5_runtime.RawExtension{}) // var yyz4868 pkg5_runtime.RawExtension + yyv4868 = append(yyv4868, ResourceQuota{}) // var yyz4868 ResourceQuota yyc4868 = true } yyh4868.ElemContainerState(yyj4868) if yyj4868 < len(yyv4868) { if r.TryDecodeAsNil() { - yyv4868[yyj4868] = pkg5_runtime.RawExtension{} + yyv4868[yyj4868] = ResourceQuota{} } else { - yyv4873 := &yyv4868[yyj4868] - yym4874 := z.DecBinary() - _ = yym4874 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4873) { - } else if !yym4874 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4873) - } else { - z.DecFallback(yyv4873, false) - } + yyv4871 := &yyv4868[yyj4868] + yyv4871.CodecDecodeSelf(d) } } else { @@ -62516,7 +62672,7 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten yyv4868 = yyv4868[:yyj4868] yyc4868 = true } else if yyj4868 == 0 && yyv4868 == nil { - yyv4868 = []pkg5_runtime.RawExtension{} + yyv4868 = []ResourceQuota{} yyc4868 = true } } @@ -62526,483 +62682,28 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten } } -func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4875 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4876 := &yyv4875 - yy4876.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4877 := *v - yyh4877, yyl4877 := z.DecSliceHelperStart() - var yyc4877 bool - if yyl4877 == 0 { - if yyv4877 == nil { - yyv4877 = []LimitRangeItem{} - yyc4877 = true - } else if len(yyv4877) != 0 { - yyv4877 = yyv4877[:0] - yyc4877 = true - } - } else if yyl4877 > 0 { - var yyrr4877, yyrl4877 int - var yyrt4877 bool - if yyl4877 > cap(yyv4877) { - - yyrg4877 := len(yyv4877) > 0 - yyv24877 := yyv4877 - yyrl4877, yyrt4877 = z.DecInferLen(yyl4877, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4877 { - if yyrl4877 <= cap(yyv4877) { - yyv4877 = yyv4877[:yyrl4877] - } else { - yyv4877 = make([]LimitRangeItem, yyrl4877) - } - } else { - yyv4877 = make([]LimitRangeItem, yyrl4877) - } - yyc4877 = true - yyrr4877 = len(yyv4877) - if yyrg4877 { - copy(yyv4877, yyv24877) - } - } else if yyl4877 != len(yyv4877) { - yyv4877 = yyv4877[:yyl4877] - yyc4877 = true - } - yyj4877 := 0 - for ; yyj4877 < yyrr4877; yyj4877++ { - yyh4877.ElemContainerState(yyj4877) - if r.TryDecodeAsNil() { - yyv4877[yyj4877] = LimitRangeItem{} - } else { - yyv4878 := &yyv4877[yyj4877] - yyv4878.CodecDecodeSelf(d) - } - - } - if yyrt4877 { - for ; yyj4877 < yyl4877; yyj4877++ { - yyv4877 = append(yyv4877, LimitRangeItem{}) - yyh4877.ElemContainerState(yyj4877) - if r.TryDecodeAsNil() { - yyv4877[yyj4877] = LimitRangeItem{} - } else { - yyv4879 := &yyv4877[yyj4877] - yyv4879.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4877 := 0 - for ; !r.CheckBreak(); yyj4877++ { - - if yyj4877 >= len(yyv4877) { - yyv4877 = append(yyv4877, LimitRangeItem{}) // var yyz4877 LimitRangeItem - yyc4877 = true - } - yyh4877.ElemContainerState(yyj4877) - if yyj4877 < len(yyv4877) { - if r.TryDecodeAsNil() { - yyv4877[yyj4877] = LimitRangeItem{} - } else { - yyv4880 := &yyv4877[yyj4877] - yyv4880.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4877 < len(yyv4877) { - yyv4877 = yyv4877[:yyj4877] - yyc4877 = true - } else if yyj4877 == 0 && yyv4877 == nil { - yyv4877 = []LimitRangeItem{} - yyc4877 = true - } - } - yyh4877.End() - if yyc4877 { - *v = yyv4877 - } -} - -func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4881 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4882 := &yyv4881 - yy4882.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4883 := *v - yyh4883, yyl4883 := z.DecSliceHelperStart() - var yyc4883 bool - if yyl4883 == 0 { - if yyv4883 == nil { - yyv4883 = []LimitRange{} - yyc4883 = true - } else if len(yyv4883) != 0 { - yyv4883 = yyv4883[:0] - yyc4883 = true - } - } else if yyl4883 > 0 { - var yyrr4883, yyrl4883 int - var yyrt4883 bool - if yyl4883 > cap(yyv4883) { - - yyrg4883 := len(yyv4883) > 0 - yyv24883 := yyv4883 - yyrl4883, yyrt4883 = z.DecInferLen(yyl4883, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4883 { - if yyrl4883 <= cap(yyv4883) { - yyv4883 = yyv4883[:yyrl4883] - } else { - yyv4883 = make([]LimitRange, yyrl4883) - } - } else { - yyv4883 = make([]LimitRange, yyrl4883) - } - yyc4883 = true - yyrr4883 = len(yyv4883) - if yyrg4883 { - copy(yyv4883, yyv24883) - } - } else if yyl4883 != len(yyv4883) { - yyv4883 = yyv4883[:yyl4883] - yyc4883 = true - } - yyj4883 := 0 - for ; yyj4883 < yyrr4883; yyj4883++ { - yyh4883.ElemContainerState(yyj4883) - if r.TryDecodeAsNil() { - yyv4883[yyj4883] = LimitRange{} - } else { - yyv4884 := &yyv4883[yyj4883] - yyv4884.CodecDecodeSelf(d) - } - - } - if yyrt4883 { - for ; yyj4883 < yyl4883; yyj4883++ { - yyv4883 = append(yyv4883, LimitRange{}) - yyh4883.ElemContainerState(yyj4883) - if r.TryDecodeAsNil() { - yyv4883[yyj4883] = LimitRange{} - } else { - yyv4885 := &yyv4883[yyj4883] - yyv4885.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4883 := 0 - for ; !r.CheckBreak(); yyj4883++ { - - if yyj4883 >= len(yyv4883) { - yyv4883 = append(yyv4883, LimitRange{}) // var yyz4883 LimitRange - yyc4883 = true - } - yyh4883.ElemContainerState(yyj4883) - if yyj4883 < len(yyv4883) { - if r.TryDecodeAsNil() { - yyv4883[yyj4883] = LimitRange{} - } else { - yyv4886 := &yyv4883[yyj4883] - yyv4886.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4883 < len(yyv4883) { - yyv4883 = yyv4883[:yyj4883] - yyc4883 = true - } else if yyj4883 == 0 && yyv4883 == nil { - yyv4883 = []LimitRange{} - yyc4883 = true - } - } - yyh4883.End() - if yyc4883 { - *v = yyv4883 - } -} - -func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4887 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4887.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4888 := *v - yyh4888, yyl4888 := z.DecSliceHelperStart() - var yyc4888 bool - if yyl4888 == 0 { - if yyv4888 == nil { - yyv4888 = []ResourceQuotaScope{} - yyc4888 = true - } else if len(yyv4888) != 0 { - yyv4888 = yyv4888[:0] - yyc4888 = true - } - } else if yyl4888 > 0 { - var yyrr4888, yyrl4888 int - var yyrt4888 bool - if yyl4888 > cap(yyv4888) { - - yyrl4888, yyrt4888 = z.DecInferLen(yyl4888, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4888 { - if yyrl4888 <= cap(yyv4888) { - yyv4888 = yyv4888[:yyrl4888] - } else { - yyv4888 = make([]ResourceQuotaScope, yyrl4888) - } - } else { - yyv4888 = make([]ResourceQuotaScope, yyrl4888) - } - yyc4888 = true - yyrr4888 = len(yyv4888) - } else if yyl4888 != len(yyv4888) { - yyv4888 = yyv4888[:yyl4888] - yyc4888 = true - } - yyj4888 := 0 - for ; yyj4888 < yyrr4888; yyj4888++ { - yyh4888.ElemContainerState(yyj4888) - if r.TryDecodeAsNil() { - yyv4888[yyj4888] = "" - } else { - yyv4888[yyj4888] = ResourceQuotaScope(r.DecodeString()) - } - - } - if yyrt4888 { - for ; yyj4888 < yyl4888; yyj4888++ { - yyv4888 = append(yyv4888, "") - yyh4888.ElemContainerState(yyj4888) - if r.TryDecodeAsNil() { - yyv4888[yyj4888] = "" - } else { - yyv4888[yyj4888] = ResourceQuotaScope(r.DecodeString()) - } - - } - } - - } else { - yyj4888 := 0 - for ; !r.CheckBreak(); yyj4888++ { - - if yyj4888 >= len(yyv4888) { - yyv4888 = append(yyv4888, "") // var yyz4888 ResourceQuotaScope - yyc4888 = true - } - yyh4888.ElemContainerState(yyj4888) - if yyj4888 < len(yyv4888) { - if r.TryDecodeAsNil() { - yyv4888[yyj4888] = "" - } else { - yyv4888[yyj4888] = ResourceQuotaScope(r.DecodeString()) - } - - } else { - z.DecSwallow() - } - - } - if yyj4888 < len(yyv4888) { - yyv4888 = yyv4888[:yyj4888] - yyc4888 = true - } else if yyj4888 == 0 && yyv4888 == nil { - yyv4888 = []ResourceQuotaScope{} - yyc4888 = true - } - } - yyh4888.End() - if yyc4888 { - *v = yyv4888 - } -} - -func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4892 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4893 := &yyv4892 - yy4893.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4894 := *v - yyh4894, yyl4894 := z.DecSliceHelperStart() - var yyc4894 bool - if yyl4894 == 0 { - if yyv4894 == nil { - yyv4894 = []ResourceQuota{} - yyc4894 = true - } else if len(yyv4894) != 0 { - yyv4894 = yyv4894[:0] - yyc4894 = true - } - } else if yyl4894 > 0 { - var yyrr4894, yyrl4894 int - var yyrt4894 bool - if yyl4894 > cap(yyv4894) { - - yyrg4894 := len(yyv4894) > 0 - yyv24894 := yyv4894 - yyrl4894, yyrt4894 = z.DecInferLen(yyl4894, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4894 { - if yyrl4894 <= cap(yyv4894) { - yyv4894 = yyv4894[:yyrl4894] - } else { - yyv4894 = make([]ResourceQuota, yyrl4894) - } - } else { - yyv4894 = make([]ResourceQuota, yyrl4894) - } - yyc4894 = true - yyrr4894 = len(yyv4894) - if yyrg4894 { - copy(yyv4894, yyv24894) - } - } else if yyl4894 != len(yyv4894) { - yyv4894 = yyv4894[:yyl4894] - yyc4894 = true - } - yyj4894 := 0 - for ; yyj4894 < yyrr4894; yyj4894++ { - yyh4894.ElemContainerState(yyj4894) - if r.TryDecodeAsNil() { - yyv4894[yyj4894] = ResourceQuota{} - } else { - yyv4895 := &yyv4894[yyj4894] - yyv4895.CodecDecodeSelf(d) - } - - } - if yyrt4894 { - for ; yyj4894 < yyl4894; yyj4894++ { - yyv4894 = append(yyv4894, ResourceQuota{}) - yyh4894.ElemContainerState(yyj4894) - if r.TryDecodeAsNil() { - yyv4894[yyj4894] = ResourceQuota{} - } else { - yyv4896 := &yyv4894[yyj4894] - yyv4896.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4894 := 0 - for ; !r.CheckBreak(); yyj4894++ { - - if yyj4894 >= len(yyv4894) { - yyv4894 = append(yyv4894, ResourceQuota{}) // var yyz4894 ResourceQuota - yyc4894 = true - } - yyh4894.ElemContainerState(yyj4894) - if yyj4894 < len(yyv4894) { - if r.TryDecodeAsNil() { - yyv4894[yyj4894] = ResourceQuota{} - } else { - yyv4897 := &yyv4894[yyj4894] - yyv4897.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4894 < len(yyv4894) { - yyv4894 = yyv4894[:yyj4894] - yyc4894 = true - } else if yyj4894 == 0 && yyv4894 == nil { - yyv4894 = []ResourceQuota{} - yyc4894 = true - } - } - yyh4894.End() - if yyc4894 { - *v = yyv4894 - } -} - func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4898, yyv4898 := range v { + for yyk4872, yyv4872 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4899 := z.EncBinary() - _ = yym4899 + yym4873 := z.EncBinary() + _ = yym4873 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4898)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4872)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4898 == nil { + if yyv4872 == nil { r.EncodeNil() } else { - yym4900 := z.EncBinary() - _ = yym4900 + yym4874 := z.EncBinary() + _ = yym4874 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4898)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4872)) } } } @@ -63014,80 +62715,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4901 := *v - yyl4901 := r.ReadMapStart() - yybh4901 := z.DecBasicHandle() - if yyv4901 == nil { - yyrl4901, _ := z.DecInferLen(yyl4901, yybh4901.MaxInitLen, 40) - yyv4901 = make(map[string][]uint8, yyrl4901) - *v = yyv4901 + yyv4875 := *v + yyl4875 := r.ReadMapStart() + yybh4875 := z.DecBasicHandle() + if yyv4875 == nil { + yyrl4875, _ := z.DecInferLen(yyl4875, yybh4875.MaxInitLen, 40) + yyv4875 = make(map[string][]uint8, yyrl4875) + *v = yyv4875 } - var yymk4901 string - var yymv4901 []uint8 - var yymg4901 bool - if yybh4901.MapValueReset { - yymg4901 = true + var yymk4875 string + var yymv4875 []uint8 + var yymg4875 bool + if yybh4875.MapValueReset { + yymg4875 = true } - if yyl4901 > 0 { - for yyj4901 := 0; yyj4901 < yyl4901; yyj4901++ { + if yyl4875 > 0 { + for yyj4875 := 0; yyj4875 < yyl4875; yyj4875++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4901 = "" + yymk4875 = "" } else { - yymk4901 = string(r.DecodeString()) + yymk4875 = string(r.DecodeString()) } - if yymg4901 { - yymv4901 = yyv4901[yymk4901] + if yymg4875 { + yymv4875 = yyv4875[yymk4875] } else { - yymv4901 = nil + yymv4875 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4901 = nil + yymv4875 = nil } else { - yyv4903 := &yymv4901 - yym4904 := z.DecBinary() - _ = yym4904 + yyv4877 := &yymv4875 + yym4878 := z.DecBinary() + _ = yym4878 if false { } else { - *yyv4903 = r.DecodeBytes(*(*[]byte)(yyv4903), false, false) + *yyv4877 = r.DecodeBytes(*(*[]byte)(yyv4877), false, false) } } - if yyv4901 != nil { - yyv4901[yymk4901] = yymv4901 + if yyv4875 != nil { + yyv4875[yymk4875] = yymv4875 } } - } else if yyl4901 < 0 { - for yyj4901 := 0; !r.CheckBreak(); yyj4901++ { + } else if yyl4875 < 0 { + for yyj4875 := 0; !r.CheckBreak(); yyj4875++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4901 = "" + yymk4875 = "" } else { - yymk4901 = string(r.DecodeString()) + yymk4875 = string(r.DecodeString()) } - if yymg4901 { - yymv4901 = yyv4901[yymk4901] + if yymg4875 { + yymv4875 = yyv4875[yymk4875] } else { - yymv4901 = nil + yymv4875 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4901 = nil + yymv4875 = nil } else { - yyv4906 := &yymv4901 - yym4907 := z.DecBinary() - _ = yym4907 + yyv4880 := &yymv4875 + yym4881 := z.DecBinary() + _ = yym4881 if false { } else { - *yyv4906 = r.DecodeBytes(*(*[]byte)(yyv4906), false, false) + *yyv4880 = r.DecodeBytes(*(*[]byte)(yyv4880), false, false) } } - if yyv4901 != nil { - yyv4901[yymk4901] = yymv4901 + if yyv4875 != nil { + yyv4875[yymk4875] = yymv4875 } } } // else len==0: TODO: Should we clear map entries? @@ -63099,10 +62800,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4908 := range v { + for _, yyv4882 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4909 := &yyv4908 - yy4909.CodecEncodeSelf(e) + yy4883 := &yyv4882 + yy4883.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -63112,83 +62813,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4910 := *v - yyh4910, yyl4910 := z.DecSliceHelperStart() - var yyc4910 bool - if yyl4910 == 0 { - if yyv4910 == nil { - yyv4910 = []Secret{} - yyc4910 = true - } else if len(yyv4910) != 0 { - yyv4910 = yyv4910[:0] - yyc4910 = true + yyv4884 := *v + yyh4884, yyl4884 := z.DecSliceHelperStart() + var yyc4884 bool + if yyl4884 == 0 { + if yyv4884 == nil { + yyv4884 = []Secret{} + yyc4884 = true + } else if len(yyv4884) != 0 { + yyv4884 = yyv4884[:0] + yyc4884 = true } - } else if yyl4910 > 0 { - var yyrr4910, yyrl4910 int - var yyrt4910 bool - if yyl4910 > cap(yyv4910) { + } else if yyl4884 > 0 { + var yyrr4884, yyrl4884 int + var yyrt4884 bool + if yyl4884 > cap(yyv4884) { - yyrg4910 := len(yyv4910) > 0 - yyv24910 := yyv4910 - yyrl4910, yyrt4910 = z.DecInferLen(yyl4910, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4910 { - if yyrl4910 <= cap(yyv4910) { - yyv4910 = yyv4910[:yyrl4910] + yyrg4884 := len(yyv4884) > 0 + yyv24884 := yyv4884 + yyrl4884, yyrt4884 = z.DecInferLen(yyl4884, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4884 { + if yyrl4884 <= cap(yyv4884) { + yyv4884 = yyv4884[:yyrl4884] } else { - yyv4910 = make([]Secret, yyrl4910) + yyv4884 = make([]Secret, yyrl4884) } } else { - yyv4910 = make([]Secret, yyrl4910) + yyv4884 = make([]Secret, yyrl4884) } - yyc4910 = true - yyrr4910 = len(yyv4910) - if yyrg4910 { - copy(yyv4910, yyv24910) + yyc4884 = true + yyrr4884 = len(yyv4884) + if yyrg4884 { + copy(yyv4884, yyv24884) } - } else if yyl4910 != len(yyv4910) { - yyv4910 = yyv4910[:yyl4910] - yyc4910 = true + } else if yyl4884 != len(yyv4884) { + yyv4884 = yyv4884[:yyl4884] + yyc4884 = true } - yyj4910 := 0 - for ; yyj4910 < yyrr4910; yyj4910++ { - yyh4910.ElemContainerState(yyj4910) + yyj4884 := 0 + for ; yyj4884 < yyrr4884; yyj4884++ { + yyh4884.ElemContainerState(yyj4884) if r.TryDecodeAsNil() { - yyv4910[yyj4910] = Secret{} + yyv4884[yyj4884] = Secret{} } else { - yyv4911 := &yyv4910[yyj4910] - yyv4911.CodecDecodeSelf(d) + yyv4885 := &yyv4884[yyj4884] + yyv4885.CodecDecodeSelf(d) } } - if yyrt4910 { - for ; yyj4910 < yyl4910; yyj4910++ { - yyv4910 = append(yyv4910, Secret{}) - yyh4910.ElemContainerState(yyj4910) + if yyrt4884 { + for ; yyj4884 < yyl4884; yyj4884++ { + yyv4884 = append(yyv4884, Secret{}) + yyh4884.ElemContainerState(yyj4884) if r.TryDecodeAsNil() { - yyv4910[yyj4910] = Secret{} + yyv4884[yyj4884] = Secret{} } else { - yyv4912 := &yyv4910[yyj4910] - yyv4912.CodecDecodeSelf(d) + yyv4886 := &yyv4884[yyj4884] + yyv4886.CodecDecodeSelf(d) } } } } else { - yyj4910 := 0 - for ; !r.CheckBreak(); yyj4910++ { + yyj4884 := 0 + for ; !r.CheckBreak(); yyj4884++ { - if yyj4910 >= len(yyv4910) { - yyv4910 = append(yyv4910, Secret{}) // var yyz4910 Secret - yyc4910 = true + if yyj4884 >= len(yyv4884) { + yyv4884 = append(yyv4884, Secret{}) // var yyz4884 Secret + yyc4884 = true } - yyh4910.ElemContainerState(yyj4910) - if yyj4910 < len(yyv4910) { + yyh4884.ElemContainerState(yyj4884) + if yyj4884 < len(yyv4884) { if r.TryDecodeAsNil() { - yyv4910[yyj4910] = Secret{} + yyv4884[yyj4884] = Secret{} } else { - yyv4913 := &yyv4910[yyj4910] - yyv4913.CodecDecodeSelf(d) + yyv4887 := &yyv4884[yyj4884] + yyv4887.CodecDecodeSelf(d) } } else { @@ -63196,17 +62897,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4910 < len(yyv4910) { - yyv4910 = yyv4910[:yyj4910] - yyc4910 = true - } else if yyj4910 == 0 && yyv4910 == nil { - yyv4910 = []Secret{} - yyc4910 = true + if yyj4884 < len(yyv4884) { + yyv4884 = yyv4884[:yyj4884] + yyc4884 = true + } else if yyj4884 == 0 && yyv4884 == nil { + yyv4884 = []Secret{} + yyc4884 = true } } - yyh4910.End() - if yyc4910 { - *v = yyv4910 + yyh4884.End() + if yyc4884 { + *v = yyv4884 } } @@ -63215,10 +62916,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4914 := range v { + for _, yyv4888 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4915 := &yyv4914 - yy4915.CodecEncodeSelf(e) + yy4889 := &yyv4888 + yy4889.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -63228,83 +62929,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4916 := *v - yyh4916, yyl4916 := z.DecSliceHelperStart() - var yyc4916 bool - if yyl4916 == 0 { - if yyv4916 == nil { - yyv4916 = []ConfigMap{} - yyc4916 = true - } else if len(yyv4916) != 0 { - yyv4916 = yyv4916[:0] - yyc4916 = true + yyv4890 := *v + yyh4890, yyl4890 := z.DecSliceHelperStart() + var yyc4890 bool + if yyl4890 == 0 { + if yyv4890 == nil { + yyv4890 = []ConfigMap{} + yyc4890 = true + } else if len(yyv4890) != 0 { + yyv4890 = yyv4890[:0] + yyc4890 = true } - } else if yyl4916 > 0 { - var yyrr4916, yyrl4916 int - var yyrt4916 bool - if yyl4916 > cap(yyv4916) { + } else if yyl4890 > 0 { + var yyrr4890, yyrl4890 int + var yyrt4890 bool + if yyl4890 > cap(yyv4890) { - yyrg4916 := len(yyv4916) > 0 - yyv24916 := yyv4916 - yyrl4916, yyrt4916 = z.DecInferLen(yyl4916, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4916 { - if yyrl4916 <= cap(yyv4916) { - yyv4916 = yyv4916[:yyrl4916] + yyrg4890 := len(yyv4890) > 0 + yyv24890 := yyv4890 + yyrl4890, yyrt4890 = z.DecInferLen(yyl4890, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4890 { + if yyrl4890 <= cap(yyv4890) { + yyv4890 = yyv4890[:yyrl4890] } else { - yyv4916 = make([]ConfigMap, yyrl4916) + yyv4890 = make([]ConfigMap, yyrl4890) } } else { - yyv4916 = make([]ConfigMap, yyrl4916) + yyv4890 = make([]ConfigMap, yyrl4890) } - yyc4916 = true - yyrr4916 = len(yyv4916) - if yyrg4916 { - copy(yyv4916, yyv24916) + yyc4890 = true + yyrr4890 = len(yyv4890) + if yyrg4890 { + copy(yyv4890, yyv24890) } - } else if yyl4916 != len(yyv4916) { - yyv4916 = yyv4916[:yyl4916] - yyc4916 = true + } else if yyl4890 != len(yyv4890) { + yyv4890 = yyv4890[:yyl4890] + yyc4890 = true } - yyj4916 := 0 - for ; yyj4916 < yyrr4916; yyj4916++ { - yyh4916.ElemContainerState(yyj4916) + yyj4890 := 0 + for ; yyj4890 < yyrr4890; yyj4890++ { + yyh4890.ElemContainerState(yyj4890) if r.TryDecodeAsNil() { - yyv4916[yyj4916] = ConfigMap{} + yyv4890[yyj4890] = ConfigMap{} } else { - yyv4917 := &yyv4916[yyj4916] - yyv4917.CodecDecodeSelf(d) + yyv4891 := &yyv4890[yyj4890] + yyv4891.CodecDecodeSelf(d) } } - if yyrt4916 { - for ; yyj4916 < yyl4916; yyj4916++ { - yyv4916 = append(yyv4916, ConfigMap{}) - yyh4916.ElemContainerState(yyj4916) + if yyrt4890 { + for ; yyj4890 < yyl4890; yyj4890++ { + yyv4890 = append(yyv4890, ConfigMap{}) + yyh4890.ElemContainerState(yyj4890) if r.TryDecodeAsNil() { - yyv4916[yyj4916] = ConfigMap{} + yyv4890[yyj4890] = ConfigMap{} } else { - yyv4918 := &yyv4916[yyj4916] - yyv4918.CodecDecodeSelf(d) + yyv4892 := &yyv4890[yyj4890] + yyv4892.CodecDecodeSelf(d) } } } } else { - yyj4916 := 0 - for ; !r.CheckBreak(); yyj4916++ { + yyj4890 := 0 + for ; !r.CheckBreak(); yyj4890++ { - if yyj4916 >= len(yyv4916) { - yyv4916 = append(yyv4916, ConfigMap{}) // var yyz4916 ConfigMap - yyc4916 = true + if yyj4890 >= len(yyv4890) { + yyv4890 = append(yyv4890, ConfigMap{}) // var yyz4890 ConfigMap + yyc4890 = true } - yyh4916.ElemContainerState(yyj4916) - if yyj4916 < len(yyv4916) { + yyh4890.ElemContainerState(yyj4890) + if yyj4890 < len(yyv4890) { if r.TryDecodeAsNil() { - yyv4916[yyj4916] = ConfigMap{} + yyv4890[yyj4890] = ConfigMap{} } else { - yyv4919 := &yyv4916[yyj4916] - yyv4919.CodecDecodeSelf(d) + yyv4893 := &yyv4890[yyj4890] + yyv4893.CodecDecodeSelf(d) } } else { @@ -63312,17 +63013,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4916 < len(yyv4916) { - yyv4916 = yyv4916[:yyj4916] - yyc4916 = true - } else if yyj4916 == 0 && yyv4916 == nil { - yyv4916 = []ConfigMap{} - yyc4916 = true + if yyj4890 < len(yyv4890) { + yyv4890 = yyv4890[:yyj4890] + yyc4890 = true + } else if yyj4890 == 0 && yyv4890 == nil { + yyv4890 = []ConfigMap{} + yyc4890 = true } } - yyh4916.End() - if yyc4916 { - *v = yyv4916 + yyh4890.End() + if yyc4890 { + *v = yyv4890 } } @@ -63331,10 +63032,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4920 := range v { + for _, yyv4894 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4921 := &yyv4920 - yy4921.CodecEncodeSelf(e) + yy4895 := &yyv4894 + yy4895.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -63344,83 +63045,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4922 := *v - yyh4922, yyl4922 := z.DecSliceHelperStart() - var yyc4922 bool - if yyl4922 == 0 { - if yyv4922 == nil { - yyv4922 = []ComponentCondition{} - yyc4922 = true - } else if len(yyv4922) != 0 { - yyv4922 = yyv4922[:0] - yyc4922 = true + yyv4896 := *v + yyh4896, yyl4896 := z.DecSliceHelperStart() + var yyc4896 bool + if yyl4896 == 0 { + if yyv4896 == nil { + yyv4896 = []ComponentCondition{} + yyc4896 = true + } else if len(yyv4896) != 0 { + yyv4896 = yyv4896[:0] + yyc4896 = true } - } else if yyl4922 > 0 { - var yyrr4922, yyrl4922 int - var yyrt4922 bool - if yyl4922 > cap(yyv4922) { + } else if yyl4896 > 0 { + var yyrr4896, yyrl4896 int + var yyrt4896 bool + if yyl4896 > cap(yyv4896) { - yyrg4922 := len(yyv4922) > 0 - yyv24922 := yyv4922 - yyrl4922, yyrt4922 = z.DecInferLen(yyl4922, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4922 { - if yyrl4922 <= cap(yyv4922) { - yyv4922 = yyv4922[:yyrl4922] + yyrg4896 := len(yyv4896) > 0 + yyv24896 := yyv4896 + yyrl4896, yyrt4896 = z.DecInferLen(yyl4896, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4896 { + if yyrl4896 <= cap(yyv4896) { + yyv4896 = yyv4896[:yyrl4896] } else { - yyv4922 = make([]ComponentCondition, yyrl4922) + yyv4896 = make([]ComponentCondition, yyrl4896) } } else { - yyv4922 = make([]ComponentCondition, yyrl4922) + yyv4896 = make([]ComponentCondition, yyrl4896) } - yyc4922 = true - yyrr4922 = len(yyv4922) - if yyrg4922 { - copy(yyv4922, yyv24922) + yyc4896 = true + yyrr4896 = len(yyv4896) + if yyrg4896 { + copy(yyv4896, yyv24896) } - } else if yyl4922 != len(yyv4922) { - yyv4922 = yyv4922[:yyl4922] - yyc4922 = true + } else if yyl4896 != len(yyv4896) { + yyv4896 = yyv4896[:yyl4896] + yyc4896 = true } - yyj4922 := 0 - for ; yyj4922 < yyrr4922; yyj4922++ { - yyh4922.ElemContainerState(yyj4922) + yyj4896 := 0 + for ; yyj4896 < yyrr4896; yyj4896++ { + yyh4896.ElemContainerState(yyj4896) if r.TryDecodeAsNil() { - yyv4922[yyj4922] = ComponentCondition{} + yyv4896[yyj4896] = ComponentCondition{} } else { - yyv4923 := &yyv4922[yyj4922] - yyv4923.CodecDecodeSelf(d) + yyv4897 := &yyv4896[yyj4896] + yyv4897.CodecDecodeSelf(d) } } - if yyrt4922 { - for ; yyj4922 < yyl4922; yyj4922++ { - yyv4922 = append(yyv4922, ComponentCondition{}) - yyh4922.ElemContainerState(yyj4922) + if yyrt4896 { + for ; yyj4896 < yyl4896; yyj4896++ { + yyv4896 = append(yyv4896, ComponentCondition{}) + yyh4896.ElemContainerState(yyj4896) if r.TryDecodeAsNil() { - yyv4922[yyj4922] = ComponentCondition{} + yyv4896[yyj4896] = ComponentCondition{} } else { - yyv4924 := &yyv4922[yyj4922] - yyv4924.CodecDecodeSelf(d) + yyv4898 := &yyv4896[yyj4896] + yyv4898.CodecDecodeSelf(d) } } } } else { - yyj4922 := 0 - for ; !r.CheckBreak(); yyj4922++ { + yyj4896 := 0 + for ; !r.CheckBreak(); yyj4896++ { - if yyj4922 >= len(yyv4922) { - yyv4922 = append(yyv4922, ComponentCondition{}) // var yyz4922 ComponentCondition - yyc4922 = true + if yyj4896 >= len(yyv4896) { + yyv4896 = append(yyv4896, ComponentCondition{}) // var yyz4896 ComponentCondition + yyc4896 = true } - yyh4922.ElemContainerState(yyj4922) - if yyj4922 < len(yyv4922) { + yyh4896.ElemContainerState(yyj4896) + if yyj4896 < len(yyv4896) { if r.TryDecodeAsNil() { - yyv4922[yyj4922] = ComponentCondition{} + yyv4896[yyj4896] = ComponentCondition{} } else { - yyv4925 := &yyv4922[yyj4922] - yyv4925.CodecDecodeSelf(d) + yyv4899 := &yyv4896[yyj4896] + yyv4899.CodecDecodeSelf(d) } } else { @@ -63428,17 +63129,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4922 < len(yyv4922) { - yyv4922 = yyv4922[:yyj4922] - yyc4922 = true - } else if yyj4922 == 0 && yyv4922 == nil { - yyv4922 = []ComponentCondition{} - yyc4922 = true + if yyj4896 < len(yyv4896) { + yyv4896 = yyv4896[:yyj4896] + yyc4896 = true + } else if yyj4896 == 0 && yyv4896 == nil { + yyv4896 = []ComponentCondition{} + yyc4896 = true } } - yyh4922.End() - if yyc4922 { - *v = yyv4922 + yyh4896.End() + if yyc4896 { + *v = yyv4896 } } @@ -63447,10 +63148,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4926 := range v { + for _, yyv4900 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4927 := &yyv4926 - yy4927.CodecEncodeSelf(e) + yy4901 := &yyv4900 + yy4901.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -63460,83 +63161,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4928 := *v - yyh4928, yyl4928 := z.DecSliceHelperStart() - var yyc4928 bool - if yyl4928 == 0 { - if yyv4928 == nil { - yyv4928 = []ComponentStatus{} - yyc4928 = true - } else if len(yyv4928) != 0 { - yyv4928 = yyv4928[:0] - yyc4928 = true + yyv4902 := *v + yyh4902, yyl4902 := z.DecSliceHelperStart() + var yyc4902 bool + if yyl4902 == 0 { + if yyv4902 == nil { + yyv4902 = []ComponentStatus{} + yyc4902 = true + } else if len(yyv4902) != 0 { + yyv4902 = yyv4902[:0] + yyc4902 = true } - } else if yyl4928 > 0 { - var yyrr4928, yyrl4928 int - var yyrt4928 bool - if yyl4928 > cap(yyv4928) { + } else if yyl4902 > 0 { + var yyrr4902, yyrl4902 int + var yyrt4902 bool + if yyl4902 > cap(yyv4902) { - yyrg4928 := len(yyv4928) > 0 - yyv24928 := yyv4928 - yyrl4928, yyrt4928 = z.DecInferLen(yyl4928, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4928 { - if yyrl4928 <= cap(yyv4928) { - yyv4928 = yyv4928[:yyrl4928] + yyrg4902 := len(yyv4902) > 0 + yyv24902 := yyv4902 + yyrl4902, yyrt4902 = z.DecInferLen(yyl4902, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4902 { + if yyrl4902 <= cap(yyv4902) { + yyv4902 = yyv4902[:yyrl4902] } else { - yyv4928 = make([]ComponentStatus, yyrl4928) + yyv4902 = make([]ComponentStatus, yyrl4902) } } else { - yyv4928 = make([]ComponentStatus, yyrl4928) + yyv4902 = make([]ComponentStatus, yyrl4902) } - yyc4928 = true - yyrr4928 = len(yyv4928) - if yyrg4928 { - copy(yyv4928, yyv24928) + yyc4902 = true + yyrr4902 = len(yyv4902) + if yyrg4902 { + copy(yyv4902, yyv24902) } - } else if yyl4928 != len(yyv4928) { - yyv4928 = yyv4928[:yyl4928] - yyc4928 = true + } else if yyl4902 != len(yyv4902) { + yyv4902 = yyv4902[:yyl4902] + yyc4902 = true } - yyj4928 := 0 - for ; yyj4928 < yyrr4928; yyj4928++ { - yyh4928.ElemContainerState(yyj4928) + yyj4902 := 0 + for ; yyj4902 < yyrr4902; yyj4902++ { + yyh4902.ElemContainerState(yyj4902) if r.TryDecodeAsNil() { - yyv4928[yyj4928] = ComponentStatus{} + yyv4902[yyj4902] = ComponentStatus{} } else { - yyv4929 := &yyv4928[yyj4928] - yyv4929.CodecDecodeSelf(d) + yyv4903 := &yyv4902[yyj4902] + yyv4903.CodecDecodeSelf(d) } } - if yyrt4928 { - for ; yyj4928 < yyl4928; yyj4928++ { - yyv4928 = append(yyv4928, ComponentStatus{}) - yyh4928.ElemContainerState(yyj4928) + if yyrt4902 { + for ; yyj4902 < yyl4902; yyj4902++ { + yyv4902 = append(yyv4902, ComponentStatus{}) + yyh4902.ElemContainerState(yyj4902) if r.TryDecodeAsNil() { - yyv4928[yyj4928] = ComponentStatus{} + yyv4902[yyj4902] = ComponentStatus{} } else { - yyv4930 := &yyv4928[yyj4928] - yyv4930.CodecDecodeSelf(d) + yyv4904 := &yyv4902[yyj4902] + yyv4904.CodecDecodeSelf(d) } } } } else { - yyj4928 := 0 - for ; !r.CheckBreak(); yyj4928++ { + yyj4902 := 0 + for ; !r.CheckBreak(); yyj4902++ { - if yyj4928 >= len(yyv4928) { - yyv4928 = append(yyv4928, ComponentStatus{}) // var yyz4928 ComponentStatus - yyc4928 = true + if yyj4902 >= len(yyv4902) { + yyv4902 = append(yyv4902, ComponentStatus{}) // var yyz4902 ComponentStatus + yyc4902 = true } - yyh4928.ElemContainerState(yyj4928) - if yyj4928 < len(yyv4928) { + yyh4902.ElemContainerState(yyj4902) + if yyj4902 < len(yyv4902) { if r.TryDecodeAsNil() { - yyv4928[yyj4928] = ComponentStatus{} + yyv4902[yyj4902] = ComponentStatus{} } else { - yyv4931 := &yyv4928[yyj4928] - yyv4931.CodecDecodeSelf(d) + yyv4905 := &yyv4902[yyj4902] + yyv4905.CodecDecodeSelf(d) } } else { @@ -63544,17 +63245,17 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4928 < len(yyv4928) { - yyv4928 = yyv4928[:yyj4928] - yyc4928 = true - } else if yyj4928 == 0 && yyv4928 == nil { - yyv4928 = []ComponentStatus{} - yyc4928 = true + if yyj4902 < len(yyv4902) { + yyv4902 = yyv4902[:yyj4902] + yyc4902 = true + } else if yyj4902 == 0 && yyv4902 == nil { + yyv4902 = []ComponentStatus{} + yyc4902 = true } } - yyh4928.End() - if yyc4928 { - *v = yyv4928 + yyh4902.End() + if yyc4902 { + *v = yyv4902 } } @@ -63563,10 +63264,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4932 := range v { + for _, yyv4906 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4933 := &yyv4932 - yy4933.CodecEncodeSelf(e) + yy4907 := &yyv4906 + yy4907.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -63576,83 +63277,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4934 := *v - yyh4934, yyl4934 := z.DecSliceHelperStart() - var yyc4934 bool - if yyl4934 == 0 { - if yyv4934 == nil { - yyv4934 = []DownwardAPIVolumeFile{} - yyc4934 = true - } else if len(yyv4934) != 0 { - yyv4934 = yyv4934[:0] - yyc4934 = true + yyv4908 := *v + yyh4908, yyl4908 := z.DecSliceHelperStart() + var yyc4908 bool + if yyl4908 == 0 { + if yyv4908 == nil { + yyv4908 = []DownwardAPIVolumeFile{} + yyc4908 = true + } else if len(yyv4908) != 0 { + yyv4908 = yyv4908[:0] + yyc4908 = true } - } else if yyl4934 > 0 { - var yyrr4934, yyrl4934 int - var yyrt4934 bool - if yyl4934 > cap(yyv4934) { + } else if yyl4908 > 0 { + var yyrr4908, yyrl4908 int + var yyrt4908 bool + if yyl4908 > cap(yyv4908) { - yyrg4934 := len(yyv4934) > 0 - yyv24934 := yyv4934 - yyrl4934, yyrt4934 = z.DecInferLen(yyl4934, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4934 { - if yyrl4934 <= cap(yyv4934) { - yyv4934 = yyv4934[:yyrl4934] + yyrg4908 := len(yyv4908) > 0 + yyv24908 := yyv4908 + yyrl4908, yyrt4908 = z.DecInferLen(yyl4908, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4908 { + if yyrl4908 <= cap(yyv4908) { + yyv4908 = yyv4908[:yyrl4908] } else { - yyv4934 = make([]DownwardAPIVolumeFile, yyrl4934) + yyv4908 = make([]DownwardAPIVolumeFile, yyrl4908) } } else { - yyv4934 = make([]DownwardAPIVolumeFile, yyrl4934) + yyv4908 = make([]DownwardAPIVolumeFile, yyrl4908) } - yyc4934 = true - yyrr4934 = len(yyv4934) - if yyrg4934 { - copy(yyv4934, yyv24934) + yyc4908 = true + yyrr4908 = len(yyv4908) + if yyrg4908 { + copy(yyv4908, yyv24908) } - } else if yyl4934 != len(yyv4934) { - yyv4934 = yyv4934[:yyl4934] - yyc4934 = true + } else if yyl4908 != len(yyv4908) { + yyv4908 = yyv4908[:yyl4908] + yyc4908 = true } - yyj4934 := 0 - for ; yyj4934 < yyrr4934; yyj4934++ { - yyh4934.ElemContainerState(yyj4934) + yyj4908 := 0 + for ; yyj4908 < yyrr4908; yyj4908++ { + yyh4908.ElemContainerState(yyj4908) if r.TryDecodeAsNil() { - yyv4934[yyj4934] = DownwardAPIVolumeFile{} + yyv4908[yyj4908] = DownwardAPIVolumeFile{} } else { - yyv4935 := &yyv4934[yyj4934] - yyv4935.CodecDecodeSelf(d) + yyv4909 := &yyv4908[yyj4908] + yyv4909.CodecDecodeSelf(d) } } - if yyrt4934 { - for ; yyj4934 < yyl4934; yyj4934++ { - yyv4934 = append(yyv4934, DownwardAPIVolumeFile{}) - yyh4934.ElemContainerState(yyj4934) + if yyrt4908 { + for ; yyj4908 < yyl4908; yyj4908++ { + yyv4908 = append(yyv4908, DownwardAPIVolumeFile{}) + yyh4908.ElemContainerState(yyj4908) if r.TryDecodeAsNil() { - yyv4934[yyj4934] = DownwardAPIVolumeFile{} + yyv4908[yyj4908] = DownwardAPIVolumeFile{} } else { - yyv4936 := &yyv4934[yyj4934] - yyv4936.CodecDecodeSelf(d) + yyv4910 := &yyv4908[yyj4908] + yyv4910.CodecDecodeSelf(d) } } } } else { - yyj4934 := 0 - for ; !r.CheckBreak(); yyj4934++ { + yyj4908 := 0 + for ; !r.CheckBreak(); yyj4908++ { - if yyj4934 >= len(yyv4934) { - yyv4934 = append(yyv4934, DownwardAPIVolumeFile{}) // var yyz4934 DownwardAPIVolumeFile - yyc4934 = true + if yyj4908 >= len(yyv4908) { + yyv4908 = append(yyv4908, DownwardAPIVolumeFile{}) // var yyz4908 DownwardAPIVolumeFile + yyc4908 = true } - yyh4934.ElemContainerState(yyj4934) - if yyj4934 < len(yyv4934) { + yyh4908.ElemContainerState(yyj4908) + if yyj4908 < len(yyv4908) { if r.TryDecodeAsNil() { - yyv4934[yyj4934] = DownwardAPIVolumeFile{} + yyv4908[yyj4908] = DownwardAPIVolumeFile{} } else { - yyv4937 := &yyv4934[yyj4934] - yyv4937.CodecDecodeSelf(d) + yyv4911 := &yyv4908[yyj4908] + yyv4911.CodecDecodeSelf(d) } } else { @@ -63660,16 +63361,16 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4934 < len(yyv4934) { - yyv4934 = yyv4934[:yyj4934] - yyc4934 = true - } else if yyj4934 == 0 && yyv4934 == nil { - yyv4934 = []DownwardAPIVolumeFile{} - yyc4934 = true + if yyj4908 < len(yyv4908) { + yyv4908 = yyv4908[:yyj4908] + yyc4908 = true + } else if yyj4908 == 0 && yyv4908 == nil { + yyv4908 = []DownwardAPIVolumeFile{} + yyc4908 = true } } - yyh4934.End() - if yyc4934 { - *v = yyv4934 + yyh4908.End() + if yyc4908 { + *v = yyv4908 } } diff --git a/pkg/api/v1/types_swagger_doc_generated.go b/pkg/api/v1/types_swagger_doc_generated.go index 7322cea87eb..1b41a995bfe 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -493,16 +493,6 @@ func (ExecAction) SwaggerDoc() map[string]string { return map_ExecAction } -var map_ExportOptions = map[string]string{ - "": "ExportOptions is the query options to the standard REST get call.", - "export": "Should this value be exported. Export strips fields that a user can not specify.", - "exact": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", -} - -func (ExportOptions) SwaggerDoc() map[string]string { - return map_ExportOptions -} - var map_FCVolumeSource = map[string]string{ "": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", "targetWWNs": "Required: FC target worldwide names (WWNs)", diff --git a/pkg/api/v1/zz_generated.conversion.go b/pkg/api/v1/zz_generated.conversion.go index 85b0615e970..0f4b511b654 100644 --- a/pkg/api/v1/zz_generated.conversion.go +++ b/pkg/api/v1/zz_generated.conversion.go @@ -119,8 +119,6 @@ func RegisterConversions(scheme *runtime.Scheme) error { Convert_api_EventSource_To_v1_EventSource, Convert_v1_ExecAction_To_api_ExecAction, Convert_api_ExecAction_To_v1_ExecAction, - Convert_v1_ExportOptions_To_api_ExportOptions, - Convert_api_ExportOptions_To_v1_ExportOptions, Convert_v1_FCVolumeSource_To_api_FCVolumeSource, Convert_api_FCVolumeSource_To_v1_FCVolumeSource, Convert_v1_FlexVolumeSource_To_api_FlexVolumeSource, @@ -1344,26 +1342,6 @@ func Convert_api_ExecAction_To_v1_ExecAction(in *api.ExecAction, out *ExecAction return autoConvert_api_ExecAction_To_v1_ExecAction(in, out, s) } -func autoConvert_v1_ExportOptions_To_api_ExportOptions(in *ExportOptions, out *api.ExportOptions, s conversion.Scope) error { - out.Export = in.Export - out.Exact = in.Exact - return nil -} - -func Convert_v1_ExportOptions_To_api_ExportOptions(in *ExportOptions, out *api.ExportOptions, s conversion.Scope) error { - return autoConvert_v1_ExportOptions_To_api_ExportOptions(in, out, s) -} - -func autoConvert_api_ExportOptions_To_v1_ExportOptions(in *api.ExportOptions, out *ExportOptions, s conversion.Scope) error { - out.Export = in.Export - out.Exact = in.Exact - return nil -} - -func Convert_api_ExportOptions_To_v1_ExportOptions(in *api.ExportOptions, out *ExportOptions, s conversion.Scope) error { - return autoConvert_api_ExportOptions_To_v1_ExportOptions(in, out, s) -} - func autoConvert_v1_FCVolumeSource_To_api_FCVolumeSource(in *FCVolumeSource, out *api.FCVolumeSource, s conversion.Scope) error { out.TargetWWNs = *(*[]string)(unsafe.Pointer(&in.TargetWWNs)) out.Lun = (*int32)(unsafe.Pointer(in.Lun)) diff --git a/pkg/api/v1/zz_generated.deepcopy.go b/pkg/api/v1/zz_generated.deepcopy.go index e72949bc304..bd08e9375eb 100644 --- a/pkg/api/v1/zz_generated.deepcopy.go +++ b/pkg/api/v1/zz_generated.deepcopy.go @@ -77,7 +77,6 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_EventList, InType: reflect.TypeOf(&EventList{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_EventSource, InType: reflect.TypeOf(&EventSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ExecAction, InType: reflect.TypeOf(&ExecAction{})}, - conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ExportOptions, InType: reflect.TypeOf(&ExportOptions{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_FCVolumeSource, InType: reflect.TypeOf(&FCVolumeSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_FlexVolumeSource, InType: reflect.TypeOf(&FlexVolumeSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_FlockerVolumeSource, InType: reflect.TypeOf(&FlockerVolumeSource{})}, @@ -1087,17 +1086,6 @@ func DeepCopy_v1_ExecAction(in interface{}, out interface{}, c *conversion.Clone } } -func DeepCopy_v1_ExportOptions(in interface{}, out interface{}, c *conversion.Cloner) error { - { - in := in.(*ExportOptions) - out := out.(*ExportOptions) - out.TypeMeta = in.TypeMeta - out.Export = in.Export - out.Exact = in.Exact - return nil - } -} - func DeepCopy_v1_FCVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error { { in := in.(*FCVolumeSource) diff --git a/pkg/api/zz_generated.deepcopy.go b/pkg/api/zz_generated.deepcopy.go index 2a559f17b43..8e227119b3a 100644 --- a/pkg/api/zz_generated.deepcopy.go +++ b/pkg/api/zz_generated.deepcopy.go @@ -80,7 +80,6 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_EventList, InType: reflect.TypeOf(&EventList{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_EventSource, InType: reflect.TypeOf(&EventSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_ExecAction, InType: reflect.TypeOf(&ExecAction{})}, - conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_ExportOptions, InType: reflect.TypeOf(&ExportOptions{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_FCVolumeSource, InType: reflect.TypeOf(&FCVolumeSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_FlexVolumeSource, InType: reflect.TypeOf(&FlexVolumeSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_FlockerVolumeSource, InType: reflect.TypeOf(&FlockerVolumeSource{})}, @@ -1113,17 +1112,6 @@ func DeepCopy_api_ExecAction(in interface{}, out interface{}, c *conversion.Clon } } -func DeepCopy_api_ExportOptions(in interface{}, out interface{}, c *conversion.Cloner) error { - { - in := in.(*ExportOptions) - out := out.(*ExportOptions) - out.TypeMeta = in.TypeMeta - out.Export = in.Export - out.Exact = in.Exact - return nil - } -} - func DeepCopy_api_FCVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error { { in := in.(*FCVolumeSource) diff --git a/pkg/apis/extensions/v1beta1/generated.pb.go b/pkg/apis/extensions/v1beta1/generated.pb.go index 95fa74c4f2e..1a8ae6ec969 100644 --- a/pkg/apis/extensions/v1beta1/generated.pb.go +++ b/pkg/apis/extensions/v1beta1/generated.pb.go @@ -42,7 +42,6 @@ limitations under the License. DeploymentSpec DeploymentStatus DeploymentStrategy - ExportOptions FSGroupStrategyOptions HTTPIngressPath HTTPIngressRuleValue @@ -192,229 +191,225 @@ func (m *DeploymentStrategy) Reset() { *m = DeploymentStrateg func (*DeploymentStrategy) ProtoMessage() {} func (*DeploymentStrategy) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{16} } -func (m *ExportOptions) Reset() { *m = ExportOptions{} } -func (*ExportOptions) ProtoMessage() {} -func (*ExportOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{17} } - func (m *FSGroupStrategyOptions) Reset() { *m = FSGroupStrategyOptions{} } func (*FSGroupStrategyOptions) ProtoMessage() {} -func (*FSGroupStrategyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{18} } +func (*FSGroupStrategyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{17} } func (m *HTTPIngressPath) Reset() { *m = HTTPIngressPath{} } func (*HTTPIngressPath) ProtoMessage() {} -func (*HTTPIngressPath) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{19} } +func (*HTTPIngressPath) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{18} } func (m *HTTPIngressRuleValue) Reset() { *m = HTTPIngressRuleValue{} } func (*HTTPIngressRuleValue) ProtoMessage() {} -func (*HTTPIngressRuleValue) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{20} } +func (*HTTPIngressRuleValue) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{19} } func (m *HorizontalPodAutoscaler) Reset() { *m = HorizontalPodAutoscaler{} } func (*HorizontalPodAutoscaler) ProtoMessage() {} func (*HorizontalPodAutoscaler) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{21} + return fileDescriptorGenerated, []int{20} } func (m *HorizontalPodAutoscalerList) Reset() { *m = HorizontalPodAutoscalerList{} } func (*HorizontalPodAutoscalerList) ProtoMessage() {} func (*HorizontalPodAutoscalerList) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{22} + return fileDescriptorGenerated, []int{21} } func (m *HorizontalPodAutoscalerSpec) Reset() { *m = HorizontalPodAutoscalerSpec{} } func (*HorizontalPodAutoscalerSpec) ProtoMessage() {} func (*HorizontalPodAutoscalerSpec) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{23} + return fileDescriptorGenerated, []int{22} } func (m *HorizontalPodAutoscalerStatus) Reset() { *m = HorizontalPodAutoscalerStatus{} } func (*HorizontalPodAutoscalerStatus) ProtoMessage() {} func (*HorizontalPodAutoscalerStatus) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{24} + return fileDescriptorGenerated, []int{23} } func (m *HostPortRange) Reset() { *m = HostPortRange{} } func (*HostPortRange) ProtoMessage() {} -func (*HostPortRange) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{25} } +func (*HostPortRange) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{24} } func (m *IDRange) Reset() { *m = IDRange{} } func (*IDRange) ProtoMessage() {} -func (*IDRange) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{26} } +func (*IDRange) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{25} } func (m *Ingress) Reset() { *m = Ingress{} } func (*Ingress) ProtoMessage() {} -func (*Ingress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{27} } +func (*Ingress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{26} } func (m *IngressBackend) Reset() { *m = IngressBackend{} } func (*IngressBackend) ProtoMessage() {} -func (*IngressBackend) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{28} } +func (*IngressBackend) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{27} } func (m *IngressList) Reset() { *m = IngressList{} } func (*IngressList) ProtoMessage() {} -func (*IngressList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{29} } +func (*IngressList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{28} } func (m *IngressRule) Reset() { *m = IngressRule{} } func (*IngressRule) ProtoMessage() {} -func (*IngressRule) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{30} } +func (*IngressRule) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{29} } func (m *IngressRuleValue) Reset() { *m = IngressRuleValue{} } func (*IngressRuleValue) ProtoMessage() {} -func (*IngressRuleValue) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{31} } +func (*IngressRuleValue) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{30} } func (m *IngressSpec) Reset() { *m = IngressSpec{} } func (*IngressSpec) ProtoMessage() {} -func (*IngressSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{32} } +func (*IngressSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{31} } func (m *IngressStatus) Reset() { *m = IngressStatus{} } func (*IngressStatus) ProtoMessage() {} -func (*IngressStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{33} } +func (*IngressStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{32} } func (m *IngressTLS) Reset() { *m = IngressTLS{} } func (*IngressTLS) ProtoMessage() {} -func (*IngressTLS) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{34} } +func (*IngressTLS) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{33} } func (m *Job) Reset() { *m = Job{} } func (*Job) ProtoMessage() {} -func (*Job) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{35} } +func (*Job) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{34} } func (m *JobCondition) Reset() { *m = JobCondition{} } func (*JobCondition) ProtoMessage() {} -func (*JobCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{36} } +func (*JobCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{35} } func (m *JobList) Reset() { *m = JobList{} } func (*JobList) ProtoMessage() {} -func (*JobList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{37} } +func (*JobList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{36} } func (m *JobSpec) Reset() { *m = JobSpec{} } func (*JobSpec) ProtoMessage() {} -func (*JobSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{38} } +func (*JobSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{37} } func (m *JobStatus) Reset() { *m = JobStatus{} } func (*JobStatus) ProtoMessage() {} -func (*JobStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{39} } +func (*JobStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{38} } func (m *NetworkPolicy) Reset() { *m = NetworkPolicy{} } func (*NetworkPolicy) ProtoMessage() {} -func (*NetworkPolicy) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{40} } +func (*NetworkPolicy) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{39} } func (m *NetworkPolicyIngressRule) Reset() { *m = NetworkPolicyIngressRule{} } func (*NetworkPolicyIngressRule) ProtoMessage() {} func (*NetworkPolicyIngressRule) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{41} + return fileDescriptorGenerated, []int{40} } func (m *NetworkPolicyList) Reset() { *m = NetworkPolicyList{} } func (*NetworkPolicyList) ProtoMessage() {} -func (*NetworkPolicyList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{42} } +func (*NetworkPolicyList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{41} } func (m *NetworkPolicyPeer) Reset() { *m = NetworkPolicyPeer{} } func (*NetworkPolicyPeer) ProtoMessage() {} -func (*NetworkPolicyPeer) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{43} } +func (*NetworkPolicyPeer) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{42} } func (m *NetworkPolicyPort) Reset() { *m = NetworkPolicyPort{} } func (*NetworkPolicyPort) ProtoMessage() {} -func (*NetworkPolicyPort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{44} } +func (*NetworkPolicyPort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{43} } func (m *NetworkPolicySpec) Reset() { *m = NetworkPolicySpec{} } func (*NetworkPolicySpec) ProtoMessage() {} -func (*NetworkPolicySpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{45} } +func (*NetworkPolicySpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{44} } func (m *PodSecurityPolicy) Reset() { *m = PodSecurityPolicy{} } func (*PodSecurityPolicy) ProtoMessage() {} -func (*PodSecurityPolicy) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{46} } +func (*PodSecurityPolicy) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{45} } func (m *PodSecurityPolicyList) Reset() { *m = PodSecurityPolicyList{} } func (*PodSecurityPolicyList) ProtoMessage() {} -func (*PodSecurityPolicyList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{47} } +func (*PodSecurityPolicyList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{46} } func (m *PodSecurityPolicySpec) Reset() { *m = PodSecurityPolicySpec{} } func (*PodSecurityPolicySpec) ProtoMessage() {} -func (*PodSecurityPolicySpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{48} } +func (*PodSecurityPolicySpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{47} } func (m *ReplicaSet) Reset() { *m = ReplicaSet{} } func (*ReplicaSet) ProtoMessage() {} -func (*ReplicaSet) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{49} } +func (*ReplicaSet) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{48} } func (m *ReplicaSetCondition) Reset() { *m = ReplicaSetCondition{} } func (*ReplicaSetCondition) ProtoMessage() {} -func (*ReplicaSetCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{50} } +func (*ReplicaSetCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{49} } 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{50} } 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{51} } 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{52} } func (m *ReplicationControllerDummy) Reset() { *m = ReplicationControllerDummy{} } func (*ReplicationControllerDummy) ProtoMessage() {} func (*ReplicationControllerDummy) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{54} + return fileDescriptorGenerated, []int{53} } 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{54} } func (m *RollingUpdateDeployment) Reset() { *m = RollingUpdateDeployment{} } func (*RollingUpdateDeployment) ProtoMessage() {} func (*RollingUpdateDeployment) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{56} + return fileDescriptorGenerated, []int{55} } func (m *RunAsUserStrategyOptions) Reset() { *m = RunAsUserStrategyOptions{} } func (*RunAsUserStrategyOptions) ProtoMessage() {} func (*RunAsUserStrategyOptions) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{57} + return fileDescriptorGenerated, []int{56} } 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{57} } 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{58} } 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{59} } 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{60} } 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{61} } func (m *SupplementalGroupsStrategyOptions) Reset() { *m = SupplementalGroupsStrategyOptions{} } func (*SupplementalGroupsStrategyOptions) ProtoMessage() {} func (*SupplementalGroupsStrategyOptions) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{63} + return fileDescriptorGenerated, []int{62} } 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{63} } 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{64} } func (m *ThirdPartyResourceDataList) Reset() { *m = ThirdPartyResourceDataList{} } func (*ThirdPartyResourceDataList) ProtoMessage() {} func (*ThirdPartyResourceDataList) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{66} + return fileDescriptorGenerated, []int{65} } 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{66} } func init() { proto.RegisterType((*APIVersion)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.APIVersion") @@ -434,7 +429,6 @@ func init() { proto.RegisterType((*DeploymentSpec)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.DeploymentSpec") proto.RegisterType((*DeploymentStatus)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.DeploymentStatus") proto.RegisterType((*DeploymentStrategy)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.DeploymentStrategy") - proto.RegisterType((*ExportOptions)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.ExportOptions") proto.RegisterType((*FSGroupStrategyOptions)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.FSGroupStrategyOptions") proto.RegisterType((*HTTPIngressPath)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.HTTPIngressPath") proto.RegisterType((*HTTPIngressRuleValue)(nil), "k8s.io.kubernetes.pkg.apis.extensions.v1beta1.HTTPIngressRuleValue") @@ -1129,40 +1123,6 @@ func (m *DeploymentStrategy) MarshalTo(data []byte) (int, error) { return i, nil } -func (m *ExportOptions) 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 *ExportOptions) MarshalTo(data []byte) (int, error) { - var i int - _ = i - var l int - _ = l - data[i] = 0x8 - i++ - if m.Export { - data[i] = 1 - } else { - data[i] = 0 - } - i++ - data[i] = 0x10 - i++ - if m.Exact { - data[i] = 1 - } else { - data[i] = 0 - } - i++ - return i, nil -} - func (m *FSGroupStrategyOptions) Marshal() (data []byte, err error) { size := m.Size() data = make([]byte, size) @@ -3395,14 +3355,6 @@ func (m *DeploymentStrategy) Size() (n int) { return n } -func (m *ExportOptions) Size() (n int) { - var l int - _ = l - n += 2 - n += 2 - return n -} - func (m *FSGroupStrategyOptions) Size() (n int) { var l int _ = l @@ -4337,17 +4289,6 @@ func (this *DeploymentStrategy) String() string { }, "") return s } -func (this *ExportOptions) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&ExportOptions{`, - `Export:` + fmt.Sprintf("%v", this.Export) + `,`, - `Exact:` + fmt.Sprintf("%v", this.Exact) + `,`, - `}`, - }, "") - return s -} func (this *FSGroupStrategyOptions) String() string { if this == nil { return "nil" @@ -7235,96 +7176,6 @@ func (m *DeploymentStrategy) Unmarshal(data []byte) error { } return nil } -func (m *ExportOptions) 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: ExportOptions: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ExportOptions: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Export", wireType) - } - var v int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - v |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - m.Export = bool(v != 0) - case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Exact", wireType) - } - var v int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - v |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - m.Exact = bool(v != 0) - 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 *FSGroupStrategyOptions) Unmarshal(data []byte) error { l := len(data) iNdEx := 0 @@ -13941,250 +13792,248 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 3919 bytes of a gzipped FileDescriptorProto + // 3876 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe4, 0x5b, 0x5d, 0x6c, 0x24, 0xd9, - 0x55, 0x9e, 0xea, 0x76, 0xdb, 0xed, 0xd3, 0x63, 0x8f, 0xe7, 0x8e, 0xc7, 0xd3, 0xeb, 0xdd, 0x75, - 0x4f, 0x6a, 0xc5, 0x66, 0x22, 0x76, 0xdb, 0xcc, 0xb0, 0x13, 0x36, 0xbb, 0x9b, 0x4d, 0xdc, 0xf6, - 0xfc, 0x62, 0xcf, 0x74, 0x6e, 0xdb, 0x93, 0x21, 0xd9, 0x6c, 0xa8, 0xee, 0xba, 0x6e, 0xd7, 0xba, - 0xfe, 0xb6, 0xea, 0x96, 0xd7, 0x9d, 0x08, 0x25, 0x12, 0xe2, 0x35, 0xe4, 0x0d, 0x24, 0xe0, 0x81, - 0x07, 0xc4, 0x13, 0x11, 0x11, 0x48, 0x91, 0x78, 0x02, 0x04, 0x62, 0x91, 0x40, 0x04, 0x24, 0x04, - 0x0f, 0xd0, 0xcb, 0x3a, 0x42, 0x11, 0xef, 0x08, 0xa4, 0xe1, 0x05, 0xdd, 0x5b, 0xb7, 0x7e, 0xbb, - 0xaa, 0xc7, 0xd5, 0xfe, 0x91, 0x10, 0x6f, 0xdd, 0xf7, 0x9e, 0xf3, 0x9d, 0x73, 0x4f, 0x9d, 0x3a, - 0xe7, 0xdc, 0x7b, 0x4f, 0xc1, 0x17, 0xf7, 0xdf, 0x74, 0x9b, 0x9a, 0xb5, 0xba, 0xef, 0x75, 0x89, - 0x63, 0x12, 0x4a, 0xdc, 0x55, 0x7b, 0xbf, 0xbf, 0xaa, 0xd8, 0x9a, 0xbb, 0x4a, 0x0e, 0x29, 0x31, - 0x5d, 0xcd, 0x32, 0xdd, 0xd5, 0x83, 0x9b, 0x5d, 0x42, 0x95, 0x9b, 0xab, 0x7d, 0x62, 0x12, 0x47, - 0xa1, 0x44, 0x6d, 0xda, 0x8e, 0x45, 0x2d, 0xf4, 0xba, 0xcf, 0xde, 0x8c, 0xd8, 0x9b, 0xf6, 0x7e, - 0xbf, 0xc9, 0xd8, 0x9b, 0x11, 0x7b, 0x53, 0xb0, 0x2f, 0xbf, 0xde, 0xd7, 0xe8, 0x9e, 0xd7, 0x6d, - 0xf6, 0x2c, 0x63, 0xb5, 0x6f, 0xf5, 0xad, 0x55, 0x8e, 0xd2, 0xf5, 0x76, 0xf9, 0x3f, 0xfe, 0x87, - 0xff, 0xf2, 0xd1, 0x97, 0x6f, 0xe5, 0x2a, 0xb7, 0xea, 0x10, 0xd7, 0xf2, 0x9c, 0x1e, 0x49, 0x6b, - 0xb4, 0x7c, 0x3b, 0x9f, 0xc7, 0x33, 0x0f, 0x88, 0xc3, 0x14, 0x22, 0xea, 0x08, 0xdb, 0x6b, 0xf9, - 0x6c, 0x07, 0x23, 0xcb, 0x5e, 0x7e, 0x3d, 0x9b, 0xda, 0xf1, 0x4c, 0xaa, 0x19, 0xa3, 0x3a, 0xbd, - 0x31, 0x9e, 0xdc, 0xed, 0xed, 0x11, 0x43, 0x19, 0xe1, 0xba, 0x99, 0xcd, 0xe5, 0x51, 0x4d, 0x5f, - 0xd5, 0x4c, 0xea, 0x52, 0x27, 0xcd, 0x22, 0x37, 0x01, 0xd6, 0xda, 0x0f, 0x9e, 0xf8, 0xab, 0x44, - 0xd7, 0x61, 0xca, 0x54, 0x0c, 0x52, 0x97, 0xae, 0x4b, 0x37, 0x66, 0x5b, 0x17, 0x3f, 0x1e, 0x36, - 0x2e, 0x1c, 0x0d, 0x1b, 0x53, 0x8f, 0x14, 0x83, 0x60, 0x3e, 0x23, 0xbf, 0x07, 0x8b, 0xeb, 0xed, - 0x9d, 0x6d, 0xc5, 0xe9, 0x13, 0xba, 0x43, 0x35, 0x5d, 0xfb, 0x96, 0x42, 0x19, 0xe7, 0x06, 0x2c, - 0x50, 0x3e, 0xd8, 0x26, 0x4e, 0x8f, 0x98, 0x54, 0xe9, 0xfb, 0x28, 0x95, 0x56, 0x5d, 0xa0, 0x2c, - 0x6c, 0xa7, 0xe6, 0xf1, 0x08, 0x87, 0xfc, 0x1b, 0x12, 0xbc, 0xb0, 0xee, 0xb9, 0xd4, 0x32, 0xb6, - 0x08, 0x75, 0xb4, 0xde, 0xba, 0xe7, 0x38, 0xc4, 0xa4, 0x1d, 0xaa, 0x50, 0xcf, 0x7d, 0xbe, 0x76, - 0xe8, 0x29, 0x54, 0x0e, 0x14, 0xdd, 0x23, 0xf5, 0xd2, 0x75, 0xe9, 0x46, 0xed, 0xd6, 0x6b, 0xcd, - 0x5c, 0x67, 0x6b, 0x06, 0xee, 0xd0, 0xfc, 0x8a, 0xa7, 0x98, 0x54, 0xa3, 0x83, 0xd6, 0xa2, 0x00, - 0xbc, 0x28, 0xa4, 0x3e, 0x61, 0x48, 0xd8, 0x07, 0x94, 0xbf, 0x27, 0xc1, 0xcb, 0xb9, 0x9a, 0x6d, - 0x6a, 0x2e, 0x45, 0x06, 0x54, 0x34, 0x4a, 0x0c, 0xb7, 0x2e, 0x5d, 0x2f, 0xdf, 0xa8, 0xdd, 0xba, - 0xdf, 0x2c, 0xe4, 0xe8, 0xcd, 0x5c, 0xf0, 0xd6, 0x9c, 0xd0, 0xab, 0xf2, 0x80, 0xc1, 0x63, 0x5f, - 0x8a, 0xfc, 0xeb, 0x12, 0xa0, 0x38, 0x8f, 0x6f, 0xdd, 0x63, 0xd8, 0xe8, 0xab, 0x27, 0xb1, 0xd1, - 0x15, 0x01, 0x58, 0xf3, 0xc5, 0x25, 0x4c, 0xf4, 0x5d, 0x09, 0x96, 0x46, 0x35, 0xe2, 0xb6, 0xd9, - 0x4d, 0xda, 0x66, 0xed, 0x04, 0xb6, 0xf1, 0x51, 0x73, 0x8c, 0xf2, 0x07, 0x25, 0x98, 0xdd, 0x50, - 0x88, 0x61, 0x99, 0x1d, 0x42, 0xd1, 0x53, 0xa8, 0x1a, 0x84, 0x2a, 0xaa, 0x42, 0x15, 0x6e, 0x8f, - 0xda, 0xad, 0x1b, 0x63, 0x16, 0x7b, 0x70, 0xb3, 0xf9, 0xb8, 0xfb, 0x01, 0xe9, 0xd1, 0x2d, 0x42, - 0x95, 0x16, 0x12, 0xf8, 0x10, 0x8d, 0xe1, 0x10, 0x0d, 0xbd, 0x0f, 0x53, 0xae, 0x4d, 0x7a, 0xc2, - 0x84, 0xef, 0x14, 0x5c, 0x4e, 0xa8, 0x61, 0xc7, 0x26, 0xbd, 0xe8, 0x19, 0xb1, 0x7f, 0x98, 0xe3, - 0xa2, 0x5d, 0x98, 0x76, 0xf9, 0xc3, 0xaf, 0x97, 0xb9, 0x84, 0x77, 0x27, 0x96, 0xe0, 0xbb, 0xd0, - 0xbc, 0x90, 0x31, 0xed, 0xff, 0xc7, 0x02, 0x5d, 0xfe, 0x5b, 0x09, 0xe6, 0x42, 0x5a, 0xfe, 0xa4, - 0xbe, 0x31, 0x62, 0xb3, 0xd5, 0x31, 0x36, 0x8b, 0xc5, 0xc7, 0x26, 0x63, 0xe7, 0xa6, 0x5b, 0x10, - 0xc2, 0xaa, 0xc1, 0x48, 0xcc, 0x70, 0xdf, 0x08, 0x1c, 0xa1, 0xc4, 0x1d, 0xe1, 0xcd, 0x49, 0xd7, - 0x95, 0xf3, 0xfc, 0xff, 0x26, 0xbe, 0x1e, 0x66, 0x4f, 0xf4, 0x3e, 0x54, 0x5d, 0xa2, 0x93, 0x1e, - 0xb5, 0x1c, 0xb1, 0x9e, 0x37, 0x8e, 0xbb, 0x1e, 0xa5, 0x4b, 0xf4, 0x8e, 0xe0, 0x6d, 0x5d, 0x64, - 0x0b, 0x0a, 0xfe, 0xe1, 0x10, 0x13, 0x7d, 0x1d, 0xaa, 0x94, 0x18, 0xb6, 0xae, 0xd0, 0xe0, 0x85, - 0x7a, 0x7d, 0xbc, 0x8f, 0xb5, 0x2d, 0x75, 0x5b, 0x30, 0xf0, 0xc7, 0x1f, 0x5a, 0x2b, 0x18, 0xc5, - 0x21, 0xa0, 0xfc, 0x17, 0x25, 0xb8, 0x94, 0x7a, 0x94, 0xe8, 0x09, 0x2c, 0xf5, 0xfc, 0xf0, 0xf0, - 0xc8, 0x33, 0xba, 0xc4, 0xe9, 0xf4, 0xf6, 0x88, 0xea, 0xe9, 0x44, 0x15, 0xe1, 0x76, 0x45, 0xe0, - 0x2d, 0xad, 0x67, 0x52, 0xe1, 0x1c, 0x6e, 0xf4, 0x10, 0x90, 0xc9, 0x87, 0xb6, 0x34, 0xd7, 0x0d, - 0x31, 0x4b, 0x1c, 0x73, 0x59, 0x60, 0xa2, 0x47, 0x23, 0x14, 0x38, 0x83, 0x8b, 0xe9, 0xa8, 0x12, - 0x57, 0x73, 0x88, 0x9a, 0xd6, 0xb1, 0x9c, 0xd4, 0x71, 0x23, 0x93, 0x0a, 0xe7, 0x70, 0xa3, 0xdb, - 0x50, 0xf3, 0xa5, 0x61, 0xa2, 0xa8, 0x83, 0xfa, 0x14, 0x07, 0x0b, 0x43, 0xd2, 0xa3, 0x68, 0x0a, - 0xc7, 0xe9, 0xe4, 0x3f, 0x2c, 0x01, 0x6c, 0x10, 0x5b, 0xb7, 0x06, 0x06, 0x31, 0xcf, 0x32, 0x2c, - 0x7c, 0x33, 0x11, 0x16, 0xbe, 0x58, 0xd4, 0xb9, 0x43, 0x15, 0x73, 0xe3, 0x42, 0x3f, 0x15, 0x17, - 0xbe, 0x34, 0xb9, 0x88, 0xf1, 0x81, 0xe1, 0x27, 0x65, 0xb8, 0x12, 0x11, 0xaf, 0x5b, 0xa6, 0xaa, - 0xf1, 0x34, 0xff, 0x36, 0x4c, 0xd1, 0x81, 0x1d, 0xa4, 0x97, 0xcf, 0x06, 0x2a, 0x6e, 0x0f, 0x6c, - 0xf2, 0x6c, 0xd8, 0xb8, 0x96, 0xc1, 0xc2, 0xa6, 0x30, 0x67, 0x42, 0x4f, 0x42, 0xed, 0x4b, 0x9c, - 0xfd, 0xdd, 0xa4, 0xf0, 0x67, 0xc3, 0xc6, 0xd8, 0x9a, 0xaa, 0x19, 0x62, 0x26, 0x95, 0x45, 0xaf, - 0xc2, 0xb4, 0x43, 0x14, 0xd7, 0x32, 0xb9, 0x47, 0xcc, 0x46, 0x8b, 0xc2, 0x7c, 0x14, 0x8b, 0x59, - 0xf4, 0x39, 0x98, 0x31, 0x88, 0xeb, 0xb2, 0xd2, 0xa4, 0xc2, 0x09, 0x2f, 0x09, 0xc2, 0x99, 0x2d, - 0x7f, 0x18, 0x07, 0xf3, 0x68, 0x1f, 0xe6, 0x75, 0xc5, 0xa5, 0x3b, 0xb6, 0xaa, 0x50, 0xb2, 0xad, - 0x19, 0xa4, 0x3e, 0xcd, 0x0d, 0xfe, 0xb3, 0xc7, 0x0c, 0x1e, 0x8c, 0xa5, 0xb5, 0x24, 0xe0, 0xe7, - 0x37, 0x13, 0x50, 0x38, 0x05, 0x8d, 0x3e, 0x02, 0xc4, 0x46, 0xb6, 0x1d, 0xc5, 0x74, 0x7d, 0x9b, - 0x31, 0x81, 0x33, 0xc5, 0x05, 0x86, 0xef, 0xe9, 0xe6, 0x08, 0x1c, 0xce, 0x10, 0x21, 0xff, 0x9d, - 0x04, 0xf3, 0xd1, 0x23, 0x3b, 0x8f, 0xf8, 0xff, 0x7e, 0x32, 0xfe, 0x7f, 0x61, 0x62, 0xff, 0xcd, - 0x49, 0x00, 0xbf, 0x59, 0x06, 0x14, 0x11, 0x61, 0x4b, 0xd7, 0xbb, 0x4a, 0x6f, 0xff, 0x18, 0x55, - 0xd1, 0xef, 0x49, 0x80, 0x3c, 0xfe, 0x48, 0xd4, 0x35, 0xd3, 0xb4, 0x28, 0xaf, 0x6a, 0x03, 0x35, - 0x7f, 0x69, 0x62, 0x35, 0x03, 0x0d, 0x9a, 0x3b, 0x23, 0xd8, 0x77, 0x4c, 0xea, 0x0c, 0xa2, 0x47, - 0x36, 0x4a, 0x80, 0x33, 0x14, 0x42, 0x1f, 0x02, 0x38, 0x02, 0x73, 0xdb, 0x12, 0x51, 0xa0, 0x68, - 0xa0, 0x09, 0x94, 0x5a, 0xb7, 0xcc, 0x5d, 0xad, 0x1f, 0xc5, 0x34, 0x1c, 0x02, 0xe3, 0x98, 0x90, - 0xe5, 0x3b, 0x70, 0x2d, 0x47, 0x7b, 0xb4, 0x00, 0xe5, 0x7d, 0x32, 0xf0, 0xcd, 0x8a, 0xd9, 0x4f, - 0xb4, 0x18, 0xaf, 0x2e, 0x67, 0x45, 0x69, 0xf8, 0x56, 0xe9, 0x4d, 0x49, 0xfe, 0x69, 0x25, 0xee, - 0x6c, 0x3c, 0x39, 0xdf, 0x80, 0xaa, 0x43, 0x6c, 0x5d, 0xeb, 0x29, 0xae, 0xc8, 0x5e, 0x3c, 0xcd, - 0x62, 0x31, 0x86, 0xc3, 0xd9, 0x44, 0x1a, 0x2f, 0x9d, 0x71, 0x1a, 0x2f, 0x9f, 0x72, 0x1a, 0x47, - 0x16, 0x54, 0x5d, 0xca, 0x36, 0x5d, 0x7d, 0x3f, 0x67, 0x15, 0x2f, 0x80, 0xe3, 0x71, 0xdb, 0x07, - 0x8a, 0x04, 0x06, 0x23, 0x38, 0x14, 0x82, 0xd6, 0xe0, 0x92, 0xa1, 0x99, 0x3c, 0xf9, 0x75, 0x48, - 0xcf, 0x32, 0x55, 0x97, 0x07, 0xbc, 0x4a, 0xeb, 0x9a, 0x60, 0xba, 0xb4, 0x95, 0x9c, 0xc6, 0x69, - 0x7a, 0xb4, 0x09, 0x8b, 0x0e, 0x39, 0xd0, 0x98, 0x1a, 0xf7, 0x35, 0x97, 0x5a, 0xce, 0x60, 0x53, - 0x33, 0x34, 0xca, 0xc3, 0x60, 0xa5, 0x55, 0x3f, 0x1a, 0x36, 0x16, 0x71, 0xc6, 0x3c, 0xce, 0xe4, - 0x62, 0x11, 0xda, 0x56, 0x3c, 0x97, 0xa8, 0x3c, 0xaa, 0x55, 0xa3, 0x08, 0xdd, 0xe6, 0xa3, 0x58, - 0xcc, 0x22, 0x23, 0xe1, 0xdd, 0xd5, 0xd3, 0xf0, 0xee, 0xf9, 0x7c, 0xcf, 0x46, 0x3b, 0x70, 0xcd, - 0x76, 0xac, 0xbe, 0x43, 0x5c, 0x77, 0x83, 0x28, 0xaa, 0xae, 0x99, 0x24, 0xb0, 0xd7, 0x2c, 0x5f, - 0xe7, 0x8b, 0x47, 0xc3, 0xc6, 0xb5, 0x76, 0x36, 0x09, 0xce, 0xe3, 0x95, 0x3f, 0x29, 0xc3, 0x42, - 0x3a, 0xd3, 0xb2, 0xfa, 0xca, 0xea, 0xba, 0xc4, 0x39, 0x20, 0xea, 0x3d, 0x7f, 0x0f, 0xae, 0x59, - 0x26, 0xf7, 0xfa, 0x72, 0x14, 0x04, 0x1e, 0x8f, 0x50, 0xe0, 0x0c, 0x2e, 0xf4, 0x5a, 0xec, 0xbd, - 0xf1, 0x2b, 0xb4, 0xd0, 0x1b, 0x32, 0xde, 0x9d, 0x35, 0xb8, 0x24, 0x02, 0x49, 0x30, 0x29, 0xca, - 0xb0, 0xd0, 0x1b, 0x76, 0x92, 0xd3, 0x38, 0x4d, 0x8f, 0xee, 0xc1, 0x65, 0xe5, 0x40, 0xd1, 0x74, - 0xa5, 0xab, 0x93, 0x10, 0xc4, 0x2f, 0xbf, 0x5e, 0x10, 0x20, 0x97, 0xd7, 0xd2, 0x04, 0x78, 0x94, - 0x07, 0x6d, 0xc1, 0x15, 0xcf, 0x1c, 0x85, 0xf2, 0xbd, 0xf3, 0x45, 0x01, 0x75, 0x65, 0x67, 0x94, - 0x04, 0x67, 0xf1, 0xa1, 0x03, 0x80, 0x5e, 0x50, 0x14, 0xb8, 0xf5, 0x69, 0x1e, 0xac, 0x5b, 0x13, - 0xbf, 0x5b, 0x61, 0x7d, 0x11, 0x85, 0xc4, 0x70, 0xc8, 0xc5, 0x31, 0x49, 0xf2, 0xdf, 0x4b, 0xf1, - 0x34, 0x13, 0xbc, 0x81, 0xe8, 0xad, 0x44, 0x75, 0xf4, 0x6a, 0xaa, 0x3a, 0x5a, 0x1a, 0xe5, 0x88, - 0x15, 0x47, 0xdf, 0x81, 0x39, 0xe6, 0x99, 0x9a, 0xd9, 0xf7, 0x9f, 0x86, 0x08, 0x73, 0x77, 0x27, - 0xf0, 0xfe, 0x10, 0x23, 0x96, 0x2e, 0x2f, 0x1f, 0x0d, 0x1b, 0x73, 0x89, 0x49, 0x9c, 0x94, 0x27, - 0xbf, 0x07, 0x73, 0x77, 0x0e, 0x6d, 0xcb, 0xa1, 0x8f, 0x6d, 0x3f, 0xd5, 0xbc, 0x0a, 0xd3, 0x84, - 0x0f, 0xf0, 0xf5, 0xc4, 0x5e, 0x5a, 0x9f, 0x0c, 0x8b, 0x59, 0xf4, 0x0a, 0x54, 0xc8, 0xa1, 0xd2, - 0xa3, 0x5c, 0xe3, 0x6a, 0x94, 0x98, 0xef, 0xb0, 0x41, 0xec, 0xcf, 0xc9, 0x3f, 0x94, 0x60, 0xe9, - 0x6e, 0xe7, 0x9e, 0x63, 0x79, 0x76, 0xb0, 0xf8, 0x40, 0xce, 0x2f, 0xc0, 0x94, 0xe3, 0xe9, 0x81, - 0xd5, 0x5e, 0x09, 0xac, 0x86, 0x3d, 0x9d, 0x59, 0xed, 0x4a, 0x8a, 0xcb, 0x37, 0x19, 0x63, 0x40, - 0xef, 0xc3, 0xb4, 0xa3, 0x98, 0x7d, 0x12, 0xa4, 0xe9, 0xcf, 0x17, 0xb4, 0xd5, 0x83, 0x0d, 0xcc, - 0xd8, 0x63, 0xf5, 0x22, 0x47, 0xc3, 0x02, 0x55, 0xfe, 0x1d, 0x09, 0x2e, 0xdd, 0xdf, 0xde, 0x6e, - 0x3f, 0x30, 0xf9, 0x6b, 0xde, 0x56, 0xe8, 0x1e, 0xab, 0x24, 0x6c, 0x85, 0xee, 0xa5, 0x2b, 0x09, - 0x36, 0x87, 0xf9, 0x0c, 0xda, 0x83, 0x19, 0x16, 0x5e, 0x88, 0xa9, 0x4e, 0xb8, 0x0f, 0x10, 0xe2, - 0x5a, 0x3e, 0x48, 0x54, 0xa4, 0x8a, 0x01, 0x1c, 0xc0, 0xcb, 0xdf, 0x86, 0xc5, 0x98, 0x7a, 0xcc, - 0x5e, 0xfc, 0x3c, 0x06, 0xf5, 0xa0, 0xc2, 0x34, 0x09, 0x4e, 0x5b, 0x8a, 0x1e, 0x1e, 0xa4, 0x96, - 0x1c, 0x3d, 0x50, 0xf6, 0xcf, 0xc5, 0x3e, 0xb6, 0xfc, 0x4f, 0x25, 0xb8, 0x76, 0xdf, 0x72, 0xb4, - 0x6f, 0x59, 0x26, 0x55, 0xf4, 0xb6, 0xa5, 0xae, 0x79, 0xd4, 0x72, 0x7b, 0x8a, 0x4e, 0x9c, 0x33, - 0xdc, 0x61, 0xe9, 0x89, 0x1d, 0xd6, 0xc3, 0xa2, 0x2b, 0xcb, 0xd6, 0x37, 0x77, 0xbb, 0x45, 0x53, - 0xdb, 0xad, 0xcd, 0x53, 0x92, 0x37, 0x7e, 0xef, 0xf5, 0x1f, 0x12, 0xbc, 0x98, 0xc3, 0x79, 0x1e, - 0x25, 0xfa, 0x7e, 0xb2, 0x44, 0xbf, 0x7b, 0x3a, 0x6b, 0xce, 0xa9, 0xd7, 0xff, 0xa7, 0x94, 0xbb, - 0x56, 0x5e, 0x21, 0x7e, 0x08, 0x55, 0xfe, 0x0f, 0x93, 0x5d, 0xb1, 0xd6, 0xf5, 0x82, 0xfa, 0x74, - 0xbc, 0x6e, 0x70, 0x8c, 0x89, 0xc9, 0x2e, 0x71, 0x88, 0xd9, 0x23, 0xb1, 0xe2, 0x49, 0x80, 0xe3, - 0x50, 0x0c, 0xba, 0x09, 0x35, 0x5e, 0x0c, 0x25, 0xf2, 0xeb, 0xa5, 0xa3, 0x61, 0xa3, 0xb6, 0x15, - 0x0d, 0xe3, 0x38, 0x0d, 0xba, 0x0d, 0x35, 0x43, 0x39, 0x4c, 0x65, 0xd7, 0xf0, 0x5c, 0x62, 0x2b, - 0x9a, 0xc2, 0x71, 0x3a, 0xf4, 0x1d, 0x98, 0xef, 0xd9, 0x5e, 0xec, 0x14, 0x5d, 0x54, 0x87, 0x45, - 0x97, 0x98, 0x75, 0x20, 0xdf, 0x42, 0x6c, 0xe3, 0xb9, 0xde, 0xde, 0x89, 0x8d, 0xe1, 0x94, 0x38, - 0xf9, 0xcf, 0xcb, 0xf0, 0xf2, 0x58, 0x1f, 0x45, 0x77, 0xc7, 0x54, 0x2d, 0x4b, 0x05, 0x2a, 0x16, - 0x15, 0xe6, 0xd8, 0xfe, 0x93, 0x9b, 0x9b, 0xef, 0x6e, 0x4b, 0xc5, 0x77, 0xb7, 0x3c, 0x85, 0x6d, - 0xc6, 0x51, 0x70, 0x12, 0x94, 0x55, 0x3a, 0xe2, 0x74, 0x2b, 0xaf, 0xd2, 0x59, 0x4f, 0x4e, 0xe3, - 0x34, 0x3d, 0x83, 0x10, 0x87, 0x4f, 0xa9, 0x3a, 0x27, 0x84, 0xd8, 0x48, 0x4e, 0xe3, 0x34, 0x3d, - 0x32, 0xa0, 0x21, 0x50, 0x93, 0xe6, 0x8f, 0xdd, 0x8c, 0xf8, 0xf5, 0xce, 0x2b, 0x47, 0xc3, 0x46, - 0x63, 0x7d, 0x3c, 0x29, 0x7e, 0x1e, 0x96, 0xbc, 0x05, 0x73, 0xf7, 0x2d, 0x97, 0xb6, 0x59, 0x4a, - 0x66, 0x79, 0x0b, 0xbd, 0x0c, 0x65, 0x43, 0x33, 0xc5, 0x86, 0xaa, 0x26, 0xd4, 0x2e, 0x33, 0xe7, - 0x65, 0xe3, 0x7c, 0x5a, 0x39, 0x14, 0x7e, 0x1d, 0x4d, 0x2b, 0x87, 0x98, 0x8d, 0xcb, 0xf7, 0x60, - 0x46, 0xe4, 0xc5, 0x38, 0x50, 0x79, 0x3c, 0x50, 0x39, 0x03, 0xe8, 0xf7, 0x4b, 0x30, 0x23, 0xd2, - 0xc8, 0x19, 0x26, 0x84, 0xf7, 0x12, 0x09, 0xe1, 0xad, 0xc9, 0x52, 0x6d, 0x6e, 0x02, 0x50, 0x53, - 0x09, 0xe0, 0x9d, 0x09, 0xf1, 0xc7, 0x07, 0xfc, 0x1f, 0x48, 0x30, 0x9f, 0x4c, 0xfa, 0x2c, 0xa2, - 0xb0, 0x77, 0x48, 0xeb, 0x91, 0x47, 0xd1, 0xb9, 0x45, 0x18, 0x51, 0x3a, 0xd1, 0x14, 0x8e, 0xd3, - 0x21, 0x12, 0xb2, 0x31, 0x77, 0x10, 0x46, 0x69, 0xe6, 0x28, 0xed, 0x51, 0x4d, 0x6f, 0xfa, 0xd7, - 0x82, 0xcd, 0x07, 0x26, 0x7d, 0xec, 0x74, 0xa8, 0xa3, 0x99, 0xfd, 0x11, 0x31, 0xdc, 0xb3, 0xe2, - 0xb8, 0xf2, 0x5f, 0x4b, 0x50, 0x13, 0x0a, 0x9f, 0x47, 0x46, 0xfa, 0x7a, 0x32, 0x23, 0x7d, 0x7e, - 0xc2, 0x7a, 0x2a, 0x3b, 0x03, 0xfd, 0x28, 0x5a, 0x0b, 0xab, 0xa0, 0x58, 0x81, 0xb7, 0x67, 0xb9, - 0x34, 0x5d, 0xe0, 0xb1, 0x57, 0x0c, 0xf3, 0x19, 0xf4, 0x6b, 0x12, 0x2c, 0x68, 0xa9, 0x9a, 0x4b, - 0x98, 0xfa, 0x4b, 0x93, 0xa9, 0x16, 0xc2, 0x44, 0x97, 0xa5, 0xe9, 0x19, 0x3c, 0x22, 0x52, 0xf6, - 0x60, 0x84, 0x0a, 0x29, 0x30, 0xb5, 0x47, 0xa9, 0x3d, 0x61, 0xae, 0xcc, 0xaa, 0x26, 0x5b, 0x55, - 0xbe, 0xfc, 0xed, 0xed, 0x36, 0xe6, 0xd0, 0xf2, 0x0f, 0x4a, 0xa1, 0xc1, 0x3a, 0xfe, 0x3b, 0x12, - 0xd6, 0xbb, 0xd2, 0x69, 0xd4, 0xbb, 0xb5, 0xac, 0x5a, 0x17, 0x3d, 0x85, 0x32, 0xd5, 0x27, 0x3d, - 0x36, 0x14, 0x12, 0xb6, 0x37, 0x3b, 0x51, 0x9c, 0xda, 0xde, 0xec, 0x60, 0x06, 0x89, 0xbe, 0x09, - 0x15, 0xb6, 0x9b, 0x60, 0xaf, 0x78, 0x79, 0xf2, 0x10, 0xc2, 0xec, 0x15, 0x79, 0x18, 0xfb, 0xe7, - 0x62, 0x1f, 0x57, 0xfe, 0x36, 0xcc, 0x25, 0xe2, 0x00, 0xfa, 0x00, 0x2e, 0xea, 0x96, 0xa2, 0xb6, - 0x14, 0x5d, 0x31, 0x7b, 0x24, 0xb8, 0x97, 0xfa, 0xb9, 0xf1, 0x11, 0x71, 0x33, 0xc6, 0x21, 0xe2, - 0x49, 0x78, 0x61, 0x1d, 0x9f, 0xc3, 0x09, 0x6c, 0x59, 0x01, 0x88, 0x56, 0x8f, 0x1a, 0x50, 0x61, - 0x2e, 0xec, 0xef, 0x0c, 0x66, 0x5b, 0xb3, 0x4c, 0x57, 0xe6, 0xd9, 0x2e, 0xf6, 0xc7, 0xd1, 0x2d, - 0x00, 0x97, 0xf4, 0x1c, 0x42, 0x79, 0xd8, 0xf1, 0x8f, 0xe9, 0xc3, 0x00, 0xdc, 0x09, 0x67, 0x70, - 0x8c, 0x4a, 0xfe, 0xad, 0x12, 0x94, 0x1f, 0x5a, 0xdd, 0x33, 0x0c, 0xf2, 0x4f, 0x13, 0x41, 0xbe, - 0xe8, 0xfb, 0xff, 0xd0, 0xea, 0xe6, 0x06, 0xf8, 0x5f, 0x4e, 0x05, 0xf8, 0x37, 0x27, 0xc0, 0x1e, - 0x1f, 0xdc, 0xff, 0xa1, 0x0c, 0x17, 0x1f, 0x5a, 0xdd, 0xe8, 0x0a, 0xe5, 0x8d, 0xc4, 0x21, 0xc1, - 0xf5, 0xd4, 0x21, 0xc1, 0x42, 0x9c, 0xf6, 0x1c, 0xee, 0x4e, 0xf6, 0xfc, 0xc2, 0xac, 0xed, 0x58, - 0x5d, 0xbf, 0x30, 0x2b, 0x17, 0x2f, 0xcc, 0xae, 0x0a, 0x5d, 0x78, 0x71, 0x16, 0x22, 0xe1, 0x24, - 0x70, 0xce, 0x2d, 0xc7, 0xd4, 0x99, 0xdf, 0x72, 0xc4, 0xae, 0x87, 0x2a, 0xc7, 0xbd, 0x1e, 0x9a, - 0x1e, 0x7f, 0x3d, 0x24, 0xff, 0x99, 0x04, 0x33, 0x0f, 0xad, 0xee, 0x79, 0x24, 0xbf, 0xaf, 0x26, - 0x93, 0xdf, 0xad, 0xe2, 0x0e, 0x9a, 0x93, 0xf8, 0xfe, 0xa8, 0xcc, 0xd7, 0xc0, 0x63, 0xf8, 0x4d, - 0xa8, 0xd9, 0x8a, 0xa3, 0xe8, 0x3a, 0xd1, 0x35, 0xd7, 0x10, 0xa5, 0x23, 0xdf, 0xf3, 0xb4, 0xa3, - 0x61, 0x1c, 0xa7, 0x61, 0x2c, 0x3d, 0xcb, 0xb0, 0x75, 0x12, 0x5c, 0x94, 0x84, 0x2c, 0xeb, 0xd1, - 0x30, 0x8e, 0xd3, 0xa0, 0xc7, 0x70, 0x55, 0xe9, 0x51, 0xed, 0x80, 0xa4, 0x0f, 0x5b, 0xcb, 0xbc, - 0x84, 0x7c, 0xe1, 0x68, 0xd8, 0xb8, 0xba, 0x96, 0x45, 0x80, 0xb3, 0xf9, 0x12, 0xb7, 0x02, 0x53, - 0x67, 0x70, 0x2b, 0xf0, 0x06, 0x5c, 0x54, 0x3c, 0x6a, 0x05, 0x33, 0xdc, 0x7f, 0xaa, 0xad, 0x05, - 0x16, 0x72, 0xd7, 0x62, 0xe3, 0x38, 0x41, 0x95, 0xb8, 0x4b, 0x98, 0x3e, 0xed, 0x96, 0x80, 0x3f, - 0x2d, 0xc3, 0x6c, 0x18, 0x74, 0x90, 0x95, 0x38, 0xff, 0xf4, 0x8f, 0x7b, 0xde, 0x2e, 0xee, 0x21, - 0xc7, 0x3e, 0xf8, 0x44, 0x4f, 0x61, 0xd6, 0xa5, 0x8a, 0x43, 0x27, 0xdd, 0xc3, 0xcd, 0x1d, 0x0d, - 0x1b, 0xb3, 0x9d, 0x00, 0x01, 0x47, 0x60, 0xa8, 0x0f, 0xf3, 0x91, 0xaf, 0x4c, 0x1a, 0x89, 0xfc, - 0x4d, 0x6f, 0x02, 0x06, 0xa7, 0x60, 0x59, 0x38, 0xf0, 0xbd, 0x49, 0x6c, 0xec, 0xc2, 0x70, 0xe0, - 0xbb, 0x1e, 0x16, 0xb3, 0x68, 0x15, 0x66, 0x5d, 0xaf, 0xd7, 0x23, 0x44, 0x25, 0xaa, 0xd8, 0xb0, - 0x5d, 0x16, 0xa4, 0xb3, 0x9d, 0x60, 0x02, 0x47, 0x34, 0x0c, 0x78, 0x57, 0xd1, 0x74, 0xa2, 0x8a, - 0x4b, 0x92, 0x10, 0xf8, 0x2e, 0x1f, 0xc5, 0x62, 0x96, 0x37, 0xdd, 0x3c, 0x22, 0xf4, 0x23, 0xcb, - 0xd9, 0x6f, 0x5b, 0xba, 0xd6, 0x1b, 0x9c, 0x61, 0xe6, 0xec, 0x26, 0x32, 0xe7, 0x97, 0x0b, 0xba, - 0x46, 0x42, 0xcb, 0xbc, 0x1c, 0x2a, 0xff, 0xbb, 0x04, 0xf5, 0x04, 0x65, 0xbc, 0x9c, 0x26, 0x50, - 0xb1, 0x2d, 0x87, 0x06, 0xce, 0x79, 0x22, 0x0d, 0xd8, 0xde, 0x23, 0x76, 0x1a, 0xc9, 0x60, 0xb1, - 0x8f, 0xce, 0xd6, 0xb9, 0xeb, 0x58, 0x86, 0x08, 0x92, 0x27, 0x93, 0x42, 0x88, 0x13, 0xad, 0xf3, - 0xae, 0x63, 0x19, 0x98, 0x63, 0xcb, 0xff, 0x28, 0xc1, 0xe5, 0x04, 0xe5, 0x79, 0x84, 0x7f, 0x25, - 0x19, 0xfe, 0xdf, 0x39, 0xc9, 0xca, 0x72, 0x12, 0xc1, 0x7f, 0xa7, 0xd7, 0xc5, 0x2c, 0x80, 0xfa, - 0x50, 0xb3, 0x2d, 0xb5, 0x73, 0x1a, 0xbd, 0x53, 0x7e, 0x22, 0x89, 0xc0, 0x70, 0x1c, 0x19, 0x0d, - 0xe0, 0xb2, 0xa9, 0x18, 0xc4, 0xb5, 0x95, 0x1e, 0xe9, 0x9c, 0xc6, 0x1d, 0xef, 0xd5, 0xa3, 0x61, - 0xe3, 0xf2, 0xa3, 0x34, 0x24, 0x1e, 0x95, 0x22, 0xff, 0xf1, 0xc8, 0xca, 0x2d, 0x87, 0xa2, 0xaf, - 0x40, 0x95, 0xf7, 0xc6, 0xf6, 0x2c, 0x5d, 0x14, 0x69, 0xb7, 0xd9, 0xc3, 0x69, 0x8b, 0xb1, 0x67, - 0xc3, 0xc6, 0xcf, 0x8c, 0x2d, 0xb5, 0x02, 0x42, 0x1c, 0xc2, 0xa0, 0x4d, 0x98, 0xb2, 0x27, 0xdf, - 0x90, 0xf3, 0x1d, 0x18, 0xdf, 0x85, 0x73, 0x14, 0xf9, 0x3f, 0xd3, 0x6a, 0xf3, 0x1c, 0xbe, 0x7f, - 0x7a, 0x0f, 0x2c, 0x3c, 0x01, 0xc8, 0x7d, 0x68, 0x0e, 0xcc, 0x88, 0xfd, 0xa8, 0x70, 0xcc, 0x7b, - 0x27, 0x71, 0xcc, 0xf8, 0x1e, 0x2a, 0x2c, 0xba, 0x82, 0xc1, 0x40, 0x10, 0x7f, 0xff, 0xb8, 0x42, - 0x3d, 0xcf, 0xd1, 0xe8, 0xe0, 0xcc, 0x63, 0xe7, 0x6e, 0x22, 0x76, 0x6e, 0x14, 0x5c, 0xe0, 0x88, - 0xa6, 0xb9, 0xf1, 0xf3, 0x5f, 0x25, 0xb8, 0x3a, 0x42, 0x7d, 0x1e, 0xb1, 0x85, 0x24, 0x63, 0xcb, - 0x97, 0x4f, 0xba, 0xc2, 0x9c, 0xf8, 0xf2, 0x31, 0x64, 0xac, 0x8f, 0xbb, 0xec, 0x2d, 0x00, 0xdb, - 0xd1, 0x0e, 0x34, 0x9d, 0xf4, 0x45, 0xff, 0x62, 0x35, 0x7a, 0x26, 0xed, 0x70, 0x06, 0xc7, 0xa8, - 0xd0, 0xaf, 0xc0, 0x92, 0x4a, 0x76, 0x15, 0x4f, 0xa7, 0x6b, 0xaa, 0xba, 0xae, 0xd8, 0x4a, 0x57, - 0xd3, 0x35, 0xaa, 0x89, 0x4b, 0xc0, 0xd9, 0xd6, 0x1d, 0xbf, 0xaf, 0x30, 0x8b, 0xe2, 0xd9, 0xb0, - 0xf1, 0xd9, 0xf1, 0x9b, 0xa4, 0x80, 0x78, 0x80, 0x73, 0x84, 0xa0, 0x5f, 0x95, 0xa0, 0xee, 0x90, - 0x0f, 0x3d, 0xcd, 0x21, 0xea, 0x86, 0x63, 0xd9, 0x09, 0x0d, 0xca, 0x5c, 0x83, 0x7b, 0x47, 0xc3, - 0x46, 0x1d, 0xe7, 0xd0, 0x14, 0xd1, 0x21, 0x57, 0x10, 0xa2, 0x70, 0x45, 0xd1, 0x75, 0xeb, 0x23, - 0x92, 0xb4, 0xc0, 0x14, 0x97, 0xdf, 0x3a, 0x1a, 0x36, 0xae, 0xac, 0x8d, 0x4e, 0x17, 0x11, 0x9d, - 0x05, 0x8f, 0x56, 0x61, 0xe6, 0xc0, 0xd2, 0x3d, 0x83, 0xb8, 0xf5, 0x0a, 0x97, 0xc4, 0x22, 0xed, - 0xcc, 0x13, 0x7f, 0xe8, 0x19, 0x2b, 0x74, 0x3a, 0x7c, 0xc7, 0x1a, 0x50, 0xa1, 0xdb, 0x50, 0xdb, - 0xb3, 0x5c, 0x2a, 0xde, 0x75, 0x5e, 0x16, 0x55, 0xa3, 0xe0, 0x72, 0x3f, 0x9a, 0xc2, 0x71, 0x3a, - 0x64, 0xc0, 0xec, 0x9e, 0x38, 0xd1, 0x76, 0xeb, 0x33, 0x13, 0xe5, 0xbd, 0xc4, 0x89, 0x78, 0x54, - 0xb7, 0x05, 0xc3, 0x2e, 0x8e, 0x24, 0xb0, 0x7d, 0x1f, 0xff, 0xf3, 0x60, 0x83, 0x77, 0x9c, 0x54, - 0xa3, 0x10, 0x74, 0xdf, 0x1f, 0xc6, 0xc1, 0x7c, 0x40, 0xfa, 0xa0, 0xbd, 0xce, 0x1b, 0x44, 0x52, - 0xa4, 0x0f, 0xda, 0xeb, 0x38, 0x98, 0x47, 0x36, 0xcc, 0xb8, 0x64, 0x53, 0x33, 0xbd, 0xc3, 0x3a, - 0xf0, 0x57, 0xf7, 0x4e, 0xd1, 0x8b, 0xab, 0x3b, 0x9c, 0x3b, 0x75, 0x5b, 0x1e, 0x49, 0x14, 0xf3, - 0x38, 0x10, 0x83, 0x0e, 0x61, 0xd6, 0xf1, 0xcc, 0x35, 0x77, 0xc7, 0x25, 0x4e, 0xbd, 0xc6, 0x65, - 0x16, 0x8d, 0xca, 0x38, 0xe0, 0x4f, 0x4b, 0x0d, 0x2d, 0x18, 0x52, 0xe0, 0x48, 0x18, 0xfa, 0x6d, - 0x09, 0x90, 0xeb, 0xd9, 0xb6, 0x4e, 0x0c, 0x62, 0x52, 0x45, 0xe7, 0x17, 0xf6, 0x6e, 0xfd, 0x22, - 0xd7, 0xa1, 0x5d, 0xf8, 0xc2, 0x2e, 0x0d, 0x94, 0x56, 0x26, 0x3c, 0x00, 0x18, 0x25, 0xc5, 0x19, - 0x7a, 0xb0, 0x47, 0xb1, 0xeb, 0xf2, 0xdf, 0xf5, 0xb9, 0x89, 0x1e, 0x45, 0x76, 0xe3, 0x42, 0xf4, - 0x28, 0xc4, 0x3c, 0x0e, 0xc4, 0xa0, 0x27, 0xb0, 0xe4, 0x10, 0x45, 0x7d, 0x6c, 0xea, 0x03, 0x6c, - 0x59, 0xf4, 0xae, 0xa6, 0x13, 0x77, 0xe0, 0x52, 0x62, 0xd4, 0xe7, 0xb9, 0xdb, 0x84, 0x0d, 0xd0, - 0x38, 0x93, 0x0a, 0xe7, 0x70, 0xf3, 0x4e, 0x66, 0x71, 0xcf, 0x74, 0xb6, 0x1f, 0x38, 0x9c, 0xac, - 0x93, 0x39, 0x52, 0xf1, 0xcc, 0x3a, 0x99, 0x63, 0x22, 0xc6, 0x9f, 0xbf, 0xfd, 0x57, 0x09, 0xae, - 0x44, 0xc4, 0xc7, 0xee, 0x64, 0xce, 0x60, 0x39, 0x87, 0xd3, 0xb8, 0xec, 0x33, 0xb2, 0xf2, 0x79, - 0x9e, 0x91, 0x9d, 0x56, 0x0b, 0x35, 0x6f, 0x2e, 0x8e, 0xac, 0xf8, 0x7f, 0xa0, 0xb9, 0x38, 0x52, - 0x36, 0xa7, 0x90, 0xf9, 0x93, 0x52, 0x7c, 0x45, 0xff, 0x9f, 0x3a, 0x58, 0x33, 0x1a, 0x4a, 0xa7, - 0x8a, 0x35, 0x94, 0xca, 0xff, 0x52, 0x86, 0x85, 0xf4, 0x4b, 0x9b, 0x68, 0x64, 0x94, 0x9e, 0xdb, - 0xc8, 0xd8, 0x86, 0xc5, 0x5d, 0x4f, 0xd7, 0x07, 0xdc, 0x20, 0xb1, 0x0b, 0x7a, 0xff, 0xec, 0xf1, - 0x25, 0xc1, 0xb9, 0x78, 0x37, 0x83, 0x06, 0x67, 0x72, 0xe6, 0x34, 0x65, 0x96, 0x27, 0x6a, 0xca, - 0x7c, 0x1b, 0xe6, 0x1c, 0xfe, 0xed, 0x49, 0xb2, 0x6f, 0x20, 0x3c, 0x1c, 0xc7, 0xf1, 0x49, 0x9c, - 0xa4, 0xcd, 0x6e, 0xb0, 0xac, 0x4c, 0xd0, 0x60, 0x79, 0x1a, 0x1d, 0x91, 0x19, 0xb1, 0xef, 0xb9, - 0x1d, 0x91, 0x2f, 0xc1, 0xb2, 0x60, 0x63, 0xff, 0xd7, 0x2d, 0x93, 0x3a, 0x96, 0xae, 0x13, 0x67, - 0xc3, 0x33, 0x8c, 0x81, 0xfc, 0x2e, 0xcc, 0x27, 0xdb, 0x72, 0xfd, 0x27, 0xef, 0x77, 0x0a, 0x8b, - 0x06, 0x83, 0xd8, 0x93, 0xf7, 0xc7, 0x71, 0x48, 0x21, 0x7f, 0x22, 0xc1, 0xb5, 0x9c, 0xce, 0x46, - 0xf4, 0x01, 0xcc, 0x1b, 0xca, 0x61, 0xac, 0x65, 0x54, 0x84, 0x96, 0xa2, 0xbb, 0x6c, 0x7e, 0x76, - 0xb8, 0x95, 0x40, 0xc2, 0x29, 0x64, 0x9e, 0x70, 0x95, 0xc3, 0x8e, 0xe7, 0xf4, 0xc9, 0x84, 0x7b, - 0x79, 0xfe, 0xfa, 0x6e, 0x09, 0x0c, 0x1c, 0xa2, 0xc9, 0x3f, 0x94, 0xa0, 0x9e, 0x57, 0x7d, 0xa1, - 0xdb, 0x89, 0x0e, 0xc9, 0xcf, 0xa4, 0x3a, 0x24, 0x2f, 0x8f, 0xf0, 0x9d, 0x53, 0x7f, 0xe4, 0x8f, - 0x24, 0x58, 0xca, 0xae, 0x52, 0xd1, 0xcf, 0x27, 0x34, 0x6e, 0xa4, 0x34, 0xbe, 0x94, 0xe2, 0x12, - 0xfa, 0xee, 0xc1, 0xbc, 0xa8, 0x65, 0x05, 0xcc, 0x31, 0x3e, 0x51, 0x3d, 0x08, 0x0b, 0xe5, 0xa0, - 0x2a, 0xe3, 0xcf, 0x31, 0x39, 0x86, 0x53, 0xb8, 0xf2, 0xef, 0x96, 0xa0, 0xc2, 0xdb, 0x86, 0xce, - 0xb0, 0x84, 0xfa, 0x5a, 0xa2, 0x84, 0x2a, 0x7a, 0xb1, 0xc8, 0xb5, 0xcb, 0xad, 0x9e, 0xba, 0xa9, - 0xea, 0xe9, 0xad, 0x89, 0xd0, 0xc7, 0x17, 0x4e, 0x5f, 0x80, 0xd9, 0x50, 0x89, 0x62, 0x81, 0x9a, - 0x95, 0xa9, 0xb5, 0x98, 0x88, 0x82, 0x61, 0xfe, 0x20, 0x91, 0x29, 0x27, 0xf9, 0x96, 0x3a, 0x26, - 0xbb, 0x19, 0xa4, 0x4a, 0xff, 0x73, 0x9b, 0xa8, 0xf1, 0x6f, 0x34, 0x83, 0xbe, 0x0b, 0xf3, 0xfe, - 0x07, 0xe9, 0xe1, 0x19, 0x5a, 0x99, 0x7b, 0x6f, 0xf8, 0x19, 0xd7, 0x76, 0x62, 0x16, 0xa7, 0xa8, - 0x97, 0xdf, 0x86, 0xb9, 0x84, 0xb0, 0x42, 0x5f, 0xc7, 0xfc, 0xa5, 0x04, 0x8b, 0x59, 0xad, 0x8a, - 0xe8, 0x3a, 0x4c, 0xed, 0x6b, 0xa2, 0xb7, 0x22, 0xd6, 0x8f, 0xf2, 0x8b, 0x9a, 0xa9, 0x62, 0x3e, - 0x13, 0x7e, 0xdc, 0x54, 0xca, 0xfd, 0xb8, 0xe9, 0x16, 0x80, 0x62, 0x6b, 0xe2, 0x23, 0x7f, 0xb1, - 0xaa, 0xd0, 0x79, 0xa3, 0xcf, 0xff, 0x71, 0x8c, 0x8a, 0x77, 0x20, 0x45, 0xfa, 0x88, 0xb2, 0x30, - 0x6a, 0x0d, 0x8a, 0xa9, 0x1a, 0xa7, 0x93, 0xff, 0x4a, 0x82, 0xcf, 0x3c, 0x77, 0x07, 0x87, 0x5a, - 0x89, 0xf0, 0xd0, 0x4c, 0x85, 0x87, 0x95, 0x7c, 0x80, 0x73, 0xec, 0xfe, 0xfe, 0x5e, 0x09, 0xd0, - 0xf6, 0x9e, 0xe6, 0xa8, 0x6d, 0xc5, 0xa1, 0x03, 0x2c, 0x16, 0x78, 0x86, 0x01, 0xe3, 0x36, 0xd4, - 0x54, 0xe2, 0xf6, 0x1c, 0x8d, 0x1b, 0x49, 0x3c, 0xce, 0xd0, 0xe2, 0x1b, 0xd1, 0x14, 0x8e, 0xd3, - 0xa1, 0x3e, 0x54, 0x45, 0xad, 0x18, 0xb4, 0xb0, 0x14, 0x2d, 0x7c, 0x23, 0x0f, 0x88, 0xde, 0x0f, - 0x31, 0xe0, 0xe2, 0x10, 0x5c, 0xfe, 0xbe, 0x04, 0x4b, 0xa3, 0x06, 0xd9, 0xf0, 0x1b, 0x34, 0xce, - 0xca, 0x28, 0x2f, 0xc1, 0x14, 0x47, 0x65, 0xd6, 0xb8, 0xe8, 0x9f, 0x84, 0x33, 0x89, 0x98, 0x8f, - 0xca, 0x3f, 0x95, 0x60, 0x39, 0x5b, 0xa5, 0xf3, 0xd8, 0x6f, 0x7c, 0x90, 0xdc, 0x6f, 0x14, 0x3d, - 0x55, 0xc8, 0x56, 0x3c, 0x67, 0xef, 0xf1, 0x49, 0xa6, 0xf1, 0xcf, 0x63, 0x95, 0xbb, 0xc9, 0x55, - 0xae, 0x9d, 0x78, 0x95, 0xd9, 0x2b, 0x6c, 0x7d, 0xee, 0xe3, 0x4f, 0x57, 0x2e, 0xfc, 0xf8, 0xd3, - 0x95, 0x0b, 0xff, 0xfc, 0xe9, 0xca, 0x85, 0xef, 0x1e, 0xad, 0x48, 0x1f, 0x1f, 0xad, 0x48, 0x3f, - 0x3e, 0x5a, 0x91, 0xfe, 0xed, 0x68, 0x45, 0xfa, 0xfe, 0x4f, 0x56, 0x2e, 0x7c, 0x6d, 0x46, 0x60, - 0xfe, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xaa, 0x92, 0xb7, 0x3c, 0x83, 0x46, 0x00, 0x00, + 0x55, 0x9e, 0xea, 0x76, 0x8f, 0xbb, 0x4f, 0x8f, 0x3d, 0x9e, 0x3b, 0x1e, 0x4f, 0xaf, 0x77, 0xd7, + 0x3d, 0xa9, 0x88, 0x64, 0x22, 0x76, 0xdb, 0xcc, 0xb0, 0x13, 0x36, 0xbb, 0x9b, 0x4d, 0xdc, 0xf6, + 0xfc, 0x62, 0xcf, 0x74, 0x6e, 0xdb, 0x93, 0x21, 0x3f, 0x1b, 0xaa, 0xbb, 0xae, 0xdb, 0xb5, 0xae, + 0xbf, 0xad, 0xba, 0xe5, 0x9d, 0x4e, 0x84, 0x12, 0x09, 0xf1, 0x1a, 0xf2, 0x06, 0x12, 0xf0, 0xc0, + 0x03, 0xe2, 0x89, 0x88, 0x08, 0xa4, 0x48, 0x3c, 0x01, 0x02, 0x31, 0x48, 0x20, 0x02, 0x12, 0x82, + 0x07, 0xe8, 0x65, 0x1d, 0xa1, 0x15, 0xef, 0x08, 0xa4, 0xe1, 0x05, 0xdd, 0x5b, 0xb7, 0x7e, 0xbb, + 0xaa, 0xc7, 0xd5, 0xfe, 0x91, 0x10, 0x6f, 0xdd, 0xf7, 0x9e, 0xf3, 0x9d, 0x73, 0x6e, 0x9d, 0x3a, + 0xe7, 0xdc, 0x7b, 0x4f, 0xc1, 0x17, 0xf7, 0xdf, 0x74, 0x5b, 0x9a, 0xb5, 0xba, 0xef, 0xf5, 0x88, + 0x63, 0x12, 0x4a, 0xdc, 0x55, 0x7b, 0x7f, 0xb0, 0xaa, 0xd8, 0x9a, 0xbb, 0x4a, 0x9e, 0x52, 0x62, + 0xba, 0x9a, 0x65, 0xba, 0xab, 0x07, 0x37, 0x7a, 0x84, 0x2a, 0x37, 0x56, 0x07, 0xc4, 0x24, 0x8e, + 0x42, 0x89, 0xda, 0xb2, 0x1d, 0x8b, 0x5a, 0xe8, 0x75, 0x9f, 0xbd, 0x15, 0xb1, 0xb7, 0xec, 0xfd, + 0x41, 0x8b, 0xb1, 0xb7, 0x22, 0xf6, 0x96, 0x60, 0x5f, 0x7e, 0x7d, 0xa0, 0xd1, 0x3d, 0xaf, 0xd7, + 0xea, 0x5b, 0xc6, 0xea, 0xc0, 0x1a, 0x58, 0xab, 0x1c, 0xa5, 0xe7, 0xed, 0xf2, 0x7f, 0xfc, 0x0f, + 0xff, 0xe5, 0xa3, 0x2f, 0xdf, 0xcc, 0x55, 0x6e, 0xd5, 0x21, 0xae, 0xe5, 0x39, 0x7d, 0x92, 0xd6, + 0x68, 0xf9, 0x56, 0x3e, 0x8f, 0x67, 0x1e, 0x10, 0x87, 0x29, 0x44, 0xd4, 0x31, 0xb6, 0xd7, 0xf2, + 0xd9, 0x0e, 0xc6, 0xcc, 0x5e, 0x7e, 0x3d, 0x9b, 0xda, 0xf1, 0x4c, 0xaa, 0x19, 0xe3, 0x3a, 0xbd, + 0x31, 0x99, 0xdc, 0xed, 0xef, 0x11, 0x43, 0x19, 0xe3, 0xba, 0x91, 0xcd, 0xe5, 0x51, 0x4d, 0x5f, + 0xd5, 0x4c, 0xea, 0x52, 0x27, 0xcd, 0x22, 0xb7, 0x00, 0xd6, 0x3a, 0xf7, 0x1f, 0xfb, 0x56, 0xa2, + 0x6b, 0x30, 0x63, 0x2a, 0x06, 0x69, 0x48, 0xd7, 0xa4, 0xeb, 0xb5, 0xf6, 0x85, 0x67, 0xa3, 0xe6, + 0xb9, 0xc3, 0x51, 0x73, 0xe6, 0xa1, 0x62, 0x10, 0xcc, 0x67, 0xe4, 0x6f, 0xc0, 0xe2, 0x7a, 0x67, + 0x67, 0x5b, 0x71, 0x06, 0x84, 0xee, 0x50, 0x4d, 0xd7, 0xbe, 0xad, 0x50, 0xc6, 0xb9, 0x01, 0x0b, + 0x94, 0x0f, 0x76, 0x88, 0xd3, 0x27, 0x26, 0x55, 0x06, 0x3e, 0x4a, 0xa5, 0xdd, 0x10, 0x28, 0x0b, + 0xdb, 0xa9, 0x79, 0x3c, 0xc6, 0x21, 0xff, 0x86, 0x04, 0x2f, 0xad, 0x7b, 0x2e, 0xb5, 0x8c, 0x2d, + 0x42, 0x1d, 0xad, 0xbf, 0xee, 0x39, 0x0e, 0x31, 0x69, 0x97, 0x2a, 0xd4, 0x73, 0x5f, 0xac, 0x1d, + 0x7a, 0x02, 0x95, 0x03, 0x45, 0xf7, 0x48, 0xa3, 0x74, 0x4d, 0xba, 0x5e, 0xbf, 0xf9, 0x5a, 0x2b, + 0xd7, 0xd9, 0x5a, 0x81, 0x3b, 0xb4, 0xbe, 0xe2, 0x29, 0x26, 0xd5, 0xe8, 0xb0, 0xbd, 0x28, 0x00, + 0x2f, 0x08, 0xa9, 0x8f, 0x19, 0x12, 0xf6, 0x01, 0xe5, 0xef, 0x4b, 0xf0, 0x6a, 0xae, 0x66, 0x9b, + 0x9a, 0x4b, 0x91, 0x01, 0x15, 0x8d, 0x12, 0xc3, 0x6d, 0x48, 0xd7, 0xca, 0xd7, 0xeb, 0x37, 0xef, + 0xb5, 0x0a, 0x39, 0x7a, 0x2b, 0x17, 0xbc, 0x3d, 0x27, 0xf4, 0xaa, 0xdc, 0x67, 0xf0, 0xd8, 0x97, + 0x22, 0xff, 0xba, 0x04, 0x28, 0xce, 0xe3, 0xaf, 0xee, 0x11, 0xd6, 0xe8, 0xab, 0xc7, 0x59, 0xa3, + 0xcb, 0x02, 0xb0, 0xee, 0x8b, 0x4b, 0x2c, 0xd1, 0xf7, 0x24, 0x58, 0x1a, 0xd7, 0x88, 0xaf, 0xcd, + 0x6e, 0x72, 0x6d, 0xd6, 0x8e, 0xb1, 0x36, 0x3e, 0x6a, 0xce, 0xa2, 0xfc, 0x41, 0x09, 0x6a, 0x1b, + 0x0a, 0x31, 0x2c, 0xb3, 0x4b, 0x28, 0x7a, 0x02, 0x55, 0x83, 0x50, 0x45, 0x55, 0xa8, 0xc2, 0xd7, + 0xa3, 0x7e, 0xf3, 0xfa, 0x04, 0x63, 0x0f, 0x6e, 0xb4, 0x1e, 0xf5, 0xde, 0x27, 0x7d, 0xba, 0x45, + 0xa8, 0xd2, 0x46, 0x02, 0x1f, 0xa2, 0x31, 0x1c, 0xa2, 0xa1, 0xf7, 0x60, 0xc6, 0xb5, 0x49, 0x5f, + 0x2c, 0xe1, 0x3b, 0x05, 0xcd, 0x09, 0x35, 0xec, 0xda, 0xa4, 0x1f, 0x3d, 0x23, 0xf6, 0x0f, 0x73, + 0x5c, 0xb4, 0x0b, 0xe7, 0x5d, 0xfe, 0xf0, 0x1b, 0x65, 0x2e, 0xe1, 0xdd, 0xa9, 0x25, 0xf8, 0x2e, + 0x34, 0x2f, 0x64, 0x9c, 0xf7, 0xff, 0x63, 0x81, 0x2e, 0xff, 0xad, 0x04, 0x73, 0x21, 0x2d, 0x7f, + 0x52, 0xdf, 0x1c, 0x5b, 0xb3, 0xd5, 0x09, 0x6b, 0x16, 0x8b, 0x8f, 0x2d, 0xc6, 0xce, 0x97, 0x6e, + 0x41, 0x08, 0xab, 0x06, 0x23, 0xb1, 0x85, 0xfb, 0x66, 0xe0, 0x08, 0x25, 0xee, 0x08, 0x6f, 0x4e, + 0x6b, 0x57, 0xce, 0xf3, 0xff, 0x9b, 0xb8, 0x3d, 0x6c, 0x3d, 0xd1, 0x7b, 0x50, 0x75, 0x89, 0x4e, + 0xfa, 0xd4, 0x72, 0x84, 0x3d, 0x6f, 0x1c, 0xd5, 0x1e, 0xa5, 0x47, 0xf4, 0xae, 0xe0, 0x6d, 0x5f, + 0x60, 0x06, 0x05, 0xff, 0x70, 0x88, 0x89, 0xbe, 0x0e, 0x55, 0x4a, 0x0c, 0x5b, 0x57, 0x68, 0xf0, + 0x42, 0xbd, 0x3e, 0xd9, 0xc7, 0x3a, 0x96, 0xba, 0x2d, 0x18, 0xf8, 0xe3, 0x0f, 0x57, 0x2b, 0x18, + 0xc5, 0x21, 0xa0, 0xfc, 0x17, 0x25, 0xb8, 0x98, 0x7a, 0x94, 0xe8, 0x31, 0x2c, 0xf5, 0xfd, 0xf0, + 0xf0, 0xd0, 0x33, 0x7a, 0xc4, 0xe9, 0xf6, 0xf7, 0x88, 0xea, 0xe9, 0x44, 0x15, 0xe1, 0x76, 0x45, + 0xe0, 0x2d, 0xad, 0x67, 0x52, 0xe1, 0x1c, 0x6e, 0xf4, 0x00, 0x90, 0xc9, 0x87, 0xb6, 0x34, 0xd7, + 0x0d, 0x31, 0x4b, 0x1c, 0x73, 0x59, 0x60, 0xa2, 0x87, 0x63, 0x14, 0x38, 0x83, 0x8b, 0xe9, 0xa8, + 0x12, 0x57, 0x73, 0x88, 0x9a, 0xd6, 0xb1, 0x9c, 0xd4, 0x71, 0x23, 0x93, 0x0a, 0xe7, 0x70, 0xa3, + 0x5b, 0x50, 0xf7, 0xa5, 0x61, 0xa2, 0xa8, 0xc3, 0xc6, 0x0c, 0x07, 0x0b, 0x43, 0xd2, 0xc3, 0x68, + 0x0a, 0xc7, 0xe9, 0xe4, 0x3f, 0x2c, 0x01, 0x6c, 0x10, 0x5b, 0xb7, 0x86, 0x06, 0x31, 0x4f, 0x33, + 0x2c, 0x7c, 0x2b, 0x11, 0x16, 0xbe, 0x58, 0xd4, 0xb9, 0x43, 0x15, 0x73, 0xe3, 0xc2, 0x20, 0x15, + 0x17, 0xbe, 0x34, 0xbd, 0x88, 0xc9, 0x81, 0xe1, 0xa7, 0x65, 0xb8, 0x1c, 0x11, 0xaf, 0x5b, 0xa6, + 0xaa, 0xf1, 0x34, 0xff, 0x36, 0xcc, 0xd0, 0xa1, 0x1d, 0xa4, 0x97, 0xcf, 0x06, 0x2a, 0x6e, 0x0f, + 0x6d, 0xf2, 0x7c, 0xd4, 0xbc, 0x9a, 0xc1, 0xc2, 0xa6, 0x30, 0x67, 0x42, 0x8f, 0x43, 0xed, 0x4b, + 0x9c, 0xfd, 0xdd, 0xa4, 0xf0, 0xe7, 0xa3, 0xe6, 0xc4, 0x9a, 0xaa, 0x15, 0x62, 0x26, 0x95, 0x45, + 0x9f, 0x81, 0xf3, 0x0e, 0x51, 0x5c, 0xcb, 0xe4, 0x1e, 0x51, 0x8b, 0x8c, 0xc2, 0x7c, 0x14, 0x8b, + 0x59, 0xf4, 0x39, 0x98, 0x35, 0x88, 0xeb, 0xb2, 0xd2, 0xa4, 0xc2, 0x09, 0x2f, 0x0a, 0xc2, 0xd9, + 0x2d, 0x7f, 0x18, 0x07, 0xf3, 0x68, 0x1f, 0xe6, 0x75, 0xc5, 0xa5, 0x3b, 0xb6, 0xaa, 0x50, 0xb2, + 0xad, 0x19, 0xa4, 0x71, 0x9e, 0x2f, 0xf8, 0xcf, 0x1e, 0x31, 0x78, 0x30, 0x96, 0xf6, 0x92, 0x80, + 0x9f, 0xdf, 0x4c, 0x40, 0xe1, 0x14, 0x34, 0xfa, 0x10, 0x10, 0x1b, 0xd9, 0x76, 0x14, 0xd3, 0xf5, + 0xd7, 0x8c, 0x09, 0x9c, 0x2d, 0x2e, 0x30, 0x7c, 0x4f, 0x37, 0xc7, 0xe0, 0x70, 0x86, 0x08, 0xf9, + 0xef, 0x24, 0x98, 0x8f, 0x1e, 0xd9, 0x59, 0xc4, 0xff, 0xf7, 0x92, 0xf1, 0xff, 0x0b, 0x53, 0xfb, + 0x6f, 0x4e, 0x02, 0xf8, 0xcd, 0x32, 0xa0, 0x88, 0x08, 0x5b, 0xba, 0xde, 0x53, 0xfa, 0xfb, 0x47, + 0xa8, 0x8a, 0x7e, 0x4f, 0x02, 0xe4, 0xf1, 0x47, 0xa2, 0xae, 0x99, 0xa6, 0x45, 0x79, 0x55, 0x1b, + 0xa8, 0xf9, 0x4b, 0x53, 0xab, 0x19, 0x68, 0xd0, 0xda, 0x19, 0xc3, 0xbe, 0x6d, 0x52, 0x67, 0x18, + 0x3d, 0xb2, 0x71, 0x02, 0x9c, 0xa1, 0x10, 0xfa, 0x00, 0xc0, 0x11, 0x98, 0xdb, 0x96, 0x88, 0x02, + 0x45, 0x03, 0x4d, 0xa0, 0xd4, 0xba, 0x65, 0xee, 0x6a, 0x83, 0x28, 0xa6, 0xe1, 0x10, 0x18, 0xc7, + 0x84, 0x2c, 0xdf, 0x86, 0xab, 0x39, 0xda, 0xa3, 0x05, 0x28, 0xef, 0x93, 0xa1, 0xbf, 0xac, 0x98, + 0xfd, 0x44, 0x8b, 0xf1, 0xea, 0xb2, 0x26, 0x4a, 0xc3, 0xb7, 0x4a, 0x6f, 0x4a, 0xf2, 0x27, 0x95, + 0xb8, 0xb3, 0xf1, 0xe4, 0x7c, 0x1d, 0xaa, 0x0e, 0xb1, 0x75, 0xad, 0xaf, 0xb8, 0x22, 0x7b, 0xf1, + 0x34, 0x8b, 0xc5, 0x18, 0x0e, 0x67, 0x13, 0x69, 0xbc, 0x74, 0xca, 0x69, 0xbc, 0x7c, 0xc2, 0x69, + 0x1c, 0x59, 0x50, 0x75, 0x29, 0xdb, 0x74, 0x0d, 0xfc, 0x9c, 0x55, 0xbc, 0x00, 0x8e, 0xc7, 0x6d, + 0x1f, 0x28, 0x12, 0x18, 0x8c, 0xe0, 0x50, 0x08, 0x5a, 0x83, 0x8b, 0x86, 0x66, 0xf2, 0xe4, 0xd7, + 0x25, 0x7d, 0xcb, 0x54, 0x5d, 0x1e, 0xf0, 0x2a, 0xed, 0xab, 0x82, 0xe9, 0xe2, 0x56, 0x72, 0x1a, + 0xa7, 0xe9, 0xd1, 0x26, 0x2c, 0x3a, 0xe4, 0x40, 0x63, 0x6a, 0xdc, 0xd3, 0x5c, 0x6a, 0x39, 0xc3, + 0x4d, 0xcd, 0xd0, 0x28, 0x0f, 0x83, 0x95, 0x76, 0xe3, 0x70, 0xd4, 0x5c, 0xc4, 0x19, 0xf3, 0x38, + 0x93, 0x8b, 0x45, 0x68, 0x5b, 0xf1, 0x5c, 0xa2, 0xf2, 0xa8, 0x56, 0x8d, 0x22, 0x74, 0x87, 0x8f, + 0x62, 0x31, 0x8b, 0x8c, 0x84, 0x77, 0x57, 0x4f, 0xc2, 0xbb, 0xe7, 0xf3, 0x3d, 0x1b, 0xed, 0xc0, + 0x55, 0xdb, 0xb1, 0x06, 0x0e, 0x71, 0xdd, 0x0d, 0xa2, 0xa8, 0xba, 0x66, 0x92, 0x60, 0xbd, 0x6a, + 0xdc, 0xce, 0x97, 0x0f, 0x47, 0xcd, 0xab, 0x9d, 0x6c, 0x12, 0x9c, 0xc7, 0x2b, 0x7f, 0x54, 0x86, + 0x85, 0x74, 0xa6, 0x65, 0xf5, 0x95, 0xd5, 0x73, 0x89, 0x73, 0x40, 0xd4, 0xbb, 0xfe, 0x1e, 0x5c, + 0xb3, 0x4c, 0xee, 0xf5, 0xe5, 0x28, 0x08, 0x3c, 0x1a, 0xa3, 0xc0, 0x19, 0x5c, 0xe8, 0xb5, 0xd8, + 0x7b, 0xe3, 0x57, 0x68, 0xa1, 0x37, 0x64, 0xbc, 0x3b, 0x6b, 0x70, 0x51, 0x04, 0x92, 0x60, 0x52, + 0x94, 0x61, 0xa1, 0x37, 0xec, 0x24, 0xa7, 0x71, 0x9a, 0x1e, 0xdd, 0x85, 0x4b, 0xca, 0x81, 0xa2, + 0xe9, 0x4a, 0x4f, 0x27, 0x21, 0x88, 0x5f, 0x7e, 0xbd, 0x24, 0x40, 0x2e, 0xad, 0xa5, 0x09, 0xf0, + 0x38, 0x0f, 0xda, 0x82, 0xcb, 0x9e, 0x39, 0x0e, 0xe5, 0x7b, 0xe7, 0xcb, 0x02, 0xea, 0xf2, 0xce, + 0x38, 0x09, 0xce, 0xe2, 0x43, 0x07, 0x00, 0xfd, 0xa0, 0x28, 0x70, 0x1b, 0xe7, 0x79, 0xb0, 0x6e, + 0x4f, 0xfd, 0x6e, 0x85, 0xf5, 0x45, 0x14, 0x12, 0xc3, 0x21, 0x17, 0xc7, 0x24, 0xc9, 0x7f, 0x2f, + 0xc5, 0xd3, 0x4c, 0xf0, 0x06, 0xa2, 0xb7, 0x12, 0xd5, 0xd1, 0x67, 0x52, 0xd5, 0xd1, 0xd2, 0x38, + 0x47, 0xac, 0x38, 0xfa, 0x2e, 0xcc, 0x31, 0xcf, 0xd4, 0xcc, 0x81, 0xff, 0x34, 0x44, 0x98, 0xbb, + 0x33, 0x85, 0xf7, 0x87, 0x18, 0xb1, 0x74, 0x79, 0xe9, 0x70, 0xd4, 0x9c, 0x4b, 0x4c, 0xe2, 0xa4, + 0x3c, 0xf9, 0x47, 0x12, 0x2c, 0xdd, 0xe9, 0xde, 0x75, 0x2c, 0xcf, 0x0e, 0xd4, 0x7b, 0x64, 0xfb, + 0x49, 0xe7, 0x17, 0x60, 0xc6, 0xf1, 0xf4, 0xc0, 0xae, 0x4f, 0x07, 0x76, 0x61, 0x4f, 0x67, 0x76, + 0x5d, 0x4e, 0x71, 0xf9, 0x46, 0x31, 0x06, 0xf4, 0x1e, 0x9c, 0x77, 0x14, 0x73, 0x40, 0x82, 0x44, + 0xfa, 0xf9, 0x82, 0xd6, 0xdc, 0xdf, 0xc0, 0x8c, 0x3d, 0x56, 0xd1, 0x71, 0x34, 0x2c, 0x50, 0xe5, + 0xdf, 0x91, 0xe0, 0xe2, 0xbd, 0xed, 0xed, 0xce, 0x7d, 0x93, 0xbf, 0x88, 0x1d, 0x85, 0xee, 0xb1, + 0x5c, 0x6f, 0x2b, 0x74, 0x2f, 0x9d, 0xeb, 0xd9, 0x1c, 0xe6, 0x33, 0x68, 0x0f, 0x66, 0x59, 0x00, + 0x20, 0xa6, 0x3a, 0x65, 0xa5, 0x2e, 0xc4, 0xb5, 0x7d, 0x90, 0xa8, 0x8c, 0x14, 0x03, 0x38, 0x80, + 0x97, 0xbf, 0x03, 0x8b, 0x31, 0xf5, 0xd8, 0x7a, 0xf1, 0x13, 0x13, 0xd4, 0x87, 0x0a, 0xd3, 0x24, + 0x38, 0x0f, 0x29, 0xba, 0xbd, 0x4f, 0x99, 0x1c, 0xd5, 0x42, 0xec, 0x9f, 0x8b, 0x7d, 0x6c, 0xf9, + 0x9f, 0x4a, 0x70, 0xf5, 0x9e, 0xe5, 0x68, 0xdf, 0xb6, 0x4c, 0xaa, 0xe8, 0x1d, 0x4b, 0x5d, 0xf3, + 0xa8, 0xe5, 0xf6, 0x15, 0x9d, 0x38, 0xa7, 0xb8, 0x07, 0xd2, 0x13, 0x7b, 0xa0, 0x07, 0x45, 0x2d, + 0xcb, 0xd6, 0x37, 0x77, 0x43, 0x44, 0x53, 0x1b, 0xa2, 0xcd, 0x13, 0x92, 0x37, 0x79, 0x77, 0xf4, + 0x1f, 0x12, 0xbc, 0x9c, 0xc3, 0x79, 0x16, 0x45, 0xf4, 0x7e, 0xb2, 0x88, 0xbe, 0x73, 0x32, 0x36, + 0xe7, 0x54, 0xd4, 0xff, 0x53, 0xca, 0xb5, 0x95, 0xd7, 0x70, 0x1f, 0x40, 0x95, 0xff, 0xc3, 0x64, + 0x57, 0xd8, 0xba, 0x5e, 0x50, 0x9f, 0xae, 0xd7, 0x0b, 0x0e, 0x1a, 0x31, 0xd9, 0x25, 0x0e, 0x31, + 0xfb, 0x24, 0x56, 0xde, 0x08, 0x70, 0x1c, 0x8a, 0x41, 0x37, 0xa0, 0xce, 0xcb, 0x95, 0x44, 0x06, + 0xbc, 0x78, 0x38, 0x6a, 0xd6, 0xb7, 0xa2, 0x61, 0x1c, 0xa7, 0x41, 0xb7, 0xa0, 0x6e, 0x28, 0x4f, + 0x53, 0xf9, 0x2f, 0x3c, 0x39, 0xd8, 0x8a, 0xa6, 0x70, 0x9c, 0x0e, 0x7d, 0x17, 0xe6, 0xfb, 0xb6, + 0x17, 0x3b, 0xe7, 0x16, 0xf5, 0x5b, 0x51, 0x13, 0xb3, 0x8e, 0xcc, 0xdb, 0x88, 0x6d, 0x0d, 0xd7, + 0x3b, 0x3b, 0xb1, 0x31, 0x9c, 0x12, 0x27, 0xff, 0x79, 0x19, 0x5e, 0x9d, 0xe8, 0xa3, 0xe8, 0xce, + 0x84, 0xba, 0x62, 0xa9, 0x40, 0x4d, 0xa1, 0xc2, 0x1c, 0xdb, 0x21, 0xf2, 0xe5, 0xe6, 0xfb, 0xcf, + 0x52, 0xf1, 0xfd, 0x27, 0x4f, 0x32, 0x9b, 0x71, 0x14, 0x9c, 0x04, 0x65, 0xb5, 0x88, 0x38, 0x7f, + 0xca, 0xab, 0x45, 0xd6, 0x93, 0xd3, 0x38, 0x4d, 0xcf, 0x20, 0xc4, 0xf1, 0x50, 0xaa, 0x12, 0x09, + 0x21, 0x36, 0x92, 0xd3, 0x38, 0x4d, 0x8f, 0x0c, 0x68, 0x0a, 0xd4, 0xe4, 0xf2, 0xc7, 0xee, 0x2e, + 0xfc, 0x8a, 0xe4, 0xd3, 0x87, 0xa3, 0x66, 0x73, 0x7d, 0x32, 0x29, 0x7e, 0x11, 0x96, 0xbc, 0x05, + 0x73, 0xf7, 0x2c, 0x97, 0x76, 0x2c, 0x87, 0xf2, 0xfc, 0x85, 0x5e, 0x85, 0xb2, 0xa1, 0x99, 0x62, + 0xcb, 0x53, 0x17, 0x6a, 0x97, 0x99, 0xf3, 0xb2, 0x71, 0x3e, 0xad, 0x3c, 0x15, 0x7e, 0x1d, 0x4d, + 0x2b, 0x4f, 0x31, 0x1b, 0x97, 0xef, 0xc2, 0xac, 0xc8, 0x8b, 0x71, 0xa0, 0xf2, 0x64, 0xa0, 0x72, + 0x06, 0xd0, 0xef, 0x97, 0x60, 0x56, 0xa4, 0x91, 0x53, 0x4c, 0x08, 0xdf, 0x48, 0x24, 0x84, 0xb7, + 0xa6, 0x4b, 0xb5, 0xb9, 0x09, 0x40, 0x4d, 0x25, 0x80, 0x77, 0xa6, 0xc4, 0x9f, 0x1c, 0xf0, 0x7f, + 0x28, 0xc1, 0x7c, 0x32, 0xe9, 0xb3, 0x88, 0xc2, 0xde, 0x21, 0xad, 0x4f, 0x1e, 0x46, 0x27, 0x0b, + 0x61, 0x44, 0xe9, 0x46, 0x53, 0x38, 0x4e, 0x87, 0x48, 0xc8, 0xc6, 0xdc, 0x41, 0x2c, 0x4a, 0x2b, + 0x47, 0x69, 0x8f, 0x6a, 0x7a, 0xcb, 0xbf, 0xb8, 0x6b, 0xdd, 0x37, 0xe9, 0x23, 0xa7, 0x4b, 0x1d, + 0xcd, 0x1c, 0x8c, 0x89, 0xe1, 0x9e, 0x15, 0xc7, 0x95, 0xff, 0x5a, 0x82, 0xba, 0x50, 0xf8, 0x2c, + 0x32, 0xd2, 0xd7, 0x93, 0x19, 0xe9, 0xf3, 0x53, 0xd6, 0x53, 0xd9, 0x19, 0xe8, 0xc7, 0x91, 0x2d, + 0xac, 0x82, 0x62, 0x05, 0xde, 0x9e, 0xe5, 0xd2, 0x74, 0x81, 0xc7, 0x5e, 0x31, 0xcc, 0x67, 0xd0, + 0xaf, 0x49, 0xb0, 0xa0, 0xa5, 0x6a, 0x2e, 0xb1, 0xd4, 0x5f, 0x9a, 0x4e, 0xb5, 0x10, 0x26, 0xba, + 0xce, 0x4c, 0xcf, 0xe0, 0x31, 0x91, 0xb2, 0x07, 0x63, 0x54, 0x48, 0x81, 0x99, 0x3d, 0x4a, 0xed, + 0x29, 0x73, 0x65, 0x56, 0x35, 0xd9, 0xae, 0x72, 0xf3, 0xb7, 0xb7, 0x3b, 0x98, 0x43, 0xcb, 0x3f, + 0x2c, 0x85, 0x0b, 0xd6, 0xf5, 0xdf, 0x91, 0xb0, 0xde, 0x95, 0x4e, 0xa2, 0xde, 0xad, 0x67, 0xd5, + 0xba, 0xe8, 0x09, 0x94, 0xa9, 0x3e, 0xed, 0xc1, 0x9e, 0x90, 0xb0, 0xbd, 0xd9, 0x8d, 0xe2, 0xd4, + 0xf6, 0x66, 0x17, 0x33, 0x48, 0xf4, 0x2d, 0xa8, 0xb0, 0xdd, 0x04, 0x7b, 0xc5, 0xcb, 0xd3, 0x87, + 0x10, 0xb6, 0x5e, 0x91, 0x87, 0xb1, 0x7f, 0x2e, 0xf6, 0x71, 0xe5, 0xef, 0xc0, 0x5c, 0x22, 0x0e, + 0xa0, 0xf7, 0xe1, 0x82, 0x6e, 0x29, 0x6a, 0x5b, 0xd1, 0x15, 0xb3, 0x4f, 0x82, 0x9b, 0xa3, 0x9f, + 0x9b, 0x1c, 0x11, 0x37, 0x63, 0x1c, 0x22, 0x9e, 0x84, 0x57, 0xca, 0xf1, 0x39, 0x9c, 0xc0, 0x96, + 0x15, 0x80, 0xc8, 0x7a, 0xd4, 0x84, 0x0a, 0x73, 0x61, 0x7f, 0x67, 0x50, 0x6b, 0xd7, 0x98, 0xae, + 0xcc, 0xb3, 0x5d, 0xec, 0x8f, 0xa3, 0x9b, 0x00, 0x2e, 0xe9, 0x3b, 0x84, 0xf2, 0xb0, 0xe3, 0x1f, + 0xa4, 0x87, 0x01, 0xb8, 0x1b, 0xce, 0xe0, 0x18, 0x95, 0xfc, 0x5b, 0x25, 0x28, 0x3f, 0xb0, 0x7a, + 0xa7, 0x18, 0xe4, 0x9f, 0x24, 0x82, 0x7c, 0xd1, 0xf7, 0xff, 0x81, 0xd5, 0xcb, 0x0d, 0xf0, 0xbf, + 0x9c, 0x0a, 0xf0, 0x6f, 0x4e, 0x81, 0x3d, 0x39, 0xb8, 0xff, 0x43, 0x19, 0x2e, 0x3c, 0xb0, 0x7a, + 0xd1, 0x25, 0xc7, 0x1b, 0x89, 0x6d, 0xfc, 0xb5, 0xd4, 0x36, 0x7e, 0x21, 0x4e, 0x7b, 0x06, 0xb7, + 0x1b, 0x7b, 0x7e, 0x61, 0xd6, 0x71, 0xac, 0x9e, 0x5f, 0x98, 0x95, 0x8b, 0x17, 0x66, 0x57, 0x84, + 0x2e, 0xbc, 0x38, 0x0b, 0x91, 0x70, 0x12, 0x38, 0xe7, 0x1e, 0x62, 0xe6, 0xd4, 0xef, 0x21, 0x62, + 0x17, 0x38, 0x95, 0xa3, 0x5e, 0xe0, 0x9c, 0x9f, 0x7c, 0x81, 0x23, 0xff, 0x99, 0x04, 0xb3, 0x0f, + 0xac, 0xde, 0x59, 0x24, 0xbf, 0xaf, 0x26, 0x93, 0xdf, 0xcd, 0xe2, 0x0e, 0x9a, 0x93, 0xf8, 0xfe, + 0xa8, 0xcc, 0x6d, 0xe0, 0x31, 0xfc, 0x06, 0xd4, 0x6d, 0xc5, 0x51, 0x74, 0x9d, 0xe8, 0x9a, 0x6b, + 0x88, 0xd2, 0x91, 0xef, 0x79, 0x3a, 0xd1, 0x30, 0x8e, 0xd3, 0x30, 0x96, 0xbe, 0x65, 0xd8, 0x3a, + 0x09, 0xae, 0x32, 0x42, 0x96, 0xf5, 0x68, 0x18, 0xc7, 0x69, 0xd0, 0x23, 0xb8, 0xa2, 0xf4, 0xa9, + 0x76, 0x40, 0xd2, 0xc7, 0xa1, 0x65, 0x5e, 0x42, 0xbe, 0x74, 0x38, 0x6a, 0x5e, 0x59, 0xcb, 0x22, + 0xc0, 0xd9, 0x7c, 0x89, 0x73, 0xfb, 0x99, 0x53, 0x38, 0xb7, 0x7f, 0x03, 0x2e, 0x28, 0x1e, 0xb5, + 0x82, 0x19, 0xee, 0x3f, 0xd5, 0xf6, 0x02, 0x0b, 0xb9, 0x6b, 0xb1, 0x71, 0x9c, 0xa0, 0x4a, 0x9c, + 0xf6, 0x9f, 0x3f, 0xe9, 0x4b, 0xfb, 0x3f, 0x2d, 0x43, 0x2d, 0x0c, 0x3a, 0xc8, 0x4a, 0x9c, 0x50, + 0xfa, 0xc7, 0x3d, 0x6f, 0x17, 0xf7, 0x90, 0x23, 0x1f, 0x4d, 0xa2, 0x27, 0x50, 0x73, 0xa9, 0xe2, + 0xd0, 0x69, 0xf7, 0x70, 0x73, 0x87, 0xa3, 0x66, 0xad, 0x1b, 0x20, 0xe0, 0x08, 0x0c, 0x0d, 0x60, + 0x3e, 0xf2, 0x95, 0x69, 0x23, 0x91, 0xbf, 0xe9, 0x4d, 0xc0, 0xe0, 0x14, 0x2c, 0x0b, 0x07, 0xbe, + 0x37, 0x89, 0x8d, 0x5d, 0x18, 0x0e, 0x7c, 0xd7, 0xc3, 0x62, 0x16, 0xad, 0x42, 0xcd, 0xf5, 0xfa, + 0x7d, 0x42, 0x54, 0xa2, 0x8a, 0x0d, 0xdb, 0x25, 0x41, 0x5a, 0xeb, 0x06, 0x13, 0x38, 0xa2, 0x61, + 0xc0, 0xbb, 0x8a, 0xa6, 0x13, 0x55, 0x5c, 0x63, 0x84, 0xc0, 0x77, 0xf8, 0x28, 0x16, 0xb3, 0xbc, + 0x2d, 0xe6, 0x21, 0xa1, 0x1f, 0x5a, 0xce, 0x7e, 0xc7, 0xd2, 0xb5, 0xfe, 0xf0, 0x14, 0x33, 0x67, + 0x2f, 0x91, 0x39, 0xbf, 0x5c, 0xd0, 0x35, 0x12, 0x5a, 0xe6, 0xe5, 0x50, 0xf9, 0xdf, 0x25, 0x68, + 0x24, 0x28, 0xe3, 0xe5, 0x34, 0x81, 0x8a, 0x6d, 0x39, 0x34, 0x70, 0xce, 0x63, 0x69, 0xc0, 0xf6, + 0x1e, 0xb1, 0xd3, 0x48, 0x06, 0x8b, 0x7d, 0x74, 0x66, 0xe7, 0xae, 0x63, 0x19, 0x22, 0x48, 0x1e, + 0x4f, 0x0a, 0x21, 0x4e, 0x64, 0xe7, 0x1d, 0xc7, 0x32, 0x30, 0xc7, 0x96, 0xff, 0x51, 0x82, 0x4b, + 0x09, 0xca, 0xb3, 0x08, 0xff, 0x4a, 0x32, 0xfc, 0xbf, 0x73, 0x1c, 0xcb, 0x72, 0x12, 0xc1, 0x7f, + 0xa7, 0xed, 0x62, 0x2b, 0x80, 0x06, 0x50, 0xb7, 0x2d, 0xb5, 0x7b, 0x12, 0xdd, 0x4d, 0x7e, 0x22, + 0x89, 0xc0, 0x70, 0x1c, 0x19, 0x0d, 0xe1, 0x92, 0xa9, 0x18, 0xc4, 0xb5, 0x95, 0x3e, 0xe9, 0x9e, + 0xc4, 0x2d, 0xec, 0x95, 0xc3, 0x51, 0xf3, 0xd2, 0xc3, 0x34, 0x24, 0x1e, 0x97, 0x22, 0xff, 0xf1, + 0x98, 0xe5, 0x96, 0x43, 0xd1, 0x57, 0xa0, 0xca, 0xbb, 0x57, 0xfb, 0x96, 0x2e, 0x8a, 0xb4, 0x5b, + 0xec, 0xe1, 0x74, 0xc4, 0xd8, 0xf3, 0x51, 0xf3, 0x67, 0x26, 0x96, 0x5a, 0x01, 0x21, 0x0e, 0x61, + 0xd0, 0x26, 0xcc, 0xd8, 0xd3, 0x6f, 0xc8, 0xf9, 0x0e, 0x8c, 0xef, 0xc2, 0x39, 0x8a, 0xfc, 0x9f, + 0x69, 0xb5, 0x79, 0x0e, 0xdf, 0x3f, 0xb9, 0x07, 0x16, 0x9e, 0x00, 0xe4, 0x3e, 0x34, 0x07, 0x66, + 0xc5, 0x7e, 0x54, 0x38, 0xe6, 0xdd, 0xe3, 0x38, 0x66, 0x7c, 0x0f, 0x15, 0x16, 0x5d, 0xc1, 0x60, + 0x20, 0x88, 0xbf, 0x7f, 0x5c, 0xa1, 0xbe, 0xe7, 0x68, 0x74, 0x78, 0xea, 0xb1, 0x73, 0x37, 0x11, + 0x3b, 0x37, 0x0a, 0x1a, 0x38, 0xa6, 0x69, 0x6e, 0xfc, 0xfc, 0x57, 0x09, 0xae, 0x8c, 0x51, 0x9f, + 0x45, 0x6c, 0x21, 0xc9, 0xd8, 0xf2, 0xe5, 0xe3, 0x5a, 0x98, 0x13, 0x5f, 0x9e, 0x41, 0x86, 0x7d, + 0xdc, 0x65, 0x6f, 0x02, 0xd8, 0x8e, 0x76, 0xa0, 0xe9, 0x64, 0x20, 0x3a, 0x0c, 0xab, 0xd1, 0x33, + 0xe9, 0x84, 0x33, 0x38, 0x46, 0x85, 0x7e, 0x05, 0x96, 0x54, 0xb2, 0xab, 0x78, 0x3a, 0x5d, 0x53, + 0xd5, 0x75, 0xc5, 0x56, 0x7a, 0x9a, 0xae, 0x51, 0x4d, 0x5c, 0x02, 0xd6, 0xda, 0xb7, 0xfd, 0xce, + 0xbf, 0x2c, 0x8a, 0xe7, 0xa3, 0xe6, 0x67, 0x27, 0x6f, 0x92, 0x02, 0xe2, 0x21, 0xce, 0x11, 0x82, + 0x7e, 0x55, 0x82, 0x86, 0x43, 0x3e, 0xf0, 0x34, 0x87, 0xa8, 0x1b, 0x8e, 0x65, 0x27, 0x34, 0x28, + 0x73, 0x0d, 0xee, 0x1e, 0x8e, 0x9a, 0x0d, 0x9c, 0x43, 0x53, 0x44, 0x87, 0x5c, 0x41, 0x88, 0xc2, + 0x65, 0x45, 0xd7, 0xad, 0x0f, 0x49, 0x72, 0x05, 0x66, 0xb8, 0xfc, 0xf6, 0xe1, 0xa8, 0x79, 0x79, + 0x6d, 0x7c, 0xba, 0x88, 0xe8, 0x2c, 0x78, 0xb4, 0x0a, 0xb3, 0x07, 0x96, 0xee, 0x19, 0xc4, 0x6d, + 0x54, 0xb8, 0x24, 0x16, 0x69, 0x67, 0x1f, 0xfb, 0x43, 0xcf, 0x59, 0xa1, 0xd3, 0xe5, 0x3b, 0xd6, + 0x80, 0x0a, 0xdd, 0x82, 0xfa, 0x9e, 0xe5, 0x52, 0xf1, 0xae, 0xf3, 0xb2, 0xa8, 0x1a, 0x05, 0x97, + 0x7b, 0xd1, 0x14, 0x8e, 0xd3, 0x21, 0x03, 0x6a, 0x7b, 0xe2, 0x44, 0xdb, 0x6d, 0xcc, 0x4e, 0x95, + 0xf7, 0x12, 0x27, 0xe2, 0x51, 0xdd, 0x16, 0x0c, 0xbb, 0x38, 0x92, 0xc0, 0xf6, 0x7d, 0xfc, 0xcf, + 0xfd, 0x0d, 0xde, 0x13, 0x52, 0x8d, 0x42, 0xd0, 0x3d, 0x7f, 0x18, 0x07, 0xf3, 0x01, 0xe9, 0xfd, + 0xce, 0x3a, 0x6f, 0xe1, 0x48, 0x91, 0xde, 0xef, 0xac, 0xe3, 0x60, 0x1e, 0xd9, 0x30, 0xeb, 0x92, + 0x4d, 0xcd, 0xf4, 0x9e, 0x36, 0x80, 0xbf, 0xba, 0xb7, 0x8b, 0x5e, 0x5c, 0xdd, 0xe6, 0xdc, 0xa9, + 0xdb, 0xf2, 0x48, 0xa2, 0x98, 0xc7, 0x81, 0x18, 0xf4, 0x14, 0x6a, 0x8e, 0x67, 0xae, 0xb9, 0x3b, + 0x2e, 0x71, 0x1a, 0x75, 0x2e, 0xb3, 0x68, 0x54, 0xc6, 0x01, 0x7f, 0x5a, 0x6a, 0xb8, 0x82, 0x21, + 0x05, 0x8e, 0x84, 0xa1, 0xdf, 0x96, 0x00, 0xb9, 0x9e, 0x6d, 0xeb, 0xc4, 0x20, 0x26, 0x55, 0x74, + 0x7e, 0x61, 0xef, 0x36, 0x2e, 0x70, 0x1d, 0x3a, 0x85, 0x2f, 0xec, 0xd2, 0x40, 0x69, 0x65, 0xc2, + 0x03, 0x80, 0x71, 0x52, 0x9c, 0xa1, 0x07, 0x7b, 0x14, 0xbb, 0x2e, 0xff, 0xdd, 0x98, 0x9b, 0xea, + 0x51, 0x64, 0x37, 0x2e, 0x44, 0x8f, 0x42, 0xcc, 0xe3, 0x40, 0x0c, 0x7a, 0x0c, 0x4b, 0x0e, 0x51, + 0xd4, 0x47, 0xa6, 0x3e, 0xc4, 0x96, 0x45, 0xef, 0x68, 0x3a, 0x71, 0x87, 0x2e, 0x25, 0x46, 0x63, + 0x9e, 0xbb, 0x4d, 0xd8, 0xa2, 0x8c, 0x33, 0xa9, 0x70, 0x0e, 0x37, 0xef, 0x35, 0x16, 0xf7, 0x4c, + 0xa7, 0xfb, 0x09, 0xc2, 0xf1, 0x7a, 0x8d, 0x23, 0x15, 0x4f, 0xad, 0xd7, 0x38, 0x26, 0x62, 0xf2, + 0xf9, 0xdb, 0x7f, 0x95, 0xe0, 0x72, 0x44, 0x7c, 0xe4, 0x5e, 0xe3, 0x0c, 0x96, 0x33, 0x38, 0x8d, + 0xcb, 0x3e, 0x23, 0x2b, 0x9f, 0xe5, 0x19, 0xd9, 0x49, 0x35, 0x39, 0xf3, 0xf6, 0xdf, 0x68, 0x15, + 0xff, 0x0f, 0xb4, 0xff, 0x46, 0xca, 0xe6, 0x14, 0x32, 0x7f, 0x52, 0x8a, 0x5b, 0xf4, 0xff, 0xa9, + 0xc7, 0x34, 0xa3, 0xe5, 0x73, 0xa6, 0x58, 0xcb, 0xa7, 0xfc, 0x2f, 0x65, 0x58, 0x48, 0xbf, 0xb4, + 0x89, 0x56, 0x43, 0xe9, 0x85, 0xad, 0x86, 0x1d, 0x58, 0xdc, 0xf5, 0x74, 0x7d, 0xc8, 0x17, 0x24, + 0x76, 0x41, 0xef, 0x9f, 0x3d, 0xbe, 0x22, 0x38, 0x17, 0xef, 0x64, 0xd0, 0xe0, 0x4c, 0xce, 0x9c, + 0xb6, 0xc9, 0xf2, 0x54, 0x6d, 0x93, 0x6f, 0xc3, 0x9c, 0xc3, 0xbf, 0x0e, 0x49, 0xf6, 0x0d, 0x84, + 0x87, 0xe3, 0x38, 0x3e, 0x89, 0x93, 0xb4, 0xd9, 0x2d, 0x90, 0x95, 0x29, 0x5a, 0x20, 0x4f, 0xa2, + 0x67, 0x31, 0x23, 0xf6, 0xbd, 0xb0, 0x67, 0xf1, 0x15, 0x58, 0x16, 0x6c, 0xec, 0xff, 0xba, 0x65, + 0x52, 0xc7, 0xd2, 0x75, 0xe2, 0x6c, 0x78, 0x86, 0x31, 0x94, 0xdf, 0x85, 0xf9, 0x64, 0xe3, 0xac, + 0xff, 0xe4, 0xfd, 0x5e, 0x5e, 0xd1, 0x60, 0x10, 0x7b, 0xf2, 0xfe, 0x38, 0x0e, 0x29, 0xe4, 0x8f, + 0x24, 0xb8, 0x9a, 0xd3, 0x7b, 0x88, 0xde, 0x87, 0x79, 0x43, 0x79, 0x1a, 0x6b, 0xea, 0x14, 0xa1, + 0xa5, 0xe8, 0x2e, 0x9b, 0x9f, 0x1d, 0x6e, 0x25, 0x90, 0x70, 0x0a, 0x99, 0x27, 0x5c, 0xe5, 0x69, + 0xd7, 0x73, 0x06, 0x64, 0xca, 0xbd, 0x3c, 0x7f, 0x7d, 0xb7, 0x04, 0x06, 0x0e, 0xd1, 0xe4, 0x1f, + 0x49, 0xd0, 0xc8, 0xab, 0xbe, 0xd0, 0xad, 0x44, 0x87, 0xe4, 0xa7, 0x52, 0x1d, 0x92, 0x97, 0xc6, + 0xf8, 0xce, 0xa8, 0x3f, 0xf2, 0xc7, 0x12, 0x2c, 0x65, 0x57, 0xa9, 0xe8, 0xe7, 0x13, 0x1a, 0x37, + 0x53, 0x1a, 0x5f, 0x4c, 0x71, 0x09, 0x7d, 0xf7, 0x60, 0x5e, 0xd4, 0xb2, 0x02, 0xe6, 0x08, 0x1f, + 0x91, 0x1e, 0x84, 0x85, 0x72, 0x50, 0x95, 0xf1, 0xe7, 0x98, 0x1c, 0xc3, 0x29, 0x5c, 0xf9, 0x77, + 0x4b, 0x50, 0xe1, 0x6d, 0x43, 0xa7, 0x58, 0x42, 0x7d, 0x2d, 0x51, 0x42, 0x15, 0xbd, 0x58, 0xe4, + 0xda, 0xe5, 0x56, 0x4f, 0xbd, 0x54, 0xf5, 0xf4, 0xd6, 0x54, 0xe8, 0x93, 0x0b, 0xa7, 0x2f, 0x40, + 0x2d, 0x54, 0xa2, 0x58, 0xa0, 0x66, 0x65, 0x6a, 0x3d, 0x26, 0xa2, 0x60, 0x98, 0x3f, 0x48, 0x64, + 0xca, 0x69, 0xbe, 0x76, 0x8e, 0xc9, 0x6e, 0x05, 0xa9, 0xd2, 0xff, 0x20, 0x26, 0x6a, 0xfc, 0x1b, + 0xcf, 0xa0, 0xef, 0xc2, 0xbc, 0xff, 0xc9, 0x78, 0x78, 0x86, 0x56, 0xe6, 0xde, 0x1b, 0x7e, 0x68, + 0xb5, 0x9d, 0x98, 0xc5, 0x29, 0xea, 0xe5, 0xb7, 0x61, 0x2e, 0x21, 0xac, 0xd0, 0xf7, 0x2b, 0x7f, + 0x29, 0xc1, 0x62, 0x56, 0xab, 0x22, 0xba, 0x06, 0x33, 0xfb, 0x9a, 0xe8, 0xad, 0x88, 0xf5, 0xa3, + 0xfc, 0xa2, 0x66, 0xaa, 0x98, 0xcf, 0x84, 0x9f, 0x1f, 0x95, 0x72, 0x3f, 0x3f, 0xba, 0x09, 0xa0, + 0xd8, 0x9a, 0xf8, 0x0c, 0x5f, 0x58, 0x15, 0x3a, 0x6f, 0xf4, 0x81, 0x3e, 0x8e, 0x51, 0xf1, 0x0e, + 0xa4, 0x48, 0x1f, 0x51, 0x16, 0x46, 0xad, 0x41, 0x31, 0x55, 0xe3, 0x74, 0xf2, 0x5f, 0x49, 0xf0, + 0xa9, 0x17, 0xee, 0xe0, 0x50, 0x3b, 0x11, 0x1e, 0x5a, 0xa9, 0xf0, 0xb0, 0x92, 0x0f, 0x70, 0x86, + 0xdd, 0xdf, 0xdf, 0x2f, 0x01, 0xda, 0xde, 0xd3, 0x1c, 0xb5, 0xa3, 0x38, 0x74, 0x88, 0x85, 0x81, + 0xa7, 0x18, 0x30, 0x6e, 0x41, 0x5d, 0x25, 0x6e, 0xdf, 0xd1, 0xf8, 0x22, 0x89, 0xc7, 0x19, 0xae, + 0xf8, 0x46, 0x34, 0x85, 0xe3, 0x74, 0x68, 0x00, 0x55, 0x51, 0x2b, 0x06, 0x2d, 0x2c, 0x45, 0x0b, + 0xdf, 0xc8, 0x03, 0xa2, 0xf7, 0x43, 0x0c, 0xb8, 0x38, 0x04, 0x97, 0x7f, 0x20, 0xc1, 0xd2, 0xf8, + 0x82, 0x6c, 0xf8, 0x0d, 0x1a, 0xa7, 0xb5, 0x28, 0xaf, 0xc0, 0x0c, 0x47, 0x65, 0xab, 0x71, 0xc1, + 0x3f, 0x09, 0x67, 0x12, 0x31, 0x1f, 0x95, 0x3f, 0x91, 0x60, 0x39, 0x5b, 0xa5, 0xb3, 0xd8, 0x6f, + 0xbc, 0x9f, 0xdc, 0x6f, 0x14, 0x3d, 0x55, 0xc8, 0x56, 0x3c, 0x67, 0xef, 0xf1, 0x51, 0xe6, 0xe2, + 0x9f, 0x85, 0x95, 0xbb, 0x49, 0x2b, 0xd7, 0x8e, 0x6d, 0x65, 0xb6, 0x85, 0xed, 0xcf, 0x3d, 0xfb, + 0x78, 0xe5, 0xdc, 0x4f, 0x3e, 0x5e, 0x39, 0xf7, 0xcf, 0x1f, 0xaf, 0x9c, 0xfb, 0xde, 0xe1, 0x8a, + 0xf4, 0xec, 0x70, 0x45, 0xfa, 0xc9, 0xe1, 0x8a, 0xf4, 0x6f, 0x87, 0x2b, 0xd2, 0x0f, 0x7e, 0xba, + 0x72, 0xee, 0x6b, 0xb3, 0x02, 0xf3, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x14, 0xb2, 0x70, 0xfe, + 0x25, 0x46, 0x00, 0x00, } diff --git a/pkg/apis/extensions/v1beta1/generated.proto b/pkg/apis/extensions/v1beta1/generated.proto index 933264e1110..a2d22e1f2ff 100644 --- a/pkg/apis/extensions/v1beta1/generated.proto +++ b/pkg/apis/extensions/v1beta1/generated.proto @@ -289,15 +289,6 @@ message DeploymentStrategy { optional RollingUpdateDeployment rollingUpdate = 2; } -// ExportOptions is the query options to the standard REST get call. -message ExportOptions { - // Should this value be exported. Export strips fields that a user can not specify. - optional bool export = 1; - - // Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' - optional bool exact = 2; -} - // FSGroupStrategyOptions defines the strategy type and options used to create the strategy. message FSGroupStrategyOptions { // Rule is the strategy that will dictate what FSGroup is used in the SecurityContext. diff --git a/pkg/apis/extensions/v1beta1/types.generated.go b/pkg/apis/extensions/v1beta1/types.generated.go index 49b2fa78f79..5b66f08a592 100644 --- a/pkg/apis/extensions/v1beta1/types.generated.go +++ b/pkg/apis/extensions/v1beta1/types.generated.go @@ -14626,7 +14626,7 @@ func (x *IngressBackend) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *ReplicaSet) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -14640,16 +14640,19 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep1237 := !z.EncBinary() yy2arr1237 := z.EncBasicHandle().StructToArray - var yyq1237 [4]bool + var yyq1237 [5]bool _, _, _ = yysep1237, yyq1237, yy2arr1237 const yyr1237 bool = false yyq1237[0] = x.Kind != "" yyq1237[1] = x.APIVersion != "" + yyq1237[2] = true + yyq1237[3] = true + yyq1237[4] = true var yynn1237 int if yyr1237 || yy2arr1237 { - r.EncodeArrayStart(4) + r.EncodeArrayStart(5) } else { - yynn1237 = 2 + yynn1237 = 0 for _, b := range yyq1237 { if b { yynn1237++ @@ -14710,358 +14713,56 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr1237 || yy2arr1237 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1245 := z.EncBinary() - _ = yym1245 - if false { - } else { - r.EncodeBool(bool(x.Export)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("export")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1246 := z.EncBinary() - _ = yym1246 - if false { - } else { - r.EncodeBool(bool(x.Export)) - } - } - if yyr1237 || yy2arr1237 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1248 := z.EncBinary() - _ = yym1248 - if false { - } else { - r.EncodeBool(bool(x.Exact)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("exact")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1249 := z.EncBinary() - _ = yym1249 - if false { - } else { - r.EncodeBool(bool(x.Exact)) - } - } - if yyr1237 || yy2arr1237 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1250 := z.DecBinary() - _ = yym1250 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1251 := r.ContainerType() - if yyct1251 == codecSelferValueTypeMap1234 { - yyl1251 := r.ReadMapStart() - if yyl1251 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1251, d) - } - } else if yyct1251 == codecSelferValueTypeArray1234 { - yyl1251 := r.ReadArrayStart() - if yyl1251 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1251, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1252Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1252Slc - var yyhl1252 bool = l >= 0 - for yyj1252 := 0; ; yyj1252++ { - if yyhl1252 { - if yyj1252 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1252Slc = r.DecodeBytes(yys1252Slc, true, true) - yys1252 := string(yys1252Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1252 { - 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 "export": - if r.TryDecodeAsNil() { - x.Export = false - } else { - x.Export = bool(r.DecodeBool()) - } - case "exact": - if r.TryDecodeAsNil() { - x.Exact = false - } else { - x.Exact = bool(r.DecodeBool()) - } - default: - z.DecStructFieldNotFound(-1, yys1252) - } // end switch yys1252 - } // end for yyj1252 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1257 int - var yyb1257 bool - var yyhl1257 bool = l >= 0 - yyj1257++ - if yyhl1257 { - yyb1257 = yyj1257 > l - } else { - yyb1257 = r.CheckBreak() - } - if yyb1257 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj1257++ - if yyhl1257 { - yyb1257 = yyj1257 > l - } else { - yyb1257 = r.CheckBreak() - } - if yyb1257 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj1257++ - if yyhl1257 { - yyb1257 = yyj1257 > l - } else { - yyb1257 = r.CheckBreak() - } - if yyb1257 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Export = false - } else { - x.Export = bool(r.DecodeBool()) - } - yyj1257++ - if yyhl1257 { - yyb1257 = yyj1257 > l - } else { - yyb1257 = r.CheckBreak() - } - if yyb1257 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Exact = false - } else { - x.Exact = bool(r.DecodeBool()) - } - for { - yyj1257++ - if yyhl1257 { - yyb1257 = yyj1257 > l - } else { - yyb1257 = r.CheckBreak() - } - if yyb1257 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1257-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ReplicaSet) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1262 := z.EncBinary() - _ = yym1262 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1263 := !z.EncBinary() - yy2arr1263 := z.EncBasicHandle().StructToArray - var yyq1263 [5]bool - _, _, _ = yysep1263, yyq1263, yy2arr1263 - const yyr1263 bool = false - yyq1263[0] = x.Kind != "" - yyq1263[1] = x.APIVersion != "" - yyq1263[2] = true - yyq1263[3] = true - yyq1263[4] = true - var yynn1263 int - if yyr1263 || yy2arr1263 { - r.EncodeArrayStart(5) - } else { - yynn1263 = 0 - for _, b := range yyq1263 { - if b { - yynn1263++ - } - } - r.EncodeMapStart(yynn1263) - yynn1263 = 0 - } - if yyr1263 || yy2arr1263 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1263[0] { - yym1265 := z.EncBinary() - _ = yym1265 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1263[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1266 := z.EncBinary() - _ = yym1266 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr1263 || yy2arr1263 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1263[1] { - yym1268 := z.EncBinary() - _ = yym1268 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1263[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1269 := z.EncBinary() - _ = yym1269 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr1263 || yy2arr1263 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1263[2] { - yy1271 := &x.ObjectMeta - yy1271.CodecEncodeSelf(e) + if yyq1237[2] { + yy1245 := &x.ObjectMeta + yy1245.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1263[2] { + if yyq1237[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1272 := &x.ObjectMeta - yy1272.CodecEncodeSelf(e) + yy1246 := &x.ObjectMeta + yy1246.CodecEncodeSelf(e) } } - if yyr1263 || yy2arr1263 { + if yyr1237 || yy2arr1237 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1263[3] { - yy1274 := &x.Spec - yy1274.CodecEncodeSelf(e) + if yyq1237[3] { + yy1248 := &x.Spec + yy1248.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1263[3] { + if yyq1237[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1275 := &x.Spec - yy1275.CodecEncodeSelf(e) + yy1249 := &x.Spec + yy1249.CodecEncodeSelf(e) } } - if yyr1263 || yy2arr1263 { + if yyr1237 || yy2arr1237 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1263[4] { - yy1277 := &x.Status - yy1277.CodecEncodeSelf(e) + if yyq1237[4] { + yy1251 := &x.Status + yy1251.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1263[4] { + if yyq1237[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1278 := &x.Status - yy1278.CodecEncodeSelf(e) + yy1252 := &x.Status + yy1252.CodecEncodeSelf(e) } } - if yyr1263 || yy2arr1263 { + if yyr1237 || yy2arr1237 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15074,25 +14775,25 @@ func (x *ReplicaSet) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1279 := z.DecBinary() - _ = yym1279 + yym1253 := z.DecBinary() + _ = yym1253 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1280 := r.ContainerType() - if yyct1280 == codecSelferValueTypeMap1234 { - yyl1280 := r.ReadMapStart() - if yyl1280 == 0 { + yyct1254 := r.ContainerType() + if yyct1254 == codecSelferValueTypeMap1234 { + yyl1254 := r.ReadMapStart() + if yyl1254 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1280, d) + x.codecDecodeSelfFromMap(yyl1254, d) } - } else if yyct1280 == codecSelferValueTypeArray1234 { - yyl1280 := r.ReadArrayStart() - if yyl1280 == 0 { + } else if yyct1254 == codecSelferValueTypeArray1234 { + yyl1254 := r.ReadArrayStart() + if yyl1254 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1280, d) + x.codecDecodeSelfFromArray(yyl1254, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15104,12 +14805,12 @@ func (x *ReplicaSet) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1281Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1281Slc - var yyhl1281 bool = l >= 0 - for yyj1281 := 0; ; yyj1281++ { - if yyhl1281 { - if yyj1281 >= l { + var yys1255Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1255Slc + var yyhl1255 bool = l >= 0 + for yyj1255 := 0; ; yyj1255++ { + if yyhl1255 { + if yyj1255 >= l { break } } else { @@ -15118,10 +14819,10 @@ func (x *ReplicaSet) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1281Slc = r.DecodeBytes(yys1281Slc, true, true) - yys1281 := string(yys1281Slc) + yys1255Slc = r.DecodeBytes(yys1255Slc, true, true) + yys1255 := string(yys1255Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1281 { + switch yys1255 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -15138,27 +14839,27 @@ func (x *ReplicaSet) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = pkg2_v1.ObjectMeta{} } else { - yyv1284 := &x.ObjectMeta - yyv1284.CodecDecodeSelf(d) + yyv1258 := &x.ObjectMeta + yyv1258.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ReplicaSetSpec{} } else { - yyv1285 := &x.Spec - yyv1285.CodecDecodeSelf(d) + yyv1259 := &x.Spec + yyv1259.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ReplicaSetStatus{} } else { - yyv1286 := &x.Status - yyv1286.CodecDecodeSelf(d) + yyv1260 := &x.Status + yyv1260.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1281) - } // end switch yys1281 - } // end for yyj1281 + z.DecStructFieldNotFound(-1, yys1255) + } // end switch yys1255 + } // end for yyj1255 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15166,16 +14867,16 @@ func (x *ReplicaSet) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1287 int - var yyb1287 bool - var yyhl1287 bool = l >= 0 - yyj1287++ - if yyhl1287 { - yyb1287 = yyj1287 > l + var yyj1261 int + var yyb1261 bool + var yyhl1261 bool = l >= 0 + yyj1261++ + if yyhl1261 { + yyb1261 = yyj1261 > l } else { - yyb1287 = r.CheckBreak() + yyb1261 = r.CheckBreak() } - if yyb1287 { + if yyb1261 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15185,13 +14886,13 @@ func (x *ReplicaSet) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1287++ - if yyhl1287 { - yyb1287 = yyj1287 > l + yyj1261++ + if yyhl1261 { + yyb1261 = yyj1261 > l } else { - yyb1287 = r.CheckBreak() + yyb1261 = r.CheckBreak() } - if yyb1287 { + if yyb1261 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15201,13 +14902,13 @@ func (x *ReplicaSet) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1287++ - if yyhl1287 { - yyb1287 = yyj1287 > l + yyj1261++ + if yyhl1261 { + yyb1261 = yyj1261 > l } else { - yyb1287 = r.CheckBreak() + yyb1261 = r.CheckBreak() } - if yyb1287 { + if yyb1261 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15215,16 +14916,16 @@ func (x *ReplicaSet) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = pkg2_v1.ObjectMeta{} } else { - yyv1290 := &x.ObjectMeta - yyv1290.CodecDecodeSelf(d) + yyv1264 := &x.ObjectMeta + yyv1264.CodecDecodeSelf(d) } - yyj1287++ - if yyhl1287 { - yyb1287 = yyj1287 > l + yyj1261++ + if yyhl1261 { + yyb1261 = yyj1261 > l } else { - yyb1287 = r.CheckBreak() + yyb1261 = r.CheckBreak() } - if yyb1287 { + if yyb1261 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15232,16 +14933,16 @@ func (x *ReplicaSet) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ReplicaSetSpec{} } else { - yyv1291 := &x.Spec - yyv1291.CodecDecodeSelf(d) + yyv1265 := &x.Spec + yyv1265.CodecDecodeSelf(d) } - yyj1287++ - if yyhl1287 { - yyb1287 = yyj1287 > l + yyj1261++ + if yyhl1261 { + yyb1261 = yyj1261 > l } else { - yyb1287 = r.CheckBreak() + yyb1261 = r.CheckBreak() } - if yyb1287 { + if yyb1261 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15249,21 +14950,21 @@ func (x *ReplicaSet) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ReplicaSetStatus{} } else { - yyv1292 := &x.Status - yyv1292.CodecDecodeSelf(d) + yyv1266 := &x.Status + yyv1266.CodecDecodeSelf(d) } for { - yyj1287++ - if yyhl1287 { - yyb1287 = yyj1287 > l + yyj1261++ + if yyhl1261 { + yyb1261 = yyj1261 > l } else { - yyb1287 = r.CheckBreak() + yyb1261 = r.CheckBreak() } - if yyb1287 { + if yyb1261 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1287-1, "") + z.DecStructFieldNotFound(yyj1261-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15275,37 +14976,37 @@ func (x *ReplicaSetList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1293 := z.EncBinary() - _ = yym1293 + yym1267 := z.EncBinary() + _ = yym1267 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1294 := !z.EncBinary() - yy2arr1294 := z.EncBasicHandle().StructToArray - var yyq1294 [4]bool - _, _, _ = yysep1294, yyq1294, yy2arr1294 - const yyr1294 bool = false - yyq1294[0] = x.Kind != "" - yyq1294[1] = x.APIVersion != "" - yyq1294[2] = true - var yynn1294 int - if yyr1294 || yy2arr1294 { + yysep1268 := !z.EncBinary() + yy2arr1268 := z.EncBasicHandle().StructToArray + var yyq1268 [4]bool + _, _, _ = yysep1268, yyq1268, yy2arr1268 + const yyr1268 bool = false + yyq1268[0] = x.Kind != "" + yyq1268[1] = x.APIVersion != "" + yyq1268[2] = true + var yynn1268 int + if yyr1268 || yy2arr1268 { r.EncodeArrayStart(4) } else { - yynn1294 = 1 - for _, b := range yyq1294 { + yynn1268 = 1 + for _, b := range yyq1268 { if b { - yynn1294++ + yynn1268++ } } - r.EncodeMapStart(yynn1294) - yynn1294 = 0 + r.EncodeMapStart(yynn1268) + yynn1268 = 0 } - if yyr1294 || yy2arr1294 { + if yyr1268 || yy2arr1268 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1294[0] { - yym1296 := z.EncBinary() - _ = yym1296 + if yyq1268[0] { + yym1270 := z.EncBinary() + _ = yym1270 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -15314,23 +15015,23 @@ func (x *ReplicaSetList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1294[0] { + if yyq1268[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1297 := z.EncBinary() - _ = yym1297 + yym1271 := z.EncBinary() + _ = yym1271 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1294 || yy2arr1294 { + if yyr1268 || yy2arr1268 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1294[1] { - yym1299 := z.EncBinary() - _ = yym1299 + if yyq1268[1] { + yym1273 := z.EncBinary() + _ = yym1273 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -15339,54 +15040,54 @@ func (x *ReplicaSetList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1294[1] { + if yyq1268[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1300 := z.EncBinary() - _ = yym1300 + yym1274 := z.EncBinary() + _ = yym1274 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1294 || yy2arr1294 { + if yyr1268 || yy2arr1268 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1294[2] { - yy1302 := &x.ListMeta - yym1303 := z.EncBinary() - _ = yym1303 + if yyq1268[2] { + yy1276 := &x.ListMeta + yym1277 := z.EncBinary() + _ = yym1277 if false { - } else if z.HasExtensions() && z.EncExt(yy1302) { + } else if z.HasExtensions() && z.EncExt(yy1276) { } else { - z.EncFallback(yy1302) + z.EncFallback(yy1276) } } else { r.EncodeNil() } } else { - if yyq1294[2] { + if yyq1268[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1304 := &x.ListMeta - yym1305 := z.EncBinary() - _ = yym1305 + yy1278 := &x.ListMeta + yym1279 := z.EncBinary() + _ = yym1279 if false { - } else if z.HasExtensions() && z.EncExt(yy1304) { + } else if z.HasExtensions() && z.EncExt(yy1278) { } else { - z.EncFallback(yy1304) + z.EncFallback(yy1278) } } } - if yyr1294 || yy2arr1294 { + if yyr1268 || yy2arr1268 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1307 := z.EncBinary() - _ = yym1307 + yym1281 := z.EncBinary() + _ = yym1281 if false { } else { h.encSliceReplicaSet(([]ReplicaSet)(x.Items), e) @@ -15399,15 +15100,15 @@ func (x *ReplicaSetList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1308 := z.EncBinary() - _ = yym1308 + yym1282 := z.EncBinary() + _ = yym1282 if false { } else { h.encSliceReplicaSet(([]ReplicaSet)(x.Items), e) } } } - if yyr1294 || yy2arr1294 { + if yyr1268 || yy2arr1268 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15420,25 +15121,25 @@ func (x *ReplicaSetList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1309 := z.DecBinary() - _ = yym1309 + yym1283 := z.DecBinary() + _ = yym1283 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1310 := r.ContainerType() - if yyct1310 == codecSelferValueTypeMap1234 { - yyl1310 := r.ReadMapStart() - if yyl1310 == 0 { + yyct1284 := r.ContainerType() + if yyct1284 == codecSelferValueTypeMap1234 { + yyl1284 := r.ReadMapStart() + if yyl1284 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1310, d) + x.codecDecodeSelfFromMap(yyl1284, d) } - } else if yyct1310 == codecSelferValueTypeArray1234 { - yyl1310 := r.ReadArrayStart() - if yyl1310 == 0 { + } else if yyct1284 == codecSelferValueTypeArray1234 { + yyl1284 := r.ReadArrayStart() + if yyl1284 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1310, d) + x.codecDecodeSelfFromArray(yyl1284, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15450,12 +15151,12 @@ func (x *ReplicaSetList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1311Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1311Slc - var yyhl1311 bool = l >= 0 - for yyj1311 := 0; ; yyj1311++ { - if yyhl1311 { - if yyj1311 >= l { + var yys1285Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1285Slc + var yyhl1285 bool = l >= 0 + for yyj1285 := 0; ; yyj1285++ { + if yyhl1285 { + if yyj1285 >= l { break } } else { @@ -15464,10 +15165,10 @@ func (x *ReplicaSetList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1311Slc = r.DecodeBytes(yys1311Slc, true, true) - yys1311 := string(yys1311Slc) + yys1285Slc = r.DecodeBytes(yys1285Slc, true, true) + yys1285 := string(yys1285Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1311 { + switch yys1285 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -15484,31 +15185,31 @@ func (x *ReplicaSetList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg1_unversioned.ListMeta{} } else { - yyv1314 := &x.ListMeta - yym1315 := z.DecBinary() - _ = yym1315 + yyv1288 := &x.ListMeta + yym1289 := z.DecBinary() + _ = yym1289 if false { - } else if z.HasExtensions() && z.DecExt(yyv1314) { + } else if z.HasExtensions() && z.DecExt(yyv1288) { } else { - z.DecFallback(yyv1314, false) + z.DecFallback(yyv1288, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1316 := &x.Items - yym1317 := z.DecBinary() - _ = yym1317 + yyv1290 := &x.Items + yym1291 := z.DecBinary() + _ = yym1291 if false { } else { - h.decSliceReplicaSet((*[]ReplicaSet)(yyv1316), d) + h.decSliceReplicaSet((*[]ReplicaSet)(yyv1290), d) } } default: - z.DecStructFieldNotFound(-1, yys1311) - } // end switch yys1311 - } // end for yyj1311 + z.DecStructFieldNotFound(-1, yys1285) + } // end switch yys1285 + } // end for yyj1285 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15516,16 +15217,16 @@ func (x *ReplicaSetList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1318 int - var yyb1318 bool - var yyhl1318 bool = l >= 0 - yyj1318++ - if yyhl1318 { - yyb1318 = yyj1318 > l + var yyj1292 int + var yyb1292 bool + var yyhl1292 bool = l >= 0 + yyj1292++ + if yyhl1292 { + yyb1292 = yyj1292 > l } else { - yyb1318 = r.CheckBreak() + yyb1292 = r.CheckBreak() } - if yyb1318 { + if yyb1292 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15535,13 +15236,13 @@ func (x *ReplicaSetList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1318++ - if yyhl1318 { - yyb1318 = yyj1318 > l + yyj1292++ + if yyhl1292 { + yyb1292 = yyj1292 > l } else { - yyb1318 = r.CheckBreak() + yyb1292 = r.CheckBreak() } - if yyb1318 { + if yyb1292 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15551,13 +15252,13 @@ func (x *ReplicaSetList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1318++ - if yyhl1318 { - yyb1318 = yyj1318 > l + yyj1292++ + if yyhl1292 { + yyb1292 = yyj1292 > l } else { - yyb1318 = r.CheckBreak() + yyb1292 = r.CheckBreak() } - if yyb1318 { + if yyb1292 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15565,22 +15266,22 @@ func (x *ReplicaSetList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg1_unversioned.ListMeta{} } else { - yyv1321 := &x.ListMeta - yym1322 := z.DecBinary() - _ = yym1322 + yyv1295 := &x.ListMeta + yym1296 := z.DecBinary() + _ = yym1296 if false { - } else if z.HasExtensions() && z.DecExt(yyv1321) { + } else if z.HasExtensions() && z.DecExt(yyv1295) { } else { - z.DecFallback(yyv1321, false) + z.DecFallback(yyv1295, false) } } - yyj1318++ - if yyhl1318 { - yyb1318 = yyj1318 > l + yyj1292++ + if yyhl1292 { + yyb1292 = yyj1292 > l } else { - yyb1318 = r.CheckBreak() + yyb1292 = r.CheckBreak() } - if yyb1318 { + if yyb1292 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15588,26 +15289,26 @@ func (x *ReplicaSetList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1323 := &x.Items - yym1324 := z.DecBinary() - _ = yym1324 + yyv1297 := &x.Items + yym1298 := z.DecBinary() + _ = yym1298 if false { } else { - h.decSliceReplicaSet((*[]ReplicaSet)(yyv1323), d) + h.decSliceReplicaSet((*[]ReplicaSet)(yyv1297), d) } } for { - yyj1318++ - if yyhl1318 { - yyb1318 = yyj1318 > l + yyj1292++ + if yyhl1292 { + yyb1292 = yyj1292 > l } else { - yyb1318 = r.CheckBreak() + yyb1292 = r.CheckBreak() } - if yyb1318 { + if yyb1292 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1318-1, "") + z.DecStructFieldNotFound(yyj1292-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15619,73 +15320,73 @@ func (x *ReplicaSetSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1325 := z.EncBinary() - _ = yym1325 + yym1299 := z.EncBinary() + _ = yym1299 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1326 := !z.EncBinary() - yy2arr1326 := z.EncBasicHandle().StructToArray - var yyq1326 [4]bool - _, _, _ = yysep1326, yyq1326, yy2arr1326 - const yyr1326 bool = false - yyq1326[0] = x.Replicas != nil - yyq1326[1] = x.MinReadySeconds != 0 - yyq1326[2] = x.Selector != nil - yyq1326[3] = true - var yynn1326 int - if yyr1326 || yy2arr1326 { + yysep1300 := !z.EncBinary() + yy2arr1300 := z.EncBasicHandle().StructToArray + var yyq1300 [4]bool + _, _, _ = yysep1300, yyq1300, yy2arr1300 + const yyr1300 bool = false + yyq1300[0] = x.Replicas != nil + yyq1300[1] = x.MinReadySeconds != 0 + yyq1300[2] = x.Selector != nil + yyq1300[3] = true + var yynn1300 int + if yyr1300 || yy2arr1300 { r.EncodeArrayStart(4) } else { - yynn1326 = 0 - for _, b := range yyq1326 { + yynn1300 = 0 + for _, b := range yyq1300 { if b { - yynn1326++ + yynn1300++ } } - r.EncodeMapStart(yynn1326) - yynn1326 = 0 + r.EncodeMapStart(yynn1300) + yynn1300 = 0 } - if yyr1326 || yy2arr1326 { + if yyr1300 || yy2arr1300 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1326[0] { + if yyq1300[0] { if x.Replicas == nil { r.EncodeNil() } else { - yy1328 := *x.Replicas - yym1329 := z.EncBinary() - _ = yym1329 + yy1302 := *x.Replicas + yym1303 := z.EncBinary() + _ = yym1303 if false { } else { - r.EncodeInt(int64(yy1328)) + r.EncodeInt(int64(yy1302)) } } } else { r.EncodeNil() } } else { - if yyq1326[0] { + if yyq1300[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Replicas == nil { r.EncodeNil() } else { - yy1330 := *x.Replicas - yym1331 := z.EncBinary() - _ = yym1331 + yy1304 := *x.Replicas + yym1305 := z.EncBinary() + _ = yym1305 if false { } else { - r.EncodeInt(int64(yy1330)) + r.EncodeInt(int64(yy1304)) } } } } - if yyr1326 || yy2arr1326 { + if yyr1300 || yy2arr1300 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1326[1] { - yym1333 := z.EncBinary() - _ = yym1333 + if yyq1300[1] { + yym1307 := z.EncBinary() + _ = yym1307 if false { } else { r.EncodeInt(int64(x.MinReadySeconds)) @@ -15694,26 +15395,26 @@ func (x *ReplicaSetSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1326[1] { + if yyq1300[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("minReadySeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1334 := z.EncBinary() - _ = yym1334 + yym1308 := z.EncBinary() + _ = yym1308 if false { } else { r.EncodeInt(int64(x.MinReadySeconds)) } } } - if yyr1326 || yy2arr1326 { + if yyr1300 || yy2arr1300 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1326[2] { + if yyq1300[2] { if x.Selector == nil { r.EncodeNil() } else { - yym1336 := z.EncBinary() - _ = yym1336 + yym1310 := z.EncBinary() + _ = yym1310 if false { } else if z.HasExtensions() && z.EncExt(x.Selector) { } else { @@ -15724,15 +15425,15 @@ func (x *ReplicaSetSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1326[2] { + if yyq1300[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym1337 := z.EncBinary() - _ = yym1337 + yym1311 := z.EncBinary() + _ = yym1311 if false { } else if z.HasExtensions() && z.EncExt(x.Selector) { } else { @@ -15741,24 +15442,24 @@ func (x *ReplicaSetSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1326 || yy2arr1326 { + if yyr1300 || yy2arr1300 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1326[3] { - yy1339 := &x.Template - yy1339.CodecEncodeSelf(e) + if yyq1300[3] { + yy1313 := &x.Template + yy1313.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1326[3] { + if yyq1300[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1340 := &x.Template - yy1340.CodecEncodeSelf(e) + yy1314 := &x.Template + yy1314.CodecEncodeSelf(e) } } - if yyr1326 || yy2arr1326 { + if yyr1300 || yy2arr1300 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15771,25 +15472,25 @@ func (x *ReplicaSetSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1341 := z.DecBinary() - _ = yym1341 + yym1315 := z.DecBinary() + _ = yym1315 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1342 := r.ContainerType() - if yyct1342 == codecSelferValueTypeMap1234 { - yyl1342 := r.ReadMapStart() - if yyl1342 == 0 { + yyct1316 := r.ContainerType() + if yyct1316 == codecSelferValueTypeMap1234 { + yyl1316 := r.ReadMapStart() + if yyl1316 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1342, d) + x.codecDecodeSelfFromMap(yyl1316, d) } - } else if yyct1342 == codecSelferValueTypeArray1234 { - yyl1342 := r.ReadArrayStart() - if yyl1342 == 0 { + } else if yyct1316 == codecSelferValueTypeArray1234 { + yyl1316 := r.ReadArrayStart() + if yyl1316 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1342, d) + x.codecDecodeSelfFromArray(yyl1316, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15801,12 +15502,12 @@ func (x *ReplicaSetSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1343Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1343Slc - var yyhl1343 bool = l >= 0 - for yyj1343 := 0; ; yyj1343++ { - if yyhl1343 { - if yyj1343 >= l { + var yys1317Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1317Slc + var yyhl1317 bool = l >= 0 + for yyj1317 := 0; ; yyj1317++ { + if yyhl1317 { + if yyj1317 >= l { break } } else { @@ -15815,10 +15516,10 @@ func (x *ReplicaSetSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1343Slc = r.DecodeBytes(yys1343Slc, true, true) - yys1343 := string(yys1343Slc) + yys1317Slc = r.DecodeBytes(yys1317Slc, true, true) + yys1317 := string(yys1317Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1343 { + switch yys1317 { case "replicas": if r.TryDecodeAsNil() { if x.Replicas != nil { @@ -15828,8 +15529,8 @@ func (x *ReplicaSetSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Replicas == nil { x.Replicas = new(int32) } - yym1345 := z.DecBinary() - _ = yym1345 + yym1319 := z.DecBinary() + _ = yym1319 if false { } else { *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) @@ -15850,8 +15551,8 @@ func (x *ReplicaSetSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Selector == nil { x.Selector = new(pkg1_unversioned.LabelSelector) } - yym1348 := z.DecBinary() - _ = yym1348 + yym1322 := z.DecBinary() + _ = yym1322 if false { } else if z.HasExtensions() && z.DecExt(x.Selector) { } else { @@ -15862,13 +15563,13 @@ func (x *ReplicaSetSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Template = pkg2_v1.PodTemplateSpec{} } else { - yyv1349 := &x.Template - yyv1349.CodecDecodeSelf(d) + yyv1323 := &x.Template + yyv1323.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1343) - } // end switch yys1343 - } // end for yyj1343 + z.DecStructFieldNotFound(-1, yys1317) + } // end switch yys1317 + } // end for yyj1317 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15876,16 +15577,16 @@ func (x *ReplicaSetSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1350 int - var yyb1350 bool - var yyhl1350 bool = l >= 0 - yyj1350++ - if yyhl1350 { - yyb1350 = yyj1350 > l + var yyj1324 int + var yyb1324 bool + var yyhl1324 bool = l >= 0 + yyj1324++ + if yyhl1324 { + yyb1324 = yyj1324 > l } else { - yyb1350 = r.CheckBreak() + yyb1324 = r.CheckBreak() } - if yyb1350 { + if yyb1324 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15898,20 +15599,20 @@ func (x *ReplicaSetSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Replicas == nil { x.Replicas = new(int32) } - yym1352 := z.DecBinary() - _ = yym1352 + yym1326 := z.DecBinary() + _ = yym1326 if false { } else { *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) } } - yyj1350++ - if yyhl1350 { - yyb1350 = yyj1350 > l + yyj1324++ + if yyhl1324 { + yyb1324 = yyj1324 > l } else { - yyb1350 = r.CheckBreak() + yyb1324 = r.CheckBreak() } - if yyb1350 { + if yyb1324 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15921,13 +15622,13 @@ func (x *ReplicaSetSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MinReadySeconds = int32(r.DecodeInt(32)) } - yyj1350++ - if yyhl1350 { - yyb1350 = yyj1350 > l + yyj1324++ + if yyhl1324 { + yyb1324 = yyj1324 > l } else { - yyb1350 = r.CheckBreak() + yyb1324 = r.CheckBreak() } - if yyb1350 { + if yyb1324 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15940,21 +15641,21 @@ func (x *ReplicaSetSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Selector == nil { x.Selector = new(pkg1_unversioned.LabelSelector) } - yym1355 := z.DecBinary() - _ = yym1355 + yym1329 := z.DecBinary() + _ = yym1329 if false { } else if z.HasExtensions() && z.DecExt(x.Selector) { } else { z.DecFallback(x.Selector, false) } } - yyj1350++ - if yyhl1350 { - yyb1350 = yyj1350 > l + yyj1324++ + if yyhl1324 { + yyb1324 = yyj1324 > l } else { - yyb1350 = r.CheckBreak() + yyb1324 = r.CheckBreak() } - if yyb1350 { + if yyb1324 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15962,21 +15663,21 @@ func (x *ReplicaSetSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Template = pkg2_v1.PodTemplateSpec{} } else { - yyv1356 := &x.Template - yyv1356.CodecDecodeSelf(d) + yyv1330 := &x.Template + yyv1330.CodecDecodeSelf(d) } for { - yyj1350++ - if yyhl1350 { - yyb1350 = yyj1350 > l + yyj1324++ + if yyhl1324 { + yyb1324 = yyj1324 > l } else { - yyb1350 = r.CheckBreak() + yyb1324 = r.CheckBreak() } - if yyb1350 { + if yyb1324 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1350-1, "") + z.DecStructFieldNotFound(yyj1324-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15988,38 +15689,38 @@ func (x *ReplicaSetStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1357 := z.EncBinary() - _ = yym1357 + yym1331 := z.EncBinary() + _ = yym1331 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1358 := !z.EncBinary() - yy2arr1358 := z.EncBasicHandle().StructToArray - var yyq1358 [6]bool - _, _, _ = yysep1358, yyq1358, yy2arr1358 - const yyr1358 bool = false - yyq1358[1] = x.FullyLabeledReplicas != 0 - yyq1358[2] = x.ReadyReplicas != 0 - yyq1358[3] = x.AvailableReplicas != 0 - yyq1358[4] = x.ObservedGeneration != 0 - yyq1358[5] = len(x.Conditions) != 0 - var yynn1358 int - if yyr1358 || yy2arr1358 { + yysep1332 := !z.EncBinary() + yy2arr1332 := z.EncBasicHandle().StructToArray + var yyq1332 [6]bool + _, _, _ = yysep1332, yyq1332, yy2arr1332 + const yyr1332 bool = false + yyq1332[1] = x.FullyLabeledReplicas != 0 + yyq1332[2] = x.ReadyReplicas != 0 + yyq1332[3] = x.AvailableReplicas != 0 + yyq1332[4] = x.ObservedGeneration != 0 + yyq1332[5] = len(x.Conditions) != 0 + var yynn1332 int + if yyr1332 || yy2arr1332 { r.EncodeArrayStart(6) } else { - yynn1358 = 1 - for _, b := range yyq1358 { + yynn1332 = 1 + for _, b := range yyq1332 { if b { - yynn1358++ + yynn1332++ } } - r.EncodeMapStart(yynn1358) - yynn1358 = 0 + r.EncodeMapStart(yynn1332) + yynn1332 = 0 } - if yyr1358 || yy2arr1358 { + if yyr1332 || yy2arr1332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1360 := z.EncBinary() - _ = yym1360 + yym1334 := z.EncBinary() + _ = yym1334 if false { } else { r.EncodeInt(int64(x.Replicas)) @@ -16028,18 +15729,18 @@ func (x *ReplicaSetStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1361 := z.EncBinary() - _ = yym1361 + yym1335 := z.EncBinary() + _ = yym1335 if false { } else { r.EncodeInt(int64(x.Replicas)) } } - if yyr1358 || yy2arr1358 { + if yyr1332 || yy2arr1332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1358[1] { - yym1363 := z.EncBinary() - _ = yym1363 + if yyq1332[1] { + yym1337 := z.EncBinary() + _ = yym1337 if false { } else { r.EncodeInt(int64(x.FullyLabeledReplicas)) @@ -16048,23 +15749,23 @@ func (x *ReplicaSetStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1358[1] { + if yyq1332[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fullyLabeledReplicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1364 := z.EncBinary() - _ = yym1364 + yym1338 := z.EncBinary() + _ = yym1338 if false { } else { r.EncodeInt(int64(x.FullyLabeledReplicas)) } } } - if yyr1358 || yy2arr1358 { + if yyr1332 || yy2arr1332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1358[2] { - yym1366 := z.EncBinary() - _ = yym1366 + if yyq1332[2] { + yym1340 := z.EncBinary() + _ = yym1340 if false { } else { r.EncodeInt(int64(x.ReadyReplicas)) @@ -16073,23 +15774,23 @@ func (x *ReplicaSetStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1358[2] { + if yyq1332[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readyReplicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1367 := z.EncBinary() - _ = yym1367 + yym1341 := z.EncBinary() + _ = yym1341 if false { } else { r.EncodeInt(int64(x.ReadyReplicas)) } } } - if yyr1358 || yy2arr1358 { + if yyr1332 || yy2arr1332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1358[3] { - yym1369 := z.EncBinary() - _ = yym1369 + if yyq1332[3] { + yym1343 := z.EncBinary() + _ = yym1343 if false { } else { r.EncodeInt(int64(x.AvailableReplicas)) @@ -16098,23 +15799,23 @@ func (x *ReplicaSetStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1358[3] { + if yyq1332[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("availableReplicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1370 := z.EncBinary() - _ = yym1370 + yym1344 := z.EncBinary() + _ = yym1344 if false { } else { r.EncodeInt(int64(x.AvailableReplicas)) } } } - if yyr1358 || yy2arr1358 { + if yyr1332 || yy2arr1332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1358[4] { - yym1372 := z.EncBinary() - _ = yym1372 + if yyq1332[4] { + yym1346 := z.EncBinary() + _ = yym1346 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) @@ -16123,26 +15824,26 @@ func (x *ReplicaSetStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1358[4] { + if yyq1332[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("observedGeneration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1373 := z.EncBinary() - _ = yym1373 + yym1347 := z.EncBinary() + _ = yym1347 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) } } } - if yyr1358 || yy2arr1358 { + if yyr1332 || yy2arr1332 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1358[5] { + if yyq1332[5] { if x.Conditions == nil { r.EncodeNil() } else { - yym1375 := z.EncBinary() - _ = yym1375 + yym1349 := z.EncBinary() + _ = yym1349 if false { } else { h.encSliceReplicaSetCondition(([]ReplicaSetCondition)(x.Conditions), e) @@ -16152,15 +15853,15 @@ func (x *ReplicaSetStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1358[5] { + if yyq1332[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym1376 := z.EncBinary() - _ = yym1376 + yym1350 := z.EncBinary() + _ = yym1350 if false { } else { h.encSliceReplicaSetCondition(([]ReplicaSetCondition)(x.Conditions), e) @@ -16168,7 +15869,7 @@ func (x *ReplicaSetStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1358 || yy2arr1358 { + if yyr1332 || yy2arr1332 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16181,25 +15882,25 @@ func (x *ReplicaSetStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1377 := z.DecBinary() - _ = yym1377 + yym1351 := z.DecBinary() + _ = yym1351 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1378 := r.ContainerType() - if yyct1378 == codecSelferValueTypeMap1234 { - yyl1378 := r.ReadMapStart() - if yyl1378 == 0 { + yyct1352 := r.ContainerType() + if yyct1352 == codecSelferValueTypeMap1234 { + yyl1352 := r.ReadMapStart() + if yyl1352 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1378, d) + x.codecDecodeSelfFromMap(yyl1352, d) } - } else if yyct1378 == codecSelferValueTypeArray1234 { - yyl1378 := r.ReadArrayStart() - if yyl1378 == 0 { + } else if yyct1352 == codecSelferValueTypeArray1234 { + yyl1352 := r.ReadArrayStart() + if yyl1352 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1378, d) + x.codecDecodeSelfFromArray(yyl1352, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16211,12 +15912,12 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1379Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1379Slc - var yyhl1379 bool = l >= 0 - for yyj1379 := 0; ; yyj1379++ { - if yyhl1379 { - if yyj1379 >= l { + var yys1353Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1353Slc + var yyhl1353 bool = l >= 0 + for yyj1353 := 0; ; yyj1353++ { + if yyhl1353 { + if yyj1353 >= l { break } } else { @@ -16225,10 +15926,10 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1379Slc = r.DecodeBytes(yys1379Slc, true, true) - yys1379 := string(yys1379Slc) + yys1353Slc = r.DecodeBytes(yys1353Slc, true, true) + yys1353 := string(yys1353Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1379 { + switch yys1353 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -16263,18 +15964,18 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv1385 := &x.Conditions - yym1386 := z.DecBinary() - _ = yym1386 + yyv1359 := &x.Conditions + yym1360 := z.DecBinary() + _ = yym1360 if false { } else { - h.decSliceReplicaSetCondition((*[]ReplicaSetCondition)(yyv1385), d) + h.decSliceReplicaSetCondition((*[]ReplicaSetCondition)(yyv1359), d) } } default: - z.DecStructFieldNotFound(-1, yys1379) - } // end switch yys1379 - } // end for yyj1379 + z.DecStructFieldNotFound(-1, yys1353) + } // end switch yys1353 + } // end for yyj1353 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16282,16 +15983,16 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1387 int - var yyb1387 bool - var yyhl1387 bool = l >= 0 - yyj1387++ - if yyhl1387 { - yyb1387 = yyj1387 > l + var yyj1361 int + var yyb1361 bool + var yyhl1361 bool = l >= 0 + yyj1361++ + if yyhl1361 { + yyb1361 = yyj1361 > l } else { - yyb1387 = r.CheckBreak() + yyb1361 = r.CheckBreak() } - if yyb1387 { + if yyb1361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16301,13 +16002,13 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Replicas = int32(r.DecodeInt(32)) } - yyj1387++ - if yyhl1387 { - yyb1387 = yyj1387 > l + yyj1361++ + if yyhl1361 { + yyb1361 = yyj1361 > l } else { - yyb1387 = r.CheckBreak() + yyb1361 = r.CheckBreak() } - if yyb1387 { + if yyb1361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16317,13 +16018,13 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.FullyLabeledReplicas = int32(r.DecodeInt(32)) } - yyj1387++ - if yyhl1387 { - yyb1387 = yyj1387 > l + yyj1361++ + if yyhl1361 { + yyb1361 = yyj1361 > l } else { - yyb1387 = r.CheckBreak() + yyb1361 = r.CheckBreak() } - if yyb1387 { + if yyb1361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16333,13 +16034,13 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ReadyReplicas = int32(r.DecodeInt(32)) } - yyj1387++ - if yyhl1387 { - yyb1387 = yyj1387 > l + yyj1361++ + if yyhl1361 { + yyb1361 = yyj1361 > l } else { - yyb1387 = r.CheckBreak() + yyb1361 = r.CheckBreak() } - if yyb1387 { + if yyb1361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16349,13 +16050,13 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.AvailableReplicas = int32(r.DecodeInt(32)) } - yyj1387++ - if yyhl1387 { - yyb1387 = yyj1387 > l + yyj1361++ + if yyhl1361 { + yyb1361 = yyj1361 > l } else { - yyb1387 = r.CheckBreak() + yyb1361 = r.CheckBreak() } - if yyb1387 { + if yyb1361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16365,13 +16066,13 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ObservedGeneration = int64(r.DecodeInt(64)) } - yyj1387++ - if yyhl1387 { - yyb1387 = yyj1387 > l + yyj1361++ + if yyhl1361 { + yyb1361 = yyj1361 > l } else { - yyb1387 = r.CheckBreak() + yyb1361 = r.CheckBreak() } - if yyb1387 { + if yyb1361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16379,26 +16080,26 @@ func (x *ReplicaSetStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv1393 := &x.Conditions - yym1394 := z.DecBinary() - _ = yym1394 + yyv1367 := &x.Conditions + yym1368 := z.DecBinary() + _ = yym1368 if false { } else { - h.decSliceReplicaSetCondition((*[]ReplicaSetCondition)(yyv1393), d) + h.decSliceReplicaSetCondition((*[]ReplicaSetCondition)(yyv1367), d) } } for { - yyj1387++ - if yyhl1387 { - yyb1387 = yyj1387 > l + yyj1361++ + if yyhl1361 { + yyb1361 = yyj1361 > l } else { - yyb1387 = r.CheckBreak() + yyb1361 = r.CheckBreak() } - if yyb1387 { + if yyb1361 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1387-1, "") + z.DecStructFieldNotFound(yyj1361-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16407,8 +16108,8 @@ func (x ReplicaSetConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1395 := z.EncBinary() - _ = yym1395 + yym1369 := z.EncBinary() + _ = yym1369 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -16420,8 +16121,8 @@ func (x *ReplicaSetConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1396 := z.DecBinary() - _ = yym1396 + yym1370 := z.DecBinary() + _ = yym1370 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -16436,33 +16137,33 @@ func (x *ReplicaSetCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1397 := z.EncBinary() - _ = yym1397 + yym1371 := z.EncBinary() + _ = yym1371 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1398 := !z.EncBinary() - yy2arr1398 := z.EncBasicHandle().StructToArray - var yyq1398 [5]bool - _, _, _ = yysep1398, yyq1398, yy2arr1398 - const yyr1398 bool = false - yyq1398[2] = true - yyq1398[3] = x.Reason != "" - yyq1398[4] = x.Message != "" - var yynn1398 int - if yyr1398 || yy2arr1398 { + yysep1372 := !z.EncBinary() + yy2arr1372 := z.EncBasicHandle().StructToArray + var yyq1372 [5]bool + _, _, _ = yysep1372, yyq1372, yy2arr1372 + const yyr1372 bool = false + yyq1372[2] = true + yyq1372[3] = x.Reason != "" + yyq1372[4] = x.Message != "" + var yynn1372 int + if yyr1372 || yy2arr1372 { r.EncodeArrayStart(5) } else { - yynn1398 = 2 - for _, b := range yyq1398 { + yynn1372 = 2 + for _, b := range yyq1372 { if b { - yynn1398++ + yynn1372++ } } - r.EncodeMapStart(yynn1398) - yynn1398 = 0 + r.EncodeMapStart(yynn1372) + yynn1372 = 0 } - if yyr1398 || yy2arr1398 { + if yyr1372 || yy2arr1372 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -16471,10 +16172,10 @@ func (x *ReplicaSetCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr1398 || yy2arr1398 { + if yyr1372 || yy2arr1372 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1401 := z.EncBinary() - _ = yym1401 + yym1375 := z.EncBinary() + _ = yym1375 if false { } else if z.HasExtensions() && z.EncExt(x.Status) { } else { @@ -16484,56 +16185,56 @@ func (x *ReplicaSetCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1402 := z.EncBinary() - _ = yym1402 + yym1376 := z.EncBinary() + _ = yym1376 if false { } else if z.HasExtensions() && z.EncExt(x.Status) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Status)) } } - if yyr1398 || yy2arr1398 { + if yyr1372 || yy2arr1372 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1398[2] { - yy1404 := &x.LastTransitionTime - yym1405 := z.EncBinary() - _ = yym1405 + if yyq1372[2] { + yy1378 := &x.LastTransitionTime + yym1379 := z.EncBinary() + _ = yym1379 if false { - } else if z.HasExtensions() && z.EncExt(yy1404) { - } else if yym1405 { - z.EncBinaryMarshal(yy1404) - } else if !yym1405 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1404) + } else if z.HasExtensions() && z.EncExt(yy1378) { + } else if yym1379 { + z.EncBinaryMarshal(yy1378) + } else if !yym1379 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1378) } else { - z.EncFallback(yy1404) + z.EncFallback(yy1378) } } else { r.EncodeNil() } } else { - if yyq1398[2] { + if yyq1372[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1406 := &x.LastTransitionTime - yym1407 := z.EncBinary() - _ = yym1407 + yy1380 := &x.LastTransitionTime + yym1381 := z.EncBinary() + _ = yym1381 if false { - } else if z.HasExtensions() && z.EncExt(yy1406) { - } else if yym1407 { - z.EncBinaryMarshal(yy1406) - } else if !yym1407 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1406) + } else if z.HasExtensions() && z.EncExt(yy1380) { + } else if yym1381 { + z.EncBinaryMarshal(yy1380) + } else if !yym1381 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1380) } else { - z.EncFallback(yy1406) + z.EncFallback(yy1380) } } } - if yyr1398 || yy2arr1398 { + if yyr1372 || yy2arr1372 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1398[3] { - yym1409 := z.EncBinary() - _ = yym1409 + if yyq1372[3] { + yym1383 := z.EncBinary() + _ = yym1383 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -16542,23 +16243,23 @@ func (x *ReplicaSetCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1398[3] { + if yyq1372[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1410 := z.EncBinary() - _ = yym1410 + yym1384 := z.EncBinary() + _ = yym1384 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1398 || yy2arr1398 { + if yyr1372 || yy2arr1372 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1398[4] { - yym1412 := z.EncBinary() - _ = yym1412 + if yyq1372[4] { + yym1386 := z.EncBinary() + _ = yym1386 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -16567,19 +16268,19 @@ func (x *ReplicaSetCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1398[4] { + if yyq1372[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1413 := z.EncBinary() - _ = yym1413 + yym1387 := z.EncBinary() + _ = yym1387 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1398 || yy2arr1398 { + if yyr1372 || yy2arr1372 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16592,25 +16293,25 @@ func (x *ReplicaSetCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1414 := z.DecBinary() - _ = yym1414 + yym1388 := z.DecBinary() + _ = yym1388 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1415 := r.ContainerType() - if yyct1415 == codecSelferValueTypeMap1234 { - yyl1415 := r.ReadMapStart() - if yyl1415 == 0 { + yyct1389 := r.ContainerType() + if yyct1389 == codecSelferValueTypeMap1234 { + yyl1389 := r.ReadMapStart() + if yyl1389 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1415, d) + x.codecDecodeSelfFromMap(yyl1389, d) } - } else if yyct1415 == codecSelferValueTypeArray1234 { - yyl1415 := r.ReadArrayStart() - if yyl1415 == 0 { + } else if yyct1389 == codecSelferValueTypeArray1234 { + yyl1389 := r.ReadArrayStart() + if yyl1389 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1415, d) + x.codecDecodeSelfFromArray(yyl1389, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16622,12 +16323,12 @@ func (x *ReplicaSetCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1416Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1416Slc - var yyhl1416 bool = l >= 0 - for yyj1416 := 0; ; yyj1416++ { - if yyhl1416 { - if yyj1416 >= l { + var yys1390Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1390Slc + var yyhl1390 bool = l >= 0 + for yyj1390 := 0; ; yyj1390++ { + if yyhl1390 { + if yyj1390 >= l { break } } else { @@ -16636,10 +16337,10 @@ func (x *ReplicaSetCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1416Slc = r.DecodeBytes(yys1416Slc, true, true) - yys1416 := string(yys1416Slc) + yys1390Slc = r.DecodeBytes(yys1390Slc, true, true) + yys1390 := string(yys1390Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1416 { + switch yys1390 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -16656,17 +16357,17 @@ func (x *ReplicaSetCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.LastTransitionTime = pkg1_unversioned.Time{} } else { - yyv1419 := &x.LastTransitionTime - yym1420 := z.DecBinary() - _ = yym1420 + yyv1393 := &x.LastTransitionTime + yym1394 := z.DecBinary() + _ = yym1394 if false { - } else if z.HasExtensions() && z.DecExt(yyv1419) { - } else if yym1420 { - z.DecBinaryUnmarshal(yyv1419) - } else if !yym1420 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1419) + } else if z.HasExtensions() && z.DecExt(yyv1393) { + } else if yym1394 { + z.DecBinaryUnmarshal(yyv1393) + } else if !yym1394 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1393) } else { - z.DecFallback(yyv1419, false) + z.DecFallback(yyv1393, false) } } case "reason": @@ -16682,9 +16383,9 @@ func (x *ReplicaSetCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1416) - } // end switch yys1416 - } // end for yyj1416 + z.DecStructFieldNotFound(-1, yys1390) + } // end switch yys1390 + } // end for yyj1390 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16692,16 +16393,16 @@ func (x *ReplicaSetCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1423 int - var yyb1423 bool - var yyhl1423 bool = l >= 0 - yyj1423++ - if yyhl1423 { - yyb1423 = yyj1423 > l + var yyj1397 int + var yyb1397 bool + var yyhl1397 bool = l >= 0 + yyj1397++ + if yyhl1397 { + yyb1397 = yyj1397 > l } else { - yyb1423 = r.CheckBreak() + yyb1397 = r.CheckBreak() } - if yyb1423 { + if yyb1397 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16711,13 +16412,13 @@ func (x *ReplicaSetCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Type = ReplicaSetConditionType(r.DecodeString()) } - yyj1423++ - if yyhl1423 { - yyb1423 = yyj1423 > l + yyj1397++ + if yyhl1397 { + yyb1397 = yyj1397 > l } else { - yyb1423 = r.CheckBreak() + yyb1397 = r.CheckBreak() } - if yyb1423 { + if yyb1397 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16727,13 +16428,13 @@ func (x *ReplicaSetCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Status = pkg2_v1.ConditionStatus(r.DecodeString()) } - yyj1423++ - if yyhl1423 { - yyb1423 = yyj1423 > l + yyj1397++ + if yyhl1397 { + yyb1397 = yyj1397 > l } else { - yyb1423 = r.CheckBreak() + yyb1397 = r.CheckBreak() } - if yyb1423 { + if yyb1397 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16741,26 +16442,26 @@ func (x *ReplicaSetCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.LastTransitionTime = pkg1_unversioned.Time{} } else { - yyv1426 := &x.LastTransitionTime - yym1427 := z.DecBinary() - _ = yym1427 + yyv1400 := &x.LastTransitionTime + yym1401 := z.DecBinary() + _ = yym1401 if false { - } else if z.HasExtensions() && z.DecExt(yyv1426) { - } else if yym1427 { - z.DecBinaryUnmarshal(yyv1426) - } else if !yym1427 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1426) + } else if z.HasExtensions() && z.DecExt(yyv1400) { + } else if yym1401 { + z.DecBinaryUnmarshal(yyv1400) + } else if !yym1401 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1400) } else { - z.DecFallback(yyv1426, false) + z.DecFallback(yyv1400, false) } } - yyj1423++ - if yyhl1423 { - yyb1423 = yyj1423 > l + yyj1397++ + if yyhl1397 { + yyb1397 = yyj1397 > l } else { - yyb1423 = r.CheckBreak() + yyb1397 = r.CheckBreak() } - if yyb1423 { + if yyb1397 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16770,13 +16471,13 @@ func (x *ReplicaSetCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Reason = string(r.DecodeString()) } - yyj1423++ - if yyhl1423 { - yyb1423 = yyj1423 > l + yyj1397++ + if yyhl1397 { + yyb1397 = yyj1397 > l } else { - yyb1423 = r.CheckBreak() + yyb1397 = r.CheckBreak() } - if yyb1423 { + if yyb1397 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16787,17 +16488,17 @@ func (x *ReplicaSetCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Message = string(r.DecodeString()) } for { - yyj1423++ - if yyhl1423 { - yyb1423 = yyj1423 > l + yyj1397++ + if yyhl1397 { + yyb1397 = yyj1397 > l } else { - yyb1423 = r.CheckBreak() + yyb1397 = r.CheckBreak() } - if yyb1423 { + if yyb1397 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1423-1, "") + z.DecStructFieldNotFound(yyj1397-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16809,38 +16510,38 @@ func (x *PodSecurityPolicy) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1430 := z.EncBinary() - _ = yym1430 + yym1404 := z.EncBinary() + _ = yym1404 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1431 := !z.EncBinary() - yy2arr1431 := z.EncBasicHandle().StructToArray - var yyq1431 [4]bool - _, _, _ = yysep1431, yyq1431, yy2arr1431 - const yyr1431 bool = false - yyq1431[0] = x.Kind != "" - yyq1431[1] = x.APIVersion != "" - yyq1431[2] = true - yyq1431[3] = true - var yynn1431 int - if yyr1431 || yy2arr1431 { + yysep1405 := !z.EncBinary() + yy2arr1405 := z.EncBasicHandle().StructToArray + var yyq1405 [4]bool + _, _, _ = yysep1405, yyq1405, yy2arr1405 + const yyr1405 bool = false + yyq1405[0] = x.Kind != "" + yyq1405[1] = x.APIVersion != "" + yyq1405[2] = true + yyq1405[3] = true + var yynn1405 int + if yyr1405 || yy2arr1405 { r.EncodeArrayStart(4) } else { - yynn1431 = 0 - for _, b := range yyq1431 { + yynn1405 = 0 + for _, b := range yyq1405 { if b { - yynn1431++ + yynn1405++ } } - r.EncodeMapStart(yynn1431) - yynn1431 = 0 + r.EncodeMapStart(yynn1405) + yynn1405 = 0 } - if yyr1431 || yy2arr1431 { + if yyr1405 || yy2arr1405 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1431[0] { - yym1433 := z.EncBinary() - _ = yym1433 + if yyq1405[0] { + yym1407 := z.EncBinary() + _ = yym1407 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -16849,23 +16550,23 @@ func (x *PodSecurityPolicy) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1431[0] { + if yyq1405[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1434 := z.EncBinary() - _ = yym1434 + yym1408 := z.EncBinary() + _ = yym1408 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1431 || yy2arr1431 { + if yyr1405 || yy2arr1405 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1431[1] { - yym1436 := z.EncBinary() - _ = yym1436 + if yyq1405[1] { + yym1410 := z.EncBinary() + _ = yym1410 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -16874,53 +16575,53 @@ func (x *PodSecurityPolicy) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1431[1] { + if yyq1405[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1437 := z.EncBinary() - _ = yym1437 + yym1411 := z.EncBinary() + _ = yym1411 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1431 || yy2arr1431 { + if yyr1405 || yy2arr1405 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1431[2] { - yy1439 := &x.ObjectMeta - yy1439.CodecEncodeSelf(e) + if yyq1405[2] { + yy1413 := &x.ObjectMeta + yy1413.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1431[2] { + if yyq1405[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1440 := &x.ObjectMeta - yy1440.CodecEncodeSelf(e) + yy1414 := &x.ObjectMeta + yy1414.CodecEncodeSelf(e) } } - if yyr1431 || yy2arr1431 { + if yyr1405 || yy2arr1405 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1431[3] { - yy1442 := &x.Spec - yy1442.CodecEncodeSelf(e) + if yyq1405[3] { + yy1416 := &x.Spec + yy1416.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1431[3] { + if yyq1405[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1443 := &x.Spec - yy1443.CodecEncodeSelf(e) + yy1417 := &x.Spec + yy1417.CodecEncodeSelf(e) } } - if yyr1431 || yy2arr1431 { + if yyr1405 || yy2arr1405 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16933,25 +16634,25 @@ func (x *PodSecurityPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1444 := z.DecBinary() - _ = yym1444 + yym1418 := z.DecBinary() + _ = yym1418 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1445 := r.ContainerType() - if yyct1445 == codecSelferValueTypeMap1234 { - yyl1445 := r.ReadMapStart() - if yyl1445 == 0 { + yyct1419 := r.ContainerType() + if yyct1419 == codecSelferValueTypeMap1234 { + yyl1419 := r.ReadMapStart() + if yyl1419 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1445, d) + x.codecDecodeSelfFromMap(yyl1419, d) } - } else if yyct1445 == codecSelferValueTypeArray1234 { - yyl1445 := r.ReadArrayStart() - if yyl1445 == 0 { + } else if yyct1419 == codecSelferValueTypeArray1234 { + yyl1419 := r.ReadArrayStart() + if yyl1419 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1445, d) + x.codecDecodeSelfFromArray(yyl1419, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16963,12 +16664,12 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1446Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1446Slc - var yyhl1446 bool = l >= 0 - for yyj1446 := 0; ; yyj1446++ { - if yyhl1446 { - if yyj1446 >= l { + var yys1420Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1420Slc + var yyhl1420 bool = l >= 0 + for yyj1420 := 0; ; yyj1420++ { + if yyhl1420 { + if yyj1420 >= l { break } } else { @@ -16977,10 +16678,10 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1446Slc = r.DecodeBytes(yys1446Slc, true, true) - yys1446 := string(yys1446Slc) + yys1420Slc = r.DecodeBytes(yys1420Slc, true, true) + yys1420 := string(yys1420Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1446 { + switch yys1420 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -16997,20 +16698,20 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = pkg2_v1.ObjectMeta{} } else { - yyv1449 := &x.ObjectMeta - yyv1449.CodecDecodeSelf(d) + yyv1423 := &x.ObjectMeta + yyv1423.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSecurityPolicySpec{} } else { - yyv1450 := &x.Spec - yyv1450.CodecDecodeSelf(d) + yyv1424 := &x.Spec + yyv1424.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1446) - } // end switch yys1446 - } // end for yyj1446 + z.DecStructFieldNotFound(-1, yys1420) + } // end switch yys1420 + } // end for yyj1420 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17018,16 +16719,16 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1451 int - var yyb1451 bool - var yyhl1451 bool = l >= 0 - yyj1451++ - if yyhl1451 { - yyb1451 = yyj1451 > l + var yyj1425 int + var yyb1425 bool + var yyhl1425 bool = l >= 0 + yyj1425++ + if yyhl1425 { + yyb1425 = yyj1425 > l } else { - yyb1451 = r.CheckBreak() + yyb1425 = r.CheckBreak() } - if yyb1451 { + if yyb1425 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17037,13 +16738,13 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj1451++ - if yyhl1451 { - yyb1451 = yyj1451 > l + yyj1425++ + if yyhl1425 { + yyb1425 = yyj1425 > l } else { - yyb1451 = r.CheckBreak() + yyb1425 = r.CheckBreak() } - if yyb1451 { + if yyb1425 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17053,13 +16754,13 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj1451++ - if yyhl1451 { - yyb1451 = yyj1451 > l + yyj1425++ + if yyhl1425 { + yyb1425 = yyj1425 > l } else { - yyb1451 = r.CheckBreak() + yyb1425 = r.CheckBreak() } - if yyb1451 { + if yyb1425 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17067,16 +16768,16 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ObjectMeta = pkg2_v1.ObjectMeta{} } else { - yyv1454 := &x.ObjectMeta - yyv1454.CodecDecodeSelf(d) + yyv1428 := &x.ObjectMeta + yyv1428.CodecDecodeSelf(d) } - yyj1451++ - if yyhl1451 { - yyb1451 = yyj1451 > l + yyj1425++ + if yyhl1425 { + yyb1425 = yyj1425 > l } else { - yyb1451 = r.CheckBreak() + yyb1425 = r.CheckBreak() } - if yyb1451 { + if yyb1425 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17084,21 +16785,21 @@ func (x *PodSecurityPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Spec = PodSecurityPolicySpec{} } else { - yyv1455 := &x.Spec - yyv1455.CodecDecodeSelf(d) + yyv1429 := &x.Spec + yyv1429.CodecDecodeSelf(d) } for { - yyj1451++ - if yyhl1451 { - yyb1451 = yyj1451 > l + yyj1425++ + if yyhl1425 { + yyb1425 = yyj1425 > l } else { - yyb1451 = r.CheckBreak() + yyb1425 = r.CheckBreak() } - if yyb1451 { + if yyb1425 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1451-1, "") + z.DecStructFieldNotFound(yyj1425-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17110,44 +16811,44 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1456 := z.EncBinary() - _ = yym1456 + yym1430 := z.EncBinary() + _ = yym1430 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1457 := !z.EncBinary() - yy2arr1457 := z.EncBasicHandle().StructToArray - var yyq1457 [14]bool - _, _, _ = yysep1457, yyq1457, yy2arr1457 - const yyr1457 bool = false - yyq1457[0] = x.Privileged != false - yyq1457[1] = len(x.DefaultAddCapabilities) != 0 - yyq1457[2] = len(x.RequiredDropCapabilities) != 0 - yyq1457[3] = len(x.AllowedCapabilities) != 0 - yyq1457[4] = len(x.Volumes) != 0 - yyq1457[5] = x.HostNetwork != false - yyq1457[6] = len(x.HostPorts) != 0 - yyq1457[7] = x.HostPID != false - yyq1457[8] = x.HostIPC != false - yyq1457[13] = x.ReadOnlyRootFilesystem != false - var yynn1457 int - if yyr1457 || yy2arr1457 { + yysep1431 := !z.EncBinary() + yy2arr1431 := z.EncBasicHandle().StructToArray + var yyq1431 [14]bool + _, _, _ = yysep1431, yyq1431, yy2arr1431 + const yyr1431 bool = false + yyq1431[0] = x.Privileged != false + yyq1431[1] = len(x.DefaultAddCapabilities) != 0 + yyq1431[2] = len(x.RequiredDropCapabilities) != 0 + yyq1431[3] = len(x.AllowedCapabilities) != 0 + yyq1431[4] = len(x.Volumes) != 0 + yyq1431[5] = x.HostNetwork != false + yyq1431[6] = len(x.HostPorts) != 0 + yyq1431[7] = x.HostPID != false + yyq1431[8] = x.HostIPC != false + yyq1431[13] = x.ReadOnlyRootFilesystem != false + var yynn1431 int + if yyr1431 || yy2arr1431 { r.EncodeArrayStart(14) } else { - yynn1457 = 4 - for _, b := range yyq1457 { + yynn1431 = 4 + for _, b := range yyq1431 { if b { - yynn1457++ + yynn1431++ } } - r.EncodeMapStart(yynn1457) - yynn1457 = 0 + r.EncodeMapStart(yynn1431) + yynn1431 = 0 } - if yyr1457 || yy2arr1457 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1457[0] { - yym1459 := z.EncBinary() - _ = yym1459 + if yyq1431[0] { + yym1433 := z.EncBinary() + _ = yym1433 if false { } else { r.EncodeBool(bool(x.Privileged)) @@ -17156,26 +16857,26 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1457[0] { + if yyq1431[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1460 := z.EncBinary() - _ = yym1460 + yym1434 := z.EncBinary() + _ = yym1434 if false { } else { r.EncodeBool(bool(x.Privileged)) } } } - if yyr1457 || yy2arr1457 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1457[1] { + if yyq1431[1] { if x.DefaultAddCapabilities == nil { r.EncodeNil() } else { - yym1462 := z.EncBinary() - _ = yym1462 + yym1436 := z.EncBinary() + _ = yym1436 if false { } else { h.encSlicev1_Capability(([]pkg2_v1.Capability)(x.DefaultAddCapabilities), e) @@ -17185,15 +16886,15 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1457[1] { + if yyq1431[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultAddCapabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultAddCapabilities == nil { r.EncodeNil() } else { - yym1463 := z.EncBinary() - _ = yym1463 + yym1437 := z.EncBinary() + _ = yym1437 if false { } else { h.encSlicev1_Capability(([]pkg2_v1.Capability)(x.DefaultAddCapabilities), e) @@ -17201,14 +16902,14 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1457 || yy2arr1457 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1457[2] { + if yyq1431[2] { if x.RequiredDropCapabilities == nil { r.EncodeNil() } else { - yym1465 := z.EncBinary() - _ = yym1465 + yym1439 := z.EncBinary() + _ = yym1439 if false { } else { h.encSlicev1_Capability(([]pkg2_v1.Capability)(x.RequiredDropCapabilities), e) @@ -17218,15 +16919,15 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1457[2] { + if yyq1431[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDropCapabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RequiredDropCapabilities == nil { r.EncodeNil() } else { - yym1466 := z.EncBinary() - _ = yym1466 + yym1440 := z.EncBinary() + _ = yym1440 if false { } else { h.encSlicev1_Capability(([]pkg2_v1.Capability)(x.RequiredDropCapabilities), e) @@ -17234,14 +16935,14 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1457 || yy2arr1457 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1457[3] { + if yyq1431[3] { if x.AllowedCapabilities == nil { r.EncodeNil() } else { - yym1468 := z.EncBinary() - _ = yym1468 + yym1442 := z.EncBinary() + _ = yym1442 if false { } else { h.encSlicev1_Capability(([]pkg2_v1.Capability)(x.AllowedCapabilities), e) @@ -17251,15 +16952,15 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1457[3] { + if yyq1431[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allowedCapabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.AllowedCapabilities == nil { r.EncodeNil() } else { - yym1469 := z.EncBinary() - _ = yym1469 + yym1443 := z.EncBinary() + _ = yym1443 if false { } else { h.encSlicev1_Capability(([]pkg2_v1.Capability)(x.AllowedCapabilities), e) @@ -17267,14 +16968,14 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1457 || yy2arr1457 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1457[4] { + if yyq1431[4] { if x.Volumes == nil { r.EncodeNil() } else { - yym1471 := z.EncBinary() - _ = yym1471 + yym1445 := z.EncBinary() + _ = yym1445 if false { } else { h.encSliceFSType(([]FSType)(x.Volumes), e) @@ -17284,15 +16985,15 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1457[4] { + if yyq1431[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Volumes == nil { r.EncodeNil() } else { - yym1472 := z.EncBinary() - _ = yym1472 + yym1446 := z.EncBinary() + _ = yym1446 if false { } else { h.encSliceFSType(([]FSType)(x.Volumes), e) @@ -17300,11 +17001,11 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1457 || yy2arr1457 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1457[5] { - yym1474 := z.EncBinary() - _ = yym1474 + if yyq1431[5] { + yym1448 := z.EncBinary() + _ = yym1448 if false { } else { r.EncodeBool(bool(x.HostNetwork)) @@ -17313,26 +17014,26 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1457[5] { + if yyq1431[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostNetwork")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1475 := z.EncBinary() - _ = yym1475 + yym1449 := z.EncBinary() + _ = yym1449 if false { } else { r.EncodeBool(bool(x.HostNetwork)) } } } - if yyr1457 || yy2arr1457 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1457[6] { + if yyq1431[6] { if x.HostPorts == nil { r.EncodeNil() } else { - yym1477 := z.EncBinary() - _ = yym1477 + yym1451 := z.EncBinary() + _ = yym1451 if false { } else { h.encSliceHostPortRange(([]HostPortRange)(x.HostPorts), e) @@ -17342,15 +17043,15 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1457[6] { + if yyq1431[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPorts")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.HostPorts == nil { r.EncodeNil() } else { - yym1478 := z.EncBinary() - _ = yym1478 + yym1452 := z.EncBinary() + _ = yym1452 if false { } else { h.encSliceHostPortRange(([]HostPortRange)(x.HostPorts), e) @@ -17358,11 +17059,11 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1457 || yy2arr1457 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1457[7] { - yym1480 := z.EncBinary() - _ = yym1480 + if yyq1431[7] { + yym1454 := z.EncBinary() + _ = yym1454 if false { } else { r.EncodeBool(bool(x.HostPID)) @@ -17371,23 +17072,23 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1457[7] { + if yyq1431[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1481 := z.EncBinary() - _ = yym1481 + yym1455 := z.EncBinary() + _ = yym1455 if false { } else { r.EncodeBool(bool(x.HostPID)) } } } - if yyr1457 || yy2arr1457 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1457[8] { - yym1483 := z.EncBinary() - _ = yym1483 + if yyq1431[8] { + yym1457 := z.EncBinary() + _ = yym1457 if false { } else { r.EncodeBool(bool(x.HostIPC)) @@ -17396,67 +17097,67 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1457[8] { + if yyq1431[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIPC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1484 := z.EncBinary() - _ = yym1484 + yym1458 := z.EncBinary() + _ = yym1458 if false { } else { r.EncodeBool(bool(x.HostIPC)) } } } - if yyr1457 || yy2arr1457 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1486 := &x.SELinux - yy1486.CodecEncodeSelf(e) + yy1460 := &x.SELinux + yy1460.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinux")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1487 := &x.SELinux - yy1487.CodecEncodeSelf(e) + yy1461 := &x.SELinux + yy1461.CodecEncodeSelf(e) } - if yyr1457 || yy2arr1457 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1489 := &x.RunAsUser - yy1489.CodecEncodeSelf(e) + yy1463 := &x.RunAsUser + yy1463.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1490 := &x.RunAsUser - yy1490.CodecEncodeSelf(e) + yy1464 := &x.RunAsUser + yy1464.CodecEncodeSelf(e) } - if yyr1457 || yy2arr1457 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1492 := &x.SupplementalGroups - yy1492.CodecEncodeSelf(e) + yy1466 := &x.SupplementalGroups + yy1466.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("supplementalGroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1493 := &x.SupplementalGroups - yy1493.CodecEncodeSelf(e) + yy1467 := &x.SupplementalGroups + yy1467.CodecEncodeSelf(e) } - if yyr1457 || yy2arr1457 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1495 := &x.FSGroup - yy1495.CodecEncodeSelf(e) + yy1469 := &x.FSGroup + yy1469.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1496 := &x.FSGroup - yy1496.CodecEncodeSelf(e) + yy1470 := &x.FSGroup + yy1470.CodecEncodeSelf(e) } - if yyr1457 || yy2arr1457 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1457[13] { - yym1498 := z.EncBinary() - _ = yym1498 + if yyq1431[13] { + yym1472 := z.EncBinary() + _ = yym1472 if false { } else { r.EncodeBool(bool(x.ReadOnlyRootFilesystem)) @@ -17465,19 +17166,19 @@ func (x *PodSecurityPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1457[13] { + if yyq1431[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1499 := z.EncBinary() - _ = yym1499 + yym1473 := z.EncBinary() + _ = yym1473 if false { } else { r.EncodeBool(bool(x.ReadOnlyRootFilesystem)) } } } - if yyr1457 || yy2arr1457 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17490,25 +17191,25 @@ func (x *PodSecurityPolicySpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1500 := z.DecBinary() - _ = yym1500 + yym1474 := z.DecBinary() + _ = yym1474 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1501 := r.ContainerType() - if yyct1501 == codecSelferValueTypeMap1234 { - yyl1501 := r.ReadMapStart() - if yyl1501 == 0 { + yyct1475 := r.ContainerType() + if yyct1475 == codecSelferValueTypeMap1234 { + yyl1475 := r.ReadMapStart() + if yyl1475 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1501, d) + x.codecDecodeSelfFromMap(yyl1475, d) } - } else if yyct1501 == codecSelferValueTypeArray1234 { - yyl1501 := r.ReadArrayStart() - if yyl1501 == 0 { + } else if yyct1475 == codecSelferValueTypeArray1234 { + yyl1475 := r.ReadArrayStart() + if yyl1475 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1501, d) + x.codecDecodeSelfFromArray(yyl1475, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17520,12 +17221,12 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod 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 yys1476Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1476Slc + var yyhl1476 bool = l >= 0 + for yyj1476 := 0; ; yyj1476++ { + if yyhl1476 { + if yyj1476 >= l { break } } else { @@ -17534,10 +17235,10 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1502Slc = r.DecodeBytes(yys1502Slc, true, true) - yys1502 := string(yys1502Slc) + yys1476Slc = r.DecodeBytes(yys1476Slc, true, true) + yys1476 := string(yys1476Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1502 { + switch yys1476 { case "privileged": if r.TryDecodeAsNil() { x.Privileged = false @@ -17548,48 +17249,48 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.DefaultAddCapabilities = nil } else { - yyv1504 := &x.DefaultAddCapabilities - yym1505 := z.DecBinary() - _ = yym1505 + yyv1478 := &x.DefaultAddCapabilities + yym1479 := z.DecBinary() + _ = yym1479 if false { } else { - h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1504), d) + h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1478), d) } } case "requiredDropCapabilities": if r.TryDecodeAsNil() { x.RequiredDropCapabilities = nil } else { - yyv1506 := &x.RequiredDropCapabilities - yym1507 := z.DecBinary() - _ = yym1507 + yyv1480 := &x.RequiredDropCapabilities + yym1481 := z.DecBinary() + _ = yym1481 if false { } else { - h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1506), d) + h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1480), d) } } case "allowedCapabilities": if r.TryDecodeAsNil() { x.AllowedCapabilities = nil } else { - yyv1508 := &x.AllowedCapabilities - yym1509 := z.DecBinary() - _ = yym1509 + yyv1482 := &x.AllowedCapabilities + yym1483 := z.DecBinary() + _ = yym1483 if false { } else { - h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1508), d) + h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1482), d) } } case "volumes": if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1510 := &x.Volumes - yym1511 := z.DecBinary() - _ = yym1511 + yyv1484 := &x.Volumes + yym1485 := z.DecBinary() + _ = yym1485 if false { } else { - h.decSliceFSType((*[]FSType)(yyv1510), d) + h.decSliceFSType((*[]FSType)(yyv1484), d) } } case "hostNetwork": @@ -17602,12 +17303,12 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.HostPorts = nil } else { - yyv1513 := &x.HostPorts - yym1514 := z.DecBinary() - _ = yym1514 + yyv1487 := &x.HostPorts + yym1488 := z.DecBinary() + _ = yym1488 if false { } else { - h.decSliceHostPortRange((*[]HostPortRange)(yyv1513), d) + h.decSliceHostPortRange((*[]HostPortRange)(yyv1487), d) } } case "hostPID": @@ -17626,29 +17327,29 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.SELinux = SELinuxStrategyOptions{} } else { - yyv1517 := &x.SELinux - yyv1517.CodecDecodeSelf(d) + yyv1491 := &x.SELinux + yyv1491.CodecDecodeSelf(d) } case "runAsUser": if r.TryDecodeAsNil() { x.RunAsUser = RunAsUserStrategyOptions{} } else { - yyv1518 := &x.RunAsUser - yyv1518.CodecDecodeSelf(d) + yyv1492 := &x.RunAsUser + yyv1492.CodecDecodeSelf(d) } case "supplementalGroups": if r.TryDecodeAsNil() { x.SupplementalGroups = SupplementalGroupsStrategyOptions{} } else { - yyv1519 := &x.SupplementalGroups - yyv1519.CodecDecodeSelf(d) + yyv1493 := &x.SupplementalGroups + yyv1493.CodecDecodeSelf(d) } case "fsGroup": if r.TryDecodeAsNil() { x.FSGroup = FSGroupStrategyOptions{} } else { - yyv1520 := &x.FSGroup - yyv1520.CodecDecodeSelf(d) + yyv1494 := &x.FSGroup + yyv1494.CodecDecodeSelf(d) } case "readOnlyRootFilesystem": if r.TryDecodeAsNil() { @@ -17657,9 +17358,9 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.ReadOnlyRootFilesystem = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys1502) - } // end switch yys1502 - } // end for yyj1502 + z.DecStructFieldNotFound(-1, yys1476) + } // end switch yys1476 + } // end for yyj1476 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17667,16 +17368,16 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1522 int - var yyb1522 bool - var yyhl1522 bool = l >= 0 - yyj1522++ - if yyhl1522 { - yyb1522 = yyj1522 > l + var yyj1496 int + var yyb1496 bool + var yyhl1496 bool = l >= 0 + yyj1496++ + if yyhl1496 { + yyb1496 = yyj1496 > l } else { - yyb1522 = r.CheckBreak() + yyb1496 = r.CheckBreak() } - if yyb1522 { + if yyb1496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17686,13 +17387,13 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Privileged = bool(r.DecodeBool()) } - yyj1522++ - if yyhl1522 { - yyb1522 = yyj1522 > l + yyj1496++ + if yyhl1496 { + yyb1496 = yyj1496 > l } else { - yyb1522 = r.CheckBreak() + yyb1496 = r.CheckBreak() } - if yyb1522 { + if yyb1496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17700,21 +17401,21 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.DefaultAddCapabilities = nil } else { - yyv1524 := &x.DefaultAddCapabilities - yym1525 := z.DecBinary() - _ = yym1525 + yyv1498 := &x.DefaultAddCapabilities + yym1499 := z.DecBinary() + _ = yym1499 if false { } else { - h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1524), d) + h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1498), d) } } - yyj1522++ - if yyhl1522 { - yyb1522 = yyj1522 > l + yyj1496++ + if yyhl1496 { + yyb1496 = yyj1496 > l } else { - yyb1522 = r.CheckBreak() + yyb1496 = r.CheckBreak() } - if yyb1522 { + if yyb1496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17722,21 +17423,21 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.RequiredDropCapabilities = nil } else { - yyv1526 := &x.RequiredDropCapabilities - yym1527 := z.DecBinary() - _ = yym1527 + yyv1500 := &x.RequiredDropCapabilities + yym1501 := z.DecBinary() + _ = yym1501 if false { } else { - h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1526), d) + h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1500), d) } } - yyj1522++ - if yyhl1522 { - yyb1522 = yyj1522 > l + yyj1496++ + if yyhl1496 { + yyb1496 = yyj1496 > l } else { - yyb1522 = r.CheckBreak() + yyb1496 = r.CheckBreak() } - if yyb1522 { + if yyb1496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17744,21 +17445,21 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.AllowedCapabilities = nil } else { - yyv1528 := &x.AllowedCapabilities - yym1529 := z.DecBinary() - _ = yym1529 + yyv1502 := &x.AllowedCapabilities + yym1503 := z.DecBinary() + _ = yym1503 if false { } else { - h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1528), d) + h.decSlicev1_Capability((*[]pkg2_v1.Capability)(yyv1502), d) } } - yyj1522++ - if yyhl1522 { - yyb1522 = yyj1522 > l + yyj1496++ + if yyhl1496 { + yyb1496 = yyj1496 > l } else { - yyb1522 = r.CheckBreak() + yyb1496 = r.CheckBreak() } - if yyb1522 { + if yyb1496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17766,21 +17467,21 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1530 := &x.Volumes - yym1531 := z.DecBinary() - _ = yym1531 + yyv1504 := &x.Volumes + yym1505 := z.DecBinary() + _ = yym1505 if false { } else { - h.decSliceFSType((*[]FSType)(yyv1530), d) + h.decSliceFSType((*[]FSType)(yyv1504), d) } } - yyj1522++ - if yyhl1522 { - yyb1522 = yyj1522 > l + yyj1496++ + if yyhl1496 { + yyb1496 = yyj1496 > l } else { - yyb1522 = r.CheckBreak() + yyb1496 = r.CheckBreak() } - if yyb1522 { + if yyb1496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17790,13 +17491,13 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.HostNetwork = bool(r.DecodeBool()) } - yyj1522++ - if yyhl1522 { - yyb1522 = yyj1522 > l + yyj1496++ + if yyhl1496 { + yyb1496 = yyj1496 > l } else { - yyb1522 = r.CheckBreak() + yyb1496 = r.CheckBreak() } - if yyb1522 { + if yyb1496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17804,21 +17505,21 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.HostPorts = nil } else { - yyv1533 := &x.HostPorts - yym1534 := z.DecBinary() - _ = yym1534 + yyv1507 := &x.HostPorts + yym1508 := z.DecBinary() + _ = yym1508 if false { } else { - h.decSliceHostPortRange((*[]HostPortRange)(yyv1533), d) + h.decSliceHostPortRange((*[]HostPortRange)(yyv1507), d) } } - yyj1522++ - if yyhl1522 { - yyb1522 = yyj1522 > l + yyj1496++ + if yyhl1496 { + yyb1496 = yyj1496 > l } else { - yyb1522 = r.CheckBreak() + yyb1496 = r.CheckBreak() } - if yyb1522 { + if yyb1496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17828,13 +17529,13 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.HostPID = bool(r.DecodeBool()) } - yyj1522++ - if yyhl1522 { - yyb1522 = yyj1522 > l + yyj1496++ + if yyhl1496 { + yyb1496 = yyj1496 > l } else { - yyb1522 = r.CheckBreak() + yyb1496 = r.CheckBreak() } - if yyb1522 { + if yyb1496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17844,13 +17545,13 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.HostIPC = bool(r.DecodeBool()) } - yyj1522++ - if yyhl1522 { - yyb1522 = yyj1522 > l + yyj1496++ + if yyhl1496 { + yyb1496 = yyj1496 > l } else { - yyb1522 = r.CheckBreak() + yyb1496 = r.CheckBreak() } - if yyb1522 { + if yyb1496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17858,16 +17559,16 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.SELinux = SELinuxStrategyOptions{} } else { - yyv1537 := &x.SELinux - yyv1537.CodecDecodeSelf(d) + yyv1511 := &x.SELinux + yyv1511.CodecDecodeSelf(d) } - yyj1522++ - if yyhl1522 { - yyb1522 = yyj1522 > l + yyj1496++ + if yyhl1496 { + yyb1496 = yyj1496 > l } else { - yyb1522 = r.CheckBreak() + yyb1496 = r.CheckBreak() } - if yyb1522 { + if yyb1496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17875,16 +17576,16 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.RunAsUser = RunAsUserStrategyOptions{} } else { - yyv1538 := &x.RunAsUser - yyv1538.CodecDecodeSelf(d) + yyv1512 := &x.RunAsUser + yyv1512.CodecDecodeSelf(d) } - yyj1522++ - if yyhl1522 { - yyb1522 = yyj1522 > l + yyj1496++ + if yyhl1496 { + yyb1496 = yyj1496 > l } else { - yyb1522 = r.CheckBreak() + yyb1496 = r.CheckBreak() } - if yyb1522 { + if yyb1496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17892,16 +17593,16 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.SupplementalGroups = SupplementalGroupsStrategyOptions{} } else { - yyv1539 := &x.SupplementalGroups - yyv1539.CodecDecodeSelf(d) + yyv1513 := &x.SupplementalGroups + yyv1513.CodecDecodeSelf(d) } - yyj1522++ - if yyhl1522 { - yyb1522 = yyj1522 > l + yyj1496++ + if yyhl1496 { + yyb1496 = yyj1496 > l } else { - yyb1522 = r.CheckBreak() + yyb1496 = r.CheckBreak() } - if yyb1522 { + if yyb1496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17909,16 +17610,16 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.FSGroup = FSGroupStrategyOptions{} } else { - yyv1540 := &x.FSGroup - yyv1540.CodecDecodeSelf(d) + yyv1514 := &x.FSGroup + yyv1514.CodecDecodeSelf(d) } - yyj1522++ - if yyhl1522 { - yyb1522 = yyj1522 > l + yyj1496++ + if yyhl1496 { + yyb1496 = yyj1496 > l } else { - yyb1522 = r.CheckBreak() + yyb1496 = r.CheckBreak() } - if yyb1522 { + if yyb1496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17929,17 +17630,17 @@ func (x *PodSecurityPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.ReadOnlyRootFilesystem = bool(r.DecodeBool()) } for { - yyj1522++ - if yyhl1522 { - yyb1522 = yyj1522 > l + yyj1496++ + if yyhl1496 { + yyb1496 = yyj1496 > l } else { - yyb1522 = r.CheckBreak() + yyb1496 = r.CheckBreak() } - if yyb1522 { + if yyb1496 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1522-1, "") + z.DecStructFieldNotFound(yyj1496-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17948,8 +17649,8 @@ func (x FSType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1542 := z.EncBinary() - _ = yym1542 + yym1516 := z.EncBinary() + _ = yym1516 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -17961,8 +17662,8 @@ func (x *FSType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1543 := z.DecBinary() - _ = yym1543 + yym1517 := z.DecBinary() + _ = yym1517 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -17977,33 +17678,33 @@ func (x *HostPortRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1544 := z.EncBinary() - _ = yym1544 + yym1518 := z.EncBinary() + _ = yym1518 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1545 := !z.EncBinary() - yy2arr1545 := z.EncBasicHandle().StructToArray - var yyq1545 [2]bool - _, _, _ = yysep1545, yyq1545, yy2arr1545 - const yyr1545 bool = false - var yynn1545 int - if yyr1545 || yy2arr1545 { + yysep1519 := !z.EncBinary() + yy2arr1519 := z.EncBasicHandle().StructToArray + var yyq1519 [2]bool + _, _, _ = yysep1519, yyq1519, yy2arr1519 + const yyr1519 bool = false + var yynn1519 int + if yyr1519 || yy2arr1519 { r.EncodeArrayStart(2) } else { - yynn1545 = 2 - for _, b := range yyq1545 { + yynn1519 = 2 + for _, b := range yyq1519 { if b { - yynn1545++ + yynn1519++ } } - r.EncodeMapStart(yynn1545) - yynn1545 = 0 + r.EncodeMapStart(yynn1519) + yynn1519 = 0 } - if yyr1545 || yy2arr1545 { + if yyr1519 || yy2arr1519 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1547 := z.EncBinary() - _ = yym1547 + yym1521 := z.EncBinary() + _ = yym1521 if false { } else { r.EncodeInt(int64(x.Min)) @@ -18012,17 +17713,17 @@ func (x *HostPortRange) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1548 := z.EncBinary() - _ = yym1548 + yym1522 := z.EncBinary() + _ = yym1522 if false { } else { r.EncodeInt(int64(x.Min)) } } - if yyr1545 || yy2arr1545 { + if yyr1519 || yy2arr1519 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1550 := z.EncBinary() - _ = yym1550 + yym1524 := z.EncBinary() + _ = yym1524 if false { } else { r.EncodeInt(int64(x.Max)) @@ -18031,14 +17732,14 @@ func (x *HostPortRange) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1551 := z.EncBinary() - _ = yym1551 + yym1525 := z.EncBinary() + _ = yym1525 if false { } else { r.EncodeInt(int64(x.Max)) } } - if yyr1545 || yy2arr1545 { + if yyr1519 || yy2arr1519 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18051,25 +17752,25 @@ func (x *HostPortRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1552 := z.DecBinary() - _ = yym1552 + yym1526 := z.DecBinary() + _ = yym1526 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1553 := r.ContainerType() - if yyct1553 == codecSelferValueTypeMap1234 { - yyl1553 := r.ReadMapStart() - if yyl1553 == 0 { + yyct1527 := r.ContainerType() + if yyct1527 == codecSelferValueTypeMap1234 { + yyl1527 := r.ReadMapStart() + if yyl1527 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1553, d) + x.codecDecodeSelfFromMap(yyl1527, d) } - } else if yyct1553 == codecSelferValueTypeArray1234 { - yyl1553 := r.ReadArrayStart() - if yyl1553 == 0 { + } else if yyct1527 == codecSelferValueTypeArray1234 { + yyl1527 := r.ReadArrayStart() + if yyl1527 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1553, d) + x.codecDecodeSelfFromArray(yyl1527, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18081,12 +17782,12 @@ func (x *HostPortRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { 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 yys1528Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1528Slc + var yyhl1528 bool = l >= 0 + for yyj1528 := 0; ; yyj1528++ { + if yyhl1528 { + if yyj1528 >= l { break } } else { @@ -18095,10 +17796,10 @@ func (x *HostPortRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1554Slc = r.DecodeBytes(yys1554Slc, true, true) - yys1554 := string(yys1554Slc) + yys1528Slc = r.DecodeBytes(yys1528Slc, true, true) + yys1528 := string(yys1528Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1554 { + switch yys1528 { case "min": if r.TryDecodeAsNil() { x.Min = 0 @@ -18112,9 +17813,9 @@ func (x *HostPortRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Max = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys1554) - } // end switch yys1554 - } // end for yyj1554 + z.DecStructFieldNotFound(-1, yys1528) + } // end switch yys1528 + } // end for yyj1528 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18122,16 +17823,16 @@ func (x *HostPortRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1557 int - var yyb1557 bool - var yyhl1557 bool = l >= 0 - yyj1557++ - if yyhl1557 { - yyb1557 = yyj1557 > l + var yyj1531 int + var yyb1531 bool + var yyhl1531 bool = l >= 0 + yyj1531++ + if yyhl1531 { + yyb1531 = yyj1531 > l } else { - yyb1557 = r.CheckBreak() + yyb1531 = r.CheckBreak() } - if yyb1557 { + if yyb1531 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18141,13 +17842,13 @@ func (x *HostPortRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Min = int32(r.DecodeInt(32)) } - yyj1557++ - if yyhl1557 { - yyb1557 = yyj1557 > l + yyj1531++ + if yyhl1531 { + yyb1531 = yyj1531 > l } else { - yyb1557 = r.CheckBreak() + yyb1531 = r.CheckBreak() } - if yyb1557 { + if yyb1531 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18158,17 +17859,17 @@ func (x *HostPortRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Max = int32(r.DecodeInt(32)) } for { - yyj1557++ - if yyhl1557 { - yyb1557 = yyj1557 > l + yyj1531++ + if yyhl1531 { + yyb1531 = yyj1531 > l } else { - yyb1557 = r.CheckBreak() + yyb1531 = r.CheckBreak() } - if yyb1557 { + if yyb1531 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1557-1, "") + z.DecStructFieldNotFound(yyj1531-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18180,31 +17881,31 @@ func (x *SELinuxStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1560 := z.EncBinary() - _ = yym1560 + yym1534 := z.EncBinary() + _ = yym1534 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1561 := !z.EncBinary() - yy2arr1561 := z.EncBasicHandle().StructToArray - var yyq1561 [2]bool - _, _, _ = yysep1561, yyq1561, yy2arr1561 - const yyr1561 bool = false - yyq1561[1] = x.SELinuxOptions != nil - var yynn1561 int - if yyr1561 || yy2arr1561 { + yysep1535 := !z.EncBinary() + yy2arr1535 := z.EncBasicHandle().StructToArray + var yyq1535 [2]bool + _, _, _ = yysep1535, yyq1535, yy2arr1535 + const yyr1535 bool = false + yyq1535[1] = x.SELinuxOptions != nil + var yynn1535 int + if yyr1535 || yy2arr1535 { r.EncodeArrayStart(2) } else { - yynn1561 = 1 - for _, b := range yyq1561 { + yynn1535 = 1 + for _, b := range yyq1535 { if b { - yynn1561++ + yynn1535++ } } - r.EncodeMapStart(yynn1561) - yynn1561 = 0 + r.EncodeMapStart(yynn1535) + yynn1535 = 0 } - if yyr1561 || yy2arr1561 { + if yyr1535 || yy2arr1535 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Rule.CodecEncodeSelf(e) } else { @@ -18213,9 +17914,9 @@ func (x *SELinuxStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Rule.CodecEncodeSelf(e) } - if yyr1561 || yy2arr1561 { + if yyr1535 || yy2arr1535 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1561[1] { + if yyq1535[1] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -18225,7 +17926,7 @@ func (x *SELinuxStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1561[1] { + if yyq1535[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -18236,7 +17937,7 @@ func (x *SELinuxStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1561 || yy2arr1561 { + if yyr1535 || yy2arr1535 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18249,25 +17950,25 @@ func (x *SELinuxStrategyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1564 := z.DecBinary() - _ = yym1564 + yym1538 := z.DecBinary() + _ = yym1538 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1565 := r.ContainerType() - if yyct1565 == codecSelferValueTypeMap1234 { - yyl1565 := r.ReadMapStart() - if yyl1565 == 0 { + yyct1539 := r.ContainerType() + if yyct1539 == codecSelferValueTypeMap1234 { + yyl1539 := r.ReadMapStart() + if yyl1539 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1565, d) + x.codecDecodeSelfFromMap(yyl1539, d) } - } else if yyct1565 == codecSelferValueTypeArray1234 { - yyl1565 := r.ReadArrayStart() - if yyl1565 == 0 { + } else if yyct1539 == codecSelferValueTypeArray1234 { + yyl1539 := r.ReadArrayStart() + if yyl1539 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1565, d) + x.codecDecodeSelfFromArray(yyl1539, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18279,12 +17980,12 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1566Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1566Slc - var yyhl1566 bool = l >= 0 - for yyj1566 := 0; ; yyj1566++ { - if yyhl1566 { - if yyj1566 >= l { + var yys1540Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1540Slc + var yyhl1540 bool = l >= 0 + for yyj1540 := 0; ; yyj1540++ { + if yyhl1540 { + if yyj1540 >= l { break } } else { @@ -18293,10 +17994,10 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1566Slc = r.DecodeBytes(yys1566Slc, true, true) - yys1566 := string(yys1566Slc) + yys1540Slc = r.DecodeBytes(yys1540Slc, true, true) + yys1540 := string(yys1540Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1566 { + switch yys1540 { case "rule": if r.TryDecodeAsNil() { x.Rule = "" @@ -18315,9 +18016,9 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco x.SELinuxOptions.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1566) - } // end switch yys1566 - } // end for yyj1566 + z.DecStructFieldNotFound(-1, yys1540) + } // end switch yys1540 + } // end for yyj1540 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18325,16 +18026,16 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1569 int - var yyb1569 bool - var yyhl1569 bool = l >= 0 - yyj1569++ - if yyhl1569 { - yyb1569 = yyj1569 > l + var yyj1543 int + var yyb1543 bool + var yyhl1543 bool = l >= 0 + yyj1543++ + if yyhl1543 { + yyb1543 = yyj1543 > l } else { - yyb1569 = r.CheckBreak() + yyb1543 = r.CheckBreak() } - if yyb1569 { + if yyb1543 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18344,13 +18045,13 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Rule = SELinuxStrategy(r.DecodeString()) } - yyj1569++ - if yyhl1569 { - yyb1569 = yyj1569 > l + yyj1543++ + if yyhl1543 { + yyb1543 = yyj1543 > l } else { - yyb1569 = r.CheckBreak() + yyb1543 = r.CheckBreak() } - if yyb1569 { + if yyb1543 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18366,17 +18067,17 @@ func (x *SELinuxStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De x.SELinuxOptions.CodecDecodeSelf(d) } for { - yyj1569++ - if yyhl1569 { - yyb1569 = yyj1569 > l + yyj1543++ + if yyhl1543 { + yyb1543 = yyj1543 > l } else { - yyb1569 = r.CheckBreak() + yyb1543 = r.CheckBreak() } - if yyb1569 { + if yyb1543 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1569-1, "") + z.DecStructFieldNotFound(yyj1543-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18385,8 +18086,8 @@ func (x SELinuxStrategy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1572 := z.EncBinary() - _ = yym1572 + yym1546 := z.EncBinary() + _ = yym1546 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18398,8 +18099,8 @@ func (x *SELinuxStrategy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1573 := z.DecBinary() - _ = yym1573 + yym1547 := z.DecBinary() + _ = yym1547 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18414,31 +18115,31 @@ func (x *RunAsUserStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1574 := z.EncBinary() - _ = yym1574 + yym1548 := z.EncBinary() + _ = yym1548 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1575 := !z.EncBinary() - yy2arr1575 := z.EncBasicHandle().StructToArray - var yyq1575 [2]bool - _, _, _ = yysep1575, yyq1575, yy2arr1575 - const yyr1575 bool = false - yyq1575[1] = len(x.Ranges) != 0 - var yynn1575 int - if yyr1575 || yy2arr1575 { + yysep1549 := !z.EncBinary() + yy2arr1549 := z.EncBasicHandle().StructToArray + var yyq1549 [2]bool + _, _, _ = yysep1549, yyq1549, yy2arr1549 + const yyr1549 bool = false + yyq1549[1] = len(x.Ranges) != 0 + var yynn1549 int + if yyr1549 || yy2arr1549 { r.EncodeArrayStart(2) } else { - yynn1575 = 1 - for _, b := range yyq1575 { + yynn1549 = 1 + for _, b := range yyq1549 { if b { - yynn1575++ + yynn1549++ } } - r.EncodeMapStart(yynn1575) - yynn1575 = 0 + r.EncodeMapStart(yynn1549) + yynn1549 = 0 } - if yyr1575 || yy2arr1575 { + if yyr1549 || yy2arr1549 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Rule.CodecEncodeSelf(e) } else { @@ -18447,14 +18148,14 @@ func (x *RunAsUserStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Rule.CodecEncodeSelf(e) } - if yyr1575 || yy2arr1575 { + if yyr1549 || yy2arr1549 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1575[1] { + if yyq1549[1] { if x.Ranges == nil { r.EncodeNil() } else { - yym1578 := z.EncBinary() - _ = yym1578 + yym1552 := z.EncBinary() + _ = yym1552 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -18464,15 +18165,15 @@ func (x *RunAsUserStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1575[1] { + if yyq1549[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ranges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ranges == nil { r.EncodeNil() } else { - yym1579 := z.EncBinary() - _ = yym1579 + yym1553 := z.EncBinary() + _ = yym1553 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -18480,7 +18181,7 @@ func (x *RunAsUserStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1575 || yy2arr1575 { + if yyr1549 || yy2arr1549 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18493,25 +18194,25 @@ func (x *RunAsUserStrategyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1580 := z.DecBinary() - _ = yym1580 + yym1554 := z.DecBinary() + _ = yym1554 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1581 := r.ContainerType() - if yyct1581 == codecSelferValueTypeMap1234 { - yyl1581 := r.ReadMapStart() - if yyl1581 == 0 { + yyct1555 := r.ContainerType() + if yyct1555 == codecSelferValueTypeMap1234 { + yyl1555 := r.ReadMapStart() + if yyl1555 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1581, d) + x.codecDecodeSelfFromMap(yyl1555, d) } - } else if yyct1581 == codecSelferValueTypeArray1234 { - yyl1581 := r.ReadArrayStart() - if yyl1581 == 0 { + } else if yyct1555 == codecSelferValueTypeArray1234 { + yyl1555 := r.ReadArrayStart() + if yyl1555 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1581, d) + x.codecDecodeSelfFromArray(yyl1555, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18523,12 +18224,12 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.De 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 yys1556Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1556Slc + var yyhl1556 bool = l >= 0 + for yyj1556 := 0; ; yyj1556++ { + if yyhl1556 { + if yyj1556 >= l { break } } else { @@ -18537,10 +18238,10 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1582Slc = r.DecodeBytes(yys1582Slc, true, true) - yys1582 := string(yys1582Slc) + yys1556Slc = r.DecodeBytes(yys1556Slc, true, true) + yys1556 := string(yys1556Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1582 { + switch yys1556 { case "rule": if r.TryDecodeAsNil() { x.Rule = "" @@ -18551,18 +18252,18 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.De if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1584 := &x.Ranges - yym1585 := z.DecBinary() - _ = yym1585 + yyv1558 := &x.Ranges + yym1559 := z.DecBinary() + _ = yym1559 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1584), d) + h.decSliceIDRange((*[]IDRange)(yyv1558), d) } } default: - z.DecStructFieldNotFound(-1, yys1582) - } // end switch yys1582 - } // end for yyj1582 + z.DecStructFieldNotFound(-1, yys1556) + } // end switch yys1556 + } // end for yyj1556 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18570,16 +18271,16 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1586 int - var yyb1586 bool - var yyhl1586 bool = l >= 0 - yyj1586++ - if yyhl1586 { - yyb1586 = yyj1586 > l + var yyj1560 int + var yyb1560 bool + var yyhl1560 bool = l >= 0 + yyj1560++ + if yyhl1560 { + yyb1560 = yyj1560 > l } else { - yyb1586 = r.CheckBreak() + yyb1560 = r.CheckBreak() } - if yyb1586 { + if yyb1560 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18589,13 +18290,13 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Rule = RunAsUserStrategy(r.DecodeString()) } - yyj1586++ - if yyhl1586 { - yyb1586 = yyj1586 > l + yyj1560++ + if yyhl1560 { + yyb1560 = yyj1560 > l } else { - yyb1586 = r.CheckBreak() + yyb1560 = r.CheckBreak() } - if yyb1586 { + if yyb1560 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18603,26 +18304,26 @@ func (x *RunAsUserStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1588 := &x.Ranges - yym1589 := z.DecBinary() - _ = yym1589 + yyv1562 := &x.Ranges + yym1563 := z.DecBinary() + _ = yym1563 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1588), d) + h.decSliceIDRange((*[]IDRange)(yyv1562), d) } } for { - yyj1586++ - if yyhl1586 { - yyb1586 = yyj1586 > l + yyj1560++ + if yyhl1560 { + yyb1560 = yyj1560 > l } else { - yyb1586 = r.CheckBreak() + yyb1560 = r.CheckBreak() } - if yyb1586 { + if yyb1560 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1586-1, "") + z.DecStructFieldNotFound(yyj1560-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18634,33 +18335,33 @@ func (x *IDRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1590 := z.EncBinary() - _ = yym1590 + yym1564 := z.EncBinary() + _ = yym1564 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1591 := !z.EncBinary() - yy2arr1591 := z.EncBasicHandle().StructToArray - var yyq1591 [2]bool - _, _, _ = yysep1591, yyq1591, yy2arr1591 - const yyr1591 bool = false - var yynn1591 int - if yyr1591 || yy2arr1591 { + yysep1565 := !z.EncBinary() + yy2arr1565 := z.EncBasicHandle().StructToArray + var yyq1565 [2]bool + _, _, _ = yysep1565, yyq1565, yy2arr1565 + const yyr1565 bool = false + var yynn1565 int + if yyr1565 || yy2arr1565 { r.EncodeArrayStart(2) } else { - yynn1591 = 2 - for _, b := range yyq1591 { + yynn1565 = 2 + for _, b := range yyq1565 { if b { - yynn1591++ + yynn1565++ } } - r.EncodeMapStart(yynn1591) - yynn1591 = 0 + r.EncodeMapStart(yynn1565) + yynn1565 = 0 } - if yyr1591 || yy2arr1591 { + if yyr1565 || yy2arr1565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1593 := z.EncBinary() - _ = yym1593 + yym1567 := z.EncBinary() + _ = yym1567 if false { } else { r.EncodeInt(int64(x.Min)) @@ -18669,17 +18370,17 @@ func (x *IDRange) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1594 := z.EncBinary() - _ = yym1594 + yym1568 := z.EncBinary() + _ = yym1568 if false { } else { r.EncodeInt(int64(x.Min)) } } - if yyr1591 || yy2arr1591 { + if yyr1565 || yy2arr1565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1596 := z.EncBinary() - _ = yym1596 + yym1570 := z.EncBinary() + _ = yym1570 if false { } else { r.EncodeInt(int64(x.Max)) @@ -18688,14 +18389,14 @@ func (x *IDRange) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1597 := z.EncBinary() - _ = yym1597 + yym1571 := z.EncBinary() + _ = yym1571 if false { } else { r.EncodeInt(int64(x.Max)) } } - if yyr1591 || yy2arr1591 { + if yyr1565 || yy2arr1565 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18708,25 +18409,25 @@ func (x *IDRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1598 := z.DecBinary() - _ = yym1598 + yym1572 := z.DecBinary() + _ = yym1572 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1599 := r.ContainerType() - if yyct1599 == codecSelferValueTypeMap1234 { - yyl1599 := r.ReadMapStart() - if yyl1599 == 0 { + yyct1573 := r.ContainerType() + if yyct1573 == codecSelferValueTypeMap1234 { + yyl1573 := r.ReadMapStart() + if yyl1573 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1599, d) + x.codecDecodeSelfFromMap(yyl1573, d) } - } else if yyct1599 == codecSelferValueTypeArray1234 { - yyl1599 := r.ReadArrayStart() - if yyl1599 == 0 { + } else if yyct1573 == codecSelferValueTypeArray1234 { + yyl1573 := r.ReadArrayStart() + if yyl1573 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1599, d) + x.codecDecodeSelfFromArray(yyl1573, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18738,12 +18439,12 @@ func (x *IDRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1600Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1600Slc - var yyhl1600 bool = l >= 0 - for yyj1600 := 0; ; yyj1600++ { - if yyhl1600 { - if yyj1600 >= l { + var yys1574Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1574Slc + var yyhl1574 bool = l >= 0 + for yyj1574 := 0; ; yyj1574++ { + if yyhl1574 { + if yyj1574 >= l { break } } else { @@ -18752,10 +18453,10 @@ func (x *IDRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1600Slc = r.DecodeBytes(yys1600Slc, true, true) - yys1600 := string(yys1600Slc) + yys1574Slc = r.DecodeBytes(yys1574Slc, true, true) + yys1574 := string(yys1574Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1600 { + switch yys1574 { case "min": if r.TryDecodeAsNil() { x.Min = 0 @@ -18769,9 +18470,9 @@ func (x *IDRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Max = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys1600) - } // end switch yys1600 - } // end for yyj1600 + z.DecStructFieldNotFound(-1, yys1574) + } // end switch yys1574 + } // end for yyj1574 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18779,16 +18480,16 @@ func (x *IDRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1603 int - var yyb1603 bool - var yyhl1603 bool = l >= 0 - yyj1603++ - if yyhl1603 { - yyb1603 = yyj1603 > l + var yyj1577 int + var yyb1577 bool + var yyhl1577 bool = l >= 0 + yyj1577++ + if yyhl1577 { + yyb1577 = yyj1577 > l } else { - yyb1603 = r.CheckBreak() + yyb1577 = r.CheckBreak() } - if yyb1603 { + if yyb1577 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18798,13 +18499,13 @@ func (x *IDRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Min = int64(r.DecodeInt(64)) } - yyj1603++ - if yyhl1603 { - yyb1603 = yyj1603 > l + yyj1577++ + if yyhl1577 { + yyb1577 = yyj1577 > l } else { - yyb1603 = r.CheckBreak() + yyb1577 = r.CheckBreak() } - if yyb1603 { + if yyb1577 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18815,17 +18516,17 @@ func (x *IDRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Max = int64(r.DecodeInt(64)) } for { - yyj1603++ - if yyhl1603 { - yyb1603 = yyj1603 > l + yyj1577++ + if yyhl1577 { + yyb1577 = yyj1577 > l } else { - yyb1603 = r.CheckBreak() + yyb1577 = r.CheckBreak() } - if yyb1603 { + if yyb1577 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1603-1, "") + z.DecStructFieldNotFound(yyj1577-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18834,8 +18535,8 @@ func (x RunAsUserStrategy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1606 := z.EncBinary() - _ = yym1606 + yym1580 := z.EncBinary() + _ = yym1580 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18847,8 +18548,8 @@ func (x *RunAsUserStrategy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1607 := z.DecBinary() - _ = yym1607 + yym1581 := z.DecBinary() + _ = yym1581 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18863,54 +18564,54 @@ func (x *FSGroupStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1608 := z.EncBinary() - _ = yym1608 + yym1582 := z.EncBinary() + _ = yym1582 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1609 := !z.EncBinary() - yy2arr1609 := z.EncBasicHandle().StructToArray - var yyq1609 [2]bool - _, _, _ = yysep1609, yyq1609, yy2arr1609 - const yyr1609 bool = false - yyq1609[0] = x.Rule != "" - yyq1609[1] = len(x.Ranges) != 0 - var yynn1609 int - if yyr1609 || yy2arr1609 { + yysep1583 := !z.EncBinary() + yy2arr1583 := z.EncBasicHandle().StructToArray + var yyq1583 [2]bool + _, _, _ = yysep1583, yyq1583, yy2arr1583 + const yyr1583 bool = false + yyq1583[0] = x.Rule != "" + yyq1583[1] = len(x.Ranges) != 0 + var yynn1583 int + if yyr1583 || yy2arr1583 { r.EncodeArrayStart(2) } else { - yynn1609 = 0 - for _, b := range yyq1609 { + yynn1583 = 0 + for _, b := range yyq1583 { if b { - yynn1609++ + yynn1583++ } } - r.EncodeMapStart(yynn1609) - yynn1609 = 0 + r.EncodeMapStart(yynn1583) + yynn1583 = 0 } - if yyr1609 || yy2arr1609 { + if yyr1583 || yy2arr1583 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1609[0] { + if yyq1583[0] { x.Rule.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1609[0] { + if yyq1583[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rule")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Rule.CodecEncodeSelf(e) } } - if yyr1609 || yy2arr1609 { + if yyr1583 || yy2arr1583 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1609[1] { + if yyq1583[1] { if x.Ranges == nil { r.EncodeNil() } else { - yym1612 := z.EncBinary() - _ = yym1612 + yym1586 := z.EncBinary() + _ = yym1586 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -18920,15 +18621,15 @@ func (x *FSGroupStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1609[1] { + if yyq1583[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ranges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ranges == nil { r.EncodeNil() } else { - yym1613 := z.EncBinary() - _ = yym1613 + yym1587 := z.EncBinary() + _ = yym1587 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -18936,7 +18637,7 @@ func (x *FSGroupStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1609 || yy2arr1609 { + if yyr1583 || yy2arr1583 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18949,25 +18650,25 @@ func (x *FSGroupStrategyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1614 := z.DecBinary() - _ = yym1614 + yym1588 := z.DecBinary() + _ = yym1588 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1615 := r.ContainerType() - if yyct1615 == codecSelferValueTypeMap1234 { - yyl1615 := r.ReadMapStart() - if yyl1615 == 0 { + yyct1589 := r.ContainerType() + if yyct1589 == codecSelferValueTypeMap1234 { + yyl1589 := r.ReadMapStart() + if yyl1589 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1615, d) + x.codecDecodeSelfFromMap(yyl1589, d) } - } else if yyct1615 == codecSelferValueTypeArray1234 { - yyl1615 := r.ReadArrayStart() - if yyl1615 == 0 { + } else if yyct1589 == codecSelferValueTypeArray1234 { + yyl1589 := r.ReadArrayStart() + if yyl1589 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1615, d) + x.codecDecodeSelfFromArray(yyl1589, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18979,12 +18680,12 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1616Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1616Slc - var yyhl1616 bool = l >= 0 - for yyj1616 := 0; ; yyj1616++ { - if yyhl1616 { - if yyj1616 >= l { + var yys1590Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1590Slc + var yyhl1590 bool = l >= 0 + for yyj1590 := 0; ; yyj1590++ { + if yyhl1590 { + if yyj1590 >= l { break } } else { @@ -18993,10 +18694,10 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1616Slc = r.DecodeBytes(yys1616Slc, true, true) - yys1616 := string(yys1616Slc) + yys1590Slc = r.DecodeBytes(yys1590Slc, true, true) + yys1590 := string(yys1590Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1616 { + switch yys1590 { case "rule": if r.TryDecodeAsNil() { x.Rule = "" @@ -19007,18 +18708,18 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1618 := &x.Ranges - yym1619 := z.DecBinary() - _ = yym1619 + yyv1592 := &x.Ranges + yym1593 := z.DecBinary() + _ = yym1593 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1618), d) + h.decSliceIDRange((*[]IDRange)(yyv1592), d) } } default: - z.DecStructFieldNotFound(-1, yys1616) - } // end switch yys1616 - } // end for yyj1616 + z.DecStructFieldNotFound(-1, yys1590) + } // end switch yys1590 + } // end for yyj1590 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19026,16 +18727,16 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1620 int - var yyb1620 bool - var yyhl1620 bool = l >= 0 - yyj1620++ - if yyhl1620 { - yyb1620 = yyj1620 > l + var yyj1594 int + var yyb1594 bool + var yyhl1594 bool = l >= 0 + yyj1594++ + if yyhl1594 { + yyb1594 = yyj1594 > l } else { - yyb1620 = r.CheckBreak() + yyb1594 = r.CheckBreak() } - if yyb1620 { + if yyb1594 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19045,13 +18746,13 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De } else { x.Rule = FSGroupStrategyType(r.DecodeString()) } - yyj1620++ - if yyhl1620 { - yyb1620 = yyj1620 > l + yyj1594++ + if yyhl1594 { + yyb1594 = yyj1594 > l } else { - yyb1620 = r.CheckBreak() + yyb1594 = r.CheckBreak() } - if yyb1620 { + if yyb1594 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19059,26 +18760,26 @@ func (x *FSGroupStrategyOptions) codecDecodeSelfFromArray(l int, d *codec1978.De if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1622 := &x.Ranges - yym1623 := z.DecBinary() - _ = yym1623 + yyv1596 := &x.Ranges + yym1597 := z.DecBinary() + _ = yym1597 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1622), d) + h.decSliceIDRange((*[]IDRange)(yyv1596), d) } } for { - yyj1620++ - if yyhl1620 { - yyb1620 = yyj1620 > l + yyj1594++ + if yyhl1594 { + yyb1594 = yyj1594 > l } else { - yyb1620 = r.CheckBreak() + yyb1594 = r.CheckBreak() } - if yyb1620 { + if yyb1594 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1620-1, "") + z.DecStructFieldNotFound(yyj1594-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19087,8 +18788,8 @@ func (x FSGroupStrategyType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1624 := z.EncBinary() - _ = yym1624 + yym1598 := z.EncBinary() + _ = yym1598 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19100,8 +18801,8 @@ func (x *FSGroupStrategyType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1625 := z.DecBinary() - _ = yym1625 + yym1599 := z.DecBinary() + _ = yym1599 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -19116,54 +18817,54 @@ func (x *SupplementalGroupsStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder if x == nil { r.EncodeNil() } else { - yym1626 := z.EncBinary() - _ = yym1626 + yym1600 := z.EncBinary() + _ = yym1600 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1627 := !z.EncBinary() - yy2arr1627 := z.EncBasicHandle().StructToArray - var yyq1627 [2]bool - _, _, _ = yysep1627, yyq1627, yy2arr1627 - const yyr1627 bool = false - yyq1627[0] = x.Rule != "" - yyq1627[1] = len(x.Ranges) != 0 - var yynn1627 int - if yyr1627 || yy2arr1627 { + yysep1601 := !z.EncBinary() + yy2arr1601 := z.EncBasicHandle().StructToArray + var yyq1601 [2]bool + _, _, _ = yysep1601, yyq1601, yy2arr1601 + const yyr1601 bool = false + yyq1601[0] = x.Rule != "" + yyq1601[1] = len(x.Ranges) != 0 + var yynn1601 int + if yyr1601 || yy2arr1601 { r.EncodeArrayStart(2) } else { - yynn1627 = 0 - for _, b := range yyq1627 { + yynn1601 = 0 + for _, b := range yyq1601 { if b { - yynn1627++ + yynn1601++ } } - r.EncodeMapStart(yynn1627) - yynn1627 = 0 + r.EncodeMapStart(yynn1601) + yynn1601 = 0 } - if yyr1627 || yy2arr1627 { + if yyr1601 || yy2arr1601 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1627[0] { + if yyq1601[0] { x.Rule.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1627[0] { + if yyq1601[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("rule")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Rule.CodecEncodeSelf(e) } } - if yyr1627 || yy2arr1627 { + if yyr1601 || yy2arr1601 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1627[1] { + if yyq1601[1] { if x.Ranges == nil { r.EncodeNil() } else { - yym1630 := z.EncBinary() - _ = yym1630 + yym1604 := z.EncBinary() + _ = yym1604 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -19173,15 +18874,15 @@ func (x *SupplementalGroupsStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder r.EncodeNil() } } else { - if yyq1627[1] { + if yyq1601[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ranges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ranges == nil { r.EncodeNil() } else { - yym1631 := z.EncBinary() - _ = yym1631 + yym1605 := z.EncBinary() + _ = yym1605 if false { } else { h.encSliceIDRange(([]IDRange)(x.Ranges), e) @@ -19189,7 +18890,7 @@ func (x *SupplementalGroupsStrategyOptions) CodecEncodeSelf(e *codec1978.Encoder } } } - if yyr1627 || yy2arr1627 { + if yyr1601 || yy2arr1601 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19202,25 +18903,25 @@ func (x *SupplementalGroupsStrategyOptions) CodecDecodeSelf(d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1632 := z.DecBinary() - _ = yym1632 + yym1606 := z.DecBinary() + _ = yym1606 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1633 := r.ContainerType() - if yyct1633 == codecSelferValueTypeMap1234 { - yyl1633 := r.ReadMapStart() - if yyl1633 == 0 { + yyct1607 := r.ContainerType() + if yyct1607 == codecSelferValueTypeMap1234 { + yyl1607 := r.ReadMapStart() + if yyl1607 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1633, d) + x.codecDecodeSelfFromMap(yyl1607, d) } - } else if yyct1633 == codecSelferValueTypeArray1234 { - yyl1633 := r.ReadArrayStart() - if yyl1633 == 0 { + } else if yyct1607 == codecSelferValueTypeArray1234 { + yyl1607 := r.ReadArrayStart() + if yyl1607 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1633, d) + x.codecDecodeSelfFromArray(yyl1607, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19232,12 +18933,12 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromMap(l int, d *cod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1634Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1634Slc - var yyhl1634 bool = l >= 0 - for yyj1634 := 0; ; yyj1634++ { - if yyhl1634 { - if yyj1634 >= l { + var yys1608Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1608Slc + var yyhl1608 bool = l >= 0 + for yyj1608 := 0; ; yyj1608++ { + if yyhl1608 { + if yyj1608 >= l { break } } else { @@ -19246,10 +18947,10 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromMap(l int, d *cod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1634Slc = r.DecodeBytes(yys1634Slc, true, true) - yys1634 := string(yys1634Slc) + yys1608Slc = r.DecodeBytes(yys1608Slc, true, true) + yys1608 := string(yys1608Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1634 { + switch yys1608 { case "rule": if r.TryDecodeAsNil() { x.Rule = "" @@ -19260,18 +18961,18 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromMap(l int, d *cod if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1636 := &x.Ranges - yym1637 := z.DecBinary() - _ = yym1637 + yyv1610 := &x.Ranges + yym1611 := z.DecBinary() + _ = yym1611 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1636), d) + h.decSliceIDRange((*[]IDRange)(yyv1610), d) } } default: - z.DecStructFieldNotFound(-1, yys1634) - } // end switch yys1634 - } // end for yyj1634 + z.DecStructFieldNotFound(-1, yys1608) + } // end switch yys1608 + } // end for yyj1608 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19279,16 +18980,16 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromArray(l int, d *c var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1638 int - var yyb1638 bool - var yyhl1638 bool = l >= 0 - yyj1638++ - if yyhl1638 { - yyb1638 = yyj1638 > l + var yyj1612 int + var yyb1612 bool + var yyhl1612 bool = l >= 0 + yyj1612++ + if yyhl1612 { + yyb1612 = yyj1612 > l } else { - yyb1638 = r.CheckBreak() + yyb1612 = r.CheckBreak() } - if yyb1638 { + if yyb1612 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19298,13 +18999,13 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromArray(l int, d *c } else { x.Rule = SupplementalGroupsStrategyType(r.DecodeString()) } - yyj1638++ - if yyhl1638 { - yyb1638 = yyj1638 > l + yyj1612++ + if yyhl1612 { + yyb1612 = yyj1612 > l } else { - yyb1638 = r.CheckBreak() + yyb1612 = r.CheckBreak() } - if yyb1638 { + if yyb1612 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19312,26 +19013,26 @@ func (x *SupplementalGroupsStrategyOptions) codecDecodeSelfFromArray(l int, d *c if r.TryDecodeAsNil() { x.Ranges = nil } else { - yyv1640 := &x.Ranges - yym1641 := z.DecBinary() - _ = yym1641 + yyv1614 := &x.Ranges + yym1615 := z.DecBinary() + _ = yym1615 if false { } else { - h.decSliceIDRange((*[]IDRange)(yyv1640), d) + h.decSliceIDRange((*[]IDRange)(yyv1614), d) } } for { - yyj1638++ - if yyhl1638 { - yyb1638 = yyj1638 > l + yyj1612++ + if yyhl1612 { + yyb1612 = yyj1612 > l } else { - yyb1638 = r.CheckBreak() + yyb1612 = r.CheckBreak() } - if yyb1638 { + if yyb1612 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1638-1, "") + z.DecStructFieldNotFound(yyj1612-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19340,8 +19041,8 @@ func (x SupplementalGroupsStrategyType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1642 := z.EncBinary() - _ = yym1642 + yym1616 := z.EncBinary() + _ = yym1616 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19353,8 +19054,8 @@ func (x *SupplementalGroupsStrategyType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1643 := z.DecBinary() - _ = yym1643 + yym1617 := z.DecBinary() + _ = yym1617 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -19369,37 +19070,37 @@ func (x *PodSecurityPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1644 := z.EncBinary() - _ = yym1644 + yym1618 := z.EncBinary() + _ = yym1618 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1645 := !z.EncBinary() - yy2arr1645 := z.EncBasicHandle().StructToArray - var yyq1645 [4]bool - _, _, _ = yysep1645, yyq1645, yy2arr1645 - const yyr1645 bool = false - yyq1645[0] = x.Kind != "" - yyq1645[1] = x.APIVersion != "" - yyq1645[2] = true - var yynn1645 int - if yyr1645 || yy2arr1645 { + yysep1619 := !z.EncBinary() + yy2arr1619 := z.EncBasicHandle().StructToArray + var yyq1619 [4]bool + _, _, _ = yysep1619, yyq1619, yy2arr1619 + const yyr1619 bool = false + yyq1619[0] = x.Kind != "" + yyq1619[1] = x.APIVersion != "" + yyq1619[2] = true + var yynn1619 int + if yyr1619 || yy2arr1619 { r.EncodeArrayStart(4) } else { - yynn1645 = 1 - for _, b := range yyq1645 { + yynn1619 = 1 + for _, b := range yyq1619 { if b { - yynn1645++ + yynn1619++ } } - r.EncodeMapStart(yynn1645) - yynn1645 = 0 + r.EncodeMapStart(yynn1619) + yynn1619 = 0 } - if yyr1645 || yy2arr1645 { + if yyr1619 || yy2arr1619 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1645[0] { - yym1647 := z.EncBinary() - _ = yym1647 + if yyq1619[0] { + yym1621 := z.EncBinary() + _ = yym1621 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -19408,23 +19109,23 @@ func (x *PodSecurityPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1645[0] { + if yyq1619[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1648 := z.EncBinary() - _ = yym1648 + yym1622 := z.EncBinary() + _ = yym1622 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1645 || yy2arr1645 { + if yyr1619 || yy2arr1619 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1645[1] { - yym1650 := z.EncBinary() - _ = yym1650 + if yyq1619[1] { + yym1624 := z.EncBinary() + _ = yym1624 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -19433,54 +19134,54 @@ func (x *PodSecurityPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1645[1] { + if yyq1619[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1651 := z.EncBinary() - _ = yym1651 + yym1625 := z.EncBinary() + _ = yym1625 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1645 || yy2arr1645 { + if yyr1619 || yy2arr1619 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1645[2] { - yy1653 := &x.ListMeta - yym1654 := z.EncBinary() - _ = yym1654 + if yyq1619[2] { + yy1627 := &x.ListMeta + yym1628 := z.EncBinary() + _ = yym1628 if false { - } else if z.HasExtensions() && z.EncExt(yy1653) { + } else if z.HasExtensions() && z.EncExt(yy1627) { } else { - z.EncFallback(yy1653) + z.EncFallback(yy1627) } } else { r.EncodeNil() } } else { - if yyq1645[2] { + if yyq1619[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1655 := &x.ListMeta - yym1656 := z.EncBinary() - _ = yym1656 + yy1629 := &x.ListMeta + yym1630 := z.EncBinary() + _ = yym1630 if false { - } else if z.HasExtensions() && z.EncExt(yy1655) { + } else if z.HasExtensions() && z.EncExt(yy1629) { } else { - z.EncFallback(yy1655) + z.EncFallback(yy1629) } } } - if yyr1645 || yy2arr1645 { + if yyr1619 || yy2arr1619 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1658 := z.EncBinary() - _ = yym1658 + yym1632 := z.EncBinary() + _ = yym1632 if false { } else { h.encSlicePodSecurityPolicy(([]PodSecurityPolicy)(x.Items), e) @@ -19493,15 +19194,15 @@ func (x *PodSecurityPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1659 := z.EncBinary() - _ = yym1659 + yym1633 := z.EncBinary() + _ = yym1633 if false { } else { h.encSlicePodSecurityPolicy(([]PodSecurityPolicy)(x.Items), e) } } } - if yyr1645 || yy2arr1645 { + if yyr1619 || yy2arr1619 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19514,25 +19215,25 @@ func (x *PodSecurityPolicyList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1660 := z.DecBinary() - _ = yym1660 + yym1634 := z.DecBinary() + _ = yym1634 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1661 := r.ContainerType() - if yyct1661 == codecSelferValueTypeMap1234 { - yyl1661 := r.ReadMapStart() - if yyl1661 == 0 { + yyct1635 := r.ContainerType() + if yyct1635 == codecSelferValueTypeMap1234 { + yyl1635 := r.ReadMapStart() + if yyl1635 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1661, d) + x.codecDecodeSelfFromMap(yyl1635, d) } - } else if yyct1661 == codecSelferValueTypeArray1234 { - yyl1661 := r.ReadArrayStart() - if yyl1661 == 0 { + } else if yyct1635 == codecSelferValueTypeArray1234 { + yyl1635 := r.ReadArrayStart() + if yyl1635 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1661, d) + x.codecDecodeSelfFromArray(yyl1635, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19544,12 +19245,12 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1662Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1662Slc - var yyhl1662 bool = l >= 0 - for yyj1662 := 0; ; yyj1662++ { - if yyhl1662 { - if yyj1662 >= l { + var yys1636Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1636Slc + var yyhl1636 bool = l >= 0 + for yyj1636 := 0; ; yyj1636++ { + if yyhl1636 { + if yyj1636 >= l { break } } else { @@ -19558,10 +19259,10 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1662Slc = r.DecodeBytes(yys1662Slc, true, true) - yys1662 := string(yys1662Slc) + yys1636Slc = r.DecodeBytes(yys1636Slc, true, true) + yys1636 := string(yys1636Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1662 { + switch yys1636 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -19578,31 +19279,31 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg1_unversioned.ListMeta{} } else { - yyv1665 := &x.ListMeta - yym1666 := z.DecBinary() - _ = yym1666 + yyv1639 := &x.ListMeta + yym1640 := z.DecBinary() + _ = yym1640 if false { - } else if z.HasExtensions() && z.DecExt(yyv1665) { + } else if z.HasExtensions() && z.DecExt(yyv1639) { } else { - z.DecFallback(yyv1665, false) + z.DecFallback(yyv1639, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1667 := &x.Items - yym1668 := z.DecBinary() - _ = yym1668 + yyv1641 := &x.Items + yym1642 := z.DecBinary() + _ = yym1642 if false { } else { - h.decSlicePodSecurityPolicy((*[]PodSecurityPolicy)(yyv1667), d) + h.decSlicePodSecurityPolicy((*[]PodSecurityPolicy)(yyv1641), d) } } default: - z.DecStructFieldNotFound(-1, yys1662) - } // end switch yys1662 - } // end for yyj1662 + z.DecStructFieldNotFound(-1, yys1636) + } // end switch yys1636 + } // end for yyj1636 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19610,16 +19311,16 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1669 int - var yyb1669 bool - var yyhl1669 bool = l >= 0 - yyj1669++ - if yyhl1669 { - yyb1669 = yyj1669 > l + var yyj1643 int + var yyb1643 bool + var yyhl1643 bool = l >= 0 + yyj1643++ + if yyhl1643 { + yyb1643 = yyj1643 > l } else { - yyb1669 = r.CheckBreak() + yyb1643 = r.CheckBreak() } - if yyb1669 { + if yyb1643 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19629,13 +19330,13 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj1669++ - if yyhl1669 { - yyb1669 = yyj1669 > l + yyj1643++ + if yyhl1643 { + yyb1643 = yyj1643 > l } else { - yyb1669 = r.CheckBreak() + yyb1643 = r.CheckBreak() } - if yyb1669 { + if yyb1643 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19645,13 +19346,13 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj1669++ - if yyhl1669 { - yyb1669 = yyj1669 > l + yyj1643++ + if yyhl1643 { + yyb1643 = yyj1643 > l } else { - yyb1669 = r.CheckBreak() + yyb1643 = r.CheckBreak() } - if yyb1669 { + if yyb1643 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19659,22 +19360,22 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ListMeta = pkg1_unversioned.ListMeta{} } else { - yyv1672 := &x.ListMeta - yym1673 := z.DecBinary() - _ = yym1673 + yyv1646 := &x.ListMeta + yym1647 := z.DecBinary() + _ = yym1647 if false { - } else if z.HasExtensions() && z.DecExt(yyv1672) { + } else if z.HasExtensions() && z.DecExt(yyv1646) { } else { - z.DecFallback(yyv1672, false) + z.DecFallback(yyv1646, false) } } - yyj1669++ - if yyhl1669 { - yyb1669 = yyj1669 > l + yyj1643++ + if yyhl1643 { + yyb1643 = yyj1643 > l } else { - yyb1669 = r.CheckBreak() + yyb1643 = r.CheckBreak() } - if yyb1669 { + if yyb1643 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19682,26 +19383,26 @@ func (x *PodSecurityPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1674 := &x.Items - yym1675 := z.DecBinary() - _ = yym1675 + yyv1648 := &x.Items + yym1649 := z.DecBinary() + _ = yym1649 if false { } else { - h.decSlicePodSecurityPolicy((*[]PodSecurityPolicy)(yyv1674), d) + h.decSlicePodSecurityPolicy((*[]PodSecurityPolicy)(yyv1648), d) } } for { - yyj1669++ - if yyhl1669 { - yyb1669 = yyj1669 > l + yyj1643++ + if yyhl1643 { + yyb1643 = yyj1643 > l } else { - yyb1669 = r.CheckBreak() + yyb1643 = r.CheckBreak() } - if yyb1669 { + if yyb1643 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1669-1, "") + z.DecStructFieldNotFound(yyj1643-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19713,38 +19414,38 @@ func (x *NetworkPolicy) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1676 := z.EncBinary() - _ = yym1676 + yym1650 := z.EncBinary() + _ = yym1650 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1677 := !z.EncBinary() - yy2arr1677 := z.EncBasicHandle().StructToArray - var yyq1677 [4]bool - _, _, _ = yysep1677, yyq1677, yy2arr1677 - const yyr1677 bool = false - yyq1677[0] = x.Kind != "" - yyq1677[1] = x.APIVersion != "" - yyq1677[2] = true - yyq1677[3] = true - var yynn1677 int - if yyr1677 || yy2arr1677 { + yysep1651 := !z.EncBinary() + yy2arr1651 := z.EncBasicHandle().StructToArray + var yyq1651 [4]bool + _, _, _ = yysep1651, yyq1651, yy2arr1651 + const yyr1651 bool = false + yyq1651[0] = x.Kind != "" + yyq1651[1] = x.APIVersion != "" + yyq1651[2] = true + yyq1651[3] = true + var yynn1651 int + if yyr1651 || yy2arr1651 { r.EncodeArrayStart(4) } else { - yynn1677 = 0 - for _, b := range yyq1677 { + yynn1651 = 0 + for _, b := range yyq1651 { if b { - yynn1677++ + yynn1651++ } } - r.EncodeMapStart(yynn1677) - yynn1677 = 0 + r.EncodeMapStart(yynn1651) + yynn1651 = 0 } - if yyr1677 || yy2arr1677 { + if yyr1651 || yy2arr1651 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1677[0] { - yym1679 := z.EncBinary() - _ = yym1679 + if yyq1651[0] { + yym1653 := z.EncBinary() + _ = yym1653 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -19753,23 +19454,23 @@ func (x *NetworkPolicy) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1677[0] { + if yyq1651[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1680 := z.EncBinary() - _ = yym1680 + yym1654 := z.EncBinary() + _ = yym1654 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1677 || yy2arr1677 { + if yyr1651 || yy2arr1651 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1677[1] { - yym1682 := z.EncBinary() - _ = yym1682 + if yyq1651[1] { + yym1656 := z.EncBinary() + _ = yym1656 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -19778,53 +19479,53 @@ func (x *NetworkPolicy) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1677[1] { + if yyq1651[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1683 := z.EncBinary() - _ = yym1683 + yym1657 := z.EncBinary() + _ = yym1657 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1677 || yy2arr1677 { + if yyr1651 || yy2arr1651 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1677[2] { - yy1685 := &x.ObjectMeta - yy1685.CodecEncodeSelf(e) + if yyq1651[2] { + yy1659 := &x.ObjectMeta + yy1659.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1677[2] { + if yyq1651[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1686 := &x.ObjectMeta - yy1686.CodecEncodeSelf(e) + yy1660 := &x.ObjectMeta + yy1660.CodecEncodeSelf(e) } } - if yyr1677 || yy2arr1677 { + if yyr1651 || yy2arr1651 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1677[3] { - yy1688 := &x.Spec - yy1688.CodecEncodeSelf(e) + if yyq1651[3] { + yy1662 := &x.Spec + yy1662.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1677[3] { + if yyq1651[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1689 := &x.Spec - yy1689.CodecEncodeSelf(e) + yy1663 := &x.Spec + yy1663.CodecEncodeSelf(e) } } - if yyr1677 || yy2arr1677 { + if yyr1651 || yy2arr1651 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19837,25 +19538,25 @@ func (x *NetworkPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1690 := z.DecBinary() - _ = yym1690 + yym1664 := z.DecBinary() + _ = yym1664 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1691 := r.ContainerType() - if yyct1691 == codecSelferValueTypeMap1234 { - yyl1691 := r.ReadMapStart() - if yyl1691 == 0 { + yyct1665 := r.ContainerType() + if yyct1665 == codecSelferValueTypeMap1234 { + yyl1665 := r.ReadMapStart() + if yyl1665 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1691, d) + x.codecDecodeSelfFromMap(yyl1665, d) } - } else if yyct1691 == codecSelferValueTypeArray1234 { - yyl1691 := r.ReadArrayStart() - if yyl1691 == 0 { + } else if yyct1665 == codecSelferValueTypeArray1234 { + yyl1665 := r.ReadArrayStart() + if yyl1665 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1691, d) + x.codecDecodeSelfFromArray(yyl1665, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19867,12 +19568,12 @@ func (x *NetworkPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1692Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1692Slc - var yyhl1692 bool = l >= 0 - for yyj1692 := 0; ; yyj1692++ { - if yyhl1692 { - if yyj1692 >= l { + var yys1666Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1666Slc + var yyhl1666 bool = l >= 0 + for yyj1666 := 0; ; yyj1666++ { + if yyhl1666 { + if yyj1666 >= l { break } } else { @@ -19881,10 +19582,10 @@ func (x *NetworkPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1692Slc = r.DecodeBytes(yys1692Slc, true, true) - yys1692 := string(yys1692Slc) + yys1666Slc = r.DecodeBytes(yys1666Slc, true, true) + yys1666 := string(yys1666Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1692 { + switch yys1666 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -19901,20 +19602,20 @@ func (x *NetworkPolicy) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = pkg2_v1.ObjectMeta{} } else { - yyv1695 := &x.ObjectMeta - yyv1695.CodecDecodeSelf(d) + yyv1669 := &x.ObjectMeta + yyv1669.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NetworkPolicySpec{} } else { - yyv1696 := &x.Spec - yyv1696.CodecDecodeSelf(d) + yyv1670 := &x.Spec + yyv1670.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1692) - } // end switch yys1692 - } // end for yyj1692 + z.DecStructFieldNotFound(-1, yys1666) + } // end switch yys1666 + } // end for yyj1666 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19922,16 +19623,16 @@ func (x *NetworkPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1697 int - var yyb1697 bool - var yyhl1697 bool = l >= 0 - yyj1697++ - if yyhl1697 { - yyb1697 = yyj1697 > l + var yyj1671 int + var yyb1671 bool + var yyhl1671 bool = l >= 0 + yyj1671++ + if yyhl1671 { + yyb1671 = yyj1671 > l } else { - yyb1697 = r.CheckBreak() + yyb1671 = r.CheckBreak() } - if yyb1697 { + if yyb1671 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19941,13 +19642,13 @@ func (x *NetworkPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1697++ - if yyhl1697 { - yyb1697 = yyj1697 > l + yyj1671++ + if yyhl1671 { + yyb1671 = yyj1671 > l } else { - yyb1697 = r.CheckBreak() + yyb1671 = r.CheckBreak() } - if yyb1697 { + if yyb1671 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19957,13 +19658,13 @@ func (x *NetworkPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1697++ - if yyhl1697 { - yyb1697 = yyj1697 > l + yyj1671++ + if yyhl1671 { + yyb1671 = yyj1671 > l } else { - yyb1697 = r.CheckBreak() + yyb1671 = r.CheckBreak() } - if yyb1697 { + if yyb1671 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19971,16 +19672,16 @@ func (x *NetworkPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = pkg2_v1.ObjectMeta{} } else { - yyv1700 := &x.ObjectMeta - yyv1700.CodecDecodeSelf(d) + yyv1674 := &x.ObjectMeta + yyv1674.CodecDecodeSelf(d) } - yyj1697++ - if yyhl1697 { - yyb1697 = yyj1697 > l + yyj1671++ + if yyhl1671 { + yyb1671 = yyj1671 > l } else { - yyb1697 = r.CheckBreak() + yyb1671 = r.CheckBreak() } - if yyb1697 { + if yyb1671 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19988,21 +19689,21 @@ func (x *NetworkPolicy) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NetworkPolicySpec{} } else { - yyv1701 := &x.Spec - yyv1701.CodecDecodeSelf(d) + yyv1675 := &x.Spec + yyv1675.CodecDecodeSelf(d) } for { - yyj1697++ - if yyhl1697 { - yyb1697 = yyj1697 > l + yyj1671++ + if yyhl1671 { + yyb1671 = yyj1671 > l } else { - yyb1697 = r.CheckBreak() + yyb1671 = r.CheckBreak() } - if yyb1697 { + if yyb1671 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1697-1, "") + z.DecStructFieldNotFound(yyj1671-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20014,61 +19715,61 @@ func (x *NetworkPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1702 := z.EncBinary() - _ = yym1702 + yym1676 := z.EncBinary() + _ = yym1676 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1703 := !z.EncBinary() - yy2arr1703 := z.EncBasicHandle().StructToArray - var yyq1703 [2]bool - _, _, _ = yysep1703, yyq1703, yy2arr1703 - const yyr1703 bool = false - yyq1703[1] = len(x.Ingress) != 0 - var yynn1703 int - if yyr1703 || yy2arr1703 { + yysep1677 := !z.EncBinary() + yy2arr1677 := z.EncBasicHandle().StructToArray + var yyq1677 [2]bool + _, _, _ = yysep1677, yyq1677, yy2arr1677 + const yyr1677 bool = false + yyq1677[1] = len(x.Ingress) != 0 + var yynn1677 int + if yyr1677 || yy2arr1677 { r.EncodeArrayStart(2) } else { - yynn1703 = 1 - for _, b := range yyq1703 { + yynn1677 = 1 + for _, b := range yyq1677 { if b { - yynn1703++ + yynn1677++ } } - r.EncodeMapStart(yynn1703) - yynn1703 = 0 + r.EncodeMapStart(yynn1677) + yynn1677 = 0 } - if yyr1703 || yy2arr1703 { + if yyr1677 || yy2arr1677 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1705 := &x.PodSelector - yym1706 := z.EncBinary() - _ = yym1706 + yy1679 := &x.PodSelector + yym1680 := z.EncBinary() + _ = yym1680 if false { - } else if z.HasExtensions() && z.EncExt(yy1705) { + } else if z.HasExtensions() && z.EncExt(yy1679) { } else { - z.EncFallback(yy1705) + z.EncFallback(yy1679) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1707 := &x.PodSelector - yym1708 := z.EncBinary() - _ = yym1708 + yy1681 := &x.PodSelector + yym1682 := z.EncBinary() + _ = yym1682 if false { - } else if z.HasExtensions() && z.EncExt(yy1707) { + } else if z.HasExtensions() && z.EncExt(yy1681) { } else { - z.EncFallback(yy1707) + z.EncFallback(yy1681) } } - if yyr1703 || yy2arr1703 { + if yyr1677 || yy2arr1677 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1703[1] { + if yyq1677[1] { if x.Ingress == nil { r.EncodeNil() } else { - yym1710 := z.EncBinary() - _ = yym1710 + yym1684 := z.EncBinary() + _ = yym1684 if false { } else { h.encSliceNetworkPolicyIngressRule(([]NetworkPolicyIngressRule)(x.Ingress), e) @@ -20078,15 +19779,15 @@ func (x *NetworkPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1703[1] { + if yyq1677[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym1711 := z.EncBinary() - _ = yym1711 + yym1685 := z.EncBinary() + _ = yym1685 if false { } else { h.encSliceNetworkPolicyIngressRule(([]NetworkPolicyIngressRule)(x.Ingress), e) @@ -20094,7 +19795,7 @@ func (x *NetworkPolicySpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1703 || yy2arr1703 { + if yyr1677 || yy2arr1677 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20107,25 +19808,25 @@ func (x *NetworkPolicySpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1712 := z.DecBinary() - _ = yym1712 + yym1686 := z.DecBinary() + _ = yym1686 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1713 := r.ContainerType() - if yyct1713 == codecSelferValueTypeMap1234 { - yyl1713 := r.ReadMapStart() - if yyl1713 == 0 { + yyct1687 := r.ContainerType() + if yyct1687 == codecSelferValueTypeMap1234 { + yyl1687 := r.ReadMapStart() + if yyl1687 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1713, d) + x.codecDecodeSelfFromMap(yyl1687, d) } - } else if yyct1713 == codecSelferValueTypeArray1234 { - yyl1713 := r.ReadArrayStart() - if yyl1713 == 0 { + } else if yyct1687 == codecSelferValueTypeArray1234 { + yyl1687 := r.ReadArrayStart() + if yyl1687 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1713, d) + x.codecDecodeSelfFromArray(yyl1687, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20137,12 +19838,12 @@ func (x *NetworkPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1714Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1714Slc - var yyhl1714 bool = l >= 0 - for yyj1714 := 0; ; yyj1714++ { - if yyhl1714 { - if yyj1714 >= l { + var yys1688Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1688Slc + var yyhl1688 bool = l >= 0 + for yyj1688 := 0; ; yyj1688++ { + if yyhl1688 { + if yyj1688 >= l { break } } else { @@ -20151,39 +19852,39 @@ func (x *NetworkPolicySpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1714Slc = r.DecodeBytes(yys1714Slc, true, true) - yys1714 := string(yys1714Slc) + yys1688Slc = r.DecodeBytes(yys1688Slc, true, true) + yys1688 := string(yys1688Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1714 { + switch yys1688 { case "podSelector": if r.TryDecodeAsNil() { x.PodSelector = pkg1_unversioned.LabelSelector{} } else { - yyv1715 := &x.PodSelector - yym1716 := z.DecBinary() - _ = yym1716 + yyv1689 := &x.PodSelector + yym1690 := z.DecBinary() + _ = yym1690 if false { - } else if z.HasExtensions() && z.DecExt(yyv1715) { + } else if z.HasExtensions() && z.DecExt(yyv1689) { } else { - z.DecFallback(yyv1715, false) + z.DecFallback(yyv1689, false) } } case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv1717 := &x.Ingress - yym1718 := z.DecBinary() - _ = yym1718 + yyv1691 := &x.Ingress + yym1692 := z.DecBinary() + _ = yym1692 if false { } else { - h.decSliceNetworkPolicyIngressRule((*[]NetworkPolicyIngressRule)(yyv1717), d) + h.decSliceNetworkPolicyIngressRule((*[]NetworkPolicyIngressRule)(yyv1691), d) } } default: - z.DecStructFieldNotFound(-1, yys1714) - } // end switch yys1714 - } // end for yyj1714 + z.DecStructFieldNotFound(-1, yys1688) + } // end switch yys1688 + } // end for yyj1688 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20191,16 +19892,16 @@ func (x *NetworkPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1719 int - var yyb1719 bool - var yyhl1719 bool = l >= 0 - yyj1719++ - if yyhl1719 { - yyb1719 = yyj1719 > l + var yyj1693 int + var yyb1693 bool + var yyhl1693 bool = l >= 0 + yyj1693++ + if yyhl1693 { + yyb1693 = yyj1693 > l } else { - yyb1719 = r.CheckBreak() + yyb1693 = r.CheckBreak() } - if yyb1719 { + if yyb1693 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20208,22 +19909,22 @@ func (x *NetworkPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.PodSelector = pkg1_unversioned.LabelSelector{} } else { - yyv1720 := &x.PodSelector - yym1721 := z.DecBinary() - _ = yym1721 + yyv1694 := &x.PodSelector + yym1695 := z.DecBinary() + _ = yym1695 if false { - } else if z.HasExtensions() && z.DecExt(yyv1720) { + } else if z.HasExtensions() && z.DecExt(yyv1694) { } else { - z.DecFallback(yyv1720, false) + z.DecFallback(yyv1694, false) } } - yyj1719++ - if yyhl1719 { - yyb1719 = yyj1719 > l + yyj1693++ + if yyhl1693 { + yyb1693 = yyj1693 > l } else { - yyb1719 = r.CheckBreak() + yyb1693 = r.CheckBreak() } - if yyb1719 { + if yyb1693 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20231,26 +19932,26 @@ func (x *NetworkPolicySpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv1722 := &x.Ingress - yym1723 := z.DecBinary() - _ = yym1723 + yyv1696 := &x.Ingress + yym1697 := z.DecBinary() + _ = yym1697 if false { } else { - h.decSliceNetworkPolicyIngressRule((*[]NetworkPolicyIngressRule)(yyv1722), d) + h.decSliceNetworkPolicyIngressRule((*[]NetworkPolicyIngressRule)(yyv1696), d) } } for { - yyj1719++ - if yyhl1719 { - yyb1719 = yyj1719 > l + yyj1693++ + if yyhl1693 { + yyb1693 = yyj1693 > l } else { - yyb1719 = r.CheckBreak() + yyb1693 = r.CheckBreak() } - if yyb1719 { + if yyb1693 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1719-1, "") + z.DecStructFieldNotFound(yyj1693-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20262,39 +19963,39 @@ func (x *NetworkPolicyIngressRule) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1724 := z.EncBinary() - _ = yym1724 + yym1698 := z.EncBinary() + _ = yym1698 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1725 := !z.EncBinary() - yy2arr1725 := z.EncBasicHandle().StructToArray - var yyq1725 [2]bool - _, _, _ = yysep1725, yyq1725, yy2arr1725 - const yyr1725 bool = false - yyq1725[0] = len(x.Ports) != 0 - yyq1725[1] = len(x.From) != 0 - var yynn1725 int - if yyr1725 || yy2arr1725 { + yysep1699 := !z.EncBinary() + yy2arr1699 := z.EncBasicHandle().StructToArray + var yyq1699 [2]bool + _, _, _ = yysep1699, yyq1699, yy2arr1699 + const yyr1699 bool = false + yyq1699[0] = len(x.Ports) != 0 + yyq1699[1] = len(x.From) != 0 + var yynn1699 int + if yyr1699 || yy2arr1699 { r.EncodeArrayStart(2) } else { - yynn1725 = 0 - for _, b := range yyq1725 { + yynn1699 = 0 + for _, b := range yyq1699 { if b { - yynn1725++ + yynn1699++ } } - r.EncodeMapStart(yynn1725) - yynn1725 = 0 + r.EncodeMapStart(yynn1699) + yynn1699 = 0 } - if yyr1725 || yy2arr1725 { + if yyr1699 || yy2arr1699 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1725[0] { + if yyq1699[0] { if x.Ports == nil { r.EncodeNil() } else { - yym1727 := z.EncBinary() - _ = yym1727 + yym1701 := z.EncBinary() + _ = yym1701 if false { } else { h.encSliceNetworkPolicyPort(([]NetworkPolicyPort)(x.Ports), e) @@ -20304,15 +20005,15 @@ func (x *NetworkPolicyIngressRule) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1725[0] { + if yyq1699[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym1728 := z.EncBinary() - _ = yym1728 + yym1702 := z.EncBinary() + _ = yym1702 if false { } else { h.encSliceNetworkPolicyPort(([]NetworkPolicyPort)(x.Ports), e) @@ -20320,14 +20021,14 @@ func (x *NetworkPolicyIngressRule) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1725 || yy2arr1725 { + if yyr1699 || yy2arr1699 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1725[1] { + if yyq1699[1] { if x.From == nil { r.EncodeNil() } else { - yym1730 := z.EncBinary() - _ = yym1730 + yym1704 := z.EncBinary() + _ = yym1704 if false { } else { h.encSliceNetworkPolicyPeer(([]NetworkPolicyPeer)(x.From), e) @@ -20337,15 +20038,15 @@ func (x *NetworkPolicyIngressRule) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1725[1] { + if yyq1699[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("from")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.From == nil { r.EncodeNil() } else { - yym1731 := z.EncBinary() - _ = yym1731 + yym1705 := z.EncBinary() + _ = yym1705 if false { } else { h.encSliceNetworkPolicyPeer(([]NetworkPolicyPeer)(x.From), e) @@ -20353,7 +20054,7 @@ func (x *NetworkPolicyIngressRule) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1725 || yy2arr1725 { + if yyr1699 || yy2arr1699 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20366,25 +20067,25 @@ func (x *NetworkPolicyIngressRule) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1732 := z.DecBinary() - _ = yym1732 + yym1706 := z.DecBinary() + _ = yym1706 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1733 := r.ContainerType() - if yyct1733 == codecSelferValueTypeMap1234 { - yyl1733 := r.ReadMapStart() - if yyl1733 == 0 { + yyct1707 := r.ContainerType() + if yyct1707 == codecSelferValueTypeMap1234 { + yyl1707 := r.ReadMapStart() + if yyl1707 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1733, d) + x.codecDecodeSelfFromMap(yyl1707, d) } - } else if yyct1733 == codecSelferValueTypeArray1234 { - yyl1733 := r.ReadArrayStart() - if yyl1733 == 0 { + } else if yyct1707 == codecSelferValueTypeArray1234 { + yyl1707 := r.ReadArrayStart() + if yyl1707 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1733, d) + x.codecDecodeSelfFromArray(yyl1707, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20396,12 +20097,12 @@ func (x *NetworkPolicyIngressRule) codecDecodeSelfFromMap(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1734Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1734Slc - var yyhl1734 bool = l >= 0 - for yyj1734 := 0; ; yyj1734++ { - if yyhl1734 { - if yyj1734 >= l { + var yys1708Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1708Slc + var yyhl1708 bool = l >= 0 + for yyj1708 := 0; ; yyj1708++ { + if yyhl1708 { + if yyj1708 >= l { break } } else { @@ -20410,38 +20111,38 @@ func (x *NetworkPolicyIngressRule) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1734Slc = r.DecodeBytes(yys1734Slc, true, true) - yys1734 := string(yys1734Slc) + yys1708Slc = r.DecodeBytes(yys1708Slc, true, true) + yys1708 := string(yys1708Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1734 { + switch yys1708 { case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1735 := &x.Ports - yym1736 := z.DecBinary() - _ = yym1736 + yyv1709 := &x.Ports + yym1710 := z.DecBinary() + _ = yym1710 if false { } else { - h.decSliceNetworkPolicyPort((*[]NetworkPolicyPort)(yyv1735), d) + h.decSliceNetworkPolicyPort((*[]NetworkPolicyPort)(yyv1709), d) } } case "from": if r.TryDecodeAsNil() { x.From = nil } else { - yyv1737 := &x.From - yym1738 := z.DecBinary() - _ = yym1738 + yyv1711 := &x.From + yym1712 := z.DecBinary() + _ = yym1712 if false { } else { - h.decSliceNetworkPolicyPeer((*[]NetworkPolicyPeer)(yyv1737), d) + h.decSliceNetworkPolicyPeer((*[]NetworkPolicyPeer)(yyv1711), d) } } default: - z.DecStructFieldNotFound(-1, yys1734) - } // end switch yys1734 - } // end for yyj1734 + z.DecStructFieldNotFound(-1, yys1708) + } // end switch yys1708 + } // end for yyj1708 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20449,16 +20150,16 @@ func (x *NetworkPolicyIngressRule) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1739 int - var yyb1739 bool - var yyhl1739 bool = l >= 0 - yyj1739++ - if yyhl1739 { - yyb1739 = yyj1739 > l + var yyj1713 int + var yyb1713 bool + var yyhl1713 bool = l >= 0 + yyj1713++ + if yyhl1713 { + yyb1713 = yyj1713 > l } else { - yyb1739 = r.CheckBreak() + yyb1713 = r.CheckBreak() } - if yyb1739 { + if yyb1713 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20466,21 +20167,21 @@ func (x *NetworkPolicyIngressRule) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1740 := &x.Ports - yym1741 := z.DecBinary() - _ = yym1741 + yyv1714 := &x.Ports + yym1715 := z.DecBinary() + _ = yym1715 if false { } else { - h.decSliceNetworkPolicyPort((*[]NetworkPolicyPort)(yyv1740), d) + h.decSliceNetworkPolicyPort((*[]NetworkPolicyPort)(yyv1714), d) } } - yyj1739++ - if yyhl1739 { - yyb1739 = yyj1739 > l + yyj1713++ + if yyhl1713 { + yyb1713 = yyj1713 > l } else { - yyb1739 = r.CheckBreak() + yyb1713 = r.CheckBreak() } - if yyb1739 { + if yyb1713 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20488,26 +20189,26 @@ func (x *NetworkPolicyIngressRule) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.From = nil } else { - yyv1742 := &x.From - yym1743 := z.DecBinary() - _ = yym1743 + yyv1716 := &x.From + yym1717 := z.DecBinary() + _ = yym1717 if false { } else { - h.decSliceNetworkPolicyPeer((*[]NetworkPolicyPeer)(yyv1742), d) + h.decSliceNetworkPolicyPeer((*[]NetworkPolicyPeer)(yyv1716), d) } } for { - yyj1739++ - if yyhl1739 { - yyb1739 = yyj1739 > l + yyj1713++ + if yyhl1713 { + yyb1713 = yyj1713 > l } else { - yyb1739 = r.CheckBreak() + yyb1713 = r.CheckBreak() } - if yyb1739 { + if yyb1713 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1739-1, "") + z.DecStructFieldNotFound(yyj1713-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20519,79 +20220,79 @@ func (x *NetworkPolicyPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1744 := z.EncBinary() - _ = yym1744 + yym1718 := z.EncBinary() + _ = yym1718 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1745 := !z.EncBinary() - yy2arr1745 := z.EncBasicHandle().StructToArray - var yyq1745 [2]bool - _, _, _ = yysep1745, yyq1745, yy2arr1745 - const yyr1745 bool = false - yyq1745[0] = x.Protocol != nil - yyq1745[1] = x.Port != nil - var yynn1745 int - if yyr1745 || yy2arr1745 { + yysep1719 := !z.EncBinary() + yy2arr1719 := z.EncBasicHandle().StructToArray + var yyq1719 [2]bool + _, _, _ = yysep1719, yyq1719, yy2arr1719 + const yyr1719 bool = false + yyq1719[0] = x.Protocol != nil + yyq1719[1] = x.Port != nil + var yynn1719 int + if yyr1719 || yy2arr1719 { r.EncodeArrayStart(2) } else { - yynn1745 = 0 - for _, b := range yyq1745 { + yynn1719 = 0 + for _, b := range yyq1719 { if b { - yynn1745++ + yynn1719++ } } - r.EncodeMapStart(yynn1745) - yynn1745 = 0 + r.EncodeMapStart(yynn1719) + yynn1719 = 0 } - if yyr1745 || yy2arr1745 { + if yyr1719 || yy2arr1719 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1745[0] { + if yyq1719[0] { if x.Protocol == nil { r.EncodeNil() } else { - yy1747 := *x.Protocol - yym1748 := z.EncBinary() - _ = yym1748 + yy1721 := *x.Protocol + yym1722 := z.EncBinary() + _ = yym1722 if false { - } else if z.HasExtensions() && z.EncExt(yy1747) { + } else if z.HasExtensions() && z.EncExt(yy1721) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy1747)) + r.EncodeString(codecSelferC_UTF81234, string(yy1721)) } } } else { r.EncodeNil() } } else { - if yyq1745[0] { + if yyq1719[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Protocol == nil { r.EncodeNil() } else { - yy1749 := *x.Protocol - yym1750 := z.EncBinary() - _ = yym1750 + yy1723 := *x.Protocol + yym1724 := z.EncBinary() + _ = yym1724 if false { - } else if z.HasExtensions() && z.EncExt(yy1749) { + } else if z.HasExtensions() && z.EncExt(yy1723) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy1749)) + r.EncodeString(codecSelferC_UTF81234, string(yy1723)) } } } } - if yyr1745 || yy2arr1745 { + if yyr1719 || yy2arr1719 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1745[1] { + if yyq1719[1] { if x.Port == nil { r.EncodeNil() } else { - yym1752 := z.EncBinary() - _ = yym1752 + yym1726 := z.EncBinary() + _ = yym1726 if false { } else if z.HasExtensions() && z.EncExt(x.Port) { - } else if !yym1752 && z.IsJSONHandle() { + } else if !yym1726 && z.IsJSONHandle() { z.EncJSONMarshal(x.Port) } else { z.EncFallback(x.Port) @@ -20601,18 +20302,18 @@ func (x *NetworkPolicyPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1745[1] { + if yyq1719[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Port == nil { r.EncodeNil() } else { - yym1753 := z.EncBinary() - _ = yym1753 + yym1727 := z.EncBinary() + _ = yym1727 if false { } else if z.HasExtensions() && z.EncExt(x.Port) { - } else if !yym1753 && z.IsJSONHandle() { + } else if !yym1727 && z.IsJSONHandle() { z.EncJSONMarshal(x.Port) } else { z.EncFallback(x.Port) @@ -20620,7 +20321,7 @@ func (x *NetworkPolicyPort) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1745 || yy2arr1745 { + if yyr1719 || yy2arr1719 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20633,25 +20334,25 @@ func (x *NetworkPolicyPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1754 := z.DecBinary() - _ = yym1754 + yym1728 := z.DecBinary() + _ = yym1728 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1755 := r.ContainerType() - if yyct1755 == codecSelferValueTypeMap1234 { - yyl1755 := r.ReadMapStart() - if yyl1755 == 0 { + yyct1729 := r.ContainerType() + if yyct1729 == codecSelferValueTypeMap1234 { + yyl1729 := r.ReadMapStart() + if yyl1729 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1755, d) + x.codecDecodeSelfFromMap(yyl1729, d) } - } else if yyct1755 == codecSelferValueTypeArray1234 { - yyl1755 := r.ReadArrayStart() - if yyl1755 == 0 { + } else if yyct1729 == codecSelferValueTypeArray1234 { + yyl1729 := r.ReadArrayStart() + if yyl1729 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1755, d) + x.codecDecodeSelfFromArray(yyl1729, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20663,12 +20364,12 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1756Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1756Slc - var yyhl1756 bool = l >= 0 - for yyj1756 := 0; ; yyj1756++ { - if yyhl1756 { - if yyj1756 >= l { + var yys1730Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1730Slc + var yyhl1730 bool = l >= 0 + for yyj1730 := 0; ; yyj1730++ { + if yyhl1730 { + if yyj1730 >= l { break } } else { @@ -20677,10 +20378,10 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1756Slc = r.DecodeBytes(yys1756Slc, true, true) - yys1756 := string(yys1756Slc) + yys1730Slc = r.DecodeBytes(yys1730Slc, true, true) + yys1730 := string(yys1730Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1756 { + switch yys1730 { case "protocol": if r.TryDecodeAsNil() { if x.Protocol != nil { @@ -20701,20 +20402,20 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.Port == nil { x.Port = new(pkg5_intstr.IntOrString) } - yym1759 := z.DecBinary() - _ = yym1759 + yym1733 := z.DecBinary() + _ = yym1733 if false { } else if z.HasExtensions() && z.DecExt(x.Port) { - } else if !yym1759 && z.IsJSONHandle() { + } else if !yym1733 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.Port) } else { z.DecFallback(x.Port, false) } } default: - z.DecStructFieldNotFound(-1, yys1756) - } // end switch yys1756 - } // end for yyj1756 + z.DecStructFieldNotFound(-1, yys1730) + } // end switch yys1730 + } // end for yyj1730 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20722,16 +20423,16 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1760 int - var yyb1760 bool - var yyhl1760 bool = l >= 0 - yyj1760++ - if yyhl1760 { - yyb1760 = yyj1760 > l + var yyj1734 int + var yyb1734 bool + var yyhl1734 bool = l >= 0 + yyj1734++ + if yyhl1734 { + yyb1734 = yyj1734 > l } else { - yyb1760 = r.CheckBreak() + yyb1734 = r.CheckBreak() } - if yyb1760 { + if yyb1734 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20746,13 +20447,13 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } x.Protocol.CodecDecodeSelf(d) } - yyj1760++ - if yyhl1760 { - yyb1760 = yyj1760 > l + yyj1734++ + if yyhl1734 { + yyb1734 = yyj1734 > l } else { - yyb1760 = r.CheckBreak() + yyb1734 = r.CheckBreak() } - if yyb1760 { + if yyb1734 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20765,28 +20466,28 @@ func (x *NetworkPolicyPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if x.Port == nil { x.Port = new(pkg5_intstr.IntOrString) } - yym1763 := z.DecBinary() - _ = yym1763 + yym1737 := z.DecBinary() + _ = yym1737 if false { } else if z.HasExtensions() && z.DecExt(x.Port) { - } else if !yym1763 && z.IsJSONHandle() { + } else if !yym1737 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.Port) } else { z.DecFallback(x.Port, false) } } for { - yyj1760++ - if yyhl1760 { - yyb1760 = yyj1760 > l + yyj1734++ + if yyhl1734 { + yyb1734 = yyj1734 > l } else { - yyb1760 = r.CheckBreak() + yyb1734 = r.CheckBreak() } - if yyb1760 { + if yyb1734 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1760-1, "") + z.DecStructFieldNotFound(yyj1734-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20798,39 +20499,39 @@ func (x *NetworkPolicyPeer) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1764 := z.EncBinary() - _ = yym1764 + yym1738 := z.EncBinary() + _ = yym1738 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1765 := !z.EncBinary() - yy2arr1765 := z.EncBasicHandle().StructToArray - var yyq1765 [2]bool - _, _, _ = yysep1765, yyq1765, yy2arr1765 - const yyr1765 bool = false - yyq1765[0] = x.PodSelector != nil - yyq1765[1] = x.NamespaceSelector != nil - var yynn1765 int - if yyr1765 || yy2arr1765 { + yysep1739 := !z.EncBinary() + yy2arr1739 := z.EncBasicHandle().StructToArray + var yyq1739 [2]bool + _, _, _ = yysep1739, yyq1739, yy2arr1739 + const yyr1739 bool = false + yyq1739[0] = x.PodSelector != nil + yyq1739[1] = x.NamespaceSelector != nil + var yynn1739 int + if yyr1739 || yy2arr1739 { r.EncodeArrayStart(2) } else { - yynn1765 = 0 - for _, b := range yyq1765 { + yynn1739 = 0 + for _, b := range yyq1739 { if b { - yynn1765++ + yynn1739++ } } - r.EncodeMapStart(yynn1765) - yynn1765 = 0 + r.EncodeMapStart(yynn1739) + yynn1739 = 0 } - if yyr1765 || yy2arr1765 { + if yyr1739 || yy2arr1739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1765[0] { + if yyq1739[0] { if x.PodSelector == nil { r.EncodeNil() } else { - yym1767 := z.EncBinary() - _ = yym1767 + yym1741 := z.EncBinary() + _ = yym1741 if false { } else if z.HasExtensions() && z.EncExt(x.PodSelector) { } else { @@ -20841,15 +20542,15 @@ func (x *NetworkPolicyPeer) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1765[0] { + if yyq1739[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PodSelector == nil { r.EncodeNil() } else { - yym1768 := z.EncBinary() - _ = yym1768 + yym1742 := z.EncBinary() + _ = yym1742 if false { } else if z.HasExtensions() && z.EncExt(x.PodSelector) { } else { @@ -20858,14 +20559,14 @@ func (x *NetworkPolicyPeer) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1765 || yy2arr1765 { + if yyr1739 || yy2arr1739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1765[1] { + if yyq1739[1] { if x.NamespaceSelector == nil { r.EncodeNil() } else { - yym1770 := z.EncBinary() - _ = yym1770 + yym1744 := z.EncBinary() + _ = yym1744 if false { } else if z.HasExtensions() && z.EncExt(x.NamespaceSelector) { } else { @@ -20876,15 +20577,15 @@ func (x *NetworkPolicyPeer) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1765[1] { + if yyq1739[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespaceSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NamespaceSelector == nil { r.EncodeNil() } else { - yym1771 := z.EncBinary() - _ = yym1771 + yym1745 := z.EncBinary() + _ = yym1745 if false { } else if z.HasExtensions() && z.EncExt(x.NamespaceSelector) { } else { @@ -20893,7 +20594,7 @@ func (x *NetworkPolicyPeer) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1765 || yy2arr1765 { + if yyr1739 || yy2arr1739 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20906,25 +20607,25 @@ func (x *NetworkPolicyPeer) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1772 := z.DecBinary() - _ = yym1772 + yym1746 := z.DecBinary() + _ = yym1746 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1773 := r.ContainerType() - if yyct1773 == codecSelferValueTypeMap1234 { - yyl1773 := r.ReadMapStart() - if yyl1773 == 0 { + yyct1747 := r.ContainerType() + if yyct1747 == codecSelferValueTypeMap1234 { + yyl1747 := r.ReadMapStart() + if yyl1747 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1773, d) + x.codecDecodeSelfFromMap(yyl1747, d) } - } else if yyct1773 == codecSelferValueTypeArray1234 { - yyl1773 := r.ReadArrayStart() - if yyl1773 == 0 { + } else if yyct1747 == codecSelferValueTypeArray1234 { + yyl1747 := r.ReadArrayStart() + if yyl1747 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1773, d) + x.codecDecodeSelfFromArray(yyl1747, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20936,12 +20637,12 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1774Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1774Slc - var yyhl1774 bool = l >= 0 - for yyj1774 := 0; ; yyj1774++ { - if yyhl1774 { - if yyj1774 >= l { + var yys1748Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1748Slc + var yyhl1748 bool = l >= 0 + for yyj1748 := 0; ; yyj1748++ { + if yyhl1748 { + if yyj1748 >= l { break } } else { @@ -20950,10 +20651,10 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1774Slc = r.DecodeBytes(yys1774Slc, true, true) - yys1774 := string(yys1774Slc) + yys1748Slc = r.DecodeBytes(yys1748Slc, true, true) + yys1748 := string(yys1748Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1774 { + switch yys1748 { case "podSelector": if r.TryDecodeAsNil() { if x.PodSelector != nil { @@ -20963,8 +20664,8 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.PodSelector == nil { x.PodSelector = new(pkg1_unversioned.LabelSelector) } - yym1776 := z.DecBinary() - _ = yym1776 + yym1750 := z.DecBinary() + _ = yym1750 if false { } else if z.HasExtensions() && z.DecExt(x.PodSelector) { } else { @@ -20980,8 +20681,8 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.NamespaceSelector == nil { x.NamespaceSelector = new(pkg1_unversioned.LabelSelector) } - yym1778 := z.DecBinary() - _ = yym1778 + yym1752 := z.DecBinary() + _ = yym1752 if false { } else if z.HasExtensions() && z.DecExt(x.NamespaceSelector) { } else { @@ -20989,9 +20690,9 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } default: - z.DecStructFieldNotFound(-1, yys1774) - } // end switch yys1774 - } // end for yyj1774 + z.DecStructFieldNotFound(-1, yys1748) + } // end switch yys1748 + } // end for yyj1748 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20999,16 +20700,16 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1779 int - var yyb1779 bool - var yyhl1779 bool = l >= 0 - yyj1779++ - if yyhl1779 { - yyb1779 = yyj1779 > l + var yyj1753 int + var yyb1753 bool + var yyhl1753 bool = l >= 0 + yyj1753++ + if yyhl1753 { + yyb1753 = yyj1753 > l } else { - yyb1779 = r.CheckBreak() + yyb1753 = r.CheckBreak() } - if yyb1779 { + if yyb1753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21021,21 +20722,21 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if x.PodSelector == nil { x.PodSelector = new(pkg1_unversioned.LabelSelector) } - yym1781 := z.DecBinary() - _ = yym1781 + yym1755 := z.DecBinary() + _ = yym1755 if false { } else if z.HasExtensions() && z.DecExt(x.PodSelector) { } else { z.DecFallback(x.PodSelector, false) } } - yyj1779++ - if yyhl1779 { - yyb1779 = yyj1779 > l + yyj1753++ + if yyhl1753 { + yyb1753 = yyj1753 > l } else { - yyb1779 = r.CheckBreak() + yyb1753 = r.CheckBreak() } - if yyb1779 { + if yyb1753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21048,8 +20749,8 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if x.NamespaceSelector == nil { x.NamespaceSelector = new(pkg1_unversioned.LabelSelector) } - yym1783 := z.DecBinary() - _ = yym1783 + yym1757 := z.DecBinary() + _ = yym1757 if false { } else if z.HasExtensions() && z.DecExt(x.NamespaceSelector) { } else { @@ -21057,17 +20758,17 @@ func (x *NetworkPolicyPeer) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } } for { - yyj1779++ - if yyhl1779 { - yyb1779 = yyj1779 > l + yyj1753++ + if yyhl1753 { + yyb1753 = yyj1753 > l } else { - yyb1779 = r.CheckBreak() + yyb1753 = r.CheckBreak() } - if yyb1779 { + if yyb1753 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1779-1, "") + z.DecStructFieldNotFound(yyj1753-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21079,37 +20780,37 @@ func (x *NetworkPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1784 := z.EncBinary() - _ = yym1784 + yym1758 := z.EncBinary() + _ = yym1758 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1785 := !z.EncBinary() - yy2arr1785 := z.EncBasicHandle().StructToArray - var yyq1785 [4]bool - _, _, _ = yysep1785, yyq1785, yy2arr1785 - const yyr1785 bool = false - yyq1785[0] = x.Kind != "" - yyq1785[1] = x.APIVersion != "" - yyq1785[2] = true - var yynn1785 int - if yyr1785 || yy2arr1785 { + yysep1759 := !z.EncBinary() + yy2arr1759 := z.EncBasicHandle().StructToArray + var yyq1759 [4]bool + _, _, _ = yysep1759, yyq1759, yy2arr1759 + const yyr1759 bool = false + yyq1759[0] = x.Kind != "" + yyq1759[1] = x.APIVersion != "" + yyq1759[2] = true + var yynn1759 int + if yyr1759 || yy2arr1759 { r.EncodeArrayStart(4) } else { - yynn1785 = 1 - for _, b := range yyq1785 { + yynn1759 = 1 + for _, b := range yyq1759 { if b { - yynn1785++ + yynn1759++ } } - r.EncodeMapStart(yynn1785) - yynn1785 = 0 + r.EncodeMapStart(yynn1759) + yynn1759 = 0 } - if yyr1785 || yy2arr1785 { + if yyr1759 || yy2arr1759 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1785[0] { - yym1787 := z.EncBinary() - _ = yym1787 + if yyq1759[0] { + yym1761 := z.EncBinary() + _ = yym1761 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -21118,23 +20819,23 @@ func (x *NetworkPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1785[0] { + if yyq1759[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1788 := z.EncBinary() - _ = yym1788 + yym1762 := z.EncBinary() + _ = yym1762 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1785 || yy2arr1785 { + if yyr1759 || yy2arr1759 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1785[1] { - yym1790 := z.EncBinary() - _ = yym1790 + if yyq1759[1] { + yym1764 := z.EncBinary() + _ = yym1764 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -21143,54 +20844,54 @@ func (x *NetworkPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1785[1] { + if yyq1759[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1791 := z.EncBinary() - _ = yym1791 + yym1765 := z.EncBinary() + _ = yym1765 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1785 || yy2arr1785 { + if yyr1759 || yy2arr1759 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1785[2] { - yy1793 := &x.ListMeta - yym1794 := z.EncBinary() - _ = yym1794 + if yyq1759[2] { + yy1767 := &x.ListMeta + yym1768 := z.EncBinary() + _ = yym1768 if false { - } else if z.HasExtensions() && z.EncExt(yy1793) { + } else if z.HasExtensions() && z.EncExt(yy1767) { } else { - z.EncFallback(yy1793) + z.EncFallback(yy1767) } } else { r.EncodeNil() } } else { - if yyq1785[2] { + if yyq1759[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1795 := &x.ListMeta - yym1796 := z.EncBinary() - _ = yym1796 + yy1769 := &x.ListMeta + yym1770 := z.EncBinary() + _ = yym1770 if false { - } else if z.HasExtensions() && z.EncExt(yy1795) { + } else if z.HasExtensions() && z.EncExt(yy1769) { } else { - z.EncFallback(yy1795) + z.EncFallback(yy1769) } } } - if yyr1785 || yy2arr1785 { + if yyr1759 || yy2arr1759 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1798 := z.EncBinary() - _ = yym1798 + yym1772 := z.EncBinary() + _ = yym1772 if false { } else { h.encSliceNetworkPolicy(([]NetworkPolicy)(x.Items), e) @@ -21203,15 +20904,15 @@ func (x *NetworkPolicyList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1799 := z.EncBinary() - _ = yym1799 + yym1773 := z.EncBinary() + _ = yym1773 if false { } else { h.encSliceNetworkPolicy(([]NetworkPolicy)(x.Items), e) } } } - if yyr1785 || yy2arr1785 { + if yyr1759 || yy2arr1759 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21224,25 +20925,25 @@ func (x *NetworkPolicyList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1800 := z.DecBinary() - _ = yym1800 + yym1774 := z.DecBinary() + _ = yym1774 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1801 := r.ContainerType() - if yyct1801 == codecSelferValueTypeMap1234 { - yyl1801 := r.ReadMapStart() - if yyl1801 == 0 { + yyct1775 := r.ContainerType() + if yyct1775 == codecSelferValueTypeMap1234 { + yyl1775 := r.ReadMapStart() + if yyl1775 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1801, d) + x.codecDecodeSelfFromMap(yyl1775, d) } - } else if yyct1801 == codecSelferValueTypeArray1234 { - yyl1801 := r.ReadArrayStart() - if yyl1801 == 0 { + } else if yyct1775 == codecSelferValueTypeArray1234 { + yyl1775 := r.ReadArrayStart() + if yyl1775 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1801, d) + x.codecDecodeSelfFromArray(yyl1775, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21254,12 +20955,12 @@ func (x *NetworkPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1802Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1802Slc - var yyhl1802 bool = l >= 0 - for yyj1802 := 0; ; yyj1802++ { - if yyhl1802 { - if yyj1802 >= l { + var yys1776Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1776Slc + var yyhl1776 bool = l >= 0 + for yyj1776 := 0; ; yyj1776++ { + if yyhl1776 { + if yyj1776 >= l { break } } else { @@ -21268,10 +20969,10 @@ func (x *NetworkPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1802Slc = r.DecodeBytes(yys1802Slc, true, true) - yys1802 := string(yys1802Slc) + yys1776Slc = r.DecodeBytes(yys1776Slc, true, true) + yys1776 := string(yys1776Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1802 { + switch yys1776 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -21288,31 +20989,31 @@ func (x *NetworkPolicyList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg1_unversioned.ListMeta{} } else { - yyv1805 := &x.ListMeta - yym1806 := z.DecBinary() - _ = yym1806 + yyv1779 := &x.ListMeta + yym1780 := z.DecBinary() + _ = yym1780 if false { - } else if z.HasExtensions() && z.DecExt(yyv1805) { + } else if z.HasExtensions() && z.DecExt(yyv1779) { } else { - z.DecFallback(yyv1805, false) + z.DecFallback(yyv1779, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1807 := &x.Items - yym1808 := z.DecBinary() - _ = yym1808 + yyv1781 := &x.Items + yym1782 := z.DecBinary() + _ = yym1782 if false { } else { - h.decSliceNetworkPolicy((*[]NetworkPolicy)(yyv1807), d) + h.decSliceNetworkPolicy((*[]NetworkPolicy)(yyv1781), d) } } default: - z.DecStructFieldNotFound(-1, yys1802) - } // end switch yys1802 - } // end for yyj1802 + z.DecStructFieldNotFound(-1, yys1776) + } // end switch yys1776 + } // end for yyj1776 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21320,16 +21021,16 @@ func (x *NetworkPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1809 int - var yyb1809 bool - var yyhl1809 bool = l >= 0 - yyj1809++ - if yyhl1809 { - yyb1809 = yyj1809 > l + var yyj1783 int + var yyb1783 bool + var yyhl1783 bool = l >= 0 + yyj1783++ + if yyhl1783 { + yyb1783 = yyj1783 > l } else { - yyb1809 = r.CheckBreak() + yyb1783 = r.CheckBreak() } - if yyb1809 { + if yyb1783 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21339,13 +21040,13 @@ func (x *NetworkPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj1809++ - if yyhl1809 { - yyb1809 = yyj1809 > l + yyj1783++ + if yyhl1783 { + yyb1783 = yyj1783 > l } else { - yyb1809 = r.CheckBreak() + yyb1783 = r.CheckBreak() } - if yyb1809 { + if yyb1783 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21355,13 +21056,13 @@ func (x *NetworkPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj1809++ - if yyhl1809 { - yyb1809 = yyj1809 > l + yyj1783++ + if yyhl1783 { + yyb1783 = yyj1783 > l } else { - yyb1809 = r.CheckBreak() + yyb1783 = r.CheckBreak() } - if yyb1809 { + if yyb1783 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21369,22 +21070,22 @@ func (x *NetworkPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg1_unversioned.ListMeta{} } else { - yyv1812 := &x.ListMeta - yym1813 := z.DecBinary() - _ = yym1813 + yyv1786 := &x.ListMeta + yym1787 := z.DecBinary() + _ = yym1787 if false { - } else if z.HasExtensions() && z.DecExt(yyv1812) { + } else if z.HasExtensions() && z.DecExt(yyv1786) { } else { - z.DecFallback(yyv1812, false) + z.DecFallback(yyv1786, false) } } - yyj1809++ - if yyhl1809 { - yyb1809 = yyj1809 > l + yyj1783++ + if yyhl1783 { + yyb1783 = yyj1783 > l } else { - yyb1809 = r.CheckBreak() + yyb1783 = r.CheckBreak() } - if yyb1809 { + if yyb1783 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21392,26 +21093,26 @@ func (x *NetworkPolicyList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1814 := &x.Items - yym1815 := z.DecBinary() - _ = yym1815 + yyv1788 := &x.Items + yym1789 := z.DecBinary() + _ = yym1789 if false { } else { - h.decSliceNetworkPolicy((*[]NetworkPolicy)(yyv1814), d) + h.decSliceNetworkPolicy((*[]NetworkPolicy)(yyv1788), d) } } for { - yyj1809++ - if yyhl1809 { - yyb1809 = yyj1809 > l + yyj1783++ + if yyhl1783 { + yyb1783 = yyj1783 > l } else { - yyb1809 = r.CheckBreak() + yyb1783 = r.CheckBreak() } - if yyb1809 { + if yyb1783 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1809-1, "") + z.DecStructFieldNotFound(yyj1783-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21421,10 +21122,10 @@ func (x codecSelfer1234) encSliceCustomMetricTarget(v []CustomMetricTarget, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1816 := range v { + for _, yyv1790 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1817 := &yyv1816 - yy1817.CodecEncodeSelf(e) + yy1791 := &yyv1790 + yy1791.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21434,83 +21135,83 @@ func (x codecSelfer1234) decSliceCustomMetricTarget(v *[]CustomMetricTarget, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1818 := *v - yyh1818, yyl1818 := z.DecSliceHelperStart() - var yyc1818 bool - if yyl1818 == 0 { - if yyv1818 == nil { - yyv1818 = []CustomMetricTarget{} - yyc1818 = true - } else if len(yyv1818) != 0 { - yyv1818 = yyv1818[:0] - yyc1818 = true + yyv1792 := *v + yyh1792, yyl1792 := z.DecSliceHelperStart() + var yyc1792 bool + if yyl1792 == 0 { + if yyv1792 == nil { + yyv1792 = []CustomMetricTarget{} + yyc1792 = true + } else if len(yyv1792) != 0 { + yyv1792 = yyv1792[:0] + yyc1792 = true } - } else if yyl1818 > 0 { - var yyrr1818, yyrl1818 int - var yyrt1818 bool - if yyl1818 > cap(yyv1818) { + } else if yyl1792 > 0 { + var yyrr1792, yyrl1792 int + var yyrt1792 bool + if yyl1792 > cap(yyv1792) { - yyrg1818 := len(yyv1818) > 0 - yyv21818 := yyv1818 - yyrl1818, yyrt1818 = z.DecInferLen(yyl1818, z.DecBasicHandle().MaxInitLen, 72) - if yyrt1818 { - if yyrl1818 <= cap(yyv1818) { - yyv1818 = yyv1818[:yyrl1818] + yyrg1792 := len(yyv1792) > 0 + yyv21792 := yyv1792 + yyrl1792, yyrt1792 = z.DecInferLen(yyl1792, z.DecBasicHandle().MaxInitLen, 72) + if yyrt1792 { + if yyrl1792 <= cap(yyv1792) { + yyv1792 = yyv1792[:yyrl1792] } else { - yyv1818 = make([]CustomMetricTarget, yyrl1818) + yyv1792 = make([]CustomMetricTarget, yyrl1792) } } else { - yyv1818 = make([]CustomMetricTarget, yyrl1818) + yyv1792 = make([]CustomMetricTarget, yyrl1792) } - yyc1818 = true - yyrr1818 = len(yyv1818) - if yyrg1818 { - copy(yyv1818, yyv21818) + yyc1792 = true + yyrr1792 = len(yyv1792) + if yyrg1792 { + copy(yyv1792, yyv21792) } - } else if yyl1818 != len(yyv1818) { - yyv1818 = yyv1818[:yyl1818] - yyc1818 = true + } else if yyl1792 != len(yyv1792) { + yyv1792 = yyv1792[:yyl1792] + yyc1792 = true } - yyj1818 := 0 - for ; yyj1818 < yyrr1818; yyj1818++ { - yyh1818.ElemContainerState(yyj1818) + yyj1792 := 0 + for ; yyj1792 < yyrr1792; yyj1792++ { + yyh1792.ElemContainerState(yyj1792) if r.TryDecodeAsNil() { - yyv1818[yyj1818] = CustomMetricTarget{} + yyv1792[yyj1792] = CustomMetricTarget{} } else { - yyv1819 := &yyv1818[yyj1818] - yyv1819.CodecDecodeSelf(d) + yyv1793 := &yyv1792[yyj1792] + yyv1793.CodecDecodeSelf(d) } } - if yyrt1818 { - for ; yyj1818 < yyl1818; yyj1818++ { - yyv1818 = append(yyv1818, CustomMetricTarget{}) - yyh1818.ElemContainerState(yyj1818) + if yyrt1792 { + for ; yyj1792 < yyl1792; yyj1792++ { + yyv1792 = append(yyv1792, CustomMetricTarget{}) + yyh1792.ElemContainerState(yyj1792) if r.TryDecodeAsNil() { - yyv1818[yyj1818] = CustomMetricTarget{} + yyv1792[yyj1792] = CustomMetricTarget{} } else { - yyv1820 := &yyv1818[yyj1818] - yyv1820.CodecDecodeSelf(d) + yyv1794 := &yyv1792[yyj1792] + yyv1794.CodecDecodeSelf(d) } } } } else { - yyj1818 := 0 - for ; !r.CheckBreak(); yyj1818++ { + yyj1792 := 0 + for ; !r.CheckBreak(); yyj1792++ { - if yyj1818 >= len(yyv1818) { - yyv1818 = append(yyv1818, CustomMetricTarget{}) // var yyz1818 CustomMetricTarget - yyc1818 = true + if yyj1792 >= len(yyv1792) { + yyv1792 = append(yyv1792, CustomMetricTarget{}) // var yyz1792 CustomMetricTarget + yyc1792 = true } - yyh1818.ElemContainerState(yyj1818) - if yyj1818 < len(yyv1818) { + yyh1792.ElemContainerState(yyj1792) + if yyj1792 < len(yyv1792) { if r.TryDecodeAsNil() { - yyv1818[yyj1818] = CustomMetricTarget{} + yyv1792[yyj1792] = CustomMetricTarget{} } else { - yyv1821 := &yyv1818[yyj1818] - yyv1821.CodecDecodeSelf(d) + yyv1795 := &yyv1792[yyj1792] + yyv1795.CodecDecodeSelf(d) } } else { @@ -21518,17 +21219,17 @@ func (x codecSelfer1234) decSliceCustomMetricTarget(v *[]CustomMetricTarget, d * } } - if yyj1818 < len(yyv1818) { - yyv1818 = yyv1818[:yyj1818] - yyc1818 = true - } else if yyj1818 == 0 && yyv1818 == nil { - yyv1818 = []CustomMetricTarget{} - yyc1818 = true + if yyj1792 < len(yyv1792) { + yyv1792 = yyv1792[:yyj1792] + yyc1792 = true + } else if yyj1792 == 0 && yyv1792 == nil { + yyv1792 = []CustomMetricTarget{} + yyc1792 = true } } - yyh1818.End() - if yyc1818 { - *v = yyv1818 + yyh1792.End() + if yyc1792 { + *v = yyv1792 } } @@ -21537,10 +21238,10 @@ func (x codecSelfer1234) encSliceCustomMetricCurrentStatus(v []CustomMetricCurre z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1822 := range v { + for _, yyv1796 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1823 := &yyv1822 - yy1823.CodecEncodeSelf(e) + yy1797 := &yyv1796 + yy1797.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21550,83 +21251,83 @@ func (x codecSelfer1234) decSliceCustomMetricCurrentStatus(v *[]CustomMetricCurr z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1824 := *v - yyh1824, yyl1824 := z.DecSliceHelperStart() - var yyc1824 bool - if yyl1824 == 0 { - if yyv1824 == nil { - yyv1824 = []CustomMetricCurrentStatus{} - yyc1824 = true - } else if len(yyv1824) != 0 { - yyv1824 = yyv1824[:0] - yyc1824 = true + yyv1798 := *v + yyh1798, yyl1798 := z.DecSliceHelperStart() + var yyc1798 bool + if yyl1798 == 0 { + if yyv1798 == nil { + yyv1798 = []CustomMetricCurrentStatus{} + yyc1798 = true + } else if len(yyv1798) != 0 { + yyv1798 = yyv1798[:0] + yyc1798 = true } - } else if yyl1824 > 0 { - var yyrr1824, yyrl1824 int - var yyrt1824 bool - if yyl1824 > cap(yyv1824) { + } else if yyl1798 > 0 { + var yyrr1798, yyrl1798 int + var yyrt1798 bool + if yyl1798 > cap(yyv1798) { - yyrg1824 := len(yyv1824) > 0 - yyv21824 := yyv1824 - yyrl1824, yyrt1824 = z.DecInferLen(yyl1824, z.DecBasicHandle().MaxInitLen, 72) - if yyrt1824 { - if yyrl1824 <= cap(yyv1824) { - yyv1824 = yyv1824[:yyrl1824] + yyrg1798 := len(yyv1798) > 0 + yyv21798 := yyv1798 + yyrl1798, yyrt1798 = z.DecInferLen(yyl1798, z.DecBasicHandle().MaxInitLen, 72) + if yyrt1798 { + if yyrl1798 <= cap(yyv1798) { + yyv1798 = yyv1798[:yyrl1798] } else { - yyv1824 = make([]CustomMetricCurrentStatus, yyrl1824) + yyv1798 = make([]CustomMetricCurrentStatus, yyrl1798) } } else { - yyv1824 = make([]CustomMetricCurrentStatus, yyrl1824) + yyv1798 = make([]CustomMetricCurrentStatus, yyrl1798) } - yyc1824 = true - yyrr1824 = len(yyv1824) - if yyrg1824 { - copy(yyv1824, yyv21824) + yyc1798 = true + yyrr1798 = len(yyv1798) + if yyrg1798 { + copy(yyv1798, yyv21798) } - } else if yyl1824 != len(yyv1824) { - yyv1824 = yyv1824[:yyl1824] - yyc1824 = true + } else if yyl1798 != len(yyv1798) { + yyv1798 = yyv1798[:yyl1798] + yyc1798 = true } - yyj1824 := 0 - for ; yyj1824 < yyrr1824; yyj1824++ { - yyh1824.ElemContainerState(yyj1824) + yyj1798 := 0 + for ; yyj1798 < yyrr1798; yyj1798++ { + yyh1798.ElemContainerState(yyj1798) if r.TryDecodeAsNil() { - yyv1824[yyj1824] = CustomMetricCurrentStatus{} + yyv1798[yyj1798] = CustomMetricCurrentStatus{} } else { - yyv1825 := &yyv1824[yyj1824] - yyv1825.CodecDecodeSelf(d) + yyv1799 := &yyv1798[yyj1798] + yyv1799.CodecDecodeSelf(d) } } - if yyrt1824 { - for ; yyj1824 < yyl1824; yyj1824++ { - yyv1824 = append(yyv1824, CustomMetricCurrentStatus{}) - yyh1824.ElemContainerState(yyj1824) + if yyrt1798 { + for ; yyj1798 < yyl1798; yyj1798++ { + yyv1798 = append(yyv1798, CustomMetricCurrentStatus{}) + yyh1798.ElemContainerState(yyj1798) if r.TryDecodeAsNil() { - yyv1824[yyj1824] = CustomMetricCurrentStatus{} + yyv1798[yyj1798] = CustomMetricCurrentStatus{} } else { - yyv1826 := &yyv1824[yyj1824] - yyv1826.CodecDecodeSelf(d) + yyv1800 := &yyv1798[yyj1798] + yyv1800.CodecDecodeSelf(d) } } } } else { - yyj1824 := 0 - for ; !r.CheckBreak(); yyj1824++ { + yyj1798 := 0 + for ; !r.CheckBreak(); yyj1798++ { - if yyj1824 >= len(yyv1824) { - yyv1824 = append(yyv1824, CustomMetricCurrentStatus{}) // var yyz1824 CustomMetricCurrentStatus - yyc1824 = true + if yyj1798 >= len(yyv1798) { + yyv1798 = append(yyv1798, CustomMetricCurrentStatus{}) // var yyz1798 CustomMetricCurrentStatus + yyc1798 = true } - yyh1824.ElemContainerState(yyj1824) - if yyj1824 < len(yyv1824) { + yyh1798.ElemContainerState(yyj1798) + if yyj1798 < len(yyv1798) { if r.TryDecodeAsNil() { - yyv1824[yyj1824] = CustomMetricCurrentStatus{} + yyv1798[yyj1798] = CustomMetricCurrentStatus{} } else { - yyv1827 := &yyv1824[yyj1824] - yyv1827.CodecDecodeSelf(d) + yyv1801 := &yyv1798[yyj1798] + yyv1801.CodecDecodeSelf(d) } } else { @@ -21634,17 +21335,17 @@ func (x codecSelfer1234) decSliceCustomMetricCurrentStatus(v *[]CustomMetricCurr } } - if yyj1824 < len(yyv1824) { - yyv1824 = yyv1824[:yyj1824] - yyc1824 = true - } else if yyj1824 == 0 && yyv1824 == nil { - yyv1824 = []CustomMetricCurrentStatus{} - yyc1824 = true + if yyj1798 < len(yyv1798) { + yyv1798 = yyv1798[:yyj1798] + yyc1798 = true + } else if yyj1798 == 0 && yyv1798 == nil { + yyv1798 = []CustomMetricCurrentStatus{} + yyc1798 = true } } - yyh1824.End() - if yyc1824 { - *v = yyv1824 + yyh1798.End() + if yyc1798 { + *v = yyv1798 } } @@ -21653,10 +21354,10 @@ func (x codecSelfer1234) encSliceHorizontalPodAutoscaler(v []HorizontalPodAutosc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1828 := range v { + for _, yyv1802 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1829 := &yyv1828 - yy1829.CodecEncodeSelf(e) + yy1803 := &yyv1802 + yy1803.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21666,83 +21367,83 @@ func (x codecSelfer1234) decSliceHorizontalPodAutoscaler(v *[]HorizontalPodAutos z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1830 := *v - yyh1830, yyl1830 := z.DecSliceHelperStart() - var yyc1830 bool - if yyl1830 == 0 { - if yyv1830 == nil { - yyv1830 = []HorizontalPodAutoscaler{} - yyc1830 = true - } else if len(yyv1830) != 0 { - yyv1830 = yyv1830[:0] - yyc1830 = true + yyv1804 := *v + yyh1804, yyl1804 := z.DecSliceHelperStart() + var yyc1804 bool + if yyl1804 == 0 { + if yyv1804 == nil { + yyv1804 = []HorizontalPodAutoscaler{} + yyc1804 = true + } else if len(yyv1804) != 0 { + yyv1804 = yyv1804[:0] + yyc1804 = true } - } else if yyl1830 > 0 { - var yyrr1830, yyrl1830 int - var yyrt1830 bool - if yyl1830 > cap(yyv1830) { + } else if yyl1804 > 0 { + var yyrr1804, yyrl1804 int + var yyrt1804 bool + if yyl1804 > cap(yyv1804) { - yyrg1830 := len(yyv1830) > 0 - yyv21830 := yyv1830 - yyrl1830, yyrt1830 = z.DecInferLen(yyl1830, z.DecBasicHandle().MaxInitLen, 376) - if yyrt1830 { - if yyrl1830 <= cap(yyv1830) { - yyv1830 = yyv1830[:yyrl1830] + yyrg1804 := len(yyv1804) > 0 + yyv21804 := yyv1804 + yyrl1804, yyrt1804 = z.DecInferLen(yyl1804, z.DecBasicHandle().MaxInitLen, 376) + if yyrt1804 { + if yyrl1804 <= cap(yyv1804) { + yyv1804 = yyv1804[:yyrl1804] } else { - yyv1830 = make([]HorizontalPodAutoscaler, yyrl1830) + yyv1804 = make([]HorizontalPodAutoscaler, yyrl1804) } } else { - yyv1830 = make([]HorizontalPodAutoscaler, yyrl1830) + yyv1804 = make([]HorizontalPodAutoscaler, yyrl1804) } - yyc1830 = true - yyrr1830 = len(yyv1830) - if yyrg1830 { - copy(yyv1830, yyv21830) + yyc1804 = true + yyrr1804 = len(yyv1804) + if yyrg1804 { + copy(yyv1804, yyv21804) } - } else if yyl1830 != len(yyv1830) { - yyv1830 = yyv1830[:yyl1830] - yyc1830 = true + } else if yyl1804 != len(yyv1804) { + yyv1804 = yyv1804[:yyl1804] + yyc1804 = true } - yyj1830 := 0 - for ; yyj1830 < yyrr1830; yyj1830++ { - yyh1830.ElemContainerState(yyj1830) + yyj1804 := 0 + for ; yyj1804 < yyrr1804; yyj1804++ { + yyh1804.ElemContainerState(yyj1804) if r.TryDecodeAsNil() { - yyv1830[yyj1830] = HorizontalPodAutoscaler{} + yyv1804[yyj1804] = HorizontalPodAutoscaler{} } else { - yyv1831 := &yyv1830[yyj1830] - yyv1831.CodecDecodeSelf(d) + yyv1805 := &yyv1804[yyj1804] + yyv1805.CodecDecodeSelf(d) } } - if yyrt1830 { - for ; yyj1830 < yyl1830; yyj1830++ { - yyv1830 = append(yyv1830, HorizontalPodAutoscaler{}) - yyh1830.ElemContainerState(yyj1830) + if yyrt1804 { + for ; yyj1804 < yyl1804; yyj1804++ { + yyv1804 = append(yyv1804, HorizontalPodAutoscaler{}) + yyh1804.ElemContainerState(yyj1804) if r.TryDecodeAsNil() { - yyv1830[yyj1830] = HorizontalPodAutoscaler{} + yyv1804[yyj1804] = HorizontalPodAutoscaler{} } else { - yyv1832 := &yyv1830[yyj1830] - yyv1832.CodecDecodeSelf(d) + yyv1806 := &yyv1804[yyj1804] + yyv1806.CodecDecodeSelf(d) } } } } else { - yyj1830 := 0 - for ; !r.CheckBreak(); yyj1830++ { + yyj1804 := 0 + for ; !r.CheckBreak(); yyj1804++ { - if yyj1830 >= len(yyv1830) { - yyv1830 = append(yyv1830, HorizontalPodAutoscaler{}) // var yyz1830 HorizontalPodAutoscaler - yyc1830 = true + if yyj1804 >= len(yyv1804) { + yyv1804 = append(yyv1804, HorizontalPodAutoscaler{}) // var yyz1804 HorizontalPodAutoscaler + yyc1804 = true } - yyh1830.ElemContainerState(yyj1830) - if yyj1830 < len(yyv1830) { + yyh1804.ElemContainerState(yyj1804) + if yyj1804 < len(yyv1804) { if r.TryDecodeAsNil() { - yyv1830[yyj1830] = HorizontalPodAutoscaler{} + yyv1804[yyj1804] = HorizontalPodAutoscaler{} } else { - yyv1833 := &yyv1830[yyj1830] - yyv1833.CodecDecodeSelf(d) + yyv1807 := &yyv1804[yyj1804] + yyv1807.CodecDecodeSelf(d) } } else { @@ -21750,17 +21451,17 @@ func (x codecSelfer1234) decSliceHorizontalPodAutoscaler(v *[]HorizontalPodAutos } } - if yyj1830 < len(yyv1830) { - yyv1830 = yyv1830[:yyj1830] - yyc1830 = true - } else if yyj1830 == 0 && yyv1830 == nil { - yyv1830 = []HorizontalPodAutoscaler{} - yyc1830 = true + if yyj1804 < len(yyv1804) { + yyv1804 = yyv1804[:yyj1804] + yyc1804 = true + } else if yyj1804 == 0 && yyv1804 == nil { + yyv1804 = []HorizontalPodAutoscaler{} + yyc1804 = true } } - yyh1830.End() - if yyc1830 { - *v = yyv1830 + yyh1804.End() + if yyc1804 { + *v = yyv1804 } } @@ -21769,10 +21470,10 @@ func (x codecSelfer1234) encSliceAPIVersion(v []APIVersion, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1834 := range v { + for _, yyv1808 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1835 := &yyv1834 - yy1835.CodecEncodeSelf(e) + yy1809 := &yyv1808 + yy1809.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21782,83 +21483,83 @@ func (x codecSelfer1234) decSliceAPIVersion(v *[]APIVersion, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1836 := *v - yyh1836, yyl1836 := z.DecSliceHelperStart() - var yyc1836 bool - if yyl1836 == 0 { - if yyv1836 == nil { - yyv1836 = []APIVersion{} - yyc1836 = true - } else if len(yyv1836) != 0 { - yyv1836 = yyv1836[:0] - yyc1836 = true + yyv1810 := *v + yyh1810, yyl1810 := z.DecSliceHelperStart() + var yyc1810 bool + if yyl1810 == 0 { + if yyv1810 == nil { + yyv1810 = []APIVersion{} + yyc1810 = true + } else if len(yyv1810) != 0 { + yyv1810 = yyv1810[:0] + yyc1810 = true } - } else if yyl1836 > 0 { - var yyrr1836, yyrl1836 int - var yyrt1836 bool - if yyl1836 > cap(yyv1836) { + } else if yyl1810 > 0 { + var yyrr1810, yyrl1810 int + var yyrt1810 bool + if yyl1810 > cap(yyv1810) { - yyrg1836 := len(yyv1836) > 0 - yyv21836 := yyv1836 - yyrl1836, yyrt1836 = z.DecInferLen(yyl1836, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1836 { - if yyrl1836 <= cap(yyv1836) { - yyv1836 = yyv1836[:yyrl1836] + yyrg1810 := len(yyv1810) > 0 + yyv21810 := yyv1810 + yyrl1810, yyrt1810 = z.DecInferLen(yyl1810, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1810 { + if yyrl1810 <= cap(yyv1810) { + yyv1810 = yyv1810[:yyrl1810] } else { - yyv1836 = make([]APIVersion, yyrl1836) + yyv1810 = make([]APIVersion, yyrl1810) } } else { - yyv1836 = make([]APIVersion, yyrl1836) + yyv1810 = make([]APIVersion, yyrl1810) } - yyc1836 = true - yyrr1836 = len(yyv1836) - if yyrg1836 { - copy(yyv1836, yyv21836) + yyc1810 = true + yyrr1810 = len(yyv1810) + if yyrg1810 { + copy(yyv1810, yyv21810) } - } else if yyl1836 != len(yyv1836) { - yyv1836 = yyv1836[:yyl1836] - yyc1836 = true + } else if yyl1810 != len(yyv1810) { + yyv1810 = yyv1810[:yyl1810] + yyc1810 = true } - yyj1836 := 0 - for ; yyj1836 < yyrr1836; yyj1836++ { - yyh1836.ElemContainerState(yyj1836) + yyj1810 := 0 + for ; yyj1810 < yyrr1810; yyj1810++ { + yyh1810.ElemContainerState(yyj1810) if r.TryDecodeAsNil() { - yyv1836[yyj1836] = APIVersion{} + yyv1810[yyj1810] = APIVersion{} } else { - yyv1837 := &yyv1836[yyj1836] - yyv1837.CodecDecodeSelf(d) + yyv1811 := &yyv1810[yyj1810] + yyv1811.CodecDecodeSelf(d) } } - if yyrt1836 { - for ; yyj1836 < yyl1836; yyj1836++ { - yyv1836 = append(yyv1836, APIVersion{}) - yyh1836.ElemContainerState(yyj1836) + if yyrt1810 { + for ; yyj1810 < yyl1810; yyj1810++ { + yyv1810 = append(yyv1810, APIVersion{}) + yyh1810.ElemContainerState(yyj1810) if r.TryDecodeAsNil() { - yyv1836[yyj1836] = APIVersion{} + yyv1810[yyj1810] = APIVersion{} } else { - yyv1838 := &yyv1836[yyj1836] - yyv1838.CodecDecodeSelf(d) + yyv1812 := &yyv1810[yyj1810] + yyv1812.CodecDecodeSelf(d) } } } } else { - yyj1836 := 0 - for ; !r.CheckBreak(); yyj1836++ { + yyj1810 := 0 + for ; !r.CheckBreak(); yyj1810++ { - if yyj1836 >= len(yyv1836) { - yyv1836 = append(yyv1836, APIVersion{}) // var yyz1836 APIVersion - yyc1836 = true + if yyj1810 >= len(yyv1810) { + yyv1810 = append(yyv1810, APIVersion{}) // var yyz1810 APIVersion + yyc1810 = true } - yyh1836.ElemContainerState(yyj1836) - if yyj1836 < len(yyv1836) { + yyh1810.ElemContainerState(yyj1810) + if yyj1810 < len(yyv1810) { if r.TryDecodeAsNil() { - yyv1836[yyj1836] = APIVersion{} + yyv1810[yyj1810] = APIVersion{} } else { - yyv1839 := &yyv1836[yyj1836] - yyv1839.CodecDecodeSelf(d) + yyv1813 := &yyv1810[yyj1810] + yyv1813.CodecDecodeSelf(d) } } else { @@ -21866,17 +21567,17 @@ func (x codecSelfer1234) decSliceAPIVersion(v *[]APIVersion, d *codec1978.Decode } } - if yyj1836 < len(yyv1836) { - yyv1836 = yyv1836[:yyj1836] - yyc1836 = true - } else if yyj1836 == 0 && yyv1836 == nil { - yyv1836 = []APIVersion{} - yyc1836 = true + if yyj1810 < len(yyv1810) { + yyv1810 = yyv1810[:yyj1810] + yyc1810 = true + } else if yyj1810 == 0 && yyv1810 == nil { + yyv1810 = []APIVersion{} + yyc1810 = true } } - yyh1836.End() - if yyc1836 { - *v = yyv1836 + yyh1810.End() + if yyc1810 { + *v = yyv1810 } } @@ -21885,10 +21586,10 @@ func (x codecSelfer1234) encSliceThirdPartyResource(v []ThirdPartyResource, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1840 := range v { + for _, yyv1814 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1841 := &yyv1840 - yy1841.CodecEncodeSelf(e) + yy1815 := &yyv1814 + yy1815.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21898,83 +21599,83 @@ func (x codecSelfer1234) decSliceThirdPartyResource(v *[]ThirdPartyResource, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1842 := *v - yyh1842, yyl1842 := z.DecSliceHelperStart() - var yyc1842 bool - if yyl1842 == 0 { - if yyv1842 == nil { - yyv1842 = []ThirdPartyResource{} - yyc1842 = true - } else if len(yyv1842) != 0 { - yyv1842 = yyv1842[:0] - yyc1842 = true + yyv1816 := *v + yyh1816, yyl1816 := z.DecSliceHelperStart() + var yyc1816 bool + if yyl1816 == 0 { + if yyv1816 == nil { + yyv1816 = []ThirdPartyResource{} + yyc1816 = true + } else if len(yyv1816) != 0 { + yyv1816 = yyv1816[:0] + yyc1816 = true } - } else if yyl1842 > 0 { - var yyrr1842, yyrl1842 int - var yyrt1842 bool - if yyl1842 > cap(yyv1842) { + } else if yyl1816 > 0 { + var yyrr1816, yyrl1816 int + var yyrt1816 bool + if yyl1816 > cap(yyv1816) { - yyrg1842 := len(yyv1842) > 0 - yyv21842 := yyv1842 - yyrl1842, yyrt1842 = z.DecInferLen(yyl1842, z.DecBasicHandle().MaxInitLen, 296) - if yyrt1842 { - if yyrl1842 <= cap(yyv1842) { - yyv1842 = yyv1842[:yyrl1842] + yyrg1816 := len(yyv1816) > 0 + yyv21816 := yyv1816 + yyrl1816, yyrt1816 = z.DecInferLen(yyl1816, z.DecBasicHandle().MaxInitLen, 296) + if yyrt1816 { + if yyrl1816 <= cap(yyv1816) { + yyv1816 = yyv1816[:yyrl1816] } else { - yyv1842 = make([]ThirdPartyResource, yyrl1842) + yyv1816 = make([]ThirdPartyResource, yyrl1816) } } else { - yyv1842 = make([]ThirdPartyResource, yyrl1842) + yyv1816 = make([]ThirdPartyResource, yyrl1816) } - yyc1842 = true - yyrr1842 = len(yyv1842) - if yyrg1842 { - copy(yyv1842, yyv21842) + yyc1816 = true + yyrr1816 = len(yyv1816) + if yyrg1816 { + copy(yyv1816, yyv21816) } - } else if yyl1842 != len(yyv1842) { - yyv1842 = yyv1842[:yyl1842] - yyc1842 = true + } else if yyl1816 != len(yyv1816) { + yyv1816 = yyv1816[:yyl1816] + yyc1816 = true } - yyj1842 := 0 - for ; yyj1842 < yyrr1842; yyj1842++ { - yyh1842.ElemContainerState(yyj1842) + yyj1816 := 0 + for ; yyj1816 < yyrr1816; yyj1816++ { + yyh1816.ElemContainerState(yyj1816) if r.TryDecodeAsNil() { - yyv1842[yyj1842] = ThirdPartyResource{} + yyv1816[yyj1816] = ThirdPartyResource{} } else { - yyv1843 := &yyv1842[yyj1842] - yyv1843.CodecDecodeSelf(d) + yyv1817 := &yyv1816[yyj1816] + yyv1817.CodecDecodeSelf(d) } } - if yyrt1842 { - for ; yyj1842 < yyl1842; yyj1842++ { - yyv1842 = append(yyv1842, ThirdPartyResource{}) - yyh1842.ElemContainerState(yyj1842) + if yyrt1816 { + for ; yyj1816 < yyl1816; yyj1816++ { + yyv1816 = append(yyv1816, ThirdPartyResource{}) + yyh1816.ElemContainerState(yyj1816) if r.TryDecodeAsNil() { - yyv1842[yyj1842] = ThirdPartyResource{} + yyv1816[yyj1816] = ThirdPartyResource{} } else { - yyv1844 := &yyv1842[yyj1842] - yyv1844.CodecDecodeSelf(d) + yyv1818 := &yyv1816[yyj1816] + yyv1818.CodecDecodeSelf(d) } } } } else { - yyj1842 := 0 - for ; !r.CheckBreak(); yyj1842++ { + yyj1816 := 0 + for ; !r.CheckBreak(); yyj1816++ { - if yyj1842 >= len(yyv1842) { - yyv1842 = append(yyv1842, ThirdPartyResource{}) // var yyz1842 ThirdPartyResource - yyc1842 = true + if yyj1816 >= len(yyv1816) { + yyv1816 = append(yyv1816, ThirdPartyResource{}) // var yyz1816 ThirdPartyResource + yyc1816 = true } - yyh1842.ElemContainerState(yyj1842) - if yyj1842 < len(yyv1842) { + yyh1816.ElemContainerState(yyj1816) + if yyj1816 < len(yyv1816) { if r.TryDecodeAsNil() { - yyv1842[yyj1842] = ThirdPartyResource{} + yyv1816[yyj1816] = ThirdPartyResource{} } else { - yyv1845 := &yyv1842[yyj1842] - yyv1845.CodecDecodeSelf(d) + yyv1819 := &yyv1816[yyj1816] + yyv1819.CodecDecodeSelf(d) } } else { @@ -21982,17 +21683,17 @@ func (x codecSelfer1234) decSliceThirdPartyResource(v *[]ThirdPartyResource, d * } } - if yyj1842 < len(yyv1842) { - yyv1842 = yyv1842[:yyj1842] - yyc1842 = true - } else if yyj1842 == 0 && yyv1842 == nil { - yyv1842 = []ThirdPartyResource{} - yyc1842 = true + if yyj1816 < len(yyv1816) { + yyv1816 = yyv1816[:yyj1816] + yyc1816 = true + } else if yyj1816 == 0 && yyv1816 == nil { + yyv1816 = []ThirdPartyResource{} + yyc1816 = true } } - yyh1842.End() - if yyc1842 { - *v = yyv1842 + yyh1816.End() + if yyc1816 { + *v = yyv1816 } } @@ -22001,10 +21702,10 @@ func (x codecSelfer1234) encSliceDeploymentCondition(v []DeploymentCondition, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1846 := range v { + for _, yyv1820 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1847 := &yyv1846 - yy1847.CodecEncodeSelf(e) + yy1821 := &yyv1820 + yy1821.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22014,83 +21715,83 @@ func (x codecSelfer1234) decSliceDeploymentCondition(v *[]DeploymentCondition, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1848 := *v - yyh1848, yyl1848 := z.DecSliceHelperStart() - var yyc1848 bool - if yyl1848 == 0 { - if yyv1848 == nil { - yyv1848 = []DeploymentCondition{} - yyc1848 = true - } else if len(yyv1848) != 0 { - yyv1848 = yyv1848[:0] - yyc1848 = true + yyv1822 := *v + yyh1822, yyl1822 := z.DecSliceHelperStart() + var yyc1822 bool + if yyl1822 == 0 { + if yyv1822 == nil { + yyv1822 = []DeploymentCondition{} + yyc1822 = true + } else if len(yyv1822) != 0 { + yyv1822 = yyv1822[:0] + yyc1822 = true } - } else if yyl1848 > 0 { - var yyrr1848, yyrl1848 int - var yyrt1848 bool - if yyl1848 > cap(yyv1848) { + } else if yyl1822 > 0 { + var yyrr1822, yyrl1822 int + var yyrt1822 bool + if yyl1822 > cap(yyv1822) { - yyrg1848 := len(yyv1848) > 0 - yyv21848 := yyv1848 - yyrl1848, yyrt1848 = z.DecInferLen(yyl1848, z.DecBasicHandle().MaxInitLen, 112) - if yyrt1848 { - if yyrl1848 <= cap(yyv1848) { - yyv1848 = yyv1848[:yyrl1848] + yyrg1822 := len(yyv1822) > 0 + yyv21822 := yyv1822 + yyrl1822, yyrt1822 = z.DecInferLen(yyl1822, z.DecBasicHandle().MaxInitLen, 112) + if yyrt1822 { + if yyrl1822 <= cap(yyv1822) { + yyv1822 = yyv1822[:yyrl1822] } else { - yyv1848 = make([]DeploymentCondition, yyrl1848) + yyv1822 = make([]DeploymentCondition, yyrl1822) } } else { - yyv1848 = make([]DeploymentCondition, yyrl1848) + yyv1822 = make([]DeploymentCondition, yyrl1822) } - yyc1848 = true - yyrr1848 = len(yyv1848) - if yyrg1848 { - copy(yyv1848, yyv21848) + yyc1822 = true + yyrr1822 = len(yyv1822) + if yyrg1822 { + copy(yyv1822, yyv21822) } - } else if yyl1848 != len(yyv1848) { - yyv1848 = yyv1848[:yyl1848] - yyc1848 = true + } else if yyl1822 != len(yyv1822) { + yyv1822 = yyv1822[:yyl1822] + yyc1822 = true } - yyj1848 := 0 - for ; yyj1848 < yyrr1848; yyj1848++ { - yyh1848.ElemContainerState(yyj1848) + yyj1822 := 0 + for ; yyj1822 < yyrr1822; yyj1822++ { + yyh1822.ElemContainerState(yyj1822) if r.TryDecodeAsNil() { - yyv1848[yyj1848] = DeploymentCondition{} + yyv1822[yyj1822] = DeploymentCondition{} } else { - yyv1849 := &yyv1848[yyj1848] - yyv1849.CodecDecodeSelf(d) + yyv1823 := &yyv1822[yyj1822] + yyv1823.CodecDecodeSelf(d) } } - if yyrt1848 { - for ; yyj1848 < yyl1848; yyj1848++ { - yyv1848 = append(yyv1848, DeploymentCondition{}) - yyh1848.ElemContainerState(yyj1848) + if yyrt1822 { + for ; yyj1822 < yyl1822; yyj1822++ { + yyv1822 = append(yyv1822, DeploymentCondition{}) + yyh1822.ElemContainerState(yyj1822) if r.TryDecodeAsNil() { - yyv1848[yyj1848] = DeploymentCondition{} + yyv1822[yyj1822] = DeploymentCondition{} } else { - yyv1850 := &yyv1848[yyj1848] - yyv1850.CodecDecodeSelf(d) + yyv1824 := &yyv1822[yyj1822] + yyv1824.CodecDecodeSelf(d) } } } } else { - yyj1848 := 0 - for ; !r.CheckBreak(); yyj1848++ { + yyj1822 := 0 + for ; !r.CheckBreak(); yyj1822++ { - if yyj1848 >= len(yyv1848) { - yyv1848 = append(yyv1848, DeploymentCondition{}) // var yyz1848 DeploymentCondition - yyc1848 = true + if yyj1822 >= len(yyv1822) { + yyv1822 = append(yyv1822, DeploymentCondition{}) // var yyz1822 DeploymentCondition + yyc1822 = true } - yyh1848.ElemContainerState(yyj1848) - if yyj1848 < len(yyv1848) { + yyh1822.ElemContainerState(yyj1822) + if yyj1822 < len(yyv1822) { if r.TryDecodeAsNil() { - yyv1848[yyj1848] = DeploymentCondition{} + yyv1822[yyj1822] = DeploymentCondition{} } else { - yyv1851 := &yyv1848[yyj1848] - yyv1851.CodecDecodeSelf(d) + yyv1825 := &yyv1822[yyj1822] + yyv1825.CodecDecodeSelf(d) } } else { @@ -22098,17 +21799,17 @@ func (x codecSelfer1234) decSliceDeploymentCondition(v *[]DeploymentCondition, d } } - if yyj1848 < len(yyv1848) { - yyv1848 = yyv1848[:yyj1848] - yyc1848 = true - } else if yyj1848 == 0 && yyv1848 == nil { - yyv1848 = []DeploymentCondition{} - yyc1848 = true + if yyj1822 < len(yyv1822) { + yyv1822 = yyv1822[:yyj1822] + yyc1822 = true + } else if yyj1822 == 0 && yyv1822 == nil { + yyv1822 = []DeploymentCondition{} + yyc1822 = true } } - yyh1848.End() - if yyc1848 { - *v = yyv1848 + yyh1822.End() + if yyc1822 { + *v = yyv1822 } } @@ -22117,10 +21818,10 @@ func (x codecSelfer1234) encSliceDeployment(v []Deployment, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1852 := range v { + for _, yyv1826 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1853 := &yyv1852 - yy1853.CodecEncodeSelf(e) + yy1827 := &yyv1826 + yy1827.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22130,83 +21831,83 @@ func (x codecSelfer1234) decSliceDeployment(v *[]Deployment, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1854 := *v - yyh1854, yyl1854 := z.DecSliceHelperStart() - var yyc1854 bool - if yyl1854 == 0 { - if yyv1854 == nil { - yyv1854 = []Deployment{} - yyc1854 = true - } else if len(yyv1854) != 0 { - yyv1854 = yyv1854[:0] - yyc1854 = true + yyv1828 := *v + yyh1828, yyl1828 := z.DecSliceHelperStart() + var yyc1828 bool + if yyl1828 == 0 { + if yyv1828 == nil { + yyv1828 = []Deployment{} + yyc1828 = true + } else if len(yyv1828) != 0 { + yyv1828 = yyv1828[:0] + yyc1828 = true } - } else if yyl1854 > 0 { - var yyrr1854, yyrl1854 int - var yyrt1854 bool - if yyl1854 > cap(yyv1854) { + } else if yyl1828 > 0 { + var yyrr1828, yyrl1828 int + var yyrt1828 bool + if yyl1828 > cap(yyv1828) { - yyrg1854 := len(yyv1854) > 0 - yyv21854 := yyv1854 - yyrl1854, yyrt1854 = z.DecInferLen(yyl1854, z.DecBasicHandle().MaxInitLen, 856) - if yyrt1854 { - if yyrl1854 <= cap(yyv1854) { - yyv1854 = yyv1854[:yyrl1854] + yyrg1828 := len(yyv1828) > 0 + yyv21828 := yyv1828 + yyrl1828, yyrt1828 = z.DecInferLen(yyl1828, z.DecBasicHandle().MaxInitLen, 856) + if yyrt1828 { + if yyrl1828 <= cap(yyv1828) { + yyv1828 = yyv1828[:yyrl1828] } else { - yyv1854 = make([]Deployment, yyrl1854) + yyv1828 = make([]Deployment, yyrl1828) } } else { - yyv1854 = make([]Deployment, yyrl1854) + yyv1828 = make([]Deployment, yyrl1828) } - yyc1854 = true - yyrr1854 = len(yyv1854) - if yyrg1854 { - copy(yyv1854, yyv21854) + yyc1828 = true + yyrr1828 = len(yyv1828) + if yyrg1828 { + copy(yyv1828, yyv21828) } - } else if yyl1854 != len(yyv1854) { - yyv1854 = yyv1854[:yyl1854] - yyc1854 = true + } else if yyl1828 != len(yyv1828) { + yyv1828 = yyv1828[:yyl1828] + yyc1828 = true } - yyj1854 := 0 - for ; yyj1854 < yyrr1854; yyj1854++ { - yyh1854.ElemContainerState(yyj1854) + yyj1828 := 0 + for ; yyj1828 < yyrr1828; yyj1828++ { + yyh1828.ElemContainerState(yyj1828) if r.TryDecodeAsNil() { - yyv1854[yyj1854] = Deployment{} + yyv1828[yyj1828] = Deployment{} } else { - yyv1855 := &yyv1854[yyj1854] - yyv1855.CodecDecodeSelf(d) + yyv1829 := &yyv1828[yyj1828] + yyv1829.CodecDecodeSelf(d) } } - if yyrt1854 { - for ; yyj1854 < yyl1854; yyj1854++ { - yyv1854 = append(yyv1854, Deployment{}) - yyh1854.ElemContainerState(yyj1854) + if yyrt1828 { + for ; yyj1828 < yyl1828; yyj1828++ { + yyv1828 = append(yyv1828, Deployment{}) + yyh1828.ElemContainerState(yyj1828) if r.TryDecodeAsNil() { - yyv1854[yyj1854] = Deployment{} + yyv1828[yyj1828] = Deployment{} } else { - yyv1856 := &yyv1854[yyj1854] - yyv1856.CodecDecodeSelf(d) + yyv1830 := &yyv1828[yyj1828] + yyv1830.CodecDecodeSelf(d) } } } } else { - yyj1854 := 0 - for ; !r.CheckBreak(); yyj1854++ { + yyj1828 := 0 + for ; !r.CheckBreak(); yyj1828++ { - if yyj1854 >= len(yyv1854) { - yyv1854 = append(yyv1854, Deployment{}) // var yyz1854 Deployment - yyc1854 = true + if yyj1828 >= len(yyv1828) { + yyv1828 = append(yyv1828, Deployment{}) // var yyz1828 Deployment + yyc1828 = true } - yyh1854.ElemContainerState(yyj1854) - if yyj1854 < len(yyv1854) { + yyh1828.ElemContainerState(yyj1828) + if yyj1828 < len(yyv1828) { if r.TryDecodeAsNil() { - yyv1854[yyj1854] = Deployment{} + yyv1828[yyj1828] = Deployment{} } else { - yyv1857 := &yyv1854[yyj1854] - yyv1857.CodecDecodeSelf(d) + yyv1831 := &yyv1828[yyj1828] + yyv1831.CodecDecodeSelf(d) } } else { @@ -22214,17 +21915,17 @@ func (x codecSelfer1234) decSliceDeployment(v *[]Deployment, d *codec1978.Decode } } - if yyj1854 < len(yyv1854) { - yyv1854 = yyv1854[:yyj1854] - yyc1854 = true - } else if yyj1854 == 0 && yyv1854 == nil { - yyv1854 = []Deployment{} - yyc1854 = true + if yyj1828 < len(yyv1828) { + yyv1828 = yyv1828[:yyj1828] + yyc1828 = true + } else if yyj1828 == 0 && yyv1828 == nil { + yyv1828 = []Deployment{} + yyc1828 = true } } - yyh1854.End() - if yyc1854 { - *v = yyv1854 + yyh1828.End() + if yyc1828 { + *v = yyv1828 } } @@ -22233,10 +21934,10 @@ func (x codecSelfer1234) encSliceDaemonSet(v []DaemonSet, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1858 := range v { + for _, yyv1832 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1859 := &yyv1858 - yy1859.CodecEncodeSelf(e) + yy1833 := &yyv1832 + yy1833.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22246,83 +21947,83 @@ func (x codecSelfer1234) decSliceDaemonSet(v *[]DaemonSet, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1860 := *v - yyh1860, yyl1860 := z.DecSliceHelperStart() - var yyc1860 bool - if yyl1860 == 0 { - if yyv1860 == nil { - yyv1860 = []DaemonSet{} - yyc1860 = true - } else if len(yyv1860) != 0 { - yyv1860 = yyv1860[:0] - yyc1860 = true + yyv1834 := *v + yyh1834, yyl1834 := z.DecSliceHelperStart() + var yyc1834 bool + if yyl1834 == 0 { + if yyv1834 == nil { + yyv1834 = []DaemonSet{} + yyc1834 = true + } else if len(yyv1834) != 0 { + yyv1834 = yyv1834[:0] + yyc1834 = true } - } else if yyl1860 > 0 { - var yyrr1860, yyrl1860 int - var yyrt1860 bool - if yyl1860 > cap(yyv1860) { + } else if yyl1834 > 0 { + var yyrr1834, yyrl1834 int + var yyrt1834 bool + if yyl1834 > cap(yyv1834) { - yyrg1860 := len(yyv1860) > 0 - yyv21860 := yyv1860 - yyrl1860, yyrt1860 = z.DecInferLen(yyl1860, z.DecBasicHandle().MaxInitLen, 752) - if yyrt1860 { - if yyrl1860 <= cap(yyv1860) { - yyv1860 = yyv1860[:yyrl1860] + yyrg1834 := len(yyv1834) > 0 + yyv21834 := yyv1834 + yyrl1834, yyrt1834 = z.DecInferLen(yyl1834, z.DecBasicHandle().MaxInitLen, 752) + if yyrt1834 { + if yyrl1834 <= cap(yyv1834) { + yyv1834 = yyv1834[:yyrl1834] } else { - yyv1860 = make([]DaemonSet, yyrl1860) + yyv1834 = make([]DaemonSet, yyrl1834) } } else { - yyv1860 = make([]DaemonSet, yyrl1860) + yyv1834 = make([]DaemonSet, yyrl1834) } - yyc1860 = true - yyrr1860 = len(yyv1860) - if yyrg1860 { - copy(yyv1860, yyv21860) + yyc1834 = true + yyrr1834 = len(yyv1834) + if yyrg1834 { + copy(yyv1834, yyv21834) } - } else if yyl1860 != len(yyv1860) { - yyv1860 = yyv1860[:yyl1860] - yyc1860 = true + } else if yyl1834 != len(yyv1834) { + yyv1834 = yyv1834[:yyl1834] + yyc1834 = true } - yyj1860 := 0 - for ; yyj1860 < yyrr1860; yyj1860++ { - yyh1860.ElemContainerState(yyj1860) + yyj1834 := 0 + for ; yyj1834 < yyrr1834; yyj1834++ { + yyh1834.ElemContainerState(yyj1834) if r.TryDecodeAsNil() { - yyv1860[yyj1860] = DaemonSet{} + yyv1834[yyj1834] = DaemonSet{} } else { - yyv1861 := &yyv1860[yyj1860] - yyv1861.CodecDecodeSelf(d) + yyv1835 := &yyv1834[yyj1834] + yyv1835.CodecDecodeSelf(d) } } - if yyrt1860 { - for ; yyj1860 < yyl1860; yyj1860++ { - yyv1860 = append(yyv1860, DaemonSet{}) - yyh1860.ElemContainerState(yyj1860) + if yyrt1834 { + for ; yyj1834 < yyl1834; yyj1834++ { + yyv1834 = append(yyv1834, DaemonSet{}) + yyh1834.ElemContainerState(yyj1834) if r.TryDecodeAsNil() { - yyv1860[yyj1860] = DaemonSet{} + yyv1834[yyj1834] = DaemonSet{} } else { - yyv1862 := &yyv1860[yyj1860] - yyv1862.CodecDecodeSelf(d) + yyv1836 := &yyv1834[yyj1834] + yyv1836.CodecDecodeSelf(d) } } } } else { - yyj1860 := 0 - for ; !r.CheckBreak(); yyj1860++ { + yyj1834 := 0 + for ; !r.CheckBreak(); yyj1834++ { - if yyj1860 >= len(yyv1860) { - yyv1860 = append(yyv1860, DaemonSet{}) // var yyz1860 DaemonSet - yyc1860 = true + if yyj1834 >= len(yyv1834) { + yyv1834 = append(yyv1834, DaemonSet{}) // var yyz1834 DaemonSet + yyc1834 = true } - yyh1860.ElemContainerState(yyj1860) - if yyj1860 < len(yyv1860) { + yyh1834.ElemContainerState(yyj1834) + if yyj1834 < len(yyv1834) { if r.TryDecodeAsNil() { - yyv1860[yyj1860] = DaemonSet{} + yyv1834[yyj1834] = DaemonSet{} } else { - yyv1863 := &yyv1860[yyj1860] - yyv1863.CodecDecodeSelf(d) + yyv1837 := &yyv1834[yyj1834] + yyv1837.CodecDecodeSelf(d) } } else { @@ -22330,17 +22031,17 @@ func (x codecSelfer1234) decSliceDaemonSet(v *[]DaemonSet, d *codec1978.Decoder) } } - if yyj1860 < len(yyv1860) { - yyv1860 = yyv1860[:yyj1860] - yyc1860 = true - } else if yyj1860 == 0 && yyv1860 == nil { - yyv1860 = []DaemonSet{} - yyc1860 = true + if yyj1834 < len(yyv1834) { + yyv1834 = yyv1834[:yyj1834] + yyc1834 = true + } else if yyj1834 == 0 && yyv1834 == nil { + yyv1834 = []DaemonSet{} + yyc1834 = true } } - yyh1860.End() - if yyc1860 { - *v = yyv1860 + yyh1834.End() + if yyc1834 { + *v = yyv1834 } } @@ -22349,10 +22050,10 @@ func (x codecSelfer1234) encSliceThirdPartyResourceData(v []ThirdPartyResourceDa z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1864 := range v { + for _, yyv1838 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1865 := &yyv1864 - yy1865.CodecEncodeSelf(e) + yy1839 := &yyv1838 + yy1839.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22362,83 +22063,83 @@ func (x codecSelfer1234) decSliceThirdPartyResourceData(v *[]ThirdPartyResourceD z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1866 := *v - yyh1866, yyl1866 := z.DecSliceHelperStart() - var yyc1866 bool - if yyl1866 == 0 { - if yyv1866 == nil { - yyv1866 = []ThirdPartyResourceData{} - yyc1866 = true - } else if len(yyv1866) != 0 { - yyv1866 = yyv1866[:0] - yyc1866 = true + yyv1840 := *v + yyh1840, yyl1840 := z.DecSliceHelperStart() + var yyc1840 bool + if yyl1840 == 0 { + if yyv1840 == nil { + yyv1840 = []ThirdPartyResourceData{} + yyc1840 = true + } else if len(yyv1840) != 0 { + yyv1840 = yyv1840[:0] + yyc1840 = true } - } else if yyl1866 > 0 { - var yyrr1866, yyrl1866 int - var yyrt1866 bool - if yyl1866 > cap(yyv1866) { + } else if yyl1840 > 0 { + var yyrr1840, yyrl1840 int + var yyrt1840 bool + if yyl1840 > cap(yyv1840) { - yyrg1866 := len(yyv1866) > 0 - yyv21866 := yyv1866 - yyrl1866, yyrt1866 = z.DecInferLen(yyl1866, z.DecBasicHandle().MaxInitLen, 280) - if yyrt1866 { - if yyrl1866 <= cap(yyv1866) { - yyv1866 = yyv1866[:yyrl1866] + yyrg1840 := len(yyv1840) > 0 + yyv21840 := yyv1840 + yyrl1840, yyrt1840 = z.DecInferLen(yyl1840, z.DecBasicHandle().MaxInitLen, 280) + if yyrt1840 { + if yyrl1840 <= cap(yyv1840) { + yyv1840 = yyv1840[:yyrl1840] } else { - yyv1866 = make([]ThirdPartyResourceData, yyrl1866) + yyv1840 = make([]ThirdPartyResourceData, yyrl1840) } } else { - yyv1866 = make([]ThirdPartyResourceData, yyrl1866) + yyv1840 = make([]ThirdPartyResourceData, yyrl1840) } - yyc1866 = true - yyrr1866 = len(yyv1866) - if yyrg1866 { - copy(yyv1866, yyv21866) + yyc1840 = true + yyrr1840 = len(yyv1840) + if yyrg1840 { + copy(yyv1840, yyv21840) } - } else if yyl1866 != len(yyv1866) { - yyv1866 = yyv1866[:yyl1866] - yyc1866 = true + } else if yyl1840 != len(yyv1840) { + yyv1840 = yyv1840[:yyl1840] + yyc1840 = true } - yyj1866 := 0 - for ; yyj1866 < yyrr1866; yyj1866++ { - yyh1866.ElemContainerState(yyj1866) + yyj1840 := 0 + for ; yyj1840 < yyrr1840; yyj1840++ { + yyh1840.ElemContainerState(yyj1840) if r.TryDecodeAsNil() { - yyv1866[yyj1866] = ThirdPartyResourceData{} + yyv1840[yyj1840] = ThirdPartyResourceData{} } else { - yyv1867 := &yyv1866[yyj1866] - yyv1867.CodecDecodeSelf(d) + yyv1841 := &yyv1840[yyj1840] + yyv1841.CodecDecodeSelf(d) } } - if yyrt1866 { - for ; yyj1866 < yyl1866; yyj1866++ { - yyv1866 = append(yyv1866, ThirdPartyResourceData{}) - yyh1866.ElemContainerState(yyj1866) + if yyrt1840 { + for ; yyj1840 < yyl1840; yyj1840++ { + yyv1840 = append(yyv1840, ThirdPartyResourceData{}) + yyh1840.ElemContainerState(yyj1840) if r.TryDecodeAsNil() { - yyv1866[yyj1866] = ThirdPartyResourceData{} + yyv1840[yyj1840] = ThirdPartyResourceData{} } else { - yyv1868 := &yyv1866[yyj1866] - yyv1868.CodecDecodeSelf(d) + yyv1842 := &yyv1840[yyj1840] + yyv1842.CodecDecodeSelf(d) } } } } else { - yyj1866 := 0 - for ; !r.CheckBreak(); yyj1866++ { + yyj1840 := 0 + for ; !r.CheckBreak(); yyj1840++ { - if yyj1866 >= len(yyv1866) { - yyv1866 = append(yyv1866, ThirdPartyResourceData{}) // var yyz1866 ThirdPartyResourceData - yyc1866 = true + if yyj1840 >= len(yyv1840) { + yyv1840 = append(yyv1840, ThirdPartyResourceData{}) // var yyz1840 ThirdPartyResourceData + yyc1840 = true } - yyh1866.ElemContainerState(yyj1866) - if yyj1866 < len(yyv1866) { + yyh1840.ElemContainerState(yyj1840) + if yyj1840 < len(yyv1840) { if r.TryDecodeAsNil() { - yyv1866[yyj1866] = ThirdPartyResourceData{} + yyv1840[yyj1840] = ThirdPartyResourceData{} } else { - yyv1869 := &yyv1866[yyj1866] - yyv1869.CodecDecodeSelf(d) + yyv1843 := &yyv1840[yyj1840] + yyv1843.CodecDecodeSelf(d) } } else { @@ -22446,17 +22147,17 @@ func (x codecSelfer1234) decSliceThirdPartyResourceData(v *[]ThirdPartyResourceD } } - if yyj1866 < len(yyv1866) { - yyv1866 = yyv1866[:yyj1866] - yyc1866 = true - } else if yyj1866 == 0 && yyv1866 == nil { - yyv1866 = []ThirdPartyResourceData{} - yyc1866 = true + if yyj1840 < len(yyv1840) { + yyv1840 = yyv1840[:yyj1840] + yyc1840 = true + } else if yyj1840 == 0 && yyv1840 == nil { + yyv1840 = []ThirdPartyResourceData{} + yyc1840 = true } } - yyh1866.End() - if yyc1866 { - *v = yyv1866 + yyh1840.End() + if yyc1840 { + *v = yyv1840 } } @@ -22465,10 +22166,10 @@ func (x codecSelfer1234) encSliceJob(v []Job, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1870 := range v { + for _, yyv1844 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1871 := &yyv1870 - yy1871.CodecEncodeSelf(e) + yy1845 := &yyv1844 + yy1845.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22478,83 +22179,83 @@ func (x codecSelfer1234) decSliceJob(v *[]Job, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1872 := *v - yyh1872, yyl1872 := z.DecSliceHelperStart() - var yyc1872 bool - if yyl1872 == 0 { - if yyv1872 == nil { - yyv1872 = []Job{} - yyc1872 = true - } else if len(yyv1872) != 0 { - yyv1872 = yyv1872[:0] - yyc1872 = true + yyv1846 := *v + yyh1846, yyl1846 := z.DecSliceHelperStart() + var yyc1846 bool + if yyl1846 == 0 { + if yyv1846 == nil { + yyv1846 = []Job{} + yyc1846 = true + } else if len(yyv1846) != 0 { + yyv1846 = yyv1846[:0] + yyc1846 = true } - } else if yyl1872 > 0 { - var yyrr1872, yyrl1872 int - var yyrt1872 bool - if yyl1872 > cap(yyv1872) { + } else if yyl1846 > 0 { + var yyrr1846, yyrl1846 int + var yyrt1846 bool + if yyl1846 > cap(yyv1846) { - yyrg1872 := len(yyv1872) > 0 - yyv21872 := yyv1872 - yyrl1872, yyrt1872 = z.DecInferLen(yyl1872, z.DecBasicHandle().MaxInitLen, 824) - if yyrt1872 { - if yyrl1872 <= cap(yyv1872) { - yyv1872 = yyv1872[:yyrl1872] + yyrg1846 := len(yyv1846) > 0 + yyv21846 := yyv1846 + yyrl1846, yyrt1846 = z.DecInferLen(yyl1846, z.DecBasicHandle().MaxInitLen, 824) + if yyrt1846 { + if yyrl1846 <= cap(yyv1846) { + yyv1846 = yyv1846[:yyrl1846] } else { - yyv1872 = make([]Job, yyrl1872) + yyv1846 = make([]Job, yyrl1846) } } else { - yyv1872 = make([]Job, yyrl1872) + yyv1846 = make([]Job, yyrl1846) } - yyc1872 = true - yyrr1872 = len(yyv1872) - if yyrg1872 { - copy(yyv1872, yyv21872) + yyc1846 = true + yyrr1846 = len(yyv1846) + if yyrg1846 { + copy(yyv1846, yyv21846) } - } else if yyl1872 != len(yyv1872) { - yyv1872 = yyv1872[:yyl1872] - yyc1872 = true + } else if yyl1846 != len(yyv1846) { + yyv1846 = yyv1846[:yyl1846] + yyc1846 = true } - yyj1872 := 0 - for ; yyj1872 < yyrr1872; yyj1872++ { - yyh1872.ElemContainerState(yyj1872) + yyj1846 := 0 + for ; yyj1846 < yyrr1846; yyj1846++ { + yyh1846.ElemContainerState(yyj1846) if r.TryDecodeAsNil() { - yyv1872[yyj1872] = Job{} + yyv1846[yyj1846] = Job{} } else { - yyv1873 := &yyv1872[yyj1872] - yyv1873.CodecDecodeSelf(d) + yyv1847 := &yyv1846[yyj1846] + yyv1847.CodecDecodeSelf(d) } } - if yyrt1872 { - for ; yyj1872 < yyl1872; yyj1872++ { - yyv1872 = append(yyv1872, Job{}) - yyh1872.ElemContainerState(yyj1872) + if yyrt1846 { + for ; yyj1846 < yyl1846; yyj1846++ { + yyv1846 = append(yyv1846, Job{}) + yyh1846.ElemContainerState(yyj1846) if r.TryDecodeAsNil() { - yyv1872[yyj1872] = Job{} + yyv1846[yyj1846] = Job{} } else { - yyv1874 := &yyv1872[yyj1872] - yyv1874.CodecDecodeSelf(d) + yyv1848 := &yyv1846[yyj1846] + yyv1848.CodecDecodeSelf(d) } } } } else { - yyj1872 := 0 - for ; !r.CheckBreak(); yyj1872++ { + yyj1846 := 0 + for ; !r.CheckBreak(); yyj1846++ { - if yyj1872 >= len(yyv1872) { - yyv1872 = append(yyv1872, Job{}) // var yyz1872 Job - yyc1872 = true + if yyj1846 >= len(yyv1846) { + yyv1846 = append(yyv1846, Job{}) // var yyz1846 Job + yyc1846 = true } - yyh1872.ElemContainerState(yyj1872) - if yyj1872 < len(yyv1872) { + yyh1846.ElemContainerState(yyj1846) + if yyj1846 < len(yyv1846) { if r.TryDecodeAsNil() { - yyv1872[yyj1872] = Job{} + yyv1846[yyj1846] = Job{} } else { - yyv1875 := &yyv1872[yyj1872] - yyv1875.CodecDecodeSelf(d) + yyv1849 := &yyv1846[yyj1846] + yyv1849.CodecDecodeSelf(d) } } else { @@ -22562,17 +22263,17 @@ func (x codecSelfer1234) decSliceJob(v *[]Job, d *codec1978.Decoder) { } } - if yyj1872 < len(yyv1872) { - yyv1872 = yyv1872[:yyj1872] - yyc1872 = true - } else if yyj1872 == 0 && yyv1872 == nil { - yyv1872 = []Job{} - yyc1872 = true + if yyj1846 < len(yyv1846) { + yyv1846 = yyv1846[:yyj1846] + yyc1846 = true + } else if yyj1846 == 0 && yyv1846 == nil { + yyv1846 = []Job{} + yyc1846 = true } } - yyh1872.End() - if yyc1872 { - *v = yyv1872 + yyh1846.End() + if yyc1846 { + *v = yyv1846 } } @@ -22581,10 +22282,10 @@ func (x codecSelfer1234) encSliceJobCondition(v []JobCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1876 := range v { + for _, yyv1850 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1877 := &yyv1876 - yy1877.CodecEncodeSelf(e) + yy1851 := &yyv1850 + yy1851.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22594,83 +22295,83 @@ func (x codecSelfer1234) decSliceJobCondition(v *[]JobCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1878 := *v - yyh1878, yyl1878 := z.DecSliceHelperStart() - var yyc1878 bool - if yyl1878 == 0 { - if yyv1878 == nil { - yyv1878 = []JobCondition{} - yyc1878 = true - } else if len(yyv1878) != 0 { - yyv1878 = yyv1878[:0] - yyc1878 = true + yyv1852 := *v + yyh1852, yyl1852 := z.DecSliceHelperStart() + var yyc1852 bool + if yyl1852 == 0 { + if yyv1852 == nil { + yyv1852 = []JobCondition{} + yyc1852 = true + } else if len(yyv1852) != 0 { + yyv1852 = yyv1852[:0] + yyc1852 = true } - } else if yyl1878 > 0 { - var yyrr1878, yyrl1878 int - var yyrt1878 bool - if yyl1878 > cap(yyv1878) { + } else if yyl1852 > 0 { + var yyrr1852, yyrl1852 int + var yyrt1852 bool + if yyl1852 > cap(yyv1852) { - yyrg1878 := len(yyv1878) > 0 - yyv21878 := yyv1878 - yyrl1878, yyrt1878 = z.DecInferLen(yyl1878, z.DecBasicHandle().MaxInitLen, 112) - if yyrt1878 { - if yyrl1878 <= cap(yyv1878) { - yyv1878 = yyv1878[:yyrl1878] + yyrg1852 := len(yyv1852) > 0 + yyv21852 := yyv1852 + yyrl1852, yyrt1852 = z.DecInferLen(yyl1852, z.DecBasicHandle().MaxInitLen, 112) + if yyrt1852 { + if yyrl1852 <= cap(yyv1852) { + yyv1852 = yyv1852[:yyrl1852] } else { - yyv1878 = make([]JobCondition, yyrl1878) + yyv1852 = make([]JobCondition, yyrl1852) } } else { - yyv1878 = make([]JobCondition, yyrl1878) + yyv1852 = make([]JobCondition, yyrl1852) } - yyc1878 = true - yyrr1878 = len(yyv1878) - if yyrg1878 { - copy(yyv1878, yyv21878) + yyc1852 = true + yyrr1852 = len(yyv1852) + if yyrg1852 { + copy(yyv1852, yyv21852) } - } else if yyl1878 != len(yyv1878) { - yyv1878 = yyv1878[:yyl1878] - yyc1878 = true + } else if yyl1852 != len(yyv1852) { + yyv1852 = yyv1852[:yyl1852] + yyc1852 = true } - yyj1878 := 0 - for ; yyj1878 < yyrr1878; yyj1878++ { - yyh1878.ElemContainerState(yyj1878) + yyj1852 := 0 + for ; yyj1852 < yyrr1852; yyj1852++ { + yyh1852.ElemContainerState(yyj1852) if r.TryDecodeAsNil() { - yyv1878[yyj1878] = JobCondition{} + yyv1852[yyj1852] = JobCondition{} } else { - yyv1879 := &yyv1878[yyj1878] - yyv1879.CodecDecodeSelf(d) + yyv1853 := &yyv1852[yyj1852] + yyv1853.CodecDecodeSelf(d) } } - if yyrt1878 { - for ; yyj1878 < yyl1878; yyj1878++ { - yyv1878 = append(yyv1878, JobCondition{}) - yyh1878.ElemContainerState(yyj1878) + if yyrt1852 { + for ; yyj1852 < yyl1852; yyj1852++ { + yyv1852 = append(yyv1852, JobCondition{}) + yyh1852.ElemContainerState(yyj1852) if r.TryDecodeAsNil() { - yyv1878[yyj1878] = JobCondition{} + yyv1852[yyj1852] = JobCondition{} } else { - yyv1880 := &yyv1878[yyj1878] - yyv1880.CodecDecodeSelf(d) + yyv1854 := &yyv1852[yyj1852] + yyv1854.CodecDecodeSelf(d) } } } } else { - yyj1878 := 0 - for ; !r.CheckBreak(); yyj1878++ { + yyj1852 := 0 + for ; !r.CheckBreak(); yyj1852++ { - if yyj1878 >= len(yyv1878) { - yyv1878 = append(yyv1878, JobCondition{}) // var yyz1878 JobCondition - yyc1878 = true + if yyj1852 >= len(yyv1852) { + yyv1852 = append(yyv1852, JobCondition{}) // var yyz1852 JobCondition + yyc1852 = true } - yyh1878.ElemContainerState(yyj1878) - if yyj1878 < len(yyv1878) { + yyh1852.ElemContainerState(yyj1852) + if yyj1852 < len(yyv1852) { if r.TryDecodeAsNil() { - yyv1878[yyj1878] = JobCondition{} + yyv1852[yyj1852] = JobCondition{} } else { - yyv1881 := &yyv1878[yyj1878] - yyv1881.CodecDecodeSelf(d) + yyv1855 := &yyv1852[yyj1852] + yyv1855.CodecDecodeSelf(d) } } else { @@ -22678,17 +22379,17 @@ func (x codecSelfer1234) decSliceJobCondition(v *[]JobCondition, d *codec1978.De } } - if yyj1878 < len(yyv1878) { - yyv1878 = yyv1878[:yyj1878] - yyc1878 = true - } else if yyj1878 == 0 && yyv1878 == nil { - yyv1878 = []JobCondition{} - yyc1878 = true + if yyj1852 < len(yyv1852) { + yyv1852 = yyv1852[:yyj1852] + yyc1852 = true + } else if yyj1852 == 0 && yyv1852 == nil { + yyv1852 = []JobCondition{} + yyc1852 = true } } - yyh1878.End() - if yyc1878 { - *v = yyv1878 + yyh1852.End() + if yyc1852 { + *v = yyv1852 } } @@ -22697,10 +22398,10 @@ func (x codecSelfer1234) encSliceIngress(v []Ingress, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1882 := range v { + for _, yyv1856 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1883 := &yyv1882 - yy1883.CodecEncodeSelf(e) + yy1857 := &yyv1856 + yy1857.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22710,83 +22411,83 @@ func (x codecSelfer1234) decSliceIngress(v *[]Ingress, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1884 := *v - yyh1884, yyl1884 := z.DecSliceHelperStart() - var yyc1884 bool - if yyl1884 == 0 { - if yyv1884 == nil { - yyv1884 = []Ingress{} - yyc1884 = true - } else if len(yyv1884) != 0 { - yyv1884 = yyv1884[:0] - yyc1884 = true + yyv1858 := *v + yyh1858, yyl1858 := z.DecSliceHelperStart() + var yyc1858 bool + if yyl1858 == 0 { + if yyv1858 == nil { + yyv1858 = []Ingress{} + yyc1858 = true + } else if len(yyv1858) != 0 { + yyv1858 = yyv1858[:0] + yyc1858 = true } - } else if yyl1884 > 0 { - var yyrr1884, yyrl1884 int - var yyrt1884 bool - if yyl1884 > cap(yyv1884) { + } else if yyl1858 > 0 { + var yyrr1858, yyrl1858 int + var yyrt1858 bool + if yyl1858 > cap(yyv1858) { - yyrg1884 := len(yyv1884) > 0 - yyv21884 := yyv1884 - yyrl1884, yyrt1884 = z.DecInferLen(yyl1884, z.DecBasicHandle().MaxInitLen, 336) - if yyrt1884 { - if yyrl1884 <= cap(yyv1884) { - yyv1884 = yyv1884[:yyrl1884] + yyrg1858 := len(yyv1858) > 0 + yyv21858 := yyv1858 + yyrl1858, yyrt1858 = z.DecInferLen(yyl1858, z.DecBasicHandle().MaxInitLen, 336) + if yyrt1858 { + if yyrl1858 <= cap(yyv1858) { + yyv1858 = yyv1858[:yyrl1858] } else { - yyv1884 = make([]Ingress, yyrl1884) + yyv1858 = make([]Ingress, yyrl1858) } } else { - yyv1884 = make([]Ingress, yyrl1884) + yyv1858 = make([]Ingress, yyrl1858) } - yyc1884 = true - yyrr1884 = len(yyv1884) - if yyrg1884 { - copy(yyv1884, yyv21884) + yyc1858 = true + yyrr1858 = len(yyv1858) + if yyrg1858 { + copy(yyv1858, yyv21858) } - } else if yyl1884 != len(yyv1884) { - yyv1884 = yyv1884[:yyl1884] - yyc1884 = true + } else if yyl1858 != len(yyv1858) { + yyv1858 = yyv1858[:yyl1858] + yyc1858 = true } - yyj1884 := 0 - for ; yyj1884 < yyrr1884; yyj1884++ { - yyh1884.ElemContainerState(yyj1884) + yyj1858 := 0 + for ; yyj1858 < yyrr1858; yyj1858++ { + yyh1858.ElemContainerState(yyj1858) if r.TryDecodeAsNil() { - yyv1884[yyj1884] = Ingress{} + yyv1858[yyj1858] = Ingress{} } else { - yyv1885 := &yyv1884[yyj1884] - yyv1885.CodecDecodeSelf(d) + yyv1859 := &yyv1858[yyj1858] + yyv1859.CodecDecodeSelf(d) } } - if yyrt1884 { - for ; yyj1884 < yyl1884; yyj1884++ { - yyv1884 = append(yyv1884, Ingress{}) - yyh1884.ElemContainerState(yyj1884) + if yyrt1858 { + for ; yyj1858 < yyl1858; yyj1858++ { + yyv1858 = append(yyv1858, Ingress{}) + yyh1858.ElemContainerState(yyj1858) if r.TryDecodeAsNil() { - yyv1884[yyj1884] = Ingress{} + yyv1858[yyj1858] = Ingress{} } else { - yyv1886 := &yyv1884[yyj1884] - yyv1886.CodecDecodeSelf(d) + yyv1860 := &yyv1858[yyj1858] + yyv1860.CodecDecodeSelf(d) } } } } else { - yyj1884 := 0 - for ; !r.CheckBreak(); yyj1884++ { + yyj1858 := 0 + for ; !r.CheckBreak(); yyj1858++ { - if yyj1884 >= len(yyv1884) { - yyv1884 = append(yyv1884, Ingress{}) // var yyz1884 Ingress - yyc1884 = true + if yyj1858 >= len(yyv1858) { + yyv1858 = append(yyv1858, Ingress{}) // var yyz1858 Ingress + yyc1858 = true } - yyh1884.ElemContainerState(yyj1884) - if yyj1884 < len(yyv1884) { + yyh1858.ElemContainerState(yyj1858) + if yyj1858 < len(yyv1858) { if r.TryDecodeAsNil() { - yyv1884[yyj1884] = Ingress{} + yyv1858[yyj1858] = Ingress{} } else { - yyv1887 := &yyv1884[yyj1884] - yyv1887.CodecDecodeSelf(d) + yyv1861 := &yyv1858[yyj1858] + yyv1861.CodecDecodeSelf(d) } } else { @@ -22794,17 +22495,17 @@ func (x codecSelfer1234) decSliceIngress(v *[]Ingress, d *codec1978.Decoder) { } } - if yyj1884 < len(yyv1884) { - yyv1884 = yyv1884[:yyj1884] - yyc1884 = true - } else if yyj1884 == 0 && yyv1884 == nil { - yyv1884 = []Ingress{} - yyc1884 = true + if yyj1858 < len(yyv1858) { + yyv1858 = yyv1858[:yyj1858] + yyc1858 = true + } else if yyj1858 == 0 && yyv1858 == nil { + yyv1858 = []Ingress{} + yyc1858 = true } } - yyh1884.End() - if yyc1884 { - *v = yyv1884 + yyh1858.End() + if yyc1858 { + *v = yyv1858 } } @@ -22813,10 +22514,10 @@ func (x codecSelfer1234) encSliceIngressTLS(v []IngressTLS, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1888 := range v { + for _, yyv1862 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1889 := &yyv1888 - yy1889.CodecEncodeSelf(e) + yy1863 := &yyv1862 + yy1863.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22826,83 +22527,83 @@ func (x codecSelfer1234) decSliceIngressTLS(v *[]IngressTLS, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1890 := *v - yyh1890, yyl1890 := z.DecSliceHelperStart() - var yyc1890 bool - if yyl1890 == 0 { - if yyv1890 == nil { - yyv1890 = []IngressTLS{} - yyc1890 = true - } else if len(yyv1890) != 0 { - yyv1890 = yyv1890[:0] - yyc1890 = true + yyv1864 := *v + yyh1864, yyl1864 := z.DecSliceHelperStart() + var yyc1864 bool + if yyl1864 == 0 { + if yyv1864 == nil { + yyv1864 = []IngressTLS{} + yyc1864 = true + } else if len(yyv1864) != 0 { + yyv1864 = yyv1864[:0] + yyc1864 = true } - } else if yyl1890 > 0 { - var yyrr1890, yyrl1890 int - var yyrt1890 bool - if yyl1890 > cap(yyv1890) { + } else if yyl1864 > 0 { + var yyrr1864, yyrl1864 int + var yyrt1864 bool + if yyl1864 > cap(yyv1864) { - yyrg1890 := len(yyv1890) > 0 - yyv21890 := yyv1890 - yyrl1890, yyrt1890 = z.DecInferLen(yyl1890, z.DecBasicHandle().MaxInitLen, 40) - if yyrt1890 { - if yyrl1890 <= cap(yyv1890) { - yyv1890 = yyv1890[:yyrl1890] + yyrg1864 := len(yyv1864) > 0 + yyv21864 := yyv1864 + yyrl1864, yyrt1864 = z.DecInferLen(yyl1864, z.DecBasicHandle().MaxInitLen, 40) + if yyrt1864 { + if yyrl1864 <= cap(yyv1864) { + yyv1864 = yyv1864[:yyrl1864] } else { - yyv1890 = make([]IngressTLS, yyrl1890) + yyv1864 = make([]IngressTLS, yyrl1864) } } else { - yyv1890 = make([]IngressTLS, yyrl1890) + yyv1864 = make([]IngressTLS, yyrl1864) } - yyc1890 = true - yyrr1890 = len(yyv1890) - if yyrg1890 { - copy(yyv1890, yyv21890) + yyc1864 = true + yyrr1864 = len(yyv1864) + if yyrg1864 { + copy(yyv1864, yyv21864) } - } else if yyl1890 != len(yyv1890) { - yyv1890 = yyv1890[:yyl1890] - yyc1890 = true + } else if yyl1864 != len(yyv1864) { + yyv1864 = yyv1864[:yyl1864] + yyc1864 = true } - yyj1890 := 0 - for ; yyj1890 < yyrr1890; yyj1890++ { - yyh1890.ElemContainerState(yyj1890) + yyj1864 := 0 + for ; yyj1864 < yyrr1864; yyj1864++ { + yyh1864.ElemContainerState(yyj1864) if r.TryDecodeAsNil() { - yyv1890[yyj1890] = IngressTLS{} + yyv1864[yyj1864] = IngressTLS{} } else { - yyv1891 := &yyv1890[yyj1890] - yyv1891.CodecDecodeSelf(d) + yyv1865 := &yyv1864[yyj1864] + yyv1865.CodecDecodeSelf(d) } } - if yyrt1890 { - for ; yyj1890 < yyl1890; yyj1890++ { - yyv1890 = append(yyv1890, IngressTLS{}) - yyh1890.ElemContainerState(yyj1890) + if yyrt1864 { + for ; yyj1864 < yyl1864; yyj1864++ { + yyv1864 = append(yyv1864, IngressTLS{}) + yyh1864.ElemContainerState(yyj1864) if r.TryDecodeAsNil() { - yyv1890[yyj1890] = IngressTLS{} + yyv1864[yyj1864] = IngressTLS{} } else { - yyv1892 := &yyv1890[yyj1890] - yyv1892.CodecDecodeSelf(d) + yyv1866 := &yyv1864[yyj1864] + yyv1866.CodecDecodeSelf(d) } } } } else { - yyj1890 := 0 - for ; !r.CheckBreak(); yyj1890++ { + yyj1864 := 0 + for ; !r.CheckBreak(); yyj1864++ { - if yyj1890 >= len(yyv1890) { - yyv1890 = append(yyv1890, IngressTLS{}) // var yyz1890 IngressTLS - yyc1890 = true + if yyj1864 >= len(yyv1864) { + yyv1864 = append(yyv1864, IngressTLS{}) // var yyz1864 IngressTLS + yyc1864 = true } - yyh1890.ElemContainerState(yyj1890) - if yyj1890 < len(yyv1890) { + yyh1864.ElemContainerState(yyj1864) + if yyj1864 < len(yyv1864) { if r.TryDecodeAsNil() { - yyv1890[yyj1890] = IngressTLS{} + yyv1864[yyj1864] = IngressTLS{} } else { - yyv1893 := &yyv1890[yyj1890] - yyv1893.CodecDecodeSelf(d) + yyv1867 := &yyv1864[yyj1864] + yyv1867.CodecDecodeSelf(d) } } else { @@ -22910,17 +22611,17 @@ func (x codecSelfer1234) decSliceIngressTLS(v *[]IngressTLS, d *codec1978.Decode } } - if yyj1890 < len(yyv1890) { - yyv1890 = yyv1890[:yyj1890] - yyc1890 = true - } else if yyj1890 == 0 && yyv1890 == nil { - yyv1890 = []IngressTLS{} - yyc1890 = true + if yyj1864 < len(yyv1864) { + yyv1864 = yyv1864[:yyj1864] + yyc1864 = true + } else if yyj1864 == 0 && yyv1864 == nil { + yyv1864 = []IngressTLS{} + yyc1864 = true } } - yyh1890.End() - if yyc1890 { - *v = yyv1890 + yyh1864.End() + if yyc1864 { + *v = yyv1864 } } @@ -22929,10 +22630,10 @@ func (x codecSelfer1234) encSliceIngressRule(v []IngressRule, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1894 := range v { + for _, yyv1868 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1895 := &yyv1894 - yy1895.CodecEncodeSelf(e) + yy1869 := &yyv1868 + yy1869.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22942,83 +22643,83 @@ func (x codecSelfer1234) decSliceIngressRule(v *[]IngressRule, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1896 := *v - yyh1896, yyl1896 := z.DecSliceHelperStart() - var yyc1896 bool - if yyl1896 == 0 { - if yyv1896 == nil { - yyv1896 = []IngressRule{} - yyc1896 = true - } else if len(yyv1896) != 0 { - yyv1896 = yyv1896[:0] - yyc1896 = true + yyv1870 := *v + yyh1870, yyl1870 := z.DecSliceHelperStart() + var yyc1870 bool + if yyl1870 == 0 { + if yyv1870 == nil { + yyv1870 = []IngressRule{} + yyc1870 = true + } else if len(yyv1870) != 0 { + yyv1870 = yyv1870[:0] + yyc1870 = true } - } else if yyl1896 > 0 { - var yyrr1896, yyrl1896 int - var yyrt1896 bool - if yyl1896 > cap(yyv1896) { + } else if yyl1870 > 0 { + var yyrr1870, yyrl1870 int + var yyrt1870 bool + if yyl1870 > cap(yyv1870) { - yyrg1896 := len(yyv1896) > 0 - yyv21896 := yyv1896 - yyrl1896, yyrt1896 = z.DecInferLen(yyl1896, z.DecBasicHandle().MaxInitLen, 24) - if yyrt1896 { - if yyrl1896 <= cap(yyv1896) { - yyv1896 = yyv1896[:yyrl1896] + yyrg1870 := len(yyv1870) > 0 + yyv21870 := yyv1870 + yyrl1870, yyrt1870 = z.DecInferLen(yyl1870, z.DecBasicHandle().MaxInitLen, 24) + if yyrt1870 { + if yyrl1870 <= cap(yyv1870) { + yyv1870 = yyv1870[:yyrl1870] } else { - yyv1896 = make([]IngressRule, yyrl1896) + yyv1870 = make([]IngressRule, yyrl1870) } } else { - yyv1896 = make([]IngressRule, yyrl1896) + yyv1870 = make([]IngressRule, yyrl1870) } - yyc1896 = true - yyrr1896 = len(yyv1896) - if yyrg1896 { - copy(yyv1896, yyv21896) + yyc1870 = true + yyrr1870 = len(yyv1870) + if yyrg1870 { + copy(yyv1870, yyv21870) } - } else if yyl1896 != len(yyv1896) { - yyv1896 = yyv1896[:yyl1896] - yyc1896 = true + } else if yyl1870 != len(yyv1870) { + yyv1870 = yyv1870[:yyl1870] + yyc1870 = true } - yyj1896 := 0 - for ; yyj1896 < yyrr1896; yyj1896++ { - yyh1896.ElemContainerState(yyj1896) + yyj1870 := 0 + for ; yyj1870 < yyrr1870; yyj1870++ { + yyh1870.ElemContainerState(yyj1870) if r.TryDecodeAsNil() { - yyv1896[yyj1896] = IngressRule{} + yyv1870[yyj1870] = IngressRule{} } else { - yyv1897 := &yyv1896[yyj1896] - yyv1897.CodecDecodeSelf(d) + yyv1871 := &yyv1870[yyj1870] + yyv1871.CodecDecodeSelf(d) } } - if yyrt1896 { - for ; yyj1896 < yyl1896; yyj1896++ { - yyv1896 = append(yyv1896, IngressRule{}) - yyh1896.ElemContainerState(yyj1896) + if yyrt1870 { + for ; yyj1870 < yyl1870; yyj1870++ { + yyv1870 = append(yyv1870, IngressRule{}) + yyh1870.ElemContainerState(yyj1870) if r.TryDecodeAsNil() { - yyv1896[yyj1896] = IngressRule{} + yyv1870[yyj1870] = IngressRule{} } else { - yyv1898 := &yyv1896[yyj1896] - yyv1898.CodecDecodeSelf(d) + yyv1872 := &yyv1870[yyj1870] + yyv1872.CodecDecodeSelf(d) } } } } else { - yyj1896 := 0 - for ; !r.CheckBreak(); yyj1896++ { + yyj1870 := 0 + for ; !r.CheckBreak(); yyj1870++ { - if yyj1896 >= len(yyv1896) { - yyv1896 = append(yyv1896, IngressRule{}) // var yyz1896 IngressRule - yyc1896 = true + if yyj1870 >= len(yyv1870) { + yyv1870 = append(yyv1870, IngressRule{}) // var yyz1870 IngressRule + yyc1870 = true } - yyh1896.ElemContainerState(yyj1896) - if yyj1896 < len(yyv1896) { + yyh1870.ElemContainerState(yyj1870) + if yyj1870 < len(yyv1870) { if r.TryDecodeAsNil() { - yyv1896[yyj1896] = IngressRule{} + yyv1870[yyj1870] = IngressRule{} } else { - yyv1899 := &yyv1896[yyj1896] - yyv1899.CodecDecodeSelf(d) + yyv1873 := &yyv1870[yyj1870] + yyv1873.CodecDecodeSelf(d) } } else { @@ -23026,17 +22727,17 @@ func (x codecSelfer1234) decSliceIngressRule(v *[]IngressRule, d *codec1978.Deco } } - if yyj1896 < len(yyv1896) { - yyv1896 = yyv1896[:yyj1896] - yyc1896 = true - } else if yyj1896 == 0 && yyv1896 == nil { - yyv1896 = []IngressRule{} - yyc1896 = true + if yyj1870 < len(yyv1870) { + yyv1870 = yyv1870[:yyj1870] + yyc1870 = true + } else if yyj1870 == 0 && yyv1870 == nil { + yyv1870 = []IngressRule{} + yyc1870 = true } } - yyh1896.End() - if yyc1896 { - *v = yyv1896 + yyh1870.End() + if yyc1870 { + *v = yyv1870 } } @@ -23045,10 +22746,10 @@ func (x codecSelfer1234) encSliceHTTPIngressPath(v []HTTPIngressPath, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1900 := range v { + for _, yyv1874 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1901 := &yyv1900 - yy1901.CodecEncodeSelf(e) + yy1875 := &yyv1874 + yy1875.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23058,83 +22759,83 @@ func (x codecSelfer1234) decSliceHTTPIngressPath(v *[]HTTPIngressPath, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1902 := *v - yyh1902, yyl1902 := z.DecSliceHelperStart() - var yyc1902 bool - if yyl1902 == 0 { - if yyv1902 == nil { - yyv1902 = []HTTPIngressPath{} - yyc1902 = true - } else if len(yyv1902) != 0 { - yyv1902 = yyv1902[:0] - yyc1902 = true + yyv1876 := *v + yyh1876, yyl1876 := z.DecSliceHelperStart() + var yyc1876 bool + if yyl1876 == 0 { + if yyv1876 == nil { + yyv1876 = []HTTPIngressPath{} + yyc1876 = true + } else if len(yyv1876) != 0 { + yyv1876 = yyv1876[:0] + yyc1876 = true } - } else if yyl1902 > 0 { - var yyrr1902, yyrl1902 int - var yyrt1902 bool - if yyl1902 > cap(yyv1902) { + } else if yyl1876 > 0 { + var yyrr1876, yyrl1876 int + var yyrt1876 bool + if yyl1876 > cap(yyv1876) { - yyrg1902 := len(yyv1902) > 0 - yyv21902 := yyv1902 - yyrl1902, yyrt1902 = z.DecInferLen(yyl1902, z.DecBasicHandle().MaxInitLen, 64) - if yyrt1902 { - if yyrl1902 <= cap(yyv1902) { - yyv1902 = yyv1902[:yyrl1902] + yyrg1876 := len(yyv1876) > 0 + yyv21876 := yyv1876 + yyrl1876, yyrt1876 = z.DecInferLen(yyl1876, z.DecBasicHandle().MaxInitLen, 64) + if yyrt1876 { + if yyrl1876 <= cap(yyv1876) { + yyv1876 = yyv1876[:yyrl1876] } else { - yyv1902 = make([]HTTPIngressPath, yyrl1902) + yyv1876 = make([]HTTPIngressPath, yyrl1876) } } else { - yyv1902 = make([]HTTPIngressPath, yyrl1902) + yyv1876 = make([]HTTPIngressPath, yyrl1876) } - yyc1902 = true - yyrr1902 = len(yyv1902) - if yyrg1902 { - copy(yyv1902, yyv21902) + yyc1876 = true + yyrr1876 = len(yyv1876) + if yyrg1876 { + copy(yyv1876, yyv21876) } - } else if yyl1902 != len(yyv1902) { - yyv1902 = yyv1902[:yyl1902] - yyc1902 = true + } else if yyl1876 != len(yyv1876) { + yyv1876 = yyv1876[:yyl1876] + yyc1876 = true } - yyj1902 := 0 - for ; yyj1902 < yyrr1902; yyj1902++ { - yyh1902.ElemContainerState(yyj1902) + yyj1876 := 0 + for ; yyj1876 < yyrr1876; yyj1876++ { + yyh1876.ElemContainerState(yyj1876) if r.TryDecodeAsNil() { - yyv1902[yyj1902] = HTTPIngressPath{} + yyv1876[yyj1876] = HTTPIngressPath{} } else { - yyv1903 := &yyv1902[yyj1902] - yyv1903.CodecDecodeSelf(d) + yyv1877 := &yyv1876[yyj1876] + yyv1877.CodecDecodeSelf(d) } } - if yyrt1902 { - for ; yyj1902 < yyl1902; yyj1902++ { - yyv1902 = append(yyv1902, HTTPIngressPath{}) - yyh1902.ElemContainerState(yyj1902) + if yyrt1876 { + for ; yyj1876 < yyl1876; yyj1876++ { + yyv1876 = append(yyv1876, HTTPIngressPath{}) + yyh1876.ElemContainerState(yyj1876) if r.TryDecodeAsNil() { - yyv1902[yyj1902] = HTTPIngressPath{} + yyv1876[yyj1876] = HTTPIngressPath{} } else { - yyv1904 := &yyv1902[yyj1902] - yyv1904.CodecDecodeSelf(d) + yyv1878 := &yyv1876[yyj1876] + yyv1878.CodecDecodeSelf(d) } } } } else { - yyj1902 := 0 - for ; !r.CheckBreak(); yyj1902++ { + yyj1876 := 0 + for ; !r.CheckBreak(); yyj1876++ { - if yyj1902 >= len(yyv1902) { - yyv1902 = append(yyv1902, HTTPIngressPath{}) // var yyz1902 HTTPIngressPath - yyc1902 = true + if yyj1876 >= len(yyv1876) { + yyv1876 = append(yyv1876, HTTPIngressPath{}) // var yyz1876 HTTPIngressPath + yyc1876 = true } - yyh1902.ElemContainerState(yyj1902) - if yyj1902 < len(yyv1902) { + yyh1876.ElemContainerState(yyj1876) + if yyj1876 < len(yyv1876) { if r.TryDecodeAsNil() { - yyv1902[yyj1902] = HTTPIngressPath{} + yyv1876[yyj1876] = HTTPIngressPath{} } else { - yyv1905 := &yyv1902[yyj1902] - yyv1905.CodecDecodeSelf(d) + yyv1879 := &yyv1876[yyj1876] + yyv1879.CodecDecodeSelf(d) } } else { @@ -23142,17 +22843,17 @@ func (x codecSelfer1234) decSliceHTTPIngressPath(v *[]HTTPIngressPath, d *codec1 } } - if yyj1902 < len(yyv1902) { - yyv1902 = yyv1902[:yyj1902] - yyc1902 = true - } else if yyj1902 == 0 && yyv1902 == nil { - yyv1902 = []HTTPIngressPath{} - yyc1902 = true + if yyj1876 < len(yyv1876) { + yyv1876 = yyv1876[:yyj1876] + yyc1876 = true + } else if yyj1876 == 0 && yyv1876 == nil { + yyv1876 = []HTTPIngressPath{} + yyc1876 = true } } - yyh1902.End() - if yyc1902 { - *v = yyv1902 + yyh1876.End() + if yyc1876 { + *v = yyv1876 } } @@ -23161,10 +22862,10 @@ func (x codecSelfer1234) encSliceReplicaSet(v []ReplicaSet, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1906 := range v { + for _, yyv1880 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1907 := &yyv1906 - yy1907.CodecEncodeSelf(e) + yy1881 := &yyv1880 + yy1881.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23174,83 +22875,83 @@ func (x codecSelfer1234) decSliceReplicaSet(v *[]ReplicaSet, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1908 := *v - yyh1908, yyl1908 := z.DecSliceHelperStart() - var yyc1908 bool - if yyl1908 == 0 { - if yyv1908 == nil { - yyv1908 = []ReplicaSet{} - yyc1908 = true - } else if len(yyv1908) != 0 { - yyv1908 = yyv1908[:0] - yyc1908 = true + yyv1882 := *v + yyh1882, yyl1882 := z.DecSliceHelperStart() + var yyc1882 bool + if yyl1882 == 0 { + if yyv1882 == nil { + yyv1882 = []ReplicaSet{} + yyc1882 = true + } else if len(yyv1882) != 0 { + yyv1882 = yyv1882[:0] + yyc1882 = true } - } else if yyl1908 > 0 { - var yyrr1908, yyrl1908 int - var yyrt1908 bool - if yyl1908 > cap(yyv1908) { + } else if yyl1882 > 0 { + var yyrr1882, yyrl1882 int + var yyrt1882 bool + if yyl1882 > cap(yyv1882) { - yyrg1908 := len(yyv1908) > 0 - yyv21908 := yyv1908 - yyrl1908, yyrt1908 = z.DecInferLen(yyl1908, z.DecBasicHandle().MaxInitLen, 800) - if yyrt1908 { - if yyrl1908 <= cap(yyv1908) { - yyv1908 = yyv1908[:yyrl1908] + yyrg1882 := len(yyv1882) > 0 + yyv21882 := yyv1882 + yyrl1882, yyrt1882 = z.DecInferLen(yyl1882, z.DecBasicHandle().MaxInitLen, 800) + if yyrt1882 { + if yyrl1882 <= cap(yyv1882) { + yyv1882 = yyv1882[:yyrl1882] } else { - yyv1908 = make([]ReplicaSet, yyrl1908) + yyv1882 = make([]ReplicaSet, yyrl1882) } } else { - yyv1908 = make([]ReplicaSet, yyrl1908) + yyv1882 = make([]ReplicaSet, yyrl1882) } - yyc1908 = true - yyrr1908 = len(yyv1908) - if yyrg1908 { - copy(yyv1908, yyv21908) + yyc1882 = true + yyrr1882 = len(yyv1882) + if yyrg1882 { + copy(yyv1882, yyv21882) } - } else if yyl1908 != len(yyv1908) { - yyv1908 = yyv1908[:yyl1908] - yyc1908 = true + } else if yyl1882 != len(yyv1882) { + yyv1882 = yyv1882[:yyl1882] + yyc1882 = true } - yyj1908 := 0 - for ; yyj1908 < yyrr1908; yyj1908++ { - yyh1908.ElemContainerState(yyj1908) + yyj1882 := 0 + for ; yyj1882 < yyrr1882; yyj1882++ { + yyh1882.ElemContainerState(yyj1882) if r.TryDecodeAsNil() { - yyv1908[yyj1908] = ReplicaSet{} + yyv1882[yyj1882] = ReplicaSet{} } else { - yyv1909 := &yyv1908[yyj1908] - yyv1909.CodecDecodeSelf(d) + yyv1883 := &yyv1882[yyj1882] + yyv1883.CodecDecodeSelf(d) } } - if yyrt1908 { - for ; yyj1908 < yyl1908; yyj1908++ { - yyv1908 = append(yyv1908, ReplicaSet{}) - yyh1908.ElemContainerState(yyj1908) + if yyrt1882 { + for ; yyj1882 < yyl1882; yyj1882++ { + yyv1882 = append(yyv1882, ReplicaSet{}) + yyh1882.ElemContainerState(yyj1882) if r.TryDecodeAsNil() { - yyv1908[yyj1908] = ReplicaSet{} + yyv1882[yyj1882] = ReplicaSet{} } else { - yyv1910 := &yyv1908[yyj1908] - yyv1910.CodecDecodeSelf(d) + yyv1884 := &yyv1882[yyj1882] + yyv1884.CodecDecodeSelf(d) } } } } else { - yyj1908 := 0 - for ; !r.CheckBreak(); yyj1908++ { + yyj1882 := 0 + for ; !r.CheckBreak(); yyj1882++ { - if yyj1908 >= len(yyv1908) { - yyv1908 = append(yyv1908, ReplicaSet{}) // var yyz1908 ReplicaSet - yyc1908 = true + if yyj1882 >= len(yyv1882) { + yyv1882 = append(yyv1882, ReplicaSet{}) // var yyz1882 ReplicaSet + yyc1882 = true } - yyh1908.ElemContainerState(yyj1908) - if yyj1908 < len(yyv1908) { + yyh1882.ElemContainerState(yyj1882) + if yyj1882 < len(yyv1882) { if r.TryDecodeAsNil() { - yyv1908[yyj1908] = ReplicaSet{} + yyv1882[yyj1882] = ReplicaSet{} } else { - yyv1911 := &yyv1908[yyj1908] - yyv1911.CodecDecodeSelf(d) + yyv1885 := &yyv1882[yyj1882] + yyv1885.CodecDecodeSelf(d) } } else { @@ -23258,17 +22959,17 @@ func (x codecSelfer1234) decSliceReplicaSet(v *[]ReplicaSet, d *codec1978.Decode } } - if yyj1908 < len(yyv1908) { - yyv1908 = yyv1908[:yyj1908] - yyc1908 = true - } else if yyj1908 == 0 && yyv1908 == nil { - yyv1908 = []ReplicaSet{} - yyc1908 = true + if yyj1882 < len(yyv1882) { + yyv1882 = yyv1882[:yyj1882] + yyc1882 = true + } else if yyj1882 == 0 && yyv1882 == nil { + yyv1882 = []ReplicaSet{} + yyc1882 = true } } - yyh1908.End() - if yyc1908 { - *v = yyv1908 + yyh1882.End() + if yyc1882 { + *v = yyv1882 } } @@ -23277,10 +22978,10 @@ func (x codecSelfer1234) encSliceReplicaSetCondition(v []ReplicaSetCondition, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1912 := range v { + for _, yyv1886 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1913 := &yyv1912 - yy1913.CodecEncodeSelf(e) + yy1887 := &yyv1886 + yy1887.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23290,83 +22991,83 @@ func (x codecSelfer1234) decSliceReplicaSetCondition(v *[]ReplicaSetCondition, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1914 := *v - yyh1914, yyl1914 := z.DecSliceHelperStart() - var yyc1914 bool - if yyl1914 == 0 { - if yyv1914 == nil { - yyv1914 = []ReplicaSetCondition{} - yyc1914 = true - } else if len(yyv1914) != 0 { - yyv1914 = yyv1914[:0] - yyc1914 = true + yyv1888 := *v + yyh1888, yyl1888 := z.DecSliceHelperStart() + var yyc1888 bool + if yyl1888 == 0 { + if yyv1888 == nil { + yyv1888 = []ReplicaSetCondition{} + yyc1888 = true + } else if len(yyv1888) != 0 { + yyv1888 = yyv1888[:0] + yyc1888 = true } - } else if yyl1914 > 0 { - var yyrr1914, yyrl1914 int - var yyrt1914 bool - if yyl1914 > cap(yyv1914) { + } else if yyl1888 > 0 { + var yyrr1888, yyrl1888 int + var yyrt1888 bool + if yyl1888 > cap(yyv1888) { - yyrg1914 := len(yyv1914) > 0 - yyv21914 := yyv1914 - yyrl1914, yyrt1914 = z.DecInferLen(yyl1914, z.DecBasicHandle().MaxInitLen, 88) - if yyrt1914 { - if yyrl1914 <= cap(yyv1914) { - yyv1914 = yyv1914[:yyrl1914] + yyrg1888 := len(yyv1888) > 0 + yyv21888 := yyv1888 + yyrl1888, yyrt1888 = z.DecInferLen(yyl1888, z.DecBasicHandle().MaxInitLen, 88) + if yyrt1888 { + if yyrl1888 <= cap(yyv1888) { + yyv1888 = yyv1888[:yyrl1888] } else { - yyv1914 = make([]ReplicaSetCondition, yyrl1914) + yyv1888 = make([]ReplicaSetCondition, yyrl1888) } } else { - yyv1914 = make([]ReplicaSetCondition, yyrl1914) + yyv1888 = make([]ReplicaSetCondition, yyrl1888) } - yyc1914 = true - yyrr1914 = len(yyv1914) - if yyrg1914 { - copy(yyv1914, yyv21914) + yyc1888 = true + yyrr1888 = len(yyv1888) + if yyrg1888 { + copy(yyv1888, yyv21888) } - } else if yyl1914 != len(yyv1914) { - yyv1914 = yyv1914[:yyl1914] - yyc1914 = true + } else if yyl1888 != len(yyv1888) { + yyv1888 = yyv1888[:yyl1888] + yyc1888 = true } - yyj1914 := 0 - for ; yyj1914 < yyrr1914; yyj1914++ { - yyh1914.ElemContainerState(yyj1914) + yyj1888 := 0 + for ; yyj1888 < yyrr1888; yyj1888++ { + yyh1888.ElemContainerState(yyj1888) if r.TryDecodeAsNil() { - yyv1914[yyj1914] = ReplicaSetCondition{} + yyv1888[yyj1888] = ReplicaSetCondition{} } else { - yyv1915 := &yyv1914[yyj1914] - yyv1915.CodecDecodeSelf(d) + yyv1889 := &yyv1888[yyj1888] + yyv1889.CodecDecodeSelf(d) } } - if yyrt1914 { - for ; yyj1914 < yyl1914; yyj1914++ { - yyv1914 = append(yyv1914, ReplicaSetCondition{}) - yyh1914.ElemContainerState(yyj1914) + if yyrt1888 { + for ; yyj1888 < yyl1888; yyj1888++ { + yyv1888 = append(yyv1888, ReplicaSetCondition{}) + yyh1888.ElemContainerState(yyj1888) if r.TryDecodeAsNil() { - yyv1914[yyj1914] = ReplicaSetCondition{} + yyv1888[yyj1888] = ReplicaSetCondition{} } else { - yyv1916 := &yyv1914[yyj1914] - yyv1916.CodecDecodeSelf(d) + yyv1890 := &yyv1888[yyj1888] + yyv1890.CodecDecodeSelf(d) } } } } else { - yyj1914 := 0 - for ; !r.CheckBreak(); yyj1914++ { + yyj1888 := 0 + for ; !r.CheckBreak(); yyj1888++ { - if yyj1914 >= len(yyv1914) { - yyv1914 = append(yyv1914, ReplicaSetCondition{}) // var yyz1914 ReplicaSetCondition - yyc1914 = true + if yyj1888 >= len(yyv1888) { + yyv1888 = append(yyv1888, ReplicaSetCondition{}) // var yyz1888 ReplicaSetCondition + yyc1888 = true } - yyh1914.ElemContainerState(yyj1914) - if yyj1914 < len(yyv1914) { + yyh1888.ElemContainerState(yyj1888) + if yyj1888 < len(yyv1888) { if r.TryDecodeAsNil() { - yyv1914[yyj1914] = ReplicaSetCondition{} + yyv1888[yyj1888] = ReplicaSetCondition{} } else { - yyv1917 := &yyv1914[yyj1914] - yyv1917.CodecDecodeSelf(d) + yyv1891 := &yyv1888[yyj1888] + yyv1891.CodecDecodeSelf(d) } } else { @@ -23374,17 +23075,17 @@ func (x codecSelfer1234) decSliceReplicaSetCondition(v *[]ReplicaSetCondition, d } } - if yyj1914 < len(yyv1914) { - yyv1914 = yyv1914[:yyj1914] - yyc1914 = true - } else if yyj1914 == 0 && yyv1914 == nil { - yyv1914 = []ReplicaSetCondition{} - yyc1914 = true + if yyj1888 < len(yyv1888) { + yyv1888 = yyv1888[:yyj1888] + yyc1888 = true + } else if yyj1888 == 0 && yyv1888 == nil { + yyv1888 = []ReplicaSetCondition{} + yyc1888 = true } } - yyh1914.End() - if yyc1914 { - *v = yyv1914 + yyh1888.End() + if yyc1888 { + *v = yyv1888 } } @@ -23393,14 +23094,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 _, yyv1918 := range v { + for _, yyv1892 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1919 := z.EncBinary() - _ = yym1919 + yym1893 := z.EncBinary() + _ = yym1893 if false { - } else if z.HasExtensions() && z.EncExt(yyv1918) { + } else if z.HasExtensions() && z.EncExt(yyv1892) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyv1918)) + r.EncodeString(codecSelferC_UTF81234, string(yyv1892)) } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) @@ -23411,75 +23112,75 @@ func (x codecSelfer1234) decSlicev1_Capability(v *[]pkg2_v1.Capability, d *codec z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1920 := *v - yyh1920, yyl1920 := z.DecSliceHelperStart() - var yyc1920 bool - if yyl1920 == 0 { - if yyv1920 == nil { - yyv1920 = []pkg2_v1.Capability{} - yyc1920 = true - } else if len(yyv1920) != 0 { - yyv1920 = yyv1920[:0] - yyc1920 = true + yyv1894 := *v + yyh1894, yyl1894 := z.DecSliceHelperStart() + var yyc1894 bool + if yyl1894 == 0 { + if yyv1894 == nil { + yyv1894 = []pkg2_v1.Capability{} + yyc1894 = true + } else if len(yyv1894) != 0 { + yyv1894 = yyv1894[:0] + yyc1894 = true } - } else if yyl1920 > 0 { - var yyrr1920, yyrl1920 int - var yyrt1920 bool - if yyl1920 > cap(yyv1920) { + } else if yyl1894 > 0 { + var yyrr1894, yyrl1894 int + var yyrt1894 bool + if yyl1894 > cap(yyv1894) { - yyrl1920, yyrt1920 = z.DecInferLen(yyl1920, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1920 { - if yyrl1920 <= cap(yyv1920) { - yyv1920 = yyv1920[:yyrl1920] + yyrl1894, yyrt1894 = z.DecInferLen(yyl1894, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1894 { + if yyrl1894 <= cap(yyv1894) { + yyv1894 = yyv1894[:yyrl1894] } else { - yyv1920 = make([]pkg2_v1.Capability, yyrl1920) + yyv1894 = make([]pkg2_v1.Capability, yyrl1894) } } else { - yyv1920 = make([]pkg2_v1.Capability, yyrl1920) + yyv1894 = make([]pkg2_v1.Capability, yyrl1894) } - yyc1920 = true - yyrr1920 = len(yyv1920) - } else if yyl1920 != len(yyv1920) { - yyv1920 = yyv1920[:yyl1920] - yyc1920 = true + yyc1894 = true + yyrr1894 = len(yyv1894) + } else if yyl1894 != len(yyv1894) { + yyv1894 = yyv1894[:yyl1894] + yyc1894 = true } - yyj1920 := 0 - for ; yyj1920 < yyrr1920; yyj1920++ { - yyh1920.ElemContainerState(yyj1920) + yyj1894 := 0 + for ; yyj1894 < yyrr1894; yyj1894++ { + yyh1894.ElemContainerState(yyj1894) if r.TryDecodeAsNil() { - yyv1920[yyj1920] = "" + yyv1894[yyj1894] = "" } else { - yyv1920[yyj1920] = pkg2_v1.Capability(r.DecodeString()) + yyv1894[yyj1894] = pkg2_v1.Capability(r.DecodeString()) } } - if yyrt1920 { - for ; yyj1920 < yyl1920; yyj1920++ { - yyv1920 = append(yyv1920, "") - yyh1920.ElemContainerState(yyj1920) + if yyrt1894 { + for ; yyj1894 < yyl1894; yyj1894++ { + yyv1894 = append(yyv1894, "") + yyh1894.ElemContainerState(yyj1894) if r.TryDecodeAsNil() { - yyv1920[yyj1920] = "" + yyv1894[yyj1894] = "" } else { - yyv1920[yyj1920] = pkg2_v1.Capability(r.DecodeString()) + yyv1894[yyj1894] = pkg2_v1.Capability(r.DecodeString()) } } } } else { - yyj1920 := 0 - for ; !r.CheckBreak(); yyj1920++ { + yyj1894 := 0 + for ; !r.CheckBreak(); yyj1894++ { - if yyj1920 >= len(yyv1920) { - yyv1920 = append(yyv1920, "") // var yyz1920 pkg2_v1.Capability - yyc1920 = true + if yyj1894 >= len(yyv1894) { + yyv1894 = append(yyv1894, "") // var yyz1894 pkg2_v1.Capability + yyc1894 = true } - yyh1920.ElemContainerState(yyj1920) - if yyj1920 < len(yyv1920) { + yyh1894.ElemContainerState(yyj1894) + if yyj1894 < len(yyv1894) { if r.TryDecodeAsNil() { - yyv1920[yyj1920] = "" + yyv1894[yyj1894] = "" } else { - yyv1920[yyj1920] = pkg2_v1.Capability(r.DecodeString()) + yyv1894[yyj1894] = pkg2_v1.Capability(r.DecodeString()) } } else { @@ -23487,17 +23188,17 @@ func (x codecSelfer1234) decSlicev1_Capability(v *[]pkg2_v1.Capability, d *codec } } - if yyj1920 < len(yyv1920) { - yyv1920 = yyv1920[:yyj1920] - yyc1920 = true - } else if yyj1920 == 0 && yyv1920 == nil { - yyv1920 = []pkg2_v1.Capability{} - yyc1920 = true + if yyj1894 < len(yyv1894) { + yyv1894 = yyv1894[:yyj1894] + yyc1894 = true + } else if yyj1894 == 0 && yyv1894 == nil { + yyv1894 = []pkg2_v1.Capability{} + yyc1894 = true } } - yyh1920.End() - if yyc1920 { - *v = yyv1920 + yyh1894.End() + if yyc1894 { + *v = yyv1894 } } @@ -23506,9 +23207,9 @@ func (x codecSelfer1234) encSliceFSType(v []FSType, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1924 := range v { + for _, yyv1898 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv1924.CodecEncodeSelf(e) + yyv1898.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23518,75 +23219,75 @@ func (x codecSelfer1234) decSliceFSType(v *[]FSType, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1925 := *v - yyh1925, yyl1925 := z.DecSliceHelperStart() - var yyc1925 bool - if yyl1925 == 0 { - if yyv1925 == nil { - yyv1925 = []FSType{} - yyc1925 = true - } else if len(yyv1925) != 0 { - yyv1925 = yyv1925[:0] - yyc1925 = true + yyv1899 := *v + yyh1899, yyl1899 := z.DecSliceHelperStart() + var yyc1899 bool + if yyl1899 == 0 { + if yyv1899 == nil { + yyv1899 = []FSType{} + yyc1899 = true + } else if len(yyv1899) != 0 { + yyv1899 = yyv1899[:0] + yyc1899 = true } - } else if yyl1925 > 0 { - var yyrr1925, yyrl1925 int - var yyrt1925 bool - if yyl1925 > cap(yyv1925) { + } else if yyl1899 > 0 { + var yyrr1899, yyrl1899 int + var yyrt1899 bool + if yyl1899 > cap(yyv1899) { - yyrl1925, yyrt1925 = z.DecInferLen(yyl1925, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1925 { - if yyrl1925 <= cap(yyv1925) { - yyv1925 = yyv1925[:yyrl1925] + yyrl1899, yyrt1899 = z.DecInferLen(yyl1899, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1899 { + if yyrl1899 <= cap(yyv1899) { + yyv1899 = yyv1899[:yyrl1899] } else { - yyv1925 = make([]FSType, yyrl1925) + yyv1899 = make([]FSType, yyrl1899) } } else { - yyv1925 = make([]FSType, yyrl1925) + yyv1899 = make([]FSType, yyrl1899) } - yyc1925 = true - yyrr1925 = len(yyv1925) - } else if yyl1925 != len(yyv1925) { - yyv1925 = yyv1925[:yyl1925] - yyc1925 = true + yyc1899 = true + yyrr1899 = len(yyv1899) + } else if yyl1899 != len(yyv1899) { + yyv1899 = yyv1899[:yyl1899] + yyc1899 = true } - yyj1925 := 0 - for ; yyj1925 < yyrr1925; yyj1925++ { - yyh1925.ElemContainerState(yyj1925) + yyj1899 := 0 + for ; yyj1899 < yyrr1899; yyj1899++ { + yyh1899.ElemContainerState(yyj1899) if r.TryDecodeAsNil() { - yyv1925[yyj1925] = "" + yyv1899[yyj1899] = "" } else { - yyv1925[yyj1925] = FSType(r.DecodeString()) + yyv1899[yyj1899] = FSType(r.DecodeString()) } } - if yyrt1925 { - for ; yyj1925 < yyl1925; yyj1925++ { - yyv1925 = append(yyv1925, "") - yyh1925.ElemContainerState(yyj1925) + if yyrt1899 { + for ; yyj1899 < yyl1899; yyj1899++ { + yyv1899 = append(yyv1899, "") + yyh1899.ElemContainerState(yyj1899) if r.TryDecodeAsNil() { - yyv1925[yyj1925] = "" + yyv1899[yyj1899] = "" } else { - yyv1925[yyj1925] = FSType(r.DecodeString()) + yyv1899[yyj1899] = FSType(r.DecodeString()) } } } } else { - yyj1925 := 0 - for ; !r.CheckBreak(); yyj1925++ { + yyj1899 := 0 + for ; !r.CheckBreak(); yyj1899++ { - if yyj1925 >= len(yyv1925) { - yyv1925 = append(yyv1925, "") // var yyz1925 FSType - yyc1925 = true + if yyj1899 >= len(yyv1899) { + yyv1899 = append(yyv1899, "") // var yyz1899 FSType + yyc1899 = true } - yyh1925.ElemContainerState(yyj1925) - if yyj1925 < len(yyv1925) { + yyh1899.ElemContainerState(yyj1899) + if yyj1899 < len(yyv1899) { if r.TryDecodeAsNil() { - yyv1925[yyj1925] = "" + yyv1899[yyj1899] = "" } else { - yyv1925[yyj1925] = FSType(r.DecodeString()) + yyv1899[yyj1899] = FSType(r.DecodeString()) } } else { @@ -23594,17 +23295,17 @@ func (x codecSelfer1234) decSliceFSType(v *[]FSType, d *codec1978.Decoder) { } } - if yyj1925 < len(yyv1925) { - yyv1925 = yyv1925[:yyj1925] - yyc1925 = true - } else if yyj1925 == 0 && yyv1925 == nil { - yyv1925 = []FSType{} - yyc1925 = true + if yyj1899 < len(yyv1899) { + yyv1899 = yyv1899[:yyj1899] + yyc1899 = true + } else if yyj1899 == 0 && yyv1899 == nil { + yyv1899 = []FSType{} + yyc1899 = true } } - yyh1925.End() - if yyc1925 { - *v = yyv1925 + yyh1899.End() + if yyc1899 { + *v = yyv1899 } } @@ -23613,10 +23314,10 @@ func (x codecSelfer1234) encSliceHostPortRange(v []HostPortRange, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1929 := range v { + for _, yyv1903 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1930 := &yyv1929 - yy1930.CodecEncodeSelf(e) + yy1904 := &yyv1903 + yy1904.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23626,83 +23327,83 @@ func (x codecSelfer1234) decSliceHostPortRange(v *[]HostPortRange, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1931 := *v - yyh1931, yyl1931 := z.DecSliceHelperStart() - var yyc1931 bool - if yyl1931 == 0 { - if yyv1931 == nil { - yyv1931 = []HostPortRange{} - yyc1931 = true - } else if len(yyv1931) != 0 { - yyv1931 = yyv1931[:0] - yyc1931 = true + yyv1905 := *v + yyh1905, yyl1905 := z.DecSliceHelperStart() + var yyc1905 bool + if yyl1905 == 0 { + if yyv1905 == nil { + yyv1905 = []HostPortRange{} + yyc1905 = true + } else if len(yyv1905) != 0 { + yyv1905 = yyv1905[:0] + yyc1905 = true } - } else if yyl1931 > 0 { - var yyrr1931, yyrl1931 int - var yyrt1931 bool - if yyl1931 > cap(yyv1931) { + } else if yyl1905 > 0 { + var yyrr1905, yyrl1905 int + var yyrt1905 bool + if yyl1905 > cap(yyv1905) { - yyrg1931 := len(yyv1931) > 0 - yyv21931 := yyv1931 - yyrl1931, yyrt1931 = z.DecInferLen(yyl1931, z.DecBasicHandle().MaxInitLen, 8) - if yyrt1931 { - if yyrl1931 <= cap(yyv1931) { - yyv1931 = yyv1931[:yyrl1931] + yyrg1905 := len(yyv1905) > 0 + yyv21905 := yyv1905 + yyrl1905, yyrt1905 = z.DecInferLen(yyl1905, z.DecBasicHandle().MaxInitLen, 8) + if yyrt1905 { + if yyrl1905 <= cap(yyv1905) { + yyv1905 = yyv1905[:yyrl1905] } else { - yyv1931 = make([]HostPortRange, yyrl1931) + yyv1905 = make([]HostPortRange, yyrl1905) } } else { - yyv1931 = make([]HostPortRange, yyrl1931) + yyv1905 = make([]HostPortRange, yyrl1905) } - yyc1931 = true - yyrr1931 = len(yyv1931) - if yyrg1931 { - copy(yyv1931, yyv21931) + yyc1905 = true + yyrr1905 = len(yyv1905) + if yyrg1905 { + copy(yyv1905, yyv21905) } - } else if yyl1931 != len(yyv1931) { - yyv1931 = yyv1931[:yyl1931] - yyc1931 = true + } else if yyl1905 != len(yyv1905) { + yyv1905 = yyv1905[:yyl1905] + yyc1905 = true } - yyj1931 := 0 - for ; yyj1931 < yyrr1931; yyj1931++ { - yyh1931.ElemContainerState(yyj1931) + yyj1905 := 0 + for ; yyj1905 < yyrr1905; yyj1905++ { + yyh1905.ElemContainerState(yyj1905) if r.TryDecodeAsNil() { - yyv1931[yyj1931] = HostPortRange{} + yyv1905[yyj1905] = HostPortRange{} } else { - yyv1932 := &yyv1931[yyj1931] - yyv1932.CodecDecodeSelf(d) + yyv1906 := &yyv1905[yyj1905] + yyv1906.CodecDecodeSelf(d) } } - if yyrt1931 { - for ; yyj1931 < yyl1931; yyj1931++ { - yyv1931 = append(yyv1931, HostPortRange{}) - yyh1931.ElemContainerState(yyj1931) + if yyrt1905 { + for ; yyj1905 < yyl1905; yyj1905++ { + yyv1905 = append(yyv1905, HostPortRange{}) + yyh1905.ElemContainerState(yyj1905) if r.TryDecodeAsNil() { - yyv1931[yyj1931] = HostPortRange{} + yyv1905[yyj1905] = HostPortRange{} } else { - yyv1933 := &yyv1931[yyj1931] - yyv1933.CodecDecodeSelf(d) + yyv1907 := &yyv1905[yyj1905] + yyv1907.CodecDecodeSelf(d) } } } } else { - yyj1931 := 0 - for ; !r.CheckBreak(); yyj1931++ { + yyj1905 := 0 + for ; !r.CheckBreak(); yyj1905++ { - if yyj1931 >= len(yyv1931) { - yyv1931 = append(yyv1931, HostPortRange{}) // var yyz1931 HostPortRange - yyc1931 = true + if yyj1905 >= len(yyv1905) { + yyv1905 = append(yyv1905, HostPortRange{}) // var yyz1905 HostPortRange + yyc1905 = true } - yyh1931.ElemContainerState(yyj1931) - if yyj1931 < len(yyv1931) { + yyh1905.ElemContainerState(yyj1905) + if yyj1905 < len(yyv1905) { if r.TryDecodeAsNil() { - yyv1931[yyj1931] = HostPortRange{} + yyv1905[yyj1905] = HostPortRange{} } else { - yyv1934 := &yyv1931[yyj1931] - yyv1934.CodecDecodeSelf(d) + yyv1908 := &yyv1905[yyj1905] + yyv1908.CodecDecodeSelf(d) } } else { @@ -23710,17 +23411,17 @@ func (x codecSelfer1234) decSliceHostPortRange(v *[]HostPortRange, d *codec1978. } } - if yyj1931 < len(yyv1931) { - yyv1931 = yyv1931[:yyj1931] - yyc1931 = true - } else if yyj1931 == 0 && yyv1931 == nil { - yyv1931 = []HostPortRange{} - yyc1931 = true + if yyj1905 < len(yyv1905) { + yyv1905 = yyv1905[:yyj1905] + yyc1905 = true + } else if yyj1905 == 0 && yyv1905 == nil { + yyv1905 = []HostPortRange{} + yyc1905 = true } } - yyh1931.End() - if yyc1931 { - *v = yyv1931 + yyh1905.End() + if yyc1905 { + *v = yyv1905 } } @@ -23729,10 +23430,10 @@ func (x codecSelfer1234) encSliceIDRange(v []IDRange, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1935 := range v { + for _, yyv1909 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1936 := &yyv1935 - yy1936.CodecEncodeSelf(e) + yy1910 := &yyv1909 + yy1910.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23742,83 +23443,83 @@ func (x codecSelfer1234) decSliceIDRange(v *[]IDRange, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1937 := *v - yyh1937, yyl1937 := z.DecSliceHelperStart() - var yyc1937 bool - if yyl1937 == 0 { - if yyv1937 == nil { - yyv1937 = []IDRange{} - yyc1937 = true - } else if len(yyv1937) != 0 { - yyv1937 = yyv1937[:0] - yyc1937 = true + yyv1911 := *v + yyh1911, yyl1911 := z.DecSliceHelperStart() + var yyc1911 bool + if yyl1911 == 0 { + if yyv1911 == nil { + yyv1911 = []IDRange{} + yyc1911 = true + } else if len(yyv1911) != 0 { + yyv1911 = yyv1911[:0] + yyc1911 = true } - } else if yyl1937 > 0 { - var yyrr1937, yyrl1937 int - var yyrt1937 bool - if yyl1937 > cap(yyv1937) { + } else if yyl1911 > 0 { + var yyrr1911, yyrl1911 int + var yyrt1911 bool + if yyl1911 > cap(yyv1911) { - yyrg1937 := len(yyv1937) > 0 - yyv21937 := yyv1937 - yyrl1937, yyrt1937 = z.DecInferLen(yyl1937, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1937 { - if yyrl1937 <= cap(yyv1937) { - yyv1937 = yyv1937[:yyrl1937] + yyrg1911 := len(yyv1911) > 0 + yyv21911 := yyv1911 + yyrl1911, yyrt1911 = z.DecInferLen(yyl1911, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1911 { + if yyrl1911 <= cap(yyv1911) { + yyv1911 = yyv1911[:yyrl1911] } else { - yyv1937 = make([]IDRange, yyrl1937) + yyv1911 = make([]IDRange, yyrl1911) } } else { - yyv1937 = make([]IDRange, yyrl1937) + yyv1911 = make([]IDRange, yyrl1911) } - yyc1937 = true - yyrr1937 = len(yyv1937) - if yyrg1937 { - copy(yyv1937, yyv21937) + yyc1911 = true + yyrr1911 = len(yyv1911) + if yyrg1911 { + copy(yyv1911, yyv21911) } - } else if yyl1937 != len(yyv1937) { - yyv1937 = yyv1937[:yyl1937] - yyc1937 = true + } else if yyl1911 != len(yyv1911) { + yyv1911 = yyv1911[:yyl1911] + yyc1911 = true } - yyj1937 := 0 - for ; yyj1937 < yyrr1937; yyj1937++ { - yyh1937.ElemContainerState(yyj1937) + yyj1911 := 0 + for ; yyj1911 < yyrr1911; yyj1911++ { + yyh1911.ElemContainerState(yyj1911) if r.TryDecodeAsNil() { - yyv1937[yyj1937] = IDRange{} + yyv1911[yyj1911] = IDRange{} } else { - yyv1938 := &yyv1937[yyj1937] - yyv1938.CodecDecodeSelf(d) + yyv1912 := &yyv1911[yyj1911] + yyv1912.CodecDecodeSelf(d) } } - if yyrt1937 { - for ; yyj1937 < yyl1937; yyj1937++ { - yyv1937 = append(yyv1937, IDRange{}) - yyh1937.ElemContainerState(yyj1937) + if yyrt1911 { + for ; yyj1911 < yyl1911; yyj1911++ { + yyv1911 = append(yyv1911, IDRange{}) + yyh1911.ElemContainerState(yyj1911) if r.TryDecodeAsNil() { - yyv1937[yyj1937] = IDRange{} + yyv1911[yyj1911] = IDRange{} } else { - yyv1939 := &yyv1937[yyj1937] - yyv1939.CodecDecodeSelf(d) + yyv1913 := &yyv1911[yyj1911] + yyv1913.CodecDecodeSelf(d) } } } } else { - yyj1937 := 0 - for ; !r.CheckBreak(); yyj1937++ { + yyj1911 := 0 + for ; !r.CheckBreak(); yyj1911++ { - if yyj1937 >= len(yyv1937) { - yyv1937 = append(yyv1937, IDRange{}) // var yyz1937 IDRange - yyc1937 = true + if yyj1911 >= len(yyv1911) { + yyv1911 = append(yyv1911, IDRange{}) // var yyz1911 IDRange + yyc1911 = true } - yyh1937.ElemContainerState(yyj1937) - if yyj1937 < len(yyv1937) { + yyh1911.ElemContainerState(yyj1911) + if yyj1911 < len(yyv1911) { if r.TryDecodeAsNil() { - yyv1937[yyj1937] = IDRange{} + yyv1911[yyj1911] = IDRange{} } else { - yyv1940 := &yyv1937[yyj1937] - yyv1940.CodecDecodeSelf(d) + yyv1914 := &yyv1911[yyj1911] + yyv1914.CodecDecodeSelf(d) } } else { @@ -23826,17 +23527,17 @@ func (x codecSelfer1234) decSliceIDRange(v *[]IDRange, d *codec1978.Decoder) { } } - if yyj1937 < len(yyv1937) { - yyv1937 = yyv1937[:yyj1937] - yyc1937 = true - } else if yyj1937 == 0 && yyv1937 == nil { - yyv1937 = []IDRange{} - yyc1937 = true + if yyj1911 < len(yyv1911) { + yyv1911 = yyv1911[:yyj1911] + yyc1911 = true + } else if yyj1911 == 0 && yyv1911 == nil { + yyv1911 = []IDRange{} + yyc1911 = true } } - yyh1937.End() - if yyc1937 { - *v = yyv1937 + yyh1911.End() + if yyc1911 { + *v = yyv1911 } } @@ -23845,10 +23546,10 @@ func (x codecSelfer1234) encSlicePodSecurityPolicy(v []PodSecurityPolicy, e *cod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1941 := range v { + for _, yyv1915 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1942 := &yyv1941 - yy1942.CodecEncodeSelf(e) + yy1916 := &yyv1915 + yy1916.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23858,83 +23559,83 @@ func (x codecSelfer1234) decSlicePodSecurityPolicy(v *[]PodSecurityPolicy, d *co z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1943 := *v - yyh1943, yyl1943 := z.DecSliceHelperStart() - var yyc1943 bool - if yyl1943 == 0 { - if yyv1943 == nil { - yyv1943 = []PodSecurityPolicy{} - yyc1943 = true - } else if len(yyv1943) != 0 { - yyv1943 = yyv1943[:0] - yyc1943 = true + yyv1917 := *v + yyh1917, yyl1917 := z.DecSliceHelperStart() + var yyc1917 bool + if yyl1917 == 0 { + if yyv1917 == nil { + yyv1917 = []PodSecurityPolicy{} + yyc1917 = true + } else if len(yyv1917) != 0 { + yyv1917 = yyv1917[:0] + yyc1917 = true } - } else if yyl1943 > 0 { - var yyrr1943, yyrl1943 int - var yyrt1943 bool - if yyl1943 > cap(yyv1943) { + } else if yyl1917 > 0 { + var yyrr1917, yyrl1917 int + var yyrt1917 bool + if yyl1917 > cap(yyv1917) { - yyrg1943 := len(yyv1943) > 0 - yyv21943 := yyv1943 - yyrl1943, yyrt1943 = z.DecInferLen(yyl1943, z.DecBasicHandle().MaxInitLen, 552) - if yyrt1943 { - if yyrl1943 <= cap(yyv1943) { - yyv1943 = yyv1943[:yyrl1943] + yyrg1917 := len(yyv1917) > 0 + yyv21917 := yyv1917 + yyrl1917, yyrt1917 = z.DecInferLen(yyl1917, z.DecBasicHandle().MaxInitLen, 552) + if yyrt1917 { + if yyrl1917 <= cap(yyv1917) { + yyv1917 = yyv1917[:yyrl1917] } else { - yyv1943 = make([]PodSecurityPolicy, yyrl1943) + yyv1917 = make([]PodSecurityPolicy, yyrl1917) } } else { - yyv1943 = make([]PodSecurityPolicy, yyrl1943) + yyv1917 = make([]PodSecurityPolicy, yyrl1917) } - yyc1943 = true - yyrr1943 = len(yyv1943) - if yyrg1943 { - copy(yyv1943, yyv21943) + yyc1917 = true + yyrr1917 = len(yyv1917) + if yyrg1917 { + copy(yyv1917, yyv21917) } - } else if yyl1943 != len(yyv1943) { - yyv1943 = yyv1943[:yyl1943] - yyc1943 = true + } else if yyl1917 != len(yyv1917) { + yyv1917 = yyv1917[:yyl1917] + yyc1917 = true } - yyj1943 := 0 - for ; yyj1943 < yyrr1943; yyj1943++ { - yyh1943.ElemContainerState(yyj1943) + yyj1917 := 0 + for ; yyj1917 < yyrr1917; yyj1917++ { + yyh1917.ElemContainerState(yyj1917) if r.TryDecodeAsNil() { - yyv1943[yyj1943] = PodSecurityPolicy{} + yyv1917[yyj1917] = PodSecurityPolicy{} } else { - yyv1944 := &yyv1943[yyj1943] - yyv1944.CodecDecodeSelf(d) + yyv1918 := &yyv1917[yyj1917] + yyv1918.CodecDecodeSelf(d) } } - if yyrt1943 { - for ; yyj1943 < yyl1943; yyj1943++ { - yyv1943 = append(yyv1943, PodSecurityPolicy{}) - yyh1943.ElemContainerState(yyj1943) + if yyrt1917 { + for ; yyj1917 < yyl1917; yyj1917++ { + yyv1917 = append(yyv1917, PodSecurityPolicy{}) + yyh1917.ElemContainerState(yyj1917) if r.TryDecodeAsNil() { - yyv1943[yyj1943] = PodSecurityPolicy{} + yyv1917[yyj1917] = PodSecurityPolicy{} } else { - yyv1945 := &yyv1943[yyj1943] - yyv1945.CodecDecodeSelf(d) + yyv1919 := &yyv1917[yyj1917] + yyv1919.CodecDecodeSelf(d) } } } } else { - yyj1943 := 0 - for ; !r.CheckBreak(); yyj1943++ { + yyj1917 := 0 + for ; !r.CheckBreak(); yyj1917++ { - if yyj1943 >= len(yyv1943) { - yyv1943 = append(yyv1943, PodSecurityPolicy{}) // var yyz1943 PodSecurityPolicy - yyc1943 = true + if yyj1917 >= len(yyv1917) { + yyv1917 = append(yyv1917, PodSecurityPolicy{}) // var yyz1917 PodSecurityPolicy + yyc1917 = true } - yyh1943.ElemContainerState(yyj1943) - if yyj1943 < len(yyv1943) { + yyh1917.ElemContainerState(yyj1917) + if yyj1917 < len(yyv1917) { if r.TryDecodeAsNil() { - yyv1943[yyj1943] = PodSecurityPolicy{} + yyv1917[yyj1917] = PodSecurityPolicy{} } else { - yyv1946 := &yyv1943[yyj1943] - yyv1946.CodecDecodeSelf(d) + yyv1920 := &yyv1917[yyj1917] + yyv1920.CodecDecodeSelf(d) } } else { @@ -23942,17 +23643,17 @@ func (x codecSelfer1234) decSlicePodSecurityPolicy(v *[]PodSecurityPolicy, d *co } } - if yyj1943 < len(yyv1943) { - yyv1943 = yyv1943[:yyj1943] - yyc1943 = true - } else if yyj1943 == 0 && yyv1943 == nil { - yyv1943 = []PodSecurityPolicy{} - yyc1943 = true + if yyj1917 < len(yyv1917) { + yyv1917 = yyv1917[:yyj1917] + yyc1917 = true + } else if yyj1917 == 0 && yyv1917 == nil { + yyv1917 = []PodSecurityPolicy{} + yyc1917 = true } } - yyh1943.End() - if yyc1943 { - *v = yyv1943 + yyh1917.End() + if yyc1917 { + *v = yyv1917 } } @@ -23961,10 +23662,10 @@ func (x codecSelfer1234) encSliceNetworkPolicyIngressRule(v []NetworkPolicyIngre z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1947 := range v { + for _, yyv1921 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1948 := &yyv1947 - yy1948.CodecEncodeSelf(e) + yy1922 := &yyv1921 + yy1922.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23974,83 +23675,83 @@ func (x codecSelfer1234) decSliceNetworkPolicyIngressRule(v *[]NetworkPolicyIngr z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1949 := *v - yyh1949, yyl1949 := z.DecSliceHelperStart() - var yyc1949 bool - if yyl1949 == 0 { - if yyv1949 == nil { - yyv1949 = []NetworkPolicyIngressRule{} - yyc1949 = true - } else if len(yyv1949) != 0 { - yyv1949 = yyv1949[:0] - yyc1949 = true + yyv1923 := *v + yyh1923, yyl1923 := z.DecSliceHelperStart() + var yyc1923 bool + if yyl1923 == 0 { + if yyv1923 == nil { + yyv1923 = []NetworkPolicyIngressRule{} + yyc1923 = true + } else if len(yyv1923) != 0 { + yyv1923 = yyv1923[:0] + yyc1923 = true } - } else if yyl1949 > 0 { - var yyrr1949, yyrl1949 int - var yyrt1949 bool - if yyl1949 > cap(yyv1949) { + } else if yyl1923 > 0 { + var yyrr1923, yyrl1923 int + var yyrt1923 bool + if yyl1923 > cap(yyv1923) { - yyrg1949 := len(yyv1949) > 0 - yyv21949 := yyv1949 - yyrl1949, yyrt1949 = z.DecInferLen(yyl1949, z.DecBasicHandle().MaxInitLen, 48) - if yyrt1949 { - if yyrl1949 <= cap(yyv1949) { - yyv1949 = yyv1949[:yyrl1949] + yyrg1923 := len(yyv1923) > 0 + yyv21923 := yyv1923 + yyrl1923, yyrt1923 = z.DecInferLen(yyl1923, z.DecBasicHandle().MaxInitLen, 48) + if yyrt1923 { + if yyrl1923 <= cap(yyv1923) { + yyv1923 = yyv1923[:yyrl1923] } else { - yyv1949 = make([]NetworkPolicyIngressRule, yyrl1949) + yyv1923 = make([]NetworkPolicyIngressRule, yyrl1923) } } else { - yyv1949 = make([]NetworkPolicyIngressRule, yyrl1949) + yyv1923 = make([]NetworkPolicyIngressRule, yyrl1923) } - yyc1949 = true - yyrr1949 = len(yyv1949) - if yyrg1949 { - copy(yyv1949, yyv21949) + yyc1923 = true + yyrr1923 = len(yyv1923) + if yyrg1923 { + copy(yyv1923, yyv21923) } - } else if yyl1949 != len(yyv1949) { - yyv1949 = yyv1949[:yyl1949] - yyc1949 = true + } else if yyl1923 != len(yyv1923) { + yyv1923 = yyv1923[:yyl1923] + yyc1923 = true } - yyj1949 := 0 - for ; yyj1949 < yyrr1949; yyj1949++ { - yyh1949.ElemContainerState(yyj1949) + yyj1923 := 0 + for ; yyj1923 < yyrr1923; yyj1923++ { + yyh1923.ElemContainerState(yyj1923) if r.TryDecodeAsNil() { - yyv1949[yyj1949] = NetworkPolicyIngressRule{} + yyv1923[yyj1923] = NetworkPolicyIngressRule{} } else { - yyv1950 := &yyv1949[yyj1949] - yyv1950.CodecDecodeSelf(d) + yyv1924 := &yyv1923[yyj1923] + yyv1924.CodecDecodeSelf(d) } } - if yyrt1949 { - for ; yyj1949 < yyl1949; yyj1949++ { - yyv1949 = append(yyv1949, NetworkPolicyIngressRule{}) - yyh1949.ElemContainerState(yyj1949) + if yyrt1923 { + for ; yyj1923 < yyl1923; yyj1923++ { + yyv1923 = append(yyv1923, NetworkPolicyIngressRule{}) + yyh1923.ElemContainerState(yyj1923) if r.TryDecodeAsNil() { - yyv1949[yyj1949] = NetworkPolicyIngressRule{} + yyv1923[yyj1923] = NetworkPolicyIngressRule{} } else { - yyv1951 := &yyv1949[yyj1949] - yyv1951.CodecDecodeSelf(d) + yyv1925 := &yyv1923[yyj1923] + yyv1925.CodecDecodeSelf(d) } } } } else { - yyj1949 := 0 - for ; !r.CheckBreak(); yyj1949++ { + yyj1923 := 0 + for ; !r.CheckBreak(); yyj1923++ { - if yyj1949 >= len(yyv1949) { - yyv1949 = append(yyv1949, NetworkPolicyIngressRule{}) // var yyz1949 NetworkPolicyIngressRule - yyc1949 = true + if yyj1923 >= len(yyv1923) { + yyv1923 = append(yyv1923, NetworkPolicyIngressRule{}) // var yyz1923 NetworkPolicyIngressRule + yyc1923 = true } - yyh1949.ElemContainerState(yyj1949) - if yyj1949 < len(yyv1949) { + yyh1923.ElemContainerState(yyj1923) + if yyj1923 < len(yyv1923) { if r.TryDecodeAsNil() { - yyv1949[yyj1949] = NetworkPolicyIngressRule{} + yyv1923[yyj1923] = NetworkPolicyIngressRule{} } else { - yyv1952 := &yyv1949[yyj1949] - yyv1952.CodecDecodeSelf(d) + yyv1926 := &yyv1923[yyj1923] + yyv1926.CodecDecodeSelf(d) } } else { @@ -24058,17 +23759,17 @@ func (x codecSelfer1234) decSliceNetworkPolicyIngressRule(v *[]NetworkPolicyIngr } } - if yyj1949 < len(yyv1949) { - yyv1949 = yyv1949[:yyj1949] - yyc1949 = true - } else if yyj1949 == 0 && yyv1949 == nil { - yyv1949 = []NetworkPolicyIngressRule{} - yyc1949 = true + if yyj1923 < len(yyv1923) { + yyv1923 = yyv1923[:yyj1923] + yyc1923 = true + } else if yyj1923 == 0 && yyv1923 == nil { + yyv1923 = []NetworkPolicyIngressRule{} + yyc1923 = true } } - yyh1949.End() - if yyc1949 { - *v = yyv1949 + yyh1923.End() + if yyc1923 { + *v = yyv1923 } } @@ -24077,10 +23778,10 @@ func (x codecSelfer1234) encSliceNetworkPolicyPort(v []NetworkPolicyPort, e *cod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1953 := range v { + for _, yyv1927 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1954 := &yyv1953 - yy1954.CodecEncodeSelf(e) + yy1928 := &yyv1927 + yy1928.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24090,83 +23791,83 @@ func (x codecSelfer1234) decSliceNetworkPolicyPort(v *[]NetworkPolicyPort, d *co z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1955 := *v - yyh1955, yyl1955 := z.DecSliceHelperStart() - var yyc1955 bool - if yyl1955 == 0 { - if yyv1955 == nil { - yyv1955 = []NetworkPolicyPort{} - yyc1955 = true - } else if len(yyv1955) != 0 { - yyv1955 = yyv1955[:0] - yyc1955 = true + yyv1929 := *v + yyh1929, yyl1929 := z.DecSliceHelperStart() + var yyc1929 bool + if yyl1929 == 0 { + if yyv1929 == nil { + yyv1929 = []NetworkPolicyPort{} + yyc1929 = true + } else if len(yyv1929) != 0 { + yyv1929 = yyv1929[:0] + yyc1929 = true } - } else if yyl1955 > 0 { - var yyrr1955, yyrl1955 int - var yyrt1955 bool - if yyl1955 > cap(yyv1955) { + } else if yyl1929 > 0 { + var yyrr1929, yyrl1929 int + var yyrt1929 bool + if yyl1929 > cap(yyv1929) { - yyrg1955 := len(yyv1955) > 0 - yyv21955 := yyv1955 - yyrl1955, yyrt1955 = z.DecInferLen(yyl1955, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1955 { - if yyrl1955 <= cap(yyv1955) { - yyv1955 = yyv1955[:yyrl1955] + yyrg1929 := len(yyv1929) > 0 + yyv21929 := yyv1929 + yyrl1929, yyrt1929 = z.DecInferLen(yyl1929, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1929 { + if yyrl1929 <= cap(yyv1929) { + yyv1929 = yyv1929[:yyrl1929] } else { - yyv1955 = make([]NetworkPolicyPort, yyrl1955) + yyv1929 = make([]NetworkPolicyPort, yyrl1929) } } else { - yyv1955 = make([]NetworkPolicyPort, yyrl1955) + yyv1929 = make([]NetworkPolicyPort, yyrl1929) } - yyc1955 = true - yyrr1955 = len(yyv1955) - if yyrg1955 { - copy(yyv1955, yyv21955) + yyc1929 = true + yyrr1929 = len(yyv1929) + if yyrg1929 { + copy(yyv1929, yyv21929) } - } else if yyl1955 != len(yyv1955) { - yyv1955 = yyv1955[:yyl1955] - yyc1955 = true + } else if yyl1929 != len(yyv1929) { + yyv1929 = yyv1929[:yyl1929] + yyc1929 = true } - yyj1955 := 0 - for ; yyj1955 < yyrr1955; yyj1955++ { - yyh1955.ElemContainerState(yyj1955) + yyj1929 := 0 + for ; yyj1929 < yyrr1929; yyj1929++ { + yyh1929.ElemContainerState(yyj1929) if r.TryDecodeAsNil() { - yyv1955[yyj1955] = NetworkPolicyPort{} + yyv1929[yyj1929] = NetworkPolicyPort{} } else { - yyv1956 := &yyv1955[yyj1955] - yyv1956.CodecDecodeSelf(d) + yyv1930 := &yyv1929[yyj1929] + yyv1930.CodecDecodeSelf(d) } } - if yyrt1955 { - for ; yyj1955 < yyl1955; yyj1955++ { - yyv1955 = append(yyv1955, NetworkPolicyPort{}) - yyh1955.ElemContainerState(yyj1955) + if yyrt1929 { + for ; yyj1929 < yyl1929; yyj1929++ { + yyv1929 = append(yyv1929, NetworkPolicyPort{}) + yyh1929.ElemContainerState(yyj1929) if r.TryDecodeAsNil() { - yyv1955[yyj1955] = NetworkPolicyPort{} + yyv1929[yyj1929] = NetworkPolicyPort{} } else { - yyv1957 := &yyv1955[yyj1955] - yyv1957.CodecDecodeSelf(d) + yyv1931 := &yyv1929[yyj1929] + yyv1931.CodecDecodeSelf(d) } } } } else { - yyj1955 := 0 - for ; !r.CheckBreak(); yyj1955++ { + yyj1929 := 0 + for ; !r.CheckBreak(); yyj1929++ { - if yyj1955 >= len(yyv1955) { - yyv1955 = append(yyv1955, NetworkPolicyPort{}) // var yyz1955 NetworkPolicyPort - yyc1955 = true + if yyj1929 >= len(yyv1929) { + yyv1929 = append(yyv1929, NetworkPolicyPort{}) // var yyz1929 NetworkPolicyPort + yyc1929 = true } - yyh1955.ElemContainerState(yyj1955) - if yyj1955 < len(yyv1955) { + yyh1929.ElemContainerState(yyj1929) + if yyj1929 < len(yyv1929) { if r.TryDecodeAsNil() { - yyv1955[yyj1955] = NetworkPolicyPort{} + yyv1929[yyj1929] = NetworkPolicyPort{} } else { - yyv1958 := &yyv1955[yyj1955] - yyv1958.CodecDecodeSelf(d) + yyv1932 := &yyv1929[yyj1929] + yyv1932.CodecDecodeSelf(d) } } else { @@ -24174,17 +23875,17 @@ func (x codecSelfer1234) decSliceNetworkPolicyPort(v *[]NetworkPolicyPort, d *co } } - if yyj1955 < len(yyv1955) { - yyv1955 = yyv1955[:yyj1955] - yyc1955 = true - } else if yyj1955 == 0 && yyv1955 == nil { - yyv1955 = []NetworkPolicyPort{} - yyc1955 = true + if yyj1929 < len(yyv1929) { + yyv1929 = yyv1929[:yyj1929] + yyc1929 = true + } else if yyj1929 == 0 && yyv1929 == nil { + yyv1929 = []NetworkPolicyPort{} + yyc1929 = true } } - yyh1955.End() - if yyc1955 { - *v = yyv1955 + yyh1929.End() + if yyc1929 { + *v = yyv1929 } } @@ -24193,10 +23894,10 @@ func (x codecSelfer1234) encSliceNetworkPolicyPeer(v []NetworkPolicyPeer, e *cod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1959 := range v { + for _, yyv1933 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1960 := &yyv1959 - yy1960.CodecEncodeSelf(e) + yy1934 := &yyv1933 + yy1934.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24206,83 +23907,83 @@ func (x codecSelfer1234) decSliceNetworkPolicyPeer(v *[]NetworkPolicyPeer, d *co z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1961 := *v - yyh1961, yyl1961 := z.DecSliceHelperStart() - var yyc1961 bool - if yyl1961 == 0 { - if yyv1961 == nil { - yyv1961 = []NetworkPolicyPeer{} - yyc1961 = true - } else if len(yyv1961) != 0 { - yyv1961 = yyv1961[:0] - yyc1961 = true + yyv1935 := *v + yyh1935, yyl1935 := z.DecSliceHelperStart() + var yyc1935 bool + if yyl1935 == 0 { + if yyv1935 == nil { + yyv1935 = []NetworkPolicyPeer{} + yyc1935 = true + } else if len(yyv1935) != 0 { + yyv1935 = yyv1935[:0] + yyc1935 = true } - } else if yyl1961 > 0 { - var yyrr1961, yyrl1961 int - var yyrt1961 bool - if yyl1961 > cap(yyv1961) { + } else if yyl1935 > 0 { + var yyrr1935, yyrl1935 int + var yyrt1935 bool + if yyl1935 > cap(yyv1935) { - yyrg1961 := len(yyv1961) > 0 - yyv21961 := yyv1961 - yyrl1961, yyrt1961 = z.DecInferLen(yyl1961, z.DecBasicHandle().MaxInitLen, 16) - if yyrt1961 { - if yyrl1961 <= cap(yyv1961) { - yyv1961 = yyv1961[:yyrl1961] + yyrg1935 := len(yyv1935) > 0 + yyv21935 := yyv1935 + yyrl1935, yyrt1935 = z.DecInferLen(yyl1935, z.DecBasicHandle().MaxInitLen, 16) + if yyrt1935 { + if yyrl1935 <= cap(yyv1935) { + yyv1935 = yyv1935[:yyrl1935] } else { - yyv1961 = make([]NetworkPolicyPeer, yyrl1961) + yyv1935 = make([]NetworkPolicyPeer, yyrl1935) } } else { - yyv1961 = make([]NetworkPolicyPeer, yyrl1961) + yyv1935 = make([]NetworkPolicyPeer, yyrl1935) } - yyc1961 = true - yyrr1961 = len(yyv1961) - if yyrg1961 { - copy(yyv1961, yyv21961) + yyc1935 = true + yyrr1935 = len(yyv1935) + if yyrg1935 { + copy(yyv1935, yyv21935) } - } else if yyl1961 != len(yyv1961) { - yyv1961 = yyv1961[:yyl1961] - yyc1961 = true + } else if yyl1935 != len(yyv1935) { + yyv1935 = yyv1935[:yyl1935] + yyc1935 = true } - yyj1961 := 0 - for ; yyj1961 < yyrr1961; yyj1961++ { - yyh1961.ElemContainerState(yyj1961) + yyj1935 := 0 + for ; yyj1935 < yyrr1935; yyj1935++ { + yyh1935.ElemContainerState(yyj1935) if r.TryDecodeAsNil() { - yyv1961[yyj1961] = NetworkPolicyPeer{} + yyv1935[yyj1935] = NetworkPolicyPeer{} } else { - yyv1962 := &yyv1961[yyj1961] - yyv1962.CodecDecodeSelf(d) + yyv1936 := &yyv1935[yyj1935] + yyv1936.CodecDecodeSelf(d) } } - if yyrt1961 { - for ; yyj1961 < yyl1961; yyj1961++ { - yyv1961 = append(yyv1961, NetworkPolicyPeer{}) - yyh1961.ElemContainerState(yyj1961) + if yyrt1935 { + for ; yyj1935 < yyl1935; yyj1935++ { + yyv1935 = append(yyv1935, NetworkPolicyPeer{}) + yyh1935.ElemContainerState(yyj1935) if r.TryDecodeAsNil() { - yyv1961[yyj1961] = NetworkPolicyPeer{} + yyv1935[yyj1935] = NetworkPolicyPeer{} } else { - yyv1963 := &yyv1961[yyj1961] - yyv1963.CodecDecodeSelf(d) + yyv1937 := &yyv1935[yyj1935] + yyv1937.CodecDecodeSelf(d) } } } } else { - yyj1961 := 0 - for ; !r.CheckBreak(); yyj1961++ { + yyj1935 := 0 + for ; !r.CheckBreak(); yyj1935++ { - if yyj1961 >= len(yyv1961) { - yyv1961 = append(yyv1961, NetworkPolicyPeer{}) // var yyz1961 NetworkPolicyPeer - yyc1961 = true + if yyj1935 >= len(yyv1935) { + yyv1935 = append(yyv1935, NetworkPolicyPeer{}) // var yyz1935 NetworkPolicyPeer + yyc1935 = true } - yyh1961.ElemContainerState(yyj1961) - if yyj1961 < len(yyv1961) { + yyh1935.ElemContainerState(yyj1935) + if yyj1935 < len(yyv1935) { if r.TryDecodeAsNil() { - yyv1961[yyj1961] = NetworkPolicyPeer{} + yyv1935[yyj1935] = NetworkPolicyPeer{} } else { - yyv1964 := &yyv1961[yyj1961] - yyv1964.CodecDecodeSelf(d) + yyv1938 := &yyv1935[yyj1935] + yyv1938.CodecDecodeSelf(d) } } else { @@ -24290,17 +23991,17 @@ func (x codecSelfer1234) decSliceNetworkPolicyPeer(v *[]NetworkPolicyPeer, d *co } } - if yyj1961 < len(yyv1961) { - yyv1961 = yyv1961[:yyj1961] - yyc1961 = true - } else if yyj1961 == 0 && yyv1961 == nil { - yyv1961 = []NetworkPolicyPeer{} - yyc1961 = true + if yyj1935 < len(yyv1935) { + yyv1935 = yyv1935[:yyj1935] + yyc1935 = true + } else if yyj1935 == 0 && yyv1935 == nil { + yyv1935 = []NetworkPolicyPeer{} + yyc1935 = true } } - yyh1961.End() - if yyc1961 { - *v = yyv1961 + yyh1935.End() + if yyc1935 { + *v = yyv1935 } } @@ -24309,10 +24010,10 @@ func (x codecSelfer1234) encSliceNetworkPolicy(v []NetworkPolicy, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv1965 := range v { + for _, yyv1939 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1966 := &yyv1965 - yy1966.CodecEncodeSelf(e) + yy1940 := &yyv1939 + yy1940.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24322,83 +24023,83 @@ func (x codecSelfer1234) decSliceNetworkPolicy(v *[]NetworkPolicy, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv1967 := *v - yyh1967, yyl1967 := z.DecSliceHelperStart() - var yyc1967 bool - if yyl1967 == 0 { - if yyv1967 == nil { - yyv1967 = []NetworkPolicy{} - yyc1967 = true - } else if len(yyv1967) != 0 { - yyv1967 = yyv1967[:0] - yyc1967 = true + yyv1941 := *v + yyh1941, yyl1941 := z.DecSliceHelperStart() + var yyc1941 bool + if yyl1941 == 0 { + if yyv1941 == nil { + yyv1941 = []NetworkPolicy{} + yyc1941 = true + } else if len(yyv1941) != 0 { + yyv1941 = yyv1941[:0] + yyc1941 = true } - } else if yyl1967 > 0 { - var yyrr1967, yyrl1967 int - var yyrt1967 bool - if yyl1967 > cap(yyv1967) { + } else if yyl1941 > 0 { + var yyrr1941, yyrl1941 int + var yyrt1941 bool + if yyl1941 > cap(yyv1941) { - yyrg1967 := len(yyv1967) > 0 - yyv21967 := yyv1967 - yyrl1967, yyrt1967 = z.DecInferLen(yyl1967, z.DecBasicHandle().MaxInitLen, 312) - if yyrt1967 { - if yyrl1967 <= cap(yyv1967) { - yyv1967 = yyv1967[:yyrl1967] + yyrg1941 := len(yyv1941) > 0 + yyv21941 := yyv1941 + yyrl1941, yyrt1941 = z.DecInferLen(yyl1941, z.DecBasicHandle().MaxInitLen, 312) + if yyrt1941 { + if yyrl1941 <= cap(yyv1941) { + yyv1941 = yyv1941[:yyrl1941] } else { - yyv1967 = make([]NetworkPolicy, yyrl1967) + yyv1941 = make([]NetworkPolicy, yyrl1941) } } else { - yyv1967 = make([]NetworkPolicy, yyrl1967) + yyv1941 = make([]NetworkPolicy, yyrl1941) } - yyc1967 = true - yyrr1967 = len(yyv1967) - if yyrg1967 { - copy(yyv1967, yyv21967) + yyc1941 = true + yyrr1941 = len(yyv1941) + if yyrg1941 { + copy(yyv1941, yyv21941) } - } else if yyl1967 != len(yyv1967) { - yyv1967 = yyv1967[:yyl1967] - yyc1967 = true + } else if yyl1941 != len(yyv1941) { + yyv1941 = yyv1941[:yyl1941] + yyc1941 = true } - yyj1967 := 0 - for ; yyj1967 < yyrr1967; yyj1967++ { - yyh1967.ElemContainerState(yyj1967) + yyj1941 := 0 + for ; yyj1941 < yyrr1941; yyj1941++ { + yyh1941.ElemContainerState(yyj1941) if r.TryDecodeAsNil() { - yyv1967[yyj1967] = NetworkPolicy{} + yyv1941[yyj1941] = NetworkPolicy{} } else { - yyv1968 := &yyv1967[yyj1967] - yyv1968.CodecDecodeSelf(d) + yyv1942 := &yyv1941[yyj1941] + yyv1942.CodecDecodeSelf(d) } } - if yyrt1967 { - for ; yyj1967 < yyl1967; yyj1967++ { - yyv1967 = append(yyv1967, NetworkPolicy{}) - yyh1967.ElemContainerState(yyj1967) + if yyrt1941 { + for ; yyj1941 < yyl1941; yyj1941++ { + yyv1941 = append(yyv1941, NetworkPolicy{}) + yyh1941.ElemContainerState(yyj1941) if r.TryDecodeAsNil() { - yyv1967[yyj1967] = NetworkPolicy{} + yyv1941[yyj1941] = NetworkPolicy{} } else { - yyv1969 := &yyv1967[yyj1967] - yyv1969.CodecDecodeSelf(d) + yyv1943 := &yyv1941[yyj1941] + yyv1943.CodecDecodeSelf(d) } } } } else { - yyj1967 := 0 - for ; !r.CheckBreak(); yyj1967++ { + yyj1941 := 0 + for ; !r.CheckBreak(); yyj1941++ { - if yyj1967 >= len(yyv1967) { - yyv1967 = append(yyv1967, NetworkPolicy{}) // var yyz1967 NetworkPolicy - yyc1967 = true + if yyj1941 >= len(yyv1941) { + yyv1941 = append(yyv1941, NetworkPolicy{}) // var yyz1941 NetworkPolicy + yyc1941 = true } - yyh1967.ElemContainerState(yyj1967) - if yyj1967 < len(yyv1967) { + yyh1941.ElemContainerState(yyj1941) + if yyj1941 < len(yyv1941) { if r.TryDecodeAsNil() { - yyv1967[yyj1967] = NetworkPolicy{} + yyv1941[yyj1941] = NetworkPolicy{} } else { - yyv1970 := &yyv1967[yyj1967] - yyv1970.CodecDecodeSelf(d) + yyv1944 := &yyv1941[yyj1941] + yyv1944.CodecDecodeSelf(d) } } else { @@ -24406,16 +24107,16 @@ func (x codecSelfer1234) decSliceNetworkPolicy(v *[]NetworkPolicy, d *codec1978. } } - if yyj1967 < len(yyv1967) { - yyv1967 = yyv1967[:yyj1967] - yyc1967 = true - } else if yyj1967 == 0 && yyv1967 == nil { - yyv1967 = []NetworkPolicy{} - yyc1967 = true + if yyj1941 < len(yyv1941) { + yyv1941 = yyv1941[:yyj1941] + yyc1941 = true + } else if yyj1941 == 0 && yyv1941 == nil { + yyv1941 = []NetworkPolicy{} + yyc1941 = true } } - yyh1967.End() - if yyc1967 { - *v = yyv1967 + yyh1941.End() + if yyc1941 { + *v = yyv1941 } } diff --git a/pkg/apis/extensions/v1beta1/types_swagger_doc_generated.go b/pkg/apis/extensions/v1beta1/types_swagger_doc_generated.go index 1fd1fd5bebe..28982e33fc1 100644 --- a/pkg/apis/extensions/v1beta1/types_swagger_doc_generated.go +++ b/pkg/apis/extensions/v1beta1/types_swagger_doc_generated.go @@ -193,16 +193,6 @@ func (DeploymentStrategy) SwaggerDoc() map[string]string { return map_DeploymentStrategy } -var map_ExportOptions = map[string]string{ - "": "ExportOptions is the query options to the standard REST get call.", - "export": "Should this value be exported. Export strips fields that a user can not specify.", - "exact": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", -} - -func (ExportOptions) SwaggerDoc() map[string]string { - return map_ExportOptions -} - var map_FSGroupStrategyOptions = map[string]string{ "": "FSGroupStrategyOptions defines the strategy type and options used to create the strategy.", "rule": "Rule is the strategy that will dictate what FSGroup is used in the SecurityContext.", diff --git a/pkg/apis/extensions/v1beta1/zz_generated.conversion.go b/pkg/apis/extensions/v1beta1/zz_generated.conversion.go index 2a56a2384ea..8aa0a6f8745 100644 --- a/pkg/apis/extensions/v1beta1/zz_generated.conversion.go +++ b/pkg/apis/extensions/v1beta1/zz_generated.conversion.go @@ -73,8 +73,6 @@ func RegisterConversions(scheme *runtime.Scheme) error { Convert_extensions_DeploymentStatus_To_v1beta1_DeploymentStatus, Convert_v1beta1_DeploymentStrategy_To_extensions_DeploymentStrategy, Convert_extensions_DeploymentStrategy_To_v1beta1_DeploymentStrategy, - Convert_v1beta1_ExportOptions_To_api_ExportOptions, - Convert_api_ExportOptions_To_v1beta1_ExportOptions, Convert_v1beta1_FSGroupStrategyOptions_To_extensions_FSGroupStrategyOptions, Convert_extensions_FSGroupStrategyOptions_To_v1beta1_FSGroupStrategyOptions, Convert_v1beta1_HTTPIngressPath_To_extensions_HTTPIngressPath, @@ -618,26 +616,6 @@ func autoConvert_extensions_DeploymentStrategy_To_v1beta1_DeploymentStrategy(in return nil } -func autoConvert_v1beta1_ExportOptions_To_api_ExportOptions(in *ExportOptions, out *api.ExportOptions, s conversion.Scope) error { - out.Export = in.Export - out.Exact = in.Exact - return nil -} - -func Convert_v1beta1_ExportOptions_To_api_ExportOptions(in *ExportOptions, out *api.ExportOptions, s conversion.Scope) error { - return autoConvert_v1beta1_ExportOptions_To_api_ExportOptions(in, out, s) -} - -func autoConvert_api_ExportOptions_To_v1beta1_ExportOptions(in *api.ExportOptions, out *ExportOptions, s conversion.Scope) error { - out.Export = in.Export - out.Exact = in.Exact - return nil -} - -func Convert_api_ExportOptions_To_v1beta1_ExportOptions(in *api.ExportOptions, out *ExportOptions, s conversion.Scope) error { - return autoConvert_api_ExportOptions_To_v1beta1_ExportOptions(in, out, s) -} - func autoConvert_v1beta1_FSGroupStrategyOptions_To_extensions_FSGroupStrategyOptions(in *FSGroupStrategyOptions, out *extensions.FSGroupStrategyOptions, s conversion.Scope) error { out.Rule = extensions.FSGroupStrategyType(in.Rule) out.Ranges = *(*[]extensions.IDRange)(unsafe.Pointer(&in.Ranges)) diff --git a/pkg/apis/extensions/v1beta1/zz_generated.deepcopy.go b/pkg/apis/extensions/v1beta1/zz_generated.deepcopy.go index a5e2ecb17d5..2a260e050c1 100644 --- a/pkg/apis/extensions/v1beta1/zz_generated.deepcopy.go +++ b/pkg/apis/extensions/v1beta1/zz_generated.deepcopy.go @@ -54,7 +54,6 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1beta1_DeploymentSpec, InType: reflect.TypeOf(&DeploymentSpec{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1beta1_DeploymentStatus, InType: reflect.TypeOf(&DeploymentStatus{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1beta1_DeploymentStrategy, InType: reflect.TypeOf(&DeploymentStrategy{})}, - conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1beta1_ExportOptions, InType: reflect.TypeOf(&ExportOptions{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1beta1_FSGroupStrategyOptions, InType: reflect.TypeOf(&FSGroupStrategyOptions{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1beta1_HTTPIngressPath, InType: reflect.TypeOf(&HTTPIngressPath{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1beta1_HTTPIngressRuleValue, InType: reflect.TypeOf(&HTTPIngressRuleValue{})}, @@ -421,17 +420,6 @@ func DeepCopy_v1beta1_DeploymentStrategy(in interface{}, out interface{}, c *con } } -func DeepCopy_v1beta1_ExportOptions(in interface{}, out interface{}, c *conversion.Cloner) error { - { - in := in.(*ExportOptions) - out := out.(*ExportOptions) - out.TypeMeta = in.TypeMeta - out.Export = in.Export - out.Exact = in.Exact - return nil - } -} - func DeepCopy_v1beta1_FSGroupStrategyOptions(in interface{}, out interface{}, c *conversion.Cloner) error { { in := in.(*FSGroupStrategyOptions) diff --git a/pkg/generated/openapi/zz_generated.openapi.go b/pkg/generated/openapi/zz_generated.openapi.go index edcd62fca07..1c8cd85f133 100644 --- a/pkg/generated/openapi/zz_generated.openapi.go +++ b/pkg/generated/openapi/zz_generated.openapi.go @@ -6062,14 +6062,14 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ Properties: map[string]spec.Schema{ "export": { SchemaProps: spec.SchemaProps{ - Description: "Should this value be exported. Export strips fields that a user can not specify.`", + Description: "Should this value be exported. Export strips fields that a user can not specify.", Type: []string{"boolean"}, Format: "", }, }, "exact": { SchemaProps: spec.SchemaProps{ - Description: "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", + Description: "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", Type: []string{"boolean"}, Format: "", }, @@ -8139,31 +8139,6 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ }, Dependencies: []string{}, }, - "v1.ExportOptions": { - Schema: spec.Schema{ - SchemaProps: spec.SchemaProps{ - Description: "ExportOptions is the query options to the standard REST get call.", - Properties: map[string]spec.Schema{ - "export": { - SchemaProps: spec.SchemaProps{ - Description: "Should this value be exported. Export strips fields that a user can not specify.", - Type: []string{"boolean"}, - Format: "", - }, - }, - "exact": { - SchemaProps: spec.SchemaProps{ - Description: "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", - Type: []string{"boolean"}, - Format: "", - }, - }, - }, - Required: []string{"export", "exact"}, - }, - }, - Dependencies: []string{}, - }, "v1.FCVolumeSource": { Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -16054,31 +16029,6 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ Dependencies: []string{ "v1.DeleteOptions", "v1.ObjectMeta"}, }, - "v1beta1.ExportOptions": { - Schema: spec.Schema{ - SchemaProps: spec.SchemaProps{ - Description: "ExportOptions is the query options to the standard REST get call.", - Properties: map[string]spec.Schema{ - "export": { - SchemaProps: spec.SchemaProps{ - Description: "Should this value be exported. Export strips fields that a user can not specify.", - Type: []string{"boolean"}, - Format: "", - }, - }, - "exact": { - SchemaProps: spec.SchemaProps{ - Description: "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'", - Type: []string{"boolean"}, - Format: "", - }, - }, - }, - Required: []string{"export", "exact"}, - }, - }, - Dependencies: []string{}, - }, "v1beta1.FSGroupStrategyOptions": { Schema: spec.Schema{ SchemaProps: spec.SchemaProps{