From 3cbfc6ba2220c41ab70b926da851fc3de962672a Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Thu, 12 Jan 2017 12:57:40 -0500 Subject: [PATCH 1/3] bump(k8s.io/gengo):cfac487ed0c8217f3b1ac5d33c14f78b35291151 --- Godeps/Godeps.json | 20 ++++++++++---------- vendor/k8s.io/gengo/parser/parse.go | 1 + vendor/k8s.io/gengo/types/types.go | 3 +++ 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index bf0ac3cab6b..ecb6f97e172 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -2639,43 +2639,43 @@ }, { "ImportPath": "k8s.io/gengo/args", - "Rev": "257bac2d9657a64f7aa2d5c79beff88bb497df74" + "Rev": "cfac487ed0c8217f3b1ac5d33c14f78b35291151" }, { "ImportPath": "k8s.io/gengo/examples/deepcopy-gen/generators", - "Rev": "257bac2d9657a64f7aa2d5c79beff88bb497df74" + "Rev": "cfac487ed0c8217f3b1ac5d33c14f78b35291151" }, { "ImportPath": "k8s.io/gengo/examples/defaulter-gen/generators", - "Rev": "257bac2d9657a64f7aa2d5c79beff88bb497df74" + "Rev": "cfac487ed0c8217f3b1ac5d33c14f78b35291151" }, { "ImportPath": "k8s.io/gengo/examples/import-boss/generators", - "Rev": "257bac2d9657a64f7aa2d5c79beff88bb497df74" + "Rev": "cfac487ed0c8217f3b1ac5d33c14f78b35291151" }, { "ImportPath": "k8s.io/gengo/examples/set-gen/generators", - "Rev": "257bac2d9657a64f7aa2d5c79beff88bb497df74" + "Rev": "cfac487ed0c8217f3b1ac5d33c14f78b35291151" }, { "ImportPath": "k8s.io/gengo/examples/set-gen/sets", - "Rev": "257bac2d9657a64f7aa2d5c79beff88bb497df74" + "Rev": "cfac487ed0c8217f3b1ac5d33c14f78b35291151" }, { "ImportPath": "k8s.io/gengo/generator", - "Rev": "257bac2d9657a64f7aa2d5c79beff88bb497df74" + "Rev": "cfac487ed0c8217f3b1ac5d33c14f78b35291151" }, { "ImportPath": "k8s.io/gengo/namer", - "Rev": "257bac2d9657a64f7aa2d5c79beff88bb497df74" + "Rev": "cfac487ed0c8217f3b1ac5d33c14f78b35291151" }, { "ImportPath": "k8s.io/gengo/parser", - "Rev": "257bac2d9657a64f7aa2d5c79beff88bb497df74" + "Rev": "cfac487ed0c8217f3b1ac5d33c14f78b35291151" }, { "ImportPath": "k8s.io/gengo/types", - "Rev": "257bac2d9657a64f7aa2d5c79beff88bb497df74" + "Rev": "cfac487ed0c8217f3b1ac5d33c14f78b35291151" }, { "ImportPath": "k8s.io/heapster/metrics/api/v1/types", diff --git a/vendor/k8s.io/gengo/parser/parse.go b/vendor/k8s.io/gengo/parser/parse.go index 78b6a64c14f..c517fe1ead1 100644 --- a/vendor/k8s.io/gengo/parser/parse.go +++ b/vendor/k8s.io/gengo/parser/parse.go @@ -447,6 +447,7 @@ func (b *Builder) findTypesIn(pkgPath importPathString, u *types.Universe) error // We're keeping this package. This call will create the record. u.Package(string(pkgPath)).Name = pkg.Name() u.Package(string(pkgPath)).Path = pkg.Path() + u.Package(string(pkgPath)).SourcePath = b.absPaths[pkgPath] for _, f := range b.parsed[pkgPath] { if strings.HasSuffix(f.name, "/doc.go") { diff --git a/vendor/k8s.io/gengo/types/types.go b/vendor/k8s.io/gengo/types/types.go index 89523433e7d..528ec013128 100644 --- a/vendor/k8s.io/gengo/types/types.go +++ b/vendor/k8s.io/gengo/types/types.go @@ -94,6 +94,9 @@ type Package struct { // Canonical name of this package-- its path. Path string + // The location this package was loaded from + SourcePath string + // Short name of this package; the name that appears in the // 'package x' line. Name string From e4b39b17d43bdfea0ec2c3fe028f3790a6433e9a Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Thu, 12 Jan 2017 12:52:26 -0500 Subject: [PATCH 2/3] Protobuf generation for staged packages --- .../go2idl/go-to-protobuf/protobuf/cmd.go | 41 +++++++++++++++---- .../go2idl/go-to-protobuf/protobuf/package.go | 4 ++ 2 files changed, 37 insertions(+), 8 deletions(-) diff --git a/cmd/libs/go2idl/go-to-protobuf/protobuf/cmd.go b/cmd/libs/go2idl/go-to-protobuf/protobuf/cmd.go index be4e5dc2810..c04e8efe30c 100644 --- a/cmd/libs/go2idl/go-to-protobuf/protobuf/cmd.go +++ b/cmd/libs/go2idl/go-to-protobuf/protobuf/cmd.go @@ -39,6 +39,7 @@ type Generator struct { Common args.GeneratorArgs Packages string OutputBase string + VendorOutputBase string ProtoImport []string Conditional string Clean bool @@ -56,9 +57,10 @@ func New() *Generator { } defaultProtoImport := filepath.Join(sourceTree, "k8s.io", "kubernetes", "vendor", "github.com", "gogo", "protobuf", "protobuf") return &Generator{ - Common: common, - OutputBase: sourceTree, - ProtoImport: []string{defaultProtoImport}, + Common: common, + OutputBase: sourceTree, + VendorOutputBase: filepath.Join(sourceTree, "k8s.io", "kubernetes", "vendor"), + ProtoImport: []string{defaultProtoImport}, Packages: strings.Join([]string{ `+k8s.io/kubernetes/pkg/util/intstr`, `+k8s.io/kubernetes/pkg/api/resource`, @@ -80,7 +82,7 @@ func New() *Generator { `k8s.io/kubernetes/pkg/apis/imagepolicy/v1alpha1`, `k8s.io/kubernetes/pkg/apis/storage/v1beta1`, }, ","), - DropEmbeddedFields: "k8s.io/kubernetes/pkg/apis/meta/v1.TypeMeta", + DropEmbeddedFields: "k8s.io/apimachinery/pkg/apis/meta/v1.TypeMeta", } } @@ -187,12 +189,25 @@ func Run(g *Generator) { c.Verify = g.Common.VerifyOnly c.FileTypes["protoidl"] = NewProtoFile() + var vendoredOutputPackages, localOutputPackages generator.Packages + for _, p := range protobufNames.packages { + p.Vendored = strings.Contains(c.Universe[p.PackagePath].SourcePath, "/vendor/") + if p.Vendored { + vendoredOutputPackages = append(vendoredOutputPackages, p) + } else { + localOutputPackages = append(localOutputPackages, p) + } + } + if err := protobufNames.AssignTypesToPackages(c); err != nil { log.Fatalf("Failed to identify Common types: %v", err) } - if err := c.ExecutePackages(g.OutputBase, outputPackages); err != nil { - log.Fatalf("Failed executing generator: %v", err) + if err := c.ExecutePackages(g.VendorOutputBase, vendoredOutputPackages); err != nil { + log.Fatalf("Failed executing vendor generator: %v", err) + } + if err := c.ExecutePackages(g.OutputBase, localOutputPackages); err != nil { + log.Fatalf("Failed executing local generator: %v", err) } if g.OnlyIDL { @@ -222,6 +237,10 @@ func Run(g *Generator) { path := filepath.Join(g.OutputBase, p.ImportPath()) outputPath := filepath.Join(g.OutputBase, p.OutputPath()) + if p.Vendored { + path = filepath.Join(g.VendorOutputBase, p.ImportPath()) + outputPath = filepath.Join(g.VendorOutputBase, p.OutputPath()) + } // generate the gogoprotobuf protoc cmd := exec.Command("protoc", append(args, path)...) @@ -277,8 +296,11 @@ func Run(g *Generator) { p := outputPackage.(*protobufPackage) p.OmitGogo = true } - if err := c.ExecutePackages(g.OutputBase, outputPackages); err != nil { - log.Fatalf("Failed executing generator: %v", err) + if err := c.ExecutePackages(g.VendorOutputBase, vendoredOutputPackages); err != nil { + log.Fatalf("Failed executing vendor generator: %v", err) + } + if err := c.ExecutePackages(g.OutputBase, localOutputPackages); err != nil { + log.Fatalf("Failed executing local generator: %v", err) } } @@ -290,6 +312,9 @@ func Run(g *Generator) { } pattern := filepath.Join(g.OutputBase, p.PackagePath, "*.go") + if p.Vendored { + pattern = filepath.Join(g.VendorOutputBase, p.PackagePath, "*.go") + } files, err := filepath.Glob(pattern) if err != nil { log.Fatalf("Can't glob pattern %q: %v", pattern, err) diff --git a/cmd/libs/go2idl/go-to-protobuf/protobuf/package.go b/cmd/libs/go2idl/go-to-protobuf/protobuf/package.go index 055d71577d0..bed4c3e3061 100644 --- a/cmd/libs/go2idl/go-to-protobuf/protobuf/package.go +++ b/cmd/libs/go2idl/go-to-protobuf/protobuf/package.go @@ -57,6 +57,10 @@ func newProtobufPackage(packagePath, packageName string, generateAll bool, omitF type protobufPackage struct { generator.DefaultPackage + // If true, this package has been vendored into our source tree and thus can + // only be generated by changing the vendor tree. + Vendored bool + // If true, generate protobuf serializations for all public types. // If false, only generate protobuf serializations for structs that // request serialization. From dcd6e1d833889923972a93900b6e688aa478c080 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Thu, 12 Jan 2017 14:32:15 -0500 Subject: [PATCH 3/3] generated: protobuf for types --- .../apis/federation/v1beta1/generated.pb.go | 214 +- .../apis/federation/v1beta1/generated.proto | 4 - pkg/api/v1/generated.pb.go | 3878 +++++------------ pkg/api/v1/generated.proto | 90 - pkg/apis/apps/v1beta1/generated.pb.go | 180 +- pkg/apis/apps/v1beta1/generated.proto | 4 - .../authentication/v1beta1/generated.pb.go | 135 +- .../authentication/v1beta1/generated.proto | 2 - .../authorization/v1beta1/generated.pb.go | 317 +- .../authorization/v1beta1/generated.proto | 6 - pkg/apis/autoscaling/v1/generated.pb.go | 281 +- pkg/apis/autoscaling/v1/generated.proto | 6 - pkg/apis/batch/v1/generated.pb.go | 234 +- pkg/apis/batch/v1/generated.proto | 4 - pkg/apis/batch/v2alpha1/generated.pb.go | 445 +- pkg/apis/batch/v2alpha1/generated.proto | 10 - .../certificates/v1alpha1/generated.pb.go | 186 +- .../certificates/v1alpha1/generated.proto | 4 - pkg/apis/extensions/v1beta1/generated.pb.go | 1589 ++----- pkg/apis/extensions/v1beta1/generated.proto | 41 - pkg/apis/imagepolicy/v1alpha1/generated.pb.go | 119 +- pkg/apis/imagepolicy/v1alpha1/generated.proto | 2 - pkg/apis/policy/v1beta1/generated.pb.go | 265 +- pkg/apis/policy/v1beta1/generated.proto | 6 - pkg/apis/rbac/v1alpha1/generated.pb.go | 492 +-- pkg/apis/rbac/v1alpha1/generated.proto | 16 - pkg/apis/storage/v1beta1/generated.pb.go | 152 +- pkg/apis/storage/v1beta1/generated.proto | 4 - .../pkg/apis/meta/v1/generated.pb.go | 270 +- .../pkg/apis/meta/v1/generated.proto | 9 +- .../apimachinery/pkg/runtime/generated.pb.go | 63 +- .../apimachinery/pkg/runtime/generated.proto | 2 +- .../pkg/runtime/schema/generated.pb.go | 32 +- .../pkg/runtime/schema/generated.proto | 3 +- 34 files changed, 2366 insertions(+), 6699 deletions(-) diff --git a/federation/apis/federation/v1beta1/generated.pb.go b/federation/apis/federation/v1beta1/generated.pb.go index a56fb1c8755..1de1fe653e9 100644 --- a/federation/apis/federation/v1beta1/generated.pb.go +++ b/federation/apis/federation/v1beta1/generated.pb.go @@ -127,14 +127,6 @@ func (m *Cluster) MarshalTo(data []byte) (int, error) { return 0, err } i += n3 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n4, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n4 return i, nil } @@ -164,19 +156,19 @@ func (m *ClusterCondition) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.LastProbeTime.Size())) - n5, err := m.LastProbeTime.MarshalTo(data[i:]) + n4, err := m.LastProbeTime.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n4 + data[i] = 0x22 + i++ + i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) + n5, err := m.LastTransitionTime.MarshalTo(data[i:]) if err != nil { return 0, err } i += n5 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) - n6, err := m.LastTransitionTime.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n6 data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -206,11 +198,11 @@ func (m *ClusterList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n7, err := m.ListMeta.MarshalTo(data[i:]) + n6, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n7 + i += n6 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -223,14 +215,6 @@ func (m *ClusterList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n8, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n8 return i, nil } @@ -265,11 +249,11 @@ func (m *ClusterSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.SecretRef.Size())) - n9, err := m.SecretRef.MarshalTo(data[i:]) + n7, err := m.SecretRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n9 + i += n7 } return i, nil } @@ -385,8 +369,6 @@ func (m *Cluster) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -419,8 +401,6 @@ func (m *ClusterList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -491,7 +471,6 @@ func (this *Cluster) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "ClusterSpec", "ClusterSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "ClusterStatus", "ClusterStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -518,7 +497,6 @@ func (this *ClusterList) String() string { s := strings.Join([]string{`&ClusterList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Cluster", "Cluster", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -684,36 +662,6 @@ func (m *Cluster) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1051,36 +999,6 @@ func (m *ClusterList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1569,58 +1487,56 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 833 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x54, 0xcd, 0x6a, 0xeb, 0x46, - 0x14, 0xb6, 0xe2, 0xbf, 0x78, 0x52, 0xb7, 0x97, 0xa1, 0x05, 0xd5, 0x0b, 0xf9, 0x62, 0x4a, 0xf1, - 0x2d, 0xad, 0x84, 0x4d, 0x29, 0x81, 0xd2, 0x42, 0xe4, 0x50, 0x08, 0x38, 0xa4, 0x4c, 0x42, 0x29, - 0xa1, 0x50, 0x64, 0xf9, 0x58, 0x51, 0x6d, 0x49, 0x66, 0x66, 0x64, 0x48, 0x56, 0x7d, 0x80, 0x2e, - 0x0a, 0x7d, 0x85, 0x6e, 0xbb, 0xea, 0x4b, 0x64, 0x99, 0x45, 0x17, 0x59, 0x99, 0xc6, 0x7d, 0x8b, - 0xac, 0xca, 0x8c, 0x46, 0xb2, 0x65, 0xc7, 0x69, 0x9a, 0xdc, 0x9d, 0xce, 0xd1, 0x39, 0xdf, 0x77, - 0xe6, 0x3b, 0x3f, 0xe8, 0x70, 0xbc, 0xcf, 0x4c, 0x3f, 0xb2, 0xc6, 0xf1, 0x00, 0x68, 0x08, 0x1c, - 0x98, 0x35, 0x82, 0x21, 0x50, 0x87, 0xfb, 0x51, 0x68, 0x39, 0x53, 0x3f, 0x67, 0xcf, 0x3a, 0x03, - 0xe0, 0x4e, 0xc7, 0xf2, 0x20, 0x14, 0x2e, 0x18, 0x9a, 0x53, 0x1a, 0xf1, 0x08, 0x7f, 0x9e, 0xa0, - 0x98, 0x4b, 0x14, 0x73, 0x99, 0x65, 0x0a, 0x94, 0x55, 0x5b, 0xa1, 0x34, 0x3e, 0xf3, 0x7c, 0x7e, - 0x11, 0x0f, 0x4c, 0x37, 0x0a, 0x2c, 0x2f, 0xf2, 0x22, 0x4b, 0x82, 0x0d, 0xe2, 0x91, 0xb4, 0xa4, - 0x21, 0xbf, 0x12, 0x92, 0x86, 0x22, 0x11, 0x45, 0x05, 0x8e, 0x7b, 0xe1, 0x87, 0x40, 0x2f, 0xad, - 0xe9, 0xd8, 0x4b, 0xaa, 0x0c, 0x80, 0x3b, 0xd6, 0x6c, 0xa3, 0xb4, 0x86, 0xb5, 0x2d, 0x8b, 0xc6, - 0x21, 0xf7, 0x03, 0xd8, 0x48, 0xf8, 0xe2, 0xbf, 0x12, 0x98, 0x7b, 0x01, 0x81, 0xb3, 0x91, 0xd7, - 0xdd, 0x54, 0x52, 0x15, 0x67, 0x51, 0x60, 0x51, 0x4c, 0xdd, 0x4d, 0xae, 0x4f, 0xb7, 0xe7, 0x3c, - 0xf0, 0x94, 0xce, 0xc3, 0xd1, 0x31, 0xf7, 0x27, 0x96, 0x1f, 0x72, 0xc6, 0xe9, 0x7a, 0x4a, 0xeb, - 0xb7, 0x22, 0xaa, 0xf6, 0x26, 0x31, 0xe3, 0x40, 0xf1, 0xf7, 0x68, 0x57, 0x88, 0x34, 0x74, 0xb8, - 0xa3, 0x6b, 0xaf, 0xb5, 0xf6, 0x5e, 0xb7, 0x6d, 0x6e, 0xf6, 0x6d, 0x3a, 0xf6, 0x44, 0xc3, 0xcc, - 0x59, 0xc7, 0x3c, 0x19, 0xfc, 0x04, 0x2e, 0x3f, 0x06, 0xee, 0xd8, 0xf8, 0x7a, 0xde, 0x2c, 0x2c, - 0xe6, 0x4d, 0xb4, 0xf4, 0x91, 0x0c, 0x0d, 0xbb, 0xa8, 0xc4, 0xa6, 0xe0, 0xea, 0x3b, 0x12, 0xf5, - 0xc0, 0x7c, 0xce, 0x34, 0x98, 0xaa, 0xcc, 0xd3, 0x29, 0xb8, 0xf6, 0x3b, 0x8a, 0xae, 0x24, 0x2c, - 0x22, 0xc1, 0xf1, 0x18, 0x55, 0x18, 0x77, 0x78, 0xcc, 0xf4, 0xa2, 0xa4, 0xe9, 0xbd, 0x8c, 0x46, - 0x42, 0xd9, 0xef, 0x2a, 0xa2, 0x4a, 0x62, 0x13, 0x45, 0x81, 0x7f, 0x40, 0xbb, 0xfc, 0x72, 0x0a, - 0xe2, 0x9d, 0x7a, 0x49, 0xd2, 0x99, 0x29, 0xdd, 0xea, 0x5c, 0xa4, 0x6a, 0x31, 0x53, 0x68, 0x21, - 0x34, 0x3b, 0x53, 0x59, 0xf6, 0x2b, 0x85, 0xbc, 0x9b, 0x7a, 0x48, 0x86, 0xd8, 0xba, 0x2d, 0xa2, - 0x57, 0xaa, 0x8e, 0x5e, 0x14, 0x0e, 0x7d, 0x51, 0x20, 0xde, 0x47, 0x25, 0x11, 0x20, 0x5b, 0x53, - 0xb3, 0x3f, 0x4a, 0x15, 0x10, 0xe9, 0xf7, 0xf3, 0xe6, 0xfb, 0xeb, 0xf1, 0xc2, 0x4f, 0x64, 0x06, - 0xfe, 0x2e, 0x53, 0x66, 0x47, 0xe6, 0x7e, 0x9d, 0x7f, 0xd4, 0xfd, 0xbc, 0xf9, 0xe8, 0x9c, 0x99, - 0x19, 0xe6, 0x9a, 0x08, 0x1e, 0xaa, 0x4f, 0x1c, 0xc6, 0xbf, 0xa5, 0xd1, 0x00, 0xce, 0xfc, 0x00, - 0x94, 0xf0, 0x9f, 0x3c, 0x51, 0x09, 0x3f, 0x00, 0xfb, 0x03, 0x55, 0x4a, 0xbd, 0xbf, 0x0a, 0x44, - 0xf2, 0xb8, 0x78, 0x86, 0xb0, 0x70, 0x9c, 0x51, 0x27, 0x64, 0xc9, 0xe3, 0x04, 0x5b, 0xe9, 0x7f, - 0xb3, 0x35, 0x14, 0x1b, 0xee, 0x6f, 0xa0, 0x91, 0x07, 0x18, 0xf0, 0xc7, 0xa8, 0x42, 0xc1, 0x61, - 0x51, 0xa8, 0x97, 0xa5, 0x70, 0xd9, 0x34, 0x10, 0xe9, 0x25, 0xea, 0x2f, 0x7e, 0x83, 0xaa, 0x01, - 0x30, 0xe6, 0x78, 0xa0, 0x57, 0x64, 0xe0, 0x7b, 0x2a, 0xb0, 0x7a, 0x9c, 0xb8, 0x49, 0xfa, 0xbf, - 0xf5, 0xc7, 0x0e, 0xda, 0x53, 0xad, 0xea, 0xfb, 0x8c, 0x8b, 0x41, 0x5a, 0x5b, 0xba, 0x27, 0x0e, - 0x92, 0xc8, 0xce, 0x0f, 0x52, 0xea, 0x59, 0x59, 0xbc, 0x01, 0x2a, 0xfb, 0x1c, 0x02, 0xd1, 0xf8, - 0x62, 0x7b, 0xaf, 0xfb, 0xd5, 0x8b, 0x56, 0xc2, 0xae, 0x2b, 0xa6, 0xf2, 0x91, 0xc0, 0x24, 0x09, - 0x74, 0x6e, 0x15, 0x8a, 0x6f, 0x7d, 0x15, 0x7e, 0x5f, 0xea, 0x25, 0x76, 0x1d, 0xff, 0xa9, 0xa1, - 0x06, 0x03, 0x3a, 0x03, 0x7a, 0x30, 0x1c, 0x52, 0x60, 0xcc, 0xbe, 0xec, 0x4d, 0x7c, 0x08, 0x79, - 0xef, 0xe8, 0x90, 0x30, 0x5d, 0x93, 0xef, 0x3c, 0x79, 0xde, 0x3b, 0x4f, 0xb7, 0xe1, 0xda, 0x2d, - 0x55, 0x61, 0x63, 0x6b, 0x08, 0x23, 0x8f, 0x94, 0x85, 0x7f, 0x44, 0x35, 0x06, 0x2e, 0x05, 0x4e, - 0x60, 0xa4, 0xae, 0x60, 0xf7, 0xf1, 0xdb, 0xda, 0x8f, 0x5c, 0x67, 0x92, 0x1c, 0x53, 0x02, 0x23, - 0xa0, 0x10, 0xba, 0x60, 0xd7, 0x17, 0xf3, 0x66, 0xed, 0x34, 0x05, 0x22, 0x4b, 0xcc, 0xd6, 0x5f, - 0x1a, 0xaa, 0xe7, 0x2e, 0x17, 0xbe, 0x42, 0xc8, 0x4d, 0xf7, 0x36, 0xd5, 0xe5, 0x9b, 0x17, 0xf5, - 0x3f, 0x3b, 0x03, 0xcb, 0x6b, 0x9f, 0xb9, 0x18, 0x59, 0x61, 0xc3, 0x4d, 0x54, 0xbe, 0x8a, 0x42, - 0x60, 0x7a, 0xf9, 0x75, 0xb1, 0x5d, 0xb3, 0x6b, 0x62, 0x66, 0xce, 0x85, 0x83, 0x24, 0xfe, 0x64, - 0xb1, 0x3c, 0x3f, 0x0a, 0xd5, 0xbe, 0xac, 0x2c, 0x96, 0xf0, 0x12, 0xf5, 0xb7, 0xf5, 0x8b, 0x86, - 0x3e, 0xdc, 0x2a, 0x39, 0xee, 0x22, 0xe4, 0x66, 0x96, 0xba, 0x8b, 0xcb, 0xd2, 0xb2, 0x3f, 0x64, - 0x25, 0x0a, 0x7f, 0x89, 0xea, 0xb9, 0x3e, 0xa9, 0x93, 0x98, 0xdd, 0xa1, 0x1c, 0x1b, 0xc9, 0xc7, - 0xda, 0x6f, 0xae, 0xef, 0x8c, 0xc2, 0xcd, 0x9d, 0x51, 0xb8, 0xbd, 0x33, 0x0a, 0x3f, 0x2f, 0x0c, - 0xed, 0x7a, 0x61, 0x68, 0x37, 0x0b, 0x43, 0xfb, 0x7b, 0x61, 0x68, 0xbf, 0xfe, 0x63, 0x14, 0xce, - 0xab, 0x4a, 0xb3, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xbe, 0x25, 0xcc, 0x27, 0x38, 0x09, 0x00, - 0x00, + // 806 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xa4, 0x54, 0xcd, 0x6a, 0xeb, 0x46, + 0x14, 0xb6, 0xfc, 0x7b, 0x3d, 0xa9, 0xdb, 0xcb, 0xd0, 0x82, 0xeb, 0x85, 0x7c, 0x31, 0xa5, 0xf8, + 0x96, 0x56, 0xc2, 0xa6, 0x94, 0x0b, 0xa5, 0x85, 0x2b, 0x5f, 0x0a, 0x01, 0x87, 0x94, 0x49, 0x28, + 0x25, 0x14, 0x8a, 0x2c, 0x1f, 0x2b, 0xaa, 0xad, 0x1f, 0x66, 0x46, 0x06, 0x67, 0xd5, 0x07, 0xe8, + 0xa2, 0x0f, 0xd1, 0x37, 0x28, 0x7d, 0x87, 0xec, 0x9a, 0x45, 0x17, 0x59, 0x99, 0xc6, 0x7d, 0x8b, + 0xac, 0xca, 0x8c, 0x46, 0xb2, 0x15, 0xc5, 0x69, 0x6f, 0xb2, 0xd3, 0x39, 0x3a, 0xe7, 0xfb, 0xbe, + 0x39, 0x7f, 0xe8, 0xcd, 0xfc, 0x15, 0x33, 0xbc, 0xd0, 0x9c, 0xc7, 0x13, 0xa0, 0x01, 0x70, 0x60, + 0xe6, 0x0c, 0xa6, 0x40, 0x6d, 0xee, 0x85, 0x81, 0x69, 0x47, 0x5e, 0xce, 0x5e, 0x0e, 0x26, 0xc0, + 0xed, 0x81, 0xe9, 0x42, 0x20, 0x5c, 0x30, 0x35, 0x22, 0x1a, 0xf2, 0x10, 0x7f, 0x9e, 0xa0, 0x18, + 0x5b, 0x14, 0x63, 0x9b, 0x65, 0x08, 0x94, 0x5d, 0x5b, 0xa1, 0x74, 0x3e, 0x73, 0x3d, 0x7e, 0x1e, + 0x4f, 0x0c, 0x27, 0xf4, 0x4d, 0x37, 0x74, 0x43, 0x53, 0x82, 0x4d, 0xe2, 0x99, 0xb4, 0xa4, 0x21, + 0xbf, 0x12, 0x92, 0x8e, 0x22, 0x11, 0xa2, 0x7c, 0xdb, 0x39, 0xf7, 0x02, 0xa0, 0x2b, 0x33, 0x9a, + 0xbb, 0x89, 0x4a, 0x1f, 0xb8, 0x6d, 0x2e, 0x0b, 0xd2, 0x3a, 0xe6, 0xbe, 0x2c, 0x1a, 0x07, 0xdc, + 0xf3, 0xa1, 0x90, 0xf0, 0xc5, 0x7f, 0x25, 0x30, 0xe7, 0x1c, 0x7c, 0xbb, 0x90, 0x37, 0x2c, 0x56, + 0x52, 0x89, 0x33, 0x29, 0xb0, 0x30, 0xa6, 0x4e, 0x91, 0xeb, 0xd3, 0xfd, 0x39, 0xf7, 0x3c, 0x65, + 0x70, 0x7f, 0x74, 0xcc, 0xbd, 0x85, 0xe9, 0x05, 0x9c, 0x71, 0x7a, 0x37, 0xa5, 0xf7, 0x47, 0x19, + 0x35, 0x46, 0x8b, 0x98, 0x71, 0xa0, 0xf8, 0x7b, 0xf4, 0x4c, 0x14, 0x69, 0x6a, 0x73, 0xbb, 0xad, + 0xbd, 0xd0, 0xfa, 0x07, 0xc3, 0xbe, 0x51, 0xec, 0x5b, 0x34, 0x77, 0x45, 0xc3, 0x8c, 0xe5, 0xc0, + 0x38, 0x9e, 0xfc, 0x04, 0x0e, 0x3f, 0x02, 0x6e, 0x5b, 0xf8, 0x72, 0xdd, 0x2d, 0x6d, 0xd6, 0x5d, + 0xb4, 0xf5, 0x91, 0x0c, 0x0d, 0x3b, 0xa8, 0xca, 0x22, 0x70, 0xda, 0x65, 0x89, 0xfa, 0xda, 0x78, + 0xcc, 0x34, 0x18, 0x4a, 0xe6, 0x49, 0x04, 0x8e, 0xf5, 0x8e, 0xa2, 0xab, 0x0a, 0x8b, 0x48, 0x70, + 0x3c, 0x47, 0x75, 0xc6, 0x6d, 0x1e, 0xb3, 0x76, 0x45, 0xd2, 0x8c, 0x9e, 0x46, 0x23, 0xa1, 0xac, + 0x77, 0x15, 0x51, 0x3d, 0xb1, 0x89, 0xa2, 0xe8, 0x5d, 0x57, 0xd0, 0x73, 0x15, 0x39, 0x0a, 0x83, + 0xa9, 0x27, 0x20, 0xf0, 0x2b, 0x54, 0xe5, 0xab, 0x08, 0x64, 0xf1, 0x9a, 0xd6, 0x47, 0xa9, 0xc6, + 0xd3, 0x55, 0x04, 0xb7, 0xeb, 0xee, 0xfb, 0x77, 0xe3, 0x85, 0x9f, 0xc8, 0x0c, 0xfc, 0x5d, 0xa6, + 0xbd, 0x2c, 0x73, 0xbf, 0xce, 0xd3, 0xde, 0xae, 0xbb, 0x0f, 0x4e, 0x82, 0x91, 0x61, 0xe6, 0x65, + 0x62, 0x17, 0xb5, 0x16, 0x36, 0xe3, 0xdf, 0xd2, 0x70, 0x02, 0xa7, 0x9e, 0x0f, 0xaa, 0x34, 0x9f, + 0xa4, 0xa5, 0xd9, 0x9d, 0xe1, 0xb4, 0xb3, 0xcc, 0x10, 0x7d, 0x13, 0xfd, 0x15, 0x19, 0xd6, 0x07, + 0x4a, 0x4a, 0x6b, 0xbc, 0x0b, 0x44, 0xf2, 0xb8, 0x78, 0x89, 0xb0, 0x70, 0x9c, 0x52, 0x3b, 0x60, + 0xc9, 0xe3, 0x04, 0x5b, 0xf5, 0xad, 0xd9, 0x3a, 0x8a, 0x0d, 0x8f, 0x0b, 0x68, 0xe4, 0x1e, 0x06, + 0xfc, 0x31, 0xaa, 0x53, 0xb0, 0x59, 0x18, 0xb4, 0x6b, 0xb2, 0x70, 0x59, 0xbf, 0x88, 0xf4, 0x12, + 0xf5, 0x17, 0xbf, 0x44, 0x0d, 0x1f, 0x18, 0xb3, 0x5d, 0x68, 0xd7, 0x65, 0xe0, 0x7b, 0x2a, 0xb0, + 0x71, 0x94, 0xb8, 0x49, 0xfa, 0xbf, 0xf7, 0xa7, 0x86, 0x0e, 0x54, 0xab, 0xc6, 0x1e, 0xe3, 0xf8, + 0x87, 0xc2, 0x5a, 0x18, 0xff, 0xef, 0x41, 0x22, 0x5b, 0x2e, 0xc7, 0x73, 0xc5, 0xf5, 0x2c, 0xf5, + 0xec, 0xac, 0xc6, 0x04, 0xd5, 0x3c, 0x0e, 0xbe, 0x68, 0x7c, 0xa5, 0x7f, 0x30, 0xfc, 0xea, 0x49, + 0x43, 0x6b, 0xb5, 0x14, 0x53, 0xed, 0x50, 0x60, 0x92, 0x04, 0xba, 0xf7, 0x5b, 0x39, 0x7b, 0x91, + 0xd8, 0x17, 0xfc, 0xbb, 0x86, 0x3a, 0x0c, 0xe8, 0x12, 0xe8, 0xeb, 0xe9, 0x94, 0x02, 0x63, 0xd6, + 0x6a, 0xb4, 0xf0, 0x20, 0xe0, 0xa3, 0xc3, 0x37, 0x84, 0xb5, 0x35, 0xa9, 0xe4, 0xf8, 0x71, 0x4a, + 0x4e, 0xf6, 0xe1, 0x5a, 0x3d, 0xa5, 0xad, 0xb3, 0x37, 0x84, 0x91, 0x07, 0x64, 0xe1, 0x1f, 0x51, + 0x93, 0x81, 0x43, 0x81, 0x13, 0x98, 0xa9, 0x4b, 0x32, 0x7c, 0xf8, 0x3e, 0x8d, 0x43, 0xc7, 0x5e, + 0x24, 0x07, 0x89, 0xc0, 0x0c, 0x28, 0x04, 0x0e, 0x58, 0xad, 0xcd, 0xba, 0xdb, 0x3c, 0x49, 0x81, + 0xc8, 0x16, 0xb3, 0xf7, 0x97, 0x86, 0x5a, 0xb9, 0xed, 0xc7, 0x17, 0x08, 0x39, 0xe9, 0x66, 0xa5, + 0x75, 0xf9, 0xe6, 0x49, 0x1d, 0xca, 0x16, 0x75, 0x7b, 0x31, 0x33, 0x17, 0x23, 0x3b, 0x6c, 0xb8, + 0x8b, 0x6a, 0x17, 0x61, 0x00, 0xac, 0x5d, 0x7b, 0x51, 0xe9, 0x37, 0xad, 0xa6, 0xe8, 0xea, 0x99, + 0x70, 0x90, 0xc4, 0x9f, 0x8c, 0xbe, 0xeb, 0x85, 0x81, 0x9a, 0xe8, 0x9d, 0xd1, 0x17, 0x5e, 0xa2, + 0xfe, 0xf6, 0x7e, 0xd1, 0xd0, 0x87, 0x7b, 0x4b, 0x8e, 0x87, 0x08, 0x39, 0x99, 0xa5, 0x2e, 0xd7, + 0x56, 0x5a, 0xf6, 0x87, 0xec, 0x44, 0xe1, 0x2f, 0x51, 0x2b, 0xd7, 0x27, 0x75, 0xb4, 0xb2, 0x4b, + 0x91, 0x63, 0x23, 0xf9, 0x58, 0xeb, 0xe5, 0xe5, 0x8d, 0x5e, 0xba, 0xba, 0xd1, 0x4b, 0xd7, 0x37, + 0x7a, 0xe9, 0xe7, 0x8d, 0xae, 0x5d, 0x6e, 0x74, 0xed, 0x6a, 0xa3, 0x6b, 0x7f, 0x6f, 0x74, 0xed, + 0xd7, 0x7f, 0xf4, 0xd2, 0x59, 0x43, 0xd5, 0xec, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x15, 0xe8, + 0xc4, 0x9a, 0x7c, 0x08, 0x00, 0x00, } diff --git a/federation/apis/federation/v1beta1/generated.proto b/federation/apis/federation/v1beta1/generated.proto index d06edb98254..c37f7b9612b 100644 --- a/federation/apis/federation/v1beta1/generated.proto +++ b/federation/apis/federation/v1beta1/generated.proto @@ -33,8 +33,6 @@ option go_package = "v1beta1"; // Information about a registered cluster in a federated kubernetes setup. Clusters are not namespaced and have unique names in the federation. message Cluster { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -76,8 +74,6 @@ message ClusterCondition { // A list of all the kubernetes clusters registered to the federation message ClusterList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional diff --git a/pkg/api/v1/generated.pb.go b/pkg/api/v1/generated.pb.go index 18a368b0adf..56d236af90c 100644 --- a/pkg/api/v1/generated.pb.go +++ b/pkg/api/v1/generated.pb.go @@ -1292,14 +1292,6 @@ func (m *Binding) MarshalTo(data []byte) (int, error) { return 0, err } i += n5 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n6, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n6 return i, nil } @@ -1397,11 +1389,11 @@ func (m *CephFSVolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(m.SecretRef.Size())) - n7, err := m.SecretRef.MarshalTo(data[i:]) + n6, err := m.SecretRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n7 + i += n6 } data[i] = 0x30 i++ @@ -1500,11 +1492,11 @@ func (m *ComponentStatus) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n8, err := m.ObjectMeta.MarshalTo(data[i:]) + n7, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n8 + i += n7 if len(m.Conditions) > 0 { for _, msg := range m.Conditions { data[i] = 0x12 @@ -1517,14 +1509,6 @@ func (m *ComponentStatus) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n9, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n9 return i, nil } @@ -1546,11 +1530,11 @@ func (m *ComponentStatusList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n10, err := m.ListMeta.MarshalTo(data[i:]) + n8, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n10 + i += n8 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -1563,14 +1547,6 @@ func (m *ComponentStatusList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n11, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n11 return i, nil } @@ -1592,11 +1568,11 @@ func (m *ConfigMap) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n12, err := m.ObjectMeta.MarshalTo(data[i:]) + n9, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n12 + i += n9 if len(m.Data) > 0 { for k := range m.Data { data[i] = 0x12 @@ -1614,14 +1590,6 @@ func (m *ConfigMap) MarshalTo(data []byte) (int, error) { i += copy(data[i:], v) } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n13, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n13 return i, nil } @@ -1643,11 +1611,11 @@ func (m *ConfigMapEnvSource) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LocalObjectReference.Size())) - n14, err := m.LocalObjectReference.MarshalTo(data[i:]) + n10, err := m.LocalObjectReference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n14 + i += n10 return i, nil } @@ -1669,11 +1637,11 @@ func (m *ConfigMapKeySelector) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LocalObjectReference.Size())) - n15, err := m.LocalObjectReference.MarshalTo(data[i:]) + n11, err := m.LocalObjectReference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n15 + i += n11 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Key))) @@ -1699,11 +1667,11 @@ func (m *ConfigMapList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n16, err := m.ListMeta.MarshalTo(data[i:]) + n12, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n16 + i += n12 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -1716,14 +1684,6 @@ func (m *ConfigMapList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n17, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n17 return i, nil } @@ -1745,11 +1705,11 @@ func (m *ConfigMapVolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LocalObjectReference.Size())) - n18, err := m.LocalObjectReference.MarshalTo(data[i:]) + n13, err := m.LocalObjectReference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n18 + i += n13 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -1854,11 +1814,11 @@ func (m *Container) MarshalTo(data []byte) (int, error) { data[i] = 0x42 i++ i = encodeVarintGenerated(data, i, uint64(m.Resources.Size())) - n19, err := m.Resources.MarshalTo(data[i:]) + n14, err := m.Resources.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n19 + i += n14 if len(m.VolumeMounts) > 0 { for _, msg := range m.VolumeMounts { data[i] = 0x4a @@ -1875,31 +1835,31 @@ func (m *Container) MarshalTo(data []byte) (int, error) { data[i] = 0x52 i++ i = encodeVarintGenerated(data, i, uint64(m.LivenessProbe.Size())) - n20, err := m.LivenessProbe.MarshalTo(data[i:]) + n15, err := m.LivenessProbe.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n20 + i += n15 } if m.ReadinessProbe != nil { data[i] = 0x5a i++ i = encodeVarintGenerated(data, i, uint64(m.ReadinessProbe.Size())) - n21, err := m.ReadinessProbe.MarshalTo(data[i:]) + n16, err := m.ReadinessProbe.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n21 + i += n16 } if m.Lifecycle != nil { data[i] = 0x62 i++ i = encodeVarintGenerated(data, i, uint64(m.Lifecycle.Size())) - n22, err := m.Lifecycle.MarshalTo(data[i:]) + n17, err := m.Lifecycle.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n22 + i += n17 } data[i] = 0x6a i++ @@ -1913,11 +1873,11 @@ func (m *Container) MarshalTo(data []byte) (int, error) { data[i] = 0x7a i++ i = encodeVarintGenerated(data, i, uint64(m.SecurityContext.Size())) - n23, err := m.SecurityContext.MarshalTo(data[i:]) + n18, err := m.SecurityContext.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n23 + i += n18 } data[i] = 0x80 i++ @@ -2057,31 +2017,31 @@ func (m *ContainerState) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Waiting.Size())) - n24, err := m.Waiting.MarshalTo(data[i:]) + n19, err := m.Waiting.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n24 + i += n19 } if m.Running != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Running.Size())) - n25, err := m.Running.MarshalTo(data[i:]) + n20, err := m.Running.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n25 + i += n20 } if m.Terminated != nil { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Terminated.Size())) - n26, err := m.Terminated.MarshalTo(data[i:]) + n21, err := m.Terminated.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n26 + i += n21 } return i, nil } @@ -2104,11 +2064,11 @@ func (m *ContainerStateRunning) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.StartedAt.Size())) - n27, err := m.StartedAt.MarshalTo(data[i:]) + n22, err := m.StartedAt.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n27 + i += n22 return i, nil } @@ -2144,19 +2104,19 @@ func (m *ContainerStateTerminated) MarshalTo(data []byte) (int, error) { data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(m.StartedAt.Size())) - n28, err := m.StartedAt.MarshalTo(data[i:]) + n23, err := m.StartedAt.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n28 + i += n23 data[i] = 0x32 i++ i = encodeVarintGenerated(data, i, uint64(m.FinishedAt.Size())) - n29, err := m.FinishedAt.MarshalTo(data[i:]) + n24, err := m.FinishedAt.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n29 + i += n24 data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(len(m.ContainerID))) @@ -2212,19 +2172,19 @@ func (m *ContainerStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.State.Size())) - n30, err := m.State.MarshalTo(data[i:]) + n25, err := m.State.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n30 + i += n25 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.LastTerminationState.Size())) - n31, err := m.LastTerminationState.MarshalTo(data[i:]) + n26, err := m.LastTerminationState.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n31 + i += n26 data[i] = 0x20 i++ if m.Ready { @@ -2296,11 +2256,11 @@ func (m *DeleteOptions) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Preconditions.Size())) - n32, err := m.Preconditions.MarshalTo(data[i:]) + n27, err := m.Preconditions.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n32 + i += n27 } if m.OrphanDependents != nil { data[i] = 0x18 @@ -2312,14 +2272,6 @@ func (m *DeleteOptions) MarshalTo(data []byte) (int, error) { } i++ } - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n33, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n33 return i, nil } @@ -2346,21 +2298,21 @@ func (m *DownwardAPIVolumeFile) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.FieldRef.Size())) - n34, err := m.FieldRef.MarshalTo(data[i:]) + n28, err := m.FieldRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n34 + i += n28 } if m.ResourceFieldRef != nil { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.ResourceFieldRef.Size())) - n35, err := m.ResourceFieldRef.MarshalTo(data[i:]) + n29, err := m.ResourceFieldRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n35 + i += n29 } if m.Mode != nil { data[i] = 0x20 @@ -2450,11 +2402,11 @@ func (m *EndpointAddress) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.TargetRef.Size())) - n36, err := m.TargetRef.MarshalTo(data[i:]) + n30, err := m.TargetRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n36 + i += n30 } data[i] = 0x1a i++ @@ -2570,11 +2522,11 @@ func (m *Endpoints) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n37, err := m.ObjectMeta.MarshalTo(data[i:]) + n31, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n37 + i += n31 if len(m.Subsets) > 0 { for _, msg := range m.Subsets { data[i] = 0x12 @@ -2587,14 +2539,6 @@ func (m *Endpoints) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n38, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n38 return i, nil } @@ -2616,11 +2560,11 @@ func (m *EndpointsList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n39, err := m.ListMeta.MarshalTo(data[i:]) + n32, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n39 + i += n32 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -2633,14 +2577,6 @@ func (m *EndpointsList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n40, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n40 return i, nil } @@ -2667,11 +2603,11 @@ func (m *EnvFromSource) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.ConfigMapRef.Size())) - n41, err := m.ConfigMapRef.MarshalTo(data[i:]) + n33, err := m.ConfigMapRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n41 + i += n33 } return i, nil } @@ -2703,11 +2639,11 @@ func (m *EnvVar) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.ValueFrom.Size())) - n42, err := m.ValueFrom.MarshalTo(data[i:]) + n34, err := m.ValueFrom.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n42 + i += n34 } return i, nil } @@ -2731,41 +2667,41 @@ func (m *EnvVarSource) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.FieldRef.Size())) - n43, err := m.FieldRef.MarshalTo(data[i:]) + n35, err := m.FieldRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n43 + i += n35 } if m.ResourceFieldRef != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.ResourceFieldRef.Size())) - n44, err := m.ResourceFieldRef.MarshalTo(data[i:]) + n36, err := m.ResourceFieldRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n44 + i += n36 } if m.ConfigMapKeyRef != nil { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.ConfigMapKeyRef.Size())) - n45, err := m.ConfigMapKeyRef.MarshalTo(data[i:]) + n37, err := m.ConfigMapKeyRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n45 + i += n37 } if m.SecretKeyRef != nil { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.SecretKeyRef.Size())) - n46, err := m.SecretKeyRef.MarshalTo(data[i:]) + n38, err := m.SecretKeyRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n46 + i += n38 } return i, nil } @@ -2788,19 +2724,19 @@ func (m *Event) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n47, err := m.ObjectMeta.MarshalTo(data[i:]) + n39, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n47 + i += n39 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.InvolvedObject.Size())) - n48, err := m.InvolvedObject.MarshalTo(data[i:]) + n40, err := m.InvolvedObject.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n48 + i += n40 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -2812,27 +2748,27 @@ func (m *Event) MarshalTo(data []byte) (int, error) { data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(m.Source.Size())) - n49, err := m.Source.MarshalTo(data[i:]) + n41, err := m.Source.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n49 + i += n41 data[i] = 0x32 i++ i = encodeVarintGenerated(data, i, uint64(m.FirstTimestamp.Size())) - n50, err := m.FirstTimestamp.MarshalTo(data[i:]) + n42, err := m.FirstTimestamp.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n50 + i += n42 data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.LastTimestamp.Size())) - n51, err := m.LastTimestamp.MarshalTo(data[i:]) + n43, err := m.LastTimestamp.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n51 + i += n43 data[i] = 0x40 i++ i = encodeVarintGenerated(data, i, uint64(m.Count)) @@ -2840,14 +2776,6 @@ func (m *Event) MarshalTo(data []byte) (int, error) { i++ i = encodeVarintGenerated(data, i, uint64(len(m.Type))) i += copy(data[i:], m.Type) - data[i] = 0x52 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n52, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n52 return i, nil } @@ -2869,11 +2797,11 @@ func (m *EventList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n53, err := m.ListMeta.MarshalTo(data[i:]) + n44, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n53 + i += n44 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -2886,14 +2814,6 @@ func (m *EventList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n54, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n54 return i, nil } @@ -3033,11 +2953,11 @@ func (m *FlexVolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.SecretRef.Size())) - n55, err := m.SecretRef.MarshalTo(data[i:]) + n45, err := m.SecretRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n55 + i += n45 } data[i] = 0x20 i++ @@ -3216,11 +3136,11 @@ func (m *HTTPGetAction) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Port.Size())) - n56, err := m.Port.MarshalTo(data[i:]) + n46, err := m.Port.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n56 + i += n46 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Host))) @@ -3289,31 +3209,31 @@ func (m *Handler) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Exec.Size())) - n57, err := m.Exec.MarshalTo(data[i:]) + n47, err := m.Exec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n57 + i += n47 } if m.HTTPGet != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.HTTPGet.Size())) - n58, err := m.HTTPGet.MarshalTo(data[i:]) + n48, err := m.HTTPGet.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n58 + i += n48 } if m.TCPSocket != nil { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.TCPSocket.Size())) - n59, err := m.TCPSocket.MarshalTo(data[i:]) + n49, err := m.TCPSocket.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n59 + i += n49 } return i, nil } @@ -3435,21 +3355,21 @@ func (m *Lifecycle) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.PostStart.Size())) - n60, err := m.PostStart.MarshalTo(data[i:]) + n50, err := m.PostStart.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n60 + i += n50 } if m.PreStop != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.PreStop.Size())) - n61, err := m.PreStop.MarshalTo(data[i:]) + n51, err := m.PreStop.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n61 + i += n51 } return i, nil } @@ -3472,27 +3392,19 @@ func (m *LimitRange) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n62, err := m.ObjectMeta.MarshalTo(data[i:]) + n52, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n62 + i += n52 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n63, err := m.Spec.MarshalTo(data[i:]) + n53, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n63 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n64, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n64 + i += n53 return i, nil } @@ -3530,11 +3442,11 @@ func (m *LimitRangeItem) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n65, err := (&v).MarshalTo(data[i:]) + n54, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n65 + i += n54 } } if len(m.Min) > 0 { @@ -3552,11 +3464,11 @@ func (m *LimitRangeItem) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n66, err := (&v).MarshalTo(data[i:]) + n55, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n66 + i += n55 } } if len(m.Default) > 0 { @@ -3574,11 +3486,11 @@ func (m *LimitRangeItem) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n67, err := (&v).MarshalTo(data[i:]) + n56, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n67 + i += n56 } } if len(m.DefaultRequest) > 0 { @@ -3596,11 +3508,11 @@ func (m *LimitRangeItem) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n68, err := (&v).MarshalTo(data[i:]) + n57, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n68 + i += n57 } } if len(m.MaxLimitRequestRatio) > 0 { @@ -3618,11 +3530,11 @@ func (m *LimitRangeItem) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n69, err := (&v).MarshalTo(data[i:]) + n58, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n69 + i += n58 } } return i, nil @@ -3646,11 +3558,11 @@ func (m *LimitRangeList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n70, err := m.ListMeta.MarshalTo(data[i:]) + n59, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n70 + i += n59 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -3663,14 +3575,6 @@ func (m *LimitRangeList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n71, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n71 return i, nil } @@ -3722,11 +3626,11 @@ func (m *List) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n72, err := m.ListMeta.MarshalTo(data[i:]) + n60, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n72 + i += n60 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -3739,14 +3643,6 @@ func (m *List) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n73, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n73 return i, nil } @@ -3790,14 +3686,6 @@ func (m *ListOptions) MarshalTo(data []byte) (int, error) { i++ i = encodeVarintGenerated(data, i, uint64(*m.TimeoutSeconds)) } - data[i] = 0x32 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n74, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n74 return i, nil } @@ -3931,35 +3819,27 @@ func (m *Namespace) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n75, err := m.ObjectMeta.MarshalTo(data[i:]) + n61, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n75 + i += n61 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n76, err := m.Spec.MarshalTo(data[i:]) + n62, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n76 + i += n62 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n77, err := m.Status.MarshalTo(data[i:]) + n63, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n77 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n78, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n78 + i += n63 return i, nil } @@ -3981,11 +3861,11 @@ func (m *NamespaceList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n79, err := m.ListMeta.MarshalTo(data[i:]) + n64, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n79 + i += n64 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -3998,14 +3878,6 @@ func (m *NamespaceList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n80, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n80 return i, nil } @@ -4082,35 +3954,27 @@ func (m *Node) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n81, err := m.ObjectMeta.MarshalTo(data[i:]) + n65, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n81 + i += n65 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n82, err := m.Spec.MarshalTo(data[i:]) + n66, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n82 + i += n66 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n83, err := m.Status.MarshalTo(data[i:]) + n67, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n83 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n84, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n84 + i += n67 return i, nil } @@ -4159,11 +4023,11 @@ func (m *NodeAffinity) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.RequiredDuringSchedulingIgnoredDuringExecution.Size())) - n85, err := m.RequiredDuringSchedulingIgnoredDuringExecution.MarshalTo(data[i:]) + n68, err := m.RequiredDuringSchedulingIgnoredDuringExecution.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n85 + i += n68 } if len(m.PreferredDuringSchedulingIgnoredDuringExecution) > 0 { for _, msg := range m.PreferredDuringSchedulingIgnoredDuringExecution { @@ -4206,19 +4070,19 @@ func (m *NodeCondition) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.LastHeartbeatTime.Size())) - n86, err := m.LastHeartbeatTime.MarshalTo(data[i:]) + n69, err := m.LastHeartbeatTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n86 + i += n69 data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) - n87, err := m.LastTransitionTime.MarshalTo(data[i:]) + n70, err := m.LastTransitionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n87 + i += n70 data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -4248,11 +4112,11 @@ func (m *NodeDaemonEndpoints) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.KubeletEndpoint.Size())) - n88, err := m.KubeletEndpoint.MarshalTo(data[i:]) + n71, err := m.KubeletEndpoint.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n88 + i += n71 return i, nil } @@ -4274,11 +4138,11 @@ func (m *NodeList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n89, err := m.ListMeta.MarshalTo(data[i:]) + n72, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n89 + i += n72 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -4291,14 +4155,6 @@ func (m *NodeList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n90, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n90 return i, nil } @@ -4321,14 +4177,6 @@ func (m *NodeProxyOptions) MarshalTo(data []byte) (int, error) { i++ i = encodeVarintGenerated(data, i, uint64(len(m.Path))) i += copy(data[i:], m.Path) - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n91, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n91 return i, nil } @@ -4362,11 +4210,11 @@ func (m *NodeResources) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n92, err := (&v).MarshalTo(data[i:]) + n73, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n92 + i += n73 } } return i, nil @@ -4541,11 +4389,11 @@ func (m *NodeStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n93, err := (&v).MarshalTo(data[i:]) + n74, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n93 + i += n74 } } if len(m.Allocatable) > 0 { @@ -4563,11 +4411,11 @@ func (m *NodeStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n94, err := (&v).MarshalTo(data[i:]) + n75, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n94 + i += n75 } } data[i] = 0x1a @@ -4601,19 +4449,19 @@ func (m *NodeStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x32 i++ i = encodeVarintGenerated(data, i, uint64(m.DaemonEndpoints.Size())) - n95, err := m.DaemonEndpoints.MarshalTo(data[i:]) + n76, err := m.DaemonEndpoints.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n95 + i += n76 data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.NodeInfo.Size())) - n96, err := m.NodeInfo.MarshalTo(data[i:]) + n77, err := m.NodeInfo.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n96 + i += n77 if len(m.Images) > 0 { for _, msg := range m.Images { data[i] = 0x42 @@ -4785,20 +4633,20 @@ func (m *ObjectMeta) MarshalTo(data []byte) (int, error) { data[i] = 0x42 i++ i = encodeVarintGenerated(data, i, uint64(m.CreationTimestamp.Size())) - n97, err := m.CreationTimestamp.MarshalTo(data[i:]) + n78, err := m.CreationTimestamp.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n97 + i += n78 if m.DeletionTimestamp != nil { data[i] = 0x4a i++ i = encodeVarintGenerated(data, i, uint64(m.DeletionTimestamp.Size())) - n98, err := m.DeletionTimestamp.MarshalTo(data[i:]) + n79, err := m.DeletionTimestamp.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n98 + i += n79 } if m.DeletionGracePeriodSeconds != nil { data[i] = 0x50 @@ -4937,35 +4785,27 @@ func (m *PersistentVolume) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n99, err := m.ObjectMeta.MarshalTo(data[i:]) + n80, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n99 + i += n80 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n100, err := m.Spec.MarshalTo(data[i:]) + n81, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n100 + i += n81 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n101, err := m.Status.MarshalTo(data[i:]) + n82, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n101 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n102, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n102 + i += n82 return i, nil } @@ -4987,35 +4827,27 @@ func (m *PersistentVolumeClaim) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n103, err := m.ObjectMeta.MarshalTo(data[i:]) + n83, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n103 + i += n83 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n104, err := m.Spec.MarshalTo(data[i:]) + n84, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n104 + i += n84 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n105, err := m.Status.MarshalTo(data[i:]) + n85, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n105 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n106, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n106 + i += n85 return i, nil } @@ -5037,11 +4869,11 @@ func (m *PersistentVolumeClaimList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n107, err := m.ListMeta.MarshalTo(data[i:]) + n86, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n107 + i += n86 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -5054,14 +4886,6 @@ func (m *PersistentVolumeClaimList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n108, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n108 return i, nil } @@ -5098,11 +4922,11 @@ func (m *PersistentVolumeClaimSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Resources.Size())) - n109, err := m.Resources.MarshalTo(data[i:]) + n87, err := m.Resources.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n109 + i += n87 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(len(m.VolumeName))) @@ -5111,11 +4935,11 @@ func (m *PersistentVolumeClaimSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.Selector.Size())) - n110, err := m.Selector.MarshalTo(data[i:]) + n88, err := m.Selector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n110 + i += n88 } return i, nil } @@ -5169,11 +4993,11 @@ func (m *PersistentVolumeClaimStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n111, err := (&v).MarshalTo(data[i:]) + n89, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n111 + i += n89 } } return i, nil @@ -5227,11 +5051,11 @@ func (m *PersistentVolumeList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n112, err := m.ListMeta.MarshalTo(data[i:]) + n90, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n112 + i += n90 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -5244,14 +5068,6 @@ func (m *PersistentVolumeList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n113, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n113 return i, nil } @@ -5274,151 +5090,151 @@ func (m *PersistentVolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.GCEPersistentDisk.Size())) - n114, err := m.GCEPersistentDisk.MarshalTo(data[i:]) + n91, err := m.GCEPersistentDisk.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n114 + i += n91 } if m.AWSElasticBlockStore != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.AWSElasticBlockStore.Size())) - n115, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) + n92, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n115 + i += n92 } if m.HostPath != nil { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.HostPath.Size())) - n116, err := m.HostPath.MarshalTo(data[i:]) + n93, err := m.HostPath.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n116 + i += n93 } if m.Glusterfs != nil { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.Glusterfs.Size())) - n117, err := m.Glusterfs.MarshalTo(data[i:]) + n94, err := m.Glusterfs.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n117 + i += n94 } if m.NFS != nil { data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(m.NFS.Size())) - n118, err := m.NFS.MarshalTo(data[i:]) + n95, err := m.NFS.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n118 + i += n95 } if m.RBD != nil { data[i] = 0x32 i++ i = encodeVarintGenerated(data, i, uint64(m.RBD.Size())) - n119, err := m.RBD.MarshalTo(data[i:]) + n96, err := m.RBD.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n119 + i += n96 } if m.ISCSI != nil { data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.ISCSI.Size())) - n120, err := m.ISCSI.MarshalTo(data[i:]) + n97, err := m.ISCSI.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n120 + i += n97 } if m.Cinder != nil { data[i] = 0x42 i++ i = encodeVarintGenerated(data, i, uint64(m.Cinder.Size())) - n121, err := m.Cinder.MarshalTo(data[i:]) + n98, err := m.Cinder.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n121 + i += n98 } if m.CephFS != nil { data[i] = 0x4a i++ i = encodeVarintGenerated(data, i, uint64(m.CephFS.Size())) - n122, err := m.CephFS.MarshalTo(data[i:]) + n99, err := m.CephFS.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n122 + i += n99 } if m.FC != nil { data[i] = 0x52 i++ i = encodeVarintGenerated(data, i, uint64(m.FC.Size())) - n123, err := m.FC.MarshalTo(data[i:]) + n100, err := m.FC.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n123 + i += n100 } if m.Flocker != nil { data[i] = 0x5a i++ i = encodeVarintGenerated(data, i, uint64(m.Flocker.Size())) - n124, err := m.Flocker.MarshalTo(data[i:]) + n101, err := m.Flocker.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n124 + i += n101 } if m.FlexVolume != nil { data[i] = 0x62 i++ i = encodeVarintGenerated(data, i, uint64(m.FlexVolume.Size())) - n125, err := m.FlexVolume.MarshalTo(data[i:]) + n102, err := m.FlexVolume.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n125 + i += n102 } if m.AzureFile != nil { data[i] = 0x6a i++ i = encodeVarintGenerated(data, i, uint64(m.AzureFile.Size())) - n126, err := m.AzureFile.MarshalTo(data[i:]) + n103, err := m.AzureFile.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n126 + i += n103 } if m.VsphereVolume != nil { data[i] = 0x72 i++ i = encodeVarintGenerated(data, i, uint64(m.VsphereVolume.Size())) - n127, err := m.VsphereVolume.MarshalTo(data[i:]) + n104, err := m.VsphereVolume.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n127 + i += n104 } if m.Quobyte != nil { data[i] = 0x7a i++ i = encodeVarintGenerated(data, i, uint64(m.Quobyte.Size())) - n128, err := m.Quobyte.MarshalTo(data[i:]) + n105, err := m.Quobyte.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n128 + i += n105 } if m.AzureDisk != nil { data[i] = 0x82 @@ -5426,11 +5242,11 @@ func (m *PersistentVolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.AzureDisk.Size())) - n129, err := m.AzureDisk.MarshalTo(data[i:]) + n106, err := m.AzureDisk.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n129 + i += n106 } if m.PhotonPersistentDisk != nil { data[i] = 0x8a @@ -5438,11 +5254,11 @@ func (m *PersistentVolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.PhotonPersistentDisk.Size())) - n130, err := m.PhotonPersistentDisk.MarshalTo(data[i:]) + n107, err := m.PhotonPersistentDisk.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n130 + i += n107 } return i, nil } @@ -5477,21 +5293,21 @@ func (m *PersistentVolumeSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n131, err := (&v).MarshalTo(data[i:]) + n108, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n131 + i += n108 } } data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.PersistentVolumeSource.Size())) - n132, err := m.PersistentVolumeSource.MarshalTo(data[i:]) + n109, err := m.PersistentVolumeSource.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n132 + i += n109 if len(m.AccessModes) > 0 { for _, s := range m.AccessModes { data[i] = 0x1a @@ -5511,11 +5327,11 @@ func (m *PersistentVolumeSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.ClaimRef.Size())) - n133, err := m.ClaimRef.MarshalTo(data[i:]) + n110, err := m.ClaimRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n133 + i += n110 } data[i] = 0x2a i++ @@ -5598,35 +5414,27 @@ func (m *Pod) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n134, err := m.ObjectMeta.MarshalTo(data[i:]) + n111, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n134 + i += n111 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n135, err := m.Spec.MarshalTo(data[i:]) + n112, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n135 + i += n112 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n136, err := m.Status.MarshalTo(data[i:]) + n113, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n136 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n137, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n137 + i += n113 return i, nil } @@ -5691,11 +5499,11 @@ func (m *PodAffinityTerm) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LabelSelector.Size())) - n138, err := m.LabelSelector.MarshalTo(data[i:]) + n114, err := m.LabelSelector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n138 + i += n114 } if len(m.Namespaces) > 0 { for _, s := range m.Namespaces { @@ -5812,14 +5620,6 @@ func (m *PodAttachOptions) MarshalTo(data []byte) (int, error) { i++ i = encodeVarintGenerated(data, i, uint64(len(m.Container))) i += copy(data[i:], m.Container) - data[i] = 0x32 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n139, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n139 return i, nil } @@ -5849,19 +5649,19 @@ func (m *PodCondition) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.LastProbeTime.Size())) - n140, err := m.LastProbeTime.MarshalTo(data[i:]) + n115, err := m.LastProbeTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n140 + i += n115 data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) - n141, err := m.LastTransitionTime.MarshalTo(data[i:]) + n116, err := m.LastTransitionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n141 + i += n116 data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -5939,14 +5739,6 @@ func (m *PodExecOptions) MarshalTo(data []byte) (int, error) { i += copy(data[i:], s) } } - data[i] = 0x3a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n142, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n142 return i, nil } @@ -5968,11 +5760,11 @@ func (m *PodList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n143, err := m.ListMeta.MarshalTo(data[i:]) + n117, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n143 + i += n117 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -5985,14 +5777,6 @@ func (m *PodList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n144, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n144 return i, nil } @@ -6040,11 +5824,11 @@ func (m *PodLogOptions) MarshalTo(data []byte) (int, error) { data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(m.SinceTime.Size())) - n145, err := m.SinceTime.MarshalTo(data[i:]) + n118, err := m.SinceTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n145 + i += n118 } data[i] = 0x30 i++ @@ -6064,14 +5848,6 @@ func (m *PodLogOptions) MarshalTo(data []byte) (int, error) { i++ i = encodeVarintGenerated(data, i, uint64(*m.LimitBytes)) } - data[i] = 0x4a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n146, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n146 return i, nil } @@ -6094,14 +5870,6 @@ func (m *PodProxyOptions) MarshalTo(data []byte) (int, error) { i++ i = encodeVarintGenerated(data, i, uint64(len(m.Path))) i += copy(data[i:], m.Path) - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n147, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n147 return i, nil } @@ -6124,11 +5892,11 @@ func (m *PodSecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.SELinuxOptions.Size())) - n148, err := m.SELinuxOptions.MarshalTo(data[i:]) + n119, err := m.SELinuxOptions.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n148 + i += n119 } if m.RunAsUser != nil { data[i] = 0x10 @@ -6179,11 +5947,11 @@ func (m *PodSignature) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.PodController.Size())) - n149, err := m.PodController.MarshalTo(data[i:]) + n120, err := m.PodController.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n149 + i += n120 } return i, nil } @@ -6302,11 +6070,11 @@ func (m *PodSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x72 i++ i = encodeVarintGenerated(data, i, uint64(m.SecurityContext.Size())) - n150, err := m.SecurityContext.MarshalTo(data[i:]) + n121, err := m.SecurityContext.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n150 + i += n121 } if len(m.ImagePullSecrets) > 0 { for _, msg := range m.ImagePullSecrets { @@ -6338,11 +6106,11 @@ func (m *PodSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.Affinity.Size())) - n151, err := m.Affinity.MarshalTo(data[i:]) + n122, err := m.Affinity.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n151 + i += n122 } return i, nil } @@ -6398,11 +6166,11 @@ func (m *PodStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.StartTime.Size())) - n152, err := m.StartTime.MarshalTo(data[i:]) + n123, err := m.StartTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n152 + i += n123 } if len(m.ContainerStatuses) > 0 { for _, msg := range m.ContainerStatuses { @@ -6441,27 +6209,19 @@ func (m *PodStatusResult) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n153, err := m.ObjectMeta.MarshalTo(data[i:]) + n124, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n153 + i += n124 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n154, err := m.Status.MarshalTo(data[i:]) + n125, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n154 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n155, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n155 + i += n125 return i, nil } @@ -6483,27 +6243,19 @@ func (m *PodTemplate) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n156, err := m.ObjectMeta.MarshalTo(data[i:]) + n126, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n156 + i += n126 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n157, err := m.Template.MarshalTo(data[i:]) + n127, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n157 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n158, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n158 + i += n127 return i, nil } @@ -6525,11 +6277,11 @@ func (m *PodTemplateList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n159, err := m.ListMeta.MarshalTo(data[i:]) + n128, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n159 + i += n128 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -6542,14 +6294,6 @@ func (m *PodTemplateList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n160, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n160 return i, nil } @@ -6571,19 +6315,19 @@ func (m *PodTemplateSpec) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n161, err := m.ObjectMeta.MarshalTo(data[i:]) + n129, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n161 + i += n129 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n162, err := m.Spec.MarshalTo(data[i:]) + n130, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n162 + i += n130 return i, nil } @@ -6629,19 +6373,19 @@ func (m *PreferAvoidPodsEntry) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.PodSignature.Size())) - n163, err := m.PodSignature.MarshalTo(data[i:]) + n131, err := m.PodSignature.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n163 + i += n131 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.EvictionTime.Size())) - n164, err := m.EvictionTime.MarshalTo(data[i:]) + n132, err := m.EvictionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n164 + i += n132 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -6674,11 +6418,11 @@ func (m *PreferredSchedulingTerm) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Preference.Size())) - n165, err := m.Preference.MarshalTo(data[i:]) + n133, err := m.Preference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n165 + i += n133 return i, nil } @@ -6700,11 +6444,11 @@ func (m *Probe) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Handler.Size())) - n166, err := m.Handler.MarshalTo(data[i:]) + n134, err := m.Handler.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n166 + i += n134 data[i] = 0x10 i++ i = encodeVarintGenerated(data, i, uint64(m.InitialDelaySeconds)) @@ -6819,11 +6563,11 @@ func (m *RBDVolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.SecretRef.Size())) - n167, err := m.SecretRef.MarshalTo(data[i:]) + n135, err := m.SecretRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n167 + i += n135 } data[i] = 0x40 i++ @@ -6854,11 +6598,11 @@ func (m *RangeAllocation) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n168, err := m.ObjectMeta.MarshalTo(data[i:]) + n136, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n168 + i += n136 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Range))) @@ -6869,14 +6613,6 @@ func (m *RangeAllocation) MarshalTo(data []byte) (int, error) { i = encodeVarintGenerated(data, i, uint64(len(m.Data))) i += copy(data[i:], m.Data) } - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n169, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n169 return i, nil } @@ -6898,35 +6634,27 @@ func (m *ReplicationController) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n170, err := m.ObjectMeta.MarshalTo(data[i:]) + n137, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n170 + i += n137 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n171, err := m.Spec.MarshalTo(data[i:]) + n138, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n171 + i += n138 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n172, err := m.Status.MarshalTo(data[i:]) + n139, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n172 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n173, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n173 + i += n139 return i, nil } @@ -6956,11 +6684,11 @@ func (m *ReplicationControllerCondition) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) - n174, err := m.LastTransitionTime.MarshalTo(data[i:]) + n140, err := m.LastTransitionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n174 + i += n140 data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -6990,11 +6718,11 @@ func (m *ReplicationControllerList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n175, err := m.ListMeta.MarshalTo(data[i:]) + n141, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n175 + i += n141 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7007,14 +6735,6 @@ func (m *ReplicationControllerList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n176, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n176 return i, nil } @@ -7059,11 +6779,11 @@ func (m *ReplicationControllerSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n177, err := m.Template.MarshalTo(data[i:]) + n142, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n177 + i += n142 } data[i] = 0x20 i++ @@ -7142,11 +6862,11 @@ func (m *ResourceFieldSelector) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Divisor.Size())) - n178, err := m.Divisor.MarshalTo(data[i:]) + n143, err := m.Divisor.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n178 + i += n143 return i, nil } @@ -7168,35 +6888,27 @@ func (m *ResourceQuota) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n179, err := m.ObjectMeta.MarshalTo(data[i:]) + n144, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n179 + i += n144 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n180, err := m.Spec.MarshalTo(data[i:]) + n145, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n180 + i += n145 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n181, err := m.Status.MarshalTo(data[i:]) + n146, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n181 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n182, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n182 + i += n146 return i, nil } @@ -7218,11 +6930,11 @@ func (m *ResourceQuotaList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n183, err := m.ListMeta.MarshalTo(data[i:]) + n147, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n183 + i += n147 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7235,14 +6947,6 @@ func (m *ResourceQuotaList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n184, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n184 return i, nil } @@ -7276,11 +6980,11 @@ func (m *ResourceQuotaSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n185, err := (&v).MarshalTo(data[i:]) + n148, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n185 + i += n148 } } if len(m.Scopes) > 0 { @@ -7331,11 +7035,11 @@ func (m *ResourceQuotaStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n186, err := (&v).MarshalTo(data[i:]) + n149, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n186 + i += n149 } } if len(m.Used) > 0 { @@ -7353,11 +7057,11 @@ func (m *ResourceQuotaStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n187, err := (&v).MarshalTo(data[i:]) + n150, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n187 + i += n150 } } return i, nil @@ -7393,11 +7097,11 @@ func (m *ResourceRequirements) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n188, err := (&v).MarshalTo(data[i:]) + n151, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n188 + i += n151 } } if len(m.Requests) > 0 { @@ -7415,11 +7119,11 @@ func (m *ResourceRequirements) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n189, err := (&v).MarshalTo(data[i:]) + n152, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n189 + i += n152 } } return i, nil @@ -7477,11 +7181,11 @@ func (m *Secret) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n190, err := m.ObjectMeta.MarshalTo(data[i:]) + n153, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n190 + i += n153 if len(m.Data) > 0 { for k := range m.Data { data[i] = 0x12 @@ -7520,14 +7224,6 @@ func (m *Secret) MarshalTo(data []byte) (int, error) { i += copy(data[i:], v) } } - data[i] = 0x2a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n191, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n191 return i, nil } @@ -7549,11 +7245,11 @@ func (m *SecretKeySelector) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LocalObjectReference.Size())) - n192, err := m.LocalObjectReference.MarshalTo(data[i:]) + n154, err := m.LocalObjectReference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n192 + i += n154 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Key))) @@ -7579,11 +7275,11 @@ func (m *SecretList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n193, err := m.ListMeta.MarshalTo(data[i:]) + n155, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n193 + i += n155 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7596,14 +7292,6 @@ func (m *SecretList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n194, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n194 return i, nil } @@ -7665,11 +7353,11 @@ func (m *SecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Capabilities.Size())) - n195, err := m.Capabilities.MarshalTo(data[i:]) + n156, err := m.Capabilities.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n195 + i += n156 } if m.Privileged != nil { data[i] = 0x10 @@ -7685,11 +7373,11 @@ func (m *SecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.SELinuxOptions.Size())) - n196, err := m.SELinuxOptions.MarshalTo(data[i:]) + n157, err := m.SELinuxOptions.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n196 + i += n157 } if m.RunAsUser != nil { data[i] = 0x20 @@ -7737,19 +7425,11 @@ func (m *SerializedReference) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Reference.Size())) - n197, err := m.Reference.MarshalTo(data[i:]) + n158, err := m.Reference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n197 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n198, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n198 + i += n158 return i, nil } @@ -7771,35 +7451,27 @@ func (m *Service) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n199, err := m.ObjectMeta.MarshalTo(data[i:]) + n159, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n199 + i += n159 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n200, err := m.Spec.MarshalTo(data[i:]) + n160, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n200 + i += n160 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n201, err := m.Status.MarshalTo(data[i:]) + n161, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n201 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n202, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n202 + i += n161 return i, nil } @@ -7821,11 +7493,11 @@ func (m *ServiceAccount) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n203, err := m.ObjectMeta.MarshalTo(data[i:]) + n162, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n203 + i += n162 if len(m.Secrets) > 0 { for _, msg := range m.Secrets { data[i] = 0x12 @@ -7850,14 +7522,6 @@ func (m *ServiceAccount) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n204, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n204 return i, nil } @@ -7879,11 +7543,11 @@ func (m *ServiceAccountList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n205, err := m.ListMeta.MarshalTo(data[i:]) + n163, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n205 + i += n163 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7896,14 +7560,6 @@ func (m *ServiceAccountList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n206, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n206 return i, nil } @@ -7925,11 +7581,11 @@ func (m *ServiceList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n207, err := m.ListMeta.MarshalTo(data[i:]) + n164, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n207 + i += n164 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7942,14 +7598,6 @@ func (m *ServiceList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n208, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n208 return i, nil } @@ -7982,11 +7630,11 @@ func (m *ServicePort) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.TargetPort.Size())) - n209, err := m.TargetPort.MarshalTo(data[i:]) + n165, err := m.TargetPort.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n209 + i += n165 data[i] = 0x28 i++ i = encodeVarintGenerated(data, i, uint64(m.NodePort)) @@ -8012,14 +7660,6 @@ func (m *ServiceProxyOptions) MarshalTo(data []byte) (int, error) { i++ i = encodeVarintGenerated(data, i, uint64(len(m.Path))) i += copy(data[i:], m.Path) - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n210, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n210 return i, nil } @@ -8153,11 +7793,11 @@ func (m *ServiceStatus) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LoadBalancer.Size())) - n211, err := m.LoadBalancer.MarshalTo(data[i:]) + n166, err := m.LoadBalancer.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n211 + i += n166 return i, nil } @@ -8205,11 +7845,11 @@ func (m *TCPSocketAction) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Port.Size())) - n212, err := m.Port.MarshalTo(data[i:]) + n167, err := m.Port.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n212 + i += n167 return i, nil } @@ -8299,11 +7939,11 @@ func (m *Volume) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.VolumeSource.Size())) - n213, err := m.VolumeSource.MarshalTo(data[i:]) + n168, err := m.VolumeSource.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n213 + i += n168 return i, nil } @@ -8364,151 +8004,151 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.HostPath.Size())) - n214, err := m.HostPath.MarshalTo(data[i:]) + n169, err := m.HostPath.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n214 + i += n169 } if m.EmptyDir != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.EmptyDir.Size())) - n215, err := m.EmptyDir.MarshalTo(data[i:]) + n170, err := m.EmptyDir.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n215 + i += n170 } if m.GCEPersistentDisk != nil { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.GCEPersistentDisk.Size())) - n216, err := m.GCEPersistentDisk.MarshalTo(data[i:]) + n171, err := m.GCEPersistentDisk.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n216 + i += n171 } if m.AWSElasticBlockStore != nil { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.AWSElasticBlockStore.Size())) - n217, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) + n172, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n217 + i += n172 } if m.GitRepo != nil { data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(m.GitRepo.Size())) - n218, err := m.GitRepo.MarshalTo(data[i:]) + n173, err := m.GitRepo.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n218 + i += n173 } if m.Secret != nil { data[i] = 0x32 i++ i = encodeVarintGenerated(data, i, uint64(m.Secret.Size())) - n219, err := m.Secret.MarshalTo(data[i:]) + n174, err := m.Secret.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n219 + i += n174 } if m.NFS != nil { data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.NFS.Size())) - n220, err := m.NFS.MarshalTo(data[i:]) + n175, err := m.NFS.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n220 + i += n175 } if m.ISCSI != nil { data[i] = 0x42 i++ i = encodeVarintGenerated(data, i, uint64(m.ISCSI.Size())) - n221, err := m.ISCSI.MarshalTo(data[i:]) + n176, err := m.ISCSI.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n221 + i += n176 } if m.Glusterfs != nil { data[i] = 0x4a i++ i = encodeVarintGenerated(data, i, uint64(m.Glusterfs.Size())) - n222, err := m.Glusterfs.MarshalTo(data[i:]) + n177, err := m.Glusterfs.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n222 + i += n177 } if m.PersistentVolumeClaim != nil { data[i] = 0x52 i++ i = encodeVarintGenerated(data, i, uint64(m.PersistentVolumeClaim.Size())) - n223, err := m.PersistentVolumeClaim.MarshalTo(data[i:]) + n178, err := m.PersistentVolumeClaim.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n223 + i += n178 } if m.RBD != nil { data[i] = 0x5a i++ i = encodeVarintGenerated(data, i, uint64(m.RBD.Size())) - n224, err := m.RBD.MarshalTo(data[i:]) + n179, err := m.RBD.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n224 + i += n179 } if m.FlexVolume != nil { data[i] = 0x62 i++ i = encodeVarintGenerated(data, i, uint64(m.FlexVolume.Size())) - n225, err := m.FlexVolume.MarshalTo(data[i:]) + n180, err := m.FlexVolume.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n225 + i += n180 } if m.Cinder != nil { data[i] = 0x6a i++ i = encodeVarintGenerated(data, i, uint64(m.Cinder.Size())) - n226, err := m.Cinder.MarshalTo(data[i:]) + n181, err := m.Cinder.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n226 + i += n181 } if m.CephFS != nil { data[i] = 0x72 i++ i = encodeVarintGenerated(data, i, uint64(m.CephFS.Size())) - n227, err := m.CephFS.MarshalTo(data[i:]) + n182, err := m.CephFS.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n227 + i += n182 } if m.Flocker != nil { data[i] = 0x7a i++ i = encodeVarintGenerated(data, i, uint64(m.Flocker.Size())) - n228, err := m.Flocker.MarshalTo(data[i:]) + n183, err := m.Flocker.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n228 + i += n183 } if m.DownwardAPI != nil { data[i] = 0x82 @@ -8516,11 +8156,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.DownwardAPI.Size())) - n229, err := m.DownwardAPI.MarshalTo(data[i:]) + n184, err := m.DownwardAPI.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n229 + i += n184 } if m.FC != nil { data[i] = 0x8a @@ -8528,11 +8168,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.FC.Size())) - n230, err := m.FC.MarshalTo(data[i:]) + n185, err := m.FC.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n230 + i += n185 } if m.AzureFile != nil { data[i] = 0x92 @@ -8540,11 +8180,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.AzureFile.Size())) - n231, err := m.AzureFile.MarshalTo(data[i:]) + n186, err := m.AzureFile.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n231 + i += n186 } if m.ConfigMap != nil { data[i] = 0x9a @@ -8552,11 +8192,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.ConfigMap.Size())) - n232, err := m.ConfigMap.MarshalTo(data[i:]) + n187, err := m.ConfigMap.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n232 + i += n187 } if m.VsphereVolume != nil { data[i] = 0xa2 @@ -8564,11 +8204,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.VsphereVolume.Size())) - n233, err := m.VsphereVolume.MarshalTo(data[i:]) + n188, err := m.VsphereVolume.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n233 + i += n188 } if m.Quobyte != nil { data[i] = 0xaa @@ -8576,11 +8216,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.Quobyte.Size())) - n234, err := m.Quobyte.MarshalTo(data[i:]) + n189, err := m.Quobyte.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n234 + i += n189 } if m.AzureDisk != nil { data[i] = 0xb2 @@ -8588,11 +8228,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.AzureDisk.Size())) - n235, err := m.AzureDisk.MarshalTo(data[i:]) + n190, err := m.AzureDisk.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n235 + i += n190 } if m.PhotonPersistentDisk != nil { data[i] = 0xba @@ -8600,11 +8240,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.PhotonPersistentDisk.Size())) - n236, err := m.PhotonPersistentDisk.MarshalTo(data[i:]) + n191, err := m.PhotonPersistentDisk.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n236 + i += n191 } return i, nil } @@ -8656,11 +8296,11 @@ func (m *WeightedPodAffinityTerm) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.PodAffinityTerm.Size())) - n237, err := m.PodAffinityTerm.MarshalTo(data[i:]) + n192, err := m.PodAffinityTerm.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n237 + i += n192 return i, nil } @@ -8782,8 +8422,6 @@ func (m *Binding) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Target.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -8864,8 +8502,6 @@ func (m *ComponentStatus) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -8880,8 +8516,6 @@ func (m *ComponentStatusList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -8898,8 +8532,6 @@ func (m *ConfigMap) Size() (n int) { n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -8932,8 +8564,6 @@ func (m *ConfigMapList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -9148,8 +8778,6 @@ func (m *DeleteOptions) Size() (n int) { if m.OrphanDependents != nil { n += 2 } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -9259,8 +8887,6 @@ func (m *Endpoints) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -9275,8 +8901,6 @@ func (m *EndpointsList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -9348,8 +8972,6 @@ func (m *Event) Size() (n int) { n += 1 + sovGenerated(uint64(m.Count)) l = len(m.Type) n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -9364,8 +8986,6 @@ func (m *EventList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -9583,8 +9203,6 @@ func (m *LimitRange) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Spec.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -9652,8 +9270,6 @@ func (m *LimitRangeList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -9680,8 +9296,6 @@ func (m *List) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -9698,8 +9312,6 @@ func (m *ListOptions) Size() (n int) { if m.TimeoutSeconds != nil { n += 1 + sovGenerated(uint64(*m.TimeoutSeconds)) } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -9753,8 +9365,6 @@ func (m *Namespace) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -9769,8 +9379,6 @@ func (m *NamespaceList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -9803,8 +9411,6 @@ func (m *Node) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -9871,8 +9477,6 @@ func (m *NodeList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -9881,8 +9485,6 @@ func (m *NodeProxyOptions) Size() (n int) { _ = l l = len(m.Path) n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10137,8 +9739,6 @@ func (m *PersistentVolume) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10151,8 +9751,6 @@ func (m *PersistentVolumeClaim) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10167,8 +9765,6 @@ func (m *PersistentVolumeClaimList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10235,8 +9831,6 @@ func (m *PersistentVolumeList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10374,8 +9968,6 @@ func (m *Pod) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10442,8 +10034,6 @@ func (m *PodAttachOptions) Size() (n int) { n += 2 l = len(m.Container) n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10480,8 +10070,6 @@ func (m *PodExecOptions) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10496,8 +10084,6 @@ func (m *PodList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10522,8 +10108,6 @@ func (m *PodLogOptions) Size() (n int) { if m.LimitBytes != nil { n += 1 + sovGenerated(uint64(*m.LimitBytes)) } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10532,8 +10116,6 @@ func (m *PodProxyOptions) Size() (n int) { _ = l l = len(m.Path) n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10675,8 +10257,6 @@ func (m *PodStatusResult) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10687,8 +10267,6 @@ func (m *PodTemplate) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Template.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10703,8 +10281,6 @@ func (m *PodTemplateList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10817,8 +10393,6 @@ func (m *RangeAllocation) Size() (n int) { l = len(m.Data) n += 1 + l + sovGenerated(uint64(l)) } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10831,8 +10405,6 @@ func (m *ReplicationController) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10863,8 +10435,6 @@ func (m *ReplicationControllerList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10928,8 +10498,6 @@ func (m *ResourceQuota) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -10944,8 +10512,6 @@ func (m *ResourceQuotaList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -11055,8 +10621,6 @@ func (m *Secret) Size() (n int) { n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -11081,8 +10645,6 @@ func (m *SecretList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -11134,8 +10696,6 @@ func (m *SerializedReference) Size() (n int) { _ = l l = m.Reference.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -11148,8 +10708,6 @@ func (m *Service) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -11170,8 +10728,6 @@ func (m *ServiceAccount) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -11186,8 +10742,6 @@ func (m *ServiceAccountList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -11202,8 +10756,6 @@ func (m *ServiceList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -11226,8 +10778,6 @@ func (m *ServiceProxyOptions) Size() (n int) { _ = l l = len(m.Path) n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -11563,7 +11113,6 @@ func (this *Binding) String() string { s := strings.Join([]string{`&Binding{`, `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Target:` + strings.Replace(strings.Replace(this.Target.String(), "ObjectReference", "ObjectReference", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -11626,7 +11175,6 @@ func (this *ComponentStatus) String() string { s := strings.Join([]string{`&ComponentStatus{`, `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Conditions:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Conditions), "ComponentCondition", "ComponentCondition", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -11638,7 +11186,6 @@ func (this *ComponentStatusList) String() string { s := strings.Join([]string{`&ComponentStatusList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "ComponentStatus", "ComponentStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -11660,7 +11207,6 @@ func (this *ConfigMap) String() string { s := strings.Join([]string{`&ConfigMap{`, `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Data:` + mapStringForData + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -11693,7 +11239,6 @@ func (this *ConfigMapList) String() string { s := strings.Join([]string{`&ConfigMapList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "ConfigMap", "ConfigMap", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -11847,7 +11392,6 @@ func (this *DeleteOptions) String() string { `GracePeriodSeconds:` + valueToStringGenerated(this.GracePeriodSeconds) + `,`, `Preconditions:` + strings.Replace(fmt.Sprintf("%v", this.Preconditions), "Preconditions", "Preconditions", 1) + `,`, `OrphanDependents:` + valueToStringGenerated(this.OrphanDependents) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -11930,7 +11474,6 @@ func (this *Endpoints) String() string { s := strings.Join([]string{`&Endpoints{`, `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Subsets:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Subsets), "EndpointSubset", "EndpointSubset", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -11942,7 +11485,6 @@ func (this *EndpointsList) String() string { s := strings.Join([]string{`&EndpointsList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Endpoints", "Endpoints", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -11997,7 +11539,6 @@ func (this *Event) String() string { `LastTimestamp:` + strings.Replace(strings.Replace(this.LastTimestamp.String(), "Time", "k8s_io_apimachinery_pkg_apis_meta_v1.Time", 1), `&`, ``, 1) + `,`, `Count:` + fmt.Sprintf("%v", this.Count) + `,`, `Type:` + fmt.Sprintf("%v", this.Type) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12009,7 +11550,6 @@ func (this *EventList) String() string { s := strings.Join([]string{`&EventList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Event", "Event", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12212,7 +11752,6 @@ func (this *LimitRange) String() string { s := strings.Join([]string{`&LimitRange{`, `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "LimitRangeSpec", "LimitRangeSpec", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12289,7 +11828,6 @@ func (this *LimitRangeList) String() string { s := strings.Join([]string{`&LimitRangeList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "LimitRange", "LimitRange", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12311,7 +11849,6 @@ func (this *List) String() string { s := strings.Join([]string{`&List{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "RawExtension", "k8s_io_apimachinery_pkg_runtime.RawExtension", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12326,7 +11863,6 @@ func (this *ListOptions) String() string { `Watch:` + fmt.Sprintf("%v", this.Watch) + `,`, `ResourceVersion:` + fmt.Sprintf("%v", this.ResourceVersion) + `,`, `TimeoutSeconds:` + valueToStringGenerated(this.TimeoutSeconds) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12382,7 +11918,6 @@ func (this *Namespace) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "NamespaceSpec", "NamespaceSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "NamespaceStatus", "NamespaceStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12394,7 +11929,6 @@ func (this *NamespaceList) String() string { s := strings.Join([]string{`&NamespaceList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Namespace", "Namespace", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12427,7 +11961,6 @@ func (this *Node) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "NodeSpec", "NodeSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "NodeStatus", "NodeStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12486,7 +12019,6 @@ func (this *NodeList) String() string { s := strings.Join([]string{`&NodeList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Node", "Node", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12497,7 +12029,6 @@ func (this *NodeProxyOptions) String() string { } s := strings.Join([]string{`&NodeProxyOptions{`, `Path:` + fmt.Sprintf("%v", this.Path) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12704,7 +12235,6 @@ func (this *PersistentVolume) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "PersistentVolumeSpec", "PersistentVolumeSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "PersistentVolumeStatus", "PersistentVolumeStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12717,7 +12247,6 @@ func (this *PersistentVolumeClaim) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "PersistentVolumeClaimSpec", "PersistentVolumeClaimSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "PersistentVolumeClaimStatus", "PersistentVolumeClaimStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12729,7 +12258,6 @@ func (this *PersistentVolumeClaimList) String() string { s := strings.Join([]string{`&PersistentVolumeClaimList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "PersistentVolumeClaim", "PersistentVolumeClaim", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12787,7 +12315,6 @@ func (this *PersistentVolumeList) String() string { s := strings.Join([]string{`&PersistentVolumeList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "PersistentVolume", "PersistentVolume", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12873,7 +12400,6 @@ func (this *Pod) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "PodSpec", "PodSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "PodStatus", "PodStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12922,7 +12448,6 @@ func (this *PodAttachOptions) String() string { `Stderr:` + fmt.Sprintf("%v", this.Stderr) + `,`, `TTY:` + fmt.Sprintf("%v", this.TTY) + `,`, `Container:` + fmt.Sprintf("%v", this.Container) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12953,7 +12478,6 @@ func (this *PodExecOptions) String() string { `TTY:` + fmt.Sprintf("%v", this.TTY) + `,`, `Container:` + fmt.Sprintf("%v", this.Container) + `,`, `Command:` + fmt.Sprintf("%v", this.Command) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12965,7 +12489,6 @@ func (this *PodList) String() string { s := strings.Join([]string{`&PodList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Pod", "Pod", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12983,7 +12506,6 @@ func (this *PodLogOptions) String() string { `Timestamps:` + fmt.Sprintf("%v", this.Timestamps) + `,`, `TailLines:` + valueToStringGenerated(this.TailLines) + `,`, `LimitBytes:` + valueToStringGenerated(this.LimitBytes) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -12994,7 +12516,6 @@ func (this *PodProxyOptions) String() string { } s := strings.Join([]string{`&PodProxyOptions{`, `Path:` + fmt.Sprintf("%v", this.Path) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13085,7 +12606,6 @@ func (this *PodStatusResult) String() string { s := strings.Join([]string{`&PodStatusResult{`, `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "PodStatus", "PodStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13097,7 +12617,6 @@ func (this *PodTemplate) String() string { s := strings.Join([]string{`&PodTemplate{`, `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Template:` + strings.Replace(strings.Replace(this.Template.String(), "PodTemplateSpec", "PodTemplateSpec", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13109,7 +12628,6 @@ func (this *PodTemplateList) String() string { s := strings.Join([]string{`&PodTemplateList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "PodTemplate", "PodTemplate", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13213,7 +12731,6 @@ func (this *RangeAllocation) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Range:` + fmt.Sprintf("%v", this.Range) + `,`, `Data:` + valueToStringGenerated(this.Data) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13226,7 +12743,6 @@ func (this *ReplicationController) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "ReplicationControllerSpec", "ReplicationControllerSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "ReplicationControllerStatus", "ReplicationControllerStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13252,7 +12768,6 @@ func (this *ReplicationControllerList) String() string { s := strings.Join([]string{`&ReplicationControllerList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "ReplicationController", "ReplicationController", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13315,7 +12830,6 @@ func (this *ResourceQuota) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "ResourceQuotaSpec", "ResourceQuotaSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "ResourceQuotaStatus", "ResourceQuotaStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13327,7 +12841,6 @@ func (this *ResourceQuotaList) String() string { s := strings.Join([]string{`&ResourceQuotaList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "ResourceQuota", "ResourceQuota", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13457,7 +12970,6 @@ func (this *Secret) String() string { `Data:` + mapStringForData + `,`, `Type:` + fmt.Sprintf("%v", this.Type) + `,`, `StringData:` + mapStringForStringData + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13480,7 +12992,6 @@ func (this *SecretList) String() string { s := strings.Join([]string{`&SecretList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Secret", "Secret", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13518,7 +13029,6 @@ func (this *SerializedReference) String() string { } s := strings.Join([]string{`&SerializedReference{`, `Reference:` + strings.Replace(strings.Replace(this.Reference.String(), "ObjectReference", "ObjectReference", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13531,7 +13041,6 @@ func (this *Service) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "ServiceSpec", "ServiceSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "ServiceStatus", "ServiceStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13544,7 +13053,6 @@ func (this *ServiceAccount) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "ObjectMeta", 1), `&`, ``, 1) + `,`, `Secrets:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Secrets), "ObjectReference", "ObjectReference", 1), `&`, ``, 1) + `,`, `ImagePullSecrets:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ImagePullSecrets), "LocalObjectReference", "LocalObjectReference", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13556,7 +13064,6 @@ func (this *ServiceAccountList) String() string { s := strings.Join([]string{`&ServiceAccountList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "ServiceAccount", "ServiceAccount", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13568,7 +13075,6 @@ func (this *ServiceList) String() string { s := strings.Join([]string{`&ServiceList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Service", "Service", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13593,7 +13099,6 @@ func (this *ServiceProxyOptions) String() string { } s := strings.Join([]string{`&ServiceProxyOptions{`, `Path:` + fmt.Sprintf("%v", this.Path) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -14660,36 +14165,6 @@ func (m *Binding) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -15422,36 +14897,6 @@ func (m *ComponentStatus) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -15563,36 +15008,6 @@ func (m *ComponentStatusList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -15784,36 +15199,6 @@ func (m *ConfigMap) Unmarshal(data []byte) error { } m.Data[mapkey] = mapvalue iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -16114,36 +15499,6 @@ func (m *ConfigMapList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -18177,36 +17532,6 @@ func (m *DeleteOptions) Unmarshal(data []byte) error { } b := bool(v != 0) m.OrphanDependents = &b - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -19104,36 +18429,6 @@ func (m *Endpoints) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -19245,36 +18540,6 @@ func (m *EndpointsList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -20016,36 +19281,6 @@ func (m *Event) Unmarshal(data []byte) error { } m.Type = string(data[iNdEx:postIndex]) iNdEx = postIndex - case 10: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -20157,36 +19392,6 @@ func (m *EventList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -22407,36 +21612,6 @@ func (m *LimitRange) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -23207,36 +22382,6 @@ func (m *LimitRangeList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -23429,36 +22574,6 @@ func (m *List) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -23636,36 +22751,6 @@ func (m *ListOptions) Unmarshal(data []byte) error { } } m.TimeoutSeconds = &v - case 6: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -24202,36 +23287,6 @@ func (m *Namespace) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -24343,36 +23398,6 @@ func (m *NamespaceList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -24671,36 +23696,6 @@ func (m *Node) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -25340,36 +24335,6 @@ func (m *NodeList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -25449,36 +24414,6 @@ func (m *NodeProxyOptions) Unmarshal(data []byte) error { } m.Path = string(data[iNdEx:postIndex]) iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -28103,36 +27038,6 @@ func (m *PersistentVolume) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -28273,36 +27178,6 @@ func (m *PersistentVolumeClaim) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -28414,36 +27289,6 @@ func (m *PersistentVolumeClaimList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -29049,36 +27894,6 @@ func (m *PersistentVolumeList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -30362,36 +29177,6 @@ func (m *Pod) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -30916,36 +29701,6 @@ func (m *PodAttachOptions) Unmarshal(data []byte) error { } m.Container = string(data[iNdEx:postIndex]) iNdEx = postIndex - case 6: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -31360,36 +30115,6 @@ func (m *PodExecOptions) Unmarshal(data []byte) error { } m.Command = append(m.Command, string(data[iNdEx:postIndex])) iNdEx = postIndex - case 7: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -31501,36 +30226,6 @@ func (m *PodList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -31763,36 +30458,6 @@ func (m *PodLogOptions) Unmarshal(data []byte) error { } } m.LimitBytes = &v - case 9: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -31872,36 +30537,6 @@ func (m *PodProxyOptions) Unmarshal(data []byte) error { } m.Path = string(data[iNdEx:postIndex]) iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -33201,36 +31836,6 @@ func (m *PodStatusResult) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -33341,36 +31946,6 @@ func (m *PodTemplate) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -33482,36 +32057,6 @@ func (m *PodTemplateList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -34747,36 +33292,6 @@ func (m *RangeAllocation) Unmarshal(data []byte) error { m.Data = []byte{} } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -34917,36 +33432,6 @@ func (m *ReplicationController) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -35254,36 +33739,6 @@ func (m *ReplicationControllerList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -35971,36 +34426,6 @@ func (m *ResourceQuota) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -36112,36 +34537,6 @@ func (m *ResourceQuotaList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -37399,36 +35794,6 @@ func (m *Secret) Unmarshal(data []byte) error { } m.StringData[mapkey] = mapvalue iNdEx = postIndex - case 5: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -37649,36 +36014,6 @@ func (m *SecretList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -38088,36 +36423,6 @@ func (m *SerializedReference) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -38258,36 +36563,6 @@ func (m *Service) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -38430,36 +36705,6 @@ func (m *ServiceAccount) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -38571,36 +36816,6 @@ func (m *ServiceAccountList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -38712,36 +36927,6 @@ func (m *ServiceList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -38997,36 +37182,6 @@ func (m *ServiceProxyOptions) Unmarshal(data []byte) error { } m.Path = string(data[iNdEx:postIndex]) iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -41431,653 +39586,640 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 10354 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x6c, 0x24, 0xc7, - 0x95, 0x98, 0x67, 0x86, 0x5f, 0xf3, 0xf8, 0xb9, 0xb5, 0x1f, 0xa2, 0x68, 0x69, 0xb9, 0x6a, 0x59, - 0xf2, 0x4a, 0x5a, 0x91, 0xda, 0x95, 0x64, 0xc9, 0x96, 0x23, 0x9b, 0xe4, 0x90, 0xbb, 0xf4, 0x2e, - 0x97, 0xa3, 0x1a, 0xee, 0xae, 0x6c, 0x2b, 0xb6, 0x9b, 0xd3, 0x45, 0xb2, 0xbd, 0x3d, 0xdd, 0xa3, - 0xee, 0x1e, 0xee, 0xd2, 0x8e, 0x81, 0x8b, 0x4f, 0xb8, 0xc3, 0x21, 0x4e, 0xce, 0x97, 0x3b, 0x07, - 0x71, 0xce, 0x97, 0xdc, 0x5d, 0xe2, 0xe4, 0x92, 0x20, 0x1f, 0xce, 0xdd, 0x21, 0x36, 0xe2, 0x3f, - 0x01, 0x92, 0xc0, 0x49, 0x90, 0xc0, 0x87, 0x00, 0xb9, 0x83, 0x0f, 0x61, 0x4e, 0x74, 0x10, 0x20, - 0x7f, 0x82, 0x20, 0x41, 0xfe, 0xf0, 0xc7, 0x21, 0xa8, 0xcf, 0xae, 0xea, 0x19, 0xb2, 0x7b, 0x28, - 0x0e, 0xb9, 0x3e, 0xe4, 0xdf, 0xcc, 0x7b, 0xaf, 0x5e, 0x55, 0xd7, 0xc7, 0xab, 0xf7, 0x5e, 0xbd, - 0x7a, 0x05, 0x57, 0xee, 0xbf, 0x1e, 0xcd, 0xb8, 0xc1, 0xec, 0xfd, 0xd6, 0x3a, 0x09, 0x7d, 0x12, - 0x93, 0x68, 0xb6, 0x79, 0x7f, 0x73, 0xd6, 0x6e, 0xba, 0xb3, 0xdb, 0x57, 0x67, 0x37, 0x89, 0x4f, - 0x42, 0x3b, 0x26, 0xce, 0x4c, 0x33, 0x0c, 0xe2, 0x00, 0x3d, 0xc1, 0xa9, 0x67, 0x12, 0xea, 0x99, - 0xe6, 0xfd, 0xcd, 0x19, 0xbb, 0xe9, 0xce, 0x6c, 0x5f, 0x9d, 0x7a, 0x71, 0xd3, 0x8d, 0xb7, 0x5a, - 0xeb, 0x33, 0xf5, 0xa0, 0x31, 0xbb, 0x19, 0x6c, 0x06, 0xb3, 0xac, 0xd0, 0x7a, 0x6b, 0x83, 0xfd, - 0x63, 0x7f, 0xd8, 0x2f, 0xce, 0x6c, 0xea, 0x15, 0x51, 0xb5, 0xdd, 0x74, 0x1b, 0x76, 0x7d, 0xcb, - 0xf5, 0x49, 0xb8, 0x23, 0x2b, 0x8f, 0x66, 0x1b, 0x24, 0xb6, 0x3b, 0x34, 0x61, 0x6a, 0xf6, 0xa0, - 0x52, 0x61, 0xcb, 0x8f, 0xdd, 0x06, 0x69, 0x2b, 0xf0, 0xb1, 0xac, 0x02, 0x51, 0x7d, 0x8b, 0x34, - 0xec, 0xb6, 0x72, 0xd7, 0x0e, 0xee, 0x99, 0x90, 0x44, 0x41, 0x2b, 0xac, 0xb7, 0xd7, 0x75, 0xb5, - 0x73, 0x99, 0x56, 0xec, 0x7a, 0xb3, 0xae, 0x1f, 0x47, 0x71, 0x98, 0x2e, 0x62, 0xfd, 0x61, 0x01, - 0x2e, 0xcd, 0xdd, 0xab, 0x2d, 0x7a, 0x76, 0x14, 0xbb, 0xf5, 0x79, 0x2f, 0xa8, 0xdf, 0xaf, 0xc5, - 0x41, 0x48, 0xee, 0x06, 0x5e, 0xab, 0x41, 0x6a, 0xac, 0x1e, 0x74, 0x05, 0x86, 0xb6, 0xd9, 0xff, - 0xe5, 0xca, 0x64, 0xe1, 0x52, 0xe1, 0x72, 0x79, 0x7e, 0xe2, 0x47, 0xbb, 0xd3, 0x1f, 0xda, 0xdb, - 0x9d, 0x1e, 0xba, 0x2b, 0xe0, 0x58, 0x51, 0xa0, 0x67, 0x61, 0x60, 0x23, 0x5a, 0xdb, 0x69, 0x92, - 0xc9, 0x22, 0xa3, 0x1d, 0x13, 0xb4, 0x03, 0x4b, 0x35, 0x0a, 0xc5, 0x02, 0x8b, 0x66, 0xa1, 0xdc, - 0xb4, 0xc3, 0xd8, 0x8d, 0xdd, 0xc0, 0x9f, 0x2c, 0x5d, 0x2a, 0x5c, 0xee, 0x9f, 0x3f, 0x23, 0x48, - 0xcb, 0x55, 0x89, 0xc0, 0x09, 0x0d, 0x6d, 0x46, 0x48, 0x6c, 0x67, 0xd5, 0xf7, 0x76, 0x26, 0xfb, - 0x2e, 0x15, 0x2e, 0x0f, 0x25, 0xcd, 0xc0, 0x02, 0x8e, 0x15, 0x85, 0xf5, 0xfd, 0x22, 0x0c, 0xcd, - 0x6d, 0x6c, 0xb8, 0xbe, 0x1b, 0xef, 0xa0, 0x2f, 0xc1, 0x88, 0x1f, 0x38, 0x44, 0xfe, 0x67, 0x5f, - 0x31, 0x7c, 0xed, 0xf9, 0x99, 0xc3, 0x26, 0xd4, 0xcc, 0x6d, 0xad, 0xc4, 0xfc, 0xc4, 0xde, 0xee, - 0xf4, 0x88, 0x0e, 0xc1, 0x06, 0x47, 0xf4, 0x0e, 0x0c, 0x37, 0x03, 0x47, 0x55, 0x50, 0x64, 0x15, - 0x3c, 0x77, 0x78, 0x05, 0xd5, 0xa4, 0xc0, 0xfc, 0xf8, 0xde, 0xee, 0xf4, 0xb0, 0x06, 0xc0, 0x3a, - 0x3b, 0xe4, 0xc1, 0x38, 0xfd, 0xeb, 0xc7, 0xae, 0xaa, 0xa1, 0xc4, 0x6a, 0x78, 0x31, 0xbb, 0x06, - 0xad, 0xd0, 0xfc, 0xd9, 0xbd, 0xdd, 0xe9, 0xf1, 0x14, 0x10, 0xa7, 0x59, 0x5b, 0x5f, 0x81, 0xb1, - 0xb9, 0x38, 0xb6, 0xeb, 0x5b, 0xc4, 0xe1, 0xe3, 0x8b, 0x5e, 0x81, 0x3e, 0xdf, 0x6e, 0x10, 0x31, - 0xfa, 0x97, 0x44, 0xb7, 0xf7, 0xdd, 0xb6, 0x1b, 0x64, 0x7f, 0x77, 0x7a, 0xe2, 0x8e, 0xef, 0xbe, - 0xdb, 0x12, 0x73, 0x86, 0xc2, 0x30, 0xa3, 0x46, 0xd7, 0x00, 0x1c, 0xb2, 0xed, 0xd6, 0x49, 0xd5, - 0x8e, 0xb7, 0xc4, 0x6c, 0x40, 0xa2, 0x2c, 0x54, 0x14, 0x06, 0x6b, 0x54, 0xd6, 0xd7, 0x0b, 0x50, - 0x9e, 0xdb, 0x0e, 0x5c, 0xa7, 0x1a, 0x38, 0x11, 0x6a, 0xc1, 0x78, 0x33, 0x24, 0x1b, 0x24, 0x54, - 0xa0, 0xc9, 0xc2, 0xa5, 0xd2, 0xe5, 0xe1, 0x6b, 0xd7, 0x32, 0xbe, 0xdb, 0x2c, 0xb4, 0xe8, 0xc7, - 0xe1, 0xce, 0xfc, 0x63, 0xa2, 0xea, 0xf1, 0x14, 0x16, 0xa7, 0xeb, 0xb0, 0x7e, 0xa5, 0x08, 0xe7, - 0xe7, 0xbe, 0xd2, 0x0a, 0x49, 0xc5, 0x8d, 0xee, 0xa7, 0x97, 0x82, 0xe3, 0x46, 0xf7, 0x6f, 0x27, - 0x9d, 0xa1, 0xe6, 0x60, 0x45, 0xc0, 0xb1, 0xa2, 0x40, 0x2f, 0xc2, 0x20, 0xfd, 0x7d, 0x07, 0x2f, - 0x8b, 0xaf, 0x3f, 0x2b, 0x88, 0x87, 0x2b, 0x76, 0x6c, 0x57, 0x38, 0x0a, 0x4b, 0x1a, 0xb4, 0x02, - 0xc3, 0x75, 0x26, 0x23, 0x36, 0x57, 0x02, 0x87, 0xb0, 0x11, 0x2e, 0xcf, 0xbf, 0x40, 0xc9, 0x17, - 0x12, 0xf0, 0xfe, 0xee, 0xf4, 0x24, 0x6f, 0x9b, 0x60, 0xa1, 0xe1, 0xb0, 0x5e, 0x1e, 0x59, 0x6a, - 0x21, 0xf6, 0x31, 0x4e, 0xd0, 0x61, 0x11, 0x5e, 0xd6, 0xd6, 0x54, 0x3f, 0x5b, 0x53, 0x23, 0x07, - 0xac, 0xa7, 0x7f, 0x50, 0x10, 0x7d, 0xb2, 0xe4, 0x7a, 0xa6, 0x78, 0xb8, 0x06, 0x10, 0x91, 0x7a, - 0x48, 0x62, 0xad, 0x57, 0xd4, 0x30, 0xd7, 0x14, 0x06, 0x6b, 0x54, 0x74, 0xf1, 0x47, 0x5b, 0x76, - 0xc8, 0x66, 0x8b, 0xe8, 0x1b, 0xb5, 0xf8, 0x6b, 0x12, 0x81, 0x13, 0x1a, 0x63, 0xf1, 0x97, 0x32, - 0x17, 0xff, 0x5f, 0x2f, 0xc2, 0xe0, 0xbc, 0xeb, 0x3b, 0xae, 0xbf, 0x89, 0xde, 0x86, 0x21, 0x2a, - 0xcd, 0x1d, 0x3b, 0xb6, 0xc5, 0xba, 0xbf, 0x7c, 0xf8, 0xe4, 0x59, 0x5d, 0xff, 0x32, 0xa9, 0xc7, - 0x2b, 0x24, 0xb6, 0x93, 0xcf, 0x48, 0x60, 0x58, 0x71, 0x43, 0x77, 0x60, 0x20, 0xb6, 0xc3, 0x4d, - 0x12, 0x8b, 0xe5, 0xfe, 0x62, 0x1e, 0xbe, 0x98, 0x4e, 0x35, 0xe2, 0xd7, 0x49, 0x22, 0x18, 0xd7, - 0x18, 0x13, 0x2c, 0x98, 0xa1, 0x77, 0x60, 0x28, 0xde, 0x69, 0x12, 0x5a, 0x99, 0x58, 0xe5, 0x33, - 0x92, 0xb1, 0xbe, 0x8b, 0x48, 0xd6, 0xd1, 0x0c, 0x6d, 0x10, 0xad, 0x60, 0x4d, 0x94, 0x4a, 0xba, - 0x46, 0x42, 0xb0, 0xe2, 0x68, 0xd5, 0x61, 0x64, 0xc1, 0x6e, 0xda, 0xeb, 0xae, 0xe7, 0xc6, 0x2e, - 0x89, 0xd0, 0x47, 0xa1, 0x64, 0x3b, 0x0e, 0x5b, 0x56, 0xe5, 0xf9, 0xf3, 0x7b, 0xbb, 0xd3, 0xa5, - 0x39, 0xc7, 0xd9, 0xdf, 0x9d, 0x06, 0x45, 0xb5, 0x83, 0x29, 0x05, 0x7a, 0x1e, 0xfa, 0x9c, 0x30, - 0x68, 0x4e, 0x16, 0x19, 0xe5, 0x05, 0xba, 0xfe, 0x2b, 0x61, 0xd0, 0x4c, 0x91, 0x32, 0x1a, 0xeb, - 0x5f, 0x17, 0x01, 0x2d, 0x90, 0xe6, 0xd6, 0x52, 0xcd, 0x98, 0x29, 0x97, 0x61, 0xa8, 0x11, 0xf8, - 0x6e, 0x1c, 0x84, 0x91, 0xa8, 0x90, 0xcd, 0xb6, 0x15, 0x01, 0xc3, 0x0a, 0x8b, 0x2e, 0x41, 0x5f, - 0x33, 0x11, 0x1a, 0x23, 0x52, 0xe0, 0x30, 0x71, 0xc1, 0x30, 0x94, 0xa2, 0x15, 0x91, 0x50, 0xac, - 0x12, 0x45, 0x71, 0x27, 0x22, 0x21, 0x66, 0x98, 0x64, 0x5e, 0xd2, 0x19, 0x2b, 0xd6, 0x40, 0x6a, - 0x5e, 0x52, 0x0c, 0xd6, 0xa8, 0xd0, 0x17, 0xa1, 0xcc, 0xff, 0x61, 0xb2, 0xc1, 0x16, 0x44, 0xa6, - 0xa8, 0xb9, 0x15, 0xd4, 0x6d, 0x2f, 0x3d, 0xb4, 0xa3, 0x6c, 0x1e, 0x4b, 0x46, 0x38, 0xe1, 0x69, - 0xcc, 0xe3, 0x81, 0xec, 0x79, 0x5c, 0x00, 0xb4, 0xe0, 0xfa, 0x0e, 0x09, 0x4f, 0x60, 0x43, 0xee, - 0x6e, 0x89, 0xfd, 0x31, 0x6d, 0x5a, 0xd0, 0x68, 0x06, 0x3e, 0xf1, 0xe3, 0x85, 0xc0, 0x77, 0xf8, - 0x26, 0xfd, 0x09, 0xe8, 0xa3, 0x53, 0x4d, 0x34, 0xeb, 0x59, 0x39, 0x2c, 0xb4, 0x82, 0xfd, 0xdd, - 0xe9, 0x0b, 0xed, 0x25, 0x58, 0x13, 0x58, 0x19, 0xf4, 0x71, 0x18, 0x88, 0x62, 0x3b, 0x6e, 0x45, - 0xa2, 0xa1, 0x4f, 0xc9, 0x86, 0xd6, 0x18, 0x74, 0x7f, 0x77, 0x7a, 0x5c, 0x15, 0xe3, 0x20, 0x2c, - 0x0a, 0xa0, 0xe7, 0x60, 0xb0, 0x41, 0xa2, 0xc8, 0xde, 0x94, 0x62, 0x73, 0x5c, 0x94, 0x1d, 0x5c, - 0xe1, 0x60, 0x2c, 0xf1, 0xe8, 0x69, 0xe8, 0x27, 0x61, 0x18, 0x84, 0x62, 0x46, 0x8c, 0x0a, 0xc2, - 0xfe, 0x45, 0x0a, 0xc4, 0x1c, 0x67, 0xfd, 0x93, 0x22, 0x8c, 0xab, 0xb6, 0xf2, 0xba, 0x7a, 0x28, - 0x48, 0x1c, 0x80, 0xba, 0xfc, 0xb0, 0x88, 0x2d, 0xb0, 0xe1, 0x6b, 0x2f, 0x1d, 0xce, 0xbb, 0xbd, - 0x23, 0x93, 0x3a, 0x14, 0x28, 0xc2, 0x1a, 0xdf, 0x1e, 0xcb, 0x95, 0xef, 0x16, 0xe1, 0x6c, 0xaa, - 0xc7, 0x6e, 0xb9, 0x11, 0x93, 0x66, 0xa9, 0x5e, 0xcb, 0x59, 0x2b, 0x2d, 0x6d, 0xd6, 0x2a, 0x21, - 0x5a, 0xcf, 0x61, 0xe8, 0x77, 0x63, 0xd2, 0x90, 0x9d, 0xf6, 0x62, 0xce, 0x4e, 0xe3, 0xed, 0x4b, - 0xc6, 0x7e, 0x99, 0xf2, 0xc0, 0x9c, 0x55, 0x8f, 0xfb, 0xe9, 0x0f, 0x8a, 0x50, 0x5e, 0x08, 0xfc, - 0x0d, 0x77, 0x73, 0xc5, 0x6e, 0xf6, 0x70, 0x4e, 0xd5, 0xa0, 0x8f, 0x71, 0xe5, 0x1d, 0x73, 0x35, - 0xab, 0x63, 0x44, 0x83, 0x66, 0xa8, 0x56, 0xc1, 0xd5, 0x25, 0x25, 0x52, 0x29, 0x08, 0x33, 0x66, - 0xbd, 0xed, 0x9a, 0xa9, 0xd7, 0xa0, 0xac, 0xaa, 0x47, 0x13, 0x50, 0xba, 0x4f, 0xb8, 0xa6, 0x5e, - 0xc6, 0xf4, 0x27, 0x3a, 0x07, 0xfd, 0xdb, 0xb6, 0xd7, 0x12, 0x62, 0x0c, 0xf3, 0x3f, 0x9f, 0x28, - 0xbe, 0x5e, 0xb0, 0x7e, 0x9d, 0xc9, 0x22, 0xf1, 0x09, 0x8b, 0xfe, 0xb6, 0x10, 0x93, 0xef, 0x15, - 0xe0, 0x9c, 0xd7, 0x41, 0x3c, 0x8b, 0x9e, 0x3e, 0x8a, 0x60, 0x7f, 0x42, 0x34, 0xff, 0x5c, 0x27, - 0x2c, 0xee, 0x58, 0x9b, 0xf5, 0xc3, 0x02, 0x9c, 0x53, 0xad, 0xbb, 0x49, 0x76, 0x6a, 0xc4, 0x23, - 0xf5, 0x38, 0x08, 0x1f, 0x91, 0xf6, 0xa1, 0x27, 0x79, 0x4f, 0x73, 0x99, 0x3b, 0x2c, 0x18, 0x94, - 0x6e, 0x92, 0x1d, 0xd6, 0xed, 0xd6, 0xb7, 0x8b, 0x30, 0xaa, 0x9a, 0x7f, 0x02, 0x4b, 0xfa, 0x96, - 0xb9, 0xa4, 0x3f, 0x9a, 0x73, 0xe6, 0x9e, 0xca, 0x62, 0xfe, 0x5b, 0x45, 0x38, 0xaf, 0x5a, 0x60, - 0x6c, 0xd1, 0x8f, 0xc8, 0xd8, 0x76, 0xd7, 0x99, 0x37, 0xc9, 0xce, 0x5a, 0x40, 0x75, 0xac, 0x03, - 0x3a, 0xf3, 0x2a, 0x0c, 0x3b, 0x64, 0xc3, 0x6e, 0x79, 0xb1, 0x32, 0x50, 0xfa, 0xb9, 0xe5, 0x5a, - 0x49, 0xc0, 0x58, 0xa7, 0xb1, 0xbe, 0x0b, 0x4c, 0xdc, 0xc5, 0x36, 0xed, 0x66, 0xaa, 0xb4, 0x69, - 0x76, 0xe4, 0x88, 0x6e, 0x47, 0x0a, 0x9b, 0xf1, 0x69, 0xe8, 0x77, 0x1b, 0x74, 0x1b, 0x2f, 0x9a, - 0xbb, 0xf3, 0x32, 0x05, 0x62, 0x8e, 0x43, 0xcf, 0xc0, 0x60, 0x3d, 0x68, 0x34, 0x6c, 0xdf, 0x99, - 0x2c, 0x31, 0x35, 0x72, 0x98, 0xee, 0xf4, 0x0b, 0x1c, 0x84, 0x25, 0x0e, 0x3d, 0x01, 0x7d, 0x76, - 0xb8, 0x19, 0x4d, 0xf6, 0x31, 0x9a, 0x21, 0x5a, 0xd3, 0x5c, 0xb8, 0x19, 0x61, 0x06, 0xa5, 0xea, - 0xe1, 0x83, 0x20, 0xbc, 0xef, 0xfa, 0x9b, 0x15, 0x37, 0x64, 0xba, 0x9e, 0xa6, 0x1e, 0xde, 0x53, - 0x18, 0xac, 0x51, 0xa1, 0x2a, 0xf4, 0x37, 0x83, 0x30, 0x8e, 0x26, 0x07, 0x58, 0x77, 0xbe, 0x90, - 0x39, 0x37, 0xf9, 0x77, 0x57, 0x83, 0x30, 0x4e, 0x3e, 0x85, 0xfe, 0x8b, 0x30, 0x67, 0x84, 0x16, - 0xa0, 0x44, 0xfc, 0xed, 0xc9, 0x41, 0xc6, 0xef, 0x23, 0x87, 0xf3, 0x5b, 0xf4, 0xb7, 0xef, 0xda, - 0x61, 0xb2, 0x44, 0x17, 0xfd, 0x6d, 0x4c, 0x4b, 0xa3, 0x3a, 0x94, 0xa5, 0x53, 0x28, 0x9a, 0x1c, - 0xca, 0x33, 0xc1, 0xb0, 0x20, 0xc7, 0xe4, 0xdd, 0x96, 0x1b, 0x92, 0x06, 0xf1, 0xe3, 0x28, 0xb1, - 0xc0, 0x24, 0x36, 0xc2, 0x09, 0x5f, 0x54, 0x87, 0x11, 0xae, 0x52, 0xae, 0x04, 0x2d, 0x3f, 0x8e, - 0x26, 0xcb, 0xac, 0xc9, 0x19, 0x2e, 0x8e, 0xbb, 0x49, 0x89, 0xf9, 0x73, 0x82, 0xfd, 0x88, 0x06, - 0x8c, 0xb0, 0xc1, 0x14, 0xbd, 0x03, 0xa3, 0x9e, 0xbb, 0x4d, 0x7c, 0x12, 0x45, 0xd5, 0x30, 0x58, - 0x27, 0x93, 0xc0, 0xbe, 0xe6, 0xe9, 0x2c, 0x73, 0x3f, 0x58, 0x27, 0xf3, 0x67, 0xf6, 0x76, 0xa7, - 0x47, 0x6f, 0xe9, 0xa5, 0xb1, 0xc9, 0x0c, 0x7d, 0x11, 0xc6, 0xa8, 0xfe, 0xea, 0x26, 0xec, 0x87, - 0xf3, 0xb3, 0x47, 0x7b, 0xbb, 0xd3, 0x63, 0xd8, 0x28, 0x8e, 0x53, 0xec, 0xd0, 0x1a, 0x94, 0x3d, - 0x77, 0x83, 0xd4, 0x77, 0xea, 0x1e, 0x99, 0x1c, 0x61, 0xbc, 0x33, 0x96, 0xdc, 0x2d, 0x49, 0xce, - 0x6d, 0x06, 0xf5, 0x17, 0x27, 0x8c, 0xd0, 0x5d, 0xb8, 0x10, 0x93, 0xb0, 0xe1, 0xfa, 0x36, 0x55, - 0xe4, 0x84, 0x42, 0xcb, 0x7c, 0x2a, 0xa3, 0x6c, 0xd6, 0x5e, 0x14, 0x1d, 0x7b, 0x61, 0xad, 0x23, - 0x15, 0x3e, 0xa0, 0x34, 0x5a, 0x85, 0x71, 0xb6, 0x9e, 0xaa, 0x2d, 0xcf, 0xab, 0x06, 0x9e, 0x5b, - 0xdf, 0x99, 0x1c, 0x63, 0x0c, 0x9f, 0x91, 0x9e, 0x92, 0x65, 0x13, 0x4d, 0x6d, 0xbd, 0xe4, 0x1f, - 0x4e, 0x97, 0x46, 0x1e, 0x8c, 0x47, 0xa4, 0xde, 0x0a, 0xdd, 0x78, 0x87, 0xce, 0x7d, 0xf2, 0x30, - 0x9e, 0x1c, 0xcf, 0x63, 0x19, 0xd7, 0xcc, 0x42, 0xdc, 0x4d, 0x95, 0x02, 0xe2, 0x34, 0x6b, 0x2a, - 0x2a, 0xa2, 0xd8, 0x71, 0xfd, 0xc9, 0x09, 0x66, 0xac, 0xa8, 0xf5, 0x55, 0xa3, 0x40, 0xcc, 0x71, - 0xcc, 0xd1, 0x40, 0x7f, 0xac, 0x52, 0xd9, 0x7b, 0x86, 0x11, 0x26, 0x8e, 0x06, 0x89, 0xc0, 0x09, - 0x0d, 0xdd, 0x0d, 0xe3, 0x78, 0x67, 0x12, 0x31, 0x52, 0xb5, 0xd4, 0xd6, 0xd6, 0x3e, 0x8b, 0x29, - 0x1c, 0xdd, 0x85, 0x41, 0xe2, 0x6f, 0x2f, 0x85, 0x41, 0x63, 0xf2, 0x6c, 0x1e, 0x19, 0xb0, 0xc8, - 0x89, 0xf9, 0xae, 0x90, 0x58, 0x25, 0x02, 0x8c, 0x25, 0x33, 0x6b, 0x1d, 0xc6, 0x94, 0xb8, 0x60, - 0xbd, 0x8e, 0xa6, 0xa1, 0x9f, 0x4a, 0x44, 0x69, 0x29, 0x97, 0xe9, 0xa7, 0x51, 0x41, 0x19, 0x61, - 0x0e, 0x67, 0x9f, 0xe6, 0x7e, 0x85, 0xcc, 0xef, 0xc4, 0x84, 0x5b, 0x4c, 0x25, 0xed, 0xd3, 0x24, - 0x02, 0x27, 0x34, 0xd6, 0x9f, 0x16, 0xd8, 0x4e, 0x9e, 0xc8, 0xa4, 0x1c, 0xf2, 0xf8, 0x0a, 0x0c, - 0x6d, 0x05, 0x51, 0x4c, 0xa9, 0x59, 0x1d, 0xfd, 0xc9, 0x7e, 0x78, 0x43, 0xc0, 0xb1, 0xa2, 0x40, - 0x6f, 0xc0, 0x68, 0x5d, 0xaf, 0x40, 0x6c, 0x11, 0xe7, 0x45, 0x11, 0xb3, 0x76, 0x6c, 0xd2, 0xa2, - 0xd7, 0x61, 0x88, 0x39, 0xa5, 0xeb, 0x81, 0x27, 0x6c, 0x33, 0xb9, 0xe3, 0x0d, 0x55, 0x05, 0x7c, - 0x5f, 0xfb, 0x8d, 0x15, 0x35, 0xb5, 0x70, 0x69, 0x13, 0x96, 0xab, 0x42, 0x8c, 0x2b, 0x0b, 0xf7, - 0x06, 0x83, 0x62, 0x81, 0xb5, 0xfe, 0x69, 0x51, 0xeb, 0x65, 0x6a, 0x03, 0x10, 0xf4, 0x39, 0x18, - 0x7c, 0x60, 0xbb, 0xb1, 0xeb, 0x6f, 0x8a, 0x9d, 0xf9, 0xe5, 0x9c, 0x32, 0x9d, 0x15, 0xbf, 0xc7, - 0x8b, 0xf2, 0xfd, 0x47, 0xfc, 0xc1, 0x92, 0x21, 0xe5, 0x1d, 0xb6, 0x7c, 0x9f, 0xf2, 0x2e, 0x76, - 0xcf, 0x1b, 0xf3, 0xa2, 0x9c, 0xb7, 0xf8, 0x83, 0x25, 0x43, 0xb4, 0x01, 0x20, 0x57, 0x35, 0x71, - 0x84, 0x66, 0xf3, 0xb1, 0x6e, 0xd8, 0xaf, 0xa9, 0xd2, 0xf3, 0x63, 0x74, 0xc7, 0x4b, 0xfe, 0x63, - 0x8d, 0xb3, 0x15, 0x33, 0x05, 0xa7, 0xbd, 0x59, 0xe8, 0xf3, 0x74, 0x61, 0xd9, 0x61, 0x4c, 0x9c, - 0xb9, 0x38, 0xed, 0x4f, 0xcf, 0xd0, 0xac, 0xdc, 0x06, 0xd1, 0x17, 0xa1, 0x60, 0x82, 0x13, 0x7e, - 0xd6, 0x3f, 0x2f, 0xc1, 0xe4, 0x41, 0xcd, 0xa5, 0x53, 0x92, 0x3c, 0x74, 0xe3, 0x05, 0xaa, 0x82, - 0x14, 0xcc, 0x29, 0xb9, 0x28, 0xe0, 0x58, 0x51, 0xd0, 0xb9, 0x11, 0xb9, 0x9b, 0xbe, 0xed, 0x89, - 0xe9, 0xab, 0xe6, 0x46, 0x8d, 0x41, 0xb1, 0xc0, 0x52, 0xba, 0x90, 0xd8, 0x91, 0x38, 0x8b, 0xd0, - 0xe6, 0x10, 0x66, 0x50, 0x2c, 0xb0, 0xba, 0xa7, 0xa1, 0x2f, 0xc3, 0xd3, 0x60, 0x74, 0x51, 0xff, - 0xf1, 0x76, 0x11, 0xfa, 0x02, 0xc0, 0x86, 0xeb, 0xbb, 0xd1, 0x16, 0xe3, 0x3e, 0xd0, 0x35, 0x77, - 0xa5, 0xea, 0x2c, 0x29, 0x2e, 0x58, 0xe3, 0x88, 0x5e, 0x85, 0x61, 0xb5, 0x3c, 0x97, 0x2b, 0x93, - 0x83, 0xa6, 0xff, 0x3a, 0x91, 0x55, 0x15, 0xac, 0xd3, 0x59, 0x5f, 0x4e, 0xcf, 0x17, 0xb1, 0x2a, - 0xb4, 0xfe, 0x2d, 0xe4, 0xed, 0xdf, 0xe2, 0xe1, 0xfd, 0x6b, 0xfd, 0xe7, 0x12, 0x8c, 0x1b, 0x95, - 0xb5, 0xa2, 0x1c, 0x12, 0xed, 0x2d, 0xba, 0x6d, 0xd8, 0x31, 0x11, 0x6b, 0xf2, 0x4a, 0x37, 0x8b, - 0x46, 0xdf, 0x64, 0xe8, 0x5a, 0xe0, 0x9c, 0xd0, 0x16, 0x94, 0x3d, 0x3b, 0x62, 0x5e, 0x05, 0x22, - 0xd6, 0x62, 0x77, 0x6c, 0x13, 0xd5, 0xde, 0x8e, 0x62, 0x6d, 0x17, 0xe7, 0xb5, 0x24, 0xcc, 0xe9, - 0x9e, 0x47, 0x55, 0x0e, 0x79, 0x00, 0xa6, 0x9a, 0x43, 0xf5, 0x92, 0x1d, 0xcc, 0x71, 0xe8, 0x75, - 0x18, 0x09, 0x09, 0x9b, 0x29, 0x0b, 0x54, 0xab, 0x62, 0x53, 0xaf, 0x3f, 0x51, 0xbf, 0xb0, 0x86, - 0xc3, 0x06, 0x65, 0xa2, 0x7d, 0x0f, 0x1c, 0xa2, 0x7d, 0x3f, 0x07, 0x83, 0xec, 0x87, 0x9a, 0x15, - 0x6a, 0x84, 0x96, 0x39, 0x18, 0x4b, 0x7c, 0x7a, 0x12, 0x0d, 0xe5, 0x9c, 0x44, 0xcf, 0xc3, 0x58, - 0xc5, 0x26, 0x8d, 0xc0, 0x5f, 0xf4, 0x9d, 0x66, 0xe0, 0xfa, 0x31, 0x9a, 0x84, 0x3e, 0xb6, 0x9f, - 0xf0, 0xf5, 0xde, 0x47, 0x39, 0xe0, 0x3e, 0xaa, 0x41, 0x5b, 0xff, 0xa5, 0x08, 0xa3, 0x15, 0xe2, - 0x91, 0x98, 0xac, 0x36, 0xb9, 0x9f, 0x6b, 0x09, 0xd0, 0x66, 0x68, 0xd7, 0x49, 0x95, 0x84, 0x6e, - 0xe0, 0xd4, 0x48, 0x3d, 0xf0, 0xd9, 0xb9, 0x11, 0xdd, 0x20, 0x2f, 0xec, 0xed, 0x4e, 0xa3, 0xeb, - 0x6d, 0x58, 0xdc, 0xa1, 0x04, 0x72, 0x60, 0xb4, 0x19, 0x12, 0xc3, 0x31, 0x57, 0xc8, 0xde, 0xf0, - 0xab, 0x7a, 0x11, 0xae, 0x93, 0x1a, 0x20, 0x6c, 0x32, 0x45, 0x9f, 0x86, 0x89, 0x20, 0x6c, 0x6e, - 0xd9, 0x7e, 0x85, 0x34, 0x89, 0xef, 0x50, 0x45, 0x5c, 0x78, 0x5f, 0xcf, 0xed, 0xed, 0x4e, 0x4f, - 0xac, 0xa6, 0x70, 0xb8, 0x8d, 0xda, 0x30, 0x71, 0xfb, 0x8e, 0xdd, 0xc4, 0xfd, 0x87, 0x45, 0x38, - 0x5f, 0x09, 0x1e, 0xf8, 0x0f, 0xec, 0xd0, 0x99, 0xab, 0x2e, 0x73, 0xdd, 0x9d, 0xf9, 0xca, 0xa5, - 0x8f, 0xbe, 0x70, 0xa0, 0x8f, 0xfe, 0xf3, 0x30, 0xb4, 0xe1, 0x12, 0xcf, 0xc1, 0x64, 0x43, 0x74, - 0xde, 0xd5, 0x3c, 0xde, 0xad, 0x25, 0x5a, 0x46, 0x7a, 0x49, 0xf8, 0x11, 0xc1, 0x92, 0x60, 0x83, - 0x15, 0x43, 0xd4, 0x82, 0x09, 0x69, 0x9c, 0x48, 0xac, 0x58, 0x7b, 0x2f, 0xe7, 0xb3, 0x7d, 0xcc, - 0x6a, 0x58, 0x6f, 0xe3, 0x14, 0x43, 0xdc, 0x56, 0x05, 0x35, 0x2a, 0x1b, 0x74, 0xe7, 0xe9, 0x63, - 0x33, 0x91, 0x19, 0x95, 0xcc, 0xea, 0x65, 0x50, 0xeb, 0xef, 0x16, 0xe0, 0xb1, 0xb6, 0xde, 0x12, - 0x2e, 0x81, 0xb7, 0xa5, 0x2d, 0xce, 0x8f, 0x30, 0x33, 0x5a, 0xd9, 0xb1, 0xcf, 0xf3, 0xd9, 0xe5, - 0xc5, 0x1c, 0x76, 0xf9, 0x2a, 0x9c, 0x5b, 0x6c, 0x34, 0xe3, 0x9d, 0x8a, 0x6b, 0x1e, 0x2d, 0xbc, - 0x06, 0x03, 0x0d, 0xe2, 0xb8, 0xad, 0x86, 0x18, 0xd6, 0x69, 0x29, 0xa6, 0x57, 0x18, 0x74, 0x7f, - 0x77, 0x7a, 0xb4, 0x16, 0x07, 0xa1, 0xbd, 0x49, 0x38, 0x00, 0x0b, 0x72, 0xeb, 0xfd, 0x02, 0x8c, - 0xcb, 0xe5, 0x3a, 0xe7, 0x38, 0x21, 0x89, 0x22, 0x34, 0x05, 0x45, 0xb7, 0x29, 0x18, 0x81, 0x60, - 0x54, 0x5c, 0xae, 0xe2, 0xa2, 0xdb, 0x44, 0x9f, 0x83, 0x32, 0x3f, 0xef, 0x4a, 0x26, 0x47, 0x97, - 0xe7, 0x67, 0xcc, 0x60, 0x5a, 0x93, 0x3c, 0x70, 0xc2, 0x4e, 0x2a, 0xad, 0x6c, 0x23, 0x28, 0x99, - 0xe7, 0x23, 0x37, 0x04, 0x1c, 0x2b, 0x0a, 0x74, 0x19, 0x86, 0xfc, 0xc0, 0xe1, 0x47, 0x91, 0x7c, - 0x4b, 0x67, 0x53, 0xee, 0xb6, 0x80, 0x61, 0x85, 0xb5, 0xbe, 0x51, 0x80, 0x11, 0xf9, 0x8d, 0x39, - 0xf5, 0x67, 0xba, 0x48, 0x12, 0xdd, 0x39, 0x59, 0x24, 0x54, 0xff, 0x65, 0x18, 0x43, 0xed, 0x2d, - 0x75, 0xa3, 0xf6, 0x5a, 0x3f, 0x28, 0xc2, 0x98, 0x6c, 0x4e, 0xad, 0xb5, 0x1e, 0x11, 0xaa, 0x15, - 0x94, 0x6d, 0xde, 0xf9, 0x44, 0xce, 0xb3, 0x17, 0xb3, 0x0c, 0x14, 0x63, 0xcc, 0x12, 0xad, 0x63, - 0x4e, 0xf2, 0xc1, 0x09, 0x4b, 0xb4, 0x0d, 0x67, 0xfc, 0x20, 0x66, 0xbb, 0x8d, 0xc2, 0xe7, 0xf3, - 0xbd, 0xa7, 0xeb, 0x79, 0x5c, 0xd4, 0x73, 0xe6, 0x76, 0x9a, 0x1f, 0x6e, 0xaf, 0x02, 0xad, 0x4a, - 0xc7, 0x4b, 0x89, 0xd5, 0xf5, 0x7c, 0xbe, 0xba, 0x0e, 0xf6, 0xbb, 0x58, 0xdf, 0x29, 0x42, 0x59, - 0x92, 0xf5, 0xf2, 0x68, 0xe7, 0x1e, 0x0c, 0x46, 0x6c, 0x68, 0x64, 0x37, 0x5d, 0xc9, 0xd7, 0x74, - 0x3e, 0x9e, 0xc9, 0xd6, 0xca, 0xff, 0x47, 0x58, 0x72, 0xeb, 0xb1, 0x63, 0xf3, 0xdb, 0x45, 0x18, - 0x55, 0xdd, 0xf3, 0xc8, 0x39, 0x7d, 0x55, 0xcb, 0x4e, 0xc7, 0xe9, 0x5b, 0xa0, 0x7d, 0xa3, 0x99, - 0xf5, 0x54, 0xb7, 0x6d, 0x86, 0x64, 0xc3, 0x7d, 0x98, 0xd6, 0x6d, 0xab, 0x0c, 0x8a, 0x05, 0x16, - 0x6d, 0xc0, 0x48, 0x5d, 0x7a, 0x8b, 0x13, 0xb1, 0xf7, 0x52, 0x4e, 0x0f, 0xb7, 0x3a, 0xd8, 0xe0, - 0xc1, 0x48, 0x0b, 0x1a, 0x27, 0x6c, 0xf0, 0xb5, 0x7e, 0xa7, 0x00, 0x03, 0xdc, 0x59, 0x98, 0xcf, - 0xe3, 0xaa, 0x1d, 0xab, 0x24, 0x3d, 0x7a, 0x97, 0x02, 0xc5, 0x29, 0x0b, 0xba, 0x07, 0x65, 0xf6, - 0x83, 0x39, 0x3e, 0x4a, 0x79, 0xa2, 0xa7, 0x78, 0xfd, 0xa2, 0xc1, 0x4c, 0x54, 0xdf, 0x95, 0x0c, - 0x70, 0xc2, 0xcb, 0xfa, 0x61, 0x89, 0x8a, 0xd4, 0x84, 0xd4, 0xd0, 0x19, 0x0a, 0x27, 0xa1, 0x33, - 0x14, 0x7b, 0xaf, 0x33, 0xbc, 0x0b, 0xe3, 0x75, 0xed, 0x00, 0x28, 0xd1, 0x54, 0xae, 0xe5, 0x1c, - 0x7a, 0xed, 0xd4, 0x88, 0x3b, 0xc7, 0x16, 0x4c, 0x76, 0x38, 0xcd, 0x1f, 0x11, 0x18, 0xe1, 0x41, - 0x07, 0xa2, 0x3e, 0xae, 0x18, 0xce, 0x66, 0xfa, 0xe1, 0x78, 0x09, 0x55, 0x19, 0x9b, 0x69, 0x35, - 0x8d, 0x11, 0x36, 0xd8, 0x5a, 0xff, 0xab, 0x1f, 0xfa, 0x17, 0xb7, 0x89, 0x1f, 0xf7, 0x50, 0x84, - 0x36, 0x60, 0xcc, 0xf5, 0xb7, 0x03, 0x6f, 0x9b, 0x38, 0x1c, 0x7f, 0x34, 0x75, 0xe1, 0x82, 0xa8, - 0x64, 0x6c, 0xd9, 0x60, 0x86, 0x53, 0xcc, 0x7b, 0xe1, 0x08, 0x78, 0x0b, 0x06, 0xf8, 0x8c, 0x10, - 0x5e, 0x80, 0x0c, 0xa7, 0x39, 0xeb, 0x50, 0xb1, 0x72, 0x12, 0x77, 0x05, 0xf7, 0xd7, 0x0b, 0x46, - 0xe8, 0xcb, 0x30, 0xb6, 0xe1, 0x86, 0x51, 0x4c, 0x6d, 0xf9, 0x28, 0xb6, 0x1b, 0xcd, 0x23, 0xb8, - 0x00, 0x54, 0x8f, 0x2c, 0x19, 0x9c, 0x70, 0x8a, 0x33, 0xda, 0x84, 0x51, 0x6a, 0x81, 0x26, 0x55, - 0x0d, 0x76, 0x5d, 0x95, 0xf2, 0x00, 0xde, 0xd2, 0x19, 0x61, 0x93, 0x2f, 0x15, 0x45, 0x75, 0x66, - 0xb1, 0x0e, 0x31, 0x6d, 0x49, 0x89, 0x22, 0x6e, 0xaa, 0x72, 0x1c, 0x95, 0x68, 0x2c, 0xc2, 0xa4, - 0x6c, 0x4a, 0x34, 0x2d, 0x8e, 0x44, 0x17, 0xff, 0x70, 0xec, 0xe2, 0xff, 0x57, 0xa8, 0xe6, 0x40, - 0x47, 0xe8, 0x04, 0xb6, 0xc5, 0x1b, 0xe6, 0xb6, 0xf8, 0x74, 0x8e, 0x79, 0x73, 0x2a, 0x5b, 0xe2, - 0x97, 0x60, 0x58, 0x9b, 0xb4, 0x68, 0x16, 0xca, 0x75, 0x19, 0x6a, 0x21, 0x76, 0x1e, 0xa5, 0x56, - 0xaa, 0x18, 0x0c, 0x9c, 0xd0, 0xd0, 0x31, 0xa5, 0xea, 0x78, 0x3a, 0xdc, 0x8b, 0x2a, 0xeb, 0x98, - 0x61, 0xac, 0x97, 0x01, 0x16, 0x1f, 0x92, 0xfa, 0x5c, 0x9d, 0x45, 0x19, 0x69, 0x07, 0x80, 0x85, - 0x83, 0x0f, 0x00, 0xad, 0xef, 0x15, 0x60, 0x6c, 0x69, 0xc1, 0xb0, 0x6f, 0x66, 0x00, 0xb8, 0x9d, - 0x70, 0xef, 0xde, 0x6d, 0xe9, 0x5a, 0xe7, 0xfe, 0x4f, 0x05, 0xc5, 0x1a, 0x05, 0x7a, 0x1c, 0x4a, - 0x5e, 0xcb, 0x17, 0xea, 0xfb, 0xe0, 0xde, 0xee, 0x74, 0xe9, 0x56, 0xcb, 0xc7, 0x14, 0xa6, 0xc5, - 0x55, 0x95, 0x72, 0xc7, 0x55, 0x65, 0xc7, 0x2d, 0x7f, 0xab, 0x04, 0x13, 0x4b, 0x1e, 0x79, 0x68, - 0xb4, 0xfa, 0x59, 0x18, 0x70, 0x42, 0x77, 0x9b, 0x84, 0x69, 0x05, 0xa3, 0xc2, 0xa0, 0x58, 0x60, - 0x73, 0x87, 0x7a, 0x19, 0x61, 0x6e, 0xa5, 0x1e, 0x87, 0xb9, 0x65, 0x7e, 0x33, 0xda, 0x80, 0xc1, - 0x80, 0x3b, 0x6f, 0x26, 0xfb, 0xd9, 0x44, 0x7f, 0xe3, 0xf0, 0xc6, 0xa4, 0xfb, 0x67, 0x46, 0xb8, - 0x7e, 0x78, 0xe0, 0x8a, 0x92, 0xc3, 0x02, 0x8a, 0x25, 0xf3, 0xa9, 0x4f, 0xc0, 0x88, 0x4e, 0xd9, - 0x55, 0x8c, 0xc9, 0xcf, 0x17, 0xe0, 0xec, 0x92, 0x17, 0xd4, 0xef, 0xa7, 0x62, 0xf1, 0x5e, 0x85, - 0x61, 0xba, 0x54, 0x23, 0x23, 0xfc, 0xd5, 0x88, 0xf3, 0x15, 0x28, 0xac, 0xd3, 0x69, 0xc5, 0xee, - 0xdc, 0x59, 0xae, 0x74, 0x0a, 0x0f, 0x16, 0x28, 0xac, 0xd3, 0x59, 0xff, 0xb1, 0x00, 0x4f, 0x5e, - 0x5f, 0x58, 0xac, 0x92, 0x30, 0x72, 0xa3, 0x98, 0xf8, 0x71, 0x5b, 0x84, 0x32, 0xd5, 0x45, 0x1d, - 0xad, 0x29, 0x89, 0x2e, 0x5a, 0x61, 0xad, 0x10, 0xd8, 0x47, 0x25, 0x4c, 0xff, 0x77, 0x0a, 0x70, - 0xf6, 0xba, 0x1b, 0x63, 0xd2, 0x0c, 0xd2, 0x41, 0xc5, 0x21, 0x69, 0x06, 0x91, 0x1b, 0x07, 0xe1, - 0x4e, 0x3a, 0xa8, 0x18, 0x2b, 0x0c, 0xd6, 0xa8, 0x78, 0xcd, 0xdb, 0x6e, 0x44, 0x5b, 0x5a, 0x34, - 0xcd, 0x7e, 0x2c, 0xe0, 0x58, 0x51, 0xd0, 0x0f, 0x73, 0xdc, 0x90, 0xa9, 0x39, 0x3b, 0x62, 0x05, - 0xab, 0x0f, 0xab, 0x48, 0x04, 0x4e, 0x68, 0xac, 0xef, 0x14, 0xe0, 0xfc, 0x75, 0xaf, 0x15, 0xc5, - 0x24, 0xdc, 0x88, 0x8c, 0xc6, 0xbe, 0x0c, 0x65, 0x22, 0x4d, 0x12, 0xd1, 0x56, 0xb5, 0xe1, 0x29, - 0x5b, 0x85, 0x47, 0x34, 0x2b, 0xba, 0x1c, 0x21, 0xae, 0xdd, 0x05, 0x64, 0xfe, 0x8b, 0x22, 0x8c, - 0xde, 0x58, 0x5b, 0xab, 0x5e, 0x27, 0xb1, 0x90, 0x92, 0xd9, 0x0e, 0xba, 0xaa, 0xe6, 0x9d, 0xd0, - 0x76, 0x84, 0xd4, 0xaa, 0x6b, 0xc5, 0xae, 0x37, 0xc3, 0x2f, 0x90, 0xcc, 0x2c, 0xfb, 0xf1, 0x6a, - 0x58, 0x8b, 0x43, 0xd7, 0xdf, 0xec, 0xe8, 0xcd, 0x90, 0x92, 0xbc, 0x74, 0x90, 0x24, 0x47, 0x2f, - 0xc3, 0x00, 0xbb, 0xf3, 0x22, 0xd5, 0xa6, 0x0f, 0x2b, 0x0d, 0x87, 0x41, 0xf7, 0x77, 0xa7, 0xcb, - 0x77, 0xf0, 0x32, 0xff, 0x83, 0x05, 0x29, 0xfa, 0x22, 0x0c, 0x6f, 0xc5, 0x71, 0xf3, 0x06, 0xb1, - 0x1d, 0x12, 0x4a, 0x29, 0x91, 0xa1, 0x60, 0xd2, 0xce, 0xe0, 0x05, 0x92, 0x85, 0x95, 0xc0, 0x22, - 0xac, 0x73, 0xb4, 0x6a, 0x00, 0x09, 0xee, 0x98, 0xac, 0x26, 0xeb, 0x2f, 0x16, 0x61, 0xf0, 0x86, - 0xed, 0x3b, 0x1e, 0x09, 0xd1, 0x12, 0xf4, 0x91, 0x87, 0xa4, 0x9e, 0x4f, 0x37, 0x4e, 0xb6, 0x3a, - 0xee, 0x61, 0xa4, 0xff, 0x31, 0x2b, 0x8f, 0x30, 0x0c, 0xd2, 0x76, 0x5f, 0x57, 0x51, 0xe7, 0x2f, - 0x64, 0xf7, 0x82, 0x9a, 0x12, 0x7c, 0x9f, 0x14, 0x20, 0x2c, 0x19, 0x31, 0x5f, 0x5c, 0xbd, 0x59, - 0xa3, 0xc2, 0x2d, 0xce, 0x77, 0xb1, 0x64, 0x6d, 0xa1, 0xca, 0xc9, 0x05, 0x5f, 0xee, 0x8b, 0x93, - 0x40, 0x9c, 0xb0, 0xb3, 0x5e, 0x87, 0x73, 0xec, 0xa0, 0xd8, 0x8e, 0xb7, 0x8c, 0x35, 0x93, 0x39, - 0x39, 0xad, 0xdf, 0x2a, 0xc2, 0x99, 0xe5, 0xda, 0x42, 0xcd, 0xf4, 0xa2, 0xbe, 0x0e, 0x23, 0x7c, - 0x7b, 0xa6, 0x93, 0xce, 0xf6, 0x44, 0x79, 0x75, 0xb8, 0xb1, 0xa6, 0xe1, 0xb0, 0x41, 0x89, 0x9e, - 0x84, 0x92, 0xfb, 0xae, 0x9f, 0x8e, 0x73, 0x5b, 0x7e, 0xeb, 0x36, 0xa6, 0x70, 0x8a, 0xa6, 0x3b, - 0x3d, 0x17, 0x71, 0x0a, 0xad, 0x76, 0xfb, 0x37, 0x61, 0xcc, 0x8d, 0xea, 0x91, 0xbb, 0xec, 0xd3, - 0xf5, 0x6f, 0xd7, 0xe5, 0xf4, 0x4d, 0xcc, 0x0a, 0xda, 0x54, 0x85, 0xc5, 0x29, 0x6a, 0x4d, 0xde, - 0xf6, 0xe7, 0xd6, 0x16, 0xb2, 0x03, 0xc4, 0xbf, 0x0c, 0x65, 0x15, 0xb4, 0x25, 0x03, 0xf9, 0x0a, - 0x9d, 0x03, 0xf9, 0x72, 0x08, 0x1c, 0xe9, 0xdb, 0x2e, 0x75, 0xf4, 0x6d, 0xff, 0xa3, 0x02, 0x24, - 0xf1, 0x29, 0x08, 0x43, 0xb9, 0x19, 0xb0, 0x63, 0xa9, 0x50, 0x9e, 0xff, 0x3e, 0x93, 0x31, 0x13, - 0xf9, 0x4a, 0xe0, 0x73, 0xa5, 0x2a, 0xcb, 0xe2, 0x84, 0x0d, 0xba, 0x05, 0x83, 0xcd, 0x90, 0xd4, - 0x62, 0x76, 0xcb, 0xa0, 0x0b, 0x8e, 0x6c, 0x56, 0x57, 0x79, 0x49, 0x2c, 0x59, 0x58, 0xbf, 0x56, - 0x04, 0xb8, 0xe5, 0x36, 0xdc, 0x18, 0xdb, 0xfe, 0x26, 0xe9, 0xa1, 0x81, 0x7a, 0x1b, 0xfa, 0xa2, - 0x26, 0xa9, 0xe7, 0x3b, 0x50, 0x4c, 0x5a, 0x54, 0x6b, 0x92, 0x7a, 0x32, 0x0c, 0xf4, 0x1f, 0x66, - 0x7c, 0x7a, 0xac, 0xab, 0xff, 0x63, 0x80, 0xb1, 0xa4, 0x11, 0xd4, 0x48, 0x40, 0x2f, 0x1a, 0x41, - 0xfb, 0x8f, 0xa7, 0x82, 0xf6, 0xcb, 0x8c, 0x5a, 0xb3, 0xaf, 0x62, 0x28, 0x35, 0xec, 0x87, 0xc2, - 0x26, 0x79, 0x35, 0xef, 0xe7, 0xd2, 0x9a, 0x66, 0x56, 0xec, 0x87, 0x5c, 0x49, 0x7b, 0x41, 0x4e, - 0xcf, 0x15, 0xfb, 0xe1, 0x3e, 0x3f, 0x94, 0x64, 0xeb, 0x9b, 0x1a, 0x41, 0x5f, 0xff, 0xaf, 0xc9, - 0x7f, 0x26, 0x72, 0x69, 0x75, 0xac, 0x56, 0xd7, 0x17, 0x0e, 0xe0, 0x2e, 0x6b, 0x75, 0xfd, 0x74, - 0xad, 0xae, 0x9f, 0xa3, 0x56, 0xd7, 0x47, 0xef, 0x15, 0x60, 0x50, 0x9c, 0x9b, 0xb0, 0x38, 0xc2, - 0xe1, 0x6b, 0x1f, 0xef, 0xaa, 0x6a, 0x71, 0x00, 0xc3, 0xab, 0x9f, 0x95, 0x9a, 0xa9, 0x80, 0x66, - 0x36, 0x41, 0x56, 0x8d, 0x7e, 0xb3, 0x00, 0x63, 0xe2, 0x37, 0x26, 0xef, 0xb6, 0x48, 0x14, 0x8b, - 0x3d, 0xf0, 0xd3, 0x47, 0x69, 0x8d, 0x60, 0xc1, 0x1b, 0xf5, 0x31, 0x29, 0xc0, 0x4c, 0x64, 0x66, - 0xdb, 0x52, 0xed, 0x41, 0xdf, 0x2f, 0xc0, 0xb9, 0x86, 0xfd, 0x90, 0xd7, 0xc8, 0x61, 0xd8, 0x8e, - 0xdd, 0x40, 0xc4, 0x4a, 0x2e, 0x75, 0x3b, 0x4f, 0xda, 0x18, 0xf1, 0xe6, 0x7e, 0x52, 0x1e, 0x95, - 0x77, 0x22, 0xc9, 0x6c, 0x74, 0xc7, 0x16, 0x4e, 0x39, 0x30, 0x24, 0x27, 0x66, 0x07, 0x9b, 0x60, - 0x5e, 0xdf, 0xea, 0x0f, 0x5f, 0xdf, 0xd2, 0xf3, 0x37, 0xf3, 0x56, 0xcb, 0xf6, 0x63, 0x37, 0xde, - 0xd1, 0x2c, 0x08, 0x56, 0x8b, 0x98, 0x88, 0x3d, 0xac, 0x65, 0x0b, 0x46, 0xf4, 0x39, 0xd7, 0xc3, - 0x9a, 0x02, 0x38, 0xdb, 0x61, 0x3e, 0xf5, 0xb0, 0xc2, 0x16, 0x3c, 0x7e, 0xe0, 0xbc, 0xe8, 0x5d, - 0xb5, 0xd6, 0xaf, 0x17, 0x75, 0x81, 0x79, 0x02, 0x5e, 0x9f, 0x15, 0xd3, 0xeb, 0x73, 0x39, 0xef, - 0xca, 0x39, 0x15, 0xd7, 0xcf, 0x86, 0xde, 0x39, 0x74, 0x13, 0x43, 0x6b, 0x30, 0xe0, 0x51, 0x88, - 0x3c, 0x80, 0xbc, 0xd2, 0xcd, 0xca, 0x4f, 0xf4, 0x22, 0x06, 0x8f, 0xb0, 0xe0, 0x65, 0xfd, 0xb5, - 0x22, 0xf4, 0x9d, 0xe2, 0x85, 0xa2, 0x36, 0xd6, 0xe2, 0xfe, 0xfe, 0x0c, 0xb6, 0x1f, 0x2c, 0x3e, - 0x8c, 0x89, 0x1f, 0x31, 0x35, 0xf8, 0x14, 0x06, 0xe0, 0x97, 0x4a, 0x30, 0x4c, 0x3f, 0x44, 0x86, - 0xbf, 0xbc, 0x01, 0xa3, 0x9e, 0xbd, 0x4e, 0x3c, 0xe9, 0xc3, 0x4f, 0x1b, 0xa4, 0xb7, 0x74, 0x24, - 0x36, 0x69, 0x69, 0xe1, 0x0d, 0xfd, 0x88, 0x43, 0x28, 0x8b, 0xaa, 0xb0, 0x71, 0xfe, 0x81, 0x4d, - 0x5a, 0x6a, 0x13, 0x3d, 0xb0, 0xe3, 0xfa, 0x96, 0x30, 0x56, 0x55, 0x67, 0xdc, 0xa3, 0x40, 0xcc, - 0x71, 0x68, 0x0e, 0xc6, 0xe5, 0x6a, 0xbb, 0x4b, 0x42, 0x66, 0xab, 0x73, 0x45, 0x5a, 0x5d, 0xcf, - 0xc6, 0x26, 0x1a, 0xa7, 0xe9, 0xd1, 0x27, 0x60, 0x8c, 0x76, 0x7d, 0xd0, 0x8a, 0x65, 0x70, 0x4f, - 0x3f, 0x0b, 0xee, 0x61, 0x11, 0xda, 0x6b, 0x06, 0x06, 0xa7, 0x28, 0x8d, 0xb1, 0x18, 0x38, 0xf6, - 0xb1, 0xf8, 0x22, 0x9c, 0xbd, 0x15, 0xd8, 0xce, 0xbc, 0xed, 0xd9, 0x7e, 0x9d, 0x84, 0xcb, 0xfe, - 0x66, 0x66, 0x1c, 0x84, 0x1e, 0xab, 0x50, 0xcc, 0x8a, 0x55, 0xb0, 0x42, 0x40, 0x7a, 0x05, 0x22, - 0xe8, 0xed, 0x1d, 0x18, 0x74, 0x79, 0x55, 0x62, 0xc9, 0x5d, 0xcd, 0x72, 0xe6, 0xb5, 0xb5, 0x51, - 0x0b, 0xe2, 0xe2, 0x00, 0x2c, 0x59, 0x52, 0x0b, 0xae, 0x93, 0xf7, 0x2f, 0xdb, 0x48, 0xb6, 0x7e, - 0xa9, 0x00, 0xe3, 0xb7, 0x53, 0x77, 0x80, 0x9f, 0x85, 0x81, 0x88, 0x84, 0x1d, 0x5c, 0x99, 0x35, - 0x06, 0xc5, 0x02, 0x7b, 0xec, 0xee, 0x91, 0xff, 0x51, 0x84, 0x32, 0x0b, 0x9f, 0x6e, 0xda, 0xf5, - 0x5e, 0x1a, 0x03, 0x2b, 0x86, 0x31, 0x90, 0x61, 0x9c, 0xab, 0x06, 0x1d, 0x68, 0x0b, 0xdc, 0x51, - 0x77, 0x62, 0x73, 0xd9, 0xe5, 0x09, 0x43, 0x7e, 0xc3, 0x71, 0xcc, 0xbc, 0x42, 0xab, 0xee, 0xcb, - 0xf6, 0x36, 0x66, 0xec, 0xdb, 0x45, 0x18, 0x55, 0x2d, 0x79, 0xe4, 0xa2, 0x07, 0x54, 0xcb, 0x4e, - 0x45, 0x5c, 0x57, 0xb5, 0xae, 0x61, 0xdb, 0xe5, 0xa7, 0x58, 0x20, 0xaf, 0xed, 0xb9, 0x5f, 0x21, - 0xea, 0x5a, 0xfc, 0xb4, 0x08, 0xcc, 0x15, 0xd0, 0x7d, 0x26, 0x79, 0xc5, 0x3f, 0x9e, 0x4b, 0x21, - 0x29, 0x62, 0xdd, 0x80, 0xf1, 0xd4, 0xb0, 0xa3, 0x57, 0xa1, 0xbf, 0xb9, 0x65, 0x47, 0x24, 0x15, - 0xc4, 0xd5, 0x5f, 0xa5, 0xc0, 0xfd, 0xdd, 0xe9, 0x31, 0x55, 0x80, 0x41, 0x30, 0xa7, 0xb6, 0x7e, - 0x52, 0x84, 0xbe, 0xdb, 0x81, 0xd3, 0xcb, 0xe5, 0x71, 0xc3, 0x58, 0x1e, 0xcf, 0x66, 0x67, 0x60, - 0x39, 0x70, 0x65, 0x54, 0x53, 0x2b, 0xe3, 0x72, 0x0e, 0x5e, 0xa7, 0xb9, 0x28, 0x1a, 0x30, 0xcc, - 0xf2, 0xc7, 0x88, 0xd8, 0xb8, 0x97, 0x0d, 0x9b, 0x7b, 0x3a, 0x65, 0x73, 0x8f, 0x6b, 0xa4, 0x9a, - 0xe5, 0xfd, 0x1c, 0x0c, 0x8a, 0x58, 0xac, 0x74, 0x70, 0xb4, 0xa0, 0xc5, 0x12, 0x6f, 0xfd, 0xb3, - 0x12, 0x18, 0xf9, 0x6a, 0xd0, 0xbf, 0x29, 0xc0, 0x4c, 0xc8, 0xaf, 0x7b, 0x39, 0x95, 0x56, 0xe8, - 0xfa, 0x9b, 0xb5, 0xfa, 0x16, 0x71, 0x5a, 0x9e, 0xeb, 0x6f, 0x2e, 0x6f, 0xfa, 0x81, 0x02, 0x2f, - 0x3e, 0x24, 0xf5, 0x16, 0x73, 0xf7, 0xe7, 0x4e, 0x93, 0xa3, 0xe2, 0x05, 0xae, 0xed, 0xed, 0x4e, - 0xcf, 0xe0, 0xae, 0x6a, 0xc1, 0x5d, 0xb6, 0x0a, 0xfd, 0x51, 0x01, 0x66, 0x79, 0xc6, 0x96, 0xfc, - 0x5f, 0x92, 0xcb, 0x57, 0x51, 0x95, 0x4c, 0x13, 0x76, 0x6b, 0x24, 0x6c, 0xcc, 0xbf, 0x26, 0x3a, - 0x79, 0xb6, 0xda, 0x5d, 0xad, 0xb8, 0xdb, 0x66, 0x5a, 0xff, 0xb2, 0x04, 0xa3, 0xb4, 0x3f, 0x93, - 0x7c, 0x0a, 0xaf, 0x1a, 0xd3, 0xe4, 0xa9, 0xd4, 0x34, 0x39, 0x63, 0x10, 0x1f, 0x4f, 0x2a, 0x85, - 0x08, 0xce, 0x78, 0x76, 0x14, 0xdf, 0x20, 0x76, 0x18, 0xaf, 0x13, 0x9b, 0x1d, 0xcf, 0xa7, 0x43, - 0x7e, 0x72, 0x9c, 0xf8, 0xab, 0xf8, 0xbe, 0x5b, 0x69, 0x66, 0xb8, 0x9d, 0x3f, 0xda, 0x06, 0xc4, - 0x42, 0x01, 0x42, 0xdb, 0x8f, 0xf8, 0xb7, 0xb8, 0xe2, 0x80, 0xa0, 0xbb, 0x5a, 0xa7, 0x44, 0xad, - 0xe8, 0x56, 0x1b, 0x37, 0xdc, 0xa1, 0x06, 0x2d, 0xd8, 0xa3, 0x3f, 0x6f, 0xb0, 0xc7, 0x40, 0xc6, - 0xad, 0x84, 0x5f, 0x28, 0xc0, 0x59, 0x3a, 0x2c, 0x66, 0x04, 0x7b, 0x84, 0x02, 0x18, 0xa7, 0xd3, - 0xce, 0x23, 0xb1, 0x84, 0x89, 0xf5, 0x95, 0x61, 0x1f, 0x99, 0x7c, 0x12, 0x35, 0xf9, 0xa6, 0xc9, - 0x0c, 0xa7, 0xb9, 0x5b, 0xbf, 0x5c, 0x04, 0x16, 0xc4, 0x7a, 0x02, 0x1b, 0xf0, 0x75, 0x73, 0x03, - 0xb6, 0xb2, 0x25, 0xc6, 0xa9, 0xec, 0xbd, 0x7f, 0xb5, 0x00, 0x13, 0xb4, 0xf2, 0x6a, 0x18, 0x3c, - 0xdc, 0x91, 0xf6, 0x52, 0xf6, 0x29, 0x99, 0xde, 0xa8, 0xe2, 0xb1, 0x37, 0xea, 0xbd, 0x22, 0x5f, - 0xf3, 0xea, 0xd2, 0x2d, 0xfa, 0xc5, 0x02, 0x0c, 0xd5, 0xed, 0xa6, 0x5d, 0xe7, 0xa9, 0xca, 0x72, - 0x38, 0x1d, 0x8d, 0xf2, 0x33, 0x0b, 0xa2, 0x2c, 0x77, 0x98, 0xbd, 0x24, 0xeb, 0x96, 0xe0, 0x4c, - 0x27, 0x99, 0xaa, 0x7c, 0xca, 0x85, 0x51, 0x83, 0x59, 0x0f, 0xbd, 0x2c, 0xbf, 0x58, 0xe0, 0xfb, - 0x95, 0xb2, 0x26, 0x1f, 0xc0, 0x19, 0x5f, 0xfb, 0x4f, 0x25, 0xb1, 0x34, 0x6f, 0x66, 0xf2, 0xef, - 0x48, 0x4c, 0x80, 0x6b, 0xb1, 0xc6, 0x29, 0x86, 0xb8, 0xbd, 0x0e, 0xeb, 0xb7, 0x0b, 0xf0, 0x98, - 0x4e, 0xa8, 0xdd, 0x91, 0xce, 0x3a, 0x62, 0xa9, 0xc0, 0x50, 0xd0, 0x24, 0xa1, 0x9d, 0x58, 0xce, - 0x97, 0x65, 0xef, 0xaf, 0x0a, 0xf8, 0xfe, 0xee, 0xf4, 0x39, 0x9d, 0xbb, 0x84, 0x63, 0x55, 0x12, - 0x59, 0x30, 0xc0, 0xfa, 0x25, 0x12, 0xb7, 0xdb, 0x59, 0xe2, 0x2e, 0x76, 0xb0, 0x18, 0x61, 0x81, - 0xb1, 0x7e, 0x59, 0x4c, 0x65, 0xbd, 0xe9, 0xe8, 0xab, 0x30, 0xd1, 0xa0, 0x46, 0xf6, 0xe2, 0xc3, - 0x26, 0xd5, 0x01, 0x58, 0x40, 0x45, 0x21, 0xcf, 0xce, 0x77, 0xc0, 0xe7, 0xce, 0x4f, 0x8a, 0xd6, - 0x4f, 0xac, 0xa4, 0xd8, 0xe2, 0xb6, 0x8a, 0xac, 0x9f, 0x14, 0xb8, 0xb8, 0x61, 0x4a, 0xed, 0x73, - 0x30, 0xd8, 0x0c, 0x9c, 0x85, 0xe5, 0x0a, 0x16, 0x7d, 0xa5, 0xe4, 0x65, 0x95, 0x83, 0xb1, 0xc4, - 0xa3, 0x6b, 0x00, 0xe4, 0x61, 0x4c, 0x42, 0xdf, 0xf6, 0x54, 0x20, 0x84, 0xd2, 0x21, 0x17, 0x15, - 0x06, 0x6b, 0x54, 0xb4, 0x4c, 0x33, 0x0c, 0xb6, 0x5d, 0x87, 0x5d, 0x2b, 0x2a, 0x99, 0x65, 0xaa, - 0x0a, 0x83, 0x35, 0x2a, 0xf4, 0x06, 0x8c, 0xb6, 0xfc, 0x88, 0xef, 0xc0, 0xf6, 0xba, 0xc8, 0x08, - 0x35, 0x94, 0xb8, 0x36, 0xee, 0xe8, 0x48, 0x6c, 0xd2, 0x5a, 0x7f, 0x50, 0x06, 0x48, 0x34, 0x48, - 0xf4, 0x5e, 0xfb, 0x0a, 0xfd, 0x58, 0x5e, 0xf5, 0xf3, 0xf8, 0x96, 0x27, 0xfa, 0x66, 0x01, 0x86, - 0x6d, 0xcf, 0x0b, 0xea, 0x76, 0xcc, 0xbe, 0xa8, 0x98, 0x57, 0x56, 0x88, 0x96, 0xcc, 0x25, 0x65, - 0x79, 0x63, 0x5e, 0x96, 0xe7, 0xe4, 0x1a, 0x26, 0xb3, 0x3d, 0x7a, 0x13, 0xd0, 0x4b, 0xd2, 0xf2, - 0xe0, 0x83, 0x32, 0x95, 0xb6, 0x3c, 0xca, 0x4c, 0xfe, 0x6a, 0x46, 0x07, 0xfa, 0xa2, 0x91, 0xfc, - 0xa8, 0x2f, 0xcf, 0xa5, 0x6a, 0x43, 0xeb, 0xc9, 0xcc, 0x7b, 0xf4, 0x39, 0xfd, 0x4e, 0x44, 0x7f, - 0x9e, 0xac, 0x05, 0x9a, 0xf2, 0x9d, 0x71, 0x1f, 0x22, 0x86, 0x71, 0xc7, 0xdc, 0xe7, 0x85, 0x57, - 0xe9, 0x6a, 0x76, 0x0d, 0x29, 0x05, 0x21, 0xd9, 0xd9, 0x53, 0x08, 0x9c, 0xae, 0x02, 0x7d, 0x8e, - 0xdf, 0x58, 0x59, 0xf6, 0x37, 0x02, 0x11, 0x8b, 0x79, 0x25, 0xc7, 0x98, 0xef, 0x44, 0x31, 0x69, - 0xd0, 0x32, 0xc9, 0x76, 0x74, 0x5b, 0x70, 0xc1, 0x8a, 0x1f, 0x5a, 0x83, 0x01, 0x76, 0x7b, 0x2f, - 0x9a, 0x1c, 0xca, 0xe3, 0xbd, 0x35, 0x2f, 0xad, 0x27, 0xfa, 0x13, 0xfb, 0x1b, 0x61, 0xc1, 0x0b, - 0xdd, 0x90, 0xc9, 0x23, 0xa2, 0x65, 0xff, 0x4e, 0x44, 0x58, 0xf2, 0x88, 0xf2, 0xfc, 0x47, 0x92, - 0x6c, 0x10, 0x1c, 0xde, 0x31, 0x99, 0xa4, 0x51, 0x92, 0xaa, 0x51, 0xe2, 0xbf, 0xcc, 0x51, 0x39, - 0x09, 0x79, 0x1a, 0x6a, 0x66, 0xb4, 0x4c, 0x3a, 0xfb, 0xae, 0xc9, 0x0c, 0xa7, 0xb9, 0x9f, 0xe0, - 0x1e, 0x38, 0xe5, 0xc1, 0x44, 0x7a, 0x49, 0xf6, 0x70, 0xc7, 0xfd, 0x69, 0x1f, 0x8c, 0x99, 0x13, - 0x03, 0xcd, 0x42, 0x59, 0xa8, 0x33, 0x2a, 0xb3, 0x9c, 0x9a, 0xff, 0x2b, 0x12, 0x81, 0x13, 0x1a, - 0x96, 0x63, 0x8f, 0x15, 0xd7, 0xa2, 0xd8, 0x92, 0x1c, 0x7b, 0x0a, 0x83, 0x35, 0x2a, 0xaa, 0x73, - 0xaf, 0x07, 0x41, 0xac, 0x04, 0xb7, 0x9a, 0x33, 0xf3, 0x0c, 0x8a, 0x05, 0x96, 0x0a, 0xec, 0xfb, - 0xf4, 0x83, 0x3c, 0xd3, 0x4f, 0xac, 0x04, 0xf6, 0x4d, 0x1d, 0x89, 0x4d, 0x5a, 0xba, 0x01, 0x05, - 0x11, 0x9b, 0x84, 0x42, 0xb3, 0x4f, 0xa2, 0x02, 0x6b, 0xfc, 0x36, 0xab, 0xc4, 0xa3, 0xcf, 0xc2, - 0x63, 0xea, 0xf2, 0x29, 0xe6, 0x5e, 0x7d, 0x59, 0xe3, 0x80, 0x61, 0x9c, 0x3f, 0xb6, 0xd0, 0x99, - 0x0c, 0x1f, 0x54, 0x1e, 0xbd, 0x09, 0x63, 0x42, 0x2b, 0x97, 0x1c, 0x07, 0xcd, 0xa0, 0x91, 0x9b, - 0x06, 0x16, 0xa7, 0xa8, 0x51, 0x05, 0x26, 0x28, 0x84, 0xe9, 0xab, 0x92, 0x03, 0xbf, 0x44, 0xab, - 0x76, 0xe6, 0x9b, 0x29, 0x3c, 0x6e, 0x2b, 0x81, 0xe6, 0x60, 0x9c, 0xeb, 0x16, 0xd4, 0x04, 0x65, - 0xe3, 0x20, 0x82, 0xa7, 0xd5, 0x22, 0x58, 0x35, 0xd1, 0x38, 0x4d, 0x8f, 0x5e, 0x87, 0x11, 0x3b, - 0xac, 0x6f, 0xb9, 0x31, 0xa9, 0xc7, 0xad, 0x90, 0xa7, 0x65, 0xd1, 0xa2, 0x6e, 0xe6, 0x34, 0x1c, - 0x36, 0x28, 0xad, 0xaf, 0xc0, 0xd9, 0x0e, 0x37, 0x34, 0xe8, 0xc4, 0xb1, 0x9b, 0xae, 0xfc, 0xa6, - 0x54, 0x7c, 0xdf, 0x5c, 0x75, 0x59, 0x7e, 0x8d, 0x46, 0x45, 0x67, 0x27, 0x3b, 0x70, 0xd0, 0xd2, - 0xc9, 0xaa, 0xd9, 0xb9, 0x24, 0x11, 0x38, 0xa1, 0xb1, 0xfe, 0x4f, 0x19, 0x34, 0x2f, 0x54, 0x8e, - 0xa8, 0xae, 0xd7, 0x61, 0x44, 0x66, 0x48, 0xd6, 0x32, 0x93, 0xaa, 0xcf, 0xbc, 0xae, 0xe1, 0xb0, - 0x41, 0x49, 0xdb, 0xe6, 0x4b, 0x9f, 0x5a, 0x3a, 0x9a, 0x50, 0x39, 0xdb, 0x70, 0x42, 0x83, 0xae, - 0xc0, 0x50, 0x44, 0xbc, 0x8d, 0x5b, 0xae, 0x7f, 0x5f, 0x4c, 0x6c, 0x25, 0x95, 0x6b, 0x02, 0x8e, - 0x15, 0x05, 0x9a, 0x87, 0x52, 0xcb, 0x75, 0xc4, 0x54, 0x96, 0x2a, 0x43, 0xe9, 0xce, 0x72, 0x65, - 0x7f, 0x77, 0xfa, 0xa9, 0x83, 0x52, 0x4c, 0x53, 0x13, 0x23, 0x9a, 0xa1, 0xcb, 0x8f, 0x16, 0xee, - 0x74, 0xf2, 0x32, 0xd0, 0xe5, 0xc9, 0xcb, 0x35, 0x00, 0xf1, 0xd5, 0x72, 0x2e, 0x97, 0x92, 0x51, - 0xbb, 0xae, 0x30, 0x58, 0xa3, 0x42, 0x11, 0x9c, 0xa9, 0x87, 0xc4, 0x96, 0x26, 0x37, 0xbf, 0x41, - 0x30, 0x74, 0x74, 0x7f, 0xc2, 0x42, 0x9a, 0x19, 0x6e, 0xe7, 0x8f, 0x02, 0x38, 0xe3, 0xd0, 0x85, - 0x64, 0x54, 0x5a, 0xee, 0xfe, 0xda, 0x02, 0xad, 0xb0, 0x92, 0x66, 0x84, 0xdb, 0x79, 0xa3, 0x2f, - 0xc0, 0x94, 0x04, 0xb6, 0x5f, 0x2f, 0x67, 0xcb, 0xa5, 0x34, 0x7f, 0x71, 0x6f, 0x77, 0x7a, 0xaa, - 0x72, 0x20, 0x15, 0x3e, 0x84, 0x03, 0x7a, 0x07, 0x06, 0xd8, 0x49, 0x5d, 0x34, 0x39, 0xcc, 0x76, - 0xbb, 0x57, 0xf2, 0xfa, 0x63, 0x67, 0xd8, 0x79, 0x9f, 0x08, 0x8d, 0x4e, 0x0e, 0x57, 0x19, 0x10, - 0x0b, 0x9e, 0xa8, 0x09, 0xc3, 0xb6, 0xef, 0x07, 0xb1, 0xcd, 0x95, 0xb0, 0x91, 0x3c, 0x7a, 0xa4, - 0x56, 0xc5, 0x5c, 0x52, 0x96, 0xd7, 0xa3, 0xe2, 0x2d, 0x35, 0x0c, 0xd6, 0xab, 0x40, 0x0f, 0x60, - 0x3c, 0x78, 0x40, 0x05, 0xa6, 0x3c, 0x4e, 0x8a, 0x26, 0x47, 0xcd, 0x0f, 0x3b, 0x7c, 0x78, 0x56, - 0x8d, 0xc2, 0x9a, 0x24, 0x33, 0x99, 0xe2, 0x74, 0x2d, 0x68, 0xc6, 0x70, 0xb7, 0x8f, 0x25, 0x17, - 0x00, 0x12, 0x77, 0xbb, 0xee, 0x5d, 0x67, 0x29, 0x0c, 0x78, 0xd0, 0x2f, 0x93, 0x08, 0xe3, 0xa9, - 0x14, 0x06, 0x09, 0x0a, 0xeb, 0x74, 0x53, 0x1f, 0x87, 0x61, 0xad, 0xe3, 0xbb, 0x89, 0x34, 0x9f, - 0x7a, 0x13, 0x26, 0xd2, 0x1d, 0xda, 0x55, 0xa4, 0xfa, 0xff, 0x2e, 0xc2, 0x78, 0x87, 0xb3, 0xba, - 0xfb, 0x2e, 0xbb, 0x2d, 0x61, 0x88, 0xbe, 0x9b, 0xae, 0xef, 0x60, 0x86, 0x31, 0x05, 0x58, 0x31, - 0x87, 0x00, 0x93, 0xd2, 0xb4, 0x74, 0xa0, 0x34, 0x15, 0x42, 0xab, 0xef, 0x83, 0x08, 0x2d, 0x73, - 0x9f, 0xe8, 0xcf, 0xb5, 0x4f, 0x1c, 0x83, 0xa0, 0x33, 0xb6, 0x9a, 0xc1, 0x1c, 0x5b, 0xcd, 0x9f, - 0x16, 0x61, 0x22, 0x89, 0xca, 0x17, 0x69, 0xd3, 0x7b, 0x77, 0x8c, 0xb2, 0x66, 0x1c, 0xa3, 0x64, - 0x65, 0x43, 0x4f, 0xb5, 0xeb, 0x90, 0xc0, 0x43, 0xf3, 0x48, 0xe5, 0x95, 0x2e, 0xf9, 0x9e, 0xe6, - 0xf1, 0xca, 0x5f, 0x2e, 0xc1, 0xf9, 0x74, 0x83, 0x16, 0x3c, 0xdb, 0x6d, 0xf4, 0x70, 0x14, 0x3e, - 0x6b, 0x8c, 0xc2, 0x6b, 0xdd, 0xf5, 0x16, 0x6b, 0xdc, 0x81, 0x43, 0x61, 0xa7, 0x86, 0xe2, 0xe3, - 0x47, 0x61, 0x7e, 0x9a, 0xe3, 0xf1, 0xbd, 0x22, 0x3c, 0xde, 0xb1, 0x55, 0x27, 0xe0, 0x8e, 0x7e, - 0xdb, 0x74, 0x47, 0xbf, 0x7c, 0x84, 0xbe, 0x3b, 0x15, 0xff, 0xf4, 0x7f, 0x3b, 0xa8, 0xcf, 0x98, - 0x4f, 0x6d, 0x15, 0x86, 0xed, 0x7a, 0x9d, 0x44, 0xd1, 0x4a, 0xe0, 0xa8, 0xb4, 0x70, 0x2f, 0xb2, - 0x5d, 0x36, 0x01, 0xef, 0xef, 0x4e, 0x4f, 0xa5, 0x59, 0x24, 0x68, 0xac, 0x73, 0x30, 0xd3, 0x46, - 0x16, 0x7b, 0x94, 0x36, 0xf2, 0x1a, 0xc0, 0xb6, 0xb2, 0xe5, 0xd3, 0xae, 0x3a, 0xcd, 0xca, 0xd7, - 0xa8, 0xd0, 0x9f, 0x67, 0xba, 0x31, 0x0f, 0x40, 0xea, 0x33, 0xaf, 0x67, 0x67, 0xcc, 0x0e, 0x3d, - 0x98, 0x89, 0xdf, 0x02, 0x57, 0x6e, 0x4d, 0xc5, 0xd2, 0xfa, 0xbd, 0x12, 0x7c, 0xf8, 0x90, 0x05, - 0x83, 0xe6, 0xcc, 0xd3, 0xf3, 0x17, 0xd2, 0x3e, 0xac, 0xa9, 0x8e, 0x85, 0x0d, 0xa7, 0x56, 0x6a, - 0xac, 0x8a, 0x1f, 0x78, 0xac, 0xbe, 0xa5, 0x7b, 0x1c, 0x79, 0x0c, 0xf4, 0xf5, 0x23, 0x8b, 0x84, - 0x9f, 0xcd, 0x13, 0x82, 0xaf, 0x17, 0xe0, 0xa9, 0x8e, 0x1f, 0x65, 0xc4, 0x17, 0xcd, 0x42, 0xb9, - 0x4e, 0x81, 0xda, 0x15, 0xb8, 0xe4, 0xee, 0xa9, 0x44, 0xe0, 0x84, 0xc6, 0x08, 0x23, 0x2a, 0x66, - 0x86, 0x11, 0xfd, 0xbd, 0x22, 0x9c, 0x4b, 0x37, 0xe2, 0x04, 0x24, 0x5a, 0xcd, 0x94, 0x68, 0x33, - 0xdd, 0x0d, 0xfd, 0xa9, 0x08, 0xb3, 0xdf, 0x1c, 0x85, 0x0b, 0x6d, 0x1a, 0x02, 0x1f, 0xa3, 0x9f, - 0x2b, 0xc0, 0x99, 0x4d, 0x66, 0xe1, 0x68, 0xb7, 0x18, 0x45, 0xaf, 0x65, 0x5c, 0xfd, 0x3c, 0xf4, - 0xf2, 0x23, 0xb7, 0xd7, 0xda, 0x48, 0x70, 0x7b, 0x65, 0xe8, 0x1b, 0x05, 0x38, 0x67, 0x3f, 0x88, - 0xda, 0x1e, 0x3e, 0x12, 0x93, 0xf4, 0xcd, 0x0c, 0x67, 0x62, 0xc6, 0x93, 0x49, 0xf3, 0x93, 0x7b, - 0xbb, 0xd3, 0xe7, 0x3a, 0x51, 0xe1, 0x8e, 0xb5, 0xd2, 0xa1, 0xd8, 0x12, 0xb7, 0xa4, 0xf2, 0xdd, - 0xc7, 0xed, 0x74, 0xa7, 0x8a, 0x0b, 0x3c, 0x89, 0xc1, 0x8a, 0x23, 0xfa, 0x12, 0x94, 0x37, 0xe5, - 0xc5, 0xc5, 0xb4, 0x40, 0x3d, 0xa0, 0x9b, 0x3b, 0xdd, 0x73, 0xe4, 0x37, 0x77, 0x14, 0x0a, 0x27, - 0x4c, 0xd1, 0x0d, 0x28, 0xf9, 0x1b, 0x91, 0x48, 0x6f, 0x90, 0x15, 0xa3, 0x66, 0x46, 0x04, 0xf2, - 0x5b, 0xd5, 0xb7, 0x97, 0x6a, 0x98, 0xb2, 0xa0, 0x9c, 0xc2, 0x75, 0x47, 0x78, 0xd1, 0x33, 0x38, - 0xe1, 0xf9, 0x4a, 0x3b, 0x27, 0x3c, 0x5f, 0xc1, 0x94, 0x05, 0xaa, 0x42, 0x3f, 0xbb, 0x83, 0x25, - 0x5c, 0xe4, 0x19, 0xb9, 0x2f, 0xda, 0x6e, 0x9a, 0xf1, 0x8c, 0xab, 0x0c, 0x8c, 0x39, 0x23, 0xb4, - 0x06, 0x03, 0x75, 0xf6, 0x1a, 0x87, 0xf0, 0x5f, 0x64, 0x65, 0x6e, 0x69, 0x7b, 0xb9, 0x83, 0x1f, - 0xe5, 0x71, 0x38, 0x16, 0xbc, 0x18, 0x57, 0xd2, 0xdc, 0xda, 0x88, 0x84, 0x83, 0x22, 0x8b, 0x6b, - 0xdb, 0xbb, 0x2a, 0x82, 0x2b, 0x83, 0x63, 0xc1, 0x0b, 0x55, 0xa0, 0xb8, 0x51, 0x17, 0xe9, 0x0f, - 0x32, 0x5c, 0xe3, 0xe6, 0x15, 0xf9, 0xf9, 0x81, 0xbd, 0xdd, 0xe9, 0xe2, 0xd2, 0x02, 0x2e, 0x6e, - 0xd4, 0xd1, 0xdb, 0x30, 0xb8, 0xc1, 0x2f, 0x3d, 0x8b, 0x54, 0xc9, 0x57, 0xb3, 0x6e, 0x66, 0xb7, - 0xdd, 0x90, 0xe6, 0xb7, 0xb3, 0x04, 0x02, 0x4b, 0x76, 0x2c, 0x7f, 0xa5, 0xba, 0xc6, 0x2d, 0x72, - 0x25, 0xcf, 0x74, 0x77, 0xed, 0x5b, 0xd8, 0xed, 0x0a, 0x8a, 0x35, 0x8e, 0x74, 0xce, 0xdb, 0xf2, - 0xb9, 0x22, 0x96, 0x27, 0x39, 0x73, 0xce, 0x77, 0x7c, 0xdd, 0x88, 0xcf, 0x79, 0x85, 0xc2, 0x09, - 0x53, 0xd4, 0x82, 0xd1, 0xed, 0xa8, 0xb9, 0x45, 0xe4, 0xd2, 0x67, 0xc9, 0x93, 0x87, 0xaf, 0x7d, - 0x32, 0x23, 0x23, 0xb6, 0x28, 0xe2, 0x86, 0x71, 0xcb, 0xf6, 0xda, 0x24, 0x18, 0x4b, 0x18, 0x78, - 0x57, 0x67, 0x8b, 0xcd, 0x5a, 0xe8, 0x90, 0xbc, 0xdb, 0x0a, 0xd6, 0x77, 0x62, 0x22, 0x92, 0x2b, - 0x67, 0x0c, 0xc9, 0x5b, 0x9c, 0xb8, 0x7d, 0x48, 0x04, 0x02, 0x4b, 0x76, 0xaa, 0xcb, 0x98, 0x34, - 0x9e, 0xc8, 0xdd, 0x65, 0x6d, 0xdf, 0x90, 0x74, 0x19, 0x93, 0xbe, 0x09, 0x53, 0x26, 0x75, 0x9b, - 0x5b, 0x41, 0x1c, 0xf8, 0x29, 0xd9, 0x7f, 0x26, 0x8f, 0xd4, 0xad, 0x76, 0x28, 0xd9, 0x2e, 0x75, - 0x3b, 0x51, 0xe1, 0x8e, 0xb5, 0x5a, 0x3f, 0xe9, 0x6f, 0xdf, 0xcc, 0x99, 0xaa, 0xfd, 0x57, 0xda, - 0xcf, 0x77, 0x3f, 0xdd, 0xbd, 0x8d, 0x7d, 0x8c, 0x27, 0xbd, 0xdf, 0x28, 0xc0, 0x85, 0x66, 0xc7, - 0xcd, 0x54, 0x6c, 0x58, 0xdd, 0x9a, 0xea, 0xbc, 0xc3, 0x54, 0xe6, 0xf0, 0xce, 0x78, 0x7c, 0x40, - 0x9d, 0x69, 0xf5, 0xb6, 0xf4, 0x81, 0xd5, 0xdb, 0x7b, 0x30, 0xc4, 0x34, 0xb2, 0x24, 0x55, 0x51, - 0x97, 0xd9, 0x7d, 0xd8, 0xd6, 0xb7, 0x20, 0x58, 0x60, 0xc5, 0x8c, 0x76, 0xdc, 0x93, 0xe9, 0x8f, - 0xc0, 0x84, 0xa1, 0x45, 0xca, 0x73, 0xee, 0x53, 0x5a, 0x12, 0x3d, 0xf1, 0x64, 0xf5, 0x30, 0xe2, - 0xfd, 0x2c, 0x02, 0x7c, 0x78, 0x65, 0x27, 0xa9, 0x2e, 0xff, 0xfd, 0x42, 0x07, 0xfd, 0x8b, 0x1b, - 0x38, 0x9f, 0x34, 0x0d, 0x9c, 0x67, 0xd3, 0x06, 0x4e, 0x9b, 0x23, 0xc5, 0xb0, 0x6d, 0xf2, 0x67, - 0xe8, 0xcd, 0x9b, 0x4b, 0xc9, 0xf2, 0xe0, 0x52, 0xd6, 0xe2, 0x66, 0x71, 0x5a, 0x8e, 0x3a, 0x96, - 0x4c, 0xe2, 0xb4, 0x9c, 0xe5, 0x0a, 0x66, 0x98, 0xbc, 0x29, 0x2d, 0xac, 0x3f, 0x2c, 0x42, 0xa9, - 0x1a, 0x38, 0x3d, 0x74, 0x0c, 0x5d, 0x37, 0x1c, 0x43, 0xcf, 0x64, 0x3e, 0xd2, 0x78, 0xa0, 0x1b, - 0x68, 0x35, 0xe5, 0x06, 0xfa, 0x68, 0x36, 0xab, 0xd3, 0x74, 0xfa, 0x7c, 0xbf, 0x04, 0xfa, 0x23, - 0x96, 0xe8, 0x3f, 0x1c, 0x25, 0xe6, 0xb8, 0x94, 0xef, 0x5d, 0x4b, 0x51, 0x07, 0x0b, 0xf0, 0x92, - 0x77, 0x58, 0x7f, 0x66, 0x43, 0x8f, 0xef, 0x11, 0x77, 0x73, 0x2b, 0x26, 0x4e, 0xfa, 0xc3, 0x4e, - 0x2e, 0xf4, 0xf8, 0xbf, 0x17, 0x60, 0x3c, 0x55, 0x3b, 0xf2, 0x3a, 0x5d, 0x25, 0x3b, 0xa2, 0x33, - 0xe6, 0x4c, 0xe6, 0xdd, 0xb3, 0x19, 0x00, 0x75, 0xba, 0x20, 0x5d, 0x26, 0x4c, 0xc3, 0x53, 0xc7, - 0x0f, 0x11, 0xd6, 0x28, 0xd0, 0xab, 0x30, 0x1c, 0x07, 0xcd, 0xc0, 0x0b, 0x36, 0x77, 0x6e, 0x12, - 0x99, 0xc2, 0x45, 0x9d, 0xcc, 0xac, 0x25, 0x28, 0xac, 0xd3, 0x59, 0x3f, 0x2c, 0x41, 0xfa, 0x09, - 0xd4, 0xff, 0x3f, 0x4f, 0x7f, 0x76, 0xe6, 0xe9, 0xef, 0x17, 0x61, 0x82, 0xd6, 0xce, 0xc2, 0x73, - 0x64, 0x0c, 0xaf, 0x7a, 0x0a, 0xa4, 0x70, 0xc8, 0x53, 0x20, 0xcf, 0x52, 0x59, 0xea, 0x04, 0xad, - 0x58, 0xb8, 0x79, 0x34, 0x11, 0x49, 0xa1, 0x58, 0x60, 0x05, 0x1d, 0x09, 0x43, 0x71, 0xab, 0x4c, - 0xa7, 0x23, 0x61, 0x88, 0x05, 0x56, 0xbe, 0x14, 0xd2, 0x77, 0xc0, 0x4b, 0x21, 0x2c, 0x09, 0x9a, - 0x08, 0x0b, 0x11, 0x4a, 0x86, 0x96, 0x04, 0x4d, 0xc6, 0x8b, 0x24, 0x34, 0x3d, 0xbe, 0x9a, 0xf8, - 0xbb, 0x25, 0x18, 0xa9, 0x06, 0x4e, 0x72, 0xb3, 0xe0, 0x15, 0xe3, 0x66, 0xc1, 0xa5, 0xd4, 0xcd, - 0x82, 0x09, 0x9d, 0xf6, 0x78, 0x2e, 0x16, 0x88, 0x34, 0x82, 0xec, 0xa5, 0x9c, 0x23, 0x5e, 0x2a, - 0x30, 0xd2, 0x08, 0x2a, 0x46, 0xd8, 0xe4, 0xfb, 0x67, 0xe9, 0x32, 0xc1, 0x4f, 0x8a, 0x30, 0x56, - 0x0d, 0x1c, 0x3a, 0xfd, 0xff, 0x4c, 0xcd, 0x75, 0x2d, 0x81, 0xdf, 0xc0, 0x21, 0x2f, 0x78, 0xe9, - 0x4b, 0x62, 0xf0, 0xf8, 0x8f, 0x0c, 0x8b, 0x30, 0x58, 0x0d, 0x9c, 0x13, 0x70, 0xdf, 0x2e, 0x99, - 0xee, 0xdb, 0xa7, 0x32, 0x77, 0x8d, 0x53, 0xf1, 0xd8, 0xfe, 0x5a, 0x1f, 0x8c, 0xd2, 0xfe, 0x08, - 0x36, 0xe5, 0x5c, 0x33, 0xc6, 0xb5, 0x90, 0x63, 0x5c, 0xa9, 0x0a, 0x1e, 0x78, 0x5e, 0xf0, 0x20, - 0x3d, 0xef, 0x96, 0x18, 0x14, 0x0b, 0x2c, 0xba, 0x02, 0x43, 0xcd, 0x90, 0x6c, 0xbb, 0x41, 0x2b, - 0x4a, 0xdf, 0xdd, 0xad, 0x0a, 0x38, 0x56, 0x14, 0xe8, 0x15, 0x18, 0x89, 0x5c, 0xbf, 0x4e, 0x64, - 0x38, 0x4d, 0x1f, 0x0b, 0xa7, 0xe1, 0xb9, 0x69, 0x35, 0x38, 0x36, 0xa8, 0xd0, 0x3d, 0x28, 0xb3, - 0xff, 0x6c, 0xf5, 0x77, 0xff, 0xfc, 0x0a, 0x4f, 0x6e, 0x28, 0x19, 0xe0, 0x84, 0x17, 0xba, 0x06, - 0x10, 0xcb, 0xc0, 0x9f, 0x48, 0x24, 0x69, 0x52, 0xf6, 0x80, 0x0a, 0x09, 0x8a, 0xb0, 0x46, 0x85, - 0x5e, 0x80, 0x72, 0x6c, 0xbb, 0xde, 0x2d, 0xd7, 0x27, 0x91, 0x08, 0x9c, 0x12, 0xf9, 0xeb, 0x05, - 0x10, 0x27, 0x78, 0xaa, 0x09, 0xb1, 0xac, 0x07, 0xfc, 0x69, 0xa7, 0x21, 0x46, 0xcd, 0x34, 0xa1, - 0x5b, 0x0a, 0x8a, 0x35, 0x0a, 0x63, 0x5a, 0x94, 0x8f, 0x3f, 0xe1, 0x29, 0xd7, 0x0c, 0x1f, 0xa9, - 0x4b, 0x33, 0x3f, 0x2e, 0x02, 0xaa, 0xb2, 0xe8, 0x28, 0xe3, 0x49, 0xb0, 0x2d, 0x18, 0x8b, 0xc8, - 0x2d, 0xd7, 0x6f, 0x3d, 0x14, 0x0d, 0xcd, 0x77, 0xc5, 0xaa, 0xb6, 0xa8, 0x97, 0xe1, 0x79, 0x04, - 0x4c, 0x18, 0x4e, 0xf1, 0xa5, 0xe3, 0x19, 0xb6, 0xfc, 0xb9, 0xe8, 0x4e, 0x44, 0x42, 0xf1, 0xf8, - 0x16, 0x1b, 0x4f, 0x2c, 0x81, 0x38, 0xc1, 0xd3, 0xf9, 0xcb, 0xfe, 0xdc, 0x0e, 0x7c, 0x1c, 0x04, - 0xb1, 0x9c, 0xf1, 0xec, 0x31, 0x16, 0x0d, 0x8e, 0x0d, 0x2a, 0xb4, 0x04, 0x28, 0x6a, 0x35, 0x9b, - 0x1e, 0x3b, 0x66, 0xb5, 0xbd, 0xeb, 0x61, 0xd0, 0x6a, 0xf2, 0x00, 0x79, 0xf1, 0x8e, 0x49, 0xad, - 0x0d, 0x8b, 0x3b, 0x94, 0xa0, 0xb2, 0x76, 0x23, 0x62, 0xbf, 0x45, 0x9e, 0x04, 0xee, 0x90, 0xad, - 0x31, 0x10, 0x96, 0x38, 0xeb, 0x6b, 0x4c, 0x3f, 0x60, 0xaf, 0x22, 0xc5, 0xad, 0x90, 0xa0, 0x06, - 0x8c, 0x36, 0x99, 0x0e, 0x10, 0x87, 0x81, 0xe7, 0x11, 0xa9, 0xfc, 0x1f, 0x2d, 0x3e, 0x8b, 0xbf, - 0x83, 0xa2, 0xb3, 0xc3, 0x26, 0x77, 0xeb, 0x6f, 0x0e, 0x33, 0x61, 0x2c, 0x4e, 0xba, 0x07, 0x45, - 0x14, 0xb6, 0x50, 0xb3, 0x3f, 0x92, 0xe7, 0x95, 0xc1, 0x64, 0x1b, 0x15, 0x31, 0xdd, 0x58, 0x72, - 0x41, 0x9f, 0x67, 0x77, 0x0c, 0xb8, 0x8c, 0xca, 0xff, 0xb0, 0x28, 0xa7, 0x37, 0xee, 0x17, 0x08, - 0x16, 0x58, 0x63, 0x87, 0x6e, 0xc1, 0xa8, 0x78, 0x44, 0x47, 0x78, 0x94, 0x4a, 0x86, 0x57, 0x65, - 0x14, 0xeb, 0xc8, 0xfd, 0x34, 0x00, 0x9b, 0x85, 0xd1, 0x26, 0x3c, 0xa9, 0x3d, 0xd7, 0xd7, 0x21, - 0x96, 0x90, 0x0b, 0xbf, 0xa7, 0xf6, 0x76, 0xa7, 0x9f, 0x5c, 0x3b, 0x8c, 0x10, 0x1f, 0xce, 0x07, - 0xad, 0xc2, 0x79, 0xbb, 0x1e, 0xbb, 0xdb, 0xa4, 0x42, 0x6c, 0xc7, 0x73, 0x7d, 0x62, 0x26, 0xd3, - 0x78, 0x7c, 0x6f, 0x77, 0xfa, 0xfc, 0x5c, 0x27, 0x02, 0xdc, 0xb9, 0x1c, 0xfa, 0x24, 0x94, 0x1d, - 0x3f, 0x12, 0x7d, 0x30, 0x60, 0xbc, 0x4c, 0x58, 0xae, 0xdc, 0xae, 0xa9, 0xef, 0x4f, 0xfe, 0xe0, - 0xa4, 0x00, 0x7a, 0x17, 0x46, 0xf4, 0xab, 0x58, 0xe2, 0x45, 0xcc, 0xd7, 0x72, 0xb9, 0x4e, 0x8c, - 0xfb, 0x4b, 0xdc, 0xd9, 0xaa, 0x62, 0x76, 0x8d, 0xab, 0x4d, 0x46, 0x15, 0xe8, 0x33, 0x80, 0x22, - 0x12, 0x6e, 0xbb, 0x75, 0x32, 0x57, 0x67, 0xb9, 0xa5, 0xd9, 0x99, 0xf1, 0x90, 0x71, 0x71, 0x05, - 0xd5, 0xda, 0x28, 0x70, 0x87, 0x52, 0xe8, 0x06, 0x95, 0x3c, 0x3a, 0x54, 0x84, 0x58, 0x4b, 0xbd, - 0x7a, 0xb2, 0x42, 0x9a, 0x21, 0xa9, 0xdb, 0x31, 0x71, 0x4c, 0x8e, 0x38, 0x55, 0x8e, 0x6e, 0x8d, - 0xea, 0x39, 0x12, 0x30, 0x03, 0x83, 0xdb, 0x9f, 0x24, 0xa1, 0x46, 0xf0, 0x56, 0x10, 0xc5, 0xb7, - 0x49, 0xfc, 0x20, 0x08, 0xef, 0xb3, 0x43, 0x9a, 0x21, 0x2d, 0xdd, 0x65, 0x82, 0xc2, 0x3a, 0x1d, - 0x55, 0x41, 0xd9, 0xe9, 0xe0, 0x72, 0x85, 0x1d, 0xbd, 0x0c, 0x25, 0x6b, 0xe7, 0x06, 0x07, 0x63, - 0x89, 0x97, 0xa4, 0xcb, 0xd5, 0x05, 0x76, 0x8c, 0x92, 0x22, 0x5d, 0xae, 0x2e, 0x60, 0x89, 0x47, - 0x41, 0xfb, 0xfb, 0x8f, 0x63, 0x79, 0x8e, 0xb4, 0xda, 0x25, 0x79, 0xce, 0x27, 0x20, 0x1f, 0xc2, - 0x84, 0x7a, 0x83, 0x92, 0xe7, 0x21, 0x8e, 0x26, 0xc7, 0xd9, 0xc4, 0x39, 0x4a, 0x3a, 0x63, 0x15, - 0x53, 0xbf, 0x9c, 0xe2, 0x89, 0xdb, 0x6a, 0x31, 0xd2, 0xb6, 0x4c, 0x64, 0x3e, 0x31, 0x33, 0x0b, - 0xe5, 0xa8, 0xb5, 0xee, 0x04, 0x0d, 0xdb, 0xf5, 0xd9, 0x59, 0x87, 0xa6, 0x47, 0xd5, 0x24, 0x02, - 0x27, 0x34, 0xa8, 0x0a, 0x43, 0xb6, 0xb0, 0xaf, 0xd9, 0x53, 0x94, 0x99, 0xa9, 0x12, 0xa4, 0x35, - 0xce, 0x1d, 0xe1, 0xf2, 0x1f, 0x56, 0x5c, 0xa6, 0x3e, 0x05, 0x67, 0xda, 0x56, 0x49, 0x57, 0x61, - 0xa5, 0xff, 0xae, 0x0f, 0xca, 0xca, 0xbf, 0x88, 0x66, 0x4d, 0x17, 0xf2, 0xe3, 0x69, 0x17, 0xf2, - 0x10, 0xd5, 0x18, 0x74, 0xaf, 0xf1, 0x17, 0x3a, 0xbc, 0x71, 0xff, 0x7c, 0xe6, 0xb4, 0xc8, 0x7f, - 0xcb, 0x4b, 0x33, 0xaa, 0x4a, 0xb9, 0xbd, 0xd2, 0x7d, 0x87, 0xda, 0x69, 0x39, 0x9f, 0x95, 0xa4, - 0x16, 0x59, 0x33, 0x70, 0x96, 0xab, 0xe9, 0x57, 0xd3, 0xaa, 0x14, 0x88, 0x39, 0x8e, 0x69, 0xa3, - 0x54, 0xcc, 0x33, 0x6d, 0x74, 0xf0, 0x88, 0xda, 0xa8, 0x64, 0x80, 0x13, 0x5e, 0x68, 0x1b, 0xce, - 0xd4, 0xcd, 0x47, 0xf0, 0xd4, 0xdd, 0xad, 0x17, 0xbb, 0x78, 0x84, 0xae, 0xa5, 0x3d, 0xc9, 0xb3, - 0x90, 0xe6, 0x87, 0xdb, 0xab, 0x40, 0x6f, 0xc0, 0xd0, 0xbb, 0x41, 0xb4, 0xe0, 0xd9, 0x51, 0x24, - 0x64, 0x9d, 0xbc, 0x27, 0x33, 0xf4, 0xd6, 0x6a, 0x8d, 0xc1, 0xf7, 0x77, 0xa7, 0x87, 0xab, 0x81, - 0x23, 0xff, 0x62, 0x55, 0xc0, 0xfa, 0x1b, 0x45, 0xa6, 0x53, 0x0a, 0x0f, 0x01, 0x89, 0x5a, 0x5e, - 0x2f, 0x5f, 0x90, 0x58, 0x35, 0x9c, 0x16, 0xc7, 0xec, 0x45, 0x3f, 0x7e, 0x3b, 0xec, 0xb7, 0x8b, - 0xcc, 0x8b, 0xbe, 0x46, 0x1a, 0x4d, 0xcf, 0x8e, 0x7b, 0x19, 0x46, 0xfc, 0x79, 0x18, 0x8a, 0x45, - 0x2d, 0xf9, 0x1e, 0xd5, 0xd0, 0x9a, 0xc5, 0xce, 0x2c, 0x92, 0xcf, 0x10, 0x50, 0xac, 0x18, 0xf6, - 0xb8, 0x93, 0x7e, 0x83, 0xcf, 0x20, 0x59, 0xef, 0x09, 0x18, 0xf1, 0xb7, 0x4d, 0x23, 0xfe, 0xb9, - 0xdc, 0x3d, 0x75, 0x2a, 0xc6, 0xfc, 0xef, 0x15, 0x8c, 0xfe, 0x61, 0x7a, 0xf5, 0xa3, 0x7f, 0xe0, - 0x65, 0xad, 0x82, 0xf9, 0x5c, 0x22, 0x7a, 0x93, 0x5f, 0x22, 0xe0, 0xdb, 0xcc, 0x95, 0xae, 0x2f, - 0x10, 0x58, 0xbf, 0x5f, 0x84, 0x73, 0xdc, 0x29, 0x3d, 0xb7, 0x1d, 0xb8, 0x4e, 0x35, 0x70, 0xc4, - 0x95, 0x0a, 0x07, 0x46, 0x9a, 0x9a, 0xbd, 0x93, 0x2f, 0xd9, 0x8d, 0x6e, 0x21, 0x25, 0x3a, 0xa6, - 0x0e, 0xc5, 0x06, 0x57, 0x5a, 0x0b, 0xd9, 0x76, 0xeb, 0xca, 0x0b, 0x59, 0xec, 0x5a, 0xf2, 0xab, - 0x5a, 0x16, 0x35, 0x3e, 0xd8, 0xe0, 0xda, 0x83, 0x37, 0x6b, 0xac, 0xef, 0x16, 0xe0, 0xb1, 0x03, - 0x12, 0xe2, 0xd0, 0xea, 0x1e, 0xb0, 0x83, 0x00, 0xf1, 0x1e, 0xa7, 0xaa, 0x8e, 0x1f, 0x0f, 0x60, - 0x81, 0x45, 0xeb, 0x00, 0xdc, 0xbd, 0x4f, 0xd5, 0xab, 0x8c, 0x24, 0xf3, 0x07, 0xe5, 0x6e, 0xd0, - 0xae, 0xf5, 0x4b, 0x4e, 0x58, 0xe3, 0x6a, 0x7d, 0xaf, 0x04, 0xfd, 0xfc, 0xf1, 0xf5, 0x2a, 0x0c, - 0x6e, 0xf1, 0x84, 0xd0, 0xdd, 0xe5, 0xa3, 0x4e, 0xf4, 0x59, 0x0e, 0xc0, 0x92, 0x0d, 0x5a, 0x81, - 0xb3, 0x54, 0x79, 0x72, 0x6d, 0xaf, 0x42, 0x3c, 0x7b, 0x47, 0x1a, 0x48, 0xfc, 0x31, 0x10, 0x99, - 0xb7, 0xfe, 0xec, 0x72, 0x3b, 0x09, 0xee, 0x54, 0x0e, 0xbd, 0xd9, 0x96, 0xb7, 0x90, 0x27, 0xda, - 0x56, 0xb7, 0x41, 0x33, 0x72, 0x17, 0xbe, 0x01, 0xa3, 0xcd, 0x36, 0x53, 0x50, 0x7b, 0x5d, 0xdb, - 0x34, 0xff, 0x4c, 0x5a, 0x54, 0x81, 0x89, 0xa8, 0xc5, 0x22, 0x2e, 0xd6, 0xb6, 0x42, 0x12, 0x6d, - 0x05, 0x9e, 0x23, 0x1e, 0x86, 0x55, 0x6a, 0x6f, 0x2d, 0x85, 0xc7, 0x6d, 0x25, 0x28, 0x97, 0x0d, - 0xdb, 0xf5, 0x5a, 0x21, 0x49, 0xb8, 0x0c, 0x98, 0x5c, 0x96, 0x52, 0x78, 0xdc, 0x56, 0xc2, 0xfa, - 0x93, 0x02, 0x9c, 0xed, 0x10, 0x96, 0xc4, 0x43, 0x71, 0x37, 0xdd, 0x28, 0x56, 0x4f, 0x3e, 0x68, - 0xa1, 0xb8, 0x1c, 0x8e, 0x15, 0x05, 0x9d, 0x85, 0xdc, 0xbe, 0x4f, 0x1f, 0xf7, 0x8b, 0xc0, 0x0b, - 0x81, 0xed, 0x2e, 0x4f, 0x20, 0xba, 0x04, 0x7d, 0xad, 0x88, 0x84, 0xf2, 0x25, 0x48, 0x29, 0xa2, - 0x98, 0x4b, 0x87, 0x61, 0xa8, 0xba, 0xb7, 0xa9, 0xbc, 0x29, 0x9a, 0xba, 0xc7, 0xfd, 0x29, 0x1c, - 0x67, 0x7d, 0xab, 0x04, 0xe3, 0xa9, 0xf0, 0x44, 0xda, 0x90, 0x46, 0xe0, 0xbb, 0x71, 0xa0, 0xf2, - 0xbc, 0xf1, 0x87, 0xdc, 0x48, 0x73, 0x6b, 0x45, 0xc0, 0xb1, 0xa2, 0x40, 0xcf, 0xca, 0xb7, 0x78, - 0xd3, 0x4f, 0x59, 0xcc, 0x57, 0x8c, 0xe7, 0x78, 0xf3, 0x3e, 0x43, 0xf3, 0x34, 0xf4, 0x35, 0x03, - 0xf5, 0xb4, 0xba, 0x9a, 0xf4, 0x78, 0xbe, 0x52, 0x0d, 0x02, 0x0f, 0x33, 0x24, 0x7a, 0x46, 0x7c, - 0x7d, 0xca, 0x87, 0x8f, 0x6d, 0x27, 0x88, 0xb4, 0x2e, 0x78, 0x0e, 0x06, 0xef, 0x93, 0x9d, 0xd0, - 0xf5, 0x37, 0xd3, 0x27, 0x18, 0x37, 0x39, 0x18, 0x4b, 0xbc, 0xf9, 0xd4, 0xcc, 0x60, 0x8f, 0x9f, - 0x9a, 0x19, 0xca, 0x8c, 0xdf, 0xfe, 0x46, 0x11, 0xc6, 0x59, 0xb2, 0x59, 0x71, 0xd1, 0xde, 0x0d, - 0xfc, 0x1e, 0x6e, 0x8b, 0x4f, 0x43, 0x7f, 0x48, 0x2b, 0x4b, 0xbf, 0x12, 0xc1, 0x5a, 0x80, 0x39, - 0x0e, 0x3d, 0x01, 0x7d, 0xac, 0x6a, 0x3a, 0x7c, 0x23, 0x3c, 0xeb, 0x7e, 0xc5, 0x8e, 0x6d, 0xcc, - 0xa0, 0x27, 0x70, 0x6b, 0x0a, 0x93, 0xa6, 0xe7, 0xf2, 0xae, 0x48, 0xfc, 0x71, 0x8f, 0xca, 0xad, - 0xa9, 0x8e, 0x8d, 0x3b, 0xae, 0x5b, 0x53, 0x9d, 0x99, 0x9f, 0x66, 0x00, 0xcd, 0xff, 0x2c, 0xc2, - 0xc5, 0x8e, 0xad, 0x4a, 0xce, 0x6d, 0x97, 0x8c, 0x73, 0xdb, 0x6b, 0xa9, 0x73, 0x5b, 0xeb, 0xf0, - 0xd2, 0xc7, 0x73, 0x92, 0xdb, 0xf9, 0x80, 0xb5, 0x74, 0x82, 0x07, 0xac, 0x7d, 0x79, 0xd5, 0x9c, - 0xfe, 0x0c, 0x35, 0xe7, 0x7b, 0x45, 0x78, 0xbc, 0x63, 0x97, 0x3d, 0x72, 0xd7, 0xd4, 0x3a, 0xb6, - 0xf2, 0x54, 0x4c, 0x8b, 0x5f, 0x2d, 0x1d, 0xd0, 0x67, 0xcc, 0xc8, 0xb8, 0x4c, 0xe5, 0x31, 0x43, - 0x46, 0x42, 0x3d, 0x1c, 0xe1, 0xb2, 0x98, 0xc3, 0xb0, 0xc2, 0xa2, 0x48, 0xbb, 0xe6, 0xc5, 0xbb, - 0x60, 0xf1, 0x88, 0xc2, 0x60, 0xc6, 0x74, 0xfe, 0xea, 0x99, 0x14, 0x52, 0x97, 0xbf, 0xd0, 0x3d, - 0xcd, 0xe4, 0x2d, 0x1d, 0xc5, 0xe4, 0x1d, 0x39, 0xc0, 0xdc, 0x9d, 0x83, 0xf1, 0x86, 0xeb, 0xb3, - 0x77, 0x8b, 0x4d, 0xfd, 0x4c, 0xdd, 0x3a, 0x5e, 0x31, 0xd1, 0x38, 0x4d, 0x3f, 0xf5, 0x06, 0x8c, - 0x1e, 0xdd, 0x3f, 0xf7, 0x7e, 0x09, 0x3e, 0x7c, 0x88, 0x40, 0xe3, 0xfb, 0xa4, 0x31, 0x2e, 0xda, - 0x3e, 0xd9, 0x36, 0x36, 0x55, 0x38, 0xb7, 0xd1, 0xf2, 0xbc, 0x1d, 0x16, 0xb1, 0x45, 0x1c, 0x49, - 0x21, 0x74, 0x5f, 0xf9, 0x42, 0xf5, 0xb9, 0xa5, 0x0e, 0x34, 0xb8, 0x63, 0x49, 0xf4, 0x19, 0x40, - 0xc1, 0x3a, 0x4b, 0xee, 0xec, 0x24, 0x99, 0x22, 0xd8, 0x10, 0x94, 0x12, 0x41, 0xb0, 0xda, 0x46, - 0x81, 0x3b, 0x94, 0xa2, 0x9a, 0x30, 0xdd, 0xd1, 0x77, 0x54, 0xb3, 0x52, 0x9a, 0x30, 0xd6, 0x91, - 0xd8, 0xa4, 0x45, 0xd7, 0xe1, 0x8c, 0xbd, 0x6d, 0xbb, 0x3c, 0xcf, 0x97, 0x64, 0xc0, 0x55, 0x61, - 0xe5, 0x01, 0x9b, 0x4b, 0x13, 0xe0, 0xf6, 0x32, 0xa8, 0x69, 0xb8, 0x34, 0xf9, 0x33, 0x17, 0x9f, - 0x3c, 0xc2, 0x0c, 0xce, 0xed, 0xe4, 0xb4, 0xfe, 0xb8, 0x40, 0xb7, 0xeb, 0x0e, 0x4f, 0xd1, 0xd2, - 0x1e, 0x51, 0x2e, 0x3a, 0xed, 0xea, 0x9b, 0xea, 0x91, 0x05, 0x1d, 0x89, 0x4d, 0x5a, 0x3e, 0x35, - 0xa2, 0x24, 0x9c, 0xdc, 0xd0, 0xbb, 0xc5, 0x8d, 0x4f, 0x45, 0x81, 0xee, 0xc1, 0xa0, 0xe3, 0x6e, - 0xbb, 0x51, 0x10, 0x8a, 0x05, 0xd4, 0x55, 0x88, 0x72, 0x22, 0x8b, 0x2b, 0x9c, 0x09, 0x96, 0xdc, - 0xac, 0xff, 0x5b, 0x84, 0x51, 0x59, 0xdf, 0x5b, 0xad, 0x80, 0x49, 0xc8, 0x5e, 0x29, 0x21, 0x6f, - 0x19, 0x4a, 0xc8, 0x6c, 0xbe, 0x6b, 0xaf, 0xac, 0x51, 0x07, 0x2a, 0x1f, 0x9f, 0x4d, 0x29, 0x1f, - 0x57, 0xbb, 0x61, 0x7a, 0x9a, 0x4a, 0xc7, 0x6f, 0x15, 0xe1, 0x8c, 0xd1, 0x9a, 0x13, 0xd8, 0xfb, - 0xaa, 0xe6, 0xde, 0xf7, 0x42, 0x17, 0x7d, 0x75, 0x2a, 0x7b, 0xde, 0xf7, 0xd2, 0x7d, 0xc4, 0xf6, - 0xba, 0xaf, 0x42, 0xdf, 0x96, 0x1d, 0x3a, 0xf9, 0x92, 0x74, 0xb6, 0x15, 0x9f, 0xb9, 0x61, 0x87, - 0x0e, 0xdf, 0xb1, 0xae, 0xa8, 0x87, 0xf2, 0xec, 0xd0, 0xc9, 0xbc, 0x17, 0xc2, 0x2a, 0x45, 0xaf, - 0xc3, 0x40, 0x54, 0x0f, 0x9a, 0x2a, 0x56, 0xf6, 0x12, 0x7f, 0x44, 0x8f, 0x42, 0xf6, 0x77, 0xa7, - 0x91, 0x59, 0x1d, 0x05, 0x63, 0x41, 0x3f, 0x45, 0xa0, 0xac, 0xaa, 0xee, 0xe1, 0x0d, 0x84, 0xf7, - 0x4b, 0x70, 0xb6, 0xc3, 0x2c, 0x47, 0x5f, 0x33, 0x7a, 0xed, 0x8d, 0xae, 0x97, 0xc9, 0x07, 0xec, - 0xb7, 0xaf, 0x31, 0x1b, 0xd7, 0x11, 0x33, 0xef, 0x08, 0xd5, 0xdf, 0x89, 0x48, 0xba, 0x7a, 0x0a, - 0xca, 0xae, 0x9e, 0x56, 0x7b, 0x42, 0x9d, 0x4f, 0xab, 0x51, 0xed, 0xec, 0xe1, 0x18, 0xbf, 0xd7, - 0x07, 0xe7, 0x3a, 0x65, 0x05, 0x40, 0xbf, 0x50, 0x48, 0x3d, 0x03, 0xf3, 0x66, 0xf7, 0xa9, 0x05, - 0xf8, 0xdb, 0x30, 0x22, 0xa7, 0xd0, 0x8c, 0xf9, 0x30, 0x4c, 0x66, 0x6f, 0x8b, 0xda, 0xd9, 0x5d, - 0xae, 0x90, 0x3f, 0x17, 0x24, 0xa5, 0xcd, 0xa7, 0x8f, 0xd0, 0x14, 0xf1, 0xe2, 0x50, 0x94, 0xba, - 0xcb, 0x25, 0xc1, 0xd9, 0x77, 0xb9, 0x64, 0x1b, 0xa6, 0x36, 0x61, 0x58, 0xfb, 0xae, 0x1e, 0x4e, - 0x01, 0x97, 0x6e, 0xa7, 0x5a, 0xab, 0x7b, 0xf9, 0x46, 0x52, 0x01, 0x52, 0x11, 0x53, 0xca, 0x91, - 0x56, 0x38, 0xd0, 0x91, 0x76, 0x09, 0xfa, 0xc2, 0xc0, 0x23, 0xe9, 0x27, 0x3e, 0x70, 0xe0, 0x11, - 0xcc, 0x30, 0xea, 0xad, 0xef, 0xd2, 0x81, 0x6f, 0x7d, 0x3f, 0x0d, 0xfd, 0x1e, 0xd9, 0x26, 0xd2, - 0xad, 0xa5, 0xb6, 0x86, 0x5b, 0x14, 0x88, 0x39, 0xce, 0xfa, 0x3b, 0x7d, 0x30, 0xc0, 0x7d, 0x47, - 0x3d, 0xd4, 0x28, 0xaa, 0xc2, 0x8d, 0x93, 0xeb, 0x86, 0x3e, 0x6f, 0xcd, 0x4c, 0xc5, 0x8e, 0x6d, - 0x3e, 0xa1, 0xd4, 0xb7, 0x69, 0xae, 0x9f, 0x19, 0xe3, 0xeb, 0xa7, 0x52, 0x96, 0x3e, 0x70, 0x1e, - 0x5a, 0x5f, 0x6c, 0x01, 0x44, 0xec, 0x65, 0x56, 0xca, 0x43, 0x64, 0x52, 0x7d, 0x25, 0x57, 0x3b, - 0x6a, 0xaa, 0x18, 0x6f, 0x4d, 0x92, 0xc2, 0x51, 0x21, 0xb0, 0xc6, 0xdb, 0xd8, 0x6b, 0xfb, 0x8f, - 0x7b, 0xaf, 0x9d, 0x7a, 0x0d, 0xca, 0xaa, 0x29, 0x59, 0x26, 0xd0, 0x88, 0x3e, 0xe1, 0xff, 0x1c, - 0x8c, 0xa7, 0xbe, 0xa4, 0x2b, 0x0b, 0xea, 0x07, 0x05, 0x38, 0xc3, 0x3b, 0xe4, 0x26, 0xd9, 0x51, - 0x9a, 0xf5, 0x7b, 0x05, 0x38, 0xe7, 0x75, 0x70, 0x49, 0x8a, 0xe9, 0x73, 0x14, 0x67, 0xa6, 0x32, - 0x9f, 0x3a, 0x61, 0x71, 0xc7, 0xda, 0x64, 0xe6, 0xe9, 0x62, 0xe7, 0xcc, 0xd3, 0xd6, 0xaf, 0x16, - 0x41, 0x4c, 0x88, 0x13, 0x50, 0xde, 0x96, 0x4d, 0xe5, 0xed, 0x23, 0x79, 0xe6, 0xd8, 0xa9, 0x68, - 0x6d, 0xff, 0xb6, 0x00, 0x88, 0x57, 0x9f, 0x7e, 0x5c, 0x9a, 0xfb, 0x8f, 0x35, 0x4b, 0x29, 0x99, - 0xf2, 0x0a, 0x83, 0x35, 0xaa, 0x2e, 0xdf, 0x98, 0x51, 0x8f, 0xb2, 0x1e, 0xf0, 0xd9, 0x57, 0x61, - 0x58, 0x3c, 0x9f, 0xb8, 0x92, 0x3c, 0xb8, 0x3a, 0xce, 0x9e, 0xfe, 0x4e, 0xc0, 0x58, 0xa7, 0xb1, - 0xfe, 0x55, 0x09, 0xd2, 0x01, 0x51, 0xe8, 0x4b, 0x30, 0x52, 0xb7, 0x9b, 0xf6, 0xba, 0xeb, 0xb9, - 0xb1, 0x4b, 0xa2, 0x7c, 0x67, 0x98, 0x0b, 0x5a, 0x09, 0x71, 0x02, 0xa1, 0x41, 0xb0, 0xc1, 0x11, - 0xcd, 0x00, 0x34, 0x43, 0x77, 0xdb, 0xf5, 0xc8, 0x26, 0x53, 0x99, 0x58, 0x50, 0x37, 0x3f, 0x8e, - 0x93, 0x50, 0xac, 0x51, 0x74, 0x88, 0xc0, 0x2d, 0x9d, 0x44, 0x04, 0x6e, 0x5f, 0x97, 0x11, 0xb8, - 0xfd, 0xb9, 0x22, 0x70, 0x31, 0x5c, 0x90, 0x07, 0x07, 0xf4, 0xff, 0x92, 0xeb, 0x11, 0x9e, 0xc7, - 0x56, 0x04, 0x7d, 0x4f, 0xed, 0xed, 0x4e, 0x5f, 0xc0, 0x1d, 0x29, 0xf0, 0x01, 0x25, 0xad, 0xff, - 0x54, 0x80, 0xb3, 0x35, 0x12, 0xba, 0x2c, 0xbf, 0xa0, 0x93, 0xac, 0xef, 0x2f, 0x40, 0x39, 0x4c, - 0x89, 0x96, 0x2e, 0xaf, 0x40, 0x6b, 0x79, 0x98, 0xa4, 0x28, 0x49, 0x58, 0xf6, 0x38, 0x1e, 0xfb, - 0xa7, 0x45, 0x18, 0x14, 0x71, 0x8d, 0x3d, 0xdc, 0x62, 0x6f, 0x1a, 0x46, 0xfb, 0x73, 0x59, 0x62, - 0x87, 0x35, 0xe7, 0x40, 0x73, 0xbd, 0x96, 0x32, 0xd7, 0x5f, 0xc8, 0xc7, 0xee, 0x34, 0x0d, 0xf5, - 0xef, 0x94, 0x60, 0xcc, 0x8c, 0x1e, 0xed, 0x61, 0x67, 0xbf, 0x0d, 0x83, 0x91, 0x08, 0xa9, 0x2c, - 0xe6, 0x89, 0x26, 0x4b, 0x4f, 0x47, 0xe5, 0xe7, 0x91, 0x41, 0x94, 0x92, 0x5d, 0xc7, 0xa8, 0xcd, - 0xd2, 0x89, 0x44, 0x6d, 0xf6, 0x76, 0x78, 0xfe, 0x76, 0x11, 0x52, 0xe1, 0xc2, 0x27, 0xb0, 0x17, - 0xbf, 0x65, 0xee, 0x4b, 0x57, 0x72, 0xcd, 0x62, 0xd1, 0xbc, 0x53, 0xd9, 0x93, 0xbf, 0x55, 0x84, - 0x61, 0xd1, 0x8c, 0x13, 0xe8, 0x9e, 0xcf, 0x98, 0xdd, 0xf3, 0x4c, 0xae, 0xee, 0x39, 0x95, 0x7e, - 0xf9, 0x8d, 0xa4, 0x5f, 0xaa, 0x41, 0x18, 0xe7, 0xca, 0x56, 0x3d, 0xd4, 0x0c, 0x83, 0x38, 0xa8, - 0x07, 0x9e, 0xd0, 0x0b, 0x9f, 0x48, 0x2e, 0x51, 0x71, 0xf8, 0xbe, 0xf6, 0x1b, 0x2b, 0x6a, 0x76, - 0x7d, 0x27, 0x08, 0x63, 0xa1, 0x77, 0x24, 0xd7, 0x77, 0x82, 0x30, 0xc6, 0x0c, 0x83, 0xd6, 0x01, - 0x92, 0xc7, 0xf3, 0xd3, 0x6b, 0x25, 0xd5, 0x79, 0xad, 0xd8, 0xf5, 0x66, 0x5c, 0x3f, 0x8e, 0xe2, - 0x70, 0x66, 0xd9, 0x8f, 0x57, 0x43, 0xae, 0x84, 0x6b, 0x77, 0xa2, 0x14, 0x27, 0xac, 0x71, 0x95, - 0x91, 0xee, 0xac, 0x86, 0x7e, 0xf3, 0x44, 0xe2, 0xb6, 0x80, 0x63, 0x45, 0x61, 0x7d, 0x8b, 0x6f, - 0x9c, 0xac, 0x7f, 0x1e, 0xa5, 0xab, 0x48, 0x7f, 0x69, 0x40, 0x8d, 0x1b, 0xf3, 0x09, 0xde, 0x86, - 0x7e, 0xda, 0x83, 0xd2, 0xed, 0x91, 0x6f, 0x97, 0xa2, 0x5f, 0xa8, 0x07, 0x0e, 0x87, 0x71, 0x84, - 0x39, 0x1b, 0x44, 0xda, 0x4e, 0xc9, 0x5e, 0xcb, 0xbd, 0xf1, 0x75, 0x71, 0x2e, 0xc6, 0xf2, 0xe6, - 0xb1, 0x74, 0x5e, 0xcb, 0xd5, 0x74, 0x02, 0xf3, 0x05, 0x89, 0xc0, 0x09, 0x0d, 0x9a, 0x15, 0xd6, - 0x29, 0x37, 0xbc, 0x3f, 0x9c, 0xb2, 0x4e, 0x65, 0x97, 0x68, 0xe6, 0xe9, 0x55, 0x18, 0x56, 0x4f, - 0xb8, 0x54, 0xf9, 0x4b, 0x1c, 0x65, 0xae, 0xf3, 0x2e, 0x26, 0x60, 0xac, 0xd3, 0xa0, 0x65, 0x38, - 0xeb, 0xa8, 0x7b, 0x13, 0xd5, 0xd6, 0xba, 0xe7, 0xd6, 0x69, 0x51, 0x7e, 0x65, 0xf4, 0xb1, 0xbd, - 0xdd, 0xe9, 0xb3, 0x95, 0x76, 0x34, 0xee, 0x54, 0x06, 0xad, 0xc1, 0x78, 0xc4, 0x9f, 0xaa, 0x91, - 0xc1, 0xf1, 0x22, 0xaf, 0xef, 0xf3, 0xf2, 0x78, 0xae, 0x66, 0xa2, 0xf7, 0x19, 0x88, 0x8b, 0x4b, - 0x19, 0x4e, 0x9f, 0x66, 0x81, 0xde, 0x84, 0x31, 0x4f, 0x7f, 0x4c, 0xb5, 0x2a, 0xae, 0x8f, 0xa8, - 0x90, 0x2e, 0xe3, 0xa9, 0xd5, 0x2a, 0x4e, 0x51, 0xa3, 0xb7, 0x61, 0x52, 0x87, 0x88, 0xb4, 0x3b, - 0xb6, 0xbf, 0x49, 0x22, 0xf1, 0x46, 0xc6, 0x13, 0x7b, 0xbb, 0xd3, 0x93, 0xb7, 0x0e, 0xa0, 0xc1, - 0x07, 0x96, 0x46, 0xaf, 0xc3, 0x88, 0xec, 0x49, 0xed, 0x2a, 0x49, 0x12, 0x4c, 0xa8, 0xe1, 0xb0, - 0x41, 0xf9, 0xc1, 0x4e, 0x21, 0xbf, 0x4a, 0x0b, 0x6b, 0x9a, 0x12, 0xfa, 0x32, 0x8c, 0xe8, 0x6d, - 0x14, 0x22, 0xfe, 0xa5, 0xfc, 0x0f, 0xd4, 0x0a, 0x8d, 0x4b, 0xb5, 0x5c, 0xc7, 0x61, 0x83, 0xb7, - 0xb5, 0x0a, 0x03, 0xb5, 0x9d, 0xa8, 0x1e, 0x7b, 0x39, 0x84, 0xe7, 0xd3, 0xc6, 0x27, 0x24, 0x6b, - 0x8f, 0xbd, 0xb3, 0x24, 0xbe, 0xc8, 0xaa, 0xc3, 0xf8, 0xda, 0x42, 0xb5, 0x16, 0xd4, 0xef, 0x93, - 0x78, 0x8e, 0x85, 0x5b, 0xa2, 0xaa, 0x10, 0x9d, 0x85, 0x23, 0x89, 0xc4, 0x0e, 0xa2, 0xd6, 0xfa, - 0x7a, 0x01, 0xfa, 0xd7, 0x6c, 0x37, 0xfb, 0x75, 0xa9, 0x3c, 0x4d, 0x46, 0xaf, 0xc2, 0x00, 0xd9, - 0xd8, 0x20, 0xf5, 0x58, 0x2c, 0xe2, 0x27, 0xa5, 0xa6, 0xba, 0xc8, 0xa0, 0x74, 0x69, 0xb2, 0xca, - 0xf8, 0x5f, 0x2c, 0x88, 0xad, 0x7f, 0x5f, 0x00, 0x58, 0x0b, 0x3c, 0x79, 0xc0, 0x9a, 0xd1, 0x92, - 0xf9, 0xb6, 0x77, 0xae, 0x9e, 0xed, 0xf0, 0xce, 0x15, 0x4a, 0x18, 0x76, 0x78, 0xe5, 0x4a, 0x7d, - 0x4d, 0x29, 0xd7, 0xd7, 0xf4, 0x75, 0xf3, 0x35, 0xdf, 0x2c, 0x80, 0x88, 0x02, 0xcc, 0x31, 0x13, - 0x1c, 0xf9, 0x36, 0x8d, 0x91, 0x50, 0xeb, 0xf9, 0x3c, 0x57, 0x0e, 0x45, 0x1a, 0x2d, 0x35, 0x37, - 0x8d, 0xe4, 0x59, 0x06, 0x57, 0xeb, 0x07, 0x05, 0x18, 0xe6, 0xe8, 0x15, 0xa6, 0xb8, 0x67, 0xb7, - 0xab, 0xab, 0xc4, 0xa4, 0xec, 0xe9, 0x16, 0xca, 0x58, 0xa5, 0x90, 0xd4, 0x9f, 0x6e, 0x91, 0x08, - 0x9c, 0xd0, 0xa0, 0xe7, 0x60, 0x30, 0x6a, 0xad, 0x33, 0xf2, 0x54, 0x48, 0x60, 0x8d, 0x83, 0xb1, - 0xc4, 0x5b, 0x3f, 0x8f, 0xc0, 0xf8, 0x34, 0x23, 0x5d, 0x65, 0xe1, 0xd8, 0xd3, 0x55, 0xbe, 0x03, - 0x43, 0xa4, 0xd1, 0x8c, 0x77, 0x2a, 0x6e, 0x98, 0x2f, 0x2d, 0xf1, 0xa2, 0xa0, 0x6e, 0xe7, 0x2e, - 0x31, 0x58, 0x71, 0x3c, 0x20, 0xf9, 0x68, 0xe9, 0x91, 0x48, 0x3e, 0xda, 0x77, 0x2a, 0xc9, 0x47, - 0xdf, 0x86, 0xc1, 0x4d, 0x37, 0xc6, 0xa4, 0x19, 0x08, 0x67, 0x6e, 0xc6, 0xc9, 0xf5, 0x75, 0x4e, - 0xdc, 0x9e, 0x51, 0x50, 0x20, 0xb0, 0x64, 0x87, 0xd6, 0x60, 0x80, 0x1b, 0x7d, 0x22, 0xa1, 0xc9, - 0x4b, 0x79, 0x3c, 0x85, 0xed, 0xa9, 0x2d, 0x45, 0xdc, 0xa7, 0xe0, 0x25, 0x93, 0x8d, 0x0e, 0x7e, - 0xf0, 0x64, 0xa3, 0x2a, 0x45, 0xe8, 0xd0, 0x71, 0xa5, 0x08, 0x35, 0x52, 0xad, 0x96, 0x7b, 0x91, - 0x6a, 0xf5, 0x9b, 0x05, 0x38, 0xdf, 0xec, 0x94, 0x06, 0x59, 0x24, 0xfb, 0xfc, 0xd4, 0x11, 0xd2, - 0x42, 0x1b, 0x55, 0xb3, 0x9b, 0xbf, 0x1d, 0xc9, 0x70, 0xe7, 0x8a, 0x65, 0xce, 0xd6, 0xe1, 0x0f, - 0x9e, 0xb3, 0xb5, 0xd7, 0x59, 0x41, 0x93, 0x0c, 0xae, 0xa3, 0x3d, 0xc9, 0xe0, 0x3a, 0x76, 0x8c, - 0x19, 0x5c, 0xb5, 0xdc, 0xab, 0xe3, 0xc7, 0x9b, 0x7b, 0x75, 0x0b, 0x86, 0x9d, 0xe0, 0x81, 0xff, - 0xc0, 0x0e, 0x9d, 0xb9, 0xea, 0xb2, 0x48, 0xf5, 0x99, 0x91, 0xf9, 0xa9, 0x92, 0x14, 0x30, 0x6a, - 0xe0, 0x4e, 0xeb, 0x04, 0x89, 0x75, 0xd6, 0x22, 0x0b, 0xed, 0x99, 0x0f, 0x98, 0x85, 0xd6, 0xc8, - 0xe5, 0x8a, 0x7a, 0x91, 0xcb, 0xf5, 0x4b, 0x2c, 0xd1, 0xc9, 0x86, 0xbb, 0xb9, 0x62, 0x37, 0x27, - 0xcf, 0xe6, 0xa9, 0x61, 0x41, 0x92, 0xb7, 0xd7, 0xa0, 0x50, 0x38, 0x61, 0xda, 0x9e, 0x2d, 0xf6, - 0xdc, 0x49, 0x67, 0x8b, 0x3d, 0xdf, 0xc3, 0x6c, 0xb1, 0x17, 0x4e, 0x34, 0x5b, 0xec, 0x63, 0xa7, - 0x92, 0x2d, 0xf6, 0x2f, 0xc0, 0xc5, 0xc3, 0x87, 0x23, 0x79, 0xeb, 0xa0, 0x9a, 0x38, 0x24, 0x52, - 0x6f, 0x1d, 0x30, 0x55, 0x47, 0xa3, 0xca, 0x9d, 0xb4, 0xf2, 0x77, 0x0b, 0xf0, 0xd8, 0x01, 0xd9, - 0xd7, 0x72, 0xdf, 0xc7, 0x6a, 0xc2, 0x78, 0xd3, 0x2c, 0x9a, 0xfb, 0xd6, 0xa7, 0x91, 0xed, 0x4d, - 0x45, 0xb4, 0xa6, 0x10, 0x38, 0xcd, 0x7e, 0xfe, 0x23, 0x3f, 0x7a, 0xff, 0xe2, 0x87, 0x7e, 0xfc, - 0xfe, 0xc5, 0x0f, 0xfd, 0xd1, 0xfb, 0x17, 0x3f, 0xf4, 0x73, 0x7b, 0x17, 0x0b, 0x3f, 0xda, 0xbb, - 0x58, 0xf8, 0xf1, 0xde, 0xc5, 0xc2, 0x9f, 0xec, 0x5d, 0x2c, 0x7c, 0xf3, 0xa7, 0x17, 0x3f, 0xf4, - 0xb9, 0xe2, 0xf6, 0xd5, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0x8d, 0x50, 0x19, 0x54, 0x07, 0xc8, - 0x00, 0x00, + // 10157 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x6c, 0x24, 0xc9, + 0x75, 0x98, 0x7a, 0x86, 0x5f, 0xf3, 0xf8, 0xb9, 0xb5, 0x1f, 0xc7, 0xa3, 0xee, 0x96, 0x7b, 0x7d, + 0xba, 0xd3, 0xde, 0xdd, 0x1e, 0x79, 0xbb, 0x77, 0xa7, 0x5b, 0xe9, 0x94, 0x93, 0x48, 0x0e, 0xb9, + 0x4b, 0xed, 0x07, 0xe7, 0x6a, 0xb8, 0xbb, 0x27, 0xe9, 0x22, 0xa9, 0x39, 0x5d, 0x24, 0x5b, 0xdb, + 0xd3, 0x3d, 0xd7, 0xdd, 0xc3, 0x5d, 0x4a, 0x11, 0xe0, 0xc8, 0x17, 0x1b, 0x81, 0x85, 0x44, 0x49, + 0x20, 0x24, 0x80, 0xf3, 0xa1, 0x04, 0x70, 0xe0, 0xc4, 0x88, 0x1d, 0x45, 0xfe, 0x90, 0x63, 0xc5, + 0x41, 0x10, 0xdb, 0x91, 0x13, 0x24, 0x90, 0x61, 0x20, 0x36, 0x6c, 0x80, 0xf1, 0xd1, 0x41, 0x7e, + 0xe6, 0x47, 0xfc, 0x2b, 0x84, 0x91, 0x04, 0xf5, 0xd9, 0x55, 0x3d, 0x33, 0xec, 0x1e, 0xde, 0x92, + 0x3a, 0x19, 0xf9, 0x37, 0xf3, 0xde, 0xab, 0x57, 0x1f, 0x5d, 0xf5, 0xea, 0xbd, 0x57, 0xaf, 0x5e, + 0xc1, 0xa5, 0xfb, 0x57, 0xe3, 0x39, 0x2f, 0x9c, 0xbf, 0xdf, 0xde, 0x20, 0x51, 0x40, 0x12, 0x12, + 0xcf, 0xb7, 0xee, 0x6f, 0xcd, 0x3b, 0x2d, 0x6f, 0x7e, 0xe7, 0xf2, 0xfc, 0x16, 0x09, 0x48, 0xe4, + 0x24, 0xc4, 0x9d, 0x6b, 0x45, 0x61, 0x12, 0xa2, 0x27, 0x38, 0xf5, 0x5c, 0x4a, 0x3d, 0xd7, 0xba, + 0xbf, 0x35, 0xe7, 0xb4, 0xbc, 0xb9, 0x9d, 0xcb, 0x33, 0x2f, 0x6e, 0x79, 0xc9, 0x76, 0x7b, 0x63, + 0xae, 0x11, 0x36, 0xe7, 0xb7, 0xc2, 0xad, 0x70, 0x9e, 0x15, 0xda, 0x68, 0x6f, 0xb2, 0x7f, 0xec, + 0x0f, 0xfb, 0xc5, 0x99, 0xcd, 0xbc, 0x22, 0xaa, 0x76, 0x5a, 0x5e, 0xd3, 0x69, 0x6c, 0x7b, 0x01, + 0x89, 0x76, 0x65, 0xe5, 0xf1, 0x7c, 0x93, 0x24, 0x4e, 0x97, 0x26, 0xcc, 0xcc, 0xf7, 0x2a, 0x15, + 0xb5, 0x83, 0xc4, 0x6b, 0x92, 0x8e, 0x02, 0x1f, 0xcb, 0x2b, 0x10, 0x37, 0xb6, 0x49, 0xd3, 0xe9, + 0x28, 0x77, 0xa5, 0xf7, 0xc8, 0x44, 0x24, 0x0e, 0xdb, 0x51, 0xa3, 0xb3, 0xae, 0xcb, 0xdd, 0xcb, + 0xb4, 0x13, 0xcf, 0x9f, 0xf7, 0x82, 0x24, 0x4e, 0xa2, 0x6c, 0x11, 0xfb, 0x0f, 0x2c, 0xb8, 0xb0, + 0x70, 0xaf, 0xbe, 0xec, 0x3b, 0x71, 0xe2, 0x35, 0x16, 0xfd, 0xb0, 0x71, 0xbf, 0x9e, 0x84, 0x11, + 0xb9, 0x1b, 0xfa, 0xed, 0x26, 0xa9, 0xb3, 0x7a, 0xd0, 0x25, 0x18, 0xd9, 0x61, 0xff, 0x57, 0xab, + 0xd3, 0xd6, 0x05, 0xeb, 0x62, 0x65, 0x71, 0xea, 0x07, 0x7b, 0xb3, 0x1f, 0xda, 0xdf, 0x9b, 0x1d, + 0xb9, 0x2b, 0xe0, 0x58, 0x51, 0xa0, 0x67, 0x61, 0x68, 0x33, 0x5e, 0xdf, 0x6d, 0x91, 0xe9, 0x12, + 0xa3, 0x9d, 0x10, 0xb4, 0x43, 0x2b, 0x75, 0x0a, 0xc5, 0x02, 0x8b, 0xe6, 0xa1, 0xd2, 0x72, 0xa2, + 0xc4, 0x4b, 0xbc, 0x30, 0x98, 0x2e, 0x5f, 0xb0, 0x2e, 0x0e, 0x2e, 0x9e, 0x12, 0xa4, 0x95, 0x9a, + 0x44, 0xe0, 0x94, 0x86, 0x36, 0x23, 0x22, 0x8e, 0xbb, 0x16, 0xf8, 0xbb, 0xd3, 0x03, 0x17, 0xac, + 0x8b, 0x23, 0x69, 0x33, 0xb0, 0x80, 0x63, 0x45, 0x61, 0x7f, 0xaf, 0x04, 0x23, 0x0b, 0x9b, 0x9b, + 0x5e, 0xe0, 0x25, 0xbb, 0xe8, 0x4b, 0x30, 0x16, 0x84, 0x2e, 0x91, 0xff, 0x59, 0x2f, 0x46, 0xaf, + 0x3c, 0x3f, 0x77, 0xd8, 0x84, 0x9a, 0xbb, 0xad, 0x95, 0x58, 0x9c, 0xda, 0xdf, 0x9b, 0x1d, 0xd3, + 0x21, 0xd8, 0xe0, 0x88, 0xde, 0x86, 0xd1, 0x56, 0xe8, 0xaa, 0x0a, 0x4a, 0xac, 0x82, 0xe7, 0x0e, + 0xaf, 0xa0, 0x96, 0x16, 0x58, 0x9c, 0xdc, 0xdf, 0x9b, 0x1d, 0xd5, 0x00, 0x58, 0x67, 0x87, 0x7c, + 0x98, 0xa4, 0x7f, 0x83, 0xc4, 0x53, 0x35, 0x94, 0x59, 0x0d, 0x2f, 0xe6, 0xd7, 0xa0, 0x15, 0x5a, + 0x3c, 0xbd, 0xbf, 0x37, 0x3b, 0x99, 0x01, 0xe2, 0x2c, 0x6b, 0xfb, 0x2b, 0x30, 0xb1, 0x90, 0x24, + 0x4e, 0x63, 0x9b, 0xb8, 0xfc, 0xfb, 0xa2, 0x57, 0x60, 0x20, 0x70, 0x9a, 0x44, 0x7c, 0xfd, 0x0b, + 0x62, 0xd8, 0x07, 0x6e, 0x3b, 0x4d, 0x72, 0xb0, 0x37, 0x3b, 0x75, 0x27, 0xf0, 0xde, 0x69, 0x8b, + 0x39, 0x43, 0x61, 0x98, 0x51, 0xa3, 0x2b, 0x00, 0x2e, 0xd9, 0xf1, 0x1a, 0xa4, 0xe6, 0x24, 0xdb, + 0x62, 0x36, 0x20, 0x51, 0x16, 0xaa, 0x0a, 0x83, 0x35, 0x2a, 0xfb, 0xeb, 0x16, 0x54, 0x16, 0x76, + 0x42, 0xcf, 0xad, 0x85, 0x6e, 0x8c, 0xda, 0x30, 0xd9, 0x8a, 0xc8, 0x26, 0x89, 0x14, 0x68, 0xda, + 0xba, 0x50, 0xbe, 0x38, 0x7a, 0xe5, 0x4a, 0x4e, 0xbf, 0xcd, 0x42, 0xcb, 0x41, 0x12, 0xed, 0x2e, + 0x3e, 0x26, 0xaa, 0x9e, 0xcc, 0x60, 0x71, 0xb6, 0x0e, 0xfb, 0x6f, 0x95, 0xe0, 0xec, 0xc2, 0x57, + 0xda, 0x11, 0xa9, 0x7a, 0xf1, 0xfd, 0xec, 0x52, 0x70, 0xbd, 0xf8, 0xfe, 0xed, 0x74, 0x30, 0xd4, + 0x1c, 0xac, 0x0a, 0x38, 0x56, 0x14, 0xe8, 0x45, 0x18, 0xa6, 0xbf, 0xef, 0xe0, 0x55, 0xd1, 0xfb, + 0xd3, 0x82, 0x78, 0xb4, 0xea, 0x24, 0x4e, 0x95, 0xa3, 0xb0, 0xa4, 0x41, 0xb7, 0x60, 0xb4, 0xc1, + 0x64, 0xc4, 0xd6, 0xad, 0xd0, 0x25, 0xec, 0x0b, 0x57, 0x16, 0x5f, 0xa0, 0xe4, 0x4b, 0x29, 0xf8, + 0x60, 0x6f, 0x76, 0x9a, 0xb7, 0x4d, 0xb0, 0xd0, 0x70, 0x58, 0x2f, 0x8f, 0x6c, 0xb5, 0x10, 0x07, + 0x18, 0x27, 0xe8, 0xb2, 0x08, 0x2f, 0x6a, 0x6b, 0x6a, 0x90, 0xad, 0xa9, 0xb1, 0x1e, 0xeb, 0xe9, + 0x9f, 0x5b, 0x62, 0x4c, 0x56, 0x3c, 0xdf, 0x14, 0x0f, 0x57, 0x00, 0x62, 0xd2, 0x88, 0x48, 0xa2, + 0x8d, 0x8a, 0xfa, 0xcc, 0x75, 0x85, 0xc1, 0x1a, 0x15, 0x5d, 0xfc, 0xf1, 0xb6, 0x13, 0xb1, 0xd9, + 0x22, 0xc6, 0x46, 0x2d, 0xfe, 0xba, 0x44, 0xe0, 0x94, 0xc6, 0x58, 0xfc, 0xe5, 0xdc, 0xc5, 0xff, + 0xaf, 0x2d, 0x18, 0x5e, 0xf4, 0x02, 0xd7, 0x0b, 0xb6, 0xd0, 0x5b, 0x30, 0x42, 0xa5, 0xb9, 0xeb, + 0x24, 0x8e, 0x58, 0xf7, 0x17, 0x0f, 0x9f, 0x3c, 0x6b, 0x1b, 0x5f, 0x26, 0x8d, 0xe4, 0x16, 0x49, + 0x9c, 0xb4, 0x1b, 0x29, 0x0c, 0x2b, 0x6e, 0xe8, 0x0e, 0x0c, 0x25, 0x4e, 0xb4, 0x45, 0x12, 0xb1, + 0xdc, 0x5f, 0x2c, 0xc2, 0x17, 0xd3, 0xa9, 0x46, 0x82, 0x06, 0x49, 0x05, 0xe3, 0x3a, 0x63, 0x82, + 0x05, 0x33, 0xbb, 0x01, 0x63, 0x4b, 0x4e, 0xcb, 0xd9, 0xf0, 0x7c, 0x2f, 0xf1, 0x48, 0x8c, 0x3e, + 0x0a, 0x65, 0xc7, 0x75, 0xd9, 0xc4, 0xaf, 0x2c, 0x9e, 0xdd, 0xdf, 0x9b, 0x2d, 0x2f, 0xb8, 0xee, + 0xc1, 0xde, 0x2c, 0x28, 0xaa, 0x5d, 0x4c, 0x29, 0xd0, 0xf3, 0x30, 0xe0, 0x46, 0x61, 0x6b, 0xba, + 0xc4, 0x28, 0xcf, 0xd1, 0x15, 0x5a, 0x8d, 0xc2, 0x56, 0x86, 0x94, 0xd1, 0xd8, 0xbf, 0x5d, 0x02, + 0xb4, 0x44, 0x5a, 0xdb, 0x2b, 0x75, 0xe3, 0x5b, 0x5e, 0x84, 0x91, 0x66, 0x18, 0x78, 0x49, 0x18, + 0xc5, 0xa2, 0x42, 0x36, 0x1f, 0x6e, 0x09, 0x18, 0x56, 0x58, 0x74, 0x01, 0x06, 0x5a, 0xe9, 0xb2, + 0x1e, 0x93, 0x22, 0x81, 0x2d, 0x68, 0x86, 0xa1, 0x14, 0xed, 0x98, 0x44, 0x62, 0x1e, 0x2b, 0x8a, + 0x3b, 0x31, 0x89, 0x30, 0xc3, 0xa4, 0x33, 0x87, 0xce, 0x29, 0x31, 0x4b, 0x33, 0x33, 0x87, 0x62, + 0xb0, 0x46, 0x85, 0xbe, 0x08, 0x15, 0xfe, 0x0f, 0x93, 0x4d, 0x36, 0x65, 0x73, 0x85, 0xc1, 0xcd, + 0xb0, 0xe1, 0xf8, 0xd9, 0xc1, 0x1f, 0x67, 0x33, 0x4d, 0x32, 0xc2, 0x29, 0x4f, 0x63, 0xa6, 0x0d, + 0xe5, 0xce, 0xb4, 0xbf, 0x67, 0x01, 0x5a, 0xf2, 0x02, 0x97, 0x44, 0x27, 0xb0, 0x65, 0xf6, 0xb7, + 0x08, 0xfe, 0x98, 0x36, 0x2d, 0x6c, 0xb6, 0xc2, 0x80, 0x04, 0xc9, 0x52, 0x18, 0xb8, 0x7c, 0x1b, + 0xfd, 0x04, 0x0c, 0x24, 0xb4, 0x2a, 0xde, 0xac, 0x67, 0xe5, 0x67, 0xa1, 0x15, 0x1c, 0xec, 0xcd, + 0x9e, 0xeb, 0x2c, 0xc1, 0x9a, 0xc0, 0xca, 0xa0, 0x8f, 0xc3, 0x50, 0x9c, 0x38, 0x49, 0x3b, 0x16, + 0x0d, 0x7d, 0x4a, 0x36, 0xb4, 0xce, 0xa0, 0x07, 0x7b, 0xb3, 0x93, 0xaa, 0x18, 0x07, 0x61, 0x51, + 0x00, 0x3d, 0x07, 0xc3, 0x4d, 0x12, 0xc7, 0xce, 0x96, 0x14, 0x6c, 0x93, 0xa2, 0xec, 0xf0, 0x2d, + 0x0e, 0xc6, 0x12, 0x8f, 0x9e, 0x86, 0x41, 0x12, 0x45, 0x61, 0x24, 0x66, 0xc4, 0xb8, 0x20, 0x1c, + 0x5c, 0xa6, 0x40, 0xcc, 0x71, 0xf6, 0xef, 0x59, 0x30, 0xa9, 0xda, 0xca, 0xeb, 0x3a, 0xc6, 0xa5, + 0xee, 0x02, 0x34, 0x64, 0xc7, 0x62, 0xb6, 0xc0, 0x46, 0xaf, 0xbc, 0x74, 0x38, 0xef, 0xce, 0x81, + 0x4c, 0xeb, 0x50, 0xa0, 0x18, 0x6b, 0x7c, 0xed, 0xff, 0x60, 0xc1, 0xe9, 0x4c, 0x9f, 0x6e, 0x7a, + 0x71, 0x82, 0xde, 0xee, 0xe8, 0xd7, 0x9c, 0xac, 0x5b, 0xd7, 0x2b, 0x65, 0xed, 0xf1, 0x1c, 0xa5, + 0x66, 0x53, 0xdf, 0x8b, 0x79, 0xef, 0xd4, 0x3c, 0x91, 0x10, 0xad, 0x6f, 0x18, 0x06, 0xbd, 0x84, + 0x34, 0x65, 0xb7, 0x5e, 0x2c, 0xd8, 0x2d, 0xde, 0xbe, 0xf4, 0xeb, 0xac, 0x52, 0x1e, 0x98, 0xb3, + 0xb2, 0xff, 0xcc, 0x82, 0xca, 0x52, 0x18, 0x6c, 0x7a, 0x5b, 0xb7, 0x9c, 0xd6, 0x31, 0x7e, 0x97, + 0x3a, 0x0c, 0x30, 0xae, 0xbc, 0xe9, 0x97, 0xf3, 0x9a, 0x2e, 0x1a, 0x34, 0x47, 0xf7, 0x4e, 0xae, + 0x14, 0x28, 0xb1, 0x44, 0x41, 0x98, 0x31, 0x9b, 0x79, 0x0d, 0x2a, 0x8a, 0x00, 0x4d, 0x41, 0xf9, + 0x3e, 0xe1, 0x1a, 0x63, 0x05, 0xd3, 0x9f, 0xe8, 0x0c, 0x0c, 0xee, 0x38, 0x7e, 0x5b, 0x2c, 0x56, + 0xcc, 0xff, 0x7c, 0xa2, 0x74, 0xd5, 0xb2, 0x7f, 0x96, 0xad, 0x38, 0x51, 0xc9, 0x72, 0xb0, 0x23, + 0x84, 0xc1, 0xbb, 0x16, 0x9c, 0xf1, 0xbb, 0x08, 0x21, 0x31, 0x16, 0x47, 0x11, 0x5f, 0x4f, 0x88, + 0x66, 0x9f, 0xe9, 0x86, 0xc5, 0x5d, 0x6b, 0xb3, 0xbf, 0x6f, 0xc1, 0x19, 0xd5, 0xba, 0x1b, 0x64, + 0xb7, 0x4e, 0x7c, 0xd2, 0x48, 0xc2, 0xe8, 0x03, 0xd2, 0x3e, 0xf4, 0x24, 0x1f, 0x69, 0x2e, 0x59, + 0x46, 0x05, 0x83, 0xf2, 0x0d, 0xb2, 0xcb, 0x86, 0xdd, 0xfe, 0x0d, 0x0b, 0xc6, 0x55, 0xf3, 0x4f, + 0x60, 0x59, 0xdc, 0x34, 0x97, 0xc5, 0x47, 0x0b, 0xce, 0xad, 0x1e, 0x0b, 0xe2, 0x1f, 0x95, 0xe0, + 0xac, 0xa2, 0x31, 0xb6, 0x8a, 0x0f, 0xc8, 0xe8, 0xf7, 0xd7, 0xdd, 0x1b, 0x64, 0x77, 0x3d, 0xa4, + 0x7b, 0x7d, 0xf7, 0xee, 0xa2, 0xcb, 0x30, 0xea, 0x92, 0x4d, 0xa7, 0xed, 0x27, 0x4a, 0x95, 0x1d, + 0xe4, 0x36, 0x4e, 0x35, 0x05, 0x63, 0x9d, 0xc6, 0xfe, 0x39, 0x60, 0x22, 0x23, 0x71, 0xe8, 0x47, + 0xa3, 0xca, 0x83, 0x66, 0x71, 0x8c, 0xe9, 0x16, 0x87, 0xb0, 0x2e, 0x9e, 0x86, 0x41, 0xaf, 0x49, + 0xb7, 0x93, 0x92, 0xb9, 0x4b, 0xac, 0x52, 0x20, 0xe6, 0x38, 0xf4, 0x0c, 0x0c, 0x37, 0xc2, 0x66, + 0xd3, 0x09, 0xdc, 0xe9, 0x32, 0x53, 0x67, 0x46, 0xe9, 0x8e, 0xb3, 0xc4, 0x41, 0x58, 0xe2, 0xd0, + 0x13, 0x30, 0xe0, 0x44, 0x5b, 0xf1, 0xf4, 0x00, 0xa3, 0x19, 0xa1, 0x35, 0x2d, 0x44, 0x5b, 0x31, + 0x66, 0x50, 0xaa, 0xa6, 0x3c, 0x08, 0xa3, 0xfb, 0x5e, 0xb0, 0x55, 0xf5, 0x22, 0xa6, 0x73, 0x68, + 0x6a, 0xca, 0x3d, 0x85, 0xc1, 0x1a, 0x15, 0xaa, 0xc1, 0x60, 0x2b, 0x8c, 0x92, 0x78, 0x7a, 0x88, + 0x0d, 0xe7, 0x0b, 0xb9, 0xb3, 0x87, 0xf7, 0xbb, 0x16, 0x46, 0x49, 0xda, 0x15, 0xfa, 0x2f, 0xc6, + 0x9c, 0x11, 0x5a, 0x82, 0x32, 0x09, 0x76, 0xa6, 0x87, 0x19, 0xbf, 0x8f, 0x1c, 0xce, 0x6f, 0x39, + 0xd8, 0xb9, 0xeb, 0x44, 0xe9, 0x22, 0x5a, 0x0e, 0x76, 0x30, 0x2d, 0x8d, 0x1a, 0x50, 0x91, 0xee, + 0x83, 0x78, 0x7a, 0xa4, 0xc8, 0x04, 0xc3, 0x82, 0x1c, 0x93, 0x77, 0xda, 0x5e, 0x44, 0x9a, 0x24, + 0x48, 0xe2, 0x54, 0x57, 0x97, 0xd8, 0x18, 0xa7, 0x7c, 0x51, 0x03, 0xc6, 0xb8, 0x6a, 0x73, 0x2b, + 0x6c, 0x07, 0x49, 0x3c, 0x5d, 0x61, 0x4d, 0xce, 0x31, 0x86, 0xef, 0xa6, 0x25, 0x16, 0xcf, 0x08, + 0xf6, 0x63, 0x1a, 0x30, 0xc6, 0x06, 0x53, 0xf4, 0x36, 0x8c, 0xfb, 0xde, 0x0e, 0x09, 0x48, 0x1c, + 0xd7, 0xa2, 0x70, 0x83, 0x4c, 0x03, 0xeb, 0xcd, 0xd3, 0x79, 0x86, 0x61, 0xb8, 0x41, 0x16, 0x4f, + 0xed, 0xef, 0xcd, 0x8e, 0xdf, 0xd4, 0x4b, 0x63, 0x93, 0x19, 0xfa, 0x22, 0x4c, 0x50, 0x3d, 0xca, + 0x4b, 0xd9, 0x8f, 0x16, 0x67, 0x8f, 0xf6, 0xf7, 0x66, 0x27, 0xb0, 0x51, 0x1c, 0x67, 0xd8, 0xa1, + 0x75, 0xa8, 0xf8, 0xde, 0x26, 0x69, 0xec, 0x36, 0x7c, 0x32, 0x3d, 0xc6, 0x78, 0xe7, 0x2c, 0xb9, + 0x9b, 0x92, 0x9c, 0xeb, 0xae, 0xea, 0x2f, 0x4e, 0x19, 0xa1, 0xbb, 0x70, 0x2e, 0x21, 0x51, 0xd3, + 0x0b, 0x1c, 0xaa, 0x50, 0x08, 0xc5, 0x8a, 0x59, 0xdf, 0xe3, 0x6c, 0xd6, 0x9e, 0x17, 0x03, 0x7b, + 0x6e, 0xbd, 0x2b, 0x15, 0xee, 0x51, 0x1a, 0xad, 0xc1, 0x24, 0x5b, 0x4f, 0xb5, 0xb6, 0xef, 0xd7, + 0x42, 0xdf, 0x6b, 0xec, 0x4e, 0x4f, 0x30, 0x86, 0xcf, 0x48, 0x9b, 0x7a, 0xd5, 0x44, 0x53, 0x9b, + 0x23, 0xfd, 0x87, 0xb3, 0xa5, 0x91, 0x0f, 0x93, 0x31, 0x69, 0xb4, 0x23, 0x2f, 0xd9, 0xa5, 0x73, + 0x9f, 0x3c, 0x4c, 0xa6, 0x27, 0x8b, 0xd8, 0x50, 0x75, 0xb3, 0x10, 0x77, 0x68, 0x64, 0x80, 0x38, + 0xcb, 0x9a, 0x8a, 0x8a, 0x38, 0x71, 0xbd, 0x60, 0x7a, 0x8a, 0x29, 0xcd, 0x6a, 0x7d, 0xd5, 0x29, + 0x10, 0x73, 0x1c, 0x33, 0x49, 0xe9, 0x8f, 0x35, 0x2a, 0x7b, 0x4f, 0x31, 0xc2, 0xd4, 0x24, 0x95, + 0x08, 0x9c, 0xd2, 0xd0, 0xfd, 0x2a, 0x49, 0x76, 0xa7, 0x11, 0x23, 0x55, 0x4b, 0x6d, 0x7d, 0xfd, + 0xb3, 0x98, 0xc2, 0xd1, 0x5d, 0x18, 0x26, 0xc1, 0xce, 0x4a, 0x14, 0x36, 0xa7, 0x4f, 0x17, 0x91, + 0x01, 0xcb, 0x9c, 0x98, 0xef, 0x0a, 0xa9, 0x76, 0x2c, 0xc0, 0x58, 0x32, 0xb3, 0x37, 0x60, 0x42, + 0x89, 0x0b, 0x36, 0xea, 0x68, 0x16, 0x06, 0xa9, 0x44, 0x94, 0x16, 0x5b, 0x85, 0x76, 0x8d, 0x0a, + 0xca, 0x18, 0x73, 0x38, 0xeb, 0x9a, 0xf7, 0x15, 0xb2, 0xb8, 0x9b, 0x10, 0xae, 0xb9, 0x97, 0xb5, + 0xae, 0x49, 0x04, 0x4e, 0x69, 0xec, 0xff, 0xc3, 0xf7, 0xda, 0x54, 0x26, 0x15, 0x90, 0xc7, 0x97, + 0x60, 0x64, 0x3b, 0x8c, 0x13, 0x4a, 0xcd, 0xea, 0x18, 0x4c, 0x77, 0xd7, 0xeb, 0x02, 0x8e, 0x15, + 0x05, 0x7a, 0x1d, 0xc6, 0x1b, 0x7a, 0x05, 0x62, 0x8b, 0x38, 0x2b, 0x8a, 0x98, 0xb5, 0x63, 0x93, + 0x16, 0x5d, 0x85, 0x11, 0xe6, 0xbe, 0x6c, 0x84, 0xbe, 0xb0, 0x11, 0xe4, 0x8e, 0x37, 0x52, 0x13, + 0xf0, 0x03, 0xed, 0x37, 0x56, 0xd4, 0xd4, 0xd2, 0xa2, 0x4d, 0x58, 0xad, 0x09, 0x31, 0xae, 0x2c, + 0xad, 0xeb, 0x0c, 0x8a, 0x05, 0xd6, 0xfe, 0x97, 0x25, 0x6d, 0x94, 0xa9, 0xa6, 0x4b, 0xd0, 0xe7, + 0x60, 0xf8, 0x81, 0xe3, 0x25, 0x5e, 0xb0, 0x25, 0x76, 0xe6, 0x97, 0x0b, 0xca, 0x74, 0x56, 0xfc, + 0x1e, 0x2f, 0xca, 0xf7, 0x1f, 0xf1, 0x07, 0x4b, 0x86, 0x94, 0x77, 0xd4, 0x0e, 0x02, 0xca, 0xbb, + 0xd4, 0x3f, 0x6f, 0xcc, 0x8b, 0x72, 0xde, 0xe2, 0x0f, 0x96, 0x0c, 0xd1, 0x26, 0x80, 0x5c, 0xd5, + 0xc4, 0x15, 0x6e, 0xc3, 0x8f, 0xf5, 0xc3, 0x7e, 0x5d, 0x95, 0x5e, 0x9c, 0xa0, 0x3b, 0x5e, 0xfa, + 0x1f, 0x6b, 0x9c, 0xed, 0x84, 0x29, 0x38, 0x9d, 0xcd, 0x42, 0x9f, 0xa7, 0x0b, 0xcb, 0x89, 0x12, + 0xe2, 0x2e, 0x24, 0x59, 0xcf, 0xeb, 0xe1, 0x7a, 0xda, 0xba, 0xd7, 0x24, 0xfa, 0x22, 0x14, 0x4c, + 0x70, 0xca, 0xcf, 0xfe, 0xb5, 0x32, 0x4c, 0xf7, 0x6a, 0x2e, 0x9d, 0x92, 0xe4, 0xa1, 0x97, 0x2c, + 0x51, 0x15, 0xc4, 0x32, 0xa7, 0xe4, 0xb2, 0x80, 0x63, 0x45, 0x41, 0xe7, 0x46, 0xec, 0x6d, 0x05, + 0x8e, 0x2f, 0xa6, 0xaf, 0x9a, 0x1b, 0x75, 0x06, 0xc5, 0x02, 0x4b, 0xe9, 0x22, 0xe2, 0xc4, 0xc2, + 0x6b, 0xad, 0xcd, 0x21, 0xcc, 0xa0, 0x58, 0x60, 0x75, 0x8b, 0x77, 0x20, 0xc7, 0xe2, 0x35, 0x86, + 0x68, 0xf0, 0xd1, 0x0e, 0x11, 0xfa, 0x02, 0xc0, 0xa6, 0x17, 0x78, 0xf1, 0x36, 0xe3, 0x3e, 0xd4, + 0x37, 0x77, 0xa5, 0xea, 0xac, 0x28, 0x2e, 0x58, 0xe3, 0x88, 0x5e, 0x85, 0x51, 0xb5, 0x3c, 0x57, + 0xab, 0xd3, 0xc3, 0xa6, 0xa7, 0x33, 0x95, 0x55, 0x55, 0xac, 0xd3, 0xd9, 0x5f, 0xce, 0xce, 0x17, + 0xb1, 0x2a, 0xb4, 0xf1, 0xb5, 0x8a, 0x8e, 0x6f, 0xe9, 0xf0, 0xf1, 0xb5, 0xff, 0x6b, 0x19, 0x26, + 0x8d, 0xca, 0xda, 0x71, 0x01, 0x89, 0xf6, 0x26, 0xdd, 0x36, 0x9c, 0x84, 0x88, 0x35, 0x79, 0xa9, + 0x9f, 0x45, 0xa3, 0x6f, 0x32, 0x74, 0x2d, 0x70, 0x4e, 0x68, 0x1b, 0x2a, 0xbe, 0x13, 0x33, 0xdb, + 0x99, 0x88, 0xb5, 0xd8, 0x1f, 0xdb, 0x54, 0xb5, 0x77, 0xe2, 0x44, 0xdb, 0xc5, 0x79, 0x2d, 0x29, + 0x73, 0xba, 0xe7, 0x51, 0x95, 0x43, 0x1e, 0x95, 0xa8, 0xe6, 0x50, 0xbd, 0x64, 0x17, 0x73, 0x1c, + 0xba, 0x0a, 0x63, 0x11, 0x61, 0x33, 0x65, 0x89, 0x6a, 0x55, 0x6c, 0xea, 0x0d, 0xa6, 0xea, 0x17, + 0xd6, 0x70, 0xd8, 0xa0, 0x4c, 0xb5, 0xef, 0xa1, 0x43, 0xb4, 0xef, 0xe7, 0x60, 0x98, 0xfd, 0x50, + 0xb3, 0x42, 0x7d, 0xa1, 0x55, 0x0e, 0xc6, 0x12, 0x9f, 0x9d, 0x44, 0x23, 0x05, 0x27, 0xd1, 0xf3, + 0x30, 0x51, 0x75, 0x48, 0x33, 0x0c, 0x96, 0x03, 0xb7, 0x15, 0x7a, 0x41, 0x82, 0xa6, 0x61, 0x80, + 0xed, 0x27, 0x7c, 0xbd, 0x0f, 0x50, 0x0e, 0x78, 0x80, 0x6a, 0xd0, 0xf6, 0xff, 0xb5, 0x60, 0xbc, + 0x4a, 0x7c, 0x92, 0x90, 0xb5, 0x16, 0xf3, 0xb7, 0xa0, 0x15, 0x40, 0x5b, 0x91, 0xd3, 0x20, 0x35, + 0x12, 0x79, 0xa1, 0x5b, 0x27, 0x8d, 0x30, 0x60, 0x27, 0x0c, 0x74, 0x83, 0x3c, 0xb7, 0xbf, 0x37, + 0x8b, 0xae, 0x75, 0x60, 0x71, 0x97, 0x12, 0xc8, 0x85, 0xf1, 0x56, 0x44, 0x0c, 0x07, 0x91, 0x95, + 0xbf, 0xe1, 0xd7, 0xf4, 0x22, 0x5c, 0x27, 0x35, 0x40, 0xd8, 0x64, 0x8a, 0x3e, 0x0d, 0x53, 0x61, + 0xd4, 0xda, 0x76, 0x82, 0x2a, 0x69, 0x91, 0xc0, 0xa5, 0x8a, 0xb8, 0xf0, 0x02, 0x9e, 0xd9, 0xdf, + 0x9b, 0x9d, 0x5a, 0xcb, 0xe0, 0x70, 0x07, 0xb5, 0xfd, 0x0b, 0x25, 0x38, 0x5b, 0x0d, 0x1f, 0x04, + 0x0f, 0x9c, 0xc8, 0x5d, 0xa8, 0xad, 0x72, 0xed, 0x9a, 0x79, 0x55, 0xa5, 0x37, 0xd7, 0xea, 0xe9, + 0xcd, 0xfd, 0x3c, 0x8c, 0x6c, 0x7a, 0xc4, 0x77, 0x31, 0xd9, 0x14, 0xdd, 0xbb, 0x5c, 0xc4, 0x87, + 0xb3, 0x42, 0xcb, 0x48, 0x4f, 0x03, 0x77, 0x26, 0xaf, 0x08, 0x36, 0x58, 0x31, 0x44, 0x6d, 0x98, + 0x92, 0xe6, 0x83, 0xc4, 0x8a, 0xd5, 0xf1, 0x72, 0x31, 0xeb, 0xc4, 0xac, 0x86, 0x8d, 0x07, 0xce, + 0x30, 0xc4, 0x1d, 0x55, 0x50, 0xb3, 0xaf, 0x49, 0xf7, 0x86, 0x01, 0x36, 0x57, 0x98, 0xd9, 0xc7, + 0xec, 0x52, 0x06, 0xb5, 0xff, 0xa9, 0x05, 0x8f, 0x75, 0x8c, 0x96, 0x30, 0xda, 0xdf, 0x92, 0xd6, + 0x32, 0x3f, 0x8e, 0xca, 0x69, 0x65, 0xd7, 0x31, 0x2f, 0x66, 0x39, 0x97, 0x0a, 0x58, 0xce, 0x6b, + 0x70, 0x66, 0xb9, 0xd9, 0x4a, 0x76, 0xab, 0x9e, 0xe9, 0x84, 0x7e, 0x0d, 0x86, 0x9a, 0xc4, 0xf5, + 0xda, 0x4d, 0xf1, 0x59, 0x67, 0xa5, 0x20, 0xbd, 0xc5, 0xa0, 0x07, 0x7b, 0xb3, 0xe3, 0xf5, 0x24, + 0x8c, 0x9c, 0x2d, 0xc2, 0x01, 0x58, 0x90, 0xdb, 0xef, 0x59, 0x30, 0x29, 0x17, 0xd4, 0x82, 0xeb, + 0x46, 0x24, 0x8e, 0xd1, 0x0c, 0x94, 0xbc, 0x96, 0x60, 0x04, 0x82, 0x51, 0x69, 0xb5, 0x86, 0x4b, + 0x5e, 0x0b, 0x7d, 0x0e, 0x2a, 0xfc, 0xec, 0x22, 0x9d, 0x1c, 0x7d, 0x9e, 0x85, 0x30, 0x93, 0x66, + 0x5d, 0xf2, 0xc0, 0x29, 0x3b, 0xa9, 0x56, 0x32, 0x51, 0x5d, 0x36, 0x3d, 0xe9, 0xd7, 0x05, 0x1c, + 0x2b, 0x0a, 0x74, 0x11, 0x46, 0x82, 0xd0, 0xe5, 0xc7, 0x4a, 0x7c, 0xd3, 0x65, 0x53, 0xee, 0xb6, + 0x80, 0x61, 0x85, 0xb5, 0xbf, 0x61, 0xc1, 0x98, 0xec, 0x63, 0x41, 0x0d, 0x97, 0x2e, 0x92, 0x54, + 0xbb, 0x4d, 0x17, 0x09, 0xd5, 0x50, 0x19, 0xc6, 0x50, 0x4c, 0xcb, 0xfd, 0x28, 0xa6, 0xf6, 0xaf, + 0x97, 0x60, 0x42, 0x36, 0xa7, 0xde, 0xde, 0x88, 0x09, 0xdd, 0xb7, 0x2b, 0x0e, 0x1f, 0x7c, 0x22, + 0xe7, 0xd9, 0x8b, 0x79, 0x26, 0x84, 0xf1, 0xcd, 0x52, 0xbd, 0x60, 0x41, 0xf2, 0xc1, 0x29, 0x4b, + 0xb4, 0x03, 0xa7, 0x82, 0x30, 0x61, 0xfb, 0x81, 0xc2, 0x17, 0xf3, 0x01, 0x67, 0xeb, 0x79, 0x5c, + 0xd4, 0x73, 0xea, 0x76, 0x96, 0x1f, 0xee, 0xac, 0x02, 0xad, 0x49, 0xd7, 0x48, 0x99, 0xd5, 0xf5, + 0x7c, 0xb1, 0xba, 0x7a, 0x7b, 0x46, 0xec, 0xdf, 0xb4, 0xa0, 0x22, 0xc9, 0x8e, 0xf3, 0x10, 0xe0, + 0x1e, 0x0c, 0xc7, 0xec, 0xd3, 0xc8, 0x61, 0xba, 0x54, 0xac, 0xe9, 0xfc, 0x7b, 0xa6, 0x9b, 0x1f, + 0xff, 0x1f, 0x63, 0xc9, 0x8d, 0xb9, 0x36, 0x55, 0x07, 0x3e, 0x70, 0xae, 0x4d, 0xd5, 0xb2, 0x5e, + 0xae, 0x4d, 0xd6, 0x7a, 0xcd, 0x78, 0xa5, 0x1a, 0x5c, 0x2b, 0x22, 0x9b, 0xde, 0xc3, 0xac, 0x06, + 0x57, 0x63, 0x50, 0x2c, 0xb0, 0x68, 0x13, 0xc6, 0x1a, 0xd2, 0x27, 0x9a, 0x8a, 0x8e, 0x97, 0x0a, + 0x7a, 0x5a, 0x95, 0x83, 0x9d, 0x07, 0x67, 0x2c, 0x69, 0x9c, 0xb0, 0xc1, 0xd7, 0xfe, 0x79, 0x0b, + 0x86, 0xb8, 0x4b, 0xac, 0x98, 0x5f, 0x51, 0x73, 0xef, 0xa7, 0x7d, 0xbe, 0x4b, 0x81, 0xc2, 0xdb, + 0x8f, 0xee, 0x41, 0x85, 0xfd, 0x60, 0xe6, 0x7d, 0xb9, 0x48, 0x34, 0x09, 0xaf, 0x5f, 0x34, 0x98, + 0x89, 0xbb, 0xbb, 0x92, 0x01, 0x4e, 0x79, 0xd9, 0xdf, 0x2f, 0x53, 0xb1, 0x94, 0x92, 0x1a, 0xfb, + 0xae, 0x75, 0x12, 0xfb, 0x6e, 0xe9, 0xf8, 0xf7, 0xdd, 0x77, 0x60, 0xb2, 0xa1, 0x1d, 0x44, 0xa4, + 0xbb, 0xfd, 0x95, 0x82, 0x9f, 0x5e, 0x3b, 0xbd, 0xe0, 0x2e, 0xa0, 0x25, 0x93, 0x1d, 0xce, 0xf2, + 0x47, 0x04, 0xc6, 0xf8, 0x11, 0xaf, 0xa8, 0x6f, 0x80, 0xd5, 0x37, 0x9f, 0xeb, 0x6d, 0xe2, 0x25, + 0x54, 0x65, 0x6c, 0xa6, 0xd5, 0x35, 0x46, 0xd8, 0x60, 0x6b, 0xff, 0xed, 0x41, 0x18, 0x5c, 0xde, + 0x21, 0x41, 0x72, 0x8c, 0x62, 0xa8, 0x09, 0x13, 0x5e, 0xb0, 0x13, 0xfa, 0x3b, 0xc4, 0xe5, 0xf8, + 0xa3, 0x6d, 0xb9, 0xe7, 0x44, 0x25, 0x13, 0xab, 0x06, 0x33, 0x9c, 0x61, 0x7e, 0x1c, 0xe6, 0xee, + 0x9b, 0x30, 0xc4, 0x67, 0x84, 0xb0, 0x75, 0x73, 0x5c, 0xc3, 0x6c, 0x40, 0xc5, 0xca, 0x49, 0x8d, + 0x72, 0xee, 0x95, 0x16, 0x8c, 0xd0, 0x97, 0x61, 0x62, 0xd3, 0x8b, 0xe2, 0x84, 0x5a, 0xac, 0x71, + 0xe2, 0x34, 0x5b, 0x47, 0x30, 0x74, 0xd5, 0x88, 0xac, 0x18, 0x9c, 0x70, 0x86, 0x33, 0xda, 0x82, + 0x71, 0x6a, 0x67, 0xa5, 0x55, 0x0d, 0xf7, 0x5d, 0x95, 0xf2, 0x73, 0xdd, 0xd4, 0x19, 0x61, 0x93, + 0x2f, 0x15, 0x45, 0x0d, 0x66, 0x97, 0x8d, 0x30, 0x8d, 0x43, 0x89, 0x22, 0x6e, 0x90, 0x71, 0x1c, + 0x95, 0x68, 0xec, 0x3c, 0xbf, 0x62, 0x4a, 0xb4, 0xf4, 0xd4, 0xde, 0xfe, 0x2e, 0xdd, 0x1f, 0xe9, + 0x18, 0x9e, 0xc0, 0xd6, 0x72, 0xdd, 0xdc, 0x5a, 0x9e, 0x2e, 0xf0, 0x65, 0x7b, 0x6c, 0x2b, 0x5f, + 0x82, 0x51, 0xed, 0xc3, 0xa3, 0x79, 0xa8, 0x34, 0xe4, 0xd1, 0xb3, 0x90, 0xde, 0x4a, 0xbd, 0x51, + 0x67, 0xd2, 0x38, 0xa5, 0xa1, 0xe3, 0x42, 0xd5, 0xc2, 0x6c, 0x80, 0x0a, 0x55, 0x1a, 0x31, 0xc3, + 0xd8, 0x2f, 0x03, 0x2c, 0x3f, 0x24, 0x8d, 0x85, 0x06, 0x8b, 0x8b, 0xd0, 0x8e, 0x8a, 0xac, 0xde, + 0x47, 0x45, 0xf6, 0x77, 0x2c, 0x98, 0x58, 0x59, 0x32, 0xf4, 0xec, 0x39, 0x00, 0xae, 0xaf, 0xde, + 0xbb, 0x77, 0x5b, 0x3a, 0x61, 0xb9, 0xa7, 0x4c, 0x41, 0xb1, 0x46, 0x81, 0x1e, 0x87, 0xb2, 0xdf, + 0x0e, 0x84, 0x1a, 0x39, 0xbc, 0xbf, 0x37, 0x5b, 0xbe, 0xd9, 0x0e, 0x30, 0x85, 0x69, 0x91, 0x20, + 0xe5, 0xc2, 0x91, 0x20, 0xf9, 0xb1, 0x90, 0xdf, 0x2a, 0xc3, 0xd4, 0x8a, 0x4f, 0x1e, 0x1a, 0xad, + 0x7e, 0x16, 0x86, 0xdc, 0xc8, 0xdb, 0x21, 0x51, 0x76, 0x93, 0xae, 0x32, 0x28, 0x16, 0xd8, 0xc2, + 0xc1, 0x29, 0x46, 0x60, 0x4e, 0xf9, 0x98, 0x03, 0x73, 0x72, 0xfb, 0x8c, 0x36, 0x61, 0x38, 0xe4, + 0x66, 0xfe, 0xf4, 0x20, 0x9b, 0x8a, 0xaf, 0x1f, 0xde, 0x98, 0xec, 0xf8, 0xcc, 0x09, 0x27, 0x01, + 0x0f, 0x13, 0x50, 0xb2, 0x4c, 0x40, 0xb1, 0x64, 0x3e, 0xf3, 0x09, 0x18, 0xd3, 0x29, 0xfb, 0x8a, + 0x17, 0xf8, 0x49, 0x0b, 0x4e, 0xaf, 0xf8, 0x61, 0xe3, 0x7e, 0x26, 0x7a, 0xe8, 0x55, 0x18, 0xa5, + 0x8b, 0x29, 0x36, 0x42, 0xea, 0x8c, 0xd8, 0x41, 0x81, 0xc2, 0x3a, 0x9d, 0x56, 0xec, 0xce, 0x9d, + 0xd5, 0x6a, 0xb7, 0x90, 0x43, 0x81, 0xc2, 0x3a, 0x9d, 0xfd, 0x5f, 0x2c, 0x78, 0xf2, 0xda, 0xd2, + 0x72, 0x8d, 0x44, 0xb1, 0x17, 0x27, 0x24, 0x48, 0x3a, 0xa2, 0x1e, 0xa9, 0x3e, 0xe7, 0x6a, 0x4d, + 0x49, 0xf5, 0xb9, 0x2a, 0x6b, 0x85, 0xc0, 0x7e, 0x50, 0x42, 0x7f, 0x7f, 0xde, 0x82, 0xd3, 0xd7, + 0xbc, 0x04, 0x93, 0x56, 0x98, 0x0d, 0x54, 0x8c, 0x48, 0x2b, 0x8c, 0xbd, 0x24, 0x8c, 0x76, 0xb3, + 0x81, 0x8a, 0x58, 0x61, 0xb0, 0x46, 0xc5, 0x6b, 0xde, 0xf1, 0x62, 0xda, 0xd2, 0x92, 0x69, 0x7e, + 0x62, 0x01, 0xc7, 0x8a, 0x82, 0x76, 0xcc, 0xf5, 0x22, 0xa6, 0x2a, 0xec, 0x8a, 0x15, 0xac, 0x3a, + 0x56, 0x95, 0x08, 0x9c, 0xd2, 0xd8, 0x7f, 0xdf, 0x82, 0xb3, 0xd7, 0xfc, 0x76, 0x9c, 0x90, 0x68, + 0x33, 0x36, 0x1a, 0xfb, 0x32, 0x54, 0x88, 0x54, 0xbc, 0x45, 0x5b, 0xd5, 0xa6, 0xa1, 0x34, 0x72, + 0x1e, 0x25, 0xa9, 0xe8, 0x0a, 0x04, 0xe5, 0xf5, 0x17, 0x42, 0xf6, 0x1b, 0x25, 0x18, 0xbf, 0xbe, + 0xbe, 0x5e, 0xbb, 0x46, 0x12, 0x21, 0x25, 0xf3, 0x1d, 0x45, 0x35, 0xcd, 0x4a, 0xd6, 0xf6, 0x96, + 0xcc, 0xaa, 0x6b, 0x27, 0x9e, 0x3f, 0xc7, 0x83, 0xd2, 0xe7, 0x56, 0x83, 0x64, 0x2d, 0xaa, 0x27, + 0x91, 0x17, 0x6c, 0x75, 0xb5, 0xaa, 0xa5, 0x24, 0x2f, 0xf7, 0x92, 0xe4, 0xe8, 0x65, 0x18, 0x62, + 0x71, 0xf4, 0x52, 0xf5, 0xf8, 0xb0, 0xd2, 0x12, 0x18, 0xf4, 0x60, 0x6f, 0xb6, 0x72, 0x07, 0xaf, + 0xf2, 0x3f, 0x58, 0x90, 0xa2, 0x2f, 0xc2, 0xe8, 0x76, 0x92, 0xb4, 0xae, 0x13, 0xc7, 0x25, 0x91, + 0x94, 0x12, 0x39, 0x4a, 0x1a, 0x1d, 0x0c, 0x5e, 0x20, 0x5d, 0x58, 0x29, 0x2c, 0xc6, 0x3a, 0x47, + 0xbb, 0x0e, 0x90, 0xe2, 0x1e, 0x91, 0xe5, 0x61, 0xff, 0xd5, 0x12, 0x0c, 0x5f, 0x77, 0x02, 0xd7, + 0x27, 0x11, 0x5a, 0x81, 0x01, 0xf2, 0x90, 0x34, 0x8a, 0xe9, 0x97, 0xe9, 0x56, 0xc7, 0x3d, 0x5d, + 0xf4, 0x3f, 0x66, 0xe5, 0x11, 0x86, 0x61, 0xda, 0xee, 0x6b, 0x2a, 0x92, 0xf5, 0x85, 0xfc, 0x51, + 0x50, 0x53, 0x82, 0xef, 0x93, 0x02, 0x84, 0x25, 0x23, 0xe6, 0x13, 0x6a, 0xb4, 0xea, 0x54, 0xb8, + 0x25, 0xc5, 0x82, 0xd5, 0xd7, 0x97, 0x6a, 0x9c, 0x5c, 0xf0, 0xe5, 0x3e, 0x21, 0x09, 0xc4, 0x29, + 0x3b, 0xfb, 0x2a, 0x9c, 0x61, 0x47, 0x8a, 0x4e, 0xb2, 0x6d, 0xac, 0x99, 0xdc, 0xc9, 0x69, 0xff, + 0xe3, 0x12, 0x9c, 0x5a, 0xad, 0x2f, 0xd5, 0x4d, 0x6f, 0xde, 0x55, 0x18, 0xe3, 0xdb, 0x33, 0x9d, + 0x74, 0x8e, 0x2f, 0xca, 0x2b, 0x37, 0xf8, 0xba, 0x86, 0xc3, 0x06, 0x25, 0x7a, 0x12, 0xca, 0xde, + 0x3b, 0x41, 0x36, 0x66, 0x69, 0xf5, 0xcd, 0xdb, 0x98, 0xc2, 0x29, 0x9a, 0xee, 0xf4, 0x5c, 0xc4, + 0x29, 0xb4, 0xda, 0xed, 0xdf, 0x80, 0x09, 0x2f, 0x6e, 0xc4, 0xde, 0x6a, 0x40, 0xd7, 0xbf, 0xd3, + 0x90, 0xd3, 0x37, 0x55, 0xcd, 0x69, 0x53, 0x15, 0x16, 0x67, 0xa8, 0x35, 0x79, 0x3b, 0x58, 0x58, + 0x5b, 0xc8, 0x0f, 0x69, 0xfd, 0x32, 0x54, 0x54, 0x78, 0x8f, 0x0c, 0xca, 0xb2, 0xba, 0x07, 0x65, + 0x15, 0x10, 0x38, 0xd2, 0xc7, 0x5a, 0xee, 0xea, 0x63, 0xfd, 0x17, 0x16, 0xa4, 0x91, 0x0c, 0x08, + 0x43, 0xa5, 0x15, 0xb2, 0x03, 0x8c, 0x48, 0x9e, 0x14, 0x3e, 0x93, 0x33, 0x13, 0xf9, 0x4a, 0xe0, + 0x73, 0xa5, 0x26, 0xcb, 0xe2, 0x94, 0x0d, 0xba, 0x09, 0xc3, 0xad, 0x88, 0xd4, 0x13, 0x16, 0x17, + 0xdd, 0x07, 0x47, 0x36, 0xab, 0x6b, 0xbc, 0x24, 0x96, 0x2c, 0xec, 0x5f, 0xb5, 0x00, 0x6e, 0x7a, + 0x4d, 0x2f, 0xc1, 0x4e, 0xb0, 0x45, 0x8e, 0xd1, 0xc8, 0xbb, 0x0d, 0x03, 0x71, 0x8b, 0x34, 0x8a, + 0x1d, 0x3d, 0xa5, 0x2d, 0xaa, 0xb7, 0x48, 0x23, 0xfd, 0x0c, 0xf4, 0x1f, 0x66, 0x7c, 0xec, 0x5f, + 0x04, 0x98, 0x48, 0xc9, 0xa8, 0xa2, 0x8d, 0x5e, 0x34, 0x02, 0x81, 0x1f, 0xcf, 0x04, 0x02, 0x57, + 0x18, 0xb5, 0x16, 0xfb, 0x9b, 0x40, 0xb9, 0xe9, 0x3c, 0x14, 0x7a, 0xfd, 0xab, 0x45, 0x1b, 0x44, + 0x6b, 0x9a, 0xbb, 0xe5, 0x3c, 0xe4, 0x6a, 0xd4, 0x0b, 0x72, 0x02, 0xdd, 0x72, 0x1e, 0x1e, 0xf0, + 0x03, 0x26, 0xb6, 0x02, 0xa9, 0x21, 0xf1, 0xf5, 0xff, 0x96, 0xfe, 0x67, 0x42, 0x91, 0x56, 0xc7, + 0x6a, 0xf5, 0x02, 0xe1, 0x2a, 0xec, 0xb3, 0x56, 0x2f, 0xc8, 0xd6, 0xea, 0x05, 0x05, 0x6a, 0xf5, + 0x02, 0xf4, 0xae, 0x05, 0xc3, 0xc2, 0xc3, 0xce, 0x62, 0xc2, 0x46, 0xaf, 0x7c, 0xbc, 0xaf, 0xaa, + 0x85, 0xab, 0x9e, 0x57, 0x3f, 0x2f, 0x75, 0x47, 0x01, 0xcd, 0x6d, 0x82, 0xac, 0x1a, 0x7d, 0xdb, + 0x82, 0x09, 0xf1, 0x1b, 0x93, 0x77, 0xda, 0x24, 0x4e, 0xc4, 0x2e, 0xf5, 0xe9, 0xa3, 0xb4, 0x46, + 0xb0, 0xe0, 0x8d, 0xfa, 0x98, 0x14, 0x31, 0x26, 0x32, 0xb7, 0x6d, 0x99, 0xf6, 0xa0, 0xef, 0x59, + 0x70, 0xa6, 0xe9, 0x3c, 0xe4, 0x35, 0x72, 0x18, 0x76, 0x12, 0x2f, 0x14, 0x71, 0x6f, 0x2b, 0xfd, + 0xce, 0x93, 0x0e, 0x46, 0xbc, 0xb9, 0x9f, 0x94, 0xc7, 0x9e, 0xdd, 0x48, 0x72, 0x1b, 0xdd, 0xb5, + 0x85, 0x33, 0x2e, 0x8c, 0xc8, 0x89, 0xd9, 0x45, 0x6b, 0x5f, 0xd4, 0x37, 0xe3, 0xc3, 0x57, 0xa0, + 0xf4, 0x6f, 0xcd, 0xbd, 0xd9, 0x76, 0x82, 0xc4, 0x4b, 0x76, 0x35, 0x1d, 0x9f, 0xd5, 0x22, 0x26, + 0xe2, 0x31, 0xd6, 0xb2, 0x0d, 0x63, 0xfa, 0x9c, 0x3b, 0xc6, 0x9a, 0x42, 0x38, 0xdd, 0x65, 0x3e, + 0x1d, 0x63, 0x85, 0x6d, 0x78, 0xbc, 0xe7, 0xbc, 0x38, 0xbe, 0x6a, 0xed, 0x7f, 0x63, 0xe9, 0x02, + 0xf3, 0x04, 0x3c, 0x27, 0xb7, 0x4c, 0xcf, 0xc9, 0xc5, 0xa2, 0x2b, 0xa7, 0x87, 0xfb, 0x64, 0x53, + 0x6f, 0x3e, 0xdd, 0x08, 0xd0, 0x3a, 0x0c, 0xf9, 0x14, 0x22, 0x0f, 0x93, 0x2e, 0xf5, 0xb3, 0x36, + 0x53, 0xdd, 0x82, 0xc1, 0x63, 0x2c, 0x78, 0xd9, 0xdf, 0xb3, 0x60, 0xe0, 0x47, 0x78, 0x49, 0xa1, + 0x83, 0xb5, 0xb8, 0x57, 0x3b, 0x87, 0x9d, 0x07, 0xcb, 0x0f, 0x13, 0x12, 0xc4, 0x4c, 0x95, 0xec, + 0x3a, 0x44, 0xbf, 0x50, 0x82, 0x51, 0x5a, 0x95, 0x0c, 0x07, 0x78, 0x1d, 0xc6, 0x7d, 0x67, 0x83, + 0xf8, 0xd2, 0xdb, 0x9b, 0x35, 0xbb, 0x6e, 0xea, 0x48, 0x6c, 0xd2, 0xd2, 0xc2, 0x9b, 0xba, 0x33, + 0x5c, 0xa8, 0x44, 0xaa, 0xb0, 0xe1, 0x29, 0xc7, 0x26, 0x2d, 0xd5, 0xfc, 0x1f, 0x38, 0x49, 0x63, + 0x5b, 0x98, 0x64, 0xaa, 0xb9, 0xf7, 0x28, 0x10, 0x73, 0x1c, 0x5a, 0x80, 0x49, 0x39, 0x63, 0xef, + 0x52, 0x5b, 0x3d, 0x0c, 0x84, 0xba, 0xa8, 0x2e, 0x36, 0x62, 0x13, 0x8d, 0xb3, 0xf4, 0xe8, 0x13, + 0x30, 0x41, 0x07, 0x27, 0x6c, 0x27, 0x32, 0xd8, 0x61, 0x90, 0x05, 0x3b, 0xb0, 0x88, 0xd5, 0x75, + 0x03, 0x83, 0x33, 0x94, 0xf6, 0x17, 0xe1, 0xf4, 0xcd, 0xd0, 0x71, 0x17, 0x1d, 0xdf, 0x09, 0x1a, + 0x24, 0x5a, 0x0d, 0xb6, 0x72, 0xcf, 0x85, 0xf5, 0xb3, 0xdb, 0x52, 0xde, 0xd9, 0xad, 0x1d, 0x01, + 0xd2, 0x2b, 0x10, 0x61, 0x3a, 0x6f, 0xc3, 0xb0, 0xc7, 0xab, 0x12, 0xd3, 0xf6, 0x72, 0x9e, 0x53, + 0xa9, 0xa3, 0x8d, 0x5a, 0xd8, 0x09, 0x07, 0x60, 0xc9, 0x92, 0x5a, 0x12, 0xdd, 0xbc, 0x50, 0xf9, + 0xc6, 0x9a, 0xfd, 0xd7, 0x2d, 0x98, 0xbc, 0x9d, 0xb9, 0x3d, 0xf7, 0x2c, 0x0c, 0xc5, 0x24, 0xea, + 0xe2, 0x52, 0xab, 0x33, 0x28, 0x16, 0xd8, 0x47, 0x6e, 0xa6, 0xff, 0x4c, 0x09, 0x2a, 0x2c, 0xe0, + 0xb3, 0xe5, 0x34, 0x8e, 0x53, 0x29, 0xbd, 0x65, 0x28, 0xa5, 0x39, 0x46, 0xa2, 0x6a, 0x50, 0x2f, + 0x9d, 0x14, 0xdd, 0x51, 0xb7, 0xc9, 0x0a, 0xd9, 0x87, 0x29, 0x43, 0x7e, 0xf3, 0x68, 0xc2, 0xbc, + 0x7c, 0x26, 0x6f, 0x9a, 0xb1, 0xd3, 0x54, 0x45, 0xfb, 0x81, 0x3b, 0x4d, 0x55, 0x2d, 0xeb, 0x21, + 0x94, 0x6a, 0x5a, 0xe3, 0x99, 0xd8, 0xfe, 0x14, 0x0b, 0xdf, 0x73, 0x7c, 0xef, 0x2b, 0x44, 0x5d, + 0xca, 0x9c, 0x15, 0xe1, 0x78, 0x02, 0x7a, 0xc0, 0xe4, 0x8b, 0xf8, 0xc7, 0xef, 0xda, 0xa6, 0x45, + 0xec, 0xeb, 0x30, 0x99, 0x19, 0x3a, 0xf4, 0x2a, 0x0c, 0xb6, 0xb6, 0x9d, 0x98, 0x64, 0x02, 0x43, + 0x06, 0x6b, 0x14, 0x78, 0xb0, 0x37, 0x3b, 0xa1, 0x0a, 0x30, 0x08, 0xe6, 0xd4, 0xf6, 0x9f, 0x5b, + 0x30, 0x70, 0x3b, 0x74, 0x8f, 0x73, 0x8a, 0x5d, 0x37, 0xa6, 0xd8, 0xb3, 0xf9, 0x37, 0xf4, 0x7b, + 0xce, 0xae, 0x5a, 0x66, 0x76, 0x5d, 0x2c, 0xc0, 0xeb, 0xf0, 0x89, 0xd5, 0x84, 0x51, 0x96, 0x01, + 0x40, 0x44, 0xc4, 0xbc, 0x6c, 0xd8, 0x4f, 0xb3, 0x19, 0xfb, 0x69, 0x52, 0x23, 0xd5, 0xac, 0xa8, + 0xe7, 0x60, 0x58, 0x44, 0x60, 0x64, 0x83, 0x16, 0x05, 0x2d, 0x96, 0x78, 0xfb, 0x5f, 0x95, 0xc1, + 0xc8, 0x38, 0x80, 0x7e, 0xc7, 0x82, 0xb9, 0x88, 0x5f, 0xc3, 0x70, 0xab, 0xed, 0xc8, 0x0b, 0xb6, + 0xea, 0x8d, 0x6d, 0xe2, 0xb6, 0x7d, 0x2f, 0xd8, 0x5a, 0xdd, 0x0a, 0x42, 0x05, 0x5e, 0x7e, 0x48, + 0x1a, 0x6d, 0xe6, 0x5c, 0x2d, 0x9c, 0xe8, 0x40, 0x9d, 0x70, 0x5e, 0xd9, 0xdf, 0x9b, 0x9d, 0xc3, + 0x7d, 0xd5, 0x82, 0xfb, 0x6c, 0x15, 0xfa, 0x43, 0x0b, 0xe6, 0xf9, 0x9d, 0xfb, 0xe2, 0x3d, 0x29, + 0x64, 0x77, 0xd6, 0x24, 0xd3, 0x94, 0xdd, 0x3a, 0x89, 0x9a, 0x8b, 0xaf, 0x89, 0x41, 0x9e, 0xaf, + 0xf5, 0x57, 0x2b, 0xee, 0xb7, 0x99, 0xf6, 0xbf, 0x2b, 0xc3, 0x38, 0x1d, 0xcf, 0xf4, 0xbe, 0xed, + 0xab, 0xc6, 0x34, 0x79, 0x2a, 0x33, 0x4d, 0x4e, 0x19, 0xc4, 0x8f, 0xe6, 0xaa, 0x6d, 0x0c, 0xa7, + 0x7c, 0x27, 0x4e, 0xae, 0x13, 0x27, 0x4a, 0x36, 0x88, 0xc3, 0x0e, 0x14, 0xb3, 0x41, 0x0a, 0x05, + 0xce, 0x28, 0x55, 0x54, 0xcf, 0xcd, 0x2c, 0x33, 0xdc, 0xc9, 0x1f, 0xed, 0x00, 0x62, 0x87, 0x97, + 0x91, 0x13, 0xc4, 0xbc, 0x2f, 0x9e, 0x70, 0xc7, 0xf6, 0x57, 0xeb, 0x8c, 0xa8, 0x15, 0xdd, 0xec, + 0xe0, 0x86, 0xbb, 0xd4, 0xa0, 0x1d, 0x4f, 0x0f, 0x16, 0x3d, 0x9e, 0x1e, 0xca, 0x89, 0x16, 0xfe, + 0x29, 0x0b, 0x4e, 0xd3, 0xcf, 0x62, 0x46, 0x96, 0xc6, 0x28, 0x84, 0x49, 0x3a, 0xed, 0x7c, 0x92, + 0x48, 0x98, 0x58, 0x5f, 0x39, 0x9a, 0xb4, 0xc9, 0x27, 0x55, 0xd7, 0x6e, 0x98, 0xcc, 0x70, 0x96, + 0xbb, 0xfd, 0x1d, 0x0b, 0x58, 0xe8, 0xda, 0x09, 0x6c, 0x62, 0xd7, 0xcc, 0x4d, 0xcc, 0xce, 0x97, + 0x18, 0x3d, 0xf6, 0xaf, 0x57, 0x60, 0x8a, 0x62, 0x6b, 0x51, 0xf8, 0x70, 0x57, 0x2a, 0xd6, 0xf9, + 0x7e, 0xd9, 0x77, 0x4b, 0x7c, 0xd9, 0xa8, 0xfb, 0x64, 0xe8, 0xa7, 0x2d, 0x18, 0x69, 0x38, 0x2d, + 0xa7, 0xc1, 0xf3, 0xb5, 0x14, 0xf0, 0xc1, 0x18, 0xe5, 0xe7, 0x96, 0x44, 0x59, 0xee, 0x3f, 0x78, + 0x49, 0x76, 0x5d, 0x82, 0x73, 0x7d, 0x06, 0xaa, 0xf2, 0x19, 0x0f, 0xc6, 0x0d, 0x66, 0xc7, 0x68, + 0x74, 0xfe, 0xb4, 0xc5, 0x45, 0xbe, 0x32, 0x0c, 0x1e, 0xc0, 0xa9, 0x40, 0xfb, 0x4f, 0x85, 0x99, + 0xd4, 0x83, 0xe7, 0x8a, 0x0b, 0x75, 0x26, 0x03, 0xb5, 0x20, 0xbd, 0x0c, 0x43, 0xdc, 0x59, 0x87, + 0xfd, 0x4f, 0x2c, 0x78, 0x4c, 0x27, 0xd4, 0xae, 0xff, 0xe5, 0xf9, 0x84, 0xab, 0x30, 0x12, 0xb6, + 0x48, 0xe4, 0xa4, 0x46, 0xd0, 0x45, 0x39, 0xfa, 0x6b, 0x02, 0x7e, 0xb0, 0x37, 0x7b, 0x46, 0xe7, + 0x2e, 0xe1, 0x58, 0x95, 0x44, 0x36, 0x0c, 0xb1, 0x71, 0x89, 0xc5, 0xc5, 0x4d, 0x96, 0xbd, 0x84, + 0x9d, 0x84, 0xc4, 0x58, 0x60, 0xec, 0xbf, 0x69, 0xf1, 0xc9, 0xa6, 0x37, 0x1d, 0x7d, 0x15, 0xa6, + 0x9a, 0xd4, 0x5e, 0x5a, 0x7e, 0xd8, 0xa2, 0xdb, 0x28, 0x3b, 0x01, 0xb6, 0x8a, 0x6c, 0x1e, 0x3d, + 0xba, 0xbb, 0x38, 0x2d, 0x5a, 0x3f, 0x75, 0x2b, 0xc3, 0x16, 0x77, 0x54, 0x64, 0xff, 0x91, 0x58, + 0xb1, 0x4c, 0x73, 0x7b, 0x0e, 0x86, 0x5b, 0xa1, 0xbb, 0xb4, 0x5a, 0xc5, 0x62, 0xac, 0x94, 0xc8, + 0xa9, 0x71, 0x30, 0x96, 0x78, 0x74, 0x05, 0x80, 0x3c, 0x4c, 0x48, 0x14, 0x38, 0xbe, 0x3a, 0xb9, + 0x55, 0x8a, 0xd2, 0xb2, 0xc2, 0x60, 0x8d, 0x8a, 0x96, 0x69, 0x45, 0xe1, 0x8e, 0xe7, 0xb2, 0x88, + 0xf9, 0xb2, 0x59, 0xa6, 0xa6, 0x30, 0x58, 0xa3, 0xa2, 0x56, 0x6a, 0x3b, 0x88, 0xf9, 0x26, 0xe6, + 0x6c, 0x88, 0xa4, 0x1b, 0x23, 0xa9, 0x95, 0x7a, 0x47, 0x47, 0x62, 0x93, 0xd6, 0xfe, 0xbd, 0x0a, + 0x40, 0xaa, 0x26, 0xa1, 0x77, 0x3b, 0x57, 0xe8, 0xc7, 0x8a, 0xea, 0x58, 0x8f, 0x6e, 0x79, 0xa2, + 0x6f, 0x5a, 0x30, 0xea, 0xf8, 0x7e, 0xd8, 0x70, 0x12, 0xd6, 0xa3, 0x52, 0x51, 0x59, 0x21, 0x5a, + 0xb2, 0x90, 0x96, 0xe5, 0x8d, 0x79, 0x59, 0x1e, 0xec, 0x69, 0x98, 0xdc, 0xf6, 0xe8, 0x4d, 0x40, + 0x2f, 0x49, 0xf5, 0x9a, 0x7f, 0x94, 0x99, 0xac, 0x7a, 0x5d, 0x61, 0x12, 0x52, 0xd3, 0xac, 0xd1, + 0x17, 0x8d, 0xfc, 0x12, 0x03, 0x45, 0xee, 0x0b, 0x1a, 0x8a, 0x43, 0x5e, 0x6a, 0x09, 0xf4, 0x39, + 0x3d, 0x98, 0x78, 0xb0, 0xc8, 0x85, 0x5c, 0x4d, 0x7f, 0xcd, 0x09, 0x24, 0x4e, 0x60, 0xd2, 0x35, + 0xb7, 0x4a, 0x11, 0x7c, 0x75, 0x39, 0xbf, 0x86, 0xcc, 0x1e, 0x9b, 0x6e, 0x8e, 0x19, 0x04, 0xce, + 0x56, 0x81, 0x3e, 0xc7, 0x43, 0xbd, 0x57, 0x83, 0xcd, 0x50, 0x04, 0x60, 0x5d, 0x2a, 0xf0, 0xcd, + 0x77, 0xe3, 0x84, 0x34, 0x69, 0x99, 0x74, 0x37, 0xbc, 0x2d, 0xb8, 0x60, 0xc5, 0x0f, 0xad, 0xc3, + 0x10, 0xbb, 0x98, 0x12, 0x4f, 0x8f, 0x14, 0x71, 0x95, 0x99, 0xf7, 0x31, 0x53, 0x15, 0x84, 0xfd, + 0x8d, 0xb1, 0xe0, 0x85, 0xae, 0xcb, 0x7b, 0xd1, 0xf1, 0x6a, 0x70, 0x27, 0x26, 0xec, 0x5e, 0x74, + 0x65, 0xf1, 0x23, 0xe9, 0x45, 0x67, 0x0e, 0xef, 0x9a, 0x51, 0xcb, 0x28, 0x49, 0x35, 0x11, 0xf1, + 0x5f, 0x26, 0xea, 0x9a, 0x86, 0x22, 0x0d, 0x35, 0xd3, 0x7a, 0xa5, 0x83, 0x7d, 0xd7, 0x64, 0x86, + 0xb3, 0xdc, 0x4f, 0x70, 0x0f, 0x9c, 0xf1, 0x61, 0x2a, 0xbb, 0x24, 0x8f, 0x71, 0xc7, 0xfd, 0xd3, + 0x01, 0x98, 0x30, 0x27, 0x06, 0x9a, 0x87, 0x8a, 0xd0, 0xa6, 0x54, 0xf2, 0x1e, 0x35, 0xff, 0x6f, + 0x49, 0x04, 0x4e, 0x69, 0x58, 0x1a, 0x23, 0x56, 0x5c, 0x0b, 0xbb, 0x49, 0xd3, 0x18, 0x29, 0x0c, + 0xd6, 0xa8, 0xa8, 0xda, 0xba, 0x11, 0x86, 0x89, 0x12, 0xdc, 0x6a, 0xce, 0x2c, 0x32, 0x28, 0x16, + 0x58, 0x2a, 0xb0, 0xef, 0xd3, 0x0e, 0xf9, 0xa6, 0xcb, 0x4f, 0x09, 0xec, 0x1b, 0x3a, 0x12, 0x9b, + 0xb4, 0x74, 0x03, 0x0a, 0x63, 0x36, 0x09, 0x85, 0x72, 0x9c, 0x86, 0x31, 0xd5, 0xf9, 0x45, 0x2d, + 0x89, 0x47, 0x9f, 0x85, 0xc7, 0xd4, 0xbd, 0x2a, 0xcc, 0x5d, 0xa8, 0xb2, 0xc6, 0x21, 0xc3, 0xbe, + 0x7d, 0x6c, 0xa9, 0x3b, 0x19, 0xee, 0x55, 0x1e, 0xbd, 0x01, 0x13, 0x42, 0xb1, 0x95, 0x1c, 0x87, + 0xcd, 0x53, 0xee, 0x1b, 0x06, 0x16, 0x67, 0xa8, 0x51, 0x15, 0xa6, 0x28, 0x84, 0x69, 0x94, 0x92, + 0x03, 0xbf, 0x1f, 0xa6, 0x76, 0xe6, 0x1b, 0x19, 0x3c, 0xee, 0x28, 0x81, 0x16, 0x60, 0x92, 0xeb, + 0x16, 0xd4, 0x8a, 0x63, 0xdf, 0x41, 0x44, 0x4c, 0xaa, 0x45, 0xb0, 0x66, 0xa2, 0x71, 0x96, 0x1e, + 0x5d, 0x85, 0x31, 0x27, 0x6a, 0x6c, 0x7b, 0x09, 0x69, 0x24, 0xed, 0x88, 0x67, 0x1c, 0xd0, 0xc2, + 0x04, 0x16, 0x34, 0x1c, 0x36, 0x28, 0xed, 0xaf, 0xc0, 0xe9, 0x2e, 0x61, 0xd9, 0x74, 0xe2, 0x38, + 0x2d, 0x4f, 0xf6, 0x29, 0x13, 0x90, 0xb4, 0x50, 0x5b, 0x95, 0xbd, 0xd1, 0xa8, 0xe8, 0xec, 0x64, + 0xbe, 0x63, 0x2d, 0xa7, 0x9e, 0x9a, 0x9d, 0x2b, 0x12, 0x81, 0x53, 0x1a, 0xfb, 0xcf, 0x2a, 0xa0, + 0xb9, 0x5a, 0x0a, 0x84, 0xa1, 0x5c, 0x85, 0x31, 0x99, 0x26, 0x52, 0x4b, 0xcf, 0xa6, 0xba, 0x79, + 0x4d, 0xc3, 0x61, 0x83, 0x92, 0xb6, 0x2d, 0x90, 0x8e, 0xa3, 0x6c, 0xf8, 0x93, 0xf2, 0x28, 0xe1, + 0x94, 0x06, 0x5d, 0x82, 0x91, 0x98, 0xf8, 0x9b, 0x37, 0xbd, 0xe0, 0xbe, 0x98, 0xd8, 0x4a, 0x2a, + 0xd7, 0x05, 0x1c, 0x2b, 0x0a, 0xb4, 0x08, 0xe5, 0xb6, 0xe7, 0x8a, 0xa9, 0x2c, 0x55, 0x86, 0xf2, + 0x9d, 0xd5, 0xea, 0xc1, 0xde, 0xec, 0x53, 0xbd, 0xf2, 0x6c, 0x52, 0x63, 0x3a, 0x9e, 0xa3, 0xcb, + 0x8f, 0x16, 0xee, 0xe6, 0x44, 0x1f, 0xea, 0xd3, 0x89, 0x7e, 0x05, 0x40, 0xf4, 0x5a, 0xce, 0xe5, + 0x72, 0xfa, 0xd5, 0xae, 0x29, 0x0c, 0xd6, 0xa8, 0xa8, 0x49, 0xde, 0x88, 0x88, 0x23, 0xad, 0x56, + 0x1e, 0x36, 0x3c, 0x72, 0x74, 0x93, 0x7c, 0x29, 0xcb, 0x0c, 0x77, 0xf2, 0x47, 0x21, 0x9c, 0x72, + 0xe9, 0x42, 0x32, 0x2a, 0xad, 0xf4, 0x1f, 0xab, 0x4c, 0x2b, 0xac, 0x66, 0x19, 0xe1, 0x4e, 0xde, + 0xe8, 0x0b, 0x30, 0x23, 0x81, 0x9d, 0x37, 0x27, 0xd9, 0x72, 0x29, 0x2f, 0x9e, 0xdf, 0xdf, 0x9b, + 0x9d, 0xa9, 0xf6, 0xa4, 0xc2, 0x87, 0x70, 0x40, 0x6f, 0xc3, 0x10, 0x3b, 0x74, 0x89, 0xa7, 0x47, + 0xd9, 0x6e, 0xf7, 0x4a, 0x51, 0xa7, 0xe3, 0x1c, 0x3b, 0xba, 0x11, 0xb1, 0x9c, 0xe9, 0x49, 0x16, + 0x03, 0x62, 0xc1, 0x13, 0xb5, 0x60, 0xd4, 0x09, 0x82, 0x30, 0x71, 0xb8, 0x12, 0x36, 0x56, 0x44, + 0x8f, 0xd4, 0xaa, 0x58, 0x48, 0xcb, 0xf2, 0x7a, 0x54, 0x80, 0x98, 0x86, 0xc1, 0x7a, 0x15, 0xe8, + 0x01, 0x4c, 0x86, 0x0f, 0xa8, 0xc0, 0x94, 0xe7, 0x0e, 0xf1, 0xf4, 0xb8, 0xd9, 0xb1, 0xc3, 0x3f, + 0xcf, 0x9a, 0x51, 0x58, 0x93, 0x64, 0x26, 0x53, 0x9c, 0xad, 0x05, 0xcd, 0x19, 0x3e, 0xe5, 0x89, + 0x34, 0x62, 0x39, 0xf5, 0x29, 0xeb, 0x2e, 0x64, 0x76, 0x3b, 0x97, 0x47, 0x29, 0x32, 0x89, 0x30, + 0x99, 0xb9, 0x9d, 0x9b, 0xa2, 0xb0, 0x4e, 0x37, 0xf3, 0x71, 0x18, 0xd5, 0x06, 0xbe, 0x9f, 0xd0, + 0xd8, 0x99, 0x37, 0x60, 0x2a, 0x3b, 0xa0, 0x7d, 0x85, 0xd6, 0xfe, 0xaf, 0x12, 0x4c, 0x76, 0x39, + 0xd4, 0xb9, 0xef, 0xb1, 0xf0, 0x6e, 0x43, 0xf4, 0xdd, 0xf0, 0x02, 0x17, 0x33, 0x8c, 0x29, 0xc0, + 0x4a, 0x05, 0x04, 0x98, 0x94, 0xa6, 0xe5, 0x9e, 0xd2, 0x54, 0x08, 0xad, 0x81, 0xf7, 0x23, 0xb4, + 0xcc, 0x7d, 0x62, 0xb0, 0xd0, 0x3e, 0xf1, 0x08, 0x04, 0x9d, 0xb1, 0xd5, 0x0c, 0x17, 0xd8, 0x6a, + 0xbe, 0x5d, 0x82, 0xa9, 0x34, 0x8c, 0x58, 0xe4, 0x8e, 0x3d, 0xbe, 0xb3, 0x82, 0x75, 0xe3, 0xac, + 0x20, 0x2f, 0x25, 0x6c, 0xa6, 0x5d, 0x3d, 0xcf, 0x0d, 0xde, 0xce, 0x9c, 0x1b, 0xbc, 0xd2, 0x27, + 0xdf, 0xc3, 0xcf, 0x10, 0x7e, 0xa9, 0x04, 0x67, 0xb3, 0x45, 0x96, 0x7c, 0xc7, 0x6b, 0x1e, 0xe3, + 0x38, 0x7d, 0xd6, 0x18, 0xa7, 0xd7, 0xfa, 0xeb, 0x0f, 0x6b, 0x5c, 0xcf, 0xc1, 0x72, 0x32, 0x83, + 0xf5, 0xf1, 0xa3, 0x30, 0x3f, 0x7c, 0xc4, 0x7e, 0xdf, 0x82, 0xc7, 0xbb, 0x96, 0x3b, 0x01, 0xaf, + 0xe8, 0x5b, 0xa6, 0x57, 0xf4, 0xe5, 0x23, 0xf4, 0xae, 0x87, 0x9b, 0xf4, 0xbf, 0x97, 0x7a, 0xf4, + 0x8a, 0x79, 0x8e, 0xd6, 0x60, 0xd4, 0x69, 0x34, 0x48, 0x1c, 0xdf, 0x0a, 0x5d, 0x95, 0xd7, 0xe7, + 0x45, 0xb6, 0x97, 0xa4, 0xe0, 0x83, 0xbd, 0xd9, 0x99, 0x2c, 0x8b, 0x14, 0x8d, 0x75, 0x0e, 0x66, + 0xde, 0xaf, 0xd2, 0x31, 0xe5, 0xfd, 0xba, 0x02, 0xb0, 0xa3, 0x2c, 0xd6, 0xac, 0x43, 0x4a, 0xb3, + 0x65, 0x35, 0x2a, 0xf4, 0x97, 0x99, 0x06, 0xc8, 0x23, 0x26, 0x06, 0xcc, 0x9b, 0x87, 0x39, 0xdf, + 0x4f, 0x8f, 0xbe, 0xe0, 0x17, 0x1c, 0x95, 0xf3, 0x4e, 0xb1, 0xb4, 0x7f, 0xb9, 0x0c, 0x1f, 0x3e, + 0x64, 0xd2, 0xa1, 0x05, 0xf3, 0x20, 0xf4, 0x85, 0xac, 0xa7, 0x66, 0xa6, 0x6b, 0x61, 0xc3, 0x75, + 0x93, 0xf9, 0x56, 0xa5, 0xf7, 0xfd, 0xad, 0xbe, 0xa5, 0xfb, 0xd5, 0x78, 0xe0, 0xe3, 0xb5, 0x23, + 0x2f, 0xab, 0x1f, 0x4f, 0x3f, 0xf8, 0xd7, 0x2d, 0x78, 0xaa, 0x6b, 0xa7, 0x8c, 0x70, 0x8b, 0x79, + 0xa8, 0x34, 0x28, 0x50, 0xbb, 0x99, 0x92, 0x5e, 0x09, 0x93, 0x08, 0x9c, 0xd2, 0x18, 0x51, 0x15, + 0xa5, 0xdc, 0xa8, 0x8a, 0xdf, 0xb5, 0xe0, 0x4c, 0xb6, 0x11, 0x27, 0x20, 0x73, 0xea, 0xa6, 0xcc, + 0x99, 0xeb, 0xef, 0xd3, 0xf7, 0x10, 0x37, 0xdf, 0x1e, 0x87, 0x73, 0x1d, 0x3b, 0x15, 0x1f, 0xc5, + 0x9f, 0xb0, 0xe0, 0xd4, 0x16, 0xd3, 0xb4, 0xb5, 0xeb, 0x3f, 0xa2, 0x5f, 0x39, 0x77, 0xa6, 0x0e, + 0xbd, 0x35, 0xc4, 0xed, 0x86, 0x0e, 0x12, 0xdc, 0x59, 0x19, 0xfa, 0x86, 0x05, 0x67, 0x9c, 0x07, + 0x71, 0xc7, 0x2b, 0x04, 0x62, 0x1a, 0xbd, 0x91, 0xe3, 0xd4, 0xca, 0x79, 0xbf, 0x60, 0x71, 0x7a, + 0x7f, 0x6f, 0xf6, 0x4c, 0x37, 0x2a, 0xdc, 0xb5, 0x56, 0xfa, 0x7d, 0xb7, 0xc5, 0xf5, 0x82, 0x62, + 0x17, 0xd9, 0xba, 0x5d, 0x46, 0xe0, 0x22, 0x49, 0x62, 0xb0, 0xe2, 0x88, 0xbe, 0x04, 0x95, 0x2d, + 0x79, 0xe3, 0x27, 0x2b, 0xf2, 0x7a, 0x0c, 0x73, 0xb7, 0x0b, 0x42, 0x3c, 0xe4, 0x5d, 0xa1, 0x70, + 0xca, 0x14, 0x5d, 0x87, 0x72, 0xb0, 0x19, 0x8b, 0xbb, 0xb5, 0x79, 0x41, 0x35, 0x66, 0x08, 0x13, + 0xbf, 0x8e, 0x78, 0x7b, 0xa5, 0x8e, 0x29, 0x0b, 0xca, 0x29, 0xda, 0x70, 0x85, 0x37, 0x37, 0x87, + 0x13, 0x5e, 0xac, 0x76, 0x72, 0xc2, 0x8b, 0x55, 0x4c, 0x59, 0xa0, 0x1a, 0x0c, 0xb2, 0xcb, 0x0b, + 0xc2, 0x55, 0x9b, 0x73, 0xf1, 0xba, 0xe3, 0x8a, 0x06, 0x4f, 0x6a, 0xc7, 0xc0, 0x98, 0x33, 0x42, + 0xeb, 0x30, 0xd4, 0x60, 0x89, 0xb7, 0x85, 0x1d, 0x9d, 0x97, 0x36, 0xa0, 0x23, 0x49, 0x37, 0x3f, + 0x52, 0xe2, 0x70, 0x2c, 0x78, 0x31, 0xae, 0xa4, 0xb5, 0xbd, 0x19, 0x0b, 0x43, 0x39, 0x8f, 0x6b, + 0x47, 0x0a, 0x75, 0xc1, 0x95, 0xc1, 0xb1, 0xe0, 0x85, 0xaa, 0x50, 0xda, 0x6c, 0x88, 0x0c, 0x95, + 0x39, 0x2e, 0x5a, 0xf3, 0x6e, 0xe9, 0xe2, 0xd0, 0xfe, 0xde, 0x6c, 0x69, 0x65, 0x09, 0x97, 0x36, + 0x1b, 0xe8, 0x2d, 0x18, 0xde, 0xe4, 0xb7, 0x05, 0x45, 0x36, 0xca, 0xcb, 0x79, 0x57, 0x1a, 0x3b, + 0xae, 0x16, 0xf2, 0x6b, 0x0d, 0x02, 0x81, 0x25, 0x3b, 0x96, 0x22, 0x4c, 0xdd, 0x7f, 0x14, 0xe9, + 0x28, 0xe7, 0xfa, 0xbb, 0x2f, 0x29, 0xec, 0x47, 0x05, 0xc5, 0x1a, 0x47, 0x3a, 0xe7, 0x1d, 0xf9, + 0x76, 0x00, 0x4b, 0x45, 0x99, 0x3b, 0xe7, 0xbb, 0x3e, 0x35, 0xc0, 0xe7, 0xbc, 0x42, 0xe1, 0x94, + 0x29, 0x6a, 0xc3, 0xf8, 0x4e, 0xdc, 0xda, 0x26, 0x72, 0xe9, 0xb3, 0xfc, 0x94, 0xa3, 0x57, 0x3e, + 0x99, 0x93, 0x74, 0x54, 0x14, 0xf1, 0xa2, 0xa4, 0xed, 0xf8, 0x1d, 0x12, 0x8c, 0xe5, 0x64, 0xba, + 0xab, 0xb3, 0xc5, 0x66, 0x2d, 0xf4, 0x93, 0xbc, 0xd3, 0x0e, 0x37, 0x76, 0x13, 0x22, 0xf2, 0x57, + 0xe6, 0x7c, 0x92, 0x37, 0x39, 0x71, 0xe7, 0x27, 0x11, 0x08, 0x2c, 0xd9, 0xa9, 0x21, 0x63, 0xd2, + 0x78, 0xaa, 0xf0, 0x90, 0x75, 0xf4, 0x21, 0x1d, 0x32, 0x26, 0x7d, 0x53, 0xa6, 0x4c, 0xea, 0xb6, + 0xb6, 0xc3, 0x24, 0x0c, 0x32, 0xb2, 0xff, 0x54, 0x11, 0xa9, 0x5b, 0xeb, 0x52, 0xb2, 0x53, 0xea, + 0x76, 0xa3, 0xc2, 0x5d, 0x6b, 0xb5, 0xff, 0x68, 0xb0, 0x73, 0xbb, 0x65, 0xca, 0xf0, 0xdf, 0xe8, + 0x3c, 0x67, 0xfc, 0x74, 0xff, 0xb6, 0xde, 0x23, 0x3c, 0x71, 0xfc, 0x86, 0x05, 0xe7, 0x5a, 0x5d, + 0x37, 0x53, 0xb1, 0x61, 0xf5, 0x6b, 0x32, 0xf2, 0x01, 0x53, 0xc9, 0x59, 0xbb, 0xe3, 0x71, 0x8f, + 0x3a, 0xb3, 0x0a, 0x68, 0xf9, 0x7d, 0x2b, 0xa0, 0xf7, 0x60, 0x84, 0xe9, 0x4c, 0x69, 0x9e, 0x8c, + 0x3e, 0x53, 0x4b, 0xb0, 0xad, 0x6f, 0x49, 0xb0, 0xc0, 0x8a, 0x19, 0x1d, 0xb8, 0x27, 0xb3, 0x9d, + 0xc0, 0x84, 0xa1, 0x45, 0x56, 0x59, 0xee, 0xdb, 0x58, 0x11, 0x23, 0xf1, 0x64, 0xed, 0x30, 0xe2, + 0x83, 0x3c, 0x02, 0x7c, 0x78, 0x65, 0x27, 0xa9, 0xd0, 0xfe, 0x33, 0xab, 0x8b, 0xfe, 0xc5, 0x4d, + 0x90, 0x4f, 0x9a, 0x26, 0xc8, 0xb3, 0x59, 0x13, 0xa4, 0xc3, 0x5d, 0x60, 0x58, 0x1f, 0xc5, 0x93, + 0x20, 0x16, 0x4d, 0xe4, 0x61, 0xfb, 0x70, 0x21, 0x6f, 0x71, 0xb3, 0x88, 0x1e, 0x57, 0x1d, 0x8f, + 0xa5, 0x11, 0x3d, 0xee, 0x6a, 0x15, 0x33, 0x4c, 0xd1, 0xbb, 0xe0, 0xf6, 0xff, 0xb6, 0xa0, 0x5c, + 0x0b, 0xdd, 0x63, 0x74, 0x7f, 0x5c, 0x33, 0xdc, 0x1f, 0xcf, 0xe4, 0xbe, 0x98, 0xd4, 0xd3, 0xd9, + 0xb1, 0x96, 0x71, 0x76, 0x7c, 0x34, 0x9f, 0xd5, 0xe1, 0xae, 0x8d, 0xef, 0x95, 0x41, 0x7f, 0xf3, + 0x09, 0xfd, 0xe7, 0xa3, 0x04, 0x78, 0x96, 0x8b, 0x3d, 0x03, 0x25, 0xea, 0x60, 0xa1, 0x40, 0xf2, + 0xf2, 0xd7, 0x8f, 0x6d, 0x9c, 0xe7, 0x3d, 0xe2, 0x6d, 0x6d, 0x27, 0xc4, 0xcd, 0x76, 0xec, 0xe4, + 0xe2, 0x3c, 0xff, 0x87, 0x05, 0x93, 0x99, 0xda, 0x91, 0xdf, 0xed, 0xfe, 0xc8, 0x11, 0x1d, 0x1a, + 0xa7, 0x72, 0x2f, 0x9c, 0xcc, 0x01, 0x28, 0x3f, 0xb4, 0x74, 0x3b, 0x30, 0x1d, 0x4c, 0x39, 0xaa, + 0x63, 0xac, 0x51, 0xa0, 0x57, 0x61, 0x34, 0x09, 0x5b, 0xa1, 0x1f, 0x6e, 0xed, 0xde, 0x20, 0x32, + 0x3b, 0x81, 0xf2, 0xe1, 0xaf, 0xa7, 0x28, 0xac, 0xd3, 0xd9, 0xdf, 0x2f, 0x43, 0xf6, 0xc5, 0xb0, + 0xff, 0x3f, 0x4f, 0x7f, 0x7c, 0xe6, 0xe9, 0x1f, 0x58, 0x30, 0x45, 0x6b, 0x67, 0x81, 0x1c, 0x32, + 0x1e, 0x53, 0xe5, 0x43, 0xb7, 0x0e, 0xc9, 0x87, 0xfe, 0x2c, 0x95, 0x76, 0x6e, 0xd8, 0x4e, 0x84, + 0xab, 0x44, 0x13, 0x62, 0x14, 0x8a, 0x05, 0x56, 0xd0, 0x91, 0x28, 0x12, 0x17, 0x55, 0x74, 0x3a, + 0x12, 0x45, 0x58, 0x60, 0x65, 0xba, 0xf4, 0x81, 0x1e, 0xe9, 0xd2, 0x59, 0x7e, 0x1f, 0x11, 0x40, + 0x20, 0xd4, 0x00, 0x2d, 0xbf, 0x8f, 0x8c, 0x2c, 0x48, 0x69, 0xec, 0xef, 0x96, 0x61, 0xac, 0x16, + 0xba, 0x69, 0xa0, 0xf5, 0x2b, 0x46, 0xa0, 0xf5, 0x85, 0x4c, 0xa0, 0xf5, 0x94, 0x4e, 0xfb, 0x68, + 0xe2, 0xac, 0x45, 0x1e, 0x28, 0x96, 0xd0, 0xff, 0x88, 0x31, 0xd6, 0x46, 0x1e, 0x28, 0xc5, 0x08, + 0x9b, 0x7c, 0xff, 0x22, 0xc5, 0x56, 0xff, 0xb9, 0x05, 0x13, 0xb5, 0xd0, 0xa5, 0x13, 0xf4, 0x2f, + 0xd2, 0x6c, 0xd4, 0xb3, 0x47, 0x0d, 0x1d, 0x92, 0x3d, 0xea, 0x97, 0x2c, 0x18, 0xae, 0x85, 0xee, + 0x09, 0xb8, 0x11, 0x57, 0x4c, 0x37, 0xe2, 0x53, 0xb9, 0x92, 0xb7, 0x87, 0xe7, 0xf0, 0x57, 0xcb, + 0x30, 0x4e, 0x5b, 0x1c, 0x6e, 0xc9, 0xef, 0x65, 0x8c, 0x8d, 0x55, 0x60, 0x6c, 0xa8, 0x2a, 0x18, + 0xfa, 0x7e, 0xf8, 0x20, 0xfb, 0xed, 0x56, 0x18, 0x14, 0x0b, 0x2c, 0xba, 0x04, 0x23, 0xad, 0x88, + 0xec, 0x78, 0x61, 0x3b, 0xce, 0x5e, 0x7a, 0xab, 0x09, 0x38, 0x56, 0x14, 0xe8, 0x15, 0x18, 0x8b, + 0xbd, 0xa0, 0x41, 0x64, 0x78, 0xc1, 0x00, 0x0b, 0x2f, 0xe0, 0x09, 0xfa, 0x34, 0x38, 0x36, 0xa8, + 0xd0, 0x3d, 0xa8, 0xb0, 0xff, 0x6c, 0x05, 0xf5, 0x9f, 0x69, 0x9d, 0x67, 0xa7, 0x92, 0x0c, 0x70, + 0xca, 0x0b, 0x5d, 0x01, 0x48, 0x64, 0x20, 0x44, 0x2c, 0xb2, 0x6c, 0x28, 0xbd, 0x54, 0x85, 0x48, + 0xc4, 0x58, 0xa3, 0x42, 0x2f, 0x40, 0x25, 0x71, 0x3c, 0xff, 0xa6, 0x17, 0x90, 0x58, 0x04, 0x92, + 0x88, 0x44, 0xb8, 0x02, 0x88, 0x53, 0x3c, 0xdd, 0xef, 0xd9, 0x95, 0x5b, 0xfe, 0x8a, 0xc3, 0x08, + 0xa3, 0x66, 0xfb, 0xfd, 0x4d, 0x05, 0xc5, 0x1a, 0x85, 0xfd, 0x32, 0xdb, 0xb7, 0xfb, 0x8c, 0xc3, + 0xff, 0x61, 0x09, 0x50, 0x8d, 0x05, 0x5c, 0x18, 0x0f, 0x68, 0x6c, 0xc3, 0x44, 0x4c, 0x6e, 0x7a, + 0x41, 0xfb, 0xa1, 0x60, 0x55, 0xec, 0xe2, 0x43, 0x7d, 0x59, 0x2f, 0xc3, 0x6f, 0x99, 0x9a, 0x30, + 0x9c, 0xe1, 0x4b, 0x87, 0x24, 0x6a, 0x07, 0x0b, 0xf1, 0x9d, 0x98, 0x44, 0xe2, 0xa9, 0x0a, 0x36, + 0x24, 0x58, 0x02, 0x71, 0x8a, 0xa7, 0x53, 0x80, 0xfd, 0xb9, 0x1d, 0x06, 0x38, 0x0c, 0x13, 0x39, + 0x69, 0x58, 0xea, 0x72, 0x0d, 0x8e, 0x0d, 0x2a, 0xb4, 0x02, 0x28, 0x6e, 0xb7, 0x5a, 0x3e, 0x3b, + 0xd3, 0x72, 0xfc, 0x6b, 0x51, 0xd8, 0x6e, 0xf1, 0x98, 0x5b, 0x91, 0xf5, 0xbb, 0xde, 0x81, 0xc5, + 0x5d, 0x4a, 0xd0, 0x25, 0xbf, 0x19, 0xb3, 0xdf, 0xe2, 0x16, 0x2d, 0xf7, 0xad, 0xd5, 0x19, 0x08, + 0x4b, 0x9c, 0xfd, 0x35, 0xb6, 0x4d, 0xb1, 0x37, 0x04, 0x92, 0x76, 0x44, 0x50, 0x13, 0xc6, 0x5b, + 0x6c, 0x2b, 0x4a, 0xa2, 0xd0, 0xf7, 0x89, 0xd4, 0x12, 0x8f, 0x16, 0xf2, 0xc1, 0xb3, 0x86, 0xeb, + 0xec, 0xb0, 0xc9, 0xdd, 0xfe, 0x87, 0xa3, 0x4c, 0xe2, 0x88, 0x63, 0xc5, 0x61, 0x11, 0xd8, 0x29, + 0xf4, 0xb1, 0x8f, 0x14, 0x79, 0x93, 0x27, 0x95, 0xe6, 0x22, 0x4c, 0x14, 0x4b, 0x2e, 0xe8, 0xf3, + 0x2c, 0x6c, 0x99, 0x2f, 0xf3, 0xe2, 0x0f, 0x65, 0x71, 0x7a, 0x23, 0x64, 0x59, 0xb0, 0xc0, 0x1a, + 0x3b, 0x74, 0x13, 0xc6, 0x45, 0xca, 0x79, 0xe1, 0x1c, 0x28, 0x1b, 0x06, 0xf2, 0x38, 0xd6, 0x91, + 0x07, 0x59, 0x00, 0x36, 0x0b, 0xa3, 0x2d, 0x78, 0x52, 0x7b, 0xdc, 0xa6, 0x4b, 0x78, 0x12, 0x97, + 0x1f, 0x4f, 0xed, 0xef, 0xcd, 0x3e, 0xb9, 0x7e, 0x18, 0x21, 0x3e, 0x9c, 0x0f, 0x5a, 0x83, 0xb3, + 0x4e, 0x23, 0xf1, 0x76, 0x48, 0x95, 0x38, 0xae, 0xef, 0x05, 0xc4, 0xbc, 0x6a, 0xfd, 0xf8, 0xfe, + 0xde, 0xec, 0xd9, 0x85, 0x6e, 0x04, 0xb8, 0x7b, 0x39, 0xf4, 0x49, 0xa8, 0xb8, 0x41, 0x2c, 0xc6, + 0x60, 0xc8, 0x78, 0xc7, 0xa7, 0x52, 0xbd, 0x5d, 0x57, 0xfd, 0x4f, 0xff, 0xe0, 0xb4, 0x00, 0x7a, + 0x87, 0x3f, 0x7d, 0xac, 0x6c, 0x12, 0xfe, 0x7e, 0xd4, 0x6b, 0x85, 0xac, 0x60, 0xe3, 0x4a, 0x04, + 0xf7, 0x9b, 0xa9, 0x30, 0x40, 0xe3, 0xb6, 0x84, 0x51, 0x05, 0xfa, 0x0c, 0xa0, 0x98, 0x44, 0x3b, + 0x5e, 0x83, 0x2c, 0x34, 0x58, 0x8e, 0x4a, 0x76, 0x40, 0x37, 0x62, 0xc4, 0xc2, 0xa3, 0x7a, 0x07, + 0x05, 0xee, 0x52, 0x0a, 0x5d, 0xa7, 0x92, 0x47, 0x87, 0x8a, 0xa8, 0x4d, 0xa9, 0xde, 0x4d, 0x57, + 0x49, 0x2b, 0x22, 0x0d, 0x27, 0x21, 0xae, 0xc9, 0x11, 0x67, 0xca, 0xd1, 0xdd, 0x45, 0xa5, 0x06, + 0x07, 0x33, 0xd6, 0xb0, 0x33, 0x3d, 0x38, 0xb5, 0x96, 0xb6, 0xc3, 0x38, 0xb9, 0x4d, 0x92, 0x07, + 0x61, 0x74, 0x9f, 0xf9, 0xdb, 0x47, 0xb4, 0x94, 0x5f, 0x29, 0x0a, 0xeb, 0x74, 0x54, 0x13, 0x62, + 0x07, 0x3d, 0xab, 0x55, 0xe6, 0x45, 0x1f, 0x49, 0xd7, 0xce, 0x75, 0x0e, 0xc6, 0x12, 0x2f, 0x49, + 0x57, 0x6b, 0x4b, 0xcc, 0x23, 0x9e, 0x21, 0x5d, 0xad, 0x2d, 0x61, 0x89, 0x47, 0x61, 0xe7, 0x6b, + 0x49, 0x13, 0x45, 0x4e, 0x27, 0x3a, 0x25, 0x79, 0xc1, 0x07, 0x93, 0x1e, 0xc2, 0x94, 0x7a, 0xb1, + 0x89, 0xe7, 0x62, 0x8c, 0xa7, 0x27, 0x8b, 0x3c, 0xbc, 0xdc, 0x35, 0xa5, 0xa3, 0x0a, 0xd3, 0x5d, + 0xcd, 0xf0, 0xc4, 0x1d, 0xb5, 0x18, 0x29, 0x03, 0xa6, 0x72, 0xd3, 0xbd, 0xcf, 0x43, 0x25, 0x6e, + 0x6f, 0xb8, 0x61, 0xd3, 0xf1, 0x02, 0xe6, 0xb6, 0xd6, 0x9f, 0x11, 0x96, 0x08, 0x9c, 0xd2, 0xa0, + 0x1a, 0x8c, 0x38, 0xf2, 0x05, 0x6d, 0x54, 0xe4, 0x8a, 0xb1, 0x7a, 0x3a, 0x9b, 0xf9, 0x34, 0xd5, + 0x9b, 0xd9, 0x8a, 0xcb, 0xcc, 0xa7, 0xe0, 0x54, 0xc7, 0x2a, 0xe9, 0x2b, 0x52, 0xed, 0x3f, 0x0e, + 0x40, 0x45, 0xb9, 0x8a, 0xd0, 0xbc, 0xe9, 0x0d, 0x7c, 0x3c, 0xeb, 0x0d, 0x1c, 0xa1, 0x7b, 0xba, + 0xee, 0x00, 0xfc, 0x42, 0x97, 0x97, 0x49, 0x9f, 0xcf, 0x9d, 0x16, 0xc5, 0x2f, 0x8e, 0xf4, 0xf1, + 0x6e, 0x6b, 0x6a, 0x2e, 0x0c, 0x1c, 0x6a, 0x2e, 0x14, 0x7c, 0x84, 0x89, 0x1a, 0x06, 0xad, 0xd0, + 0x5d, 0xad, 0x65, 0xdf, 0x18, 0xa9, 0x51, 0x20, 0xe6, 0x38, 0xa6, 0xd0, 0x51, 0x31, 0xcf, 0x14, + 0xba, 0xe1, 0x23, 0x2a, 0x74, 0x92, 0x01, 0x4e, 0x79, 0xa1, 0x1d, 0x38, 0xd5, 0x30, 0x9f, 0x8c, + 0x51, 0xd7, 0x41, 0x5e, 0xec, 0xe3, 0xc9, 0x96, 0xb6, 0x96, 0x1e, 0x7f, 0x29, 0xcb, 0x0f, 0x77, + 0x56, 0x81, 0x5e, 0x87, 0x91, 0x77, 0xc2, 0x78, 0xc9, 0x77, 0xe2, 0x58, 0xc8, 0x3a, 0x19, 0x7a, + 0x3f, 0xf2, 0xe6, 0x5a, 0x9d, 0xc1, 0x0f, 0xf8, 0x5b, 0xf1, 0xf2, 0x2f, 0x56, 0x05, 0xec, 0xef, + 0x73, 0xb7, 0x94, 0x30, 0x54, 0x49, 0xdc, 0xf6, 0x8f, 0x33, 0x13, 0xf5, 0x9a, 0x61, 0x3b, 0x3f, + 0x02, 0x87, 0xe8, 0x6f, 0x59, 0xcc, 0x21, 0xba, 0x4e, 0x9a, 0x2d, 0xdf, 0x49, 0x8e, 0x33, 0x76, + 0xf0, 0xf3, 0x30, 0x92, 0x88, 0x5a, 0x8a, 0xa5, 0xcf, 0xd6, 0x9a, 0xc5, 0x1c, 0xc4, 0x4a, 0x2c, + 0x49, 0x28, 0x56, 0x0c, 0xed, 0x7f, 0xcb, 0xbf, 0x82, 0xc4, 0x9c, 0x80, 0xb5, 0x77, 0xdb, 0xb4, + 0xf6, 0x9e, 0x2b, 0xdc, 0x97, 0x1e, 0x56, 0xdf, 0x2f, 0x9b, 0x3d, 0x60, 0xda, 0xe3, 0x07, 0xdf, + 0x43, 0x6f, 0xaf, 0x81, 0xf9, 0x84, 0x0e, 0x7a, 0x83, 0x47, 0xdf, 0x72, 0x61, 0x7a, 0xa9, 0xef, + 0xc8, 0x5b, 0xfb, 0x57, 0x4a, 0x70, 0x86, 0xfb, 0xe8, 0x16, 0x76, 0x42, 0xcf, 0xad, 0x85, 0xae, + 0x88, 0x45, 0x76, 0x61, 0xac, 0xa5, 0x69, 0xf5, 0xc5, 0x12, 0x2d, 0xe8, 0x76, 0x40, 0xaa, 0x49, + 0xe9, 0x50, 0x6c, 0x70, 0xa5, 0xb5, 0x90, 0x1d, 0xaf, 0xa1, 0x5c, 0x3e, 0xa5, 0xbe, 0xe5, 0x9b, + 0xaa, 0x65, 0x59, 0xe3, 0x83, 0x0d, 0xae, 0xc7, 0x90, 0xe1, 0xdd, 0xfe, 0x39, 0x0b, 0x1e, 0xeb, + 0x91, 0x8c, 0x81, 0x56, 0xf7, 0x80, 0xf9, 0x45, 0xc5, 0x1b, 0x4d, 0xaa, 0x3a, 0xee, 0x2d, 0xc5, + 0x02, 0x8b, 0x36, 0x00, 0xb8, 0xb7, 0x93, 0xbd, 0x86, 0x5b, 0x2a, 0x12, 0x94, 0xd0, 0x71, 0xe9, + 0x59, 0xbb, 0x0f, 0xab, 0xde, 0xbf, 0xd5, 0xb8, 0xda, 0xdf, 0x29, 0xc3, 0x20, 0x7f, 0x90, 0xb3, + 0x06, 0xc3, 0xdb, 0x3c, 0xf5, 0x63, 0x7f, 0x99, 0x27, 0x53, 0xad, 0x8d, 0x03, 0xb0, 0x64, 0x83, + 0x6e, 0xc1, 0x69, 0xaa, 0x22, 0x78, 0x8e, 0x5f, 0x25, 0xbe, 0xb3, 0x2b, 0xcd, 0x00, 0x9e, 0xf6, + 0x5b, 0x66, 0xa8, 0x3d, 0xbd, 0xda, 0x49, 0x82, 0xbb, 0x95, 0x43, 0x6f, 0x74, 0xe4, 0x6e, 0xe2, + 0x29, 0x35, 0xd5, 0x35, 0xaa, 0xc3, 0xf3, 0x37, 0xa1, 0xd7, 0x61, 0xbc, 0xd5, 0x61, 0xf0, 0x68, + 0x2f, 0x2e, 0x9a, 0x46, 0x8e, 0x49, 0x8b, 0xaa, 0x30, 0x15, 0xb7, 0xd9, 0x11, 0xf1, 0xfa, 0x76, + 0x44, 0xe2, 0xed, 0xd0, 0x77, 0xc5, 0x63, 0x61, 0x4a, 0xb9, 0xab, 0x67, 0xf0, 0xb8, 0xa3, 0x04, + 0xe5, 0xb2, 0xe9, 0x78, 0x7e, 0x3b, 0x22, 0x29, 0x97, 0x21, 0x93, 0xcb, 0x4a, 0x06, 0x8f, 0x3b, + 0x4a, 0xd8, 0x7f, 0x62, 0xc1, 0xe9, 0x2e, 0x71, 0x14, 0x3c, 0xba, 0x6f, 0xcb, 0x8b, 0x13, 0x95, + 0xdc, 0x59, 0x8b, 0xee, 0xe3, 0x70, 0xac, 0x28, 0xe8, 0x2c, 0xe4, 0x56, 0x6c, 0xf6, 0x7c, 0x52, + 0x9c, 0x14, 0x0b, 0x6c, 0x7f, 0x99, 0x98, 0xd0, 0x05, 0x18, 0x68, 0xc7, 0x44, 0xbe, 0x5c, 0xaf, + 0x44, 0x14, 0x73, 0x5c, 0x30, 0x0c, 0x55, 0x6a, 0xb6, 0x94, 0xcf, 0x40, 0x53, 0x6a, 0xb8, 0xd7, + 0x80, 0xe3, 0xec, 0x6f, 0x95, 0x61, 0x32, 0x13, 0x4f, 0x45, 0x1b, 0xd2, 0x0c, 0x03, 0x2f, 0x09, + 0x55, 0x16, 0x20, 0xfe, 0xec, 0x09, 0x69, 0x6d, 0xdf, 0x12, 0x70, 0xac, 0x28, 0xd0, 0xb3, 0xe6, + 0xeb, 0xc8, 0x69, 0x9b, 0x17, 0xab, 0xc6, 0x13, 0x6d, 0x45, 0x13, 0xce, 0x3f, 0x0d, 0x03, 0xad, + 0x50, 0x3d, 0xb7, 0xa9, 0x26, 0x3d, 0x5e, 0xac, 0xd6, 0xc2, 0xd0, 0xc7, 0x0c, 0x89, 0x9e, 0x11, + 0xbd, 0xcf, 0x38, 0x4c, 0xb1, 0xe3, 0x86, 0xb1, 0x36, 0x04, 0xcf, 0xc1, 0xf0, 0x7d, 0xb2, 0x1b, + 0x79, 0xc1, 0x56, 0xd6, 0x5d, 0x7c, 0x83, 0x83, 0xb1, 0xc4, 0x9b, 0x49, 0xe5, 0x87, 0x8f, 0x39, + 0xa9, 0xfc, 0x48, 0x6e, 0x48, 0xe8, 0x2f, 0x5a, 0x30, 0xc9, 0x52, 0xe2, 0x89, 0x1b, 0xaa, 0x5e, + 0x18, 0x1c, 0xe3, 0xb6, 0xf8, 0x34, 0x0c, 0x46, 0xb4, 0xb2, 0x6c, 0x3e, 0x68, 0xd6, 0x02, 0xcc, + 0x71, 0xe8, 0x09, 0xf1, 0x02, 0x3e, 0xfd, 0x7c, 0x63, 0x3c, 0xbf, 0x6e, 0xfa, 0x94, 0x3d, 0xbb, + 0x6e, 0x80, 0x49, 0xcb, 0xf7, 0x78, 0x63, 0x53, 0xbf, 0xd0, 0x07, 0xe5, 0xba, 0x41, 0xd7, 0xc6, + 0x3d, 0xaa, 0xeb, 0x06, 0xdd, 0x99, 0x1f, 0xae, 0x82, 0xfe, 0xcf, 0x12, 0x9c, 0xef, 0x5a, 0x2e, + 0x3d, 0x68, 0x5a, 0x31, 0x0e, 0x9a, 0xae, 0x64, 0x0e, 0x9a, 0xec, 0xc3, 0x4b, 0x3f, 0x9a, 0xa3, + 0xa7, 0xee, 0x27, 0x42, 0xe5, 0x13, 0x3c, 0x11, 0x1a, 0x28, 0xaa, 0x2a, 0x0c, 0xe6, 0xa8, 0x0a, + 0xbf, 0x6f, 0xc1, 0xe3, 0x5d, 0x87, 0xec, 0x03, 0x77, 0xbf, 0xa3, 0x6b, 0x2b, 0x7b, 0x28, 0xd0, + 0x7f, 0xa7, 0xdc, 0xa3, 0x57, 0x4c, 0x95, 0xbe, 0x48, 0xa5, 0x0e, 0x43, 0xc6, 0x42, 0x09, 0x1a, + 0xe3, 0x12, 0x87, 0xc3, 0xb0, 0xc2, 0xa2, 0x58, 0xbb, 0x1f, 0xc1, 0x1b, 0xb9, 0x7c, 0xc4, 0x05, + 0x35, 0x67, 0x3a, 0xf2, 0xf4, 0x8b, 0xb6, 0x99, 0x5b, 0x13, 0xe8, 0x9e, 0x66, 0x1c, 0x95, 0x8f, + 0x62, 0x1c, 0x8d, 0x75, 0x37, 0x8c, 0xd0, 0x02, 0x4c, 0x36, 0xbd, 0x80, 0xbd, 0x07, 0x67, 0x6a, + 0x21, 0xea, 0x52, 0xda, 0x2d, 0x13, 0x8d, 0xb3, 0xf4, 0x33, 0xaf, 0xc3, 0xf8, 0xd1, 0x7d, 0x2d, + 0xef, 0x95, 0xe1, 0xc3, 0x87, 0x08, 0x05, 0xbe, 0x1b, 0x18, 0xdf, 0x45, 0xdb, 0x0d, 0x3a, 0xbe, + 0x4d, 0x0d, 0xce, 0x6c, 0xb6, 0x7d, 0x7f, 0x97, 0x85, 0x69, 0x10, 0x57, 0x52, 0x08, 0x0d, 0x4f, + 0xbd, 0xd4, 0xba, 0xd2, 0x85, 0x06, 0x77, 0x2d, 0x89, 0x3e, 0x03, 0x28, 0xdc, 0x60, 0x49, 0x22, + 0xdd, 0xf4, 0x22, 0x31, 0xfb, 0x04, 0xe5, 0x74, 0xa9, 0xae, 0x75, 0x50, 0xe0, 0x2e, 0xa5, 0xa8, + 0xbe, 0xc7, 0x1e, 0x79, 0x55, 0xcd, 0xca, 0xe8, 0x7b, 0x58, 0x47, 0x62, 0x93, 0x16, 0x5d, 0x83, + 0x53, 0xce, 0x8e, 0xe3, 0xf1, 0x34, 0x30, 0x92, 0x01, 0x57, 0xf8, 0x94, 0x37, 0x63, 0x21, 0x4b, + 0x80, 0x3b, 0xcb, 0xa0, 0x96, 0xe1, 0x9e, 0xe2, 0x49, 0xa1, 0x3f, 0x79, 0x84, 0x19, 0x5c, 0xd8, + 0x61, 0x65, 0xff, 0xb1, 0x45, 0xb7, 0xbc, 0x2e, 0xcf, 0x93, 0x19, 0x6f, 0x8e, 0x6b, 0x77, 0x46, + 0x3a, 0xdf, 0x1c, 0x67, 0xbe, 0x60, 0x93, 0x96, 0x4f, 0x8d, 0x38, 0x8d, 0xf2, 0x34, 0xb4, 0x4b, + 0x71, 0x55, 0x4a, 0x51, 0xa0, 0x7b, 0x30, 0xec, 0x7a, 0x3b, 0x5e, 0x1c, 0x46, 0x05, 0x5e, 0xf9, + 0xed, 0x88, 0x1c, 0x4c, 0xa5, 0x65, 0x95, 0x33, 0xc1, 0x92, 0x9b, 0xfd, 0x77, 0x4b, 0x30, 0x2e, + 0xeb, 0x7b, 0xb3, 0x1d, 0x32, 0x19, 0x76, 0x5c, 0x1b, 0xf9, 0x9b, 0xc6, 0x46, 0x3e, 0x5f, 0xec, + 0xbe, 0x18, 0x6b, 0x54, 0xcf, 0x0d, 0xfc, 0xb3, 0x99, 0x0d, 0xfc, 0x72, 0x3f, 0x4c, 0x0f, 0xdf, + 0xb8, 0xff, 0xbd, 0x05, 0xa7, 0x0c, 0xfa, 0x13, 0xd8, 0x3f, 0x6a, 0xe6, 0xfe, 0xf1, 0x42, 0x1f, + 0xbd, 0xe9, 0xb1, 0x6f, 0x7c, 0xa7, 0x94, 0xe9, 0x05, 0xdb, 0x2f, 0xbe, 0x0a, 0x03, 0xdb, 0x4e, + 0xe4, 0x16, 0xcb, 0x83, 0xd6, 0x51, 0x7c, 0xee, 0xba, 0x13, 0xb9, 0x5c, 0xea, 0x5f, 0x52, 0x8f, + 0xa7, 0x38, 0x91, 0x9b, 0x1b, 0xf2, 0xcc, 0x2a, 0x45, 0x57, 0x61, 0x28, 0x6e, 0x84, 0x2d, 0x15, + 0x64, 0x76, 0x81, 0x3f, 0xac, 0x42, 0x21, 0x07, 0x7b, 0xb3, 0xc8, 0xac, 0x8e, 0x82, 0xb1, 0xa0, + 0x9f, 0x21, 0x50, 0x51, 0x55, 0x1f, 0x63, 0x70, 0xed, 0x7b, 0x65, 0x38, 0xdd, 0x65, 0xa6, 0xa0, + 0xaf, 0x19, 0xa3, 0xf6, 0x7a, 0xdf, 0x53, 0xed, 0x7d, 0x8e, 0xdb, 0xd7, 0x98, 0x35, 0xe4, 0x8a, + 0xb9, 0x71, 0x84, 0xea, 0xef, 0xc4, 0x24, 0x5b, 0x3d, 0x05, 0xe5, 0x57, 0x4f, 0xab, 0x3d, 0xa1, + 0xc1, 0xa7, 0xd5, 0xa8, 0x76, 0x1e, 0xe3, 0x37, 0x7e, 0x77, 0x00, 0xce, 0x74, 0xbb, 0x92, 0x8a, + 0x7e, 0xca, 0xca, 0xa4, 0x35, 0x7f, 0xa3, 0xff, 0x7b, 0xad, 0x3c, 0xd7, 0xb9, 0x48, 0xdb, 0x30, + 0x67, 0x26, 0x3a, 0xcf, 0x1d, 0x6d, 0x51, 0x3b, 0xbb, 0xa6, 0x10, 0xf1, 0x04, 0xf5, 0x52, 0x1e, + 0x7c, 0xfa, 0x08, 0x4d, 0x11, 0x39, 0xee, 0xe3, 0xcc, 0x35, 0x05, 0x09, 0xce, 0xbf, 0xa6, 0x20, + 0xdb, 0x30, 0xb3, 0x05, 0xa3, 0x5a, 0xbf, 0x8e, 0x71, 0x0a, 0x78, 0x74, 0x4b, 0xd2, 0x5a, 0x7d, + 0x8c, 0xd3, 0xe0, 0x67, 0x2d, 0xc8, 0x44, 0x90, 0x28, 0x97, 0x8b, 0xd5, 0xd3, 0xe5, 0x72, 0x01, + 0x06, 0xa2, 0xd0, 0x27, 0xd9, 0x74, 0xdb, 0x38, 0xf4, 0x09, 0x66, 0x18, 0xf5, 0x86, 0x62, 0xb9, + 0xd7, 0x1b, 0x8a, 0xd4, 0x16, 0xf7, 0xc9, 0x0e, 0x91, 0x0e, 0x10, 0x25, 0xbc, 0x6f, 0x52, 0x20, + 0xe6, 0x38, 0xfb, 0x77, 0xca, 0x30, 0xc4, 0xbd, 0x0c, 0xc7, 0xb8, 0x2b, 0xd7, 0x84, 0xc1, 0x5f, + 0xe8, 0x7a, 0x28, 0x6f, 0xcd, 0x5c, 0xd5, 0x49, 0x1c, 0x3e, 0xa1, 0x54, 0xdf, 0x52, 0x27, 0x01, + 0x9a, 0x33, 0x7a, 0x3f, 0x93, 0xb1, 0x67, 0x81, 0xf3, 0xd0, 0xc6, 0x62, 0x1b, 0x20, 0x66, 0xaf, + 0x75, 0x51, 0x1e, 0x22, 0x59, 0xdd, 0x2b, 0x85, 0xda, 0x51, 0x57, 0xc5, 0x78, 0x6b, 0xd2, 0x2c, + 0x59, 0x0a, 0x81, 0x35, 0xde, 0x33, 0xaf, 0x41, 0x45, 0x11, 0xe7, 0x29, 0xfa, 0x63, 0xfa, 0x94, + 0xfc, 0x4b, 0x30, 0x99, 0xa9, 0xab, 0x2f, 0x3b, 0xe1, 0xd7, 0x2d, 0x38, 0xd5, 0xf1, 0xf8, 0x2b, + 0x7a, 0xd7, 0x82, 0x33, 0x7e, 0x17, 0xf7, 0x92, 0xf8, 0xc0, 0x47, 0x71, 0x4c, 0x29, 0x23, 0xa1, + 0x1b, 0x16, 0x77, 0xad, 0x4d, 0xa6, 0xdf, 0x2c, 0x75, 0x4f, 0xbf, 0x69, 0xff, 0x8a, 0x05, 0xe2, + 0x93, 0x9d, 0x80, 0x02, 0xb4, 0x6a, 0x2a, 0x40, 0x1f, 0x29, 0x32, 0x0b, 0x7a, 0x68, 0x3e, 0xbf, + 0x6b, 0x01, 0xe2, 0x04, 0xd9, 0x47, 0xfb, 0xb8, 0xb7, 0x4e, 0xd3, 0xd8, 0xd3, 0x69, 0xa3, 0x30, + 0x58, 0xa3, 0xea, 0x33, 0x23, 0xbb, 0x7a, 0xec, 0xaa, 0xd8, 0x8b, 0xfc, 0xe5, 0x02, 0x2f, 0xf2, + 0xff, 0x56, 0x19, 0xb2, 0x41, 0x16, 0xe8, 0x4b, 0x30, 0xd6, 0x70, 0x5a, 0xce, 0x86, 0xe7, 0x7b, + 0x89, 0x47, 0xe2, 0x62, 0x27, 0x46, 0x4b, 0x5a, 0x09, 0xe1, 0xef, 0xd5, 0x20, 0xd8, 0xe0, 0x88, + 0xe6, 0x00, 0x5a, 0x91, 0xb7, 0xe3, 0xf9, 0x64, 0x8b, 0xa9, 0x1d, 0x2c, 0xd6, 0x92, 0x1f, 0x7e, + 0x48, 0x28, 0xd6, 0x28, 0xba, 0x44, 0xf5, 0x95, 0x4f, 0x22, 0xaa, 0x6f, 0xa0, 0xcf, 0xa8, 0xbe, + 0xc1, 0x42, 0x51, 0x7d, 0x18, 0xce, 0x49, 0x37, 0x2d, 0xfd, 0xbf, 0xe2, 0xf9, 0x84, 0xa7, 0xdb, + 0x13, 0xb1, 0x98, 0x33, 0xfb, 0x7b, 0xb3, 0xe7, 0x70, 0x57, 0x0a, 0xdc, 0xa3, 0xa4, 0xdd, 0x86, + 0xd3, 0x75, 0x12, 0x79, 0x2c, 0x0b, 0x92, 0x9b, 0x2e, 0xc0, 0x2f, 0x40, 0x25, 0xca, 0xac, 0xfd, + 0x3e, 0x2f, 0xc8, 0x69, 0x79, 0x34, 0xe4, 0x5a, 0x4f, 0x59, 0xda, 0x7f, 0xad, 0x04, 0xc3, 0x22, + 0x98, 0xe9, 0x18, 0xf7, 0x91, 0x1b, 0x86, 0x75, 0xf7, 0x5c, 0xde, 0xca, 0x65, 0xcd, 0xe9, 0x69, + 0xd7, 0xd5, 0x33, 0x76, 0xdd, 0x0b, 0xc5, 0xd8, 0x1d, 0x6e, 0xd1, 0xfd, 0x66, 0x09, 0x26, 0xcc, + 0xa0, 0xae, 0x63, 0x1c, 0x8e, 0xb7, 0x60, 0x38, 0x16, 0x91, 0x4e, 0xa5, 0x22, 0x41, 0x1e, 0xd9, + 0x4f, 0x9a, 0xbe, 0xee, 0x2f, 0x62, 0x9b, 0x24, 0xbb, 0xae, 0xc1, 0x54, 0xe5, 0x93, 0x08, 0xa6, + 0xb2, 0x7f, 0x9b, 0x89, 0x54, 0x7d, 0x00, 0x4f, 0x60, 0x4b, 0x78, 0xd3, 0x14, 0xbe, 0x97, 0x0a, + 0xcd, 0x04, 0xd1, 0xbc, 0x1e, 0x5b, 0xc3, 0xaf, 0x59, 0x30, 0x2a, 0x08, 0x4f, 0xa0, 0x03, 0x9f, + 0x31, 0x3b, 0xf0, 0x4c, 0xa1, 0x0e, 0xf4, 0x68, 0xf9, 0x3f, 0x28, 0xa9, 0x96, 0xd7, 0xc4, 0x53, + 0xa6, 0xb9, 0xd9, 0x17, 0x47, 0x5a, 0x51, 0x98, 0x84, 0x8d, 0xd0, 0x17, 0x5b, 0xfc, 0x13, 0x69, + 0x10, 0x3c, 0x87, 0x1f, 0x68, 0xbf, 0xb1, 0xa2, 0x66, 0xd1, 0xdd, 0x61, 0x94, 0x88, 0x0d, 0xaa, + 0xdb, 0x43, 0xaa, 0x1b, 0xf2, 0xa1, 0x6a, 0x0a, 0x13, 0xf7, 0x47, 0xfa, 0x7d, 0xa0, 0x35, 0x8d, + 0x69, 0x57, 0x9c, 0xb0, 0xc6, 0x55, 0x86, 0x59, 0xb2, 0x1a, 0x06, 0x4d, 0x17, 0xea, 0x6d, 0x01, + 0xc7, 0x8a, 0xc2, 0x7e, 0x8d, 0x49, 0x58, 0x36, 0x3c, 0xfd, 0x05, 0xaa, 0xff, 0xcc, 0x90, 0x1a, + 0x58, 0xe6, 0x21, 0xb9, 0x0d, 0x83, 0xb4, 0x8b, 0xd2, 0x08, 0x2c, 0x26, 0xce, 0x68, 0x13, 0xf4, + 0xb0, 0xb2, 0x28, 0x89, 0x31, 0x67, 0x83, 0x48, 0x87, 0xdf, 0xfd, 0xb5, 0xc2, 0x12, 0xb2, 0x0f, + 0x4f, 0x3b, 0x4b, 0x61, 0xc3, 0xf2, 0x76, 0xac, 0xd6, 0xb2, 0x19, 0x33, 0x97, 0x24, 0x02, 0xa7, + 0x34, 0x68, 0x5e, 0xe8, 0xea, 0xe6, 0x3b, 0xb7, 0x52, 0x57, 0x97, 0x43, 0xa2, 0x29, 0xeb, 0x97, + 0x61, 0x54, 0xe5, 0x0c, 0xaf, 0xf1, 0xd4, 0xcf, 0x15, 0xae, 0xbd, 0x2c, 0xa7, 0x60, 0xac, 0xd3, + 0xa0, 0x55, 0x38, 0xed, 0xaa, 0xa8, 0xda, 0x5a, 0x7b, 0xc3, 0xf7, 0x1a, 0xb4, 0x28, 0xbf, 0xd7, + 0xf2, 0xd8, 0xfe, 0xde, 0xec, 0xe9, 0x6a, 0x27, 0x1a, 0x77, 0x2b, 0x83, 0xd6, 0x61, 0x32, 0xe6, + 0xb9, 0xd1, 0x65, 0xe8, 0xa4, 0x48, 0x24, 0xf7, 0xbc, 0x74, 0xf8, 0xd7, 0x4d, 0xf4, 0x01, 0x03, + 0x71, 0x99, 0x20, 0x83, 0x2d, 0xb3, 0x2c, 0xd0, 0x1b, 0x30, 0xe1, 0xeb, 0xcf, 0x3c, 0xd5, 0x44, + 0x70, 0xb1, 0x0a, 0x85, 0x30, 0x1e, 0x81, 0xaa, 0xe1, 0x0c, 0x35, 0x7a, 0x0b, 0xa6, 0x75, 0x88, + 0xb8, 0x5f, 0xef, 0x04, 0x5b, 0x24, 0x16, 0x49, 0x99, 0x9f, 0xd8, 0xdf, 0x9b, 0x9d, 0xbe, 0xd9, + 0x83, 0x06, 0xf7, 0x2c, 0x8d, 0xae, 0xc2, 0x98, 0x1c, 0x49, 0x2d, 0xd0, 0x38, 0x0d, 0xc2, 0xd1, + 0x70, 0xd8, 0xa0, 0x7c, 0x7f, 0xe7, 0x1a, 0x5f, 0xa5, 0x85, 0xb5, 0x2d, 0x15, 0x7d, 0x19, 0xc6, + 0xf4, 0x36, 0x0a, 0x29, 0xf9, 0x52, 0xf1, 0xa7, 0xb3, 0xc4, 0xd6, 0xac, 0x5a, 0xae, 0xe3, 0xb0, + 0xc1, 0xdb, 0x5e, 0x83, 0xa1, 0xfa, 0x6e, 0xdc, 0x48, 0xfc, 0x47, 0xf5, 0xc4, 0x71, 0x03, 0x26, + 0x33, 0x6f, 0x01, 0xab, 0x47, 0xa5, 0xad, 0x47, 0xf5, 0xa8, 0xb4, 0xfd, 0x75, 0x0b, 0x06, 0xd7, + 0x1d, 0x2f, 0xff, 0x39, 0x83, 0x22, 0x4d, 0x46, 0xaf, 0xc2, 0x10, 0xd9, 0xdc, 0x24, 0x0d, 0xf9, + 0x48, 0xf5, 0x93, 0x52, 0xa5, 0x59, 0x66, 0x50, 0xba, 0x34, 0x59, 0x65, 0xfc, 0x2f, 0x16, 0xc4, + 0xf6, 0x7f, 0xb2, 0x00, 0xd6, 0x43, 0x5f, 0x1e, 0xd9, 0xe4, 0xb4, 0x64, 0xb1, 0xe3, 0x61, 0x85, + 0x67, 0xbb, 0x3c, 0xac, 0x80, 0x52, 0x86, 0x5d, 0x9e, 0x55, 0x50, 0xbd, 0x29, 0x17, 0xea, 0xcd, + 0x40, 0x3f, 0xbd, 0xf9, 0xa6, 0x05, 0x22, 0x7a, 0xa6, 0xc0, 0x4c, 0x70, 0x65, 0x32, 0x74, 0x23, + 0x73, 0xc6, 0xf3, 0x45, 0x2e, 0xa4, 0x88, 0x7c, 0x19, 0x6a, 0x6e, 0x1a, 0x59, 0x32, 0x0c, 0xae, + 0xd4, 0x90, 0x1f, 0xe5, 0xe8, 0x5b, 0x4c, 0x7f, 0xcc, 0x6f, 0x57, 0x5f, 0x39, 0xc2, 0x58, 0xae, + 0x70, 0xca, 0x58, 0xe5, 0x8a, 0xd2, 0x73, 0x85, 0x4b, 0x04, 0x4e, 0x69, 0xd0, 0x73, 0x30, 0x1c, + 0xb7, 0x37, 0x18, 0x79, 0x26, 0x94, 0xa6, 0xce, 0xc1, 0x58, 0xe2, 0xed, 0x9f, 0x44, 0x60, 0x74, + 0xcd, 0xc8, 0x4b, 0x65, 0x3d, 0xf2, 0xbc, 0x54, 0x6f, 0xc3, 0x08, 0x69, 0xb6, 0x92, 0xdd, 0xaa, + 0x17, 0x15, 0xcb, 0x10, 0xb8, 0x2c, 0xa8, 0x3b, 0xb9, 0x4b, 0x0c, 0x56, 0x1c, 0x7b, 0x64, 0x19, + 0x2b, 0x7f, 0x20, 0xb2, 0x8c, 0x0d, 0xfc, 0x48, 0xb2, 0x8c, 0xbd, 0x05, 0xc3, 0x5b, 0x5e, 0x82, + 0x49, 0x2b, 0x14, 0xf7, 0x10, 0x73, 0xce, 0xc2, 0xae, 0x71, 0xe2, 0xce, 0xd4, 0x41, 0x02, 0x81, + 0x25, 0x3b, 0xb4, 0x0e, 0x43, 0xdc, 0xf6, 0x10, 0x89, 0xbb, 0x5e, 0x2a, 0xe2, 0x95, 0xe9, 0xcc, + 0x61, 0x25, 0xe2, 0xa5, 0x04, 0x2f, 0x99, 0x55, 0x6c, 0xf8, 0xfd, 0x67, 0x15, 0x53, 0xb9, 0xc0, + 0x46, 0x1e, 0x55, 0x2e, 0x30, 0x23, 0xa7, 0x5a, 0xe5, 0x38, 0x72, 0xaa, 0x7d, 0xd3, 0x82, 0xb3, + 0xad, 0x6e, 0x19, 0x09, 0x45, 0x56, 0xaf, 0x4f, 0x1d, 0x21, 0x43, 0xa3, 0x51, 0x35, 0xbb, 0x17, + 0xd6, 0x95, 0x0c, 0x77, 0xaf, 0x58, 0x26, 0x67, 0x1b, 0x7d, 0xff, 0xc9, 0xd9, 0x8e, 0x3b, 0xfd, + 0x57, 0x9a, 0xaa, 0x6d, 0xfc, 0x58, 0x52, 0xb5, 0x4d, 0x3c, 0xc2, 0x54, 0x6d, 0x5a, 0x92, 0xb5, + 0xc9, 0x47, 0x9b, 0x64, 0x6d, 0x1b, 0x46, 0xdd, 0xf0, 0x41, 0xf0, 0xc0, 0x89, 0xdc, 0x85, 0xda, + 0xaa, 0xc8, 0xe9, 0x95, 0x93, 0x40, 0xa2, 0x9a, 0x16, 0x30, 0x6a, 0xe0, 0xee, 0xc7, 0x14, 0x89, + 0x75, 0xd6, 0x22, 0xdd, 0xdc, 0xa9, 0xf7, 0x99, 0x6e, 0xce, 0x48, 0xda, 0x86, 0x8e, 0x23, 0x69, + 0xdb, 0x97, 0xd8, 0x4d, 0xf2, 0x4d, 0x6f, 0xeb, 0x96, 0xd3, 0x9a, 0x3e, 0x5d, 0xa4, 0x86, 0x25, + 0x49, 0xde, 0x59, 0x83, 0x42, 0xe1, 0x94, 0x69, 0x67, 0x5a, 0xb8, 0x33, 0x27, 0x9d, 0x16, 0xee, + 0xec, 0x31, 0xa6, 0x85, 0x3b, 0x77, 0xa2, 0x69, 0xe1, 0x1e, 0xfb, 0x91, 0xa4, 0x85, 0xfb, 0x2b, + 0x70, 0xfe, 0xf0, 0xcf, 0x91, 0xa6, 0x1d, 0xae, 0xa5, 0x2e, 0x83, 0x4c, 0xda, 0x61, 0xa6, 0xea, + 0x68, 0x54, 0x85, 0xb3, 0x53, 0x7d, 0xd7, 0x82, 0xc7, 0x7a, 0x24, 0x71, 0x29, 0x7c, 0x8f, 0xa1, + 0x05, 0x93, 0x2d, 0xb3, 0x68, 0xe1, 0x1b, 0x47, 0x46, 0xd2, 0x18, 0x15, 0x23, 0x97, 0x41, 0xe0, + 0x2c, 0xfb, 0xc5, 0x8f, 0xfc, 0xe0, 0xbd, 0xf3, 0x1f, 0xfa, 0xe1, 0x7b, 0xe7, 0x3f, 0xf4, 0x87, + 0xef, 0x9d, 0xff, 0xd0, 0x4f, 0xec, 0x9f, 0xb7, 0x7e, 0xb0, 0x7f, 0xde, 0xfa, 0xe1, 0xfe, 0x79, + 0xeb, 0x4f, 0xf6, 0xcf, 0x5b, 0xdf, 0xfc, 0xd3, 0xf3, 0x1f, 0xfa, 0x5c, 0x69, 0xe7, 0xf2, 0xff, + 0x0b, 0x00, 0x00, 0xff, 0xff, 0x1f, 0x95, 0x60, 0xd6, 0x7d, 0xb7, 0x00, 0x00, } diff --git a/pkg/api/v1/generated.proto b/pkg/api/v1/generated.proto index 7bbe91b733d..00e26331ae3 100644 --- a/pkg/api/v1/generated.proto +++ b/pkg/api/v1/generated.proto @@ -138,8 +138,6 @@ message AzureFileVolumeSource { // Binding ties one object to another. // For example, a pod is bound to a node by a scheduler. message Binding { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -239,8 +237,6 @@ message ComponentCondition { // ComponentStatus (and ComponentStatusList) holds the cluster validation info. message ComponentStatus { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -253,8 +249,6 @@ message ComponentStatus { // Status of all the conditions for the component as a list of ComponentStatus objects. message ComponentStatusList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -266,8 +260,6 @@ message ComponentStatusList { // ConfigMap holds configuration data for pods to consume. message ConfigMap { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -300,8 +292,6 @@ message ConfigMapKeySelector { // ConfigMapList is a resource containing a list of ConfigMap objects. message ConfigMapList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; @@ -626,8 +616,6 @@ message DaemonEndpoint { // DeleteOptions may be provided when deleting an API object message DeleteOptions { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // 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. @@ -776,8 +764,6 @@ message EndpointSubset { // }, // ] message Endpoints { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -795,8 +781,6 @@ message Endpoints { // EndpointsList is a list of endpoints. message EndpointsList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -862,8 +846,6 @@ message EnvVarSource { // Event is a report of an event somewhere in the cluster. // TODO: Decide whether to store these separately or with the object they apply to. message Event { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 10; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata optional ObjectMeta metadata = 1; @@ -905,8 +887,6 @@ message Event { // EventList is a list of events. message EventList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -1212,8 +1192,6 @@ message Lifecycle { // LimitRange sets resource usage limits for each kind of resource in a Namespace. message LimitRange { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -1254,8 +1232,6 @@ message LimitRangeItem { // LimitRangeList is a list of LimitRange items. message LimitRangeList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -1274,8 +1250,6 @@ message LimitRangeSpec { // List holds a list of objects, which may not be known by the server. message List { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -1287,8 +1261,6 @@ message List { // ListOptions is the query options to a standard REST list call. message ListOptions { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 6; - // A selector to restrict the list of returned objects by their labels. // Defaults to everything. // +optional @@ -1372,8 +1344,6 @@ message NFSVolumeSource { // Namespace provides a scope for Names. // Use of multiple namespaces is optional. message Namespace { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -1392,8 +1362,6 @@ message Namespace { // NamespaceList is a list of Namespaces. message NamespaceList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -1423,8 +1391,6 @@ message NamespaceStatus { // Node is a worker node in Kubernetes. // Each node will have a unique identifier in the cache (i.e. in etcd). message Node { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -1509,8 +1475,6 @@ message NodeDaemonEndpoints { // NodeList is the whole list of all Nodes which have been registered with master. message NodeList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -1522,8 +1486,6 @@ message NodeList { // NodeProxyOptions is the query options to a Node's proxy call. message NodeProxyOptions { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 2; - // Path is the URL path to use for the current proxy request to node. // +optional optional string path = 1; @@ -1883,8 +1845,6 @@ message ObjectReference { // It is analogous to a node. // More info: http://kubernetes.io/docs/user-guide/persistent-volumes message PersistentVolume { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -1906,8 +1866,6 @@ message PersistentVolume { // PersistentVolumeClaim is a user's request for and claim to a persistent volume message PersistentVolumeClaim { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -1927,8 +1885,6 @@ message PersistentVolumeClaim { // PersistentVolumeClaimList is a list of PersistentVolumeClaim items. message PersistentVolumeClaimList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -1994,8 +1950,6 @@ message PersistentVolumeClaimVolumeSource { // PersistentVolumeList is a list of PersistentVolume items. message PersistentVolumeList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -2154,8 +2108,6 @@ message PhotonPersistentDiskVolumeSource { // Pod is a collection of containers that can run on a host. This resource is created // by clients and scheduled onto hosts. message Pod { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -2278,8 +2230,6 @@ message PodAntiAffinity { // TODO: merge w/ PodExecOptions below for stdin, stdout, etc // and also when we cut V2, we should export a "StreamOptions" or somesuch that contains Stdin, Stdout, Stder and TTY message PodAttachOptions { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 6; - // Stdin if true, redirects the standard input stream of the pod for this call. // Defaults to false. // +optional @@ -2342,8 +2292,6 @@ message PodCondition { // TODO: This is largely identical to PodAttachOptions above, make sure they stay in sync and see about merging // and also when we cut V2, we should export a "StreamOptions" or somesuch that contains Stdin, Stdout, Stder and TTY message PodExecOptions { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 7; - // Redirect the standard input stream of the pod for this call. // Defaults to false. // +optional @@ -2375,8 +2323,6 @@ message PodExecOptions { // PodList is a list of Pods. message PodList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -2389,8 +2335,6 @@ message PodList { // PodLogOptions is the query options for a Pod's logs REST call. message PodLogOptions { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 9; - // The container for which to stream logs. Defaults to only container if there is one container in the pod. // +optional optional string container = 1; @@ -2436,8 +2380,6 @@ message PodLogOptions { // PodProxyOptions is the query options to a Pod's proxy call. message PodProxyOptions { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 2; - // Path is the URL path to use for the current proxy request to pod. // +optional optional string path = 1; @@ -2662,8 +2604,6 @@ message PodStatus { // PodStatusResult is a wrapper for PodStatus returned by kubelet that can be encode/decoded message PodStatusResult { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -2680,8 +2620,6 @@ message PodStatusResult { // PodTemplate describes a template for creating copies of a predefined pod. message PodTemplate { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -2695,8 +2633,6 @@ message PodTemplate { // PodTemplateList is a list of PodTemplates. message PodTemplateList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -2867,8 +2803,6 @@ message RBDVolumeSource { // RangeAllocation is not a public type. message RangeAllocation { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -2883,8 +2817,6 @@ message RangeAllocation { // ReplicationController represents the configuration of a replication controller. message ReplicationController { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // If the Labels of a ReplicationController are empty, they are defaulted to // be the same as the Pod(s) that the replication controller manages. // Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -2928,8 +2860,6 @@ message ReplicationControllerCondition { // ReplicationControllerList is a collection of replication controllers. message ReplicationControllerList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -3014,8 +2944,6 @@ message ResourceFieldSelector { // ResourceQuota sets aggregate quota restrictions enforced per namespace message ResourceQuota { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -3034,8 +2962,6 @@ message ResourceQuota { // ResourceQuotaList is a list of ResourceQuota items. message ResourceQuotaList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -3108,8 +3034,6 @@ message SELinuxOptions { // Secret holds secret data of a certain type. The total bytes of the values in // the Data field must be less than MaxSecretSize bytes. message Secret { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 5; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -3147,8 +3071,6 @@ message SecretKeySelector { // SecretList is a list of Secret. message SecretList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -3235,8 +3157,6 @@ message SecurityContext { // SerializedReference is a reference to serialized object. message SerializedReference { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 2; - // The reference to an object in the system. // +optional optional ObjectReference reference = 1; @@ -3246,8 +3166,6 @@ message SerializedReference { // (for example 3306) that the proxy listens on, and the selector that determines which pods // will answer requests sent through the proxy. message Service { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -3271,8 +3189,6 @@ message Service { // * a principal that can be authenticated and authorized // * a set of secrets message ServiceAccount { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -3293,8 +3209,6 @@ message ServiceAccount { // ServiceAccountList is a list of ServiceAccount objects message ServiceAccountList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -3307,8 +3221,6 @@ message ServiceAccountList { // ServiceList holds a list of services. message ServiceList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -3357,8 +3269,6 @@ message ServicePort { // ServiceProxyOptions is the query options to a Service's proxy call. message ServiceProxyOptions { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 2; - // Path is the part of URLs that include service endpoints, suffixes, // and parameters to use for the current proxy request to service. // For example, the whole request URL is diff --git a/pkg/apis/apps/v1beta1/generated.pb.go b/pkg/apis/apps/v1beta1/generated.pb.go index e36e9bae14f..59869f2f7dc 100644 --- a/pkg/apis/apps/v1beta1/generated.pb.go +++ b/pkg/apis/apps/v1beta1/generated.pb.go @@ -115,14 +115,6 @@ func (m *StatefulSet) MarshalTo(data []byte) (int, error) { return 0, err } i += n3 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n4, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n4 return i, nil } @@ -144,11 +136,11 @@ func (m *StatefulSetList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n5, err := m.ListMeta.MarshalTo(data[i:]) + n4, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n5 + i += n4 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -161,14 +153,6 @@ func (m *StatefulSetList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n6, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n6 return i, nil } @@ -196,20 +180,20 @@ func (m *StatefulSetSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Selector.Size())) - n7, err := m.Selector.MarshalTo(data[i:]) + n5, err := m.Selector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n7 + i += n5 } data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n8, err := m.Template.MarshalTo(data[i:]) + n6, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n8 + i += n6 if len(m.VolumeClaimTemplates) > 0 { for _, msg := range m.VolumeClaimTemplates { data[i] = 0x22 @@ -291,8 +275,6 @@ func (m *StatefulSet) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -307,8 +289,6 @@ func (m *StatefulSetList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -366,7 +346,6 @@ func (this *StatefulSet) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "StatefulSetSpec", "StatefulSetSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "StatefulSetStatus", "StatefulSetStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -378,7 +357,6 @@ func (this *StatefulSetList) String() string { s := strings.Join([]string{`&StatefulSetList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "StatefulSet", "StatefulSet", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -535,36 +513,6 @@ func (m *StatefulSet) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -676,36 +624,6 @@ func (m *StatefulSetList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1115,48 +1033,46 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 677 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x94, 0xcb, 0x6e, 0xd3, 0x4e, - 0x14, 0xc6, 0xe3, 0x5c, 0xfa, 0xcf, 0x7f, 0x52, 0x6e, 0x43, 0x85, 0xac, 0x0a, 0xb9, 0x55, 0x37, - 0x04, 0xa9, 0x1d, 0x2b, 0x6d, 0x81, 0x8a, 0xa5, 0x91, 0x40, 0x48, 0x40, 0x91, 0x53, 0x55, 0x50, - 0x60, 0x31, 0x76, 0x4e, 0xd3, 0x21, 0xbe, 0xc9, 0x33, 0x8e, 0xd4, 0x1d, 0x9b, 0x2e, 0xd8, 0xf1, - 0x18, 0x3c, 0x01, 0xcf, 0xd0, 0x65, 0x97, 0xac, 0x2a, 0x1a, 0x5e, 0x04, 0xcd, 0x64, 0x12, 0xa7, - 0x75, 0x42, 0xab, 0x8a, 0x5d, 0xe6, 0xf2, 0xfd, 0xbe, 0x39, 0xdf, 0x39, 0x0e, 0x7a, 0xd2, 0xdb, - 0xe2, 0x84, 0xc5, 0x76, 0x2f, 0xf3, 0x20, 0x8d, 0x40, 0x00, 0xb7, 0x93, 0x5e, 0xd7, 0xa6, 0x09, - 0xe3, 0x36, 0x4d, 0x12, 0x6e, 0xf7, 0x5b, 0x1e, 0x08, 0xda, 0xb2, 0xbb, 0x10, 0x41, 0x4a, 0x05, - 0x74, 0x48, 0x92, 0xc6, 0x22, 0xc6, 0x0f, 0x86, 0x42, 0x92, 0x0b, 0x49, 0xd2, 0xeb, 0x12, 0x29, - 0x24, 0x52, 0x48, 0xb4, 0x70, 0x71, 0xad, 0xcb, 0xc4, 0x41, 0xe6, 0x11, 0x3f, 0x0e, 0xed, 0x6e, - 0xdc, 0x8d, 0x6d, 0xa5, 0xf7, 0xb2, 0x7d, 0xb5, 0x52, 0x0b, 0xf5, 0x6b, 0xc8, 0x5d, 0xdc, 0xd4, - 0x0f, 0xa2, 0x09, 0x0b, 0xa9, 0x7f, 0xc0, 0x22, 0x48, 0x0f, 0xf3, 0x27, 0x85, 0x20, 0xa8, 0xdd, - 0x2f, 0xbc, 0x66, 0xd1, 0x9e, 0xa5, 0x4a, 0xb3, 0x48, 0xb0, 0x10, 0x0a, 0x82, 0xc7, 0x97, 0x09, - 0xb8, 0x7f, 0x00, 0x21, 0x2d, 0xe8, 0xd6, 0x67, 0xe6, 0x65, 0xa7, 0xc0, 0xe3, 0x2c, 0xf5, 0x8b, - 0x5e, 0xab, 0xb3, 0x35, 0x53, 0x4a, 0x69, 0x4d, 0xbf, 0x9d, 0x09, 0x16, 0xd8, 0x2c, 0x12, 0x5c, - 0xa4, 0x17, 0x25, 0x2b, 0x47, 0x15, 0xd4, 0x68, 0x0b, 0x2a, 0x60, 0x3f, 0x0b, 0xda, 0x20, 0xf0, - 0x3b, 0x54, 0x97, 0x41, 0x75, 0xa8, 0xa0, 0xa6, 0xb1, 0x6c, 0x34, 0x1b, 0xeb, 0x4d, 0x32, 0xb3, - 0x5d, 0xa4, 0xdf, 0x22, 0xdb, 0xde, 0x67, 0xf0, 0xc5, 0x6b, 0x10, 0xd4, 0xc1, 0xc7, 0xa7, 0x4b, - 0xa5, 0xc1, 0xe9, 0x12, 0xca, 0xf7, 0xdc, 0x31, 0x0d, 0xef, 0xa1, 0x2a, 0x4f, 0xc0, 0x37, 0xcb, - 0x8a, 0xba, 0x45, 0xae, 0x38, 0x04, 0x64, 0xe2, 0x75, 0xed, 0x04, 0x7c, 0x67, 0x5e, 0xbb, 0x54, - 0xe5, 0xca, 0x55, 0x4c, 0xec, 0xa1, 0x39, 0x2e, 0xa8, 0xc8, 0xb8, 0x59, 0x51, 0xf4, 0xa7, 0xd7, - 0xa2, 0x2b, 0x82, 0x73, 0x53, 0xf3, 0xe7, 0x86, 0x6b, 0x57, 0x93, 0xf1, 0x47, 0x54, 0x17, 0x87, - 0x09, 0xc8, 0xaa, 0xcc, 0xaa, 0x72, 0x21, 0x23, 0x97, 0xc9, 0x49, 0xc8, 0x7d, 0x64, 0xe5, 0x32, - 0xa1, 0x1d, 0xad, 0x72, 0x6e, 0x6b, 0x72, 0x7d, 0xb4, 0xe3, 0x8e, 0x89, 0x2b, 0xdf, 0xcb, 0xe8, - 0xd6, 0xc4, 0x5b, 0x5e, 0x31, 0x2e, 0xa4, 0xe3, 0x85, 0x5e, 0x5c, 0xd1, 0x51, 0xaa, 0xcf, 0x3b, - 0x8e, 0x76, 0x26, 0xfa, 0xf1, 0x1e, 0xd5, 0x98, 0x80, 0x90, 0x9b, 0xe5, 0xe5, 0x4a, 0xb3, 0xb1, - 0xbe, 0x79, 0x9d, 0xc8, 0x9c, 0x1b, 0xda, 0xa0, 0xf6, 0x52, 0xa2, 0xdc, 0x21, 0xf1, 0x5c, 0x54, - 0x95, 0x7f, 0x1e, 0xd5, 0x8f, 0xca, 0xb9, 0xa8, 0xe4, 0x18, 0xe0, 0x26, 0xaa, 0xa7, 0x90, 0x04, - 0xcc, 0xa7, 0x5c, 0x45, 0x55, 0x73, 0xe6, 0xa5, 0xda, 0xd5, 0x7b, 0xee, 0xf8, 0x14, 0x7f, 0x42, - 0x75, 0x0e, 0x01, 0xf8, 0x22, 0x4e, 0xf5, 0x28, 0x6e, 0x5c, 0x31, 0x54, 0xea, 0x41, 0xd0, 0xd6, - 0xd2, 0x21, 0x7e, 0xb4, 0x72, 0xc7, 0x48, 0xfc, 0x01, 0xd5, 0x05, 0x84, 0x49, 0x40, 0x05, 0xe8, - 0xd2, 0xd7, 0xfe, 0xfe, 0xfd, 0xbc, 0x8d, 0x3b, 0x3b, 0x5a, 0xa0, 0xc6, 0x3b, 0xaf, 0x5c, 0xef, - 0xba, 0x63, 0x20, 0x3e, 0x32, 0xd0, 0x42, 0x3f, 0x0e, 0xb2, 0x10, 0x9e, 0x05, 0x94, 0x85, 0xa3, - 0x1b, 0xdc, 0xac, 0xaa, 0x16, 0x6e, 0x5c, 0xe2, 0x04, 0x29, 0x67, 0x5c, 0x40, 0x24, 0x76, 0x73, - 0x86, 0x73, 0x5f, 0xfb, 0x2d, 0xec, 0x4e, 0x01, 0xbb, 0x53, 0xed, 0xf0, 0x23, 0xd4, 0xe0, 0x90, - 0xf6, 0x99, 0x0f, 0x6f, 0x68, 0x08, 0x66, 0x6d, 0xd9, 0x68, 0xfe, 0xef, 0xdc, 0xd5, 0xa0, 0x46, - 0x3b, 0x3f, 0x72, 0x27, 0xef, 0xad, 0x7c, 0x35, 0xd0, 0x9d, 0xc2, 0xf7, 0x86, 0x9f, 0x23, 0x1c, - 0x7b, 0xf2, 0x1a, 0x74, 0x5e, 0x0c, 0xff, 0x9c, 0x58, 0x1c, 0xa9, 0x26, 0x56, 0x9c, 0x7b, 0x83, - 0xd3, 0x25, 0xbc, 0x5d, 0x38, 0x75, 0xa7, 0x28, 0xf0, 0xea, 0xc4, 0x08, 0x94, 0xd5, 0x08, 0x8c, - 0xa3, 0x2c, 0x8e, 0x81, 0xf3, 0xf0, 0xf8, 0xcc, 0x2a, 0x9d, 0x9c, 0x59, 0xa5, 0x9f, 0x67, 0x56, - 0xe9, 0xcb, 0xc0, 0x32, 0x8e, 0x07, 0x96, 0x71, 0x32, 0xb0, 0x8c, 0x5f, 0x03, 0xcb, 0xf8, 0xf6, - 0xdb, 0x2a, 0xed, 0xfd, 0xa7, 0xe7, 0xfd, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x99, 0xe5, 0x31, - 0x59, 0xe8, 0x06, 0x00, 0x00, + // 645 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x9c, 0x53, 0x4d, 0x6f, 0xd3, 0x40, + 0x10, 0x8d, 0x93, 0xa6, 0x84, 0x4d, 0xf9, 0x5a, 0x2a, 0x14, 0x55, 0xc8, 0xad, 0x72, 0x21, 0x48, + 0xed, 0x5a, 0x69, 0x0b, 0x54, 0x1c, 0x8d, 0x04, 0x42, 0x02, 0x8a, 0x1c, 0x54, 0x41, 0x81, 0xc3, + 0xda, 0x99, 0xa6, 0x4b, 0xfc, 0x25, 0xef, 0x38, 0x12, 0x37, 0x2e, 0x1c, 0xb8, 0xf1, 0x2f, 0xf8, + 0x07, 0xfc, 0x86, 0x8a, 0x53, 0x8f, 0x9c, 0x2a, 0x1a, 0xfe, 0x08, 0xf2, 0x66, 0x93, 0x18, 0x9c, + 0xd0, 0xaa, 0x37, 0xcf, 0xee, 0xbc, 0xf7, 0x66, 0xde, 0x3e, 0x93, 0x07, 0xfd, 0x1d, 0xc9, 0x44, + 0x64, 0xf5, 0x53, 0x17, 0x92, 0x10, 0x10, 0xa4, 0x15, 0xf7, 0x7b, 0x16, 0x8f, 0x85, 0xb4, 0x78, + 0x1c, 0x4b, 0x6b, 0xd0, 0x76, 0x01, 0x79, 0xdb, 0xea, 0x41, 0x08, 0x09, 0x47, 0xe8, 0xb2, 0x38, + 0x89, 0x30, 0xa2, 0x77, 0x46, 0x40, 0x36, 0x05, 0xb2, 0xb8, 0xdf, 0x63, 0x19, 0x90, 0x65, 0x40, + 0xa6, 0x81, 0x2b, 0x1b, 0x3d, 0x81, 0x87, 0xa9, 0xcb, 0xbc, 0x28, 0xb0, 0x7a, 0x51, 0x2f, 0xb2, + 0x14, 0xde, 0x4d, 0x0f, 0x54, 0xa5, 0x0a, 0xf5, 0x35, 0xe2, 0x5d, 0xd9, 0xd6, 0x03, 0xf1, 0x58, + 0x04, 0xdc, 0x3b, 0x14, 0x21, 0x24, 0x1f, 0xa7, 0x23, 0x05, 0x80, 0xdc, 0x1a, 0x14, 0xa6, 0x59, + 0xb1, 0xe6, 0xa1, 0x92, 0x34, 0x44, 0x11, 0x40, 0x01, 0x70, 0xff, 0x2c, 0x80, 0xf4, 0x0e, 0x21, + 0xe0, 0x05, 0xdc, 0xe6, 0x5c, 0xbf, 0xac, 0x04, 0x64, 0x94, 0x26, 0x5e, 0x51, 0x6b, 0x7d, 0x3e, + 0x66, 0xc6, 0x2a, 0xed, 0xd9, 0xdd, 0x29, 0x0a, 0xdf, 0x12, 0x21, 0x4a, 0x4c, 0xfe, 0x85, 0x34, + 0xbf, 0x95, 0x49, 0xbd, 0x83, 0x1c, 0xe1, 0x20, 0xf5, 0x3b, 0x80, 0xf4, 0x35, 0xa9, 0x65, 0x46, + 0x75, 0x39, 0xf2, 0x86, 0xb1, 0x66, 0xb4, 0xea, 0x9b, 0x2d, 0x36, 0xf7, 0xb9, 0xd8, 0xa0, 0xcd, + 0x76, 0xdd, 0x0f, 0xe0, 0xe1, 0x73, 0x40, 0x6e, 0xd3, 0xa3, 0x93, 0xd5, 0xd2, 0xf0, 0x64, 0x95, + 0x4c, 0xcf, 0x9c, 0x09, 0x1b, 0xdd, 0x27, 0x0b, 0x32, 0x06, 0xaf, 0x51, 0x56, 0xac, 0x3b, 0xec, + 0x9c, 0x21, 0x60, 0xb9, 0xe9, 0x3a, 0x31, 0x78, 0xf6, 0x92, 0x56, 0x59, 0xc8, 0x2a, 0x47, 0x71, + 0x52, 0x97, 0x2c, 0x4a, 0xe4, 0x98, 0xca, 0x46, 0x45, 0xb1, 0x3f, 0xbc, 0x10, 0xbb, 0x62, 0xb0, + 0xaf, 0x6a, 0xfe, 0xc5, 0x51, 0xed, 0x68, 0xe6, 0xe6, 0x0f, 0x83, 0x5c, 0xcb, 0x75, 0x3f, 0x13, + 0x12, 0xe9, 0xbb, 0x82, 0x5b, 0x6c, 0xac, 0x9c, 0x4f, 0xc7, 0x54, 0x3b, 0xeb, 0xce, 0x5c, 0xcb, + 0xd0, 0xca, 0xb3, 0xeb, 0x5a, 0xad, 0x36, 0x3e, 0xc9, 0x39, 0xf6, 0x86, 0x54, 0x05, 0x42, 0x20, + 0x1b, 0xe5, 0xb5, 0x4a, 0xab, 0xbe, 0xb9, 0x7d, 0x91, 0xa5, 0xec, 0x2b, 0x5a, 0xa0, 0xfa, 0x34, + 0xa3, 0x72, 0x46, 0x8c, 0xcd, 0xef, 0x95, 0xbf, 0x96, 0xc9, 0xac, 0xa4, 0x2d, 0x52, 0x4b, 0x20, + 0xf6, 0x85, 0xc7, 0xa5, 0x5a, 0xa6, 0x6a, 0x2f, 0x65, 0x83, 0x39, 0xfa, 0xcc, 0x99, 0xdc, 0xd2, + 0xf7, 0xa4, 0x26, 0xc1, 0x07, 0x0f, 0xa3, 0x44, 0x3f, 0xe7, 0xd6, 0x39, 0xd7, 0xe6, 0x2e, 0xf8, + 0x1d, 0x0d, 0x1d, 0xd1, 0x8f, 0x2b, 0x67, 0x42, 0x49, 0xdf, 0x92, 0x1a, 0x42, 0x10, 0xfb, 0x1c, + 0x41, 0xbf, 0xe7, 0xc6, 0xff, 0x33, 0xf8, 0x32, 0xea, 0xbe, 0xd2, 0x00, 0x15, 0x91, 0x89, 0xa9, + 0xe3, 0x53, 0x67, 0x42, 0x48, 0x3f, 0x1b, 0x64, 0x79, 0x10, 0xf9, 0x69, 0x00, 0x8f, 0x7c, 0x2e, + 0x82, 0x71, 0x87, 0x6c, 0x2c, 0x28, 0x93, 0xb7, 0xce, 0x50, 0x82, 0x44, 0x0a, 0x89, 0x10, 0xe2, + 0xde, 0x94, 0xc3, 0xbe, 0xad, 0xf5, 0x96, 0xf7, 0x66, 0x10, 0x3b, 0x33, 0xe5, 0xe8, 0x3d, 0x52, + 0x97, 0x90, 0x0c, 0x84, 0x07, 0x2f, 0x78, 0x00, 0x8d, 0xea, 0x9a, 0xd1, 0xba, 0x6c, 0xdf, 0xd4, + 0x44, 0xf5, 0xce, 0xf4, 0xca, 0xc9, 0xf7, 0x35, 0xbf, 0x18, 0xe4, 0x46, 0x21, 0xb3, 0xf4, 0x31, + 0xa1, 0x91, 0x9b, 0xb5, 0x41, 0xf7, 0xc9, 0xe8, 0x07, 0x17, 0x51, 0xa8, 0x1e, 0xb1, 0x62, 0xdf, + 0x1a, 0x9e, 0xac, 0xd2, 0xdd, 0xc2, 0xad, 0x33, 0x03, 0x41, 0xd7, 0x73, 0x11, 0x28, 0xab, 0x08, + 0x4c, 0xac, 0x2c, 0xc6, 0xc0, 0xbe, 0x7b, 0x74, 0x6a, 0x96, 0x8e, 0x4f, 0xcd, 0xd2, 0xcf, 0x53, + 0xb3, 0xf4, 0x69, 0x68, 0x1a, 0x47, 0x43, 0xd3, 0x38, 0x1e, 0x9a, 0xc6, 0xaf, 0xa1, 0x69, 0x7c, + 0xfd, 0x6d, 0x96, 0xf6, 0x2f, 0xe9, 0x44, 0xfe, 0x09, 0x00, 0x00, 0xff, 0xff, 0xbb, 0xf0, 0xd3, + 0x7e, 0x2c, 0x06, 0x00, 0x00, } diff --git a/pkg/apis/apps/v1beta1/generated.proto b/pkg/apis/apps/v1beta1/generated.proto index 9735238b459..249af7dc21c 100644 --- a/pkg/apis/apps/v1beta1/generated.proto +++ b/pkg/apis/apps/v1beta1/generated.proto @@ -38,8 +38,6 @@ option go_package = "v1beta1"; // The StatefulSet guarantees that a given network identity will always // map to the same storage identity. message StatefulSet { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; @@ -55,8 +53,6 @@ message StatefulSet { // StatefulSetList is a collection of StatefulSets. message StatefulSetList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // +optional optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; diff --git a/pkg/apis/authentication/v1beta1/generated.pb.go b/pkg/apis/authentication/v1beta1/generated.pb.go index e7af3945605..acb697f7e85 100644 --- a/pkg/apis/authentication/v1beta1/generated.pb.go +++ b/pkg/apis/authentication/v1beta1/generated.pb.go @@ -151,14 +151,6 @@ func (m *TokenReview) MarshalTo(data []byte) (int, error) { return 0, err } i += n3 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n4, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n4 return i, nil } @@ -210,11 +202,11 @@ func (m *TokenReviewStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.User.Size())) - n5, err := m.User.MarshalTo(data[i:]) + n4, err := m.User.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n5 + i += n4 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Error))) @@ -275,11 +267,11 @@ func (m *UserInfo) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n6, err := (&v).MarshalTo(data[i:]) + n5, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n6 + i += n5 } } return i, nil @@ -333,8 +325,6 @@ func (m *TokenReview) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -403,7 +393,6 @@ func (this *TokenReview) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "TokenReviewSpec", "TokenReviewSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "TokenReviewStatus", "TokenReviewStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -659,36 +648,6 @@ func (m *TokenReview) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1277,48 +1236,46 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 688 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xa4, 0x54, 0xcf, 0x4f, 0x13, 0x41, - 0x14, 0xee, 0xd2, 0x16, 0xdb, 0xa9, 0x28, 0x4e, 0x62, 0xd2, 0x34, 0x71, 0xdb, 0xd4, 0x4b, 0x4d, - 0x70, 0x36, 0x25, 0x06, 0x09, 0xc4, 0x03, 0x1b, 0xd0, 0x70, 0x30, 0x26, 0x03, 0x18, 0x63, 0xf4, - 0x30, 0xdd, 0x3e, 0xb6, 0xeb, 0xb2, 0x3f, 0x32, 0x3b, 0x5b, 0xec, 0x8d, 0x3f, 0xc1, 0xa3, 0xde, - 0xfc, 0x73, 0x38, 0x72, 0xf0, 0xe0, 0xc1, 0x10, 0x5b, 0xff, 0x11, 0x33, 0xb3, 0x43, 0x5b, 0x28, - 0x8d, 0x11, 0x6e, 0x3b, 0xdf, 0xbc, 0xf7, 0x7d, 0xef, 0x7b, 0x6f, 0xde, 0xa2, 0x2d, 0x7f, 0x3d, - 0x21, 0x5e, 0x64, 0xf9, 0x69, 0x07, 0x78, 0x08, 0x02, 0x12, 0x2b, 0xf6, 0x5d, 0x8b, 0xc5, 0x5e, - 0x62, 0xb1, 0x54, 0xf4, 0x20, 0x14, 0x9e, 0xc3, 0x84, 0x17, 0x85, 0x56, 0xbf, 0xdd, 0x01, 0xc1, - 0xda, 0x96, 0x0b, 0x21, 0x70, 0x26, 0xa0, 0x4b, 0x62, 0x1e, 0x89, 0x08, 0xb7, 0x33, 0x0a, 0x32, - 0xa1, 0x20, 0xb1, 0xef, 0x12, 0x49, 0x41, 0x2e, 0x53, 0x10, 0x4d, 0x51, 0x7b, 0xea, 0x7a, 0xa2, - 0x97, 0x76, 0x88, 0x13, 0x05, 0x96, 0x1b, 0xb9, 0x91, 0xa5, 0x98, 0x3a, 0xe9, 0xa1, 0x3a, 0xa9, - 0x83, 0xfa, 0xca, 0x14, 0x6a, 0xcf, 0x74, 0x91, 0x2c, 0xf6, 0x02, 0xe6, 0xf4, 0xbc, 0x10, 0xf8, - 0x60, 0x52, 0x66, 0x00, 0x82, 0x59, 0xfd, 0x99, 0xba, 0x6a, 0xd6, 0xbc, 0x2c, 0x9e, 0x86, 0xc2, - 0x0b, 0x60, 0x26, 0x61, 0xed, 0x5f, 0x09, 0x89, 0xd3, 0x83, 0x80, 0xcd, 0xe4, 0xad, 0xce, 0xed, - 0xa1, 0xc5, 0x21, 0x89, 0x52, 0xee, 0xcc, 0x6a, 0xad, 0xcc, 0xcf, 0xb9, 0xc6, 0x4a, 0xfb, 0xfa, - 0xe8, 0x54, 0x78, 0x47, 0x96, 0x17, 0x8a, 0x44, 0xf0, 0xab, 0x29, 0xcd, 0xe7, 0x08, 0xed, 0x7c, - 0x16, 0x9c, 0xbd, 0x65, 0x47, 0x29, 0xe0, 0x3a, 0x2a, 0x7a, 0x02, 0x82, 0xa4, 0x6a, 0x34, 0xf2, - 0xad, 0xb2, 0x5d, 0x1e, 0x9d, 0xd7, 0x8b, 0xbb, 0x12, 0xa0, 0x19, 0xbe, 0x51, 0xfa, 0xfa, 0xbd, - 0x9e, 0x3b, 0xf9, 0xd5, 0xc8, 0x35, 0xbf, 0xe5, 0x51, 0x65, 0x3f, 0xf2, 0x21, 0xa4, 0xd0, 0xf7, - 0xe0, 0x18, 0xbf, 0x43, 0x25, 0xd9, 0xe1, 0x2e, 0x13, 0xac, 0x6a, 0x34, 0x8c, 0x56, 0x65, 0xb5, - 0x45, 0xe6, 0x4e, 0x9c, 0xf4, 0xdb, 0xe4, 0x4d, 0xe7, 0x13, 0x38, 0xe2, 0x35, 0x08, 0x66, 0xe3, - 0xd3, 0xf3, 0x7a, 0x6e, 0x74, 0x5e, 0x47, 0x13, 0x8c, 0x8e, 0xd9, 0x70, 0x17, 0x15, 0x92, 0x18, - 0x9c, 0xea, 0x82, 0x62, 0xb5, 0xc9, 0x7f, 0xbf, 0x23, 0x32, 0x55, 0xe7, 0x5e, 0x0c, 0x8e, 0x7d, - 0x57, 0xeb, 0x15, 0xe4, 0x89, 0x2a, 0x76, 0x7c, 0x84, 0x16, 0x13, 0xc1, 0x44, 0x9a, 0x54, 0xf3, - 0x4a, 0x67, 0xfb, 0x96, 0x3a, 0x8a, 0xcb, 0xbe, 0xa7, 0x95, 0x16, 0xb3, 0x33, 0xd5, 0x1a, 0xf8, - 0x03, 0x2a, 0x89, 0x41, 0x0c, 0xd2, 0x69, 0xb5, 0xa0, 0xf4, 0xc8, 0x85, 0xde, 0xf4, 0xb3, 0x9a, - 0x28, 0xca, 0x6e, 0xc8, 0xae, 0xed, 0xeb, 0x2c, 0x7b, 0x59, 0x33, 0x97, 0x2e, 0x10, 0x3a, 0x66, - 0x6c, 0xae, 0xa1, 0xfb, 0x57, 0x2c, 0xe3, 0xc7, 0xa8, 0x28, 0x24, 0xa4, 0x66, 0x53, 0xb6, 0x97, - 0x74, 0x76, 0x31, 0x8b, 0xcb, 0xee, 0x9a, 0x3f, 0x0c, 0xf4, 0x60, 0xc6, 0x03, 0xde, 0x44, 0x4b, - 0x53, 0x7e, 0xa1, 0xab, 0x28, 0x4a, 0xf6, 0x43, 0x4d, 0xb1, 0xb4, 0x35, 0x7d, 0x49, 0x2f, 0xc7, - 0xe2, 0x8f, 0xa8, 0x90, 0x26, 0xc0, 0xf5, 0xf0, 0x36, 0x6f, 0xd0, 0xd4, 0x83, 0x04, 0xf8, 0x6e, - 0x78, 0x18, 0x4d, 0xa6, 0x26, 0x11, 0xaa, 0x68, 0xa5, 0x2d, 0xe0, 0x3c, 0xe2, 0x6a, 0x68, 0x53, - 0xb6, 0x76, 0x24, 0x48, 0xb3, 0xbb, 0xe6, 0x70, 0x01, 0x95, 0x2e, 0x58, 0xf0, 0x0a, 0x2a, 0xc9, - 0xcc, 0x90, 0x05, 0xa0, 0x7b, 0x31, 0xee, 0xe4, 0x81, 0xc6, 0xe9, 0x38, 0x02, 0x3f, 0x42, 0xf9, - 0xd4, 0xeb, 0xaa, 0xea, 0xcb, 0x76, 0x45, 0x07, 0xe6, 0x0f, 0x76, 0xb7, 0xa9, 0xc4, 0x71, 0x13, - 0x2d, 0xba, 0x3c, 0x4a, 0x63, 0xf9, 0x68, 0xe4, 0xc2, 0x20, 0x39, 0xea, 0x57, 0x0a, 0xa1, 0xfa, - 0x06, 0xfb, 0xa8, 0x08, 0x72, 0xc3, 0xaa, 0x85, 0x46, 0xbe, 0x55, 0x59, 0x7d, 0x79, 0x8b, 0x16, - 0x10, 0xb5, 0xaa, 0x3b, 0xa1, 0xe0, 0x83, 0x29, 0xab, 0x12, 0xa3, 0x99, 0x46, 0xed, 0x58, 0xaf, - 0xb3, 0x8a, 0xc1, 0xcb, 0x28, 0xef, 0xc3, 0x20, 0xb3, 0x49, 0xe5, 0x27, 0xde, 0x43, 0xc5, 0xbe, - 0xdc, 0x74, 0x3d, 0x8f, 0x17, 0x37, 0x28, 0x66, 0xf2, 0xbb, 0xa0, 0x19, 0xd7, 0xc6, 0xc2, 0xba, - 0x61, 0x3f, 0x39, 0x1d, 0x9a, 0xb9, 0xb3, 0xa1, 0x99, 0xfb, 0x39, 0x34, 0x73, 0x27, 0x23, 0xd3, - 0x38, 0x1d, 0x99, 0xc6, 0xd9, 0xc8, 0x34, 0x7e, 0x8f, 0x4c, 0xe3, 0xcb, 0x1f, 0x33, 0xf7, 0xfe, - 0x8e, 0x26, 0xf8, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x34, 0x80, 0x2a, 0x5b, 0x4c, 0x06, 0x00, 0x00, + // 656 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xa4, 0x53, 0xcd, 0x6e, 0xd3, 0x4c, + 0x14, 0xb5, 0xf3, 0xd3, 0x2f, 0x99, 0x7c, 0x85, 0x32, 0x12, 0x52, 0x14, 0x09, 0x27, 0x0a, 0x9b, + 0x20, 0x95, 0xb1, 0x52, 0xa1, 0x52, 0xb5, 0x62, 0x51, 0xab, 0x05, 0x75, 0x81, 0x90, 0xa6, 0x14, + 0x21, 0x24, 0x16, 0x13, 0xe7, 0xd6, 0x31, 0xae, 0x7f, 0x34, 0x1e, 0xa7, 0x74, 0xd7, 0x47, 0x60, + 0xc9, 0x92, 0xf7, 0xe0, 0x05, 0xba, 0xec, 0x82, 0x05, 0x0b, 0x14, 0x91, 0xf0, 0x22, 0x68, 0xc6, + 0x43, 0x93, 0x36, 0x8d, 0x10, 0xed, 0xce, 0x73, 0xe6, 0x9e, 0x73, 0xee, 0x3d, 0xe3, 0x8b, 0xb6, + 0x83, 0x8d, 0x94, 0xf8, 0xb1, 0x1d, 0x64, 0x3d, 0xe0, 0x11, 0x08, 0x48, 0xed, 0x24, 0xf0, 0x6c, + 0x96, 0xf8, 0xa9, 0xcd, 0x32, 0x31, 0x80, 0x48, 0xf8, 0x2e, 0x13, 0x7e, 0x1c, 0xd9, 0xc3, 0x6e, + 0x0f, 0x04, 0xeb, 0xda, 0x1e, 0x44, 0xc0, 0x99, 0x80, 0x3e, 0x49, 0x78, 0x2c, 0x62, 0xdc, 0xcd, + 0x25, 0xc8, 0x54, 0x82, 0x24, 0x81, 0x47, 0xa4, 0x04, 0xb9, 0x2c, 0x41, 0xb4, 0x44, 0xe3, 0xb1, + 0xe7, 0x8b, 0x41, 0xd6, 0x23, 0x6e, 0x1c, 0xda, 0x5e, 0xec, 0xc5, 0xb6, 0x52, 0xea, 0x65, 0x87, + 0xea, 0xa4, 0x0e, 0xea, 0x2b, 0x77, 0x68, 0x3c, 0xd1, 0x4d, 0xb2, 0xc4, 0x0f, 0x99, 0x3b, 0xf0, + 0x23, 0xe0, 0x27, 0xd3, 0x36, 0x43, 0x10, 0xcc, 0x1e, 0xce, 0xf5, 0xd5, 0xb0, 0x17, 0xb1, 0x78, + 0x16, 0x09, 0x3f, 0x84, 0x39, 0xc2, 0xfa, 0xdf, 0x08, 0xa9, 0x3b, 0x80, 0x90, 0xcd, 0xf1, 0xd6, + 0x16, 0x66, 0x68, 0x73, 0x48, 0xe3, 0x8c, 0xbb, 0xf3, 0x5e, 0xab, 0x8b, 0x39, 0xd7, 0x8c, 0xd2, + 0xbd, 0xbe, 0x3a, 0x13, 0xfe, 0x91, 0xed, 0x47, 0x22, 0x15, 0xfc, 0x2a, 0xa5, 0xfd, 0x14, 0xa1, + 0xdd, 0x8f, 0x82, 0xb3, 0x37, 0xec, 0x28, 0x03, 0xdc, 0x44, 0x65, 0x5f, 0x40, 0x98, 0xd6, 0xcd, + 0x56, 0xb1, 0x53, 0x75, 0xaa, 0x93, 0x51, 0xb3, 0xbc, 0x27, 0x01, 0x9a, 0xe3, 0x9b, 0x95, 0xcf, + 0x5f, 0x9a, 0xc6, 0xe9, 0x8f, 0x96, 0xd1, 0xfe, 0x5a, 0x40, 0xb5, 0xd7, 0x71, 0x00, 0x11, 0x85, + 0xa1, 0x0f, 0xc7, 0xf8, 0x2d, 0xaa, 0xc8, 0x84, 0xfb, 0x4c, 0xb0, 0xba, 0xd9, 0x32, 0x3b, 0xb5, + 0xb5, 0x0e, 0x59, 0xf8, 0xe2, 0x64, 0xd8, 0x25, 0xaf, 0x7a, 0x1f, 0xc0, 0x15, 0x2f, 0x41, 0x30, + 0x07, 0x9f, 0x8d, 0x9a, 0xc6, 0x64, 0xd4, 0x44, 0x53, 0x8c, 0x5e, 0xa8, 0xe1, 0x3e, 0x2a, 0xa5, + 0x09, 0xb8, 0xf5, 0x82, 0x52, 0x75, 0xc8, 0x3f, 0xff, 0x47, 0x64, 0xa6, 0xcf, 0xfd, 0x04, 0x5c, + 0xe7, 0x7f, 0xed, 0x57, 0x92, 0x27, 0xaa, 0xd4, 0xf1, 0x11, 0x5a, 0x4a, 0x05, 0x13, 0x59, 0x5a, + 0x2f, 0x2a, 0x9f, 0x9d, 0x5b, 0xfa, 0x28, 0x2d, 0xe7, 0x8e, 0x76, 0x5a, 0xca, 0xcf, 0x54, 0x7b, + 0xb4, 0xd7, 0xd1, 0xdd, 0x2b, 0x4d, 0xe1, 0x87, 0xa8, 0x2c, 0x24, 0xa4, 0xd2, 0xab, 0x3a, 0xcb, + 0x9a, 0x59, 0xce, 0xeb, 0xf2, 0xbb, 0xf6, 0x37, 0x13, 0xdd, 0x9b, 0x73, 0xc1, 0x5b, 0x68, 0x79, + 0xa6, 0x23, 0xe8, 0x2b, 0x89, 0x8a, 0x73, 0x5f, 0x4b, 0x2c, 0x6f, 0xcf, 0x5e, 0xd2, 0xcb, 0xb5, + 0xf8, 0x3d, 0x2a, 0x65, 0x29, 0x70, 0x1d, 0xef, 0xd6, 0x0d, 0xc6, 0x3e, 0x48, 0x81, 0xef, 0x45, + 0x87, 0xf1, 0x34, 0x57, 0x89, 0x50, 0x25, 0x2b, 0xc7, 0x02, 0xce, 0x63, 0xae, 0x62, 0x9d, 0x19, + 0x6b, 0x57, 0x82, 0x34, 0xbf, 0x6b, 0x8f, 0x0b, 0xa8, 0xf2, 0x47, 0x05, 0xaf, 0xa2, 0x8a, 0x64, + 0x46, 0x2c, 0x04, 0x9d, 0xc5, 0x8a, 0x26, 0xa9, 0x1a, 0x89, 0xd3, 0x8b, 0x0a, 0xfc, 0x00, 0x15, + 0x33, 0xbf, 0xaf, 0xba, 0xaf, 0x3a, 0x35, 0x5d, 0x58, 0x3c, 0xd8, 0xdb, 0xa1, 0x12, 0xc7, 0x6d, + 0xb4, 0xe4, 0xf1, 0x38, 0x4b, 0xe4, 0xb3, 0xca, 0x5f, 0x1a, 0xc9, 0xc7, 0x78, 0xa1, 0x10, 0xaa, + 0x6f, 0x70, 0x80, 0xca, 0x20, 0x77, 0xa0, 0x5e, 0x6a, 0x15, 0x3b, 0xb5, 0xb5, 0xe7, 0xb7, 0x88, + 0x80, 0xa8, 0x65, 0xda, 0x8d, 0x04, 0x3f, 0x99, 0x19, 0x55, 0x62, 0x34, 0xf7, 0x68, 0x1c, 0xeb, + 0x85, 0x53, 0x35, 0x78, 0x05, 0x15, 0x03, 0x38, 0xc9, 0xc7, 0xa4, 0xf2, 0x13, 0xef, 0xa3, 0xf2, + 0x50, 0xee, 0xa2, 0x7e, 0x8f, 0x67, 0x37, 0x68, 0x66, 0xba, 0xd0, 0x34, 0xd7, 0xda, 0x2c, 0x6c, + 0x98, 0xce, 0xa3, 0xb3, 0xb1, 0x65, 0x9c, 0x8f, 0x2d, 0xe3, 0xfb, 0xd8, 0x32, 0x4e, 0x27, 0x96, + 0x79, 0x36, 0xb1, 0xcc, 0xf3, 0x89, 0x65, 0xfe, 0x9c, 0x58, 0xe6, 0xa7, 0x5f, 0x96, 0xf1, 0xee, + 0x3f, 0x2d, 0xf0, 0x3b, 0x00, 0x00, 0xff, 0xff, 0xec, 0x29, 0x42, 0xc3, 0xee, 0x05, 0x00, 0x00, } diff --git a/pkg/apis/authentication/v1beta1/generated.proto b/pkg/apis/authentication/v1beta1/generated.proto index 4fa0d1b7224..7df6a8d7d1b 100644 --- a/pkg/apis/authentication/v1beta1/generated.proto +++ b/pkg/apis/authentication/v1beta1/generated.proto @@ -44,8 +44,6 @@ message ExtraValue { // Note: TokenReview requests may be cached by the webhook token authenticator // plugin in the kube-apiserver. message TokenReview { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; diff --git a/pkg/apis/authorization/v1beta1/generated.pb.go b/pkg/apis/authorization/v1beta1/generated.pb.go index 96a3389bfef..93771098d8b 100644 --- a/pkg/apis/authorization/v1beta1/generated.pb.go +++ b/pkg/apis/authorization/v1beta1/generated.pb.go @@ -181,14 +181,6 @@ func (m *LocalSubjectAccessReview) MarshalTo(data []byte) (int, error) { return 0, err } i += n3 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n4, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n4 return i, nil } @@ -282,35 +274,27 @@ func (m *SelfSubjectAccessReview) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n5, err := m.ObjectMeta.MarshalTo(data[i:]) + n4, err := m.ObjectMeta.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n4 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n5, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } i += n5 - data[i] = 0x12 + data[i] = 0x1a i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n6, err := m.Spec.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n6, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } i += n6 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n7, err := m.Status.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n7 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n8, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n8 return i, nil } @@ -333,21 +317,21 @@ func (m *SelfSubjectAccessReviewSpec) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ResourceAttributes.Size())) - n9, err := m.ResourceAttributes.MarshalTo(data[i:]) + n7, err := m.ResourceAttributes.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n9 + i += n7 } if m.NonResourceAttributes != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.NonResourceAttributes.Size())) - n10, err := m.NonResourceAttributes.MarshalTo(data[i:]) + n8, err := m.NonResourceAttributes.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n10 + i += n8 } return i, nil } @@ -370,35 +354,27 @@ func (m *SubjectAccessReview) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n11, err := m.ObjectMeta.MarshalTo(data[i:]) + n9, err := m.ObjectMeta.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n9 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n10, err := m.Spec.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n10 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n11, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } i += n11 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n12, err := m.Spec.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n12 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n13, err := m.Status.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n13 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n14, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n14 return i, nil } @@ -421,21 +397,21 @@ func (m *SubjectAccessReviewSpec) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ResourceAttributes.Size())) - n15, err := m.ResourceAttributes.MarshalTo(data[i:]) + n12, err := m.ResourceAttributes.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n15 + i += n12 } if m.NonResourceAttributes != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.NonResourceAttributes.Size())) - n16, err := m.NonResourceAttributes.MarshalTo(data[i:]) + n13, err := m.NonResourceAttributes.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n16 + i += n13 } data[i] = 0x1a i++ @@ -471,11 +447,11 @@ func (m *SubjectAccessReviewSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n17, err := (&v).MarshalTo(data[i:]) + n14, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n17 + i += n14 } } return i, nil @@ -563,8 +539,6 @@ func (m *LocalSubjectAccessReview) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -607,8 +581,6 @@ func (m *SelfSubjectAccessReview) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -635,8 +607,6 @@ func (m *SubjectAccessReview) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -703,7 +673,6 @@ func (this *LocalSubjectAccessReview) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "SubjectAccessReviewSpec", "SubjectAccessReviewSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "SubjectAccessReviewStatus", "SubjectAccessReviewStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -743,7 +712,6 @@ func (this *SelfSubjectAccessReview) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "SelfSubjectAccessReviewSpec", "SelfSubjectAccessReviewSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "SubjectAccessReviewStatus", "SubjectAccessReviewStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -767,7 +735,6 @@ func (this *SubjectAccessReview) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "SubjectAccessReviewSpec", "SubjectAccessReviewSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "SubjectAccessReviewStatus", "SubjectAccessReviewStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -1014,36 +981,6 @@ func (m *LocalSubjectAccessReview) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1545,36 +1482,6 @@ func (m *SelfSubjectAccessReview) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1831,36 +1738,6 @@ func (m *SubjectAccessReview) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -2406,63 +2283,61 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 927 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x56, 0x4f, 0x6f, 0x1b, 0x45, - 0x14, 0xf7, 0xc6, 0x76, 0x62, 0x4f, 0x80, 0x94, 0xa9, 0x4a, 0xb6, 0x41, 0xb2, 0x2d, 0x23, 0xa1, - 0x54, 0x2a, 0xbb, 0x24, 0xe2, 0x4f, 0x55, 0x71, 0x20, 0x2b, 0xa2, 0xaa, 0x82, 0x16, 0x34, 0x29, - 0x11, 0x02, 0x2e, 0xb3, 0x9b, 0x57, 0x7b, 0xb1, 0xbd, 0xb3, 0x9a, 0x99, 0x75, 0x31, 0xa7, 0x7e, - 0x00, 0x0e, 0x1c, 0x7b, 0xe4, 0x1b, 0x20, 0x24, 0x24, 0x6e, 0x5c, 0xc9, 0xb1, 0x47, 0x0e, 0xc8, - 0x22, 0xcb, 0xb7, 0xe0, 0x84, 0x66, 0x76, 0xd6, 0x1b, 0xd7, 0x6b, 0x2a, 0x43, 0x85, 0x84, 0xc8, - 0x6d, 0xe7, 0xfd, 0xf9, 0xfd, 0xde, 0xbc, 0x79, 0x6f, 0xdf, 0x43, 0xef, 0x0e, 0x6e, 0x08, 0x27, - 0x64, 0xee, 0x20, 0xf1, 0x81, 0x47, 0x20, 0x41, 0xb8, 0xf1, 0xa0, 0xe7, 0xd2, 0x38, 0x14, 0x2e, - 0x4d, 0x64, 0x9f, 0xf1, 0xf0, 0x2b, 0x2a, 0x43, 0x16, 0xb9, 0xe3, 0x3d, 0x1f, 0x24, 0xdd, 0x73, - 0x7b, 0x10, 0x01, 0xa7, 0x12, 0x4e, 0x9c, 0x98, 0x33, 0xc9, 0xf0, 0xeb, 0x19, 0x82, 0x53, 0x20, - 0x38, 0xf1, 0xa0, 0xe7, 0x28, 0x04, 0x67, 0x0e, 0xc1, 0x31, 0x08, 0x3b, 0xaf, 0xf5, 0x42, 0xd9, - 0x4f, 0x7c, 0x27, 0x60, 0x23, 0xb7, 0xc7, 0x7a, 0xcc, 0xd5, 0x40, 0x7e, 0x72, 0x5f, 0x9f, 0xf4, - 0x41, 0x7f, 0x65, 0x04, 0x3b, 0x6f, 0x98, 0x10, 0x69, 0x1c, 0x8e, 0x68, 0xd0, 0x0f, 0x23, 0xe0, - 0x93, 0x22, 0xc8, 0x11, 0x48, 0xea, 0x8e, 0x17, 0xc2, 0xda, 0x71, 0x97, 0x79, 0xf1, 0x24, 0x92, - 0xe1, 0x08, 0x16, 0x1c, 0xde, 0x7a, 0x9a, 0x83, 0x08, 0xfa, 0x30, 0xa2, 0x0b, 0x7e, 0xfb, 0x4b, - 0x33, 0xe8, 0x72, 0x10, 0x2c, 0xe1, 0xc1, 0x22, 0xd7, 0xf5, 0xe5, 0x3e, 0x25, 0x57, 0xd9, 0x2b, - 0xb7, 0x4e, 0x64, 0x38, 0x74, 0xc3, 0x48, 0x0a, 0xc9, 0x9f, 0x74, 0xe9, 0xbe, 0x8d, 0xd0, 0xe1, - 0x97, 0x92, 0xd3, 0x63, 0x3a, 0x4c, 0x00, 0xb7, 0x51, 0x3d, 0x94, 0x30, 0x12, 0xb6, 0xd5, 0xa9, - 0xee, 0x36, 0xbd, 0x66, 0x3a, 0x6d, 0xd7, 0x6f, 0x2b, 0x01, 0xc9, 0xe4, 0x37, 0x1b, 0x8f, 0xbe, - 0x6d, 0x57, 0x1e, 0xfe, 0xda, 0xa9, 0x74, 0x7f, 0xa8, 0x22, 0xfb, 0x03, 0x16, 0xd0, 0xe1, 0x51, - 0xe2, 0x7f, 0x01, 0x81, 0x3c, 0x08, 0x02, 0x10, 0x82, 0xc0, 0x38, 0x84, 0x07, 0xf8, 0x13, 0xd4, - 0x50, 0xe9, 0x3e, 0xa1, 0x92, 0xda, 0x56, 0xc7, 0xda, 0xdd, 0xdc, 0xdf, 0x75, 0x96, 0xbe, 0xbe, - 0x33, 0xde, 0x73, 0x3e, 0xd4, 0x18, 0x77, 0x40, 0x52, 0x0f, 0x9f, 0x4e, 0xdb, 0x95, 0x74, 0xda, - 0x46, 0x85, 0x8c, 0xcc, 0xd0, 0xf0, 0x00, 0xd5, 0x44, 0x0c, 0x81, 0xbd, 0xa6, 0x51, 0x6f, 0x3b, - 0xab, 0xd6, 0x94, 0x53, 0x12, 0xee, 0x51, 0x0c, 0x81, 0xf7, 0x9c, 0xa1, 0xad, 0xa9, 0x13, 0xd1, - 0x24, 0x58, 0xa0, 0x75, 0x21, 0xa9, 0x4c, 0x84, 0x5d, 0xd5, 0x74, 0xef, 0x3f, 0x1b, 0x3a, 0x0d, - 0xe9, 0xbd, 0x60, 0x08, 0xd7, 0xb3, 0x33, 0x31, 0x54, 0xf8, 0x73, 0xd4, 0x90, 0x93, 0x18, 0xd4, - 0xbd, 0xed, 0x9a, 0xa6, 0x75, 0x72, 0xda, 0xf3, 0x15, 0x57, 0x10, 0xab, 0xdc, 0xa8, 0x1c, 0xde, - 0x33, 0x5e, 0xde, 0x25, 0x83, 0xdc, 0xc8, 0x25, 0x64, 0x86, 0xd8, 0xfd, 0x0c, 0x5d, 0xb9, 0xcb, - 0x22, 0x62, 0xea, 0xed, 0x40, 0x4a, 0x1e, 0xfa, 0x89, 0x04, 0x81, 0x3b, 0xa8, 0x16, 0x53, 0xd9, - 0xd7, 0xcf, 0xd5, 0x2c, 0xb2, 0xf1, 0x11, 0x95, 0x7d, 0xa2, 0x35, 0xca, 0x62, 0x0c, 0xdc, 0xd7, - 0xa9, 0x3f, 0x67, 0x71, 0x0c, 0xdc, 0x27, 0x5a, 0xd3, 0xfd, 0x69, 0x0d, 0xe1, 0x12, 0x68, 0x17, - 0x35, 0x23, 0x3a, 0x02, 0x11, 0xd3, 0x00, 0x0c, 0xfe, 0x8b, 0xc6, 0xbb, 0x79, 0x37, 0x57, 0x90, - 0xc2, 0xe6, 0xe9, 0x4c, 0xf8, 0x15, 0x54, 0xef, 0x71, 0x96, 0xc4, 0xfa, 0x61, 0x9a, 0xde, 0xf3, - 0xc6, 0xa4, 0x7e, 0x4b, 0x09, 0x49, 0xa6, 0xc3, 0xd7, 0xd0, 0xc6, 0x18, 0xb8, 0x08, 0x59, 0xa4, - 0x13, 0xd9, 0xf4, 0xb6, 0x8c, 0xd9, 0xc6, 0x71, 0x26, 0x26, 0xb9, 0x1e, 0x5f, 0x47, 0x8d, 0xbc, - 0x07, 0xed, 0xba, 0xb6, 0x9d, 0x25, 0x31, 0xbf, 0x10, 0x99, 0x59, 0xe0, 0x37, 0xd1, 0xa6, 0x48, - 0xfc, 0x99, 0xc3, 0xba, 0x76, 0xb8, 0x6c, 0x1c, 0x36, 0x8f, 0x0a, 0x15, 0x39, 0x6f, 0xa7, 0xae, - 0xa5, 0xee, 0x68, 0x6f, 0xcc, 0x5f, 0x4b, 0xa5, 0x80, 0x68, 0x4d, 0xf7, 0xc7, 0x2a, 0xda, 0x3e, - 0x82, 0xe1, 0xfd, 0x7f, 0xb7, 0xa7, 0xd8, 0x5c, 0x4f, 0xdd, 0xf9, 0x1b, 0x45, 0x5e, 0x1e, 0xf2, - 0xff, 0xa9, 0xaf, 0x7e, 0x5e, 0x43, 0x2f, 0xff, 0x45, 0x1a, 0xf0, 0xd7, 0x16, 0xc2, 0x7c, 0xa1, - 0x35, 0xcc, 0x43, 0xbe, 0xb7, 0xfa, 0xfd, 0x17, 0xdb, 0xcc, 0x7b, 0x29, 0x9d, 0xb6, 0x4b, 0xda, - 0x8f, 0x94, 0xf0, 0xe2, 0x47, 0x16, 0xba, 0x12, 0x95, 0xfd, 0x07, 0x4c, 0x11, 0xdc, 0x5a, 0x3d, - 0xa2, 0xd2, 0xdf, 0x8a, 0x77, 0x35, 0x9d, 0xb6, 0xcb, 0xff, 0x38, 0xa4, 0x3c, 0x80, 0xee, 0x77, - 0x55, 0x74, 0xf9, 0x62, 0xa6, 0xfc, 0x97, 0x6a, 0xff, 0x8f, 0x1a, 0xda, 0xbe, 0xa8, 0xfb, 0x7f, - 0x58, 0xf7, 0xb3, 0xa1, 0x57, 0x9d, 0x9f, 0x0e, 0x1f, 0x0b, 0xe0, 0x66, 0xe8, 0x75, 0xf2, 0xa1, - 0x57, 0xd3, 0xdb, 0x19, 0x52, 0x0f, 0xad, 0x07, 0x9e, 0xc8, 0x27, 0xde, 0x04, 0xd5, 0x41, 0x6d, - 0x73, 0x76, 0xbd, 0x53, 0xdd, 0xdd, 0xdc, 0xbf, 0xf7, 0xcc, 0x4a, 0xd9, 0xd1, 0x4b, 0xe2, 0x61, - 0x24, 0xf9, 0xa4, 0x18, 0xb6, 0x5a, 0x46, 0x32, 0xc6, 0x9d, 0xb1, 0x59, 0x24, 0xb5, 0x0d, 0xbe, - 0x84, 0xaa, 0x03, 0x98, 0x64, 0xc3, 0x9e, 0xa8, 0x4f, 0x4c, 0x50, 0x7d, 0xac, 0x76, 0x4c, 0x93, - 0xe8, 0x77, 0x56, 0x0f, 0xad, 0xd8, 0x53, 0x49, 0x06, 0x75, 0x73, 0xed, 0x86, 0xd5, 0xfd, 0xde, - 0x42, 0x57, 0x97, 0x36, 0x84, 0x5a, 0x01, 0xe8, 0x70, 0xc8, 0x1e, 0xc0, 0x89, 0x8e, 0xa5, 0x51, - 0xac, 0x00, 0x07, 0x99, 0x98, 0xe4, 0x7a, 0xfc, 0x2a, 0x5a, 0xe7, 0x40, 0x05, 0x8b, 0xcc, 0xda, - 0x31, 0xeb, 0x25, 0xa2, 0xa5, 0xc4, 0x68, 0xf1, 0x01, 0xda, 0x02, 0x45, 0xaf, 0x83, 0x3b, 0xe4, - 0x9c, 0x71, 0xf3, 0x64, 0xdb, 0xc6, 0x61, 0xeb, 0x70, 0x5e, 0x4d, 0x9e, 0xb4, 0xf7, 0xae, 0x9d, - 0x9e, 0xb5, 0x2a, 0x8f, 0xcf, 0x5a, 0x95, 0x5f, 0xce, 0x5a, 0x95, 0x87, 0x69, 0xcb, 0x3a, 0x4d, - 0x5b, 0xd6, 0xe3, 0xb4, 0x65, 0xfd, 0x96, 0xb6, 0xac, 0x6f, 0x7e, 0x6f, 0x55, 0x3e, 0xdd, 0x30, - 0x97, 0xfe, 0x33, 0x00, 0x00, 0xff, 0xff, 0x4a, 0x7d, 0x0c, 0xb9, 0x77, 0x0d, 0x00, 0x00, + // 891 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x56, 0x4f, 0x8f, 0xdb, 0x44, + 0x14, 0x8f, 0x93, 0x78, 0x37, 0x99, 0x05, 0xb6, 0x4c, 0x55, 0xd6, 0x5d, 0x24, 0x27, 0x0a, 0x12, + 0xda, 0x4a, 0xc5, 0x66, 0x57, 0xfc, 0xa9, 0x2a, 0x0e, 0xac, 0xc5, 0xaa, 0xaa, 0xa0, 0x05, 0xcd, + 0xc2, 0x0a, 0xc1, 0x69, 0xec, 0x7d, 0x4d, 0x4c, 0x12, 0x8f, 0x35, 0x33, 0x76, 0x09, 0xa7, 0x7e, + 0x00, 0x0e, 0x1c, 0x7b, 0xe4, 0x2b, 0xf0, 0x05, 0xb8, 0xb2, 0xc7, 0x72, 0x41, 0x20, 0xa1, 0x88, + 0x35, 0xdf, 0x82, 0x13, 0xf2, 0x78, 0x12, 0x37, 0x8d, 0x43, 0x15, 0x58, 0xa1, 0x1e, 0x7a, 0xf3, + 0xbc, 0x3f, 0xbf, 0xf7, 0x9b, 0x37, 0xbf, 0xf1, 0x1b, 0xf4, 0xfe, 0xf0, 0x86, 0x70, 0x42, 0xe6, + 0x0e, 0x13, 0x1f, 0x78, 0x04, 0x12, 0x84, 0x1b, 0x0f, 0xfb, 0x2e, 0x8d, 0x43, 0xe1, 0xd2, 0x44, + 0x0e, 0x18, 0x0f, 0xbf, 0xa1, 0x32, 0x64, 0x91, 0x9b, 0xee, 0xfb, 0x20, 0xe9, 0xbe, 0xdb, 0x87, + 0x08, 0x38, 0x95, 0x70, 0xea, 0xc4, 0x9c, 0x49, 0x86, 0xdf, 0x2c, 0x10, 0x9c, 0x12, 0xc1, 0x89, + 0x87, 0x7d, 0x27, 0x47, 0x70, 0x16, 0x10, 0x1c, 0x8d, 0xb0, 0xfb, 0x46, 0x3f, 0x94, 0x83, 0xc4, + 0x77, 0x02, 0x36, 0x76, 0xfb, 0xac, 0xcf, 0x5c, 0x05, 0xe4, 0x27, 0xf7, 0xd4, 0x4a, 0x2d, 0xd4, + 0x57, 0x51, 0x60, 0xf7, 0x2d, 0x4d, 0x91, 0xc6, 0xe1, 0x98, 0x06, 0x83, 0x30, 0x02, 0x3e, 0x29, + 0x49, 0x8e, 0x41, 0x52, 0x37, 0x5d, 0xa2, 0xb5, 0xeb, 0xae, 0xca, 0xe2, 0x49, 0x24, 0xc3, 0x31, + 0x2c, 0x25, 0xbc, 0xf3, 0xb4, 0x04, 0x11, 0x0c, 0x60, 0x4c, 0x97, 0xf2, 0x0e, 0x56, 0x76, 0xd0, + 0xe5, 0x20, 0x58, 0xc2, 0x83, 0xe5, 0x5a, 0xd7, 0x57, 0xe7, 0x54, 0x6c, 0x65, 0xbf, 0x3a, 0x3a, + 0x91, 0xe1, 0xc8, 0x0d, 0x23, 0x29, 0x24, 0x7f, 0x32, 0xa5, 0xf7, 0x2e, 0x42, 0x47, 0x5f, 0x4b, + 0x4e, 0x4f, 0xe8, 0x28, 0x01, 0xdc, 0x41, 0x66, 0x28, 0x61, 0x2c, 0x2c, 0xa3, 0xdb, 0xd8, 0x6b, + 0x7b, 0xed, 0x6c, 0xda, 0x31, 0x6f, 0xe7, 0x06, 0x52, 0xd8, 0x6f, 0xb6, 0x1e, 0x7e, 0xdf, 0xa9, + 0x3d, 0xf8, 0xbd, 0x5b, 0xeb, 0xfd, 0x52, 0x47, 0xd6, 0x47, 0x2c, 0xa0, 0xa3, 0xe3, 0xc4, 0xff, + 0x0a, 0x02, 0x79, 0x18, 0x04, 0x20, 0x04, 0x81, 0x34, 0x84, 0xfb, 0xf8, 0x73, 0xd4, 0xca, 0xdb, + 0x7d, 0x4a, 0x25, 0xb5, 0x8c, 0xae, 0xb1, 0xb7, 0x75, 0xb0, 0xe7, 0xac, 0x3c, 0x7d, 0x27, 0xdd, + 0x77, 0x3e, 0x56, 0x18, 0x77, 0x40, 0x52, 0x0f, 0x9f, 0x4d, 0x3b, 0xb5, 0x6c, 0xda, 0x41, 0xa5, + 0x8d, 0xcc, 0xd1, 0xf0, 0x10, 0x35, 0x45, 0x0c, 0x81, 0x55, 0x57, 0xa8, 0xb7, 0x9d, 0x75, 0x35, + 0xe5, 0x54, 0xd0, 0x3d, 0x8e, 0x21, 0xf0, 0x5e, 0xd0, 0x65, 0x9b, 0xf9, 0x8a, 0xa8, 0x22, 0x58, + 0xa0, 0x0d, 0x21, 0xa9, 0x4c, 0x84, 0xd5, 0x50, 0xe5, 0x3e, 0xbc, 0x98, 0x72, 0x0a, 0xd2, 0x7b, + 0x49, 0x17, 0xdc, 0x28, 0xd6, 0x44, 0x97, 0xea, 0x7d, 0x89, 0xae, 0xdc, 0x65, 0x11, 0xd1, 0x8a, + 0x38, 0x94, 0x92, 0x87, 0x7e, 0x22, 0x41, 0xe0, 0x2e, 0x6a, 0xc6, 0x54, 0x0e, 0x54, 0x43, 0xdb, + 0x25, 0xdf, 0x4f, 0xa8, 0x1c, 0x10, 0xe5, 0xc9, 0x23, 0x52, 0xe0, 0xbe, 0x6a, 0xce, 0x63, 0x11, + 0x27, 0xc0, 0x7d, 0xa2, 0x3c, 0xbd, 0x1f, 0xeb, 0x08, 0x57, 0x40, 0xbb, 0xa8, 0x1d, 0xd1, 0x31, + 0x88, 0x98, 0x06, 0xa0, 0xf1, 0x5f, 0xd6, 0xd9, 0xed, 0xbb, 0x33, 0x07, 0x29, 0x63, 0x9e, 0x5e, + 0x09, 0xbf, 0x86, 0xcc, 0x3e, 0x67, 0x49, 0xac, 0x5a, 0xd7, 0xf6, 0x5e, 0xd4, 0x21, 0xe6, 0xad, + 0xdc, 0x48, 0x0a, 0x1f, 0xbe, 0x86, 0x36, 0x53, 0xe0, 0x22, 0x64, 0x91, 0xd5, 0x54, 0x61, 0xdb, + 0x3a, 0x6c, 0xf3, 0xa4, 0x30, 0x93, 0x99, 0x1f, 0x5f, 0x47, 0xad, 0xd9, 0x2d, 0xb1, 0x4c, 0x15, + 0x7b, 0x49, 0xc7, 0xb6, 0x66, 0x1b, 0x22, 0xf3, 0x08, 0xfc, 0x36, 0xda, 0x12, 0x89, 0x3f, 0x4f, + 0xd8, 0x50, 0x09, 0x97, 0x75, 0xc2, 0xd6, 0x71, 0xe9, 0x22, 0x8f, 0xc7, 0xe5, 0xdb, 0xca, 0xf7, + 0x68, 0x6d, 0x2e, 0x6e, 0x2b, 0x6f, 0x01, 0x51, 0x9e, 0xde, 0x6f, 0x75, 0xb4, 0x73, 0x0c, 0xa3, + 0x7b, 0xff, 0xaf, 0xea, 0xd9, 0x82, 0xea, 0xef, 0xfc, 0x0b, 0x19, 0x56, 0x53, 0x7e, 0xb6, 0x94, + 0xff, 0x53, 0x1d, 0xbd, 0xfa, 0x0f, 0x44, 0xf1, 0xb7, 0x06, 0xc2, 0x7c, 0x49, 0xbc, 0xba, 0xd5, + 0x1f, 0xac, 0xcf, 0x70, 0xf9, 0x22, 0x78, 0xaf, 0x64, 0xd3, 0x4e, 0xc5, 0x05, 0x21, 0x15, 0x75, + 0xf1, 0x43, 0x03, 0x5d, 0x89, 0xaa, 0x6e, 0xaa, 0x3e, 0xa6, 0x5b, 0xeb, 0x33, 0xaa, 0xbc, 0xf8, + 0xde, 0xd5, 0x6c, 0xda, 0xa9, 0xfe, 0x27, 0x90, 0x6a, 0x02, 0xbd, 0x9f, 0xeb, 0xe8, 0xf2, 0xf3, + 0xff, 0xf2, 0xc5, 0xaa, 0xf3, 0xaf, 0x26, 0xda, 0x79, 0xae, 0xcc, 0xff, 0xa8, 0xcc, 0xf9, 0xe0, + 0x68, 0x2c, 0xfe, 0x61, 0x3f, 0x13, 0xc0, 0xf5, 0xe0, 0xe8, 0xce, 0x06, 0x47, 0x53, 0xbd, 0x41, + 0x50, 0x7e, 0x14, 0x6a, 0x68, 0x88, 0xd9, 0xd4, 0x98, 0x20, 0x13, 0xf2, 0x37, 0x8b, 0x65, 0x76, + 0x1b, 0x7b, 0x5b, 0x07, 0x9f, 0x5e, 0x98, 0xd8, 0x1c, 0xf5, 0x14, 0x3a, 0x8a, 0x24, 0x9f, 0x94, + 0x03, 0x4b, 0xd9, 0x48, 0x51, 0x71, 0x37, 0xd5, 0xcf, 0x25, 0x15, 0x83, 0x2f, 0xa1, 0xc6, 0x10, + 0x26, 0xc5, 0xc0, 0x24, 0xf9, 0x27, 0x26, 0xc8, 0x4c, 0xf3, 0x97, 0x94, 0x6e, 0xf4, 0x7b, 0xeb, + 0x53, 0x2b, 0x5f, 0x63, 0xa4, 0x80, 0xba, 0x59, 0xbf, 0x61, 0xf4, 0x7e, 0x30, 0xd0, 0xd5, 0x95, + 0x92, 0xcd, 0xc7, 0x28, 0x1d, 0x8d, 0xd8, 0x7d, 0x38, 0x55, 0x5c, 0x5a, 0xe5, 0x18, 0x3d, 0x2c, + 0xcc, 0x64, 0xe6, 0xc7, 0xaf, 0xa3, 0x0d, 0x0e, 0x54, 0xb0, 0x48, 0x8f, 0xee, 0xb9, 0xda, 0x89, + 0xb2, 0x12, 0xed, 0xc5, 0x87, 0x68, 0x1b, 0xf2, 0xf2, 0x8a, 0xdc, 0x11, 0xe7, 0x8c, 0xeb, 0x23, + 0xdb, 0xd1, 0x09, 0xdb, 0x47, 0x8b, 0x6e, 0xf2, 0x64, 0xbc, 0x77, 0xed, 0xec, 0xdc, 0xae, 0x3d, + 0x3a, 0xb7, 0x6b, 0xbf, 0x9e, 0xdb, 0xb5, 0x07, 0x99, 0x6d, 0x9c, 0x65, 0xb6, 0xf1, 0x28, 0xb3, + 0x8d, 0x3f, 0x32, 0xdb, 0xf8, 0xee, 0x4f, 0xbb, 0xf6, 0xc5, 0xa6, 0xde, 0xf4, 0xdf, 0x01, 0x00, + 0x00, 0xff, 0xff, 0x1f, 0x8b, 0xf7, 0x94, 0x5d, 0x0c, 0x00, 0x00, } diff --git a/pkg/apis/authorization/v1beta1/generated.proto b/pkg/apis/authorization/v1beta1/generated.proto index e35bd8823c2..6afbfb663ae 100644 --- a/pkg/apis/authorization/v1beta1/generated.proto +++ b/pkg/apis/authorization/v1beta1/generated.proto @@ -44,8 +44,6 @@ message ExtraValue { // Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions // checking. message LocalSubjectAccessReview { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; @@ -107,8 +105,6 @@ message ResourceAttributes { // spec.namespace means "in all namespaces". Self is a special case, because users should always be able // to check whether they can perform an action message SelfSubjectAccessReview { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; @@ -134,8 +130,6 @@ message SelfSubjectAccessReviewSpec { // SubjectAccessReview checks whether or not a user or group can perform an action. message SubjectAccessReview { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; diff --git a/pkg/apis/autoscaling/v1/generated.pb.go b/pkg/apis/autoscaling/v1/generated.pb.go index 851ffa99250..45982ab9d4d 100644 --- a/pkg/apis/autoscaling/v1/generated.pb.go +++ b/pkg/apis/autoscaling/v1/generated.pb.go @@ -175,14 +175,6 @@ func (m *HorizontalPodAutoscaler) MarshalTo(data []byte) (int, error) { return 0, err } i += n3 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n4, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n4 return i, nil } @@ -204,11 +196,11 @@ func (m *HorizontalPodAutoscalerList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n5, err := m.ListMeta.MarshalTo(data[i:]) + n4, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n5 + i += n4 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -221,14 +213,6 @@ func (m *HorizontalPodAutoscalerList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n6, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n6 return i, nil } @@ -250,11 +234,11 @@ func (m *HorizontalPodAutoscalerSpec) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ScaleTargetRef.Size())) - n7, err := m.ScaleTargetRef.MarshalTo(data[i:]) + n5, err := m.ScaleTargetRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n7 + i += n5 if m.MinReplicas != nil { data[i] = 0x10 i++ @@ -295,11 +279,11 @@ func (m *HorizontalPodAutoscalerStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.LastScaleTime.Size())) - n8, err := m.LastScaleTime.MarshalTo(data[i:]) + n6, err := m.LastScaleTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n8 + i += n6 } data[i] = 0x18 i++ @@ -333,35 +317,27 @@ func (m *Scale) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n9, err := m.ObjectMeta.MarshalTo(data[i:]) + n7, err := m.ObjectMeta.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n7 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n8, err := m.Spec.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n8 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n9, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } i += n9 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n10, err := m.Spec.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n10 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n11, err := m.Status.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n11 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n12, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n12 return i, nil } @@ -459,8 +435,6 @@ func (m *HorizontalPodAutoscaler) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -475,8 +449,6 @@ func (m *HorizontalPodAutoscalerList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -522,8 +494,6 @@ func (m *Scale) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -576,7 +546,6 @@ func (this *HorizontalPodAutoscaler) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "HorizontalPodAutoscalerSpec", "HorizontalPodAutoscalerSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "HorizontalPodAutoscalerStatus", "HorizontalPodAutoscalerStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -588,7 +557,6 @@ func (this *HorizontalPodAutoscalerList) String() string { s := strings.Join([]string{`&HorizontalPodAutoscalerList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "HorizontalPodAutoscaler", "HorizontalPodAutoscaler", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -628,7 +596,6 @@ func (this *Scale) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "ScaleSpec", "ScaleSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "ScaleStatus", "ScaleStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -918,36 +885,6 @@ func (m *HorizontalPodAutoscaler) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1059,36 +996,6 @@ func (m *HorizontalPodAutoscalerList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1529,36 +1436,6 @@ func (m *Scale) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1853,61 +1730,59 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 888 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xc4, 0x56, 0x4d, 0x6f, 0xdc, 0x44, - 0x18, 0x5e, 0xef, 0x47, 0x95, 0x8e, 0x49, 0x02, 0x83, 0xd4, 0xae, 0x52, 0x61, 0x47, 0x0b, 0x87, - 0x80, 0x8a, 0xad, 0x5d, 0x95, 0x8a, 0x1e, 0xe3, 0xa0, 0xd2, 0x8a, 0x86, 0x46, 0x93, 0xb4, 0x42, - 0x08, 0x21, 0xcd, 0x7a, 0xdf, 0x3a, 0xd3, 0x5d, 0x7f, 0x68, 0x66, 0xbc, 0xa2, 0x3d, 0x71, 0xe2, - 0xcc, 0x85, 0x9f, 0xc1, 0x8f, 0x80, 0x53, 0x8e, 0x3d, 0x72, 0x5a, 0x11, 0xf3, 0x23, 0xb8, 0x70, - 0x40, 0x9e, 0x9d, 0x78, 0xed, 0x4d, 0x9c, 0x0f, 0x11, 0xd4, 0xdb, 0xce, 0xcc, 0xf3, 0xf1, 0xce, - 0x33, 0xef, 0x78, 0x16, 0x3d, 0x18, 0x7f, 0x2e, 0x1c, 0x16, 0xbb, 0xe3, 0x74, 0x08, 0x3c, 0x02, - 0x09, 0xc2, 0x4d, 0xc6, 0x81, 0x4b, 0x13, 0x26, 0x5c, 0x9a, 0xca, 0x58, 0xf8, 0x74, 0xc2, 0xa2, - 0xc0, 0x9d, 0xf6, 0xdd, 0x00, 0x22, 0xe0, 0x54, 0xc2, 0xc8, 0x49, 0x78, 0x2c, 0x63, 0xfc, 0xf1, - 0x9c, 0xea, 0x2c, 0xa8, 0x4e, 0x32, 0x0e, 0x9c, 0x9c, 0xea, 0x94, 0xa8, 0xce, 0xb4, 0xbf, 0xf1, - 0x69, 0xc0, 0xe4, 0x61, 0x3a, 0x74, 0xfc, 0x38, 0x74, 0x83, 0x38, 0x88, 0x5d, 0xa5, 0x30, 0x4c, - 0x5f, 0xa8, 0x91, 0x1a, 0xa8, 0x5f, 0x73, 0xe5, 0x8d, 0x7b, 0xba, 0x28, 0x9a, 0xb0, 0x90, 0xfa, - 0x87, 0x2c, 0x02, 0xfe, 0x6a, 0x51, 0x56, 0x08, 0x92, 0x9e, 0x51, 0xcf, 0x86, 0x5b, 0xc7, 0xe2, - 0x69, 0x24, 0x59, 0x08, 0xa7, 0x08, 0xf7, 0x2f, 0x22, 0x08, 0xff, 0x10, 0x42, 0x7a, 0x8a, 0x37, - 0xa8, 0xcd, 0xcc, 0xe5, 0x20, 0xe2, 0x94, 0xfb, 0xa7, 0xbd, 0xee, 0xd6, 0x73, 0xce, 0xd8, 0x4a, - 0xff, 0x6c, 0x74, 0x2a, 0xd9, 0xc4, 0x65, 0x91, 0x14, 0x92, 0x2f, 0x53, 0x7a, 0xbf, 0x18, 0xe8, - 0xce, 0x0e, 0x8f, 0x85, 0x78, 0x0e, 0x5c, 0xb0, 0x38, 0x7a, 0x3a, 0x7c, 0x09, 0xbe, 0x24, 0xf0, - 0x02, 0x38, 0x44, 0x3e, 0xe0, 0x4d, 0xd4, 0x1e, 0xb3, 0x68, 0xd4, 0x35, 0x36, 0x8d, 0xad, 0x9b, - 0xde, 0x3b, 0x47, 0x33, 0xbb, 0x91, 0xcd, 0xec, 0xf6, 0x57, 0x2c, 0x1a, 0x11, 0xb5, 0x92, 0x23, - 0x22, 0x1a, 0x42, 0xb7, 0x59, 0x45, 0x7c, 0x4d, 0x43, 0x20, 0x6a, 0x05, 0x0f, 0x10, 0xa2, 0x09, - 0xd3, 0x06, 0xdd, 0x96, 0xc2, 0x61, 0x8d, 0x43, 0xdb, 0x7b, 0x8f, 0xf5, 0x0a, 0x29, 0xa1, 0x7a, - 0xbf, 0xb6, 0xd0, 0xed, 0x47, 0x31, 0x67, 0xaf, 0xe3, 0x48, 0xd2, 0xc9, 0x5e, 0x3c, 0xda, 0xd6, - 0xad, 0x01, 0x1c, 0x7f, 0x83, 0x56, 0xf2, 0xc3, 0x1c, 0x51, 0x49, 0x55, 0x5d, 0xe6, 0x60, 0xcb, - 0xa9, 0x6d, 0x2a, 0x67, 0xda, 0x77, 0xe6, 0x9b, 0xda, 0x05, 0x49, 0x17, 0xbe, 0x8b, 0x39, 0x52, - 0xa8, 0xe1, 0x43, 0xd4, 0x16, 0x09, 0xf8, 0x6a, 0x2f, 0xe6, 0xe0, 0xa1, 0x73, 0xe9, 0x56, 0x75, - 0x6a, 0x6a, 0xdd, 0x4f, 0xc0, 0x5f, 0x64, 0x92, 0x8f, 0x88, 0x72, 0xc0, 0x09, 0xba, 0x21, 0x24, - 0x95, 0xa9, 0x50, 0x79, 0x98, 0x83, 0x47, 0xd7, 0xe0, 0xa5, 0xf4, 0xbc, 0x35, 0xed, 0x76, 0x63, - 0x3e, 0x26, 0xda, 0x07, 0x7f, 0x87, 0x56, 0xe4, 0xab, 0x04, 0xf2, 0x1d, 0x77, 0xdb, 0xca, 0xd3, - 0x39, 0xf1, 0x2c, 0x77, 0xf2, 0xc2, 0x35, 0x4f, 0x25, 0xb7, 0x3b, 0xd0, 0x2c, 0xef, 0x5d, 0xad, - 0xbc, 0x72, 0x32, 0x43, 0x0a, 0xc5, 0xde, 0xef, 0x4d, 0x74, 0xa7, 0xa6, 0xae, 0x27, 0x4c, 0xc8, - 0xdc, 0x7d, 0xe9, 0xcc, 0x2e, 0xe9, 0x9e, 0xb3, 0xab, 0xee, 0x27, 0x33, 0xa5, 0x73, 0x0b, 0x50, - 0x87, 0x49, 0x08, 0x45, 0xb7, 0xb9, 0xd9, 0xda, 0x32, 0x07, 0xde, 0x7f, 0x0f, 0xd3, 0x5b, 0xd5, - 0x76, 0x9d, 0xc7, 0xb9, 0x30, 0x99, 0xeb, 0x57, 0x42, 0x6c, 0x5d, 0x7b, 0x88, 0xff, 0xd4, 0x87, - 0x98, 0xb7, 0x0e, 0xfe, 0xc9, 0x40, 0x6b, 0x6a, 0x78, 0x40, 0x79, 0x00, 0xf9, 0x2d, 0xd5, 0x59, - 0x5e, 0xa5, 0x53, 0xcf, 0xb9, 0xed, 0xde, 0x2d, 0x5d, 0xdc, 0xda, 0x7e, 0xc5, 0x85, 0x2c, 0xb9, - 0xe2, 0x3e, 0x32, 0x43, 0x16, 0x11, 0x48, 0x26, 0xcc, 0xa7, 0x42, 0x5d, 0x97, 0x8e, 0xb7, 0x9e, - 0xcd, 0x6c, 0x73, 0x77, 0x31, 0x4d, 0xca, 0x18, 0xfc, 0x19, 0x32, 0x43, 0xfa, 0x43, 0x41, 0x69, - 0x29, 0xca, 0xfb, 0xda, 0xcf, 0xdc, 0x5d, 0x2c, 0x91, 0x32, 0x0e, 0xbf, 0x44, 0x96, 0x54, 0xb6, - 0x3b, 0x7b, 0xcf, 0x9e, 0x49, 0x36, 0x61, 0xaf, 0xa9, 0x64, 0x71, 0xb4, 0x07, 0xdc, 0x87, 0x48, - 0xd2, 0x00, 0x54, 0x2f, 0x77, 0xbc, 0x5e, 0x36, 0xb3, 0xad, 0x83, 0x73, 0x91, 0xe4, 0x02, 0xa5, - 0xde, 0x6f, 0x2d, 0xf4, 0xc1, 0xb9, 0x77, 0x0b, 0x3f, 0x44, 0x38, 0x1e, 0x0a, 0xe0, 0x53, 0x18, - 0x7d, 0x39, 0xff, 0x90, 0xe6, 0x5f, 0xb4, 0xfc, 0x0c, 0x5a, 0xde, 0xad, 0x6c, 0x66, 0xe3, 0xa7, - 0xa7, 0x56, 0xc9, 0x19, 0x0c, 0xec, 0xa3, 0xd5, 0x09, 0x15, 0x72, 0x9e, 0x32, 0xd3, 0x1f, 0x4f, - 0x73, 0xf0, 0xc9, 0x25, 0x7b, 0x89, 0x85, 0xe0, 0xbd, 0x97, 0xcd, 0xec, 0xd5, 0x27, 0x65, 0x11, - 0x52, 0xd5, 0xc4, 0xdb, 0x68, 0xdd, 0x4f, 0x39, 0x87, 0x48, 0x2e, 0xa5, 0x7e, 0x5b, 0xa7, 0xbe, - 0xbe, 0x53, 0x5d, 0x26, 0xcb, 0xf8, 0x5c, 0x62, 0x04, 0x82, 0x71, 0x18, 0x15, 0x12, 0xed, 0xaa, - 0xc4, 0x17, 0xd5, 0x65, 0xb2, 0x8c, 0xc7, 0x21, 0xb2, 0xb5, 0x6a, 0xed, 0x09, 0x76, 0x94, 0xe4, - 0x87, 0xd9, 0xcc, 0xb6, 0x77, 0xce, 0x87, 0x92, 0x8b, 0xb4, 0x7a, 0x7f, 0x37, 0x51, 0x47, 0x45, - 0xf0, 0x3f, 0xbe, 0x12, 0xcf, 0x2b, 0xaf, 0xc4, 0xbd, 0x2b, 0xdc, 0x3d, 0x55, 0x59, 0xed, 0x9b, - 0xf0, 0xfd, 0xd2, 0x9b, 0x70, 0xff, 0xca, 0xca, 0x6f, 0xf3, 0x05, 0x78, 0x80, 0x6e, 0x16, 0xdb, - 0xc3, 0x77, 0xd1, 0x0a, 0x3f, 0xe9, 0x18, 0x43, 0x1d, 0x6f, 0x41, 0x2d, 0x5a, 0xa5, 0x40, 0xf4, - 0x18, 0x32, 0x4b, 0xf5, 0x5f, 0x8d, 0x9c, 0xa3, 0x05, 0x4c, 0xc0, 0x97, 0x31, 0xd7, 0xff, 0x41, - 0x0a, 0xf4, 0xbe, 0x9e, 0x27, 0x05, 0xc2, 0xfb, 0xe8, 0xe8, 0xd8, 0x6a, 0xbc, 0x39, 0xb6, 0x1a, - 0x7f, 0x1c, 0x5b, 0x8d, 0x1f, 0x33, 0xcb, 0x38, 0xca, 0x2c, 0xe3, 0x4d, 0x66, 0x19, 0x7f, 0x66, - 0x96, 0xf1, 0xf3, 0x5f, 0x56, 0xe3, 0xdb, 0xe6, 0xb4, 0xff, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, - 0xab, 0x47, 0x03, 0x8d, 0xdf, 0x0a, 0x00, 0x00, + // 855 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x55, 0xcd, 0x6f, 0xdc, 0x44, + 0x14, 0x5f, 0xef, 0x47, 0x95, 0x8e, 0x49, 0x02, 0x83, 0xd4, 0xae, 0x52, 0x61, 0x47, 0x0b, 0x87, + 0x80, 0x8a, 0xad, 0x5d, 0x95, 0x8a, 0x1e, 0xe3, 0xa0, 0xd2, 0x8a, 0x86, 0x46, 0x93, 0xb6, 0x42, + 0x08, 0x21, 0xcd, 0x7a, 0x5f, 0x9d, 0xe9, 0xae, 0x3d, 0xd6, 0xcc, 0x78, 0x05, 0x3d, 0x71, 0xe2, + 0xcc, 0x85, 0x03, 0x7f, 0x0e, 0xb7, 0xdc, 0xe8, 0x91, 0xd3, 0x8a, 0x18, 0xfe, 0x0c, 0x0e, 0xc8, + 0xb3, 0x13, 0xef, 0x57, 0xbc, 0x49, 0x04, 0xdc, 0x76, 0xe6, 0xfd, 0x3e, 0xde, 0xbc, 0xf7, 0xfc, + 0x16, 0x3d, 0x18, 0x7e, 0x2a, 0x3d, 0xc6, 0xfd, 0x61, 0xd6, 0x07, 0x91, 0x80, 0x02, 0xe9, 0xa7, + 0xc3, 0xc8, 0xa7, 0x29, 0x93, 0x3e, 0xcd, 0x14, 0x97, 0x21, 0x1d, 0xb1, 0x24, 0xf2, 0xc7, 0x5d, + 0x3f, 0x82, 0x04, 0x04, 0x55, 0x30, 0xf0, 0x52, 0xc1, 0x15, 0xc7, 0x1f, 0x4e, 0xa9, 0xde, 0x8c, + 0xea, 0xa5, 0xc3, 0xc8, 0x2b, 0xa8, 0xde, 0x1c, 0xd5, 0x1b, 0x77, 0x77, 0x3e, 0x8e, 0x98, 0x3a, + 0xc9, 0xfa, 0x5e, 0xc8, 0x63, 0x3f, 0xe2, 0x11, 0xf7, 0xb5, 0x42, 0x3f, 0x7b, 0xa9, 0x4f, 0xfa, + 0xa0, 0x7f, 0x4d, 0x95, 0x77, 0xee, 0x99, 0xa4, 0x68, 0xca, 0x62, 0x1a, 0x9e, 0xb0, 0x04, 0xc4, + 0xf7, 0xb3, 0xb4, 0x62, 0x50, 0xf4, 0x82, 0x7c, 0x76, 0xfc, 0x2a, 0x96, 0xc8, 0x12, 0xc5, 0x62, + 0x58, 0x21, 0xdc, 0xbf, 0x8c, 0x20, 0xc3, 0x13, 0x88, 0xe9, 0x0a, 0xaf, 0x57, 0x59, 0x33, 0x5f, + 0x80, 0xe4, 0x99, 0x08, 0x57, 0xbd, 0xee, 0x56, 0x73, 0x2e, 0x78, 0x4a, 0xf7, 0x62, 0x74, 0xa6, + 0xd8, 0xc8, 0x67, 0x89, 0x92, 0x4a, 0x2c, 0x53, 0x3a, 0x3f, 0x5b, 0xe8, 0xce, 0x81, 0xe0, 0x52, + 0xbe, 0x00, 0x21, 0x19, 0x4f, 0x9e, 0xf6, 0x5f, 0x41, 0xa8, 0x08, 0xbc, 0x04, 0x01, 0x49, 0x08, + 0x78, 0x17, 0x35, 0x87, 0x2c, 0x19, 0xb4, 0xad, 0x5d, 0x6b, 0xef, 0x66, 0xf0, 0xd6, 0xe9, 0xc4, + 0xad, 0xe5, 0x13, 0xb7, 0xf9, 0x05, 0x4b, 0x06, 0x44, 0x47, 0x0a, 0x44, 0x42, 0x63, 0x68, 0xd7, + 0x17, 0x11, 0x5f, 0xd2, 0x18, 0x88, 0x8e, 0xe0, 0x1e, 0x42, 0x34, 0x65, 0xc6, 0xa0, 0xdd, 0xd0, + 0x38, 0x6c, 0x70, 0x68, 0xff, 0xe8, 0xb1, 0x89, 0x90, 0x39, 0x54, 0xe7, 0xb7, 0x3a, 0xba, 0xfd, + 0x88, 0x0b, 0xf6, 0x9a, 0x27, 0x8a, 0x8e, 0x8e, 0xf8, 0x60, 0xdf, 0x8c, 0x06, 0x08, 0xfc, 0x15, + 0xda, 0x28, 0x9a, 0x39, 0xa0, 0x8a, 0xea, 0xbc, 0xec, 0xde, 0x9e, 0x57, 0x39, 0x54, 0xde, 0xb8, + 0xeb, 0x4d, 0x1f, 0x75, 0x08, 0x8a, 0xce, 0x7c, 0x67, 0x77, 0xa4, 0x54, 0xc3, 0x27, 0xa8, 0x29, + 0x53, 0x08, 0xf5, 0x5b, 0xec, 0xde, 0x43, 0xef, 0xca, 0xa3, 0xea, 0x55, 0xe4, 0x7a, 0x9c, 0x42, + 0x38, 0xab, 0x49, 0x71, 0x22, 0xda, 0x01, 0xa7, 0xe8, 0x86, 0x54, 0x54, 0x65, 0x52, 0xd7, 0xc3, + 0xee, 0x3d, 0xfa, 0x0f, 0xbc, 0xb4, 0x5e, 0xb0, 0x65, 0xdc, 0x6e, 0x4c, 0xcf, 0xc4, 0xf8, 0x74, + 0xfe, 0xb2, 0xd0, 0x9d, 0x0a, 0xe6, 0x13, 0x26, 0x15, 0xfe, 0x66, 0xa5, 0xaa, 0xde, 0x79, 0x4e, + 0xf3, 0x93, 0x3e, 0xcb, 0xaa, 0x40, 0x17, 0xe9, 0x14, 0x6c, 0x5d, 0xdb, 0xb7, 0x8d, 0xf3, 0xc6, + 0xf9, 0xcd, 0x5c, 0x65, 0x23, 0xd4, 0x62, 0x0a, 0x62, 0xd9, 0xae, 0xef, 0x36, 0xf6, 0xec, 0x5e, + 0xf0, 0xef, 0x9f, 0x1b, 0x6c, 0x1a, 0xbb, 0xd6, 0xe3, 0x42, 0x98, 0x4c, 0xf5, 0x3b, 0x7f, 0xd7, + 0x2b, 0x9f, 0x59, 0x94, 0x1f, 0xff, 0x68, 0xa1, 0x2d, 0x7d, 0x7c, 0x46, 0x45, 0x04, 0xc5, 0xa4, + 0x9b, 0xd7, 0x5e, 0xa7, 0xdb, 0x6b, 0xbe, 0x98, 0xe0, 0x96, 0x49, 0x6b, 0xeb, 0x78, 0xc1, 0x85, + 0x2c, 0xb9, 0xe2, 0x2e, 0xb2, 0x63, 0x96, 0x10, 0x48, 0x47, 0x2c, 0xa4, 0x52, 0x8f, 0x5c, 0x2b, + 0xd8, 0xce, 0x27, 0xae, 0x7d, 0x38, 0xbb, 0x26, 0xf3, 0x18, 0xfc, 0x09, 0xb2, 0x63, 0xfa, 0x5d, + 0x49, 0x69, 0x68, 0xca, 0xbb, 0xc6, 0xcf, 0x3e, 0x9c, 0x85, 0xc8, 0x3c, 0x0e, 0xbf, 0x42, 0x8e, + 0xd2, 0xb6, 0x07, 0x47, 0xcf, 0x9f, 0x2b, 0x36, 0x62, 0xaf, 0xa9, 0x62, 0x3c, 0x39, 0x02, 0x11, + 0x42, 0xa2, 0x68, 0x04, 0xed, 0xa6, 0x56, 0xea, 0xe4, 0x13, 0xd7, 0x79, 0xb6, 0x16, 0x49, 0x2e, + 0x51, 0xea, 0xfc, 0xda, 0x40, 0xef, 0xad, 0x9d, 0x4f, 0xfc, 0x10, 0x61, 0xde, 0x97, 0x20, 0xc6, + 0x30, 0xf8, 0x7c, 0xba, 0x8c, 0x8a, 0xad, 0x50, 0xf4, 0xa0, 0x11, 0xdc, 0xca, 0x27, 0x2e, 0x7e, + 0xba, 0x12, 0x25, 0x17, 0x30, 0x70, 0x88, 0x36, 0x47, 0x54, 0xaa, 0x69, 0x95, 0x99, 0x59, 0x40, + 0x76, 0xef, 0xa3, 0xab, 0x0d, 0x6d, 0xc1, 0x08, 0xde, 0xc9, 0x27, 0xee, 0xe6, 0x93, 0x79, 0x11, + 0xb2, 0xa8, 0x89, 0xf7, 0xd1, 0x76, 0x98, 0x09, 0x01, 0x89, 0x5a, 0xaa, 0xfa, 0x6d, 0x53, 0xf5, + 0xed, 0x83, 0xc5, 0x30, 0x59, 0xc6, 0x17, 0x12, 0x03, 0x90, 0x4c, 0xc0, 0xa0, 0x94, 0x68, 0x2e, + 0x4a, 0x7c, 0xb6, 0x18, 0x26, 0xcb, 0x78, 0x1c, 0x23, 0xd7, 0xa8, 0x56, 0x76, 0xb0, 0xa5, 0x25, + 0xdf, 0xcf, 0x27, 0xae, 0x7b, 0xb0, 0x1e, 0x4a, 0x2e, 0xd3, 0xea, 0xfc, 0x52, 0x47, 0x2d, 0x5d, + 0x82, 0xff, 0x71, 0xd3, 0xbe, 0x58, 0xd8, 0xb4, 0xf7, 0xae, 0xf1, 0xed, 0xe9, 0xcc, 0x2a, 0xf7, + 0xea, 0xb7, 0x4b, 0x7b, 0xf5, 0xfe, 0xb5, 0x95, 0xd7, 0x6f, 0xd1, 0x07, 0xe8, 0x66, 0x99, 0x00, + 0xbe, 0x8b, 0x36, 0xc4, 0x79, 0x4f, 0x2d, 0xdd, 0x80, 0x72, 0x05, 0x96, 0xcd, 0x2c, 0x11, 0x1d, + 0x86, 0xec, 0x39, 0x87, 0xeb, 0x91, 0x0b, 0xb4, 0x84, 0x11, 0x84, 0x8a, 0x0b, 0xf3, 0x4f, 0x5b, + 0xa2, 0x8f, 0xcd, 0x3d, 0x29, 0x11, 0xc1, 0x07, 0xa7, 0x67, 0x4e, 0xed, 0xcd, 0x99, 0x53, 0xfb, + 0xfd, 0xcc, 0xa9, 0xfd, 0x90, 0x3b, 0xd6, 0x69, 0xee, 0x58, 0x6f, 0x72, 0xc7, 0xfa, 0x23, 0x77, + 0xac, 0x9f, 0xfe, 0x74, 0x6a, 0x5f, 0xd7, 0xc7, 0xdd, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xe2, + 0xa2, 0xe7, 0x25, 0xc5, 0x09, 0x00, 0x00, } diff --git a/pkg/apis/autoscaling/v1/generated.proto b/pkg/apis/autoscaling/v1/generated.proto index 5607cc949d9..e84fdd96c9f 100644 --- a/pkg/apis/autoscaling/v1/generated.proto +++ b/pkg/apis/autoscaling/v1/generated.proto @@ -46,8 +46,6 @@ message CrossVersionObjectReference { // configuration of a horizontal pod autoscaler. message HorizontalPodAutoscaler { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; @@ -63,8 +61,6 @@ message HorizontalPodAutoscaler { // list of horizontal pod autoscaler objects. message HorizontalPodAutoscalerList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // +optional optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; @@ -117,8 +113,6 @@ message HorizontalPodAutoscalerStatus { // Scale represents a scaling request for a resource. message Scale { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata. // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; diff --git a/pkg/apis/batch/v1/generated.pb.go b/pkg/apis/batch/v1/generated.pb.go index 70709f24bbb..7dbda3e3c4e 100644 --- a/pkg/apis/batch/v1/generated.pb.go +++ b/pkg/apis/batch/v1/generated.pb.go @@ -121,14 +121,6 @@ func (m *Job) MarshalTo(data []byte) (int, error) { return 0, err } i += n3 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n4, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n4 return i, nil } @@ -158,19 +150,19 @@ func (m *JobCondition) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.LastProbeTime.Size())) - n5, err := m.LastProbeTime.MarshalTo(data[i:]) + n4, err := m.LastProbeTime.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n4 + data[i] = 0x22 + i++ + i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) + n5, err := m.LastTransitionTime.MarshalTo(data[i:]) if err != nil { return 0, err } i += n5 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) - n6, err := m.LastTransitionTime.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n6 data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -200,11 +192,11 @@ func (m *JobList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n7, err := m.ListMeta.MarshalTo(data[i:]) + n6, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n7 + i += n6 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -217,14 +209,6 @@ func (m *JobList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n8, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n8 return i, nil } @@ -262,11 +246,11 @@ func (m *JobSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.Selector.Size())) - n9, err := m.Selector.MarshalTo(data[i:]) + n7, err := m.Selector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n9 + i += n7 } if m.ManualSelector != nil { data[i] = 0x28 @@ -281,11 +265,11 @@ func (m *JobSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x32 i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n10, err := m.Template.MarshalTo(data[i:]) + n8, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n10 + i += n8 return i, nil } @@ -320,21 +304,21 @@ func (m *JobStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.StartTime.Size())) - n11, err := m.StartTime.MarshalTo(data[i:]) + n9, err := m.StartTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n11 + i += n9 } if m.CompletionTime != nil { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.CompletionTime.Size())) - n12, err := m.CompletionTime.MarshalTo(data[i:]) + n10, err := m.CompletionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n12 + i += n10 } data[i] = 0x20 i++ @@ -384,8 +368,6 @@ func (m *Job) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -418,8 +400,6 @@ func (m *JobList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -491,7 +471,6 @@ func (this *Job) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "JobSpec", "JobSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "JobStatus", "JobStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -518,7 +497,6 @@ func (this *JobList) String() string { s := strings.Join([]string{`&JobList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Job", "Job", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -680,36 +658,6 @@ func (m *Job) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1047,36 +995,6 @@ func (m *JobList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1602,62 +1520,60 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 905 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x95, 0x4d, 0x6f, 0xe3, 0x44, - 0x18, 0xc7, 0xf3, 0xda, 0x26, 0xd3, 0x97, 0x5d, 0x46, 0xaa, 0x14, 0x7a, 0x48, 0x56, 0x05, 0xa1, - 0x05, 0xed, 0xda, 0x4a, 0x77, 0x85, 0x10, 0x07, 0x24, 0x5c, 0x84, 0x44, 0xd5, 0xb2, 0xd5, 0xa4, - 0x02, 0xc4, 0xcb, 0x61, 0x6c, 0x3f, 0x4d, 0x87, 0xda, 0x1e, 0xcb, 0x33, 0x8e, 0xb4, 0x37, 0x3e, - 0x02, 0x07, 0x3e, 0x0a, 0x07, 0x3e, 0x42, 0x8f, 0x3d, 0x72, 0x8a, 0xa8, 0x11, 0x5f, 0x62, 0x4f, - 0x68, 0xc6, 0x13, 0xdb, 0x49, 0x93, 0x92, 0xa2, 0xbd, 0x65, 0x9e, 0x79, 0xfe, 0xbf, 0x99, 0x79, - 0x9e, 0xbf, 0x9f, 0xa0, 0x17, 0x57, 0x9f, 0x08, 0x8b, 0x71, 0xfb, 0x2a, 0x75, 0x21, 0x89, 0x40, - 0x82, 0xb0, 0xe3, 0xab, 0xb1, 0x4d, 0x63, 0x26, 0x6c, 0x97, 0x4a, 0xef, 0xd2, 0x9e, 0x0c, 0xed, - 0x31, 0x44, 0x90, 0x50, 0x09, 0xbe, 0x15, 0x27, 0x5c, 0x72, 0xfc, 0x5e, 0x2e, 0xb2, 0x4a, 0x91, - 0x15, 0x5f, 0x8d, 0x2d, 0x25, 0xb2, 0xb4, 0xc8, 0x9a, 0x0c, 0xf7, 0x9f, 0x8f, 0x99, 0xbc, 0x4c, - 0x5d, 0xcb, 0xe3, 0xa1, 0x3d, 0xe6, 0x63, 0x6e, 0x6b, 0xad, 0x9b, 0x5e, 0xe8, 0x95, 0x5e, 0xe8, - 0x5f, 0x39, 0x73, 0xff, 0xa5, 0xb9, 0x08, 0x8d, 0x59, 0x48, 0xbd, 0x4b, 0x16, 0x41, 0xf2, 0xba, - 0xbc, 0x4a, 0x08, 0x92, 0x2e, 0xb9, 0xc9, 0xbe, 0xbd, 0x4a, 0x95, 0xa4, 0x91, 0x64, 0x21, 0xdc, - 0x11, 0x7c, 0xfc, 0x5f, 0x02, 0xe1, 0x5d, 0x42, 0x48, 0xef, 0xe8, 0x0e, 0x57, 0xd6, 0xc9, 0x4e, - 0x40, 0xf0, 0x34, 0xf1, 0xee, 0x9e, 0xf5, 0x6c, 0xb5, 0x66, 0xc9, 0x53, 0x86, 0xcb, 0xb3, 0x53, - 0xc9, 0x02, 0x9b, 0x45, 0x52, 0xc8, 0x64, 0x51, 0x72, 0xf0, 0x4f, 0x03, 0x35, 0x8f, 0xb9, 0x8b, - 0xbf, 0x43, 0x1d, 0x55, 0x20, 0x9f, 0x4a, 0xda, 0xab, 0x3f, 0xa9, 0x3f, 0xdd, 0x3a, 0x7c, 0x6a, - 0xad, 0x6c, 0x91, 0x35, 0x19, 0x5a, 0xaf, 0xdc, 0x9f, 0xc1, 0x93, 0xa7, 0x20, 0xa9, 0x83, 0xaf, - 0xa7, 0x83, 0x5a, 0x36, 0x1d, 0xa0, 0x32, 0x46, 0x0a, 0x1a, 0xfe, 0x1a, 0xb5, 0x44, 0x0c, 0x5e, - 0xaf, 0xa1, 0xa9, 0xcf, 0xac, 0x35, 0x1a, 0x6f, 0x1d, 0x73, 0x77, 0x14, 0x83, 0xe7, 0x6c, 0x1b, - 0x72, 0x4b, 0xad, 0x88, 0xe6, 0xe0, 0x6f, 0xd0, 0x86, 0x90, 0x54, 0xa6, 0xa2, 0xd7, 0xd4, 0x44, - 0x6b, 0x6d, 0xa2, 0x56, 0x39, 0xbb, 0x86, 0xb9, 0x91, 0xaf, 0x89, 0xa1, 0xe1, 0x1f, 0x51, 0x47, - 0xbe, 0x8e, 0x41, 0xdd, 0xbe, 0xd7, 0x9a, 0x27, 0x57, 0x3b, 0x5d, 0xb2, 0xd5, 0x0b, 0x15, 0xfa, - 0xdc, 0xa8, 0x9c, 0xc7, 0x86, 0xdc, 0x99, 0x45, 0x48, 0x41, 0x3c, 0xb8, 0x69, 0xa2, 0xed, 0x63, - 0xee, 0x1e, 0xf1, 0xc8, 0x67, 0x92, 0xf1, 0x08, 0xbf, 0x44, 0x2d, 0xb5, 0xa9, 0x8b, 0xdd, 0x75, - 0x9e, 0xcc, 0x1e, 0xaa, 0xa4, 0x6f, 0xa6, 0x83, 0xc7, 0xd5, 0x5c, 0x15, 0x23, 0x3a, 0xbb, 0xf2, - 0xf8, 0x86, 0xd6, 0x7d, 0x36, 0xff, 0x98, 0x37, 0xd3, 0xc1, 0xbd, 0x8e, 0xb1, 0x0a, 0xe6, 0xc2, - 0xe3, 0xc7, 0x68, 0x27, 0xa0, 0x42, 0x9e, 0x25, 0xdc, 0x85, 0x73, 0x16, 0x82, 0xa9, 0xed, 0x47, - 0x6b, 0x56, 0x80, 0x85, 0xe0, 0xec, 0x99, 0xab, 0xec, 0x9c, 0x54, 0x41, 0x64, 0x9e, 0x8b, 0x27, - 0x08, 0xab, 0xc0, 0x79, 0x42, 0x23, 0x91, 0x3f, 0x4e, 0x9d, 0xd6, 0x7a, 0xf0, 0x69, 0xfb, 0xe6, - 0x34, 0x7c, 0x72, 0x87, 0x46, 0x96, 0x9c, 0x80, 0x3f, 0x40, 0x1b, 0x09, 0x50, 0xc1, 0xa3, 0x5e, - 0x5b, 0x17, 0xae, 0x70, 0x01, 0xd1, 0x51, 0x62, 0x76, 0xf1, 0x87, 0x68, 0x33, 0x04, 0x21, 0xe8, - 0x18, 0x7a, 0x1b, 0x3a, 0xf1, 0x91, 0x49, 0xdc, 0x3c, 0xcd, 0xc3, 0x64, 0xb6, 0x7f, 0xf0, 0x5b, - 0x03, 0x6d, 0x1e, 0x73, 0xf7, 0x84, 0x09, 0xa9, 0xcc, 0xb3, 0xf0, 0xf9, 0xac, 0x69, 0x1e, 0xa5, - 0x9e, 0x37, 0xcf, 0x2c, 0x52, 0xf9, 0x84, 0x4e, 0x51, 0x9b, 0x49, 0x08, 0x55, 0xd3, 0x9b, 0xf7, - 0x7f, 0x99, 0xf3, 0x8e, 0x77, 0x76, 0x0c, 0xb4, 0xfd, 0x95, 0x92, 0x93, 0x9c, 0x32, 0xe7, 0xf4, - 0xe6, 0x5b, 0x77, 0xfa, 0x1f, 0x4d, 0x5d, 0x16, 0xf5, 0xc5, 0xe2, 0x21, 0xda, 0x8a, 0x69, 0x42, - 0x83, 0x00, 0x02, 0x26, 0x42, 0x5d, 0x99, 0xb6, 0xf3, 0x28, 0x9b, 0x0e, 0xb6, 0xce, 0xca, 0x30, - 0xa9, 0xe6, 0x28, 0x89, 0xc7, 0xc3, 0x38, 0x00, 0xd5, 0xba, 0xdc, 0xe6, 0x46, 0x72, 0x54, 0x86, - 0x49, 0x35, 0x07, 0xbf, 0x42, 0x7b, 0xd4, 0x93, 0x6c, 0x02, 0x5f, 0x00, 0xf5, 0x03, 0x16, 0xc1, - 0x08, 0x3c, 0x1e, 0xf9, 0xf9, 0x80, 0x68, 0x3a, 0xef, 0x66, 0xd3, 0xc1, 0xde, 0xe7, 0xcb, 0x12, - 0xc8, 0x72, 0x1d, 0xfe, 0x09, 0x75, 0x04, 0x04, 0xe0, 0x49, 0x9e, 0x18, 0x6b, 0xbe, 0x58, 0xb3, - 0x9b, 0xd4, 0x85, 0x60, 0x64, 0xa4, 0xce, 0xb6, 0xaa, 0xd0, 0x6c, 0x45, 0x0a, 0x24, 0xfe, 0x14, - 0xed, 0x86, 0x34, 0x4a, 0x69, 0x91, 0xa9, 0x3d, 0xd9, 0x71, 0x70, 0x36, 0x1d, 0xec, 0x9e, 0xce, - 0xed, 0x90, 0x85, 0x4c, 0xfc, 0x03, 0xea, 0x48, 0x08, 0xe3, 0x80, 0xca, 0xdc, 0xa0, 0x5b, 0x87, - 0xcf, 0xef, 0x9f, 0xd3, 0x67, 0xdc, 0x3f, 0x37, 0x02, 0x3d, 0x52, 0xcb, 0xd6, 0x99, 0x28, 0x29, - 0x80, 0x07, 0xbf, 0x37, 0x51, 0xb7, 0x18, 0x94, 0x18, 0x10, 0xf2, 0x66, 0xe3, 0x42, 0xf4, 0xea, - 0xda, 0x7a, 0xc3, 0x75, 0xad, 0x57, 0x0c, 0x9a, 0xf2, 0xdf, 0xa1, 0x08, 0x09, 0x52, 0x01, 0xe3, - 0x6f, 0x51, 0x57, 0x48, 0x9a, 0x48, 0x3d, 0x08, 0x1a, 0x0f, 0x1e, 0x04, 0x3b, 0xd9, 0x74, 0xd0, - 0x1d, 0xcd, 0x00, 0xa4, 0x64, 0xe1, 0x0b, 0xb4, 0x5b, 0xba, 0xe4, 0x7f, 0x0e, 0x35, 0xdd, 0x92, - 0xa3, 0x39, 0x0a, 0x59, 0xa0, 0xaa, 0xd1, 0x92, 0xdb, 0x48, 0x7b, 0xa5, 0x5d, 0x8e, 0x96, 0xdc, - 0x73, 0xc4, 0xec, 0x62, 0x1b, 0x75, 0x45, 0xea, 0x79, 0x00, 0x3e, 0xf8, 0xba, 0xe3, 0x6d, 0xe7, - 0x1d, 0x93, 0xda, 0x1d, 0xcd, 0x36, 0x48, 0x99, 0xa3, 0xc0, 0x17, 0x94, 0x05, 0xe0, 0xeb, 0x4e, - 0x57, 0xc0, 0x5f, 0xea, 0x28, 0x31, 0xbb, 0xce, 0xfb, 0xd7, 0xb7, 0xfd, 0xda, 0xcd, 0x6d, 0xbf, - 0xf6, 0xe7, 0x6d, 0xbf, 0xf6, 0x4b, 0xd6, 0xaf, 0x5f, 0x67, 0xfd, 0xfa, 0x4d, 0xd6, 0xaf, 0xff, - 0x95, 0xf5, 0xeb, 0xbf, 0xfe, 0xdd, 0xaf, 0x7d, 0xdf, 0x98, 0x0c, 0xff, 0x0d, 0x00, 0x00, 0xff, - 0xff, 0xa2, 0x94, 0x7a, 0x7f, 0xa7, 0x09, 0x00, 0x00, + // 879 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x9c, 0x54, 0xcd, 0x6f, 0xe3, 0x44, + 0x14, 0xcf, 0x47, 0xd3, 0x4d, 0xa6, 0x1f, 0xbb, 0x8c, 0x54, 0x29, 0xf4, 0x90, 0xac, 0x02, 0x42, + 0x0b, 0xda, 0xb5, 0x95, 0xee, 0x0a, 0x21, 0x0e, 0x48, 0xb8, 0x08, 0x89, 0xaa, 0x65, 0xab, 0x49, + 0x05, 0x88, 0x8f, 0xc3, 0xd8, 0x7e, 0x4d, 0x87, 0xda, 0x1e, 0xcb, 0x33, 0x8e, 0xd4, 0x1b, 0x37, + 0xae, 0xfc, 0x31, 0x08, 0xf1, 0x27, 0xf4, 0xd8, 0x23, 0xa7, 0x88, 0x9a, 0xff, 0x62, 0x4f, 0x68, + 0xc6, 0xe3, 0x8f, 0x34, 0x69, 0xc9, 0x72, 0xb3, 0xdf, 0xbc, 0xdf, 0xef, 0x7d, 0xfd, 0xde, 0x43, + 0x2f, 0x2f, 0x3f, 0x11, 0x16, 0xe3, 0xf6, 0x65, 0xea, 0x42, 0x12, 0x81, 0x04, 0x61, 0xc7, 0x97, + 0x53, 0x9b, 0xc6, 0x4c, 0xd8, 0x2e, 0x95, 0xde, 0x85, 0x3d, 0x1b, 0xdb, 0x53, 0x88, 0x20, 0xa1, + 0x12, 0x7c, 0x2b, 0x4e, 0xb8, 0xe4, 0xf8, 0xbd, 0x1c, 0x64, 0x55, 0x20, 0x2b, 0xbe, 0x9c, 0x5a, + 0x0a, 0x64, 0x69, 0x90, 0x35, 0x1b, 0xef, 0xbf, 0x98, 0x32, 0x79, 0x91, 0xba, 0x96, 0xc7, 0x43, + 0x7b, 0xca, 0xa7, 0xdc, 0xd6, 0x58, 0x37, 0x3d, 0xd7, 0x7f, 0xfa, 0x47, 0x7f, 0xe5, 0x9c, 0xfb, + 0xaf, 0x4c, 0x22, 0x34, 0x66, 0x21, 0xf5, 0x2e, 0x58, 0x04, 0xc9, 0x55, 0x95, 0x4a, 0x08, 0x92, + 0xae, 0xc8, 0x64, 0xdf, 0xbe, 0x0f, 0x95, 0xa4, 0x91, 0x64, 0x21, 0x2c, 0x01, 0x3e, 0xfe, 0x2f, + 0x80, 0xf0, 0x2e, 0x20, 0xa4, 0x4b, 0xb8, 0x83, 0x7b, 0xfb, 0x64, 0x27, 0x20, 0x78, 0x9a, 0x78, + 0xcb, 0xb1, 0x9e, 0xdf, 0x8f, 0x59, 0x51, 0xca, 0x78, 0xb5, 0x77, 0x2a, 0x59, 0x60, 0xb3, 0x48, + 0x0a, 0x99, 0xdc, 0x85, 0x8c, 0x7e, 0x6d, 0xa1, 0xf6, 0x11, 0x77, 0xf1, 0x77, 0xa8, 0xab, 0x1a, + 0xe4, 0x53, 0x49, 0xfb, 0xcd, 0xa7, 0xcd, 0x67, 0x5b, 0x07, 0xcf, 0xac, 0x7b, 0x47, 0x64, 0xcd, + 0xc6, 0xd6, 0x6b, 0xf7, 0x67, 0xf0, 0xe4, 0x09, 0x48, 0xea, 0xe0, 0xeb, 0xf9, 0xb0, 0x91, 0xcd, + 0x87, 0xa8, 0xb2, 0x91, 0x92, 0x0d, 0x7f, 0x8d, 0x36, 0x44, 0x0c, 0x5e, 0xbf, 0xa5, 0x59, 0x9f, + 0x5b, 0x6b, 0x0c, 0xde, 0x3a, 0xe2, 0xee, 0x24, 0x06, 0xcf, 0xd9, 0x36, 0xcc, 0x1b, 0xea, 0x8f, + 0x68, 0x1e, 0xfc, 0x0d, 0xda, 0x14, 0x92, 0xca, 0x54, 0xf4, 0xdb, 0x9a, 0xd1, 0x5a, 0x9b, 0x51, + 0xa3, 0x9c, 0x5d, 0xc3, 0xb9, 0x99, 0xff, 0x13, 0xc3, 0x36, 0xba, 0x69, 0xa3, 0xed, 0x23, 0xee, + 0x1e, 0xf2, 0xc8, 0x67, 0x92, 0xf1, 0x08, 0xbf, 0x42, 0x1b, 0xf2, 0x2a, 0x06, 0xdd, 0x8e, 0x9e, + 0xf3, 0xb4, 0x48, 0xe5, 0xec, 0x2a, 0x86, 0x37, 0xf3, 0xe1, 0x93, 0xba, 0xaf, 0xb2, 0x11, 0xed, + 0x5d, 0x4b, 0xaf, 0xa5, 0x71, 0x9f, 0x2d, 0x86, 0x7b, 0x33, 0x1f, 0x3e, 0x38, 0x53, 0xab, 0xe4, + 0x5c, 0x4c, 0x0f, 0x4f, 0xd1, 0x4e, 0x40, 0x85, 0x3c, 0x4d, 0xb8, 0x0b, 0x67, 0x2c, 0x04, 0x53, + 0xfd, 0x47, 0x45, 0xf5, 0x75, 0x35, 0x56, 0xf5, 0xab, 0x29, 0xa8, 0xf2, 0x15, 0xc2, 0xd9, 0x33, + 0xa9, 0xec, 0x1c, 0xd7, 0x89, 0xc8, 0x22, 0x2f, 0x9e, 0x21, 0xac, 0x0c, 0x67, 0x09, 0x8d, 0x44, + 0x5e, 0x9c, 0x8a, 0xb6, 0xf1, 0xd6, 0xd1, 0xf6, 0x4d, 0x34, 0x7c, 0xbc, 0xc4, 0x46, 0x56, 0x44, + 0xc0, 0x1f, 0xa0, 0xcd, 0x04, 0xa8, 0xe0, 0x51, 0xbf, 0xa3, 0x1b, 0x57, 0xce, 0x89, 0x68, 0x2b, + 0x31, 0xaf, 0xf8, 0x43, 0xf4, 0x28, 0x04, 0x21, 0xe8, 0x14, 0xfa, 0x9b, 0xda, 0xf1, 0xb1, 0x71, + 0x7c, 0x74, 0x92, 0x9b, 0x49, 0xf1, 0x3e, 0xfa, 0xa3, 0x89, 0x1e, 0x1d, 0x71, 0xf7, 0x98, 0x09, + 0x89, 0x7f, 0x5c, 0x12, 0xb8, 0xb5, 0x5e, 0x31, 0x0a, 0xad, 0x65, 0xfe, 0xc4, 0xc4, 0xe9, 0x16, + 0x96, 0x9a, 0xc8, 0x4f, 0x50, 0x87, 0x49, 0x08, 0xd5, 0xd0, 0xdb, 0x0f, 0xef, 0xce, 0xa2, 0x26, + 0x9d, 0x1d, 0x43, 0xda, 0xf9, 0x4a, 0xc1, 0x49, 0xce, 0x32, 0xfa, 0xb3, 0xad, 0x13, 0x57, 0xaa, + 0xc7, 0x63, 0xb4, 0x15, 0xd3, 0x84, 0x06, 0x01, 0x04, 0x4c, 0x84, 0x3a, 0xf7, 0x8e, 0xf3, 0x38, + 0x9b, 0x0f, 0xb7, 0x4e, 0x2b, 0x33, 0xa9, 0xfb, 0x28, 0x88, 0xc7, 0xc3, 0x38, 0x00, 0xd5, 0xdc, + 0x5c, 0x88, 0x06, 0x72, 0x58, 0x99, 0x49, 0xdd, 0x07, 0xbf, 0x46, 0x7b, 0xd4, 0x93, 0x6c, 0x06, + 0x5f, 0x00, 0xf5, 0x03, 0x16, 0xc1, 0x04, 0x3c, 0x1e, 0xf9, 0xf9, 0x92, 0xb5, 0x9d, 0x77, 0xb3, + 0xf9, 0x70, 0xef, 0xf3, 0x55, 0x0e, 0x64, 0x35, 0x0e, 0xff, 0x84, 0xba, 0x02, 0x02, 0xf0, 0x24, + 0x4f, 0x8c, 0x78, 0x5e, 0xae, 0xd9, 0x6f, 0xea, 0x42, 0x30, 0x31, 0x50, 0x67, 0x5b, 0x35, 0xbc, + 0xf8, 0x23, 0x25, 0x25, 0xfe, 0x14, 0xed, 0x86, 0x34, 0x4a, 0x69, 0xe9, 0xa9, 0x55, 0xd3, 0x75, + 0x70, 0x36, 0x1f, 0xee, 0x9e, 0x2c, 0xbc, 0x90, 0x3b, 0x9e, 0xf8, 0x07, 0xd4, 0x95, 0x10, 0xc6, + 0x01, 0x95, 0xb9, 0x84, 0xb6, 0x0e, 0x5e, 0x3c, 0x7c, 0xeb, 0x4e, 0xb9, 0x7f, 0x66, 0x00, 0xfa, + 0x2c, 0x95, 0x4a, 0x28, 0xac, 0xa4, 0x24, 0x1c, 0xfd, 0xde, 0x46, 0xbd, 0xf2, 0xd8, 0x60, 0x40, + 0xc8, 0x2b, 0x16, 0x5a, 0xf4, 0x9b, 0x5a, 0x1c, 0xe3, 0x75, 0xc5, 0x51, 0x9e, 0x82, 0xea, 0xc2, + 0x96, 0x26, 0x41, 0x6a, 0xc4, 0xf8, 0x5b, 0xd4, 0x13, 0x92, 0x26, 0x52, 0xaf, 0x6a, 0xeb, 0xad, + 0x57, 0x75, 0x27, 0x9b, 0x0f, 0x7b, 0x93, 0x82, 0x80, 0x54, 0x5c, 0xf8, 0x1c, 0xed, 0x56, 0x2a, + 0xf9, 0x9f, 0x67, 0x47, 0x8f, 0xe4, 0x70, 0x81, 0x85, 0xdc, 0x61, 0x55, 0xcb, 0x9f, 0xcb, 0x48, + 0x6b, 0xa5, 0x53, 0x2d, 0x7f, 0xae, 0x39, 0x62, 0x5e, 0xb1, 0x8d, 0x7a, 0x22, 0xf5, 0x3c, 0x00, + 0x1f, 0x7c, 0x3d, 0xf1, 0x8e, 0xf3, 0x8e, 0x71, 0xed, 0x4d, 0x8a, 0x07, 0x52, 0xf9, 0x28, 0xe2, + 0x73, 0xca, 0x02, 0xf0, 0xf5, 0xa4, 0x6b, 0xc4, 0x5f, 0x6a, 0x2b, 0x31, 0xaf, 0xce, 0xfb, 0xd7, + 0xb7, 0x83, 0xc6, 0xcd, 0xed, 0xa0, 0xf1, 0xd7, 0xed, 0xa0, 0xf1, 0x4b, 0x36, 0x68, 0x5e, 0x67, + 0x83, 0xe6, 0x4d, 0x36, 0x68, 0xfe, 0x9d, 0x0d, 0x9a, 0xbf, 0xfd, 0x33, 0x68, 0x7c, 0xdf, 0x9a, + 0x8d, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xa1, 0x15, 0xe7, 0x70, 0xeb, 0x08, 0x00, 0x00, } diff --git a/pkg/apis/batch/v1/generated.proto b/pkg/apis/batch/v1/generated.proto index d65b4847bd0..f159250bdec 100644 --- a/pkg/apis/batch/v1/generated.proto +++ b/pkg/apis/batch/v1/generated.proto @@ -33,8 +33,6 @@ option go_package = "v1"; // Job represents the configuration of a single job. message Job { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -78,8 +76,6 @@ message JobCondition { // JobList is a collection of jobs. message JobList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional diff --git a/pkg/apis/batch/v2alpha1/generated.pb.go b/pkg/apis/batch/v2alpha1/generated.pb.go index e1e373ffdfb..f50fd8d9de5 100644 --- a/pkg/apis/batch/v2alpha1/generated.pb.go +++ b/pkg/apis/batch/v2alpha1/generated.pb.go @@ -157,14 +157,6 @@ func (m *CronJob) MarshalTo(data []byte) (int, error) { return 0, err } i += n3 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n4, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n4 return i, nil } @@ -186,11 +178,11 @@ func (m *CronJobList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n5, err := m.ListMeta.MarshalTo(data[i:]) + n4, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n5 + i += n4 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -203,14 +195,6 @@ func (m *CronJobList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n6, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n6 return i, nil } @@ -255,11 +239,11 @@ func (m *CronJobSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(m.JobTemplate.Size())) - n7, err := m.JobTemplate.MarshalTo(data[i:]) + n5, err := m.JobTemplate.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n7 + i += n5 return i, nil } @@ -294,11 +278,11 @@ func (m *CronJobStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.LastScheduleTime.Size())) - n8, err := m.LastScheduleTime.MarshalTo(data[i:]) + n6, err := m.LastScheduleTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n8 + i += n6 } return i, nil } @@ -321,35 +305,27 @@ func (m *Job) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n9, err := m.ObjectMeta.MarshalTo(data[i:]) + n7, err := m.ObjectMeta.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n7 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n8, err := m.Spec.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n8 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n9, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } i += n9 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n10, err := m.Spec.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n10 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n11, err := m.Status.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n11 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n12, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n12 return i, nil } @@ -379,19 +355,19 @@ func (m *JobCondition) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.LastProbeTime.Size())) - n13, err := m.LastProbeTime.MarshalTo(data[i:]) + n10, err := m.LastProbeTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n13 + i += n10 data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) - n14, err := m.LastTransitionTime.MarshalTo(data[i:]) + n11, err := m.LastTransitionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n14 + i += n11 data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -421,11 +397,11 @@ func (m *JobList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n15, err := m.ListMeta.MarshalTo(data[i:]) + n12, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n15 + i += n12 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -438,14 +414,6 @@ func (m *JobList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n16, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n16 return i, nil } @@ -483,11 +451,11 @@ func (m *JobSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.Selector.Size())) - n17, err := m.Selector.MarshalTo(data[i:]) + n13, err := m.Selector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n17 + i += n13 } if m.ManualSelector != nil { data[i] = 0x28 @@ -502,11 +470,11 @@ func (m *JobSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x32 i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n18, err := m.Template.MarshalTo(data[i:]) + n14, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n18 + i += n14 return i, nil } @@ -541,21 +509,21 @@ func (m *JobStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.StartTime.Size())) - n19, err := m.StartTime.MarshalTo(data[i:]) + n15, err := m.StartTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n19 + i += n15 } if m.CompletionTime != nil { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.CompletionTime.Size())) - n20, err := m.CompletionTime.MarshalTo(data[i:]) + n16, err := m.CompletionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n20 + i += n16 } data[i] = 0x20 i++ @@ -587,27 +555,19 @@ func (m *JobTemplate) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n21, err := m.ObjectMeta.MarshalTo(data[i:]) + n17, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n21 + i += n17 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n22, err := m.Template.MarshalTo(data[i:]) + n18, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n22 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n23, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n23 + i += n18 return i, nil } @@ -629,19 +589,19 @@ func (m *JobTemplateSpec) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n24, err := m.ObjectMeta.MarshalTo(data[i:]) + n19, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n24 + i += n19 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n25, err := m.Spec.MarshalTo(data[i:]) + n20, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n25 + i += n20 return i, nil } @@ -681,8 +641,6 @@ func (m *CronJob) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -697,8 +655,6 @@ func (m *CronJobList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -745,8 +701,6 @@ func (m *Job) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -779,8 +733,6 @@ func (m *JobList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -838,8 +790,6 @@ func (m *JobTemplate) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Template.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -874,7 +824,6 @@ func (this *CronJob) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "CronJobSpec", "CronJobSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "CronJobStatus", "CronJobStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -886,7 +835,6 @@ func (this *CronJobList) String() string { s := strings.Join([]string{`&CronJobList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "CronJob", "CronJob", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -924,7 +872,6 @@ func (this *Job) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "JobSpec", "JobSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "JobStatus", "JobStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -951,7 +898,6 @@ func (this *JobList) String() string { s := strings.Join([]string{`&JobList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Job", "Job", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -993,7 +939,6 @@ func (this *JobTemplate) String() string { s := strings.Join([]string{`&JobTemplate{`, `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Template:` + strings.Replace(strings.Replace(this.Template.String(), "JobTemplateSpec", "JobTemplateSpec", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -1136,36 +1081,6 @@ func (m *CronJob) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1277,36 +1192,6 @@ func (m *CronJobList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1740,36 +1625,6 @@ func (m *Job) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -2107,36 +1962,6 @@ func (m *JobList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -2645,36 +2470,6 @@ func (m *JobTemplate) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -2912,80 +2707,78 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 1187 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xd4, 0x56, 0xcb, 0x6f, 0x23, 0xc5, - 0x13, 0x8e, 0x3d, 0x89, 0x1f, 0xed, 0x3c, 0xfb, 0xf7, 0x8b, 0xd6, 0x04, 0xc9, 0x8e, 0x2c, 0x81, - 0xb2, 0xab, 0xdd, 0x19, 0xc5, 0x44, 0xcb, 0xb2, 0x07, 0xa4, 0x9d, 0x20, 0x24, 0xa2, 0x44, 0x1b, - 0xb5, 0xb3, 0xec, 0x0a, 0x82, 0x44, 0x7b, 0xa6, 0x63, 0xcf, 0x66, 0x5e, 0x4c, 0xf7, 0x44, 0xca, - 0x8d, 0x33, 0x27, 0xce, 0x1c, 0xf9, 0x07, 0xb8, 0x22, 0x6e, 0xdc, 0x72, 0xcc, 0x81, 0x03, 0x27, - 0x8b, 0x0c, 0x7f, 0x01, 0xd7, 0x48, 0x48, 0xa8, 0xdb, 0x3d, 0x0f, 0xbf, 0x76, 0xed, 0x40, 0x58, - 0x71, 0x9b, 0xa9, 0xae, 0xef, 0xab, 0xee, 0xaa, 0xaf, 0xab, 0x1a, 0x7c, 0x70, 0xfa, 0x88, 0xaa, - 0x96, 0xa7, 0x9d, 0x86, 0x6d, 0x12, 0xb8, 0x84, 0x11, 0xaa, 0xf9, 0xa7, 0x1d, 0x0d, 0xfb, 0x16, - 0xd5, 0xda, 0x98, 0x19, 0x5d, 0xed, 0xac, 0x89, 0x6d, 0xbf, 0x8b, 0xb7, 0xb5, 0x0e, 0x71, 0x49, - 0x80, 0x19, 0x31, 0x55, 0x3f, 0xf0, 0x98, 0x07, 0xef, 0xf6, 0xa1, 0x6a, 0x0a, 0x55, 0xfd, 0xd3, - 0x8e, 0xca, 0xa1, 0xaa, 0x80, 0xaa, 0x31, 0x74, 0xe3, 0x41, 0xc7, 0x62, 0xdd, 0xb0, 0xad, 0x1a, - 0x9e, 0xa3, 0x75, 0xbc, 0x8e, 0xa7, 0x09, 0x86, 0x76, 0x78, 0x22, 0xfe, 0xc4, 0x8f, 0xf8, 0xea, - 0x33, 0x6f, 0xec, 0xc8, 0x4d, 0x61, 0xdf, 0x72, 0xb0, 0xd1, 0xb5, 0x5c, 0x12, 0x9c, 0xa7, 0xdb, - 0x72, 0x08, 0xc3, 0xda, 0xd9, 0xc8, 0x7e, 0x36, 0xb4, 0x49, 0xa8, 0x20, 0x74, 0x99, 0xe5, 0x90, - 0x11, 0xc0, 0xc3, 0xd7, 0x01, 0xa8, 0xd1, 0x25, 0x0e, 0x1e, 0xc1, 0x35, 0x27, 0xe6, 0x4c, 0x0b, - 0x08, 0xf5, 0xc2, 0xc0, 0x18, 0x8d, 0x75, 0x7f, 0x32, 0x66, 0xcc, 0x51, 0xb6, 0xc7, 0x7b, 0x87, - 0xcc, 0xb2, 0x35, 0xcb, 0x65, 0x94, 0x05, 0xc3, 0x90, 0xc6, 0x9f, 0x79, 0x50, 0xdc, 0x0d, 0x3c, - 0x77, 0xcf, 0x6b, 0xc3, 0x17, 0xa0, 0xc4, 0x93, 0x64, 0x62, 0x86, 0xab, 0xb9, 0xcd, 0xdc, 0x56, - 0xa5, 0xb9, 0xa5, 0x4e, 0x2c, 0x96, 0x7a, 0xb6, 0xad, 0x3e, 0x6d, 0xbf, 0x24, 0x06, 0x3b, 0x20, - 0x0c, 0xeb, 0xf0, 0xa2, 0x57, 0x9f, 0x8b, 0x7a, 0x75, 0x90, 0xda, 0x50, 0xc2, 0x06, 0x5f, 0x80, - 0x79, 0xea, 0x13, 0xa3, 0x9a, 0x17, 0xac, 0x0f, 0xd5, 0xa9, 0x25, 0xa0, 0xca, 0xbd, 0xb5, 0x7c, - 0x62, 0xe8, 0x8b, 0x32, 0xc6, 0x3c, 0xff, 0x43, 0x82, 0x11, 0x7e, 0x09, 0x0a, 0x94, 0x61, 0x16, - 0xd2, 0xaa, 0x22, 0xb8, 0x1f, 0xdd, 0x80, 0x5b, 0xe0, 0xf5, 0x65, 0xc9, 0x5e, 0xe8, 0xff, 0x23, - 0xc9, 0x0b, 0x8f, 0x41, 0x89, 0x9d, 0xfb, 0x84, 0x9f, 0xa8, 0x3a, 0x2f, 0x62, 0xa8, 0x71, 0x8c, - 0xac, 0x02, 0xd2, 0x28, 0xfc, 0xd4, 0x3c, 0x3b, 0x47, 0x12, 0xa5, 0xaf, 0x4a, 0xe6, 0x52, 0x6c, - 0x41, 0x09, 0x63, 0xe3, 0xfb, 0x3c, 0xa8, 0xc8, 0x7d, 0xec, 0x5b, 0x94, 0xf1, 0x68, 0x43, 0x35, - 0x98, 0x32, 0x1a, 0x47, 0x0f, 0x46, 0x8b, 0x2d, 0x99, 0x3a, 0x3c, 0x07, 0x0b, 0x16, 0x23, 0x0e, - 0xad, 0xe6, 0x37, 0x95, 0xad, 0x4a, 0xb3, 0x39, 0x7b, 0xb2, 0xf4, 0x25, 0x49, 0xbf, 0xf0, 0x09, - 0x27, 0x42, 0x7d, 0xbe, 0x81, 0x24, 0x29, 0xff, 0x78, 0x92, 0xbe, 0x51, 0x92, 0x24, 0xf1, 0xd2, - 0xc3, 0xfb, 0xa0, 0xc4, 0xef, 0x98, 0x19, 0xda, 0x44, 0x24, 0xa9, 0x9c, 0xa2, 0x5b, 0xd2, 0x8e, - 0x12, 0x0f, 0xf8, 0x0c, 0xdc, 0xa1, 0x0c, 0x07, 0xcc, 0x72, 0x3b, 0x1f, 0x11, 0x6c, 0xda, 0x96, - 0x4b, 0x5a, 0xc4, 0xf0, 0x5c, 0x93, 0x0a, 0x3d, 0x2a, 0xfa, 0xdb, 0x51, 0xaf, 0x7e, 0xa7, 0x35, - 0xde, 0x05, 0x4d, 0xc2, 0xc2, 0x63, 0xb0, 0x66, 0x78, 0xae, 0x11, 0x06, 0x01, 0x71, 0x8d, 0xf3, - 0x43, 0xcf, 0xb6, 0x8c, 0x73, 0x71, 0xf6, 0xb2, 0xae, 0xca, 0xdd, 0xac, 0xed, 0x0e, 0x3b, 0x5c, - 0x8f, 0x33, 0xa2, 0x51, 0x22, 0xf8, 0x0e, 0x28, 0xd2, 0x90, 0xfa, 0xc4, 0x35, 0x85, 0xe8, 0x4a, - 0x7a, 0x25, 0xea, 0xd5, 0x8b, 0xad, 0xbe, 0x09, 0xc5, 0x6b, 0xf0, 0x2b, 0x50, 0x79, 0xe9, 0xb5, - 0x8f, 0x88, 0xe3, 0xdb, 0x98, 0x91, 0xea, 0x82, 0x48, 0xfd, 0xe3, 0x19, 0xca, 0xba, 0x97, 0xa2, - 0xc5, 0x1d, 0xfb, 0x9f, 0xdc, 0x7a, 0x25, 0xb3, 0x80, 0xb2, 0x31, 0x1a, 0xbf, 0xe4, 0xc0, 0xd2, - 0xc0, 0xcd, 0x81, 0xcf, 0x40, 0x01, 0x1b, 0xcc, 0x3a, 0xe3, 0xc5, 0xe0, 0xb2, 0x7a, 0x30, 0x4d, - 0xd7, 0x40, 0xe4, 0x84, 0xf0, 0x03, 0x93, 0xf4, 0xe2, 0x3d, 0x11, 0x24, 0x48, 0x92, 0x41, 0x1b, - 0xac, 0xda, 0x98, 0xb2, 0xb8, 0xa2, 0x47, 0x96, 0x43, 0xe4, 0x05, 0xbc, 0x37, 0xa5, 0xb6, 0x2c, - 0x87, 0xe8, 0xff, 0x8f, 0x7a, 0xf5, 0xd5, 0xfd, 0x21, 0x1e, 0x34, 0xc2, 0xdc, 0xf8, 0x23, 0x0f, - 0x94, 0xdb, 0x6d, 0x82, 0x47, 0x03, 0x4d, 0xb0, 0x39, 0x5b, 0x91, 0x26, 0x36, 0xc0, 0xe3, 0xa1, - 0x06, 0xb8, 0x33, 0x23, 0xef, 0x9b, 0x6c, 0x7e, 0x97, 0x0a, 0x58, 0xdc, 0xf3, 0xda, 0xbb, 0x9e, - 0x6b, 0x5a, 0xcc, 0xf2, 0x5c, 0xb8, 0x03, 0xe6, 0xf9, 0xa2, 0xbc, 0xd4, 0x9b, 0xf1, 0x71, 0x39, - 0xf4, 0xba, 0x57, 0x5f, 0xcd, 0xfa, 0x72, 0x1b, 0x12, 0xde, 0xf0, 0xd3, 0x24, 0x05, 0x79, 0x81, - 0xfb, 0x70, 0xf0, 0x30, 0xd7, 0xbd, 0xfa, 0x2b, 0xc7, 0xa8, 0x9a, 0x70, 0x0e, 0x1d, 0xbe, 0x03, - 0x96, 0xb8, 0x4c, 0x0e, 0x03, 0xaf, 0xdd, 0x57, 0x9f, 0x32, 0xb3, 0xfa, 0xd6, 0xe5, 0x56, 0x96, - 0xf6, 0xb3, 0x44, 0x68, 0x90, 0x17, 0x9e, 0x01, 0xc8, 0x0d, 0x47, 0x01, 0x76, 0x69, 0xff, 0x70, - 0x37, 0xd3, 0xfa, 0x86, 0x8c, 0x06, 0xf7, 0x47, 0xd8, 0xd0, 0x98, 0x08, 0xf0, 0x5d, 0x50, 0x08, - 0x08, 0xa6, 0x9e, 0x2b, 0x1a, 0x47, 0x39, 0x55, 0x01, 0x12, 0x56, 0x24, 0x57, 0xe1, 0x5d, 0x50, - 0x74, 0x08, 0xa5, 0xb8, 0x43, 0xaa, 0x05, 0xe1, 0xb8, 0x22, 0x1d, 0x8b, 0x07, 0x7d, 0x33, 0x8a, - 0xd7, 0x1b, 0xdf, 0xe5, 0x41, 0xf1, 0xdf, 0x99, 0x65, 0xad, 0xc1, 0x59, 0xa6, 0xce, 0xa6, 0xfb, - 0x37, 0x32, 0xc7, 0x7e, 0x54, 0x44, 0x72, 0xc4, 0x0c, 0xdb, 0x06, 0x15, 0x1f, 0x07, 0xd8, 0xb6, - 0x89, 0x6d, 0x51, 0x47, 0xe4, 0x67, 0x41, 0x5f, 0xe1, 0x9d, 0xf7, 0x30, 0x35, 0xa3, 0xac, 0x0f, - 0x87, 0x18, 0x9e, 0xe3, 0xdb, 0x84, 0x17, 0xb0, 0x2f, 0x76, 0x09, 0xd9, 0x4d, 0xcd, 0x28, 0xeb, - 0x03, 0x9f, 0x82, 0xf5, 0x7e, 0x37, 0x1d, 0x9e, 0x7c, 0x8a, 0x98, 0x7c, 0x6f, 0x45, 0xbd, 0xfa, - 0xfa, 0x93, 0x71, 0x0e, 0x68, 0x3c, 0x0e, 0x7e, 0x01, 0x4a, 0x94, 0xd8, 0xc4, 0x60, 0x5e, 0x20, - 0x05, 0xfa, 0xde, 0x94, 0x35, 0xc5, 0x6d, 0x62, 0xb7, 0x24, 0x54, 0x5f, 0x14, 0xb3, 0x5a, 0xfe, - 0xa1, 0x84, 0x12, 0x3e, 0x06, 0xcb, 0x0e, 0x76, 0x43, 0x9c, 0x78, 0x0a, 0x65, 0x96, 0x74, 0x18, - 0xf5, 0xea, 0xcb, 0x07, 0x03, 0x2b, 0x68, 0xc8, 0x13, 0x7e, 0x0e, 0x4a, 0x2c, 0x1e, 0x84, 0x05, - 0xb1, 0xb5, 0xd7, 0x0c, 0xa2, 0x43, 0xcf, 0x1c, 0x98, 0x7d, 0x69, 0xe9, 0xe2, 0xc1, 0x97, 0x10, - 0x36, 0x7e, 0x52, 0x40, 0x39, 0x9d, 0x78, 0xa7, 0x00, 0x18, 0x71, 0xd3, 0xa0, 0x72, 0xea, 0xbd, - 0x3f, 0x9b, 0x00, 0x93, 0xa6, 0x93, 0x4e, 0x8d, 0xc4, 0x44, 0x51, 0x86, 0x1e, 0x3e, 0x07, 0x65, - 0xf1, 0x06, 0x11, 0x4d, 0x21, 0x3f, 0x73, 0x53, 0x58, 0x8a, 0x7a, 0xf5, 0x72, 0x2b, 0x26, 0x40, - 0x29, 0x17, 0x3c, 0x01, 0xcb, 0xa9, 0x56, 0x6e, 0xd8, 0xe0, 0x44, 0x61, 0x76, 0x07, 0x58, 0xd0, - 0x10, 0x2b, 0x6f, 0x33, 0xf2, 0x7d, 0x30, 0x2f, 0x24, 0x3b, 0x69, 0xe0, 0x6b, 0xa0, 0x4c, 0x43, - 0xc3, 0x20, 0xc4, 0x24, 0xa6, 0xa8, 0xfb, 0x82, 0xbe, 0x26, 0x5d, 0xcb, 0xad, 0x78, 0x01, 0xa5, - 0x3e, 0x9c, 0xf8, 0x04, 0x5b, 0x36, 0x31, 0x45, 0xbd, 0x33, 0xc4, 0x1f, 0x0b, 0x2b, 0x92, 0xab, - 0x8d, 0x1f, 0xf2, 0x20, 0xfb, 0x9e, 0xb9, 0xc5, 0x19, 0xdf, 0xcd, 0x68, 0x30, 0xff, 0xb7, 0x1f, - 0x63, 0xaf, 0x10, 0xe4, 0x2d, 0x77, 0xaa, 0x9f, 0x73, 0x60, 0x65, 0x68, 0x37, 0xff, 0xb5, 0x97, - 0x91, 0x7e, 0xef, 0xe2, 0xaa, 0x36, 0x77, 0x79, 0x55, 0x9b, 0xfb, 0xf5, 0xaa, 0x36, 0xf7, 0x75, - 0x54, 0xcb, 0x5d, 0x44, 0xb5, 0xdc, 0x65, 0x54, 0xcb, 0xfd, 0x16, 0xd5, 0x72, 0xdf, 0xfe, 0x5e, - 0x9b, 0xfb, 0xac, 0x14, 0xf3, 0xfc, 0x15, 0x00, 0x00, 0xff, 0xff, 0x6e, 0x22, 0xb7, 0xad, 0xd0, - 0x10, 0x00, 0x00, + // 1158 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xd4, 0x56, 0x4b, 0x6f, 0x23, 0x45, + 0x10, 0xce, 0xd8, 0x89, 0x1f, 0xed, 0xcd, 0xab, 0x21, 0x5a, 0x13, 0x24, 0x3b, 0xb2, 0x04, 0xca, + 0xae, 0x76, 0x67, 0x14, 0x13, 0x2d, 0xcb, 0x1e, 0x90, 0x76, 0x82, 0x90, 0x88, 0x12, 0x6d, 0xd4, + 0xce, 0xb2, 0x2b, 0x08, 0x12, 0xed, 0x71, 0xc7, 0x9e, 0xcd, 0xcc, 0xf4, 0x30, 0xdd, 0x13, 0x29, + 0x37, 0xce, 0x9c, 0x90, 0xf8, 0x01, 0xfc, 0x0d, 0x84, 0xb8, 0x20, 0x71, 0xc8, 0x31, 0x48, 0x1c, + 0x38, 0x59, 0x64, 0xf8, 0x17, 0x39, 0xa1, 0x6e, 0xf7, 0x3c, 0xfc, 0xca, 0xc6, 0x41, 0x8b, 0xc4, + 0xcd, 0x53, 0x5d, 0xdf, 0x57, 0xd5, 0x55, 0x5f, 0x57, 0x19, 0x7c, 0x74, 0xf2, 0x98, 0xe9, 0x36, + 0x35, 0x4e, 0xc2, 0x36, 0x09, 0x3c, 0xc2, 0x09, 0x33, 0xfc, 0x93, 0xae, 0x81, 0x7d, 0x9b, 0x19, + 0x6d, 0xcc, 0xad, 0x9e, 0x71, 0xda, 0xc4, 0x8e, 0xdf, 0xc3, 0x5b, 0x46, 0x97, 0x78, 0x24, 0xc0, + 0x9c, 0x74, 0x74, 0x3f, 0xa0, 0x9c, 0xc2, 0x7b, 0x03, 0xa8, 0x9e, 0x42, 0x75, 0xff, 0xa4, 0xab, + 0x0b, 0xa8, 0x2e, 0xa1, 0x7a, 0x0c, 0x5d, 0x7f, 0xd8, 0xb5, 0x79, 0x2f, 0x6c, 0xeb, 0x16, 0x75, + 0x8d, 0x2e, 0xed, 0x52, 0x43, 0x32, 0xb4, 0xc3, 0x63, 0xf9, 0x25, 0x3f, 0xe4, 0xaf, 0x01, 0xf3, + 0xfa, 0xb6, 0x4a, 0x0a, 0xfb, 0xb6, 0x8b, 0xad, 0x9e, 0xed, 0x91, 0xe0, 0x2c, 0x4d, 0xcb, 0x25, + 0x1c, 0x1b, 0xa7, 0x63, 0xf9, 0xac, 0x1b, 0xd3, 0x50, 0x41, 0xe8, 0x71, 0xdb, 0x25, 0x63, 0x80, + 0x47, 0xaf, 0x03, 0x30, 0xab, 0x47, 0x5c, 0x3c, 0x86, 0x6b, 0x4e, 0xad, 0x99, 0x11, 0x10, 0x46, + 0xc3, 0xc0, 0x1a, 0x8f, 0xf5, 0x60, 0x3a, 0x66, 0xc2, 0x55, 0xb6, 0x26, 0x7b, 0x87, 0xdc, 0x76, + 0x0c, 0xdb, 0xe3, 0x8c, 0x07, 0xa3, 0x90, 0xc6, 0x8f, 0x39, 0x50, 0xdc, 0x09, 0xa8, 0xb7, 0x4b, + 0xdb, 0xf0, 0x25, 0x28, 0x89, 0x22, 0x75, 0x30, 0xc7, 0x55, 0x6d, 0x43, 0xdb, 0xac, 0x34, 0x37, + 0xf5, 0xa9, 0xcd, 0xd2, 0x4f, 0xb7, 0xf4, 0x67, 0xed, 0x57, 0xc4, 0xe2, 0xfb, 0x84, 0x63, 0x13, + 0x9e, 0xf7, 0xeb, 0x73, 0x51, 0xbf, 0x0e, 0x52, 0x1b, 0x4a, 0xd8, 0xe0, 0x4b, 0x30, 0xcf, 0x7c, + 0x62, 0x55, 0x73, 0x92, 0xf5, 0x91, 0x7e, 0x63, 0x09, 0xe8, 0x2a, 0xb7, 0x96, 0x4f, 0x2c, 0xf3, + 0x8e, 0x8a, 0x31, 0x2f, 0xbe, 0x90, 0x64, 0x84, 0x5f, 0x83, 0x02, 0xe3, 0x98, 0x87, 0xac, 0x9a, + 0x97, 0xdc, 0x8f, 0x6f, 0xc1, 0x2d, 0xf1, 0xe6, 0x92, 0x62, 0x2f, 0x0c, 0xbe, 0x91, 0xe2, 0x6d, + 0xfc, 0xa6, 0x81, 0x8a, 0xf2, 0xdc, 0xb3, 0x19, 0x87, 0x47, 0x63, 0x55, 0xd2, 0xe3, 0x98, 0x59, + 0x45, 0xa4, 0x51, 0x85, 0xb7, 0xa8, 0x96, 0x40, 0xcb, 0x5a, 0xad, 0xa8, 0x48, 0xa5, 0xd8, 0x92, + 0xa9, 0xd4, 0x0b, 0xb0, 0x60, 0x73, 0xe2, 0xb2, 0x6a, 0x6e, 0x23, 0xbf, 0x59, 0x69, 0x36, 0x67, + 0xbf, 0x8e, 0xb9, 0xa8, 0xe8, 0x17, 0x3e, 0x13, 0x44, 0x68, 0xc0, 0xd7, 0xf8, 0x2e, 0x9f, 0x5c, + 0x43, 0x94, 0x0f, 0x3e, 0x00, 0x25, 0xa1, 0xd3, 0x4e, 0xe8, 0x10, 0x79, 0x8d, 0x72, 0x9a, 0x56, + 0x4b, 0xd9, 0x51, 0xe2, 0x01, 0x9f, 0x83, 0xbb, 0x8c, 0xe3, 0x80, 0xdb, 0x5e, 0xf7, 0x13, 0x82, + 0x3b, 0x8e, 0xed, 0x91, 0x16, 0xb1, 0xa8, 0xd7, 0x61, 0xb2, 0xa7, 0x79, 0xf3, 0xdd, 0xa8, 0x5f, + 0xbf, 0xdb, 0x9a, 0xec, 0x82, 0xa6, 0x61, 0xe1, 0x11, 0x58, 0xb5, 0xa8, 0x67, 0x85, 0x41, 0x40, + 0x3c, 0xeb, 0xec, 0x80, 0x3a, 0xb6, 0x75, 0x26, 0x1b, 0x59, 0x36, 0x75, 0x95, 0xcd, 0xea, 0xce, + 0xa8, 0xc3, 0xd5, 0x24, 0x23, 0x1a, 0x27, 0x82, 0xef, 0x81, 0x22, 0x0b, 0x99, 0x4f, 0xbc, 0x4e, + 0x75, 0x7e, 0x43, 0xdb, 0x2c, 0x99, 0x95, 0xa8, 0x5f, 0x2f, 0xb6, 0x06, 0x26, 0x14, 0x9f, 0xc1, + 0x6f, 0x40, 0xe5, 0x15, 0x6d, 0x1f, 0x12, 0xd7, 0x77, 0x30, 0x27, 0xd5, 0x05, 0xd9, 0xd3, 0x27, + 0x33, 0x14, 0x7e, 0x37, 0x45, 0x4b, 0x9d, 0xbe, 0xa5, 0x52, 0xaf, 0x64, 0x0e, 0x50, 0x36, 0x46, + 0xe3, 0x0f, 0x0d, 0x2c, 0x0e, 0xa9, 0x0f, 0x3e, 0x07, 0x05, 0x6c, 0x71, 0xfb, 0x54, 0x34, 0x43, + 0x34, 0xfe, 0xe1, 0x4d, 0x5e, 0x1e, 0x22, 0xc7, 0x44, 0x5c, 0x98, 0xa4, 0xe2, 0x7d, 0x2a, 0x49, + 0x90, 0x22, 0x83, 0x0e, 0x58, 0x71, 0x30, 0xe3, 0x71, 0x47, 0x0f, 0x6d, 0x97, 0xc8, 0x5a, 0x54, + 0x9a, 0xf7, 0x6f, 0x26, 0x5a, 0x81, 0x30, 0xdf, 0x8e, 0xfa, 0xf5, 0x95, 0xbd, 0x11, 0x1e, 0x34, + 0xc6, 0xdc, 0xf8, 0x21, 0x07, 0xf2, 0x6f, 0x76, 0x90, 0x1c, 0x0e, 0x0d, 0x92, 0xe6, 0x6c, 0x4d, + 0x9a, 0x3a, 0x44, 0x8e, 0x46, 0x86, 0xc8, 0xf6, 0x8c, 0xbc, 0xd7, 0x0f, 0x90, 0x8b, 0x3c, 0xb8, + 0xb3, 0x4b, 0xdb, 0x3b, 0xd4, 0xeb, 0xd8, 0xdc, 0xa6, 0x1e, 0xdc, 0x06, 0xf3, 0xfc, 0xcc, 0x8f, + 0x9f, 0xdd, 0x46, 0x9c, 0xd0, 0xe1, 0x99, 0x4f, 0xae, 0xfa, 0xf5, 0x95, 0xac, 0xaf, 0xb0, 0x21, + 0xe9, 0x0d, 0x3f, 0x4f, 0x92, 0xcc, 0x49, 0xdc, 0xc7, 0xc3, 0xe1, 0xae, 0xfa, 0xf5, 0x6b, 0x97, + 0x85, 0x9e, 0x70, 0x0e, 0xa7, 0x07, 0xbb, 0x60, 0x51, 0x34, 0xf2, 0x20, 0xa0, 0xed, 0x81, 0x3e, + 0xf2, 0x33, 0xeb, 0x63, 0x4d, 0xa5, 0xb2, 0xb8, 0x97, 0x25, 0x42, 0xc3, 0xbc, 0xf0, 0x14, 0x40, + 0x61, 0x38, 0x0c, 0xb0, 0xc7, 0x06, 0x97, 0xbb, 0x9d, 0x1a, 0xd7, 0x55, 0x34, 0xb8, 0x37, 0xc6, + 0x86, 0x26, 0x44, 0x80, 0xef, 0x83, 0x42, 0x40, 0x30, 0xa3, 0x9e, 0x7c, 0xda, 0xe5, 0xb4, 0x4f, + 0x48, 0x5a, 0x91, 0x3a, 0x85, 0xf7, 0x40, 0xd1, 0x25, 0x8c, 0xe1, 0x2e, 0xa9, 0x16, 0xa4, 0xe3, + 0xb2, 0x72, 0x2c, 0xee, 0x0f, 0xcc, 0x28, 0x3e, 0x6f, 0xfc, 0xa2, 0x81, 0xe2, 0x7f, 0xb3, 0x0f, + 0x5a, 0xc3, 0xfb, 0x40, 0x9f, 0x4d, 0x99, 0x53, 0x76, 0xc1, 0x4f, 0x79, 0x99, 0xbe, 0xdc, 0x03, + 0x5b, 0xa0, 0xe2, 0xe3, 0x00, 0x3b, 0x0e, 0x71, 0x6c, 0xe6, 0xca, 0x1b, 0x2c, 0x98, 0xcb, 0x62, + 0x7a, 0x1d, 0xa4, 0x66, 0x94, 0xf5, 0x11, 0x10, 0x8b, 0xba, 0xbe, 0x43, 0x44, 0x89, 0x07, 0x72, + 0x54, 0x90, 0x9d, 0xd4, 0x8c, 0xb2, 0x3e, 0xf0, 0x19, 0x58, 0x1b, 0x4c, 0xa4, 0xd1, 0xed, 0x91, + 0x97, 0xdb, 0xe3, 0x9d, 0xa8, 0x5f, 0x5f, 0x7b, 0x3a, 0xc9, 0x01, 0x4d, 0xc6, 0xc1, 0xaf, 0x40, + 0x89, 0x11, 0x87, 0x58, 0x9c, 0x06, 0x4a, 0x42, 0x1f, 0xdc, 0xb0, 0xea, 0xb8, 0x4d, 0x9c, 0x96, + 0x82, 0x9a, 0x77, 0xe4, 0xbe, 0x53, 0x5f, 0x28, 0xa1, 0x84, 0x4f, 0xc0, 0x92, 0x8b, 0xbd, 0x10, + 0x27, 0x9e, 0x52, 0x3b, 0x25, 0x13, 0x46, 0xfd, 0xfa, 0xd2, 0xfe, 0xd0, 0x09, 0x1a, 0xf1, 0x84, + 0x5f, 0x82, 0x12, 0x8f, 0x97, 0x49, 0x41, 0xa6, 0xf6, 0x9a, 0x61, 0x7e, 0x40, 0x3b, 0x43, 0xfb, + 0x23, 0xd1, 0x43, 0xb2, 0x3c, 0x12, 0xc2, 0xc6, 0xcf, 0x79, 0x50, 0x4e, 0xb7, 0xc6, 0x09, 0x00, + 0x56, 0xfc, 0xac, 0x99, 0xda, 0x1c, 0x1f, 0xce, 0x26, 0x91, 0x64, 0x2c, 0xa4, 0x93, 0x37, 0x31, + 0x31, 0x94, 0xa1, 0x87, 0x2f, 0x40, 0x59, 0xee, 0x71, 0xf9, 0x6c, 0x73, 0x33, 0x3f, 0xdb, 0xc5, + 0xa8, 0x5f, 0x2f, 0xb7, 0x62, 0x02, 0x94, 0x72, 0xc1, 0x63, 0xb0, 0x94, 0x6a, 0xe5, 0x96, 0x23, + 0x48, 0x36, 0x66, 0x67, 0x88, 0x05, 0x8d, 0xb0, 0x8a, 0x41, 0xa0, 0x76, 0xec, 0xbc, 0x94, 0xec, + 0xb4, 0xa5, 0x69, 0x80, 0x32, 0x0b, 0x2d, 0x8b, 0x90, 0x0e, 0xe9, 0xc8, 0xbe, 0x2f, 0x98, 0xab, + 0xca, 0xb5, 0xdc, 0x8a, 0x0f, 0x50, 0xea, 0x23, 0x88, 0x8f, 0xb1, 0xed, 0x90, 0x8e, 0xec, 0x77, + 0x86, 0xf8, 0x53, 0x69, 0x45, 0xea, 0xb4, 0xf1, 0xbb, 0x06, 0xb2, 0xff, 0x09, 0xde, 0xe0, 0x9e, + 0xec, 0x65, 0x34, 0x98, 0xfb, 0xd7, 0x7f, 0x68, 0xae, 0x13, 0xe4, 0xaf, 0x1a, 0x58, 0x1e, 0xf1, + 0xff, 0xbf, 0xed, 0x7f, 0xf3, 0xfe, 0xf9, 0x65, 0x6d, 0xee, 0xe2, 0xb2, 0x36, 0xf7, 0xe7, 0x65, + 0x6d, 0xee, 0xdb, 0xa8, 0xa6, 0x9d, 0x47, 0x35, 0xed, 0x22, 0xaa, 0x69, 0x7f, 0x45, 0x35, 0xed, + 0xfb, 0xbf, 0x6b, 0x73, 0x5f, 0x94, 0x62, 0x9e, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x00, 0x9d, + 0xf9, 0x2b, 0xfa, 0x0e, 0x00, 0x00, } diff --git a/pkg/apis/batch/v2alpha1/generated.proto b/pkg/apis/batch/v2alpha1/generated.proto index 4e9508feb15..67194ebb393 100644 --- a/pkg/apis/batch/v2alpha1/generated.proto +++ b/pkg/apis/batch/v2alpha1/generated.proto @@ -33,8 +33,6 @@ option go_package = "v2alpha1"; // CronJob represents the configuration of a single cron job. message CronJob { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -53,8 +51,6 @@ message CronJob { // CronJobList is a collection of cron jobs. message CronJobList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -101,8 +97,6 @@ message CronJobStatus { // Job represents the configuration of a single job. message Job { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -146,8 +140,6 @@ message JobCondition { // JobList is a collection of jobs. message JobList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -240,8 +232,6 @@ message JobStatus { // JobTemplate describes a template for creating copies of a predefined pod. message JobTemplate { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional diff --git a/pkg/apis/certificates/v1alpha1/generated.pb.go b/pkg/apis/certificates/v1alpha1/generated.pb.go index 33b34e2a382..aaf4adc5135 100644 --- a/pkg/apis/certificates/v1alpha1/generated.pb.go +++ b/pkg/apis/certificates/v1alpha1/generated.pb.go @@ -127,14 +127,6 @@ func (m *CertificateSigningRequest) MarshalTo(data []byte) (int, error) { return 0, err } i += n3 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n4, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n4 return i, nil } @@ -168,11 +160,11 @@ func (m *CertificateSigningRequestCondition) MarshalTo(data []byte) (int, error) data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.LastUpdateTime.Size())) - n5, err := m.LastUpdateTime.MarshalTo(data[i:]) + n4, err := m.LastUpdateTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n5 + i += n4 return i, nil } @@ -194,11 +186,11 @@ func (m *CertificateSigningRequestList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n6, err := m.ListMeta.MarshalTo(data[i:]) + n5, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n6 + i += n5 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -211,14 +203,6 @@ func (m *CertificateSigningRequestList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n7, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n7 return i, nil } @@ -356,8 +340,6 @@ func (m *CertificateSigningRequest) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -386,8 +368,6 @@ func (m *CertificateSigningRequestList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -454,7 +434,6 @@ func (this *CertificateSigningRequest) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "CertificateSigningRequestSpec", "CertificateSigningRequestSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "CertificateSigningRequestStatus", "CertificateSigningRequestStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -479,7 +458,6 @@ func (this *CertificateSigningRequestList) String() string { s := strings.Join([]string{`&CertificateSigningRequestList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "CertificateSigningRequest", "CertificateSigningRequest", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -636,36 +614,6 @@ func (m *CertificateSigningRequest) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -944,36 +892,6 @@ func (m *CertificateSigningRequestList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1410,53 +1328,51 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 760 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x54, 0x4d, 0x4f, 0x1b, 0x3b, - 0x14, 0xcd, 0x24, 0x21, 0x24, 0x0e, 0x0f, 0x9e, 0xac, 0x27, 0x94, 0x87, 0xc4, 0x04, 0x45, 0xef, - 0x55, 0x29, 0xa2, 0x9e, 0x26, 0xaa, 0x2a, 0x96, 0xd5, 0x50, 0xa9, 0x42, 0x80, 0x50, 0x0d, 0x91, - 0xaa, 0xaa, 0x1b, 0x67, 0x62, 0x26, 0x26, 0xcc, 0x07, 0x63, 0x0f, 0x52, 0x76, 0x5d, 0x76, 0xd9, - 0x3f, 0xd0, 0x1f, 0xd3, 0x1d, 0x9b, 0x4a, 0x2c, 0xbb, 0x4a, 0x4b, 0xba, 0xec, 0x3f, 0x60, 0x55, - 0xd9, 0xf1, 0x24, 0x21, 0x21, 0x85, 0x4a, 0xd9, 0xc5, 0xc7, 0xf7, 0x9e, 0x73, 0xe7, 0xdc, 0xe3, - 0x80, 0x17, 0x9d, 0x6d, 0x8e, 0x58, 0x60, 0x75, 0xe2, 0x26, 0x8d, 0x7c, 0x2a, 0x28, 0xb7, 0xc2, - 0x8e, 0x6b, 0x91, 0x90, 0x71, 0xcb, 0xa1, 0x91, 0x60, 0x27, 0xcc, 0x21, 0x12, 0xbd, 0xa8, 0x91, - 0xb3, 0xb0, 0x4d, 0x6a, 0x96, 0x4b, 0x7d, 0x1a, 0x11, 0x41, 0x5b, 0x28, 0x8c, 0x02, 0x11, 0xc0, - 0xa7, 0x03, 0x06, 0x34, 0x62, 0x40, 0x61, 0xc7, 0x45, 0x92, 0x01, 0x8d, 0x33, 0xa0, 0x84, 0x61, - 0xed, 0x89, 0xcb, 0x44, 0x3b, 0x6e, 0x22, 0x27, 0xf0, 0x2c, 0x37, 0x70, 0x03, 0x4b, 0x11, 0x35, - 0xe3, 0x13, 0x75, 0x52, 0x07, 0xf5, 0x6b, 0x20, 0xb0, 0xf6, 0x4c, 0x8f, 0x48, 0x42, 0xe6, 0x11, - 0xa7, 0xcd, 0x7c, 0x1a, 0x75, 0x47, 0x43, 0x7a, 0x54, 0x10, 0xeb, 0x62, 0x6a, 0xac, 0x35, 0x6b, - 0x56, 0x57, 0x14, 0xfb, 0x82, 0x79, 0x74, 0xaa, 0xe1, 0xf9, 0x7d, 0x0d, 0xdc, 0x69, 0x53, 0x8f, - 0x4c, 0xf5, 0xd5, 0x67, 0x3a, 0x68, 0x45, 0x94, 0x07, 0x71, 0xe4, 0x4c, 0x6b, 0x6d, 0xcd, 0xee, - 0xb9, 0xe3, 0x53, 0x6a, 0x77, 0x57, 0xc7, 0x82, 0x9d, 0x59, 0xcc, 0x17, 0x5c, 0x44, 0x93, 0x2d, - 0x95, 0xcf, 0x19, 0xf0, 0xef, 0xce, 0xc8, 0xfc, 0x23, 0xe6, 0xfa, 0xcc, 0x77, 0x31, 0x3d, 0x8f, - 0x29, 0x17, 0xf0, 0x0d, 0xc8, 0x4b, 0xdb, 0x5a, 0x44, 0x90, 0x92, 0xb1, 0x61, 0x54, 0x8b, 0xf5, - 0x2a, 0x9a, 0xb9, 0x45, 0x74, 0x51, 0x43, 0x87, 0xcd, 0x53, 0xea, 0x88, 0x03, 0x2a, 0x88, 0x0d, - 0x2f, 0x7b, 0xe5, 0x54, 0xbf, 0x57, 0x06, 0x23, 0x0c, 0x0f, 0xd9, 0xe0, 0x39, 0xc8, 0xf2, 0x90, - 0x3a, 0xa5, 0xb4, 0x62, 0x3d, 0x44, 0x7f, 0x9a, 0x0d, 0x34, 0x73, 0xe8, 0xa3, 0x90, 0x3a, 0xf6, - 0x92, 0x16, 0xcf, 0xca, 0x13, 0x56, 0x52, 0xb0, 0x0b, 0x72, 0x5c, 0x10, 0x11, 0xf3, 0x52, 0x46, - 0x89, 0xbe, 0x9e, 0xa7, 0xa8, 0x22, 0xb6, 0x97, 0xb5, 0x6c, 0x6e, 0x70, 0xc6, 0x5a, 0x10, 0xbe, - 0x03, 0x79, 0xd1, 0x0d, 0xa9, 0xf4, 0xa0, 0x94, 0x55, 0xe2, 0x28, 0x11, 0x1f, 0x4f, 0xd1, 0x48, - 0x5e, 0xfa, 0x24, 0xfd, 0x3c, 0xd6, 0x5d, 0xf6, 0xdf, 0x9a, 0x39, 0x9f, 0x20, 0x78, 0xc8, 0x58, - 0xf9, 0x94, 0x06, 0x95, 0x99, 0x93, 0xed, 0x04, 0x7e, 0x8b, 0x09, 0x16, 0xf8, 0x70, 0x1b, 0x64, - 0x65, 0x8b, 0x5a, 0x64, 0xc1, 0xfe, 0x2f, 0x71, 0x48, 0x12, 0xde, 0xf4, 0xca, 0xff, 0x4c, 0xd6, - 0x4b, 0x1c, 0xab, 0x0e, 0xf8, 0x08, 0xe4, 0x22, 0x4a, 0x78, 0xe0, 0xab, 0x75, 0x15, 0x46, 0x9f, - 0x89, 0x15, 0x8a, 0xf5, 0x2d, 0x7c, 0x0c, 0x16, 0x3d, 0xca, 0x39, 0x71, 0xa9, 0xb2, 0xb8, 0x60, - 0xaf, 0xe8, 0xc2, 0xc5, 0x83, 0x01, 0x8c, 0x93, 0x7b, 0x78, 0x0a, 0x96, 0xcf, 0x08, 0x17, 0x8d, - 0xb0, 0x45, 0x04, 0x3d, 0x66, 0x1e, 0xd5, 0xbe, 0x6c, 0x3e, 0xd0, 0x17, 0xe6, 0x51, 0x7b, 0x55, - 0xb3, 0x2f, 0xef, 0xdf, 0x62, 0xc2, 0x13, 0xcc, 0x95, 0x2f, 0x69, 0xb0, 0x3e, 0xd3, 0x9f, 0x7d, - 0xc6, 0x85, 0xdc, 0xcf, 0x44, 0xce, 0x1f, 0xb8, 0x1f, 0xd9, 0x7d, 0x7b, 0x3f, 0x09, 0x32, 0x96, - 0xf5, 0x10, 0x2c, 0x30, 0x41, 0x3d, 0x5e, 0x4a, 0x6f, 0x64, 0xaa, 0xc5, 0xfa, 0xde, 0x1c, 0x73, - 0x67, 0xff, 0xa5, 0x75, 0x17, 0x76, 0xa5, 0x02, 0x1e, 0x08, 0xdd, 0xca, 0x5b, 0x66, 0xee, 0x79, - 0xfb, 0x69, 0xfc, 0xc6, 0x4f, 0xf9, 0xe0, 0xe0, 0xff, 0x60, 0x31, 0x1a, 0x1c, 0x95, 0x9d, 0x4b, - 0x76, 0x51, 0x86, 0x40, 0x57, 0xe0, 0xe4, 0x0e, 0x6e, 0x81, 0x7c, 0xcc, 0x69, 0xe4, 0x13, 0x8f, - 0xea, 0x64, 0x0d, 0x65, 0x1b, 0x1a, 0xc7, 0xc3, 0x0a, 0xb8, 0x0e, 0x32, 0x31, 0x6b, 0xe9, 0x64, - 0x15, 0x75, 0x61, 0xa6, 0xb1, 0xfb, 0x12, 0x4b, 0x1c, 0x56, 0x40, 0xce, 0x8d, 0x82, 0x38, 0xe4, - 0xa5, 0xec, 0x46, 0xa6, 0x5a, 0xb0, 0x81, 0x0c, 0xe8, 0x2b, 0x85, 0x60, 0x7d, 0x03, 0xeb, 0x20, - 0xdf, 0xa1, 0xdd, 0x86, 0x4a, 0xe8, 0x82, 0xaa, 0x5a, 0x95, 0x55, 0x0a, 0xe0, 0x37, 0xbd, 0x72, - 0x7e, 0x4f, 0xdf, 0xe2, 0x61, 0x5d, 0xe5, 0x9b, 0x01, 0xca, 0xf7, 0xbc, 0x7b, 0xf8, 0xc1, 0x00, - 0xc0, 0x49, 0x1e, 0x0e, 0x2f, 0x19, 0x6a, 0xcf, 0xc7, 0x73, 0xdc, 0xf3, 0xf0, 0x55, 0x8e, 0xfe, - 0x56, 0x87, 0x10, 0xc7, 0x63, 0xda, 0xb0, 0x06, 0x8a, 0x63, 0xdc, 0xca, 0xd6, 0x25, 0x7b, 0xa5, - 0xdf, 0x2b, 0x17, 0xc7, 0xc8, 0xf1, 0x78, 0x8d, 0xbd, 0x79, 0x79, 0x6d, 0xa6, 0xae, 0xae, 0xcd, - 0xd4, 0xd7, 0x6b, 0x33, 0xf5, 0xbe, 0x6f, 0x1a, 0x97, 0x7d, 0xd3, 0xb8, 0xea, 0x9b, 0xc6, 0xf7, - 0xbe, 0x69, 0x7c, 0xfc, 0x61, 0xa6, 0xde, 0xe6, 0x93, 0x09, 0x7f, 0x05, 0x00, 0x00, 0xff, 0xff, - 0x32, 0x89, 0x6c, 0x98, 0x07, 0x08, 0x00, 0x00, + // 735 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x54, 0xbf, 0x4f, 0x1b, 0x49, + 0x14, 0xf6, 0xda, 0xc6, 0xd8, 0x63, 0x0e, 0x4e, 0xa3, 0x13, 0xf2, 0x21, 0xb1, 0x46, 0xd6, 0xdd, + 0xc9, 0x87, 0xb8, 0xdd, 0xb3, 0x15, 0x45, 0x94, 0xd1, 0x12, 0x29, 0x42, 0x80, 0x50, 0x06, 0x2c, + 0x45, 0x51, 0x9a, 0xf1, 0xfa, 0xb1, 0x1e, 0xcc, 0xfe, 0x60, 0x67, 0x16, 0xc9, 0x5d, 0xca, 0x94, + 0xf9, 0x07, 0xf2, 0xff, 0x50, 0x52, 0xa6, 0x72, 0x82, 0x29, 0x53, 0xa4, 0xa7, 0x8a, 0x66, 0x3c, + 0x6b, 0x3b, 0x18, 0x87, 0x44, 0xa2, 0xf3, 0x7c, 0xf3, 0xde, 0xf7, 0xbd, 0xf9, 0xde, 0xb7, 0x46, + 0xcf, 0x7a, 0xdb, 0xdc, 0x62, 0xa1, 0xdd, 0x4b, 0xda, 0x10, 0x07, 0x20, 0x80, 0xdb, 0x51, 0xcf, + 0xb3, 0x69, 0xc4, 0xb8, 0xed, 0x42, 0x2c, 0xd8, 0x09, 0x73, 0xa9, 0x44, 0x2f, 0x1a, 0xf4, 0x2c, + 0xea, 0xd2, 0x86, 0xed, 0x41, 0x00, 0x31, 0x15, 0xd0, 0xb1, 0xa2, 0x38, 0x14, 0x21, 0xfe, 0x7f, + 0xc4, 0x60, 0x4d, 0x18, 0xac, 0xa8, 0xe7, 0x59, 0x92, 0xc1, 0x9a, 0x66, 0xb0, 0x52, 0x86, 0xb5, + 0xff, 0x3c, 0x26, 0xba, 0x49, 0xdb, 0x72, 0x43, 0xdf, 0xf6, 0x42, 0x2f, 0xb4, 0x15, 0x51, 0x3b, + 0x39, 0x51, 0x27, 0x75, 0x50, 0xbf, 0x46, 0x02, 0x6b, 0x4f, 0xf4, 0x88, 0x34, 0x62, 0x3e, 0x75, + 0xbb, 0x2c, 0x80, 0xb8, 0x3f, 0x19, 0xd2, 0x07, 0x41, 0xed, 0x8b, 0x99, 0xb1, 0xd6, 0xec, 0x79, + 0x5d, 0x71, 0x12, 0x08, 0xe6, 0xc3, 0x4c, 0xc3, 0xd3, 0x87, 0x1a, 0xb8, 0xdb, 0x05, 0x9f, 0xce, + 0xf4, 0x35, 0xe7, 0x3a, 0x68, 0xc7, 0xc0, 0xc3, 0x24, 0x76, 0x67, 0xb5, 0xb6, 0xe6, 0xf7, 0xdc, + 0xf3, 0x94, 0xc6, 0xfd, 0xd5, 0x89, 0x60, 0x67, 0x36, 0x0b, 0x04, 0x17, 0xf1, 0xdd, 0x96, 0xda, + 0x4d, 0x16, 0xfd, 0xb9, 0x33, 0x31, 0xff, 0x88, 0x79, 0x01, 0x0b, 0x3c, 0x02, 0xe7, 0x09, 0x70, + 0x81, 0x5f, 0xa1, 0xa2, 0xb4, 0xad, 0x43, 0x05, 0xad, 0x18, 0x1b, 0x46, 0xbd, 0xdc, 0xac, 0x5b, + 0x73, 0xb7, 0x68, 0x5d, 0x34, 0xac, 0xc3, 0xf6, 0x29, 0xb8, 0xe2, 0x00, 0x04, 0x75, 0xf0, 0xe5, + 0xa0, 0x9a, 0x19, 0x0e, 0xaa, 0x68, 0x82, 0x91, 0x31, 0x1b, 0x3e, 0x47, 0x79, 0x1e, 0x81, 0x5b, + 0xc9, 0x2a, 0xd6, 0x43, 0xeb, 0x57, 0xb3, 0x61, 0xcd, 0x1d, 0xfa, 0x28, 0x02, 0xd7, 0x59, 0xd2, + 0xe2, 0x79, 0x79, 0x22, 0x4a, 0x0a, 0xf7, 0x51, 0x81, 0x0b, 0x2a, 0x12, 0x5e, 0xc9, 0x29, 0xd1, + 0x97, 0x8f, 0x29, 0xaa, 0x88, 0x9d, 0x65, 0x2d, 0x5b, 0x18, 0x9d, 0x89, 0x16, 0xac, 0x7d, 0xc8, + 0xa2, 0xda, 0xdc, 0xde, 0x9d, 0x30, 0xe8, 0x30, 0xc1, 0xc2, 0x00, 0x6f, 0xa3, 0xbc, 0xe8, 0x47, + 0xa0, 0xac, 0x2e, 0x39, 0x7f, 0xa5, 0x6f, 0x38, 0xee, 0x47, 0x70, 0x3b, 0xa8, 0xfe, 0x71, 0xb7, + 0x5e, 0xe2, 0x44, 0x75, 0xe0, 0x7f, 0x50, 0x21, 0x06, 0xca, 0xc3, 0x40, 0x19, 0x5a, 0x9a, 0x0c, + 0x42, 0x14, 0x4a, 0xf4, 0x2d, 0xfe, 0x17, 0x2d, 0xfa, 0xc0, 0x39, 0xf5, 0x40, 0x99, 0x50, 0x72, + 0x56, 0x74, 0xe1, 0xe2, 0xc1, 0x08, 0x26, 0xe9, 0x3d, 0x3e, 0x45, 0xcb, 0x67, 0x94, 0x8b, 0x56, + 0xd4, 0xa1, 0x02, 0x8e, 0x99, 0x0f, 0x95, 0xbc, 0xb2, 0x6d, 0x33, 0xb5, 0x6d, 0x3a, 0xff, 0x13, + 0xe3, 0xe4, 0x86, 0x65, 0x12, 0x64, 0x87, 0xb3, 0xaa, 0xd9, 0x97, 0xf7, 0xbf, 0x63, 0x22, 0x77, + 0x98, 0x6b, 0x5f, 0x0d, 0xb4, 0x3e, 0xd7, 0x9f, 0x7d, 0xc6, 0x05, 0x7e, 0x33, 0x93, 0x44, 0xeb, + 0xe7, 0xe6, 0x90, 0xdd, 0x2a, 0x8f, 0xbf, 0xeb, 0x59, 0x8a, 0x29, 0x32, 0x95, 0xc6, 0x08, 0x2d, + 0x30, 0x01, 0x3e, 0xaf, 0x64, 0x37, 0x72, 0xf5, 0x72, 0x73, 0xef, 0x11, 0x93, 0xe1, 0xfc, 0xa6, + 0x75, 0x17, 0x76, 0xa5, 0x02, 0x19, 0x09, 0xd5, 0xbe, 0xfc, 0xe8, 0xc5, 0x32, 0xb4, 0xf8, 0x6f, + 0xb4, 0x18, 0x8f, 0x8e, 0xea, 0xc1, 0x4b, 0x4e, 0x59, 0xae, 0x49, 0x57, 0x90, 0xf4, 0x0e, 0x6f, + 0xa1, 0x62, 0xc2, 0x21, 0x0e, 0xa8, 0x0f, 0x7a, 0xf7, 0xe3, 0x87, 0xb6, 0x34, 0x4e, 0xc6, 0x15, + 0x78, 0x1d, 0xe5, 0x12, 0xd6, 0xd1, 0xbb, 0x2f, 0xeb, 0xc2, 0x5c, 0x6b, 0xf7, 0x39, 0x91, 0x38, + 0xae, 0xa1, 0x82, 0x17, 0x87, 0x49, 0xc4, 0x2b, 0xf9, 0x8d, 0x5c, 0xbd, 0xe4, 0x20, 0x19, 0xa1, + 0x17, 0x0a, 0x21, 0xfa, 0x06, 0x37, 0x51, 0xb1, 0x07, 0xfd, 0x96, 0xca, 0xd0, 0x82, 0xaa, 0x5a, + 0x95, 0x55, 0x0a, 0xe0, 0xb7, 0x83, 0x6a, 0x71, 0x4f, 0xdf, 0x92, 0x71, 0x5d, 0xed, 0x93, 0x81, + 0xaa, 0x0f, 0x7c, 0x3b, 0xf8, 0x9d, 0x81, 0x90, 0x9b, 0x46, 0x9b, 0x57, 0x0c, 0xb5, 0x89, 0xe3, + 0x47, 0xdc, 0xc4, 0xf8, 0xbb, 0x99, 0xfc, 0x35, 0x8d, 0x21, 0x4e, 0xa6, 0xb4, 0x71, 0x03, 0x95, + 0xa7, 0xb8, 0x95, 0xad, 0x4b, 0xce, 0xca, 0x70, 0x50, 0x2d, 0x4f, 0x91, 0x93, 0xe9, 0x1a, 0x67, + 0xf3, 0xf2, 0xda, 0xcc, 0x5c, 0x5d, 0x9b, 0x99, 0x8f, 0xd7, 0x66, 0xe6, 0xed, 0xd0, 0x34, 0x2e, + 0x87, 0xa6, 0x71, 0x35, 0x34, 0x8d, 0xcf, 0x43, 0xd3, 0x78, 0x7f, 0x63, 0x66, 0x5e, 0x17, 0xd3, + 0x09, 0xbf, 0x05, 0x00, 0x00, 0xff, 0xff, 0x55, 0xe5, 0xc0, 0xfd, 0x4b, 0x07, 0x00, 0x00, } diff --git a/pkg/apis/certificates/v1alpha1/generated.proto b/pkg/apis/certificates/v1alpha1/generated.proto index 1bde3edb29b..eb0ef771f90 100644 --- a/pkg/apis/certificates/v1alpha1/generated.proto +++ b/pkg/apis/certificates/v1alpha1/generated.proto @@ -33,8 +33,6 @@ option go_package = "v1alpha1"; // Describes a certificate signing request message CertificateSigningRequest { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; @@ -65,8 +63,6 @@ message CertificateSigningRequestCondition { } message CertificateSigningRequestList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // +optional optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; diff --git a/pkg/apis/extensions/v1beta1/generated.pb.go b/pkg/apis/extensions/v1beta1/generated.pb.go index 3c8b728b292..57c3ba63494 100644 --- a/pkg/apis/extensions/v1beta1/generated.pb.go +++ b/pkg/apis/extensions/v1beta1/generated.pb.go @@ -652,14 +652,6 @@ func (m *DaemonSet) MarshalTo(data []byte) (int, error) { return 0, err } i += n5 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n6, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n6 return i, nil } @@ -681,11 +673,11 @@ func (m *DaemonSetList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n7, err := m.ListMeta.MarshalTo(data[i:]) + n6, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n7 + i += n6 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -698,14 +690,6 @@ func (m *DaemonSetList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n8, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n8 return i, nil } @@ -728,20 +712,20 @@ func (m *DaemonSetSpec) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Selector.Size())) - n9, err := m.Selector.MarshalTo(data[i:]) + n7, err := m.Selector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n9 + i += n7 } data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n10, err := m.Template.MarshalTo(data[i:]) + n8, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n10 + i += n8 return i, nil } @@ -796,35 +780,27 @@ func (m *Deployment) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n11, err := m.ObjectMeta.MarshalTo(data[i:]) + n9, err := m.ObjectMeta.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n9 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n10, err := m.Spec.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n10 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n11, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } i += n11 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n12, err := m.Spec.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n12 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n13, err := m.Status.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n13 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n14, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n14 return i, nil } @@ -862,19 +838,19 @@ func (m *DeploymentCondition) MarshalTo(data []byte) (int, error) { data[i] = 0x32 i++ i = encodeVarintGenerated(data, i, uint64(m.LastUpdateTime.Size())) - n15, err := m.LastUpdateTime.MarshalTo(data[i:]) + n12, err := m.LastUpdateTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n15 + i += n12 data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) - n16, err := m.LastTransitionTime.MarshalTo(data[i:]) + n13, err := m.LastTransitionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n16 + i += n13 return i, nil } @@ -896,11 +872,11 @@ func (m *DeploymentList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n17, err := m.ListMeta.MarshalTo(data[i:]) + n14, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n17 + i += n14 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -913,14 +889,6 @@ func (m *DeploymentList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n18, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n18 return i, nil } @@ -963,19 +931,11 @@ func (m *DeploymentRollback) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.RollbackTo.Size())) - n19, err := m.RollbackTo.MarshalTo(data[i:]) + n15, err := m.RollbackTo.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n19 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n20, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n20 + i += n15 return i, nil } @@ -1003,28 +963,28 @@ func (m *DeploymentSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Selector.Size())) - n21, err := m.Selector.MarshalTo(data[i:]) + n16, err := m.Selector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n21 + i += n16 } data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n22, err := m.Template.MarshalTo(data[i:]) + n17, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n22 + i += n17 data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.Strategy.Size())) - n23, err := m.Strategy.MarshalTo(data[i:]) + n18, err := m.Strategy.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n23 + i += n18 data[i] = 0x28 i++ i = encodeVarintGenerated(data, i, uint64(m.MinReadySeconds)) @@ -1045,11 +1005,11 @@ func (m *DeploymentSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x42 i++ i = encodeVarintGenerated(data, i, uint64(m.RollbackTo.Size())) - n24, err := m.RollbackTo.MarshalTo(data[i:]) + n19, err := m.RollbackTo.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n24 + i += n19 } if m.ProgressDeadlineSeconds != nil { data[i] = 0x48 @@ -1130,11 +1090,11 @@ func (m *DeploymentStrategy) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.RollingUpdate.Size())) - n25, err := m.RollingUpdate.MarshalTo(data[i:]) + n20, err := m.RollingUpdate.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n25 + i += n20 } return i, nil } @@ -1195,11 +1155,11 @@ func (m *HTTPIngressPath) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Backend.Size())) - n26, err := m.Backend.MarshalTo(data[i:]) + n21, err := m.Backend.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n26 + i += n21 return i, nil } @@ -1251,35 +1211,27 @@ func (m *HorizontalPodAutoscaler) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n27, err := m.ObjectMeta.MarshalTo(data[i:]) + n22, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n27 + i += n22 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n28, err := m.Spec.MarshalTo(data[i:]) + n23, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n28 + i += n23 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n29, err := m.Status.MarshalTo(data[i:]) + n24, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n29 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n30, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n30 + i += n24 return i, nil } @@ -1301,11 +1253,11 @@ func (m *HorizontalPodAutoscalerList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n31, err := m.ListMeta.MarshalTo(data[i:]) + n25, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n31 + i += n25 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -1318,14 +1270,6 @@ func (m *HorizontalPodAutoscalerList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n32, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n32 return i, nil } @@ -1347,11 +1291,11 @@ func (m *HorizontalPodAutoscalerSpec) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ScaleRef.Size())) - n33, err := m.ScaleRef.MarshalTo(data[i:]) + n26, err := m.ScaleRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n33 + i += n26 if m.MinReplicas != nil { data[i] = 0x10 i++ @@ -1364,11 +1308,11 @@ func (m *HorizontalPodAutoscalerSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.CPUUtilization.Size())) - n34, err := m.CPUUtilization.MarshalTo(data[i:]) + n27, err := m.CPUUtilization.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n34 + i += n27 } return i, nil } @@ -1397,11 +1341,11 @@ func (m *HorizontalPodAutoscalerStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.LastScaleTime.Size())) - n35, err := m.LastScaleTime.MarshalTo(data[i:]) + n28, err := m.LastScaleTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n35 + i += n28 } data[i] = 0x18 i++ @@ -1483,35 +1427,27 @@ func (m *Ingress) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n36, err := m.ObjectMeta.MarshalTo(data[i:]) + n29, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n36 + i += n29 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n37, err := m.Spec.MarshalTo(data[i:]) + n30, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n37 + i += n30 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n38, err := m.Status.MarshalTo(data[i:]) + n31, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n38 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n39, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n39 + i += n31 return i, nil } @@ -1537,11 +1473,11 @@ func (m *IngressBackend) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.ServicePort.Size())) - n40, err := m.ServicePort.MarshalTo(data[i:]) + n32, err := m.ServicePort.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n40 + i += n32 return i, nil } @@ -1563,11 +1499,11 @@ func (m *IngressList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n41, err := m.ListMeta.MarshalTo(data[i:]) + n33, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n41 + i += n33 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -1580,14 +1516,6 @@ func (m *IngressList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n42, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n42 return i, nil } @@ -1613,11 +1541,11 @@ func (m *IngressRule) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.IngressRuleValue.Size())) - n43, err := m.IngressRuleValue.MarshalTo(data[i:]) + n34, err := m.IngressRuleValue.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n43 + i += n34 return i, nil } @@ -1640,11 +1568,11 @@ func (m *IngressRuleValue) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.HTTP.Size())) - n44, err := m.HTTP.MarshalTo(data[i:]) + n35, err := m.HTTP.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n44 + i += n35 } return i, nil } @@ -1668,11 +1596,11 @@ func (m *IngressSpec) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Backend.Size())) - n45, err := m.Backend.MarshalTo(data[i:]) + n36, err := m.Backend.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n45 + i += n36 } if len(m.TLS) > 0 { for _, msg := range m.TLS { @@ -1719,11 +1647,11 @@ func (m *IngressStatus) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LoadBalancer.Size())) - n46, err := m.LoadBalancer.MarshalTo(data[i:]) + n37, err := m.LoadBalancer.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n46 + i += n37 return i, nil } @@ -1782,27 +1710,19 @@ func (m *NetworkPolicy) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n47, err := m.ObjectMeta.MarshalTo(data[i:]) + n38, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n47 + i += n38 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n48, err := m.Spec.MarshalTo(data[i:]) + n39, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n48 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n49, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n49 + i += n39 return i, nil } @@ -1866,11 +1786,11 @@ func (m *NetworkPolicyList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n50, err := m.ListMeta.MarshalTo(data[i:]) + n40, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n50 + i += n40 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -1883,14 +1803,6 @@ func (m *NetworkPolicyList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n51, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n51 return i, nil } @@ -1913,21 +1825,21 @@ func (m *NetworkPolicyPeer) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.PodSelector.Size())) - n52, err := m.PodSelector.MarshalTo(data[i:]) + n41, err := m.PodSelector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n52 + i += n41 } if m.NamespaceSelector != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.NamespaceSelector.Size())) - n53, err := m.NamespaceSelector.MarshalTo(data[i:]) + n42, err := m.NamespaceSelector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n53 + i += n42 } return i, nil } @@ -1957,11 +1869,11 @@ func (m *NetworkPolicyPort) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Port.Size())) - n54, err := m.Port.MarshalTo(data[i:]) + n43, err := m.Port.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n54 + i += n43 } return i, nil } @@ -1984,11 +1896,11 @@ func (m *NetworkPolicySpec) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.PodSelector.Size())) - n55, err := m.PodSelector.MarshalTo(data[i:]) + n44, err := m.PodSelector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n55 + i += n44 if len(m.Ingress) > 0 { for _, msg := range m.Ingress { data[i] = 0x12 @@ -2022,27 +1934,19 @@ func (m *PodSecurityPolicy) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n56, err := m.ObjectMeta.MarshalTo(data[i:]) + n45, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n56 + i += n45 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n57, err := m.Spec.MarshalTo(data[i:]) + n46, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n57 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n58, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n58 + i += n46 return i, nil } @@ -2064,11 +1968,11 @@ func (m *PodSecurityPolicyList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n59, err := m.ListMeta.MarshalTo(data[i:]) + n47, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n59 + i += n47 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -2081,14 +1985,6 @@ func (m *PodSecurityPolicyList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n60, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n60 return i, nil } @@ -2214,35 +2110,35 @@ func (m *PodSecurityPolicySpec) MarshalTo(data []byte) (int, error) { data[i] = 0x52 i++ i = encodeVarintGenerated(data, i, uint64(m.SELinux.Size())) - n61, err := m.SELinux.MarshalTo(data[i:]) + n48, err := m.SELinux.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n61 + i += n48 data[i] = 0x5a i++ i = encodeVarintGenerated(data, i, uint64(m.RunAsUser.Size())) - n62, err := m.RunAsUser.MarshalTo(data[i:]) + n49, err := m.RunAsUser.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n62 + i += n49 data[i] = 0x62 i++ i = encodeVarintGenerated(data, i, uint64(m.SupplementalGroups.Size())) - n63, err := m.SupplementalGroups.MarshalTo(data[i:]) + n50, err := m.SupplementalGroups.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n63 + i += n50 data[i] = 0x6a i++ i = encodeVarintGenerated(data, i, uint64(m.FSGroup.Size())) - n64, err := m.FSGroup.MarshalTo(data[i:]) + n51, err := m.FSGroup.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n64 + i += n51 data[i] = 0x70 i++ if m.ReadOnlyRootFilesystem { @@ -2272,35 +2168,27 @@ func (m *ReplicaSet) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n65, err := m.ObjectMeta.MarshalTo(data[i:]) + n52, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n65 + i += n52 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n66, err := m.Spec.MarshalTo(data[i:]) + n53, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n66 + i += n53 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n67, err := m.Status.MarshalTo(data[i:]) + n54, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n67 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n68, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n68 + i += n54 return i, nil } @@ -2330,11 +2218,11 @@ func (m *ReplicaSetCondition) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) - n69, err := m.LastTransitionTime.MarshalTo(data[i:]) + n55, err := m.LastTransitionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n69 + i += n55 data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -2364,11 +2252,11 @@ func (m *ReplicaSetList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n70, err := m.ListMeta.MarshalTo(data[i:]) + n56, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n70 + i += n56 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -2381,14 +2269,6 @@ func (m *ReplicaSetList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n71, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n71 return i, nil } @@ -2416,20 +2296,20 @@ func (m *ReplicaSetSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Selector.Size())) - n72, err := m.Selector.MarshalTo(data[i:]) + n57, err := m.Selector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n72 + i += n57 } data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n73, err := m.Template.MarshalTo(data[i:]) + n58, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n73 + i += n58 data[i] = 0x20 i++ i = encodeVarintGenerated(data, i, uint64(m.MinReadySeconds)) @@ -2496,14 +2376,6 @@ func (m *ReplicationControllerDummy) MarshalTo(data []byte) (int, error) { _ = i var l int _ = l - data[i] = 0xa - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n74, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n74 return i, nil } @@ -2547,21 +2419,21 @@ func (m *RollingUpdateDeployment) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.MaxUnavailable.Size())) - n75, err := m.MaxUnavailable.MarshalTo(data[i:]) + n59, err := m.MaxUnavailable.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n75 + i += n59 } if m.MaxSurge != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.MaxSurge.Size())) - n76, err := m.MaxSurge.MarshalTo(data[i:]) + n60, err := m.MaxSurge.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n76 + i += n60 } return i, nil } @@ -2623,11 +2495,11 @@ func (m *SELinuxStrategyOptions) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.SELinuxOptions.Size())) - n77, err := m.SELinuxOptions.MarshalTo(data[i:]) + n61, err := m.SELinuxOptions.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n77 + i += n61 } return i, nil } @@ -2650,35 +2522,27 @@ func (m *Scale) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n78, err := m.ObjectMeta.MarshalTo(data[i:]) + n62, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n78 + i += n62 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n79, err := m.Spec.MarshalTo(data[i:]) + n63, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n79 + i += n63 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n80, err := m.Status.MarshalTo(data[i:]) + n64, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n80 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n81, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n81 + i += n64 return i, nil } @@ -2831,11 +2695,11 @@ func (m *ThirdPartyResource) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n82, err := m.ObjectMeta.MarshalTo(data[i:]) + n65, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n82 + i += n65 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Description))) @@ -2852,14 +2716,6 @@ func (m *ThirdPartyResource) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n83, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n83 return i, nil } @@ -2881,25 +2737,17 @@ func (m *ThirdPartyResourceData) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n84, err := m.ObjectMeta.MarshalTo(data[i:]) + n66, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n84 + i += n66 if m.Data != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Data))) i += copy(data[i:], m.Data) } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n85, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n85 return i, nil } @@ -2921,11 +2769,11 @@ func (m *ThirdPartyResourceDataList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n86, err := m.ListMeta.MarshalTo(data[i:]) + n67, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n86 + i += n67 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -2938,14 +2786,6 @@ func (m *ThirdPartyResourceDataList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n87, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n87 return i, nil } @@ -2967,11 +2807,11 @@ func (m *ThirdPartyResourceList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n88, err := m.ListMeta.MarshalTo(data[i:]) + n68, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n88 + i += n68 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -2984,14 +2824,6 @@ func (m *ThirdPartyResourceList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n89, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n89 return i, nil } @@ -3090,8 +2922,6 @@ func (m *DaemonSet) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3106,8 +2936,6 @@ func (m *DaemonSetList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3143,8 +2971,6 @@ func (m *Deployment) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3177,8 +3003,6 @@ func (m *DeploymentList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3197,8 +3021,6 @@ func (m *DeploymentRollback) Size() (n int) { } l = m.RollbackTo.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3306,8 +3128,6 @@ func (m *HorizontalPodAutoscaler) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3322,8 +3142,6 @@ func (m *HorizontalPodAutoscalerList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3386,8 +3204,6 @@ func (m *Ingress) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3412,8 +3228,6 @@ func (m *IngressList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3488,8 +3302,6 @@ func (m *NetworkPolicy) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Spec.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3522,8 +3334,6 @@ func (m *NetworkPolicyList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3576,8 +3386,6 @@ func (m *PodSecurityPolicy) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Spec.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3592,8 +3400,6 @@ func (m *PodSecurityPolicyList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3655,8 +3461,6 @@ func (m *ReplicaSet) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3687,8 +3491,6 @@ func (m *ReplicaSetList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3728,8 +3530,6 @@ func (m *ReplicaSetStatus) Size() (n int) { func (m *ReplicationControllerDummy) Size() (n int) { var l int _ = l - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3789,8 +3589,6 @@ func (m *Scale) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3859,8 +3657,6 @@ func (m *ThirdPartyResource) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3873,8 +3669,6 @@ func (m *ThirdPartyResourceData) Size() (n int) { l = len(m.Data) n += 1 + l + sovGenerated(uint64(l)) } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3889,8 +3683,6 @@ func (m *ThirdPartyResourceDataList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3905,8 +3697,6 @@ func (m *ThirdPartyResourceList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -3993,7 +3783,6 @@ func (this *DaemonSet) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "DaemonSetSpec", "DaemonSetSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "DaemonSetStatus", "DaemonSetStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4005,7 +3794,6 @@ func (this *DaemonSetList) String() string { s := strings.Join([]string{`&DaemonSetList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "DaemonSet", "DaemonSet", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4043,7 +3831,6 @@ func (this *Deployment) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "DeploymentSpec", "DeploymentSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "DeploymentStatus", "DeploymentStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4070,7 +3857,6 @@ func (this *DeploymentList) String() string { s := strings.Join([]string{`&DeploymentList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Deployment", "Deployment", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4093,7 +3879,6 @@ func (this *DeploymentRollback) String() string { `Name:` + fmt.Sprintf("%v", this.Name) + `,`, `UpdatedAnnotations:` + mapStringForUpdatedAnnotations + `,`, `RollbackTo:` + strings.Replace(strings.Replace(this.RollbackTo.String(), "RollbackConfig", "RollbackConfig", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4183,7 +3968,6 @@ func (this *HorizontalPodAutoscaler) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "HorizontalPodAutoscalerSpec", "HorizontalPodAutoscalerSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "HorizontalPodAutoscalerStatus", "HorizontalPodAutoscalerStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4195,7 +3979,6 @@ func (this *HorizontalPodAutoscalerList) String() string { s := strings.Join([]string{`&HorizontalPodAutoscalerList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "HorizontalPodAutoscaler", "HorizontalPodAutoscaler", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4257,7 +4040,6 @@ func (this *Ingress) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "IngressSpec", "IngressSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "IngressStatus", "IngressStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4280,7 +4062,6 @@ func (this *IngressList) String() string { s := strings.Join([]string{`&IngressList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Ingress", "Ingress", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4346,7 +4127,6 @@ func (this *NetworkPolicy) String() string { s := strings.Join([]string{`&NetworkPolicy{`, `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "NetworkPolicySpec", "NetworkPolicySpec", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4369,7 +4149,6 @@ func (this *NetworkPolicyList) String() string { s := strings.Join([]string{`&NetworkPolicyList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "NetworkPolicy", "NetworkPolicy", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4414,7 +4193,6 @@ func (this *PodSecurityPolicy) String() string { s := strings.Join([]string{`&PodSecurityPolicy{`, `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "PodSecurityPolicySpec", "PodSecurityPolicySpec", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4426,7 +4204,6 @@ func (this *PodSecurityPolicyList) String() string { s := strings.Join([]string{`&PodSecurityPolicyList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "PodSecurityPolicy", "PodSecurityPolicy", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4462,7 +4239,6 @@ func (this *ReplicaSet) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "ReplicaSetSpec", "ReplicaSetSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "ReplicaSetStatus", "ReplicaSetStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4488,7 +4264,6 @@ func (this *ReplicaSetList) String() string { s := strings.Join([]string{`&ReplicaSetList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "ReplicaSet", "ReplicaSet", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4526,7 +4301,6 @@ func (this *ReplicationControllerDummy) String() string { return "nil" } s := strings.Join([]string{`&ReplicationControllerDummy{`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4582,7 +4356,6 @@ func (this *Scale) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "ScaleSpec", "ScaleSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "ScaleStatus", "ScaleStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4651,7 +4424,6 @@ func (this *ThirdPartyResource) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Description:` + fmt.Sprintf("%v", this.Description) + `,`, `Versions:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Versions), "APIVersion", "APIVersion", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4663,7 +4435,6 @@ func (this *ThirdPartyResourceData) String() string { s := strings.Join([]string{`&ThirdPartyResourceData{`, `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Data:` + valueToStringGenerated(this.Data) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4675,7 +4446,6 @@ func (this *ThirdPartyResourceDataList) String() string { s := strings.Join([]string{`&ThirdPartyResourceDataList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "ThirdPartyResourceData", "ThirdPartyResourceData", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -4687,7 +4457,6 @@ func (this *ThirdPartyResourceList) String() string { s := strings.Join([]string{`&ThirdPartyResourceList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "ThirdPartyResource", "ThirdPartyResource", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -5347,36 +5116,6 @@ func (m *DaemonSet) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -5488,36 +5227,6 @@ func (m *DaemonSetList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -5916,36 +5625,6 @@ func (m *Deployment) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -6283,36 +5962,6 @@ func (m *DeploymentList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -6533,36 +6182,6 @@ func (m *DeploymentRollback) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -7585,36 +7204,6 @@ func (m *HorizontalPodAutoscaler) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -7726,36 +7315,6 @@ func (m *HorizontalPodAutoscalerList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -8385,36 +7944,6 @@ func (m *Ingress) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -8635,36 +8164,6 @@ func (m *IngressList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -9300,36 +8799,6 @@ func (m *NetworkPolicy) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -9553,36 +9022,6 @@ func (m *NetworkPolicyList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -10033,36 +9472,6 @@ func (m *PodSecurityPolicy) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -10174,36 +9583,6 @@ func (m *PodSecurityPolicyList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -10761,36 +10140,6 @@ func (m *ReplicaSet) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -11098,36 +10447,6 @@ func (m *ReplicaSetList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -11506,36 +10825,6 @@ func (m *ReplicationControllerDummy) Unmarshal(data []byte) error { return fmt.Errorf("proto: ReplicationControllerDummy: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -12083,36 +11372,6 @@ func (m *Scale) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -12807,36 +12066,6 @@ func (m *ThirdPartyResource) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -12948,36 +12177,6 @@ func (m *ThirdPartyResourceData) Unmarshal(data []byte) error { m.Data = []byte{} } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -13089,36 +12288,6 @@ func (m *ThirdPartyResourceDataList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -13230,36 +12399,6 @@ func (m *ThirdPartyResourceList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -13387,233 +12526,229 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 3644 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe4, 0x5b, 0x4d, 0x6c, 0x1b, 0xc7, - 0xf5, 0xf7, 0x92, 0xa2, 0x45, 0x3d, 0x59, 0x92, 0x35, 0x52, 0x64, 0x46, 0x49, 0x44, 0x67, 0x83, - 0x7f, 0xe2, 0xfc, 0x91, 0x50, 0x7f, 0x3b, 0x7f, 0xa7, 0x89, 0x93, 0x38, 0x11, 0x25, 0xcb, 0x56, - 0x2a, 0xd9, 0xcc, 0x50, 0x72, 0xd3, 0xc4, 0x49, 0xb0, 0x22, 0x47, 0xd4, 0x5a, 0xfb, 0xc1, 0xec, - 0xce, 0x2a, 0x62, 0x82, 0x22, 0x01, 0x8a, 0x9c, 0x0a, 0xa4, 0xb9, 0xf5, 0x92, 0x1e, 0xdb, 0x43, - 0x5b, 0x04, 0x4d, 0x3f, 0x10, 0xb4, 0xe8, 0xa5, 0x40, 0x3f, 0x0c, 0xf4, 0x92, 0xde, 0x7a, 0x28, - 0xd4, 0x5a, 0x45, 0x7b, 0x2a, 0x7a, 0x29, 0xd2, 0x83, 0x7b, 0x68, 0x31, 0xb3, 0xb3, 0x9f, 0xdc, - 0x95, 0x45, 0x4a, 0x94, 0x0a, 0xf4, 0x46, 0xce, 0xbc, 0xf7, 0x7b, 0x6f, 0xde, 0xcc, 0xbc, 0xf7, - 0x66, 0xe6, 0x2d, 0x3c, 0xb7, 0xf1, 0x94, 0x5d, 0x52, 0xcd, 0xe9, 0x0d, 0x67, 0x95, 0x58, 0x06, - 0xa1, 0xc4, 0x9e, 0x6e, 0x6e, 0x34, 0xa6, 0x95, 0xa6, 0x6a, 0x4f, 0x93, 0x2d, 0x4a, 0x0c, 0x5b, - 0x35, 0x0d, 0x7b, 0x7a, 0xf3, 0xec, 0x2a, 0xa1, 0xca, 0xd9, 0xe9, 0x06, 0x31, 0x88, 0xa5, 0x50, - 0x52, 0x2f, 0x35, 0x2d, 0x93, 0x9a, 0xe8, 0x71, 0x97, 0xbd, 0x14, 0xb0, 0x97, 0x9a, 0x1b, 0x8d, - 0x12, 0x63, 0x2f, 0x05, 0xec, 0x25, 0xc1, 0x3e, 0xf9, 0x78, 0x43, 0xa5, 0xeb, 0xce, 0x6a, 0xa9, - 0x66, 0xea, 0xd3, 0x0d, 0xb3, 0x61, 0x4e, 0x73, 0x94, 0x55, 0x67, 0x8d, 0xff, 0xe3, 0x7f, 0xf8, - 0x2f, 0x17, 0x7d, 0xf2, 0xff, 0x85, 0x72, 0x4a, 0x53, 0xd5, 0x95, 0xda, 0xba, 0x6a, 0x10, 0xab, - 0x15, 0xa8, 0xa7, 0x13, 0xaa, 0x4c, 0x6f, 0xb6, 0xe9, 0x34, 0x39, 0x9d, 0xc6, 0x65, 0x39, 0x06, - 0x55, 0x75, 0xd2, 0xc6, 0xf0, 0xe4, 0xdd, 0x18, 0xec, 0xda, 0x3a, 0xd1, 0x95, 0x36, 0xbe, 0x73, - 0xa9, 0xb6, 0x9b, 0xb6, 0x88, 0x6d, 0x3a, 0x56, 0xad, 0x5d, 0xd6, 0x63, 0xe9, 0x3c, 0x09, 0x43, - 0x39, 0x9b, 0x4c, 0xed, 0x50, 0x55, 0x9b, 0x56, 0x0d, 0x6a, 0x53, 0x2b, 0xce, 0x22, 0x97, 0x00, - 0x66, 0x2a, 0x0b, 0xd7, 0x89, 0xc5, 0x2c, 0x8f, 0x4e, 0x43, 0x9f, 0xa1, 0xe8, 0xa4, 0x20, 0x9d, - 0x96, 0xce, 0x0c, 0x94, 0x4f, 0xdc, 0xda, 0x2e, 0x1e, 0xdb, 0xd9, 0x2e, 0xf6, 0x5d, 0x55, 0x74, - 0x82, 0x79, 0x8f, 0x7c, 0x03, 0xc6, 0x67, 0x2b, 0x2b, 0xcb, 0x8a, 0xd5, 0x20, 0x74, 0x85, 0xaa, - 0x9a, 0xfa, 0xb6, 0x42, 0x19, 0xe7, 0x1c, 0x9c, 0xa4, 0xbc, 0xb1, 0x42, 0xac, 0x1a, 0x31, 0xa8, - 0xd2, 0x70, 0x51, 0x72, 0xe5, 0x82, 0x40, 0x39, 0xb9, 0x1c, 0xeb, 0xc7, 0x6d, 0x1c, 0xf2, 0x37, - 0x24, 0xb8, 0x77, 0xd6, 0xb1, 0xa9, 0xa9, 0x2f, 0x11, 0x6a, 0xa9, 0xb5, 0x59, 0xc7, 0xb2, 0x88, - 0x41, 0xab, 0x54, 0xa1, 0x8e, 0x7d, 0x77, 0xed, 0xd0, 0xcb, 0x90, 0xdb, 0x54, 0x34, 0x87, 0x14, - 0x32, 0xa7, 0xa5, 0x33, 0x83, 0xe7, 0x1e, 0x2b, 0xa5, 0xae, 0xb7, 0x92, 0x67, 0xf2, 0xd2, 0x4b, - 0x8e, 0x62, 0x50, 0x95, 0xb6, 0xca, 0xe3, 0x02, 0xf0, 0x84, 0x90, 0x7a, 0x9d, 0x21, 0x61, 0x17, - 0x50, 0xfe, 0x40, 0x82, 0x07, 0x52, 0x35, 0x5b, 0x54, 0x6d, 0x8a, 0x74, 0xc8, 0xa9, 0x94, 0xe8, - 0x76, 0x41, 0x3a, 0x9d, 0x3d, 0x33, 0x78, 0xee, 0x4a, 0xa9, 0xa3, 0xb5, 0x5e, 0x4a, 0x05, 0x2f, - 0x0f, 0x09, 0xbd, 0x72, 0x0b, 0x0c, 0x1e, 0xbb, 0x52, 0xe4, 0xaf, 0x4b, 0x80, 0xc2, 0x3c, 0xae, - 0x75, 0xf7, 0x60, 0xa3, 0x2f, 0xed, 0xc7, 0x46, 0x63, 0x02, 0x70, 0xd0, 0x15, 0x17, 0x31, 0xd1, - 0x7b, 0x12, 0x4c, 0xb4, 0x6b, 0xc4, 0x6d, 0xb3, 0x16, 0xb5, 0xcd, 0xcc, 0x3e, 0x6c, 0xe3, 0xa2, - 0xa6, 0x18, 0xe5, 0x6b, 0x59, 0x18, 0x98, 0x53, 0x88, 0x6e, 0x1a, 0x55, 0x42, 0xd1, 0xcb, 0x90, - 0x67, 0x9b, 0xbe, 0xae, 0x50, 0x85, 0xdb, 0x63, 0xf0, 0xdc, 0x99, 0x5d, 0x06, 0xbb, 0x79, 0xb6, - 0x74, 0x6d, 0xf5, 0x26, 0xa9, 0xd1, 0x25, 0x42, 0x95, 0x32, 0x12, 0xf8, 0x10, 0xb4, 0x61, 0x1f, - 0x0d, 0xbd, 0x0e, 0x7d, 0x76, 0x93, 0xd4, 0x84, 0x09, 0x9f, 0xed, 0x70, 0x38, 0xbe, 0x86, 0xd5, - 0x26, 0xa9, 0x05, 0x73, 0xc4, 0xfe, 0x61, 0x8e, 0x8b, 0xd6, 0xe0, 0xb8, 0xcd, 0x27, 0xbf, 0x90, - 0xe5, 0x12, 0x2e, 0x76, 0x2d, 0xc1, 0x5d, 0x42, 0xc3, 0x42, 0xc6, 0x71, 0xf7, 0x3f, 0x16, 0xe8, - 0xe8, 0x06, 0xe4, 0x69, 0xab, 0x49, 0xd8, 0xe8, 0x0a, 0x7d, 0x5c, 0x52, 0xc9, 0x93, 0x14, 0xf6, - 0x6e, 0x81, 0x2c, 0x66, 0x01, 0x66, 0xa9, 0x65, 0xc1, 0x55, 0x3e, 0x29, 0x90, 0xf3, 0x5e, 0x0b, - 0xf6, 0x11, 0xe5, 0xef, 0x64, 0x60, 0xc8, 0xd7, 0x84, 0xaf, 0x83, 0x1b, 0x6d, 0x33, 0xb2, 0x47, - 0x79, 0x8c, 0x3b, 0x2a, 0xcf, 0x6b, 0x09, 0xcd, 0xca, 0x6b, 0xde, 0x2a, 0xcb, 0xf0, 0x55, 0xf6, - 0x54, 0xb7, 0x46, 0x4b, 0x5e, 0x5c, 0x11, 0x63, 0x65, 0x0f, 0xdc, 0x58, 0xbf, 0x91, 0x42, 0xc6, - 0x62, 0x4b, 0x01, 0xbd, 0x06, 0x79, 0x9b, 0x68, 0xa4, 0x46, 0x4d, 0x4b, 0x18, 0xeb, 0x89, 0x3d, - 0x1a, 0x4b, 0x59, 0x25, 0x5a, 0x55, 0xb0, 0x96, 0x4f, 0x30, 0x81, 0xde, 0x3f, 0xec, 0x43, 0xa2, - 0x57, 0x21, 0x4f, 0x89, 0xde, 0xd4, 0x14, 0xea, 0xb9, 0x82, 0xc7, 0x77, 0xdf, 0x1d, 0x15, 0xb3, - 0xbe, 0x2c, 0x18, 0xf8, 0xc2, 0x0d, 0x46, 0x23, 0x5a, 0xb1, 0x0f, 0x28, 0x7f, 0x98, 0x85, 0x91, - 0xd8, 0x22, 0x44, 0xd7, 0x61, 0xa2, 0xe6, 0x3a, 0xb6, 0xab, 0x8e, 0xbe, 0x4a, 0xac, 0x6a, 0x6d, - 0x9d, 0xd4, 0x1d, 0x8d, 0xd4, 0x45, 0xa0, 0x98, 0x12, 0x78, 0x13, 0xb3, 0x89, 0x54, 0x38, 0x85, - 0x1b, 0xbd, 0x08, 0xc8, 0xe0, 0x4d, 0x4b, 0xaa, 0x6d, 0xfb, 0x98, 0x19, 0x8e, 0x39, 0x29, 0x30, - 0xd1, 0xd5, 0x36, 0x0a, 0x9c, 0xc0, 0xc5, 0x74, 0xac, 0x13, 0x5b, 0xb5, 0x48, 0x3d, 0xae, 0x63, - 0x36, 0xaa, 0xe3, 0x5c, 0x22, 0x15, 0x4e, 0xe1, 0x46, 0xe7, 0x61, 0xd0, 0x95, 0x86, 0x89, 0x52, - 0x6f, 0xf1, 0xbd, 0x96, 0x0b, 0x9c, 0xe9, 0xd5, 0xa0, 0x0b, 0x87, 0xe9, 0xd8, 0xd0, 0xcc, 0x55, - 0x9b, 0x58, 0x9b, 0xa4, 0x7e, 0xd9, 0x0d, 0xdc, 0xaa, 0x69, 0x14, 0x72, 0xa7, 0xa5, 0x33, 0xd9, - 0x60, 0x68, 0xd7, 0xda, 0x28, 0x70, 0x02, 0x97, 0xfc, 0x41, 0x16, 0x60, 0x8e, 0x34, 0x35, 0xb3, - 0xa5, 0x13, 0xa3, 0x97, 0xce, 0xf1, 0x8d, 0x88, 0x73, 0x7c, 0xae, 0xd3, 0x5d, 0xe8, 0xab, 0x98, - 0xea, 0x1d, 0x1b, 0x31, 0xef, 0xf8, 0x7c, 0xf7, 0x22, 0x8e, 0xd2, 0x3d, 0xde, 0xce, 0xc2, 0x58, - 0xa0, 0xca, 0xac, 0x69, 0xd4, 0x55, 0x9e, 0x4a, 0x3d, 0x03, 0x7d, 0x8c, 0x46, 0x84, 0xf0, 0x47, - 0x3c, 0x03, 0x30, 0x84, 0x3b, 0xdb, 0xc5, 0x53, 0x09, 0x2c, 0xac, 0x0b, 0x73, 0x26, 0x74, 0xdd, - 0xb7, 0x4d, 0x86, 0xb3, 0x5f, 0x8c, 0x0e, 0xed, 0xce, 0x76, 0x71, 0xd7, 0x94, 0xb2, 0xe4, 0x63, - 0xc6, 0x4c, 0xf1, 0x30, 0x1c, 0xb7, 0x88, 0x62, 0x9b, 0x06, 0x37, 0xc4, 0x40, 0x60, 0x32, 0xcc, - 0x5b, 0xb1, 0xe8, 0x45, 0x8f, 0x42, 0xbf, 0x4e, 0x6c, 0x9b, 0xa5, 0x7f, 0x39, 0x4e, 0x38, 0x22, - 0x08, 0xfb, 0x97, 0xdc, 0x66, 0xec, 0xf5, 0xa3, 0x9b, 0x30, 0xac, 0x29, 0x36, 0x5d, 0x69, 0xd6, - 0x15, 0x4a, 0x96, 0x55, 0x9d, 0x14, 0x8e, 0x73, 0x1b, 0xff, 0xef, 0x1e, 0x6d, 0xac, 0xea, 0xa4, - 0x3c, 0x21, 0xd0, 0x87, 0x17, 0x23, 0x48, 0x38, 0x86, 0x8c, 0x36, 0x01, 0xb1, 0x96, 0x65, 0x4b, - 0x31, 0x6c, 0xd7, 0x64, 0x4c, 0x5e, 0x7f, 0xc7, 0xf2, 0xfc, 0x4d, 0xb7, 0xd8, 0x86, 0x86, 0x13, - 0x24, 0xc8, 0xdf, 0xcb, 0xc0, 0x70, 0x30, 0x61, 0x87, 0x10, 0x03, 0x5f, 0x8f, 0xc6, 0xc0, 0xa7, - 0xbb, 0xde, 0x1a, 0x47, 0x12, 0x04, 0xff, 0x91, 0x05, 0x14, 0xa8, 0x80, 0x4d, 0x4d, 0x5b, 0x55, - 0x6a, 0x1b, 0x7b, 0x48, 0x6a, 0xbf, 0x25, 0x01, 0x72, 0xf8, 0x74, 0xd7, 0x67, 0x0c, 0xc3, 0xa4, - 0xdc, 0xe5, 0x79, 0x46, 0xf8, 0x72, 0xd7, 0x46, 0xf0, 0x34, 0x28, 0xad, 0xb4, 0x61, 0x5f, 0x32, - 0xa8, 0xd5, 0x0a, 0xd6, 0x43, 0x3b, 0x01, 0x4e, 0x50, 0x08, 0xbd, 0x09, 0x60, 0x09, 0xcc, 0x65, - 0x53, 0x18, 0xb0, 0x53, 0x0f, 0xe9, 0x29, 0x35, 0x6b, 0x1a, 0x6b, 0x6a, 0x23, 0x70, 0xc6, 0xd8, - 0x07, 0xc6, 0x21, 0x21, 0xbd, 0x75, 0x62, 0x93, 0x97, 0xe0, 0x54, 0x8a, 0x6d, 0xd0, 0x49, 0xc8, - 0x6e, 0x90, 0x96, 0x3b, 0x69, 0x98, 0xfd, 0x44, 0xe3, 0xe1, 0xa3, 0xc7, 0x80, 0x38, 0x37, 0x5c, - 0xc8, 0x3c, 0x25, 0xc9, 0x7f, 0xc9, 0x85, 0xf7, 0x09, 0x4f, 0x7f, 0xce, 0x40, 0xde, 0x22, 0x4d, - 0x4d, 0xad, 0x29, 0xb6, 0x48, 0x10, 0x78, 0x26, 0x83, 0x45, 0x1b, 0xf6, 0x7b, 0x23, 0x89, 0x52, - 0xa6, 0xb7, 0x89, 0x52, 0xf6, 0x80, 0x13, 0x25, 0x64, 0x42, 0xde, 0xa6, 0xec, 0x40, 0xde, 0x68, - 0x89, 0xd9, 0x99, 0xd9, 0x47, 0x34, 0x73, 0x81, 0x02, 0x81, 0x5e, 0x0b, 0xf6, 0x85, 0xa0, 0x19, - 0x18, 0xd1, 0x55, 0x83, 0xa7, 0x17, 0x55, 0x52, 0x33, 0x8d, 0xba, 0xcd, 0x1d, 0x75, 0xae, 0x7c, - 0x4a, 0x30, 0x8d, 0x2c, 0x45, 0xbb, 0x71, 0x9c, 0x1e, 0x2d, 0xc2, 0xb8, 0x45, 0x36, 0x55, 0xa6, - 0xc6, 0x15, 0xd5, 0xa6, 0xa6, 0xd5, 0x5a, 0x54, 0x75, 0x95, 0x72, 0xf7, 0x9d, 0x2b, 0x17, 0x76, - 0xb6, 0x8b, 0xe3, 0x38, 0xa1, 0x1f, 0x27, 0x72, 0xb1, 0xc8, 0xd2, 0x54, 0x1c, 0x9b, 0xd4, 0xb9, - 0x3b, 0xce, 0x07, 0x91, 0xa5, 0xc2, 0x5b, 0xb1, 0xe8, 0x45, 0x7a, 0x64, 0xeb, 0xe4, 0x0f, 0x62, - 0xeb, 0x0c, 0xef, 0xb2, 0x6d, 0x56, 0xe0, 0x54, 0xd3, 0x32, 0x1b, 0x16, 0xb1, 0xed, 0x39, 0xa2, - 0xd4, 0x35, 0xd5, 0x20, 0x9e, 0xbd, 0x06, 0xf8, 0x38, 0xef, 0xdb, 0xd9, 0x2e, 0x9e, 0xaa, 0x24, - 0x93, 0xe0, 0x34, 0x5e, 0xf9, 0xa3, 0x3e, 0x38, 0x19, 0xcf, 0x3f, 0x52, 0xd2, 0x3c, 0xa9, 0x9b, - 0x34, 0x0f, 0x3d, 0x16, 0xda, 0x36, 0x6e, 0x0e, 0xec, 0xaf, 0x86, 0x84, 0xad, 0x33, 0x03, 0x23, - 0xc2, 0x4b, 0x79, 0x9d, 0x22, 0xd1, 0xf5, 0x57, 0xc3, 0x4a, 0xb4, 0x1b, 0xc7, 0xe9, 0xd1, 0x65, - 0x18, 0x55, 0x36, 0x15, 0x55, 0x53, 0x56, 0x35, 0xe2, 0x83, 0xb8, 0x09, 0xee, 0xbd, 0x02, 0x64, - 0x74, 0x26, 0x4e, 0x80, 0xdb, 0x79, 0xd0, 0x12, 0x8c, 0x39, 0x46, 0x3b, 0x94, 0xbb, 0x3a, 0xef, - 0x13, 0x50, 0x63, 0x2b, 0xed, 0x24, 0x38, 0x89, 0x0f, 0x6d, 0x02, 0xd4, 0xbc, 0x64, 0xc6, 0x2e, - 0x1c, 0xe7, 0x91, 0xa0, 0xdc, 0xf5, 0xde, 0xf2, 0xf3, 0xa2, 0xc0, 0xdf, 0xfa, 0x4d, 0x36, 0x0e, - 0x49, 0x42, 0xcf, 0xc0, 0x90, 0xc5, 0x33, 0x79, 0x6f, 0x00, 0xfd, 0x7c, 0x00, 0xf7, 0x08, 0xb6, - 0x21, 0x1c, 0xee, 0xc4, 0x51, 0x5a, 0xf9, 0xb7, 0x52, 0x38, 0x00, 0x7a, 0xdb, 0x17, 0x5d, 0x88, - 0xa4, 0x84, 0x0f, 0xc7, 0x52, 0xc2, 0x89, 0x76, 0x8e, 0x50, 0x46, 0xf8, 0x2e, 0x0c, 0xb1, 0x65, - 0xad, 0x1a, 0x0d, 0x77, 0x2a, 0x85, 0x8b, 0x9c, 0xef, 0x62, 0xeb, 0xf8, 0x18, 0xa1, 0x34, 0x61, - 0x94, 0x8f, 0x29, 0xdc, 0x89, 0xa3, 0xf2, 0xe4, 0x4f, 0x24, 0x98, 0x98, 0xaf, 0x5e, 0xb6, 0x4c, - 0xa7, 0xe9, 0xa9, 0x77, 0xad, 0xe9, 0xda, 0xea, 0x0b, 0xd0, 0x67, 0x39, 0x9a, 0x37, 0xae, 0x87, - 0xbc, 0x71, 0x61, 0x47, 0x63, 0xe3, 0x1a, 0x8b, 0x71, 0xb9, 0x83, 0x62, 0x0c, 0xe8, 0x75, 0x38, - 0x6e, 0x29, 0x46, 0x83, 0x78, 0x21, 0xfe, 0xc9, 0x0e, 0x47, 0xb3, 0x30, 0x87, 0x19, 0x7b, 0x28, - 0x8d, 0xe5, 0x68, 0x58, 0xa0, 0xca, 0xdf, 0x94, 0x60, 0xe4, 0xca, 0xf2, 0x72, 0x65, 0xc1, 0xe0, - 0xbb, 0xb8, 0xa2, 0xd0, 0x75, 0x96, 0x85, 0x34, 0x15, 0xba, 0x1e, 0xcf, 0x42, 0x58, 0x1f, 0xe6, - 0x3d, 0x68, 0x1d, 0xfa, 0x99, 0xf7, 0x20, 0x46, 0xbd, 0xcb, 0xc3, 0x8f, 0x10, 0x57, 0x76, 0x41, - 0x82, 0xdc, 0x59, 0x34, 0x60, 0x0f, 0x5e, 0x7e, 0x07, 0xc6, 0x43, 0xea, 0x31, 0x7b, 0xf1, 0xab, - 0x38, 0x54, 0x83, 0x1c, 0xd3, 0xc4, 0xbb, 0x68, 0xeb, 0xf4, 0xde, 0x28, 0x36, 0xe4, 0x20, 0x07, - 0x64, 0xff, 0x6c, 0xec, 0x62, 0xcb, 0x3f, 0xce, 0xc2, 0xa9, 0x2b, 0xa6, 0xa5, 0xbe, 0x6d, 0x1a, - 0x54, 0xd1, 0x2a, 0x66, 0x7d, 0xc6, 0xa1, 0xa6, 0x5d, 0x53, 0x34, 0x62, 0xf5, 0xf0, 0x58, 0xa9, - 0x45, 0x8e, 0x95, 0x2f, 0x76, 0x3a, 0xb2, 0x64, 0x7d, 0x53, 0xcf, 0x98, 0x34, 0x76, 0xc6, 0x5c, - 0x3c, 0x20, 0x79, 0x47, 0x79, 0xe0, 0xfc, 0x55, 0x06, 0xee, 0x4b, 0xd1, 0xeb, 0x10, 0x4e, 0x26, - 0x1b, 0xd1, 0x93, 0xc9, 0xfc, 0xc1, 0x18, 0xf4, 0x48, 0x8e, 0x29, 0xff, 0x4c, 0x37, 0x24, 0x4f, - 0x5d, 0xdf, 0x84, 0x3c, 0xff, 0x87, 0xc9, 0x9a, 0x30, 0xe4, 0x6c, 0x87, 0xa3, 0xad, 0x3a, 0xab, - 0xde, 0xe5, 0x3b, 0x26, 0x6b, 0xc4, 0x22, 0x46, 0x8d, 0x84, 0xd2, 0x3a, 0x01, 0x8e, 0x7d, 0x31, - 0xe8, 0x2c, 0x0c, 0xf2, 0x34, 0x2d, 0x12, 0xf9, 0x47, 0x76, 0xb6, 0x8b, 0x83, 0x4b, 0x41, 0x33, - 0x0e, 0xd3, 0xa0, 0xf3, 0x30, 0xa8, 0x2b, 0x5b, 0xb1, 0xb8, 0xef, 0xdf, 0x49, 0x2d, 0x05, 0x5d, - 0x38, 0x4c, 0x87, 0xde, 0x85, 0xe1, 0x5a, 0xd3, 0x09, 0xbd, 0xfd, 0x88, 0x95, 0xda, 0xe9, 0x10, - 0x93, 0x9e, 0x91, 0xca, 0x88, 0x9d, 0xe5, 0x67, 0x2b, 0x2b, 0xa1, 0x36, 0x1c, 0x13, 0x27, 0xff, - 0x3c, 0x0b, 0x0f, 0xec, 0xba, 0xbd, 0xd0, 0xfc, 0x2e, 0xf9, 0xd4, 0x44, 0x07, 0xb9, 0x54, 0x0d, - 0x86, 0xd8, 0x99, 0x9e, 0x9b, 0x9b, 0x5f, 0x18, 0x64, 0x3a, 0xbe, 0x30, 0xe0, 0xe1, 0x71, 0x31, - 0x0c, 0x82, 0xa3, 0x98, 0x2c, 0x05, 0x13, 0x17, 0x9b, 0x69, 0x29, 0xd8, 0x6c, 0xb4, 0x1b, 0xc7, - 0xe9, 0x19, 0x84, 0xb8, 0x77, 0x8c, 0x25, 0x60, 0x3e, 0xc4, 0x5c, 0xb4, 0x1b, 0xc7, 0xe9, 0x91, - 0x0e, 0x45, 0x81, 0x1a, 0xb5, 0x7e, 0xe8, 0x39, 0xcf, 0x4d, 0xc4, 0x1e, 0xda, 0xd9, 0x2e, 0x16, - 0x67, 0x77, 0x27, 0xc5, 0x77, 0xc3, 0x92, 0x97, 0x60, 0xe8, 0x8a, 0x69, 0xd3, 0x8a, 0x69, 0x51, - 0x1e, 0x79, 0xd1, 0x03, 0x90, 0xd5, 0x55, 0x43, 0x1c, 0xf4, 0x06, 0x85, 0xda, 0x59, 0xb6, 0x76, - 0x59, 0x3b, 0xef, 0x56, 0xb6, 0xc4, 0xb2, 0x0e, 0xba, 0x95, 0x2d, 0xcc, 0xda, 0xe5, 0xcb, 0xd0, - 0x2f, 0x22, 0x7a, 0x18, 0x28, 0xbb, 0x3b, 0x50, 0x36, 0x01, 0xe8, 0xfd, 0x2c, 0xf4, 0x8b, 0x00, - 0xd8, 0xc3, 0x50, 0x76, 0x23, 0x12, 0xca, 0x2e, 0x74, 0x97, 0x24, 0xa4, 0x86, 0xae, 0x7a, 0x2c, - 0x74, 0x3d, 0xdb, 0x25, 0xfe, 0x51, 0x86, 0xaa, 0x8f, 0x25, 0x18, 0x8e, 0x26, 0x43, 0xcc, 0x5d, - 0xb1, 0x0d, 0xaa, 0xd6, 0xc8, 0xd5, 0xe0, 0x2e, 0xc8, 0x77, 0x57, 0xd5, 0xa0, 0x0b, 0x87, 0xe9, - 0x10, 0xf1, 0xd9, 0xd8, 0x62, 0x13, 0x26, 0x2f, 0xa5, 0x98, 0xc4, 0xa1, 0xaa, 0x56, 0x72, 0x5f, - 0xca, 0x4b, 0x0b, 0x06, 0xbd, 0x66, 0x55, 0xa9, 0xa5, 0x1a, 0x8d, 0x36, 0x31, 0x7c, 0xdd, 0x86, - 0x71, 0xe5, 0x6f, 0x67, 0x60, 0x50, 0x28, 0x7c, 0x08, 0xb1, 0xf4, 0xd5, 0x68, 0x2c, 0x7d, 0xb2, - 0xcb, 0x34, 0xf3, 0x28, 0x62, 0xe7, 0xa7, 0x92, 0x6f, 0x28, 0x96, 0xb6, 0xb2, 0xac, 0x7a, 0xdd, - 0xb4, 0x69, 0x3c, 0xab, 0x66, 0xde, 0x01, 0xf3, 0x1e, 0xf4, 0xbe, 0x04, 0x27, 0xd5, 0x58, 0xa2, - 0x2b, 0xe6, 0xf1, 0xf9, 0xee, 0x06, 0xee, 0xc3, 0x04, 0xc5, 0x09, 0xf1, 0x1e, 0xdc, 0x26, 0x52, - 0x76, 0xa0, 0x8d, 0x0a, 0x29, 0xd0, 0xb7, 0x4e, 0x69, 0xb3, 0xcb, 0x28, 0x9f, 0x94, 0xc2, 0x97, - 0xf3, 0x7c, 0xf8, 0xcb, 0xcb, 0x15, 0xcc, 0xa1, 0xe5, 0x8f, 0x83, 0x95, 0x55, 0x75, 0xb7, 0xb7, - 0x7f, 0xc8, 0x90, 0x0e, 0xe2, 0x90, 0x31, 0x98, 0x74, 0xc0, 0x40, 0x2f, 0x43, 0x96, 0x6a, 0xdd, - 0xde, 0x22, 0x0b, 0x09, 0xcb, 0x8b, 0xd5, 0xc0, 0xc5, 0x2e, 0x2f, 0x56, 0x31, 0x83, 0x44, 0x6f, - 0x40, 0x8e, 0x1d, 0xe1, 0x98, 0x77, 0xca, 0x76, 0xef, 0xfd, 0x98, 0xbd, 0x82, 0xf5, 0xcb, 0xfe, - 0xd9, 0xd8, 0xc5, 0x95, 0xdf, 0x81, 0xa1, 0x88, 0x0b, 0x43, 0x37, 0xe1, 0x84, 0x66, 0x2a, 0xf5, - 0xb2, 0xa2, 0x29, 0x46, 0x8d, 0x78, 0x8f, 0xa9, 0xff, 0xb7, 0xbb, 0x33, 0x5f, 0x0c, 0x71, 0x08, - 0x57, 0xe8, 0x17, 0x88, 0x84, 0xfb, 0x70, 0x04, 0x5b, 0x56, 0x00, 0x82, 0xd1, 0xa3, 0x22, 0xe4, - 0xd8, 0x12, 0x76, 0x8f, 0x63, 0x03, 0xe5, 0x01, 0xa6, 0x2b, 0x5b, 0xd9, 0x36, 0x76, 0xdb, 0xd1, - 0x39, 0x00, 0x9b, 0xd4, 0x2c, 0x42, 0xb9, 0x4f, 0x73, 0x9f, 0x6c, 0xfc, 0xd8, 0x51, 0xf5, 0x7b, - 0x70, 0x88, 0x4a, 0xfe, 0x6e, 0x06, 0x86, 0xae, 0x12, 0xfa, 0x96, 0x69, 0x6d, 0x54, 0x4c, 0x4d, - 0xad, 0xb5, 0x7a, 0x18, 0xa9, 0x56, 0x23, 0x91, 0xea, 0x85, 0x0e, 0xe7, 0x2a, 0xa2, 0x65, 0x6a, - 0xbc, 0xea, 0xad, 0xbf, 0xf9, 0xb3, 0x04, 0x85, 0x88, 0x1e, 0x61, 0xe7, 0x43, 0x20, 0xd7, 0x34, - 0x2d, 0xea, 0x1d, 0x97, 0xf7, 0x35, 0x3e, 0x16, 0x06, 0x42, 0x07, 0x66, 0x06, 0x8b, 0x5d, 0x74, - 0x66, 0xc5, 0x35, 0xcb, 0xd4, 0xc5, 0x6e, 0xda, 0x9f, 0x14, 0x42, 0xac, 0xc0, 0x8a, 0xf3, 0x96, - 0xa9, 0x63, 0x8e, 0x2d, 0xff, 0x20, 0x03, 0xa3, 0x11, 0xca, 0x43, 0x08, 0x43, 0x4a, 0x34, 0x0c, - 0x3d, 0xbb, 0x9f, 0x81, 0x1d, 0x49, 0x30, 0xfa, 0x5c, 0x8a, 0x19, 0x8d, 0x99, 0x17, 0xad, 0xc1, - 0x60, 0xd3, 0xac, 0x57, 0x0f, 0xa0, 0xf6, 0x82, 0x1f, 0xc0, 0x2a, 0x01, 0x16, 0x0e, 0x03, 0xa3, - 0x2d, 0x18, 0x35, 0x14, 0x9d, 0xd8, 0x4d, 0xa5, 0x46, 0xaa, 0x07, 0xf0, 0x80, 0x71, 0xcf, 0xce, - 0x76, 0x71, 0xf4, 0x6a, 0x1c, 0x11, 0xb7, 0x0b, 0x91, 0x7f, 0xd4, 0x36, 0x6e, 0xd3, 0xa2, 0xe8, - 0x25, 0xc8, 0xf3, 0xa2, 0xc0, 0x9a, 0xa9, 0x89, 0x70, 0x7c, 0x9e, 0xd9, 0xad, 0x22, 0xda, 0xee, - 0x6c, 0x17, 0xff, 0x67, 0xd7, 0xb7, 0x63, 0x8f, 0x10, 0xfb, 0x30, 0x68, 0x11, 0xfa, 0x9a, 0xdd, - 0xa7, 0x5d, 0x3c, 0x14, 0xf2, 0x5c, 0x8b, 0xa3, 0xc8, 0x7f, 0x8f, 0xab, 0xcd, 0x03, 0xe2, 0xcd, - 0x03, 0x9b, 0x2e, 0x3f, 0xcd, 0x4b, 0x9d, 0x32, 0x0b, 0xfa, 0x45, 0x5e, 0x20, 0xd6, 0xfc, 0xe5, - 0xfd, 0xac, 0xf9, 0x70, 0x2c, 0xf3, 0xef, 0xfa, 0xbc, 0x46, 0x4f, 0x90, 0xfc, 0xc3, 0x0c, 0x8c, - 0x72, 0x85, 0x6a, 0x8e, 0xa5, 0xd2, 0x56, 0xcf, 0x7d, 0xfe, 0x5a, 0xc4, 0xe7, 0xcf, 0x75, 0x38, - 0xc0, 0x36, 0x4d, 0x8f, 0xc8, 0xef, 0xff, 0x34, 0x03, 0xf7, 0xb4, 0xe9, 0x72, 0x08, 0x3e, 0x91, - 0x44, 0x7d, 0xe2, 0x0b, 0xfb, 0x35, 0xdf, 0x91, 0xf8, 0xc5, 0x5b, 0x90, 0x60, 0x3c, 0xbe, 0xd9, - 0xce, 0x01, 0x34, 0x2d, 0x75, 0x53, 0xd5, 0x48, 0x43, 0x14, 0x6e, 0xe5, 0x83, 0xe5, 0x54, 0xf1, - 0x7b, 0x70, 0x88, 0x0a, 0x7d, 0x05, 0x26, 0xea, 0x64, 0x4d, 0x71, 0x34, 0x3a, 0x53, 0xaf, 0xcf, - 0x2a, 0x4d, 0x65, 0x55, 0xd5, 0x54, 0xaa, 0x8a, 0xcb, 0xfb, 0x81, 0xf2, 0x25, 0xb7, 0xa0, 0x2a, - 0x89, 0xe2, 0xce, 0x76, 0xf1, 0x91, 0xdd, 0xeb, 0x55, 0x3c, 0xe2, 0x16, 0x4e, 0x11, 0x82, 0xbe, - 0x2a, 0x41, 0xc1, 0x22, 0x6f, 0x3a, 0xaa, 0x45, 0xea, 0x73, 0x96, 0xd9, 0x8c, 0x68, 0x90, 0xe5, - 0x1a, 0x5c, 0xde, 0xd9, 0x2e, 0x16, 0x70, 0x0a, 0x4d, 0x27, 0x3a, 0xa4, 0x0a, 0x42, 0x14, 0xc6, - 0x14, 0x4d, 0x33, 0xdf, 0x22, 0x51, 0x0b, 0xf4, 0x71, 0xf9, 0xe5, 0x9d, 0xed, 0xe2, 0xd8, 0x4c, - 0x7b, 0x77, 0x27, 0xa2, 0x93, 0xe0, 0xd1, 0x34, 0xf4, 0x6f, 0x9a, 0x9a, 0xa3, 0x13, 0xbb, 0x90, - 0xe3, 0x92, 0x58, 0x8c, 0xe8, 0xbf, 0xee, 0x36, 0xdd, 0xd9, 0x2e, 0x1e, 0x9f, 0xaf, 0xf2, 0x57, - 0x15, 0x8f, 0x8a, 0x9d, 0xb2, 0x59, 0x66, 0x2a, 0xdc, 0x14, 0x7f, 0xd2, 0xcd, 0x07, 0x7e, 0xf1, - 0x4a, 0xd0, 0x85, 0xc3, 0x74, 0x48, 0x87, 0x81, 0x75, 0x71, 0x9f, 0x63, 0x17, 0xfa, 0xbb, 0xca, - 0x06, 0x22, 0xf7, 0x41, 0xe5, 0x51, 0x21, 0x72, 0xc0, 0x6b, 0xb6, 0x71, 0x20, 0x01, 0x3d, 0x0a, - 0xfd, 0xfc, 0xcf, 0xc2, 0x1c, 0x7f, 0x08, 0xce, 0x07, 0xde, 0xf3, 0x8a, 0xdb, 0x8c, 0xbd, 0x7e, - 0x8f, 0x74, 0xa1, 0x32, 0xcb, 0xdf, 0x6d, 0x63, 0xa4, 0x0b, 0x95, 0x59, 0xec, 0xf5, 0xa3, 0x26, - 0xf4, 0xdb, 0x64, 0x51, 0x35, 0x9c, 0xad, 0x02, 0xf0, 0x2d, 0x75, 0xa9, 0xd3, 0x5b, 0xdb, 0x4b, - 0x9c, 0x3b, 0xf6, 0xca, 0x15, 0x48, 0x14, 0xfd, 0xd8, 0x13, 0x83, 0xb6, 0x60, 0xc0, 0x72, 0x8c, - 0x19, 0x7b, 0xc5, 0x26, 0x56, 0x61, 0x90, 0xcb, 0xec, 0x34, 0xa0, 0x60, 0x8f, 0x3f, 0x2e, 0xd5, - 0xb7, 0xa0, 0x4f, 0x81, 0x03, 0x61, 0xe8, 0x23, 0x09, 0x90, 0xed, 0x34, 0x9b, 0x1a, 0xd1, 0x89, - 0x41, 0x15, 0x8d, 0x3f, 0xb4, 0xd9, 0x85, 0x13, 0x5c, 0x87, 0x4a, 0xc7, 0xb7, 0xd5, 0x71, 0xa0, - 0xb8, 0x32, 0xfe, 0x2b, 0x76, 0x3b, 0x29, 0x4e, 0xd0, 0x83, 0x4d, 0xc5, 0x9a, 0xcd, 0x7f, 0x17, - 0x86, 0xba, 0x9a, 0x8a, 0xe4, 0x07, 0xc7, 0x60, 0x2a, 0x44, 0x3f, 0xf6, 0xc4, 0xa0, 0xeb, 0x30, - 0x61, 0x11, 0xa5, 0x7e, 0xcd, 0xd0, 0x5a, 0xd8, 0x34, 0xe9, 0xbc, 0xaa, 0x11, 0xbb, 0x65, 0x53, - 0xa2, 0x17, 0x86, 0xf9, 0xb2, 0xf1, 0x2b, 0x3f, 0x71, 0x22, 0x15, 0x4e, 0xe1, 0xe6, 0x65, 0x97, - 0xe2, 0x96, 0xb5, 0xb7, 0x35, 0xe9, 0xfb, 0x2b, 0xbb, 0x0c, 0x54, 0xec, 0x59, 0xd9, 0x65, 0x48, - 0xc4, 0x51, 0x5e, 0x2d, 0x7e, 0x9e, 0x81, 0xb1, 0x40, 0x95, 0x3d, 0x97, 0x5d, 0x26, 0xb0, 0x1c, - 0x42, 0xd9, 0x65, 0x72, 0xdd, 0x62, 0xb6, 0xd7, 0x75, 0x8b, 0x3d, 0x28, 0xf7, 0xe4, 0xa5, 0x90, - 0x81, 0x11, 0xff, 0xf3, 0x4b, 0x21, 0x03, 0x5d, 0x8f, 0x24, 0x05, 0xfb, 0x49, 0xc4, 0x5c, 0xff, - 0x45, 0x15, 0x71, 0x09, 0x05, 0x6a, 0x7d, 0x9d, 0x15, 0xa8, 0xc9, 0xbf, 0xcf, 0xc2, 0xc9, 0xb8, - 0xb7, 0x89, 0x14, 0x46, 0x49, 0x77, 0x2d, 0x8c, 0xaa, 0xc0, 0xf8, 0x9a, 0xa3, 0x69, 0x2d, 0x6e, - 0x90, 0xd0, 0xbb, 0x9a, 0xfb, 0x02, 0x75, 0xbf, 0xe0, 0x1c, 0x9f, 0x4f, 0xa0, 0xc1, 0x89, 0x9c, - 0x29, 0x45, 0x5e, 0xd9, 0xae, 0x8a, 0xbc, 0xda, 0x6a, 0x8c, 0xfa, 0xf6, 0x5e, 0x63, 0x94, 0x5c, - 0xb0, 0x95, 0xeb, 0xa2, 0x60, 0xeb, 0x20, 0x2a, 0xac, 0x12, 0xdc, 0xea, 0xdd, 0x2a, 0xac, 0xe4, - 0xb7, 0x61, 0x52, 0xb0, 0xb1, 0xff, 0xb3, 0xa6, 0x41, 0x2d, 0x53, 0xd3, 0x88, 0x35, 0xe7, 0xe8, - 0x7a, 0x2b, 0xb2, 0x2d, 0xa5, 0x03, 0xdf, 0x96, 0x17, 0x61, 0x38, 0x5a, 0x44, 0xe8, 0xae, 0x2b, - 0xb7, 0xae, 0x51, 0xbc, 0x3a, 0x86, 0xd6, 0x95, 0xdb, 0x8e, 0x7d, 0x0a, 0xf9, 0x0f, 0x12, 0x9c, - 0x4a, 0x29, 0xa5, 0x42, 0x37, 0x61, 0x58, 0x57, 0xb6, 0x42, 0x05, 0x6e, 0x71, 0xfd, 0xf7, 0x78, - 0x6d, 0xc2, 0x1f, 0xd1, 0x97, 0x22, 0x48, 0x38, 0x86, 0xcc, 0xf3, 0x10, 0x65, 0xab, 0xea, 0x58, - 0x0d, 0xd2, 0xe5, 0xe5, 0x0c, 0x77, 0x0e, 0x4b, 0x02, 0x03, 0xfb, 0x68, 0xf2, 0x27, 0x12, 0x14, - 0xd2, 0x92, 0x52, 0x74, 0x3e, 0x52, 0xf0, 0xf5, 0x60, 0xac, 0xe0, 0x6b, 0xb4, 0x8d, 0xef, 0x90, - 0xca, 0xbd, 0x3e, 0x95, 0x60, 0x22, 0x39, 0x79, 0x47, 0x4f, 0x44, 0x34, 0x2e, 0xc6, 0x34, 0x1e, - 0x89, 0x71, 0x09, 0x7d, 0xd7, 0x61, 0x58, 0xa4, 0xf8, 0x02, 0x66, 0x0f, 0x1f, 0x5b, 0x6e, 0xfa, - 0xe7, 0x07, 0x2f, 0x59, 0xe5, 0xf3, 0x18, 0x6d, 0xc3, 0x31, 0x5c, 0xf9, 0x5f, 0x19, 0xc8, 0xf1, - 0x5a, 0x82, 0x1e, 0x66, 0x96, 0xaf, 0x44, 0x32, 0xcb, 0x4e, 0x3f, 0xab, 0xe3, 0xda, 0xa5, 0x26, - 0x95, 0xab, 0xb1, 0xa4, 0xf2, 0x42, 0x57, 0xe8, 0x47, 0x99, 0x4f, 0x3e, 0x0d, 0x03, 0xfe, 0x10, - 0x3b, 0x0b, 0x32, 0xf2, 0xf7, 0x33, 0x30, 0x18, 0x1a, 0x40, 0x87, 0x21, 0x6a, 0x33, 0x12, 0xe4, - 0xbb, 0xf9, 0xe6, 0x38, 0x24, 0xbb, 0xe4, 0x85, 0x79, 0xf7, 0xbb, 0x86, 0xa0, 0xd4, 0xa8, 0x3d, - 0xfa, 0x5f, 0x84, 0x61, 0xf7, 0xc3, 0x6d, 0xff, 0xca, 0x35, 0xcb, 0xf7, 0x86, 0xff, 0x2d, 0xce, - 0x72, 0xa4, 0x17, 0xc7, 0xa8, 0x27, 0x9f, 0x81, 0xa1, 0x88, 0xb0, 0x8e, 0x3e, 0x14, 0xf8, 0xa5, - 0x04, 0xe3, 0x49, 0xc5, 0x51, 0xe8, 0x34, 0xf4, 0x6d, 0xa8, 0xe2, 0x4d, 0x34, 0xf4, 0x8e, 0xfc, - 0x45, 0xd5, 0xa8, 0x63, 0xde, 0xe3, 0x7f, 0x45, 0x92, 0x49, 0xfd, 0x8a, 0xe4, 0x1c, 0x80, 0xd2, - 0x54, 0xc5, 0xc7, 0xf0, 0x62, 0x54, 0xfe, 0xd6, 0x08, 0x3e, 0x93, 0xc7, 0x21, 0x2a, 0x5e, 0x96, - 0x10, 0xe8, 0x23, 0xd2, 0xe5, 0xa0, 0x5e, 0x20, 0xa4, 0x6a, 0x98, 0x4e, 0xfe, 0xb5, 0x04, 0x0f, - 0xde, 0xf5, 0xd8, 0x8c, 0xca, 0x11, 0xe7, 0x53, 0x8a, 0x39, 0x9f, 0xa9, 0x74, 0x80, 0x43, 0x2c, - 0x95, 0xfd, 0x6b, 0x06, 0xd0, 0xf2, 0xba, 0x6a, 0xd5, 0x2b, 0x8a, 0x45, 0x5b, 0x58, 0x0c, 0xb0, - 0x87, 0xee, 0xe8, 0x3c, 0x0c, 0xd6, 0x89, 0x5d, 0xb3, 0x54, 0x6e, 0x24, 0x31, 0x9d, 0xbe, 0xc5, - 0xe7, 0x82, 0x2e, 0x1c, 0xa6, 0x43, 0x0d, 0xc8, 0x6f, 0xba, 0x73, 0xe6, 0x3d, 0x3d, 0x77, 0x7a, - 0x22, 0x08, 0x56, 0x40, 0xb0, 0x3f, 0x44, 0x83, 0x8d, 0x7d, 0xf0, 0x1e, 0xbb, 0x9b, 0xbf, 0x49, - 0x30, 0xd1, 0x6e, 0xee, 0x39, 0x66, 0x98, 0xde, 0x99, 0xfc, 0x7e, 0xe8, 0xe3, 0xa8, 0xcc, 0xd6, - 0x27, 0xdc, 0x67, 0x19, 0x26, 0x11, 0xf7, 0x89, 0x72, 0xa6, 0x5e, 0x1e, 0x84, 0x7e, 0x91, 0x81, - 0xc9, 0xe4, 0x01, 0x1f, 0xc2, 0x19, 0xf2, 0x66, 0xf4, 0x0c, 0xd9, 0xe9, 0x2d, 0x54, 0xb2, 0xde, - 0x47, 0x72, 0x9e, 0xfc, 0x59, 0x26, 0x69, 0xdd, 0x1c, 0x82, 0x09, 0xd7, 0xa2, 0x26, 0x9c, 0xd9, - 0xb7, 0x09, 0x8f, 0xc2, 0x7c, 0xe5, 0x47, 0x6f, 0xdd, 0x9e, 0x3a, 0xf6, 0xd9, 0xed, 0xa9, 0x63, - 0xbf, 0xbb, 0x3d, 0x75, 0xec, 0xbd, 0x9d, 0x29, 0xe9, 0xd6, 0xce, 0x94, 0xf4, 0xd9, 0xce, 0x94, - 0xf4, 0xc7, 0x9d, 0x29, 0xe9, 0xc3, 0x3f, 0x4d, 0x1d, 0x7b, 0xa5, 0x5f, 0x68, 0xfc, 0xef, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x7f, 0x8b, 0xea, 0x66, 0x24, 0x47, 0x00, 0x00, + // 3576 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe4, 0x5b, 0x4d, 0x6c, 0x1c, 0xc7, + 0x95, 0x56, 0xcf, 0x70, 0x44, 0xf2, 0x51, 0x24, 0xc5, 0x22, 0x4d, 0x8d, 0x69, 0x9b, 0x23, 0xb7, + 0xb1, 0xb6, 0xbc, 0xb0, 0x87, 0x2b, 0x79, 0xe5, 0xb5, 0x65, 0x5b, 0x36, 0x87, 0x14, 0x25, 0x7a, + 0x49, 0x69, 0x5c, 0x43, 0x6a, 0xbd, 0xfe, 0x45, 0x73, 0xa6, 0x38, 0x6c, 0xb1, 0xff, 0xdc, 0x5d, + 0x4d, 0x73, 0x6c, 0x04, 0x36, 0x10, 0xe4, 0xea, 0xf8, 0x96, 0x1c, 0x9c, 0x43, 0x0e, 0x41, 0x4e, + 0x31, 0x62, 0x20, 0x80, 0x91, 0x63, 0x0e, 0x41, 0x04, 0xe4, 0x07, 0x0e, 0x90, 0x20, 0x39, 0x18, + 0x93, 0x88, 0x41, 0x8c, 0xdc, 0x03, 0x5f, 0x94, 0x4b, 0x50, 0xd5, 0xd5, 0xbf, 0xd3, 0x3d, 0xe2, + 0x0c, 0x7f, 0x10, 0x20, 0x37, 0x4e, 0xd5, 0x7b, 0xdf, 0xfb, 0xa9, 0xea, 0xf7, 0x5e, 0x55, 0x3d, + 0xc2, 0x0b, 0xdb, 0xcf, 0x38, 0x65, 0xd5, 0x9c, 0xdb, 0x76, 0x37, 0x88, 0x6d, 0x10, 0x4a, 0x9c, + 0x39, 0x6b, 0xbb, 0x39, 0xa7, 0x58, 0xaa, 0x33, 0x47, 0x76, 0x29, 0x31, 0x1c, 0xd5, 0x34, 0x9c, + 0xb9, 0x9d, 0xf3, 0x1b, 0x84, 0x2a, 0xe7, 0xe7, 0x9a, 0xc4, 0x20, 0xb6, 0x42, 0x49, 0xa3, 0x6c, + 0xd9, 0x26, 0x35, 0xd1, 0x93, 0x1e, 0x7b, 0x39, 0x64, 0x2f, 0x5b, 0xdb, 0xcd, 0x32, 0x63, 0x2f, + 0x87, 0xec, 0x65, 0xc1, 0x3e, 0xf3, 0x64, 0x53, 0xa5, 0x5b, 0xee, 0x46, 0xb9, 0x6e, 0xea, 0x73, + 0x4d, 0xb3, 0x69, 0xce, 0x71, 0x94, 0x0d, 0x77, 0x93, 0xff, 0xe2, 0x3f, 0xf8, 0x5f, 0x1e, 0xfa, + 0xcc, 0x7f, 0x0b, 0xe5, 0x14, 0x4b, 0xd5, 0x95, 0xfa, 0x96, 0x6a, 0x10, 0xbb, 0x15, 0xaa, 0xa7, + 0x13, 0xaa, 0xcc, 0xed, 0x74, 0xe8, 0x34, 0x33, 0x97, 0xc5, 0x65, 0xbb, 0x06, 0x55, 0x75, 0xd2, + 0xc1, 0xf0, 0xf4, 0xbd, 0x18, 0x9c, 0xfa, 0x16, 0xd1, 0x95, 0x0e, 0xbe, 0x0b, 0x99, 0xbe, 0x9b, + 0xb3, 0x89, 0x63, 0xba, 0x76, 0xbd, 0x53, 0xd6, 0x13, 0xd9, 0x3c, 0x29, 0xa6, 0x9c, 0x4f, 0xa7, + 0x76, 0xa9, 0xaa, 0xcd, 0xa9, 0x06, 0x75, 0xa8, 0x9d, 0x64, 0x91, 0xcb, 0x00, 0xf3, 0xd5, 0xe5, + 0x9b, 0xc4, 0x66, 0x9e, 0x47, 0x67, 0x61, 0xc0, 0x50, 0x74, 0x52, 0x94, 0xce, 0x4a, 0xe7, 0x86, + 0x2b, 0xa7, 0x6e, 0xb7, 0x4b, 0x27, 0xf6, 0xda, 0xa5, 0x81, 0xeb, 0x8a, 0x4e, 0x30, 0x9f, 0x91, + 0xdf, 0x80, 0xa9, 0x85, 0xea, 0xfa, 0x9a, 0x62, 0x37, 0x09, 0x5d, 0xa7, 0xaa, 0xa6, 0xbe, 0xa7, + 0x50, 0xc6, 0xb9, 0x08, 0xa7, 0x29, 0x1f, 0xac, 0x12, 0xbb, 0x4e, 0x0c, 0xaa, 0x34, 0x3d, 0x94, + 0x42, 0xa5, 0x28, 0x50, 0x4e, 0xaf, 0x25, 0xe6, 0x71, 0x07, 0x87, 0xfc, 0x1d, 0x09, 0xee, 0x5f, + 0x70, 0x1d, 0x6a, 0xea, 0xab, 0x84, 0xda, 0x6a, 0x7d, 0xc1, 0xb5, 0x6d, 0x62, 0xd0, 0x1a, 0x55, + 0xa8, 0xeb, 0xdc, 0x5b, 0x3b, 0xf4, 0x2a, 0x14, 0x76, 0x14, 0xcd, 0x25, 0xc5, 0xdc, 0x59, 0xe9, + 0xdc, 0xc8, 0x85, 0x27, 0xca, 0x99, 0xfb, 0xad, 0xec, 0xbb, 0xbc, 0xfc, 0x8a, 0xab, 0x18, 0x54, + 0xa5, 0xad, 0xca, 0x94, 0x00, 0x3c, 0x25, 0xa4, 0xde, 0x64, 0x48, 0xd8, 0x03, 0x94, 0x3f, 0x92, + 0xe0, 0xa1, 0x4c, 0xcd, 0x56, 0x54, 0x87, 0x22, 0x1d, 0x0a, 0x2a, 0x25, 0xba, 0x53, 0x94, 0xce, + 0xe6, 0xcf, 0x8d, 0x5c, 0xb8, 0x56, 0xee, 0x69, 0xaf, 0x97, 0x33, 0xc1, 0x2b, 0xa3, 0x42, 0xaf, + 0xc2, 0x32, 0x83, 0xc7, 0x9e, 0x14, 0xf9, 0xdb, 0x12, 0xa0, 0x28, 0x8f, 0xe7, 0xdd, 0x7d, 0xf8, + 0xe8, 0xff, 0x0e, 0xe2, 0xa3, 0x49, 0x01, 0x38, 0xe2, 0x89, 0x8b, 0xb9, 0xe8, 0x43, 0x09, 0xa6, + 0x3b, 0x35, 0xe2, 0xbe, 0xd9, 0x8c, 0xfb, 0x66, 0xfe, 0x00, 0xbe, 0xf1, 0x50, 0x33, 0x9c, 0xf2, + 0xa3, 0x1c, 0x0c, 0x2f, 0x2a, 0x44, 0x37, 0x8d, 0x1a, 0xa1, 0xe8, 0x55, 0x18, 0x62, 0x1f, 0x7d, + 0x43, 0xa1, 0x0a, 0xf7, 0xc7, 0xc8, 0x85, 0x73, 0x5d, 0x8c, 0xdd, 0x39, 0x5f, 0xbe, 0xb1, 0x71, + 0x8b, 0xd4, 0xe9, 0x2a, 0xa1, 0x4a, 0x05, 0x09, 0x7c, 0x08, 0xc7, 0x70, 0x80, 0x86, 0xde, 0x82, + 0x01, 0xc7, 0x22, 0x75, 0xe1, 0xc2, 0xe7, 0x7b, 0x34, 0x27, 0xd0, 0xb0, 0x66, 0x91, 0x7a, 0xb8, + 0x46, 0xec, 0x17, 0xe6, 0xb8, 0x68, 0x13, 0x4e, 0x3a, 0x7c, 0xf1, 0x8b, 0x79, 0x2e, 0xe1, 0x72, + 0xdf, 0x12, 0xbc, 0x2d, 0x34, 0x26, 0x64, 0x9c, 0xf4, 0x7e, 0x63, 0x81, 0x2e, 0xff, 0x4a, 0x82, + 0xd1, 0x80, 0x96, 0xaf, 0xd4, 0x1b, 0x1d, 0x3e, 0x2b, 0xfb, 0xb2, 0xa3, 0xf1, 0x2e, 0x94, 0xce, + 0xa8, 0x99, 0xef, 0x18, 0x37, 0xf7, 0xdc, 0x69, 0x21, 0x6b, 0xc8, 0x1f, 0x89, 0xf8, 0xed, 0x4d, + 0x7f, 0x1f, 0xe4, 0xf8, 0x3e, 0x78, 0xa6, 0x5f, 0xb3, 0x32, 0x96, 0xff, 0x97, 0x51, 0x73, 0x98, + 0x3b, 0xd1, 0x9b, 0x30, 0xe4, 0x10, 0x8d, 0xd4, 0xa9, 0x69, 0x0b, 0x73, 0x9e, 0xda, 0xa7, 0x39, + 0xca, 0x06, 0xd1, 0x6a, 0x82, 0xb5, 0x72, 0x8a, 0xd9, 0xe3, 0xff, 0xc2, 0x01, 0x24, 0x7a, 0x1d, + 0x86, 0x28, 0xd1, 0x2d, 0x4d, 0xa1, 0xfe, 0xe7, 0xf4, 0x64, 0xf7, 0x1d, 0x56, 0x35, 0x1b, 0x6b, + 0x82, 0x81, 0x2f, 0x7e, 0xe0, 0x2c, 0x7f, 0x14, 0x07, 0x80, 0xf2, 0xc7, 0x79, 0x18, 0x4f, 0x2c, + 0x24, 0xba, 0x09, 0xd3, 0x75, 0x2f, 0x38, 0x5c, 0x77, 0xf5, 0x0d, 0x62, 0xd7, 0xea, 0x5b, 0xa4, + 0xe1, 0x6a, 0xa4, 0x21, 0x82, 0xed, 0xac, 0xc0, 0x9b, 0x5e, 0x48, 0xa5, 0xc2, 0x19, 0xdc, 0xe8, + 0x65, 0x40, 0x06, 0x1f, 0x5a, 0x55, 0x1d, 0x27, 0xc0, 0xcc, 0x71, 0xcc, 0x19, 0x81, 0x89, 0xae, + 0x77, 0x50, 0xe0, 0x14, 0x2e, 0xa6, 0x63, 0x83, 0x38, 0xaa, 0x4d, 0x1a, 0x49, 0x1d, 0xf3, 0x71, + 0x1d, 0x17, 0x53, 0xa9, 0x70, 0x06, 0x37, 0xba, 0x08, 0x23, 0x9e, 0x34, 0x4c, 0x94, 0x46, 0xab, + 0x38, 0xc0, 0xc1, 0x82, 0x80, 0x74, 0x3d, 0x9c, 0xc2, 0x51, 0x3a, 0x66, 0x9a, 0xb9, 0xe1, 0x10, + 0x7b, 0x87, 0x34, 0xae, 0x7a, 0xc9, 0x4f, 0x35, 0x8d, 0x62, 0xe1, 0xac, 0x74, 0x2e, 0x1f, 0x9a, + 0x76, 0xa3, 0x83, 0x02, 0xa7, 0x70, 0xc9, 0x3f, 0xce, 0x01, 0x2c, 0x12, 0x4b, 0x33, 0x5b, 0x3a, + 0x31, 0x8e, 0x32, 0xc0, 0xbc, 0x1d, 0x0b, 0x30, 0x2f, 0xf4, 0xfa, 0x9d, 0x04, 0x2a, 0x66, 0x46, + 0x98, 0x66, 0x22, 0xc2, 0xbc, 0xd8, 0xbf, 0x88, 0xee, 0x21, 0xe6, 0x4e, 0x1e, 0x26, 0x43, 0xe2, + 0x05, 0xd3, 0x68, 0xa8, 0xbc, 0x60, 0x78, 0x0e, 0x06, 0x68, 0xcb, 0xf2, 0x13, 0xd5, 0x63, 0xbe, + 0x8a, 0x6b, 0x2d, 0x8b, 0xdc, 0x6d, 0x97, 0xce, 0xa4, 0xb0, 0xb0, 0x29, 0xcc, 0x99, 0xd0, 0xcd, + 0x40, 0xfb, 0x1c, 0x67, 0xbf, 0x1c, 0x17, 0x7e, 0xb7, 0x5d, 0xea, 0x5a, 0x38, 0x95, 0x03, 0xcc, + 0xb8, 0xb2, 0xe8, 0x51, 0x38, 0x69, 0x13, 0xc5, 0x31, 0x0d, 0xbe, 0xbb, 0x86, 0x43, 0xa3, 0x30, + 0x1f, 0xc5, 0x62, 0x16, 0x3d, 0x0e, 0x83, 0x3a, 0x71, 0x1c, 0x56, 0xe4, 0x14, 0x38, 0xe1, 0xb8, + 0x20, 0x1c, 0x5c, 0xf5, 0x86, 0xb1, 0x3f, 0x8f, 0x6e, 0xc1, 0x98, 0xa6, 0x38, 0x74, 0xdd, 0x6a, + 0x28, 0x94, 0xac, 0xa9, 0x3a, 0x29, 0x9e, 0xe4, 0x0e, 0xff, 0xcf, 0xfd, 0xc5, 0x21, 0xc6, 0x51, + 0x99, 0x16, 0xe8, 0x63, 0x2b, 0x31, 0x24, 0x9c, 0x40, 0x46, 0x3b, 0x80, 0xd8, 0xc8, 0x9a, 0xad, + 0x18, 0x8e, 0xe7, 0x32, 0x26, 0x6f, 0xb0, 0x67, 0x79, 0xc1, 0x67, 0xb1, 0xd2, 0x81, 0x86, 0x53, + 0x24, 0xc8, 0xbf, 0x91, 0x60, 0x2c, 0x5c, 0xb0, 0x63, 0xc8, 0x23, 0x6f, 0xc5, 0xf3, 0xc8, 0xb3, + 0x7d, 0x6f, 0xde, 0x8c, 0x44, 0xf2, 0xdd, 0x3c, 0xa0, 0x90, 0x08, 0x9b, 0x9a, 0xb6, 0xa1, 0xd4, + 0xb7, 0xf7, 0x51, 0x5c, 0xfd, 0x40, 0x02, 0xe4, 0xf2, 0x05, 0x69, 0xcc, 0x1b, 0x86, 0x49, 0x79, + 0xd8, 0xf0, 0xd5, 0xfc, 0xff, 0xbe, 0xd5, 0xf4, 0x35, 0x28, 0xaf, 0x77, 0x60, 0x5f, 0x31, 0xa8, + 0xdd, 0x0a, 0x57, 0xac, 0x93, 0x00, 0xa7, 0x28, 0x84, 0xde, 0x01, 0xb0, 0x05, 0xe6, 0x9a, 0x29, + 0x42, 0x40, 0xaf, 0x51, 0xc6, 0x57, 0x6a, 0xc1, 0x34, 0x36, 0xd5, 0x66, 0x18, 0xd0, 0x70, 0x00, + 0x8c, 0x23, 0x42, 0x66, 0xae, 0xc0, 0x99, 0x0c, 0xed, 0xd1, 0x69, 0xc8, 0x6f, 0x93, 0x96, 0xe7, + 0x56, 0xcc, 0xfe, 0x44, 0x53, 0xd1, 0x22, 0x75, 0x58, 0x54, 0x98, 0x97, 0x72, 0xcf, 0x48, 0xf2, + 0x57, 0x85, 0xe8, 0x5e, 0xe3, 0x49, 0xfe, 0x1c, 0x0c, 0xd9, 0xc4, 0xd2, 0xd4, 0xba, 0xe2, 0x88, + 0x34, 0xc8, 0xf3, 0x35, 0x16, 0x63, 0x38, 0x98, 0x8d, 0x95, 0x03, 0xb9, 0xa3, 0x2d, 0x07, 0xf2, + 0x87, 0x5c, 0x0e, 0x20, 0x13, 0x86, 0x1c, 0xca, 0x8e, 0x6e, 0x4d, 0x2f, 0xf7, 0xf5, 0x5e, 0x46, + 0x47, 0x63, 0xb6, 0x07, 0x14, 0x0a, 0xf4, 0x47, 0x70, 0x20, 0x04, 0xcd, 0xc3, 0xb8, 0xae, 0x1a, + 0x3c, 0x89, 0xd6, 0x48, 0xdd, 0x34, 0x1a, 0x0e, 0x0f, 0x76, 0x85, 0xca, 0x19, 0xc1, 0x34, 0xbe, + 0x1a, 0x9f, 0xc6, 0x49, 0x7a, 0xb4, 0x02, 0x53, 0x36, 0xd9, 0x51, 0x99, 0x1a, 0xd7, 0x54, 0x87, + 0x9a, 0x76, 0x6b, 0x45, 0xd5, 0x55, 0xca, 0x43, 0x60, 0xa1, 0x52, 0xdc, 0x6b, 0x97, 0xa6, 0x70, + 0xca, 0x3c, 0x4e, 0xe5, 0x62, 0xd1, 0xd9, 0x52, 0x5c, 0x87, 0x34, 0x78, 0x48, 0x1b, 0x0a, 0xa3, + 0x73, 0x95, 0x8f, 0x62, 0x31, 0x8b, 0xf4, 0xd8, 0xe6, 0x1e, 0x3a, 0x8c, 0xcd, 0x3d, 0x96, 0xbd, + 0xb1, 0xd1, 0x3a, 0x9c, 0xb1, 0x6c, 0xb3, 0x69, 0x13, 0xc7, 0x59, 0x24, 0x4a, 0x43, 0x53, 0x0d, + 0xe2, 0xfb, 0x6b, 0x98, 0xdb, 0xf9, 0xc0, 0x5e, 0xbb, 0x74, 0xa6, 0x9a, 0x4e, 0x82, 0xb3, 0x78, + 0xe5, 0x4f, 0x06, 0xe0, 0x74, 0x32, 0xcb, 0x66, 0x14, 0x33, 0x52, 0x3f, 0xc5, 0x0c, 0x7a, 0x22, + 0xf2, 0xd9, 0x78, 0x95, 0x5e, 0xb0, 0x1b, 0x52, 0x3e, 0x9d, 0x79, 0x18, 0x17, 0x71, 0xc4, 0x9f, + 0x14, 0xe5, 0x5c, 0xb0, 0x1b, 0xd6, 0xe3, 0xd3, 0x38, 0x49, 0x8f, 0xae, 0xc2, 0x84, 0xb2, 0xa3, + 0xa8, 0x9a, 0xb2, 0xa1, 0x91, 0x00, 0xc4, 0x2b, 0xe3, 0xee, 0x17, 0x20, 0x13, 0xf3, 0x49, 0x02, + 0xdc, 0xc9, 0x83, 0x56, 0x61, 0xd2, 0x35, 0x3a, 0xa1, 0xbc, 0xdd, 0xf9, 0x80, 0x80, 0x9a, 0x5c, + 0xef, 0x24, 0xc1, 0x69, 0x7c, 0x68, 0x07, 0xa0, 0xee, 0x17, 0x04, 0x4e, 0xf1, 0x24, 0x8f, 0xd5, + 0x95, 0xbe, 0xbf, 0xad, 0xa0, 0xb6, 0x08, 0x23, 0x62, 0x30, 0xe4, 0xe0, 0x88, 0x24, 0xf4, 0x1c, + 0x8c, 0xda, 0xbc, 0x5e, 0xf5, 0x0d, 0x18, 0xe4, 0x06, 0xdc, 0x27, 0xd8, 0x46, 0x71, 0x74, 0x12, + 0xc7, 0x69, 0xe5, 0xdf, 0x4a, 0xd1, 0x14, 0xe5, 0x7f, 0xbe, 0xe8, 0x52, 0xac, 0xac, 0x7a, 0x34, + 0x51, 0x56, 0x4d, 0x77, 0x72, 0x44, 0xaa, 0xaa, 0x0f, 0x60, 0x94, 0x6d, 0x6b, 0xd5, 0x68, 0x7a, + 0x4b, 0x29, 0x42, 0xe4, 0x52, 0x1f, 0x9f, 0x4e, 0x80, 0x11, 0x49, 0xb5, 0x13, 0xdc, 0xa6, 0xe8, + 0x24, 0x8e, 0xcb, 0x93, 0x3f, 0x93, 0x60, 0x7a, 0xa9, 0x76, 0xd5, 0x36, 0x5d, 0xcb, 0x57, 0xef, + 0x86, 0xe5, 0xf9, 0xea, 0x7f, 0x60, 0xc0, 0x76, 0x35, 0xdf, 0xae, 0x47, 0x7c, 0xbb, 0xb0, 0xab, + 0x31, 0xbb, 0x26, 0x13, 0x5c, 0x9e, 0x51, 0x8c, 0x01, 0xbd, 0x05, 0x27, 0x6d, 0xc5, 0x68, 0x12, + 0x3f, 0x09, 0x3f, 0xdd, 0xa3, 0x35, 0xcb, 0x8b, 0x98, 0xb1, 0x47, 0x4a, 0x41, 0x8e, 0x86, 0x05, + 0xaa, 0xfc, 0x3d, 0x09, 0xc6, 0xaf, 0xad, 0xad, 0x55, 0x97, 0x0d, 0xfe, 0x15, 0x57, 0x15, 0xba, + 0xc5, 0xea, 0x04, 0x4b, 0xa1, 0x5b, 0xc9, 0x3a, 0x81, 0xcd, 0x61, 0x3e, 0x83, 0xb6, 0x60, 0x90, + 0x45, 0x0f, 0x62, 0x34, 0xfa, 0x2c, 0xf1, 0x85, 0xb8, 0x8a, 0x07, 0x12, 0xd6, 0x9f, 0x62, 0x00, + 0xfb, 0xf0, 0xf2, 0xfb, 0x30, 0x15, 0x51, 0x8f, 0xf9, 0x8b, 0x5f, 0xda, 0xa0, 0x3a, 0x14, 0x98, + 0x26, 0xfe, 0x95, 0x4c, 0xaf, 0x37, 0x0c, 0x09, 0x93, 0xc3, 0x3a, 0x8a, 0xfd, 0x72, 0xb0, 0x87, + 0x2d, 0xff, 0x21, 0x07, 0x67, 0xae, 0x99, 0xb6, 0xfa, 0x9e, 0x69, 0x50, 0x45, 0xab, 0x9a, 0x8d, + 0x79, 0x97, 0x9a, 0x4e, 0x5d, 0xd1, 0x88, 0x7d, 0x84, 0x87, 0x27, 0x2d, 0x76, 0x78, 0x7a, 0xb9, + 0x57, 0xcb, 0xd2, 0xf5, 0xcd, 0x3c, 0x49, 0xd1, 0xc4, 0x49, 0x6a, 0xe5, 0x90, 0xe4, 0x75, 0x3f, + 0x56, 0xfd, 0x4d, 0x82, 0x07, 0x32, 0x38, 0x8f, 0xa1, 0xfe, 0xde, 0x8e, 0xd7, 0xdf, 0x4b, 0x87, + 0x63, 0x72, 0x46, 0x31, 0xfe, 0x8f, 0x5c, 0xa6, 0xa9, 0xbc, 0xfc, 0x7b, 0x07, 0x86, 0xf8, 0x2f, + 0x4c, 0x36, 0x85, 0xa9, 0x0b, 0x3d, 0xea, 0x53, 0x73, 0x37, 0xfc, 0xab, 0x4e, 0x4c, 0x36, 0x89, + 0x4d, 0x8c, 0x3a, 0x89, 0x94, 0x46, 0x02, 0x1c, 0x07, 0x62, 0xd0, 0x79, 0x18, 0xe1, 0xa5, 0x4e, + 0x2c, 0x7b, 0x8e, 0xef, 0xb5, 0x4b, 0x23, 0xab, 0xe1, 0x30, 0x8e, 0xd2, 0xa0, 0x8b, 0x30, 0xa2, + 0x2b, 0xbb, 0x89, 0xdc, 0x19, 0xdc, 0x5e, 0xac, 0x86, 0x53, 0x38, 0x4a, 0x87, 0x3e, 0x80, 0xb1, + 0xba, 0xe5, 0x46, 0x6e, 0xda, 0x45, 0xed, 0xd7, 0xab, 0x89, 0x69, 0x97, 0xf6, 0x15, 0xc4, 0xce, + 0x94, 0x0b, 0xd5, 0xf5, 0xc8, 0x18, 0x4e, 0x88, 0x93, 0x7f, 0x96, 0x87, 0x87, 0xba, 0x6e, 0x51, + 0xb4, 0xd4, 0xa5, 0x26, 0x99, 0xee, 0xa1, 0x1e, 0xa9, 0xc3, 0x28, 0x3b, 0x5b, 0x72, 0x77, 0xf3, + 0x83, 0x6b, 0xae, 0xe7, 0x83, 0x2b, 0x4f, 0x31, 0x2b, 0x51, 0x10, 0x1c, 0xc7, 0x64, 0x65, 0x8c, + 0xb8, 0x02, 0xcb, 0x2a, 0x63, 0x16, 0xe2, 0xd3, 0x38, 0x49, 0xcf, 0x20, 0xc4, 0x0d, 0x55, 0xa2, + 0x88, 0x09, 0x20, 0x16, 0xe3, 0xd3, 0x38, 0x49, 0x8f, 0x74, 0x28, 0x09, 0xd4, 0xb8, 0xf7, 0x23, + 0x8f, 0x27, 0x5e, 0x31, 0xf3, 0xc8, 0x5e, 0xbb, 0x54, 0x5a, 0xe8, 0x4e, 0x8a, 0xef, 0x85, 0x25, + 0xaf, 0xc2, 0xe8, 0x35, 0xd3, 0xa1, 0x55, 0xd3, 0xa6, 0x3c, 0x7b, 0xa1, 0x87, 0x20, 0xaf, 0xab, + 0x86, 0x38, 0x2c, 0x8d, 0x08, 0xb5, 0xf3, 0x6c, 0xef, 0xb2, 0x71, 0x3e, 0xad, 0xec, 0x8a, 0x6d, + 0x1d, 0x4e, 0x2b, 0xbb, 0x98, 0x8d, 0xcb, 0x57, 0x61, 0x50, 0x64, 0xc5, 0x28, 0x50, 0xbe, 0x3b, + 0x50, 0x3e, 0x05, 0xe8, 0x87, 0x39, 0x18, 0x14, 0x49, 0xe4, 0x08, 0xd3, 0xc1, 0x1b, 0xb1, 0x74, + 0x70, 0xa9, 0xbf, 0x44, 0x9b, 0x19, 0xfe, 0x1b, 0x89, 0xf0, 0xff, 0x7c, 0x9f, 0xf8, 0xdd, 0xc3, + 0xfd, 0xa7, 0x12, 0x8c, 0xc5, 0x53, 0x3e, 0x0b, 0x28, 0xec, 0x13, 0x52, 0xeb, 0xe4, 0x7a, 0x78, + 0x27, 0x11, 0x04, 0x94, 0x5a, 0x38, 0x85, 0xa3, 0x74, 0x88, 0x04, 0x6c, 0x6c, 0x3b, 0x08, 0xa7, + 0x94, 0x33, 0x94, 0x76, 0xa9, 0xaa, 0x95, 0xbd, 0x97, 0xc3, 0xf2, 0xb2, 0x41, 0x6f, 0xd8, 0x35, + 0x6a, 0xab, 0x46, 0xb3, 0x43, 0x0c, 0xdf, 0x59, 0x51, 0x5c, 0xf9, 0xb6, 0x04, 0x23, 0x42, 0xe1, + 0x63, 0xc8, 0x47, 0xaf, 0xc7, 0xf3, 0xd1, 0xd3, 0x7d, 0x16, 0x53, 0xe9, 0xf9, 0xe7, 0xf3, 0xd0, + 0x14, 0x56, 0x3e, 0xb1, 0xea, 0x6e, 0xcb, 0x74, 0x68, 0xb2, 0xba, 0x63, 0x5f, 0x18, 0xe6, 0x33, + 0xe8, 0x5b, 0x12, 0x9c, 0x56, 0x13, 0x05, 0x97, 0xf0, 0xf4, 0x8b, 0xfd, 0xa9, 0x16, 0xc0, 0x84, + 0xcf, 0xa9, 0xc9, 0x19, 0xdc, 0x21, 0x52, 0x76, 0xa1, 0x83, 0x0a, 0x29, 0x30, 0xb0, 0x45, 0xa9, + 0xd5, 0x67, 0xa6, 0x4c, 0x2b, 0x25, 0x2b, 0x43, 0xdc, 0xfc, 0xb5, 0xb5, 0x2a, 0xe6, 0xd0, 0xf2, + 0xa7, 0xb9, 0xc0, 0x61, 0x35, 0xef, 0x13, 0x09, 0x8a, 0x5d, 0xe9, 0x30, 0x8a, 0xdd, 0x91, 0xb4, + 0x42, 0x17, 0xbd, 0x0a, 0x79, 0xaa, 0xf5, 0x7b, 0x23, 0x28, 0x24, 0xac, 0xad, 0xd4, 0xc2, 0x30, + 0xb5, 0xb6, 0x52, 0xc3, 0x0c, 0x12, 0xbd, 0x0d, 0x05, 0x76, 0x94, 0x60, 0x5f, 0x78, 0xbe, 0xff, + 0x08, 0xc2, 0xfc, 0x15, 0xee, 0x30, 0xf6, 0xcb, 0xc1, 0x1e, 0xae, 0xfc, 0x3e, 0x8c, 0xc6, 0xc2, + 0x00, 0xba, 0x05, 0xa7, 0x34, 0x53, 0x69, 0x54, 0x14, 0x4d, 0x31, 0xea, 0xc4, 0x7f, 0xba, 0xfa, + 0xaf, 0xee, 0x01, 0x71, 0x25, 0xc2, 0x21, 0xc2, 0x49, 0xf0, 0xa4, 0x1d, 0x9d, 0xc3, 0x31, 0x6c, + 0x59, 0x01, 0x08, 0xad, 0x47, 0x25, 0x28, 0xb0, 0x2d, 0xec, 0x1d, 0x0b, 0x86, 0x2b, 0xc3, 0x4c, + 0x57, 0xb6, 0xb3, 0x1d, 0xec, 0x8d, 0xa3, 0x0b, 0x00, 0x0e, 0xa9, 0xdb, 0x84, 0xf2, 0xa8, 0xe3, + 0x5d, 0xbf, 0x07, 0xf1, 0xb7, 0x16, 0xcc, 0xe0, 0x08, 0x95, 0xfc, 0x6b, 0x09, 0x46, 0xaf, 0x13, + 0xfa, 0xae, 0x69, 0x6f, 0x57, 0x4d, 0x4d, 0xad, 0xb7, 0x8e, 0x30, 0xda, 0x6f, 0xc4, 0xa2, 0xfd, + 0x4b, 0x3d, 0xae, 0x55, 0x4c, 0xcb, 0xac, 0x98, 0x2f, 0xff, 0x55, 0x82, 0x62, 0x8c, 0x32, 0x1a, + 0x1e, 0x08, 0x14, 0x2c, 0xd3, 0xa6, 0xfe, 0xc1, 0xea, 0x40, 0x1a, 0xb0, 0x50, 0x1a, 0x39, 0x5a, + 0x31, 0x58, 0xec, 0xa1, 0x33, 0x3b, 0x37, 0x6d, 0x53, 0x17, 0xfb, 0xfd, 0x60, 0x52, 0x08, 0xb1, + 0x43, 0x3b, 0x97, 0x6c, 0x53, 0xc7, 0x1c, 0x5b, 0xfe, 0x9d, 0x04, 0x13, 0x31, 0xca, 0x63, 0x08, + 0xe5, 0x4a, 0x3c, 0x94, 0x3f, 0x7f, 0x10, 0xc3, 0x32, 0x02, 0xfa, 0xd7, 0x49, 0xb3, 0x98, 0x03, + 0xd0, 0x26, 0x8c, 0x58, 0x66, 0xa3, 0x76, 0x08, 0xaf, 0xc5, 0xfc, 0x20, 0x50, 0x0d, 0xb1, 0x70, + 0x14, 0x18, 0xed, 0xc2, 0x84, 0xa1, 0xe8, 0xc4, 0xb1, 0x94, 0x3a, 0xa9, 0x1d, 0xc2, 0x65, 0xf4, + 0x7d, 0x7b, 0xed, 0xd2, 0xc4, 0xf5, 0x24, 0x22, 0xee, 0x14, 0x22, 0xff, 0xa4, 0xc3, 0x6e, 0xd3, + 0xa6, 0xe8, 0x15, 0x18, 0xe2, 0xad, 0x40, 0x75, 0x53, 0x13, 0x29, 0xed, 0x22, 0x5b, 0x9a, 0xaa, + 0x18, 0xbb, 0xdb, 0x2e, 0xfd, 0x47, 0xd7, 0xb7, 0x34, 0x9f, 0x10, 0x07, 0x30, 0x68, 0x05, 0x06, + 0xac, 0xfe, 0x8b, 0x0b, 0x9e, 0x4e, 0x78, 0x45, 0xc1, 0x51, 0xe4, 0xbf, 0x27, 0xd5, 0xe6, 0x49, + 0xe5, 0xd6, 0xa1, 0x2d, 0x57, 0x50, 0xcc, 0x64, 0x2e, 0x99, 0x0d, 0x83, 0x22, 0xb7, 0x8a, 0x5d, + 0x79, 0xf5, 0x20, 0xbb, 0x32, 0x9a, 0x0f, 0x82, 0x7b, 0x1b, 0x7f, 0xd0, 0x17, 0x24, 0xff, 0x5e, + 0x82, 0x09, 0xae, 0x50, 0xdd, 0xb5, 0x55, 0xda, 0x3a, 0xf2, 0xb8, 0xb9, 0x19, 0x8b, 0x9b, 0x8b, + 0x3d, 0x1a, 0xd8, 0xa1, 0x69, 0x66, 0xec, 0xfc, 0x52, 0x82, 0xfb, 0x3a, 0xa8, 0x8f, 0x21, 0xae, + 0x90, 0x78, 0x5c, 0x79, 0xe9, 0xa0, 0x06, 0x66, 0xc4, 0x96, 0xdb, 0x90, 0x62, 0x1e, 0xdf, 0xb0, + 0x17, 0x00, 0x2c, 0x5b, 0xdd, 0x51, 0x35, 0xd2, 0x14, 0xed, 0x1a, 0x43, 0xe1, 0x92, 0x54, 0x83, + 0x19, 0x1c, 0xa1, 0x42, 0xdf, 0x80, 0xe9, 0x06, 0xd9, 0x54, 0x5c, 0x8d, 0xce, 0x37, 0x1a, 0x0b, + 0x8a, 0xa5, 0x6c, 0xa8, 0x9a, 0x4a, 0x55, 0x71, 0x99, 0x39, 0x5c, 0xb9, 0xe2, 0xb5, 0x51, 0xa4, + 0x51, 0xdc, 0x6d, 0x97, 0x1e, 0xeb, 0xfe, 0x06, 0xee, 0x13, 0xb7, 0x70, 0x86, 0x10, 0xf4, 0x4d, + 0x09, 0x8a, 0x36, 0x79, 0xc7, 0x65, 0x67, 0xd7, 0x45, 0xdb, 0xb4, 0x62, 0x1a, 0xe4, 0xb9, 0x06, + 0x57, 0xf7, 0xda, 0xa5, 0x22, 0xce, 0xa0, 0xe9, 0x45, 0x87, 0x4c, 0x41, 0x88, 0xc2, 0xa4, 0xa2, + 0x69, 0xe6, 0xbb, 0x24, 0xee, 0x81, 0x01, 0x2e, 0xbf, 0xb2, 0xd7, 0x2e, 0x4d, 0xce, 0x77, 0x4e, + 0xf7, 0x22, 0x3a, 0x0d, 0x1e, 0xcd, 0xc1, 0xe0, 0x8e, 0xa9, 0xb9, 0x3a, 0x71, 0x8a, 0x05, 0x2e, + 0x89, 0xc5, 0xd9, 0xc1, 0x9b, 0xde, 0xd0, 0xdd, 0x76, 0xe9, 0xe4, 0x52, 0x8d, 0xdf, 0x32, 0xfb, + 0x54, 0xec, 0x3c, 0xc6, 0x2a, 0x24, 0xf1, 0xa9, 0xf3, 0x27, 0xae, 0xa1, 0x30, 0xb6, 0x5c, 0x0b, + 0xa7, 0x70, 0x94, 0x0e, 0xe9, 0x30, 0xbc, 0x25, 0xce, 0xe6, 0x4e, 0x71, 0xb0, 0xaf, 0x9c, 0x17, + 0x3b, 0xdb, 0x57, 0x26, 0x84, 0xc8, 0x61, 0x7f, 0xd8, 0xc1, 0xa1, 0x04, 0xf4, 0x38, 0x0c, 0xf2, + 0x1f, 0xcb, 0x8b, 0xfc, 0x61, 0x6c, 0x28, 0x8c, 0x40, 0xd7, 0xbc, 0x61, 0xec, 0xcf, 0xfb, 0xa4, + 0xcb, 0xd5, 0x05, 0xfe, 0x8e, 0x95, 0x20, 0x5d, 0xae, 0x2e, 0x60, 0x7f, 0x1e, 0x59, 0x30, 0xe8, + 0x90, 0x15, 0xd5, 0x70, 0x77, 0x8b, 0xc0, 0xbf, 0xdc, 0x2b, 0xbd, 0xde, 0xc0, 0x5d, 0xe1, 0xdc, + 0x89, 0x5b, 0xff, 0x50, 0xa2, 0x98, 0xc7, 0xbe, 0x18, 0xb4, 0x0b, 0xc3, 0xb6, 0x6b, 0xcc, 0x3b, + 0xeb, 0x0e, 0xb1, 0x8b, 0x23, 0x5c, 0x66, 0xaf, 0x41, 0x19, 0xfb, 0xfc, 0x49, 0xa9, 0x81, 0x07, + 0x03, 0x0a, 0x1c, 0x0a, 0x43, 0x9f, 0x48, 0x80, 0x1c, 0xd7, 0xb2, 0x34, 0xa2, 0x13, 0x83, 0x2a, + 0x1a, 0x7f, 0x78, 0x70, 0x8a, 0xa7, 0xb8, 0x0e, 0xd5, 0x9e, 0x6f, 0x1e, 0x93, 0x40, 0x49, 0x65, + 0x82, 0x57, 0xbd, 0x4e, 0x52, 0x9c, 0xa2, 0x07, 0x5b, 0x8a, 0x4d, 0x87, 0xff, 0x5d, 0x1c, 0xed, + 0x6b, 0x29, 0xd2, 0x1f, 0x60, 0xc2, 0xa5, 0x10, 0xf3, 0xd8, 0x17, 0x83, 0x6e, 0xc2, 0xb4, 0x4d, + 0x94, 0xc6, 0x0d, 0x43, 0x6b, 0x61, 0xd3, 0xa4, 0x4b, 0xaa, 0x46, 0x9c, 0x96, 0x43, 0x89, 0x5e, + 0x1c, 0xe3, 0xdb, 0x26, 0xe8, 0xf7, 0xc2, 0xa9, 0x54, 0x38, 0x83, 0x9b, 0x37, 0x5b, 0x89, 0x1b, + 0xb3, 0xa3, 0xed, 0xe6, 0x3c, 0x58, 0xb3, 0x55, 0xa8, 0xe2, 0x91, 0x35, 0x5b, 0x45, 0x44, 0x74, + 0xbf, 0x26, 0xfa, 0x3a, 0x07, 0x93, 0x21, 0xf1, 0xbe, 0x9b, 0xad, 0x52, 0x58, 0x8e, 0xa1, 0xd9, + 0x2a, 0xbd, 0x5b, 0x29, 0x7f, 0xd4, 0xdd, 0x4a, 0x47, 0xd0, 0xe4, 0xc5, 0x1b, 0xa0, 0x42, 0x27, + 0xfe, 0xeb, 0x37, 0x40, 0x85, 0xba, 0x66, 0x94, 0x31, 0x3f, 0xcd, 0x45, 0x0d, 0xfa, 0x37, 0xea, + 0xb2, 0x49, 0x69, 0x7a, 0x19, 0xe8, 0xad, 0xe9, 0x45, 0xfe, 0x32, 0x0f, 0xa7, 0x93, 0x5f, 0x6c, + 0xac, 0xd9, 0x42, 0xba, 0x67, 0xb3, 0x45, 0x15, 0xa6, 0x36, 0x5d, 0x4d, 0x6b, 0x71, 0x87, 0x44, + 0xde, 0x19, 0xbc, 0x1b, 0xf9, 0x07, 0x05, 0xe7, 0xd4, 0x52, 0x0a, 0x0d, 0x4e, 0xe5, 0xcc, 0x68, + 0x1c, 0xc9, 0xf7, 0xd5, 0x38, 0xd2, 0xd1, 0xb7, 0x30, 0xb0, 0xff, 0xbe, 0x85, 0xf4, 0x26, 0x90, + 0x42, 0x1f, 0x4d, 0x20, 0x87, 0xd1, 0xb5, 0x91, 0x12, 0xf8, 0xee, 0xd5, 0xb5, 0x21, 0x3f, 0x08, + 0x33, 0x82, 0x8d, 0xfd, 0x5e, 0x30, 0x0d, 0x6a, 0x9b, 0x9a, 0x46, 0xec, 0x45, 0x57, 0xd7, 0x5b, + 0xf2, 0x65, 0x18, 0x8b, 0xb7, 0x0e, 0x79, 0x2b, 0xef, 0x75, 0x33, 0x89, 0x77, 0x92, 0xc8, 0xca, + 0x7b, 0xe3, 0x38, 0xa0, 0x90, 0xff, 0x24, 0xc1, 0x99, 0x8c, 0x06, 0x0a, 0x74, 0x0b, 0xc6, 0x74, + 0x65, 0x37, 0xd2, 0xd6, 0x92, 0x0c, 0x2c, 0xfb, 0x3c, 0x60, 0xf3, 0x67, 0xbf, 0xd5, 0x18, 0x12, + 0x4e, 0x20, 0xf3, 0x6c, 0xab, 0xec, 0xd6, 0x5c, 0xbb, 0x49, 0xfa, 0x3c, 0xc6, 0xf3, 0xcf, 0x77, + 0x55, 0x60, 0xe0, 0x00, 0x4d, 0xfe, 0x4c, 0x82, 0x62, 0x56, 0xe9, 0x85, 0x2e, 0xc6, 0xda, 0x3c, + 0x1e, 0x4e, 0xb4, 0x79, 0x4c, 0x74, 0xf0, 0x1d, 0x53, 0x93, 0xc7, 0xe7, 0x12, 0x4c, 0xa7, 0x97, + 0xa8, 0xe8, 0xa9, 0x98, 0xc6, 0xa5, 0x84, 0xc6, 0xe3, 0x09, 0x2e, 0xa1, 0xef, 0x16, 0x8c, 0x89, + 0x42, 0x56, 0xc0, 0xec, 0xe3, 0x9f, 0x71, 0x76, 0x82, 0x2a, 0xd9, 0x2f, 0xc9, 0xf8, 0x3a, 0xc6, + 0xc7, 0x70, 0x02, 0x57, 0xfe, 0x7e, 0x0e, 0x0a, 0xfc, 0xf5, 0xf3, 0x08, 0xeb, 0xa7, 0xd7, 0x62, + 0xf5, 0x53, 0xaf, 0xff, 0xd4, 0xc1, 0xb5, 0xcb, 0x2c, 0x9d, 0x36, 0x12, 0xa5, 0xd3, 0xa5, 0xbe, + 0xd0, 0xbb, 0x57, 0x4d, 0xcf, 0xc2, 0x70, 0xa0, 0x44, 0x6f, 0x81, 0x9a, 0xd5, 0xa8, 0x23, 0x11, + 0x11, 0x3d, 0x86, 0xf9, 0x9d, 0x58, 0xa2, 0xec, 0xe7, 0xbf, 0xc6, 0x22, 0xb2, 0xcb, 0x7e, 0xaa, + 0xf4, 0x3a, 0x82, 0xc3, 0xf6, 0x85, 0xce, 0x0c, 0x7a, 0x19, 0xc6, 0xbc, 0x7f, 0xbd, 0x0b, 0xae, + 0xcf, 0xf2, 0x7c, 0xf7, 0x06, 0x7d, 0xe6, 0x6b, 0xb1, 0x59, 0x9c, 0xa0, 0x9e, 0x79, 0x0e, 0x46, + 0x63, 0xc2, 0x7a, 0x6a, 0xe0, 0xfd, 0xb9, 0x04, 0x53, 0x69, 0x0d, 0x17, 0xe8, 0x2c, 0x0c, 0x6c, + 0xab, 0xe2, 0x8d, 0x28, 0xf2, 0xae, 0xf6, 0xbf, 0xaa, 0xd1, 0xc0, 0x7c, 0x26, 0xe8, 0xbf, 0xce, + 0x65, 0xf6, 0x5f, 0x5f, 0x00, 0x50, 0x2c, 0x55, 0xfc, 0x3b, 0xa3, 0xb0, 0x2a, 0xd8, 0xbc, 0xe1, + 0x3f, 0x3a, 0xe2, 0x08, 0x15, 0x7f, 0x48, 0x0d, 0xf5, 0x11, 0x45, 0x61, 0xf8, 0xc2, 0x19, 0x51, + 0x35, 0x4a, 0x27, 0xff, 0x42, 0x82, 0x87, 0xef, 0x79, 0x7c, 0x43, 0x95, 0x58, 0x78, 0x28, 0x27, + 0xc2, 0xc3, 0x6c, 0x36, 0xc0, 0x31, 0xb6, 0xb0, 0x7d, 0x94, 0x03, 0xb4, 0xb6, 0xa5, 0xda, 0x8d, + 0xaa, 0x62, 0xd3, 0x16, 0x16, 0x06, 0x1e, 0x61, 0xc0, 0xb8, 0x08, 0x23, 0x0d, 0xe2, 0xd4, 0x6d, + 0x95, 0x3b, 0x49, 0x2c, 0x67, 0xe0, 0xf1, 0xc5, 0x70, 0x0a, 0x47, 0xe9, 0x50, 0x13, 0x86, 0x76, + 0xbc, 0x35, 0xf3, 0x9f, 0xe2, 0x7a, 0xad, 0x7b, 0xc3, 0x1d, 0x10, 0x7e, 0x1f, 0x62, 0xc0, 0xc1, + 0x01, 0xb8, 0xfc, 0xb1, 0x04, 0xd3, 0x9d, 0x0e, 0x59, 0x64, 0xaa, 0x1f, 0x9d, 0x53, 0x1e, 0x84, + 0x01, 0x8e, 0xca, 0xbc, 0x71, 0xca, 0xbb, 0x04, 0x67, 0x12, 0x31, 0x1f, 0x95, 0xbf, 0x92, 0x60, + 0x26, 0x5d, 0xa5, 0x63, 0x38, 0x6d, 0xdc, 0x8a, 0x9f, 0x36, 0x7a, 0xbd, 0x51, 0x48, 0xd7, 0x3b, + 0xe3, 0xe4, 0xd1, 0x4e, 0xf5, 0xfd, 0x31, 0x18, 0xb9, 0x19, 0x37, 0x72, 0xfe, 0xc0, 0x46, 0xa6, + 0x1b, 0x58, 0x79, 0xfc, 0xf6, 0x9d, 0xd9, 0x13, 0x5f, 0xdc, 0x99, 0x3d, 0xf1, 0xc7, 0x3b, 0xb3, + 0x27, 0x3e, 0xdc, 0x9b, 0x95, 0x6e, 0xef, 0xcd, 0x4a, 0x5f, 0xec, 0xcd, 0x4a, 0x7f, 0xde, 0x9b, + 0x95, 0x3e, 0xfe, 0xcb, 0xec, 0x89, 0xd7, 0x06, 0x05, 0xe6, 0x3f, 0x03, 0x00, 0x00, 0xff, 0xff, + 0x09, 0x2f, 0xde, 0x45, 0x6e, 0x3f, 0x00, 0x00, } diff --git a/pkg/apis/extensions/v1beta1/generated.proto b/pkg/apis/extensions/v1beta1/generated.proto index b9bf60ef96b..692588b5e8e 100644 --- a/pkg/apis/extensions/v1beta1/generated.proto +++ b/pkg/apis/extensions/v1beta1/generated.proto @@ -71,8 +71,6 @@ message CustomMetricTargetList { // DaemonSet represents the configuration of a daemon set. message DaemonSet { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -94,8 +92,6 @@ message DaemonSet { // DaemonSetList is a collection of daemon sets. message DaemonSetList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -150,8 +146,6 @@ message DaemonSetStatus { // Deployment enables declarative updates for Pods and ReplicaSets. message Deployment { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object metadata. // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; @@ -188,8 +182,6 @@ message DeploymentCondition { // DeploymentList is a list of Deployments. message DeploymentList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // +optional optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; @@ -200,8 +192,6 @@ message DeploymentList { // DeploymentRollback stores the information required to rollback a deployment. message DeploymentRollback { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Required: This must match the Name of a deployment. optional string name = 1; @@ -349,8 +339,6 @@ message HTTPIngressRuleValue { // configuration of a horizontal pod autoscaler. message HorizontalPodAutoscaler { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; @@ -366,8 +354,6 @@ message HorizontalPodAutoscaler { // list of horizontal pod autoscaler objects. message HorizontalPodAutoscalerList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // +optional optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; @@ -442,8 +428,6 @@ message IDRange { // externally-reachable urls, load balance traffic, terminate SSL, offer name // based virtual hosting etc. message Ingress { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -471,8 +455,6 @@ message IngressBackend { // IngressList is a collection of Ingress. message IngressList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -568,8 +550,6 @@ message IngressTLS { } message NetworkPolicy { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -605,8 +585,6 @@ message NetworkPolicyIngressRule { // Network Policy List is a list of NetworkPolicy objects. message NetworkPolicyList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -671,8 +649,6 @@ message NetworkPolicySpec { // Pod Security Policy governs the ability to make requests that affect the Security Context // that will be applied to a pod and container. message PodSecurityPolicy { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -685,8 +661,6 @@ message PodSecurityPolicy { // Pod Security Policy List is a list of PodSecurityPolicy objects. message PodSecurityPolicyList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -763,8 +737,6 @@ message PodSecurityPolicySpec { // ReplicaSet represents the configuration of a ReplicaSet. message ReplicaSet { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // If the Labels of a ReplicaSet are empty, they are defaulted to // be the same as the Pod(s) that the ReplicaSet manages. // Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -808,8 +780,6 @@ message ReplicaSetCondition { // ReplicaSetList is a collection of ReplicaSets. message ReplicaSetList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds // +optional @@ -878,7 +848,6 @@ message ReplicaSetStatus { // Dummy definition message ReplicationControllerDummy { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 1; } message RollbackConfig { @@ -940,8 +909,6 @@ message SELinuxStrategyOptions { // represents a scaling request for a resource. message Scale { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata. // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; @@ -1015,8 +982,6 @@ message SupplementalGroupsStrategyOptions { // A ThirdPartyResource is a generic representation of a resource, it is used by add-ons and plugins to add new resource // types to the API. It consists of one or more Versions of the api. message ThirdPartyResource { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object metadata // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; @@ -1032,8 +997,6 @@ message ThirdPartyResource { // An internal object, used for versioned storage in etcd. Not exposed to the end user. message ThirdPartyResourceData { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object metadata. // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; @@ -1045,8 +1008,6 @@ message ThirdPartyResourceData { // ThirdPartyResrouceDataList is a list of ThirdPartyResourceData. message ThirdPartyResourceDataList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -1058,8 +1019,6 @@ message ThirdPartyResourceDataList { // ThirdPartyResourceList is a list of ThirdPartyResources. message ThirdPartyResourceList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata. // +optional optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; diff --git a/pkg/apis/imagepolicy/v1alpha1/generated.pb.go b/pkg/apis/imagepolicy/v1alpha1/generated.pb.go index 523c25ad5f2..42ce22c38e6 100644 --- a/pkg/apis/imagepolicy/v1alpha1/generated.pb.go +++ b/pkg/apis/imagepolicy/v1alpha1/generated.pb.go @@ -114,14 +114,6 @@ func (m *ImageReview) MarshalTo(data []byte) (int, error) { return 0, err } i += n3 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n4, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n4 return i, nil } @@ -264,8 +256,6 @@ func (m *ImageReview) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -329,7 +319,6 @@ func (this *ImageReview) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "ImageReviewSpec", "ImageReviewSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "ImageReviewStatus", "ImageReviewStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -504,36 +493,6 @@ func (m *ImageReview) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1060,44 +1019,42 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 622 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xa4, 0x92, 0xbf, 0x6f, 0xd3, 0x40, - 0x14, 0xc7, 0xe3, 0xa6, 0x3f, 0x92, 0x0b, 0xd0, 0xf6, 0x60, 0xb0, 0x32, 0xb8, 0x55, 0x90, 0x50, - 0x41, 0x70, 0xa7, 0x54, 0x08, 0x55, 0x0c, 0x94, 0x1a, 0x31, 0x74, 0x00, 0xc4, 0xc1, 0x80, 0x10, - 0xcb, 0xc5, 0x7d, 0x75, 0xdc, 0xd8, 0x77, 0x96, 0xef, 0x9c, 0x2a, 0x03, 0x12, 0x23, 0x03, 0x03, - 0x0b, 0xff, 0x53, 0xc7, 0x8e, 0x4c, 0x15, 0x0d, 0xff, 0x08, 0xf2, 0xd9, 0xae, 0x4d, 0xd3, 0x08, - 0xa1, 0x6e, 0xbe, 0xf7, 0xfc, 0xfd, 0x7c, 0xbf, 0xf7, 0xee, 0xa1, 0xdd, 0xd1, 0x8e, 0x22, 0x81, - 0xa4, 0xa3, 0x74, 0x00, 0x89, 0x00, 0x0d, 0x8a, 0xc6, 0x23, 0x9f, 0xf2, 0x38, 0x50, 0x34, 0x88, - 0xb8, 0x0f, 0xb1, 0x0c, 0x03, 0x6f, 0x42, 0xc7, 0x7d, 0x1e, 0xc6, 0x43, 0xde, 0xa7, 0x3e, 0x08, - 0x48, 0xb8, 0x86, 0x03, 0x12, 0x27, 0x52, 0x4b, 0x4c, 0x73, 0x00, 0xa9, 0x00, 0x24, 0x1e, 0xf9, - 0x24, 0x03, 0x90, 0x1a, 0x80, 0x94, 0x80, 0xee, 0x23, 0x3f, 0xd0, 0xc3, 0x74, 0x40, 0x3c, 0x19, - 0x51, 0x5f, 0xfa, 0x92, 0x1a, 0xce, 0x20, 0x3d, 0x34, 0x27, 0x73, 0x30, 0x5f, 0x39, 0xbf, 0xfb, - 0xb8, 0x08, 0xc8, 0xe3, 0x20, 0xe2, 0xde, 0x30, 0x10, 0x90, 0x4c, 0xaa, 0x88, 0x11, 0x68, 0x4e, - 0xc7, 0x33, 0xa9, 0xba, 0x74, 0x9e, 0x2a, 0x49, 0x85, 0x0e, 0x22, 0x98, 0x11, 0x3c, 0xf9, 0x97, - 0x40, 0x79, 0x43, 0x88, 0xf8, 0x8c, 0x6e, 0x7b, 0xee, 0xfc, 0x68, 0x02, 0x4a, 0xa6, 0x89, 0x37, - 0xeb, 0xf5, 0x70, 0xbe, 0xe6, 0x8a, 0xab, 0xf4, 0xaf, 0xfe, 0x3b, 0xd5, 0x41, 0x48, 0x03, 0xa1, - 0x95, 0x4e, 0x2e, 0x4b, 0x7a, 0x3f, 0x9a, 0xa8, 0xb3, 0x9f, 0xcd, 0x9e, 0xc1, 0x38, 0x80, 0x63, - 0xfc, 0x01, 0xb5, 0xb2, 0x41, 0x1d, 0x70, 0xcd, 0x6d, 0x6b, 0xd3, 0xda, 0xea, 0x6c, 0x6f, 0x91, - 0xb9, 0xcf, 0x46, 0xc6, 0x7d, 0xf2, 0x66, 0x70, 0x04, 0x9e, 0x7e, 0x05, 0x9a, 0xbb, 0xf8, 0xe4, - 0x6c, 0xa3, 0x31, 0x3d, 0xdb, 0x40, 0x55, 0x8d, 0x5d, 0xd0, 0xf0, 0x00, 0x2d, 0xaa, 0x18, 0x3c, - 0x7b, 0xc1, 0x50, 0x9f, 0x93, 0xff, 0x5c, 0x06, 0x52, 0x4b, 0xf9, 0x2e, 0x06, 0xcf, 0xbd, 0x51, - 0xb8, 0x2d, 0x66, 0x27, 0x66, 0xd8, 0xf8, 0x08, 0x2d, 0x2b, 0xcd, 0x75, 0xaa, 0xec, 0xa6, 0x71, - 0x71, 0xaf, 0xe5, 0x62, 0x48, 0xee, 0xad, 0xc2, 0x67, 0x39, 0x3f, 0xb3, 0xc2, 0x01, 0x7f, 0x42, - 0x2d, 0x3d, 0x89, 0x21, 0xbb, 0xa5, 0xbd, 0x68, 0xdc, 0x48, 0xe9, 0x56, 0xdf, 0x8c, 0xca, 0x2f, - 0x9b, 0x44, 0x36, 0xb1, 0xf7, 0x85, 0xca, 0x5d, 0x2b, 0xc8, 0xad, 0xb2, 0xc2, 0x2e, 0x88, 0xbd, - 0x5d, 0x64, 0xd7, 0xa2, 0xbc, 0x90, 0x42, 0xf3, 0x0c, 0x97, 0xdd, 0x15, 0xdf, 0x45, 0x4b, 0x26, - 0xbb, 0x79, 0xa0, 0xb6, 0x7b, 0xb3, 0xc0, 0x2c, 0xe5, 0x82, 0xbc, 0xd7, 0xfb, 0xd6, 0x44, 0xab, - 0x97, 0x46, 0x86, 0x3f, 0x23, 0xe4, 0x95, 0x24, 0x65, 0x5b, 0x9b, 0xcd, 0xad, 0xce, 0xf6, 0xfe, - 0x75, 0x46, 0xf4, 0x57, 0xae, 0xea, 0xfd, 0x2f, 0xca, 0x8a, 0xd5, 0x0c, 0xf1, 0x57, 0x0b, 0x75, - 0xb8, 0x10, 0x52, 0x73, 0x1d, 0x48, 0xa1, 0xec, 0x05, 0x13, 0xe0, 0xed, 0x75, 0x37, 0x81, 0xec, - 0x55, 0xcc, 0x97, 0x42, 0x27, 0x13, 0xf7, 0x76, 0x11, 0xa4, 0x53, 0xeb, 0xb0, 0xba, 0x35, 0xa6, - 0xa8, 0x2d, 0x78, 0x04, 0x2a, 0xe6, 0x1e, 0x98, 0x5d, 0x69, 0xbb, 0xeb, 0x85, 0xa8, 0xfd, 0xba, - 0x6c, 0xb0, 0xea, 0x9f, 0xee, 0x33, 0xb4, 0x76, 0xd9, 0x06, 0xaf, 0xa1, 0xe6, 0x08, 0x26, 0xf9, - 0x2b, 0xb0, 0xec, 0x13, 0xdf, 0x41, 0x4b, 0x63, 0x1e, 0xa6, 0x60, 0x96, 0xbc, 0xcd, 0xf2, 0xc3, - 0xd3, 0x85, 0x1d, 0xab, 0x77, 0x88, 0xd6, 0x67, 0x56, 0x0b, 0xdf, 0x47, 0x2b, 0x3c, 0x0c, 0xe5, - 0x31, 0x1c, 0x18, 0x48, 0xcb, 0x5d, 0x2d, 0x32, 0xac, 0xec, 0xe5, 0x65, 0x56, 0xf6, 0xf1, 0x3d, - 0xb4, 0x9c, 0x00, 0x57, 0x52, 0xe4, 0xe8, 0x6a, 0x2b, 0x99, 0xa9, 0xb2, 0xa2, 0xeb, 0x3e, 0x38, - 0x39, 0x77, 0x1a, 0xa7, 0xe7, 0x4e, 0xe3, 0xe7, 0xb9, 0xd3, 0xf8, 0x32, 0x75, 0xac, 0x93, 0xa9, - 0x63, 0x9d, 0x4e, 0x1d, 0xeb, 0xd7, 0xd4, 0xb1, 0xbe, 0xff, 0x76, 0x1a, 0x1f, 0x5b, 0xe5, 0x1c, - 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x46, 0xf3, 0x4f, 0x24, 0xd1, 0x05, 0x00, 0x00, + // 588 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xa4, 0x92, 0xbf, 0x6f, 0x13, 0x31, + 0x14, 0xc7, 0x73, 0x49, 0x7f, 0xc5, 0x01, 0xda, 0x1a, 0x86, 0x28, 0xc3, 0xb5, 0x0a, 0x12, 0x2a, + 0x08, 0x6c, 0xa5, 0x42, 0xa8, 0x62, 0xa0, 0xf4, 0x10, 0x43, 0x07, 0x40, 0x98, 0x05, 0xb1, 0x39, + 0xd7, 0xd7, 0x8b, 0x9b, 0x3b, 0xfb, 0x74, 0xf6, 0xa5, 0xca, 0x80, 0xc4, 0xc8, 0xc0, 0xc0, 0x7f, + 0xc3, 0xbf, 0xd0, 0xb1, 0x23, 0x53, 0x45, 0xc3, 0x3f, 0x82, 0xce, 0x77, 0xe9, 0x1d, 0x4d, 0x23, + 0x84, 0xb2, 0xf9, 0xf9, 0xf9, 0x7d, 0xbe, 0x5f, 0xbf, 0xf7, 0xd0, 0xfe, 0x70, 0x4f, 0x13, 0xa1, + 0xe8, 0x30, 0xed, 0x43, 0x22, 0xc1, 0x80, 0xa6, 0xf1, 0x30, 0xa0, 0x3c, 0x16, 0x9a, 0x8a, 0x88, + 0x07, 0x10, 0xab, 0x50, 0xf8, 0x63, 0x3a, 0xea, 0xf1, 0x30, 0x1e, 0xf0, 0x1e, 0x0d, 0x40, 0x42, + 0xc2, 0x0d, 0x1c, 0x91, 0x38, 0x51, 0x46, 0x61, 0x9a, 0x03, 0x48, 0x09, 0x20, 0xf1, 0x30, 0x20, + 0x19, 0x80, 0x54, 0x00, 0x64, 0x0a, 0xe8, 0x3c, 0x09, 0x84, 0x19, 0xa4, 0x7d, 0xe2, 0xab, 0x88, + 0x06, 0x2a, 0x50, 0xd4, 0x72, 0xfa, 0xe9, 0xb1, 0x8d, 0x6c, 0x60, 0x4f, 0x39, 0xbf, 0xf3, 0xb4, + 0x30, 0xc8, 0x63, 0x11, 0x71, 0x7f, 0x20, 0x24, 0x24, 0xe3, 0xd2, 0x62, 0x04, 0x86, 0xd3, 0xd1, + 0x8c, 0xab, 0x0e, 0x9d, 0x57, 0x95, 0xa4, 0xd2, 0x88, 0x08, 0x66, 0x0a, 0x9e, 0xfd, 0xab, 0x40, + 0xfb, 0x03, 0x88, 0xf8, 0x4c, 0xdd, 0xee, 0xdc, 0xfe, 0xd1, 0x04, 0xb4, 0x4a, 0x13, 0x7f, 0x56, + 0xeb, 0xf1, 0xfc, 0x9a, 0x1b, 0xbe, 0xd2, 0xbb, 0xf9, 0x75, 0x6a, 0x44, 0x48, 0x85, 0x34, 0xda, + 0x24, 0xd7, 0x4b, 0xba, 0x3f, 0xea, 0xa8, 0x75, 0x98, 0xf5, 0x9e, 0xc1, 0x48, 0xc0, 0x29, 0xfe, + 0x88, 0xd6, 0xb2, 0x46, 0x1d, 0x71, 0xc3, 0xdb, 0xce, 0xb6, 0xb3, 0xd3, 0xda, 0xdd, 0x21, 0x73, + 0xc7, 0x46, 0x46, 0x3d, 0xf2, 0xae, 0x7f, 0x02, 0xbe, 0x79, 0x03, 0x86, 0x7b, 0xf8, 0xec, 0x62, + 0xab, 0x36, 0xb9, 0xd8, 0x42, 0xe5, 0x1d, 0xbb, 0xa2, 0xe1, 0x3e, 0x5a, 0xd2, 0x31, 0xf8, 0xed, + 0xba, 0xa5, 0xbe, 0x24, 0xff, 0xb9, 0x0c, 0xa4, 0xe2, 0xf2, 0x43, 0x0c, 0xbe, 0x77, 0xab, 0x50, + 0x5b, 0xca, 0x22, 0x66, 0xd9, 0xf8, 0x04, 0xad, 0x68, 0xc3, 0x4d, 0xaa, 0xdb, 0x0d, 0xab, 0xe2, + 0x2d, 0xa4, 0x62, 0x49, 0xde, 0x9d, 0x42, 0x67, 0x25, 0x8f, 0x59, 0xa1, 0xd0, 0xdd, 0x47, 0xed, + 0xca, 0xe3, 0x57, 0x4a, 0x1a, 0x9e, 0xad, 0x42, 0xe6, 0x06, 0xdf, 0x47, 0xcb, 0x96, 0x6e, 0x5b, + 0xd8, 0xf4, 0x6e, 0x17, 0x88, 0xe5, 0xbc, 0x20, 0xcf, 0x75, 0xbf, 0x35, 0xd0, 0xfa, 0xb5, 0x4f, + 0xe1, 0xcf, 0x08, 0xf9, 0x53, 0x92, 0x6e, 0x3b, 0xdb, 0x8d, 0x9d, 0xd6, 0xee, 0xe1, 0x22, 0x9f, + 0xf8, 0xcb, 0x57, 0x39, 0xa1, 0xab, 0x6b, 0xcd, 0x2a, 0x82, 0xf8, 0xab, 0x83, 0x5a, 0x5c, 0x4a, + 0x65, 0xb8, 0x11, 0x4a, 0xea, 0x76, 0xdd, 0x1a, 0x78, 0xbf, 0xe8, 0xac, 0xc8, 0x41, 0xc9, 0x7c, + 0x2d, 0x4d, 0x32, 0xf6, 0xee, 0x16, 0x46, 0x5a, 0x95, 0x0c, 0xab, 0x4a, 0x63, 0x8a, 0x9a, 0x92, + 0x47, 0xa0, 0x63, 0xee, 0x83, 0x9d, 0x66, 0xd3, 0xdb, 0x2c, 0x8a, 0x9a, 0x6f, 0xa7, 0x09, 0x56, + 0xbe, 0xe9, 0xbc, 0x40, 0x1b, 0xd7, 0x65, 0xf0, 0x06, 0x6a, 0x0c, 0x61, 0x9c, 0x4f, 0x81, 0x65, + 0x47, 0x7c, 0x0f, 0x2d, 0x8f, 0x78, 0x98, 0x82, 0x5d, 0xc3, 0x26, 0xcb, 0x83, 0xe7, 0xf5, 0x3d, + 0xa7, 0x7b, 0x8c, 0x36, 0x67, 0x86, 0x8f, 0x1f, 0xa2, 0x55, 0x1e, 0x86, 0xea, 0x14, 0x8e, 0x2c, + 0x64, 0xcd, 0x5b, 0x2f, 0x3c, 0xac, 0x1e, 0xe4, 0xd7, 0x6c, 0x9a, 0xc7, 0x0f, 0xd0, 0x4a, 0x02, + 0x5c, 0x2b, 0x99, 0xa3, 0xcb, 0xbd, 0x61, 0xf6, 0x96, 0x15, 0x59, 0xef, 0xd1, 0xd9, 0xa5, 0x5b, + 0x3b, 0xbf, 0x74, 0x6b, 0x3f, 0x2f, 0xdd, 0xda, 0x97, 0x89, 0xeb, 0x9c, 0x4d, 0x5c, 0xe7, 0x7c, + 0xe2, 0x3a, 0xbf, 0x26, 0xae, 0xf3, 0xfd, 0xb7, 0x5b, 0xfb, 0xb4, 0x36, 0xed, 0xe3, 0x9f, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x85, 0x95, 0xf8, 0x16, 0x73, 0x05, 0x00, 0x00, } diff --git a/pkg/apis/imagepolicy/v1alpha1/generated.proto b/pkg/apis/imagepolicy/v1alpha1/generated.proto index e3c32199d0d..8e72f540400 100644 --- a/pkg/apis/imagepolicy/v1alpha1/generated.proto +++ b/pkg/apis/imagepolicy/v1alpha1/generated.proto @@ -33,8 +33,6 @@ option go_package = "v1alpha1"; // ImageReview checks if the set of images in a pod are allowed. message ImageReview { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; diff --git a/pkg/apis/policy/v1beta1/generated.pb.go b/pkg/apis/policy/v1beta1/generated.pb.go index 76f2ced276b..6120c60aa8d 100644 --- a/pkg/apis/policy/v1beta1/generated.pb.go +++ b/pkg/apis/policy/v1beta1/generated.pb.go @@ -118,14 +118,6 @@ func (m *Eviction) MarshalTo(data []byte) (int, error) { } i += n2 } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n3, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n3 return i, nil } @@ -147,35 +139,27 @@ func (m *PodDisruptionBudget) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n4, err := m.ObjectMeta.MarshalTo(data[i:]) + n3, err := m.ObjectMeta.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n3 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n4, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } i += n4 - data[i] = 0x12 + data[i] = 0x1a i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n5, err := m.Spec.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n5, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } i += n5 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n6, err := m.Status.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n6 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n7, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n7 return i, nil } @@ -197,11 +181,11 @@ func (m *PodDisruptionBudgetList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n8, err := m.ListMeta.MarshalTo(data[i:]) + n6, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n8 + i += n6 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -214,14 +198,6 @@ func (m *PodDisruptionBudgetList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n9, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n9 return i, nil } @@ -243,20 +219,20 @@ func (m *PodDisruptionBudgetSpec) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.MinAvailable.Size())) - n10, err := m.MinAvailable.MarshalTo(data[i:]) + n7, err := m.MinAvailable.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n10 + i += n7 if m.Selector != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Selector.Size())) - n11, err := m.Selector.MarshalTo(data[i:]) + n8, err := m.Selector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n11 + i += n8 } return i, nil } @@ -294,11 +270,11 @@ func (m *PodDisruptionBudgetStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n12, err := (&v).MarshalTo(data[i:]) + n9, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n12 + i += n9 } } data[i] = 0x18 @@ -352,8 +328,6 @@ func (m *Eviction) Size() (n int) { l = m.DeleteOptions.Size() n += 1 + l + sovGenerated(uint64(l)) } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -366,8 +340,6 @@ func (m *PodDisruptionBudget) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = m.Status.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -382,8 +354,6 @@ func (m *PodDisruptionBudgetList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -439,7 +409,6 @@ func (this *Eviction) String() string { s := strings.Join([]string{`&Eviction{`, `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `DeleteOptions:` + strings.Replace(fmt.Sprintf("%v", this.DeleteOptions), "DeleteOptions", "k8s_io_kubernetes_pkg_api_v1.DeleteOptions", 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -452,7 +421,6 @@ func (this *PodDisruptionBudget) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "PodDisruptionBudgetSpec", "PodDisruptionBudgetSpec", 1), `&`, ``, 1) + `,`, `Status:` + strings.Replace(strings.Replace(this.Status.String(), "PodDisruptionBudgetStatus", "PodDisruptionBudgetStatus", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -464,7 +432,6 @@ func (this *PodDisruptionBudgetList) String() string { s := strings.Join([]string{`&PodDisruptionBudgetList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "PodDisruptionBudget", "PodDisruptionBudget", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -605,36 +572,6 @@ func (m *Eviction) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -775,36 +712,6 @@ func (m *PodDisruptionBudget) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -916,36 +823,6 @@ func (m *PodDisruptionBudgetList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1447,56 +1324,54 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 808 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x94, 0xcd, 0x6e, 0x23, 0x45, - 0x10, 0xc7, 0x3d, 0x71, 0x1c, 0x4c, 0xaf, 0x1d, 0x2d, 0x0d, 0x0b, 0xc1, 0x12, 0x13, 0x94, 0x53, - 0x96, 0x8f, 0x1e, 0x39, 0x20, 0x14, 0x38, 0xac, 0xd8, 0xc1, 0x11, 0x2c, 0x22, 0xf2, 0xaa, 0x83, - 0x04, 0x42, 0x70, 0xe8, 0x99, 0x29, 0xc6, 0x8d, 0xe7, 0x4b, 0xdd, 0x3d, 0x06, 0xdf, 0x78, 0x04, - 0x0e, 0xbc, 0x00, 0x37, 0x9e, 0x81, 0x27, 0xc8, 0x71, 0x8f, 0x9c, 0x22, 0x62, 0x9e, 0x81, 0x3b, - 0xea, 0x99, 0x1e, 0xdb, 0xe3, 0x0f, 0xb0, 0xb4, 0xbb, 0xb7, 0xe9, 0xee, 0xfa, 0xfd, 0xff, 0xd5, - 0x55, 0xd5, 0x83, 0x3e, 0x1c, 0x9f, 0x4b, 0xc2, 0x53, 0x67, 0x9c, 0x7b, 0x20, 0x12, 0x50, 0x20, - 0x9d, 0x6c, 0x1c, 0x3a, 0x2c, 0xe3, 0xd2, 0xc9, 0xd2, 0x88, 0xfb, 0x53, 0x67, 0xd2, 0xf7, 0x40, - 0xb1, 0xbe, 0x13, 0x42, 0x02, 0x82, 0x29, 0x08, 0x48, 0x26, 0x52, 0x95, 0xe2, 0xfb, 0x25, 0x4a, - 0x16, 0x28, 0xc9, 0xc6, 0x21, 0xd1, 0x28, 0x29, 0x51, 0x62, 0xd0, 0xde, 0xbb, 0x21, 0x57, 0xa3, - 0xdc, 0x23, 0x7e, 0x1a, 0x3b, 0x61, 0x1a, 0xa6, 0x4e, 0xa1, 0xe0, 0xe5, 0xdf, 0x17, 0xab, 0x62, - 0x51, 0x7c, 0x95, 0xca, 0xbd, 0xf7, 0x4d, 0x52, 0x2c, 0xe3, 0x31, 0xf3, 0x47, 0x3c, 0x01, 0x31, - 0x5d, 0xa4, 0x15, 0x83, 0x62, 0xce, 0x64, 0x2d, 0x9f, 0x9e, 0xb3, 0x8d, 0x12, 0x79, 0xa2, 0x78, - 0x0c, 0x6b, 0xc0, 0x07, 0xff, 0x07, 0x48, 0x7f, 0x04, 0x31, 0x5b, 0xe3, 0xce, 0xb6, 0xd6, 0xcc, - 0x11, 0x20, 0xd3, 0x5c, 0xf8, 0xeb, 0x5e, 0xef, 0x6c, 0x67, 0x36, 0x5c, 0xa5, 0xbf, 0x39, 0x3a, - 0x57, 0x3c, 0x72, 0x78, 0xa2, 0xa4, 0x12, 0xab, 0xc8, 0xc9, 0xef, 0x7b, 0xa8, 0x7d, 0x31, 0xe1, - 0xbe, 0xe2, 0x69, 0x82, 0xbf, 0x46, 0x6d, 0x5d, 0xa5, 0x80, 0x29, 0x76, 0x64, 0xbd, 0x69, 0x9d, - 0xde, 0x39, 0x3b, 0x25, 0x5b, 0xbb, 0x45, 0x26, 0x7d, 0x32, 0xf4, 0x7e, 0x00, 0x5f, 0x5d, 0x82, - 0x62, 0x2e, 0xbe, 0xbe, 0x39, 0x6e, 0xcc, 0x6e, 0x8e, 0xd1, 0x62, 0x8f, 0xce, 0xd5, 0x70, 0x80, - 0xba, 0x01, 0x44, 0xa0, 0x60, 0x98, 0x69, 0x27, 0x79, 0xb4, 0x57, 0xc8, 0xbf, 0xfd, 0xdf, 0xf2, - 0x83, 0x65, 0xc4, 0x7d, 0x69, 0x76, 0x73, 0xdc, 0xad, 0x6d, 0xd1, 0xba, 0x28, 0xfe, 0x16, 0xb5, - 0xd5, 0x34, 0x03, 0xed, 0x7d, 0xd4, 0x2c, 0x0c, 0x48, 0x65, 0xb0, 0xdc, 0xac, 0xc5, 0xbc, 0xe9, - 0xfc, 0xb4, 0xd1, 0x97, 0x86, 0x72, 0xef, 0x9a, 0x5b, 0xb4, 0xab, 0x1d, 0x3a, 0x57, 0x3c, 0xf9, - 0xad, 0x89, 0x5e, 0x7e, 0x9c, 0x06, 0x03, 0x2e, 0x45, 0x5e, 0x18, 0xba, 0x79, 0x10, 0x82, 0x7a, - 0xae, 0x55, 0xdb, 0x97, 0x19, 0xf8, 0xa6, 0x58, 0x2e, 0xd9, 0xf9, 0xe5, 0x90, 0x0d, 0x79, 0x5e, - 0x65, 0xe0, 0xbb, 0x1d, 0xe3, 0xb7, 0xaf, 0x57, 0xb4, 0x50, 0xc7, 0x11, 0x3a, 0x90, 0x8a, 0xa9, - 0x5c, 0x9a, 0x9a, 0x0d, 0x9e, 0xd2, 0xa7, 0xd0, 0x72, 0x0f, 0x8d, 0xd3, 0x41, 0xb9, 0xa6, 0xc6, - 0xa3, 0xd6, 0xa3, 0xfd, 0x67, 0xde, 0xa3, 0x3f, 0xf6, 0xd0, 0x6b, 0x1b, 0x72, 0xfa, 0x82, 0x4b, - 0xa5, 0x9d, 0x57, 0xfa, 0xb4, 0xa3, 0xb3, 0xa6, 0xeb, 0xce, 0xd5, 0xce, 0x52, 0xaf, 0x7c, 0xd4, - 0xe2, 0x0a, 0x62, 0x3d, 0xd9, 0xcd, 0xd3, 0x3b, 0x67, 0x0f, 0x9e, 0xae, 0x88, 0x6e, 0xd7, 0x58, - 0xb5, 0x1e, 0x69, 0x51, 0x5a, 0x6a, 0x3f, 0xe7, 0x01, 0x9f, 0x59, 0x1b, 0x8b, 0xa7, 0x47, 0x05, - 0x8f, 0x50, 0x27, 0xe6, 0xc9, 0xc3, 0x09, 0xe3, 0x11, 0xf3, 0x22, 0x58, 0x2d, 0xe0, 0xca, 0x2d, - 0xf5, 0x1f, 0x87, 0x94, 0x7f, 0x1c, 0xf2, 0x28, 0x51, 0x43, 0x71, 0xa5, 0x04, 0x4f, 0x42, 0xf7, - 0x15, 0xe3, 0xde, 0xb9, 0x5c, 0xd2, 0xa2, 0x35, 0x65, 0xfc, 0x1d, 0x6a, 0x4b, 0x88, 0xc0, 0x57, - 0xa9, 0x30, 0x83, 0xff, 0xde, 0x8e, 0x6d, 0x62, 0x1e, 0x44, 0x57, 0x06, 0x75, 0x3b, 0xfa, 0x92, - 0xd5, 0x8a, 0xce, 0x25, 0x4f, 0xfe, 0xd9, 0x47, 0xaf, 0x6f, 0x9d, 0x5a, 0xfc, 0x39, 0xc2, 0xa9, - 0x27, 0x41, 0x4c, 0x20, 0xf8, 0xb4, 0xfc, 0x53, 0xf2, 0x34, 0x29, 0x2e, 0xdb, 0x74, 0x7b, 0x26, - 0x79, 0x3c, 0x5c, 0x8b, 0xa0, 0x1b, 0x28, 0xfc, 0xab, 0x85, 0xba, 0x41, 0x69, 0x03, 0xc1, 0xe3, - 0x34, 0xa8, 0x46, 0xe3, 0xab, 0x67, 0xf1, 0xbe, 0xc8, 0x60, 0x59, 0xf9, 0x22, 0x51, 0x62, 0xea, - 0xde, 0x33, 0x09, 0x76, 0x6b, 0x67, 0xb4, 0x9e, 0x04, 0xbe, 0x44, 0x38, 0x98, 0x4b, 0xca, 0x87, - 0x51, 0x94, 0xfe, 0x08, 0x41, 0x31, 0x4d, 0x2d, 0xf7, 0x0d, 0xa3, 0x70, 0xaf, 0xe6, 0x5b, 0x05, - 0xd1, 0x0d, 0x20, 0x7e, 0x80, 0x0e, 0xfd, 0x5c, 0x08, 0x48, 0xd4, 0x67, 0xc0, 0x22, 0x35, 0x9a, - 0x16, 0xaf, 0xba, 0xe5, 0xbe, 0x6a, 0xa4, 0x0e, 0x3f, 0xa9, 0x9d, 0xd2, 0x95, 0x68, 0xcd, 0x07, - 0x20, 0xb9, 0x80, 0xa0, 0xe2, 0x5b, 0x75, 0x7e, 0x50, 0x3b, 0xa5, 0x2b, 0xd1, 0xf8, 0x1c, 0x75, - 0xe0, 0xa7, 0x0c, 0xfc, 0xaa, 0xc6, 0x07, 0x05, 0x3d, 0x1f, 0xb4, 0x8b, 0xa5, 0x33, 0x5a, 0x8b, - 0xec, 0x45, 0x08, 0xaf, 0x17, 0x11, 0xdf, 0x45, 0xcd, 0x31, 0x4c, 0x8b, 0x96, 0xbf, 0x48, 0xf5, - 0x27, 0xfe, 0x18, 0xb5, 0x26, 0x2c, 0xca, 0xc1, 0x4c, 0xe3, 0x5b, 0x3b, 0xbe, 0x38, 0x1e, 0x03, - 0x2d, 0xc1, 0x8f, 0xf6, 0xce, 0x2d, 0xf7, 0xfe, 0xf5, 0xad, 0xdd, 0x78, 0x72, 0x6b, 0x37, 0xfe, - 0xbc, 0xb5, 0x1b, 0x3f, 0xcf, 0x6c, 0xeb, 0x7a, 0x66, 0x5b, 0x4f, 0x66, 0xb6, 0xf5, 0xd7, 0xcc, - 0xb6, 0x7e, 0xf9, 0xdb, 0x6e, 0x7c, 0xf3, 0x82, 0x69, 0xfa, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, - 0x82, 0xa3, 0x73, 0x1c, 0x5d, 0x09, 0x00, 0x00, + // 777 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x94, 0x4d, 0x6f, 0xe3, 0x44, + 0x18, 0xc7, 0xe3, 0x26, 0x29, 0x61, 0x9a, 0x54, 0x65, 0xa0, 0x10, 0x22, 0xe1, 0xa2, 0x9c, 0x5a, + 0x5e, 0xc6, 0x4a, 0x41, 0xa8, 0x70, 0xa8, 0xa8, 0x49, 0x05, 0x45, 0x54, 0xa9, 0x5c, 0x24, 0x10, + 0x82, 0xc3, 0xd8, 0x7e, 0x70, 0x86, 0xf8, 0x4d, 0x33, 0xe3, 0x40, 0x6e, 0x7c, 0x84, 0x3d, 0xec, + 0x37, 0xda, 0x4b, 0xb5, 0xa7, 0x1e, 0xf7, 0xb0, 0xaa, 0xb6, 0xd9, 0xcf, 0xb0, 0xf7, 0x95, 0xed, + 0xc9, 0x8b, 0xf3, 0xb2, 0x5b, 0xa9, 0xbb, 0x37, 0xcf, 0xcc, 0xf3, 0xfb, 0xff, 0x9f, 0xe7, 0x99, + 0x67, 0x8c, 0xbe, 0x1d, 0x1c, 0x09, 0xc2, 0x22, 0x63, 0x90, 0xd8, 0xc0, 0x43, 0x90, 0x20, 0x8c, + 0x78, 0xe0, 0x19, 0x34, 0x66, 0xc2, 0x88, 0x23, 0x9f, 0x39, 0x23, 0x63, 0xd8, 0xb1, 0x41, 0xd2, + 0x8e, 0xe1, 0x41, 0x08, 0x9c, 0x4a, 0x70, 0x49, 0xcc, 0x23, 0x19, 0xe1, 0x83, 0x1c, 0x25, 0x33, + 0x94, 0xc4, 0x03, 0x8f, 0xa4, 0x28, 0xc9, 0x51, 0xa2, 0xd0, 0xd6, 0x97, 0x1e, 0x93, 0xfd, 0xc4, + 0x26, 0x4e, 0x14, 0x18, 0x5e, 0xe4, 0x45, 0x46, 0xa6, 0x60, 0x27, 0x7f, 0x67, 0xab, 0x6c, 0x91, + 0x7d, 0xe5, 0xca, 0xad, 0xaf, 0x55, 0x52, 0x34, 0x66, 0x01, 0x75, 0xfa, 0x2c, 0x04, 0x3e, 0x9a, + 0xa5, 0x15, 0x80, 0xa4, 0xc6, 0x70, 0x29, 0x9f, 0x96, 0xb1, 0x8e, 0xe2, 0x49, 0x28, 0x59, 0x00, + 0x4b, 0xc0, 0x37, 0xaf, 0x03, 0x84, 0xd3, 0x87, 0x80, 0x2e, 0x71, 0x87, 0x6b, 0x7b, 0x66, 0x70, + 0x10, 0x51, 0xc2, 0x9d, 0x65, 0xaf, 0x2f, 0xd6, 0x33, 0x2b, 0x4a, 0xe9, 0xac, 0x8e, 0x4e, 0x24, + 0xf3, 0x0d, 0x16, 0x4a, 0x21, 0xf9, 0x22, 0xd2, 0x7e, 0xac, 0xa1, 0xda, 0xe9, 0x90, 0x39, 0x92, + 0x45, 0x21, 0xfe, 0x1d, 0xd5, 0xd2, 0x2e, 0xb9, 0x54, 0xd2, 0xa6, 0xf6, 0xa9, 0xb6, 0xbf, 0x75, + 0xb8, 0x4f, 0xd6, 0xde, 0x16, 0x19, 0x76, 0x48, 0xcf, 0xfe, 0x07, 0x1c, 0x79, 0x0e, 0x92, 0x9a, + 0xf8, 0xea, 0x66, 0xaf, 0x34, 0xbe, 0xd9, 0x43, 0xb3, 0x3d, 0x6b, 0xaa, 0x86, 0x5d, 0xd4, 0x70, + 0xc1, 0x07, 0x09, 0xbd, 0x38, 0x75, 0x12, 0xcd, 0x8d, 0x4c, 0xfe, 0xf3, 0x57, 0xcb, 0x77, 0xe7, + 0x11, 0xf3, 0xbd, 0xf1, 0xcd, 0x5e, 0xa3, 0xb0, 0x65, 0x15, 0x45, 0xdb, 0x8f, 0x36, 0xd0, 0xfb, + 0x17, 0x91, 0xdb, 0x65, 0x82, 0x27, 0xd9, 0x96, 0x99, 0xb8, 0x1e, 0xc8, 0xb7, 0x5a, 0x57, 0x45, + 0xc4, 0xe0, 0xa8, 0x72, 0x4c, 0x72, 0xe7, 0xd9, 0x26, 0x2b, 0xf2, 0xbc, 0x8c, 0xc1, 0x31, 0xeb, + 0xca, 0xaf, 0x92, 0xae, 0xac, 0x4c, 0x1d, 0xfb, 0x68, 0x53, 0x48, 0x2a, 0x13, 0xd1, 0x2c, 0x67, + 0x3e, 0xdd, 0x7b, 0xfa, 0x64, 0x5a, 0xe6, 0xb6, 0x72, 0xda, 0xcc, 0xd7, 0x96, 0xf2, 0x68, 0x3f, + 0xd5, 0xd0, 0x47, 0x2b, 0xa8, 0x5f, 0x98, 0x90, 0xf8, 0xcf, 0xa5, 0x4e, 0x92, 0x49, 0x2e, 0xf3, + 0xcf, 0x61, 0x96, 0x4d, 0x1a, 0x9d, 0x76, 0x34, 0xa5, 0xb3, 0x7e, 0xee, 0x28, 0xd7, 0xda, 0x64, + 0x67, 0xae, 0x9b, 0x0e, 0xaa, 0x32, 0x09, 0x41, 0x3a, 0x1d, 0xe5, 0xfd, 0xad, 0xc3, 0xe3, 0xfb, + 0x95, 0x69, 0x36, 0x94, 0x55, 0xf5, 0x2c, 0x15, 0xb5, 0x72, 0xed, 0xf6, 0x78, 0x75, 0x79, 0x69, + 0xbb, 0x71, 0x1f, 0xd5, 0x03, 0x16, 0x9e, 0x0c, 0x29, 0xf3, 0xa9, 0xed, 0xc3, 0x62, 0x89, 0x0b, + 0x79, 0xa4, 0xef, 0x8a, 0xe4, 0xef, 0x8a, 0x9c, 0x85, 0xb2, 0xc7, 0x2f, 0x25, 0x67, 0xa1, 0x67, + 0x7e, 0xa0, 0x7c, 0xeb, 0xe7, 0x73, 0x5a, 0x56, 0x41, 0x19, 0xff, 0x85, 0x6a, 0x02, 0x7c, 0x70, + 0x64, 0xc4, 0xd5, 0xf0, 0x7c, 0x75, 0xc7, 0x46, 0x52, 0x1b, 0xfc, 0x4b, 0x85, 0x9a, 0xf5, 0xb4, + 0x93, 0x93, 0x95, 0x35, 0x95, 0x6c, 0xbf, 0xa8, 0xa0, 0x8f, 0xd7, 0xde, 0x3c, 0xfe, 0x19, 0xe1, + 0xc8, 0x16, 0xc0, 0x87, 0xe0, 0xfe, 0x98, 0xff, 0x0f, 0x58, 0x14, 0x66, 0xc5, 0x96, 0xcd, 0x96, + 0x4a, 0x1e, 0xf7, 0x96, 0x22, 0xac, 0x15, 0x14, 0x7e, 0xa8, 0xa1, 0x86, 0x9b, 0xdb, 0x80, 0x7b, + 0x11, 0xb9, 0x93, 0xcb, 0xfb, 0xed, 0x4d, 0xcc, 0x28, 0xe9, 0xce, 0x2b, 0x9f, 0x86, 0x92, 0x8f, + 0xcc, 0x5d, 0x95, 0x60, 0xa3, 0x70, 0x66, 0x15, 0x93, 0xc0, 0xe7, 0x08, 0xbb, 0x53, 0x49, 0x71, + 0xe2, 0xfb, 0xd1, 0xbf, 0xe0, 0x66, 0xcf, 0xa7, 0x6a, 0x7e, 0xa2, 0x14, 0x76, 0x0b, 0xbe, 0x93, + 0x20, 0x6b, 0x05, 0x88, 0x8f, 0xd1, 0xb6, 0x93, 0x70, 0x0e, 0xa1, 0xfc, 0x09, 0xa8, 0x2f, 0xfb, + 0xa3, 0x66, 0x25, 0x93, 0xfa, 0x50, 0x49, 0x6d, 0xff, 0x50, 0x38, 0xb5, 0x16, 0xa2, 0x53, 0xde, + 0x05, 0xc1, 0x38, 0xb8, 0x13, 0xbe, 0x5a, 0xe4, 0xbb, 0x85, 0x53, 0x6b, 0x21, 0x1a, 0x1f, 0xa1, + 0x3a, 0xfc, 0x17, 0x83, 0x33, 0xe9, 0xf1, 0x66, 0x46, 0x4f, 0x07, 0xed, 0x74, 0xee, 0xcc, 0x2a, + 0x44, 0xb6, 0x7c, 0x84, 0x97, 0x9b, 0x88, 0x77, 0x50, 0x79, 0x00, 0xa3, 0xec, 0xca, 0xdf, 0xb5, + 0xd2, 0x4f, 0xfc, 0x3d, 0xaa, 0x0e, 0xa9, 0x9f, 0x80, 0x9a, 0xc6, 0xcf, 0xee, 0x36, 0x8d, 0xbf, + 0xb2, 0x00, 0xac, 0x1c, 0xfc, 0x6e, 0xe3, 0x48, 0x33, 0x0f, 0xae, 0x6e, 0xf5, 0xd2, 0xf5, 0xad, + 0x5e, 0x7a, 0x72, 0xab, 0x97, 0xfe, 0x1f, 0xeb, 0xda, 0xd5, 0x58, 0xd7, 0xae, 0xc7, 0xba, 0xf6, + 0x6c, 0xac, 0x6b, 0x0f, 0x9e, 0xeb, 0xa5, 0x3f, 0xde, 0x51, 0x97, 0xfe, 0x32, 0x00, 0x00, 0xff, + 0xff, 0xf9, 0xf8, 0x35, 0x20, 0x43, 0x08, 0x00, 0x00, } diff --git a/pkg/apis/policy/v1beta1/generated.proto b/pkg/apis/policy/v1beta1/generated.proto index a6c08b5eca6..8f172d3b947 100644 --- a/pkg/apis/policy/v1beta1/generated.proto +++ b/pkg/apis/policy/v1beta1/generated.proto @@ -35,8 +35,6 @@ option go_package = "v1beta1"; // This is a subresource of Pod. A request to cause such an eviction is // created by POSTing to .../pods//evictions. message Eviction { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // ObjectMeta describes the pod that is being evicted. optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; @@ -46,8 +44,6 @@ message Eviction { // PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods message PodDisruptionBudget { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; // Specification of the desired behavior of the PodDisruptionBudget. @@ -59,8 +55,6 @@ message PodDisruptionBudget { // PodDisruptionBudgetList is a collection of PodDisruptionBudgets. message PodDisruptionBudgetList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; repeated PodDisruptionBudget items = 2; diff --git a/pkg/apis/rbac/v1alpha1/generated.pb.go b/pkg/apis/rbac/v1alpha1/generated.pb.go index 05cc5574bfc..bfe80ced3c9 100644 --- a/pkg/apis/rbac/v1alpha1/generated.pb.go +++ b/pkg/apis/rbac/v1alpha1/generated.pb.go @@ -163,14 +163,6 @@ func (m *ClusterRole) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n2, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n2 return i, nil } @@ -192,11 +184,11 @@ func (m *ClusterRoleBinding) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n3, err := m.ObjectMeta.MarshalTo(data[i:]) + n2, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n3 + i += n2 if len(m.Subjects) > 0 { for _, msg := range m.Subjects { data[i] = 0x12 @@ -212,19 +204,11 @@ func (m *ClusterRoleBinding) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.RoleRef.Size())) - n4, err := m.RoleRef.MarshalTo(data[i:]) + n3, err := m.RoleRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n4 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n5, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n5 + i += n3 return i, nil } @@ -246,11 +230,11 @@ func (m *ClusterRoleBindingBuilder) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ClusterRoleBinding.Size())) - n6, err := m.ClusterRoleBinding.MarshalTo(data[i:]) + n4, err := m.ClusterRoleBinding.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n6 + i += n4 return i, nil } @@ -272,11 +256,11 @@ func (m *ClusterRoleBindingList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n7, err := m.ListMeta.MarshalTo(data[i:]) + n5, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n7 + i += n5 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -289,14 +273,6 @@ func (m *ClusterRoleBindingList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n8, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n8 return i, nil } @@ -318,11 +294,11 @@ func (m *ClusterRoleList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n9, err := m.ListMeta.MarshalTo(data[i:]) + n6, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n9 + i += n6 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -335,14 +311,6 @@ func (m *ClusterRoleList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n10, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n10 return i, nil } @@ -379,11 +347,11 @@ func (m *PolicyRule) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.AttributeRestrictions.Size())) - n11, err := m.AttributeRestrictions.MarshalTo(data[i:]) + n7, err := m.AttributeRestrictions.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n11 + i += n7 if len(m.APIGroups) > 0 { for _, s := range m.APIGroups { data[i] = 0x1a @@ -465,11 +433,11 @@ func (m *PolicyRuleBuilder) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.PolicyRule.Size())) - n12, err := m.PolicyRule.MarshalTo(data[i:]) + n8, err := m.PolicyRule.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n12 + i += n8 return i, nil } @@ -491,11 +459,11 @@ func (m *Role) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n13, err := m.ObjectMeta.MarshalTo(data[i:]) + n9, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n13 + i += n9 if len(m.Rules) > 0 { for _, msg := range m.Rules { data[i] = 0x12 @@ -508,14 +476,6 @@ func (m *Role) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n14, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n14 return i, nil } @@ -537,11 +497,11 @@ func (m *RoleBinding) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n15, err := m.ObjectMeta.MarshalTo(data[i:]) + n10, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n15 + i += n10 if len(m.Subjects) > 0 { for _, msg := range m.Subjects { data[i] = 0x12 @@ -557,19 +517,11 @@ func (m *RoleBinding) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.RoleRef.Size())) - n16, err := m.RoleRef.MarshalTo(data[i:]) + n11, err := m.RoleRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n16 - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n17, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n17 + i += n11 return i, nil } @@ -591,11 +543,11 @@ func (m *RoleBindingList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n18, err := m.ListMeta.MarshalTo(data[i:]) + n12, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n18 + i += n12 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -608,14 +560,6 @@ func (m *RoleBindingList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n19, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n19 return i, nil } @@ -637,11 +581,11 @@ func (m *RoleList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n20, err := m.ListMeta.MarshalTo(data[i:]) + n13, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n20 + i += n13 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -654,14 +598,6 @@ func (m *RoleList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n21, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n21 return i, nil } @@ -767,8 +703,6 @@ func (m *ClusterRole) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -785,8 +719,6 @@ func (m *ClusterRoleBinding) Size() (n int) { } l = m.RoleRef.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -809,8 +741,6 @@ func (m *ClusterRoleBindingList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -825,8 +755,6 @@ func (m *ClusterRoleList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -887,8 +815,6 @@ func (m *Role) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -905,8 +831,6 @@ func (m *RoleBinding) Size() (n int) { } l = m.RoleRef.Size() n += 1 + l + sovGenerated(uint64(l)) - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -921,8 +845,6 @@ func (m *RoleBindingList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -937,8 +859,6 @@ func (m *RoleList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -988,7 +908,6 @@ func (this *ClusterRole) String() string { s := strings.Join([]string{`&ClusterRole{`, `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Rules:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Rules), "PolicyRule", "PolicyRule", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -1001,7 +920,6 @@ func (this *ClusterRoleBinding) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Subjects:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Subjects), "Subject", "Subject", 1), `&`, ``, 1) + `,`, `RoleRef:` + strings.Replace(strings.Replace(this.RoleRef.String(), "RoleRef", "RoleRef", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -1023,7 +941,6 @@ func (this *ClusterRoleBindingList) String() string { s := strings.Join([]string{`&ClusterRoleBindingList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "ClusterRoleBinding", "ClusterRoleBinding", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -1035,7 +952,6 @@ func (this *ClusterRoleList) String() string { s := strings.Join([]string{`&ClusterRoleList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "ClusterRole", "ClusterRole", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -1072,7 +988,6 @@ func (this *Role) String() string { s := strings.Join([]string{`&Role{`, `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Rules:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Rules), "PolicyRule", "PolicyRule", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -1085,7 +1000,6 @@ func (this *RoleBinding) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Subjects:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Subjects), "Subject", "Subject", 1), `&`, ``, 1) + `,`, `RoleRef:` + strings.Replace(strings.Replace(this.RoleRef.String(), "RoleRef", "RoleRef", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -1097,7 +1011,6 @@ func (this *RoleBindingList) String() string { s := strings.Join([]string{`&RoleBindingList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "RoleBinding", "RoleBinding", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -1109,7 +1022,6 @@ func (this *RoleList) String() string { s := strings.Join([]string{`&RoleList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Role", "Role", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -1237,36 +1149,6 @@ func (m *ClusterRole) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1408,36 +1290,6 @@ func (m *ClusterRoleBinding) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1629,36 +1481,6 @@ func (m *ClusterRoleBindingList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -1770,36 +1592,6 @@ func (m *ClusterRoleList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -2216,36 +2008,6 @@ func (m *Role) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -2387,36 +2149,6 @@ func (m *RoleBinding) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -2528,36 +2260,6 @@ func (m *RoleBindingList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -2669,36 +2371,6 @@ func (m *RoleList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -3129,63 +2801,61 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 928 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x55, 0xcf, 0x6f, 0x1b, 0x45, - 0x14, 0xf6, 0xfa, 0x07, 0xf1, 0xbe, 0x10, 0x85, 0x0c, 0x2a, 0x32, 0x91, 0xb0, 0x23, 0x9f, 0x2c, - 0x68, 0x77, 0xe5, 0xa8, 0x40, 0x0f, 0x70, 0xc8, 0x22, 0x84, 0x22, 0x4a, 0x88, 0xa6, 0x50, 0x41, - 0x55, 0x09, 0x8d, 0xd7, 0x53, 0x7b, 0xf0, 0x7a, 0x77, 0x35, 0x33, 0x1b, 0x88, 0x10, 0x12, 0x42, - 0x1c, 0x90, 0xb8, 0x70, 0x45, 0x5c, 0x38, 0x21, 0x71, 0xe5, 0xc2, 0xbf, 0x90, 0x63, 0x8f, 0x9c, - 0x2c, 0x62, 0xfe, 0x11, 0x34, 0xeb, 0x99, 0xdd, 0x75, 0x6c, 0xab, 0x69, 0x68, 0x93, 0x4b, 0x4e, - 0xf6, 0xbe, 0xf7, 0xbe, 0x6f, 0xde, 0x7c, 0xf3, 0x66, 0x3e, 0xb8, 0x33, 0xba, 0x23, 0x1c, 0x16, - 0xb9, 0xa3, 0xa4, 0x47, 0x79, 0x48, 0x25, 0x15, 0x6e, 0x3c, 0x1a, 0xb8, 0x24, 0x66, 0xc2, 0xe5, - 0x3d, 0xe2, 0xbb, 0x47, 0x5d, 0x12, 0xc4, 0x43, 0xd2, 0x75, 0x07, 0x34, 0xa4, 0x9c, 0x48, 0xda, - 0x77, 0x62, 0x1e, 0xc9, 0x08, 0x75, 0x66, 0x48, 0x27, 0x47, 0x3a, 0xf1, 0x68, 0xe0, 0x28, 0xa4, - 0xa3, 0x90, 0x8e, 0x41, 0x6e, 0xdf, 0x1a, 0x30, 0x39, 0x4c, 0x7a, 0x8e, 0x1f, 0x8d, 0xdd, 0x41, - 0x34, 0x88, 0xdc, 0x94, 0xa0, 0x97, 0x3c, 0x4a, 0xbf, 0xd2, 0x8f, 0xf4, 0xdf, 0x8c, 0x78, 0xfb, - 0xb6, 0x6e, 0x89, 0xc4, 0x6c, 0x4c, 0xfc, 0x21, 0x0b, 0x29, 0x3f, 0xce, 0x9b, 0x1a, 0x53, 0x49, - 0xdc, 0xa3, 0x85, 0x76, 0xb6, 0xdd, 0x55, 0x28, 0x9e, 0x84, 0x92, 0x8d, 0xe9, 0x02, 0xe0, 0xad, - 0x27, 0x01, 0x84, 0x3f, 0xa4, 0x63, 0xb2, 0x80, 0xdb, 0x5d, 0xa9, 0x98, 0xcb, 0xa9, 0x88, 0x12, - 0xee, 0x2f, 0xae, 0x75, 0x73, 0x35, 0x66, 0xc9, 0x56, 0xba, 0xcb, 0xab, 0x13, 0xc9, 0x02, 0x97, - 0x85, 0x52, 0x48, 0x7e, 0x16, 0xd2, 0xfe, 0xad, 0x0c, 0xeb, 0xef, 0x05, 0x89, 0x90, 0x94, 0xe3, - 0x28, 0xa0, 0xe8, 0x33, 0xa8, 0x2b, 0xa1, 0xfa, 0x44, 0x92, 0x86, 0xb5, 0x63, 0x75, 0xd6, 0x77, - 0x3b, 0xce, 0xca, 0xf3, 0x72, 0x8e, 0xba, 0xce, 0xc7, 0xbd, 0x2f, 0xa9, 0x2f, 0x3f, 0xa2, 0x92, - 0x78, 0xe8, 0x64, 0xd2, 0x2a, 0x4d, 0x27, 0x2d, 0xc8, 0x63, 0x38, 0x63, 0x43, 0x9f, 0x43, 0x8d, - 0x27, 0x01, 0x15, 0x8d, 0xf2, 0x4e, 0xa5, 0xb3, 0xbe, 0x7b, 0xdb, 0x39, 0xef, 0x18, 0x38, 0x87, - 0x51, 0xc0, 0xfc, 0x63, 0x9c, 0x04, 0xd4, 0xdb, 0xd0, 0x4b, 0xd4, 0xd4, 0x97, 0xc0, 0x33, 0x46, - 0xf4, 0x10, 0xea, 0xf2, 0x38, 0xa6, 0x6a, 0xc1, 0x46, 0x25, 0x6d, 0xda, 0x31, 0xec, 0xc5, 0x43, - 0xca, 0xf9, 0x55, 0x53, 0xaa, 0xf9, 0x4f, 0x34, 0xca, 0x7b, 0x49, 0xf3, 0xd6, 0x4d, 0x04, 0x67, - 0x8c, 0xed, 0x9f, 0x2a, 0x80, 0x0a, 0x12, 0x79, 0x2c, 0xec, 0xb3, 0x70, 0xf0, 0x1c, 0x95, 0xfa, - 0x02, 0xea, 0x22, 0x49, 0x13, 0x46, 0xac, 0xee, 0xf9, 0xc5, 0xba, 0x37, 0x43, 0xe6, 0x3b, 0xd2, - 0x01, 0x81, 0x33, 0x52, 0xf4, 0x10, 0xd6, 0x78, 0x14, 0x50, 0x4c, 0x1f, 0x69, 0xb9, 0x9e, 0x82, - 0x1f, 0xcf, 0x80, 0xde, 0xa6, 0xe6, 0x5f, 0xd3, 0x01, 0x6c, 0x28, 0xe7, 0x4e, 0xa3, 0xfa, 0xcc, - 0x4f, 0xe3, 0x77, 0x0b, 0x5e, 0x5d, 0x3c, 0x0d, 0x2f, 0x61, 0x41, 0x9f, 0x72, 0xf4, 0xa3, 0x05, - 0xc8, 0x5f, 0xc8, 0xea, 0xf3, 0x79, 0xe7, 0xfc, 0xbb, 0x5c, 0xb2, 0xc2, 0xb6, 0x6e, 0x6a, 0xc9, - 0x2c, 0xe0, 0x25, 0x6b, 0xb6, 0xff, 0x2a, 0xc3, 0x2b, 0x8b, 0xa5, 0x77, 0x99, 0x90, 0x4a, 0xa1, - 0x33, 0xa3, 0x73, 0x4e, 0x85, 0x14, 0x7a, 0x5e, 0x21, 0x13, 0x29, 0x8c, 0x0f, 0x81, 0x1a, 0x93, - 0x74, 0x6c, 0x66, 0xe7, 0xff, 0xed, 0x3a, 0xbb, 0x70, 0xfb, 0x8a, 0x12, 0xcf, 0x98, 0x9f, 0xf3, - 0x85, 0xfb, 0xa3, 0x0c, 0x9b, 0x85, 0x56, 0x2e, 0x41, 0xb2, 0x07, 0xf3, 0x92, 0xbd, 0x79, 0x31, - 0xc9, 0xae, 0x42, 0xab, 0x1f, 0x2a, 0x00, 0xf9, 0xfb, 0x88, 0x5a, 0x50, 0x3b, 0xa2, 0xbc, 0x27, - 0x1a, 0xd6, 0x4e, 0xa5, 0x63, 0x7b, 0xb6, 0xea, 0xe6, 0xbe, 0x0a, 0xe0, 0x59, 0x1c, 0x7d, 0x6f, - 0xc1, 0x0d, 0x22, 0x25, 0x67, 0xbd, 0x44, 0x52, 0x4c, 0x85, 0xe4, 0xcc, 0x97, 0x2c, 0x0a, 0xd5, - 0xd6, 0x55, 0x6f, 0xb7, 0x56, 0xf6, 0xa6, 0xdd, 0xcd, 0xc1, 0xe4, 0xab, 0xf7, 0xbf, 0x96, 0x34, - 0x14, 0x2c, 0x0a, 0xbd, 0xd7, 0x74, 0x6b, 0x37, 0xf6, 0x96, 0x71, 0xe2, 0xe5, 0x4b, 0xa1, 0x37, - 0xc0, 0x26, 0x31, 0xfb, 0x80, 0x47, 0x49, 0x2c, 0x1a, 0x95, 0xb4, 0xd3, 0x8d, 0xe9, 0xa4, 0x65, - 0xef, 0x1d, 0xee, 0xcf, 0x82, 0x38, 0xcf, 0xab, 0x62, 0x63, 0x8f, 0xa2, 0x51, 0xcd, 0x8b, 0xb1, - 0x09, 0xe2, 0x3c, 0x8f, 0xde, 0x86, 0x0d, 0xf3, 0x71, 0x40, 0xc6, 0x54, 0x34, 0x6a, 0x29, 0x60, - 0x6b, 0x3a, 0x69, 0x6d, 0xe0, 0x62, 0x02, 0xcf, 0xd7, 0xa1, 0x77, 0x61, 0x33, 0x8c, 0x42, 0x53, - 0xf2, 0x29, 0xbe, 0x2b, 0x1a, 0x2f, 0xa4, 0xd0, 0x97, 0xa7, 0x93, 0xd6, 0xe6, 0xc1, 0x7c, 0x0a, - 0x9f, 0xad, 0x6d, 0x7f, 0x0b, 0x5b, 0x05, 0x97, 0xd2, 0x8f, 0xd1, 0x10, 0x20, 0xce, 0x82, 0x7a, - 0x6a, 0x2f, 0x66, 0x7b, 0x99, 0x5f, 0xe4, 0x31, 0x5c, 0xe0, 0x6e, 0xff, 0x52, 0x86, 0xea, 0xb5, - 0x7d, 0xaf, 0xbc, 0x21, 0xeb, 0xd7, 0xbe, 0x7d, 0xe5, 0xbe, 0xad, 0x1e, 0xf5, 0xcb, 0xf5, 0xc1, - 0x8b, 0x3f, 0xea, 0x57, 0x6d, 0x80, 0xbf, 0x96, 0xa1, 0x7e, 0x49, 0xce, 0x77, 0x6f, 0x5e, 0x24, - 0xe7, 0x29, 0x45, 0xba, 0x0a, 0x75, 0xbe, 0x01, 0x33, 0xbb, 0xe8, 0x26, 0xd4, 0x8d, 0x51, 0xa4, - 0xda, 0xd8, 0x39, 0xd0, 0x78, 0x09, 0xce, 0x2a, 0xd0, 0x0e, 0x54, 0x47, 0x2c, 0xec, 0xa7, 0x4e, - 0x67, 0x7b, 0x2f, 0xea, 0xca, 0xea, 0x87, 0x2c, 0xec, 0xe3, 0x34, 0xa3, 0x2a, 0x42, 0x32, 0xa6, - 0x69, 0xd3, 0x85, 0x0a, 0x65, 0x11, 0x38, 0xcd, 0xb4, 0xff, 0xb4, 0x60, 0x4d, 0xdf, 0xcc, 0x8c, - 0xcf, 0x5a, 0xc9, 0xb7, 0x0b, 0x40, 0x62, 0x76, 0x9f, 0x72, 0x65, 0x96, 0x7a, 0xdd, 0xec, 0x0d, - 0xd9, 0x3b, 0xdc, 0xd7, 0x19, 0x5c, 0xa8, 0x7a, 0x72, 0x0f, 0xc8, 0x05, 0x5b, 0xfd, 0x8a, 0x98, - 0xf8, 0x34, 0xbd, 0xa9, 0xb6, 0xb7, 0xa5, 0xcb, 0xec, 0x03, 0x93, 0xc0, 0x79, 0x8d, 0xf7, 0xfa, - 0xc9, 0x69, 0xb3, 0xf4, 0xf8, 0xb4, 0x59, 0xfa, 0xfb, 0xb4, 0x59, 0xfa, 0x6e, 0xda, 0xb4, 0x4e, - 0xa6, 0x4d, 0xeb, 0xf1, 0xb4, 0x69, 0xfd, 0x33, 0x6d, 0x5a, 0x3f, 0xff, 0xdb, 0x2c, 0x3d, 0xa8, - 0x9b, 0x63, 0xfd, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x42, 0x1b, 0xd1, 0x1c, 0xd8, 0x0f, 0x00, 0x00, + // 895 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x55, 0xcf, 0x8b, 0x23, 0x45, + 0x14, 0x4e, 0x4d, 0x12, 0x27, 0x79, 0xe3, 0x30, 0x4e, 0xc9, 0x4a, 0x3b, 0x60, 0x32, 0xe4, 0x14, + 0x74, 0xb7, 0x9b, 0x0c, 0xab, 0xee, 0x41, 0x0f, 0xd3, 0x22, 0x32, 0xb8, 0x8e, 0x43, 0x2d, 0x2e, + 0xba, 0x2c, 0x48, 0xa5, 0x53, 0x9b, 0x94, 0xe9, 0x74, 0x37, 0x55, 0xd5, 0xa3, 0x8b, 0x08, 0x22, + 0x1e, 0x3c, 0xfa, 0x57, 0xec, 0xcd, 0x8b, 0x57, 0xf1, 0xe2, 0x69, 0xc0, 0xcb, 0x1e, 0xf5, 0x12, + 0x9c, 0xf8, 0x8f, 0x48, 0x75, 0xaa, 0x7f, 0xcc, 0x76, 0x87, 0xf9, 0x21, 0x0e, 0x08, 0x7b, 0x4a, + 0xea, 0xbd, 0xef, 0x7b, 0xf5, 0xbd, 0x7a, 0x55, 0x5f, 0xc3, 0x9d, 0xe9, 0x1d, 0x69, 0xf3, 0xd0, + 0x99, 0xc6, 0x43, 0x26, 0x02, 0xa6, 0x98, 0x74, 0xa2, 0xe9, 0xd8, 0xa1, 0x11, 0x97, 0x8e, 0x18, + 0x52, 0xcf, 0x39, 0x1e, 0x50, 0x3f, 0x9a, 0xd0, 0x81, 0x33, 0x66, 0x01, 0x13, 0x54, 0xb1, 0x91, + 0x1d, 0x89, 0x50, 0x85, 0xb8, 0xbf, 0x64, 0xda, 0x39, 0xd3, 0x8e, 0xa6, 0x63, 0x5b, 0x33, 0x6d, + 0xcd, 0xb4, 0x53, 0xe6, 0xce, 0xad, 0x31, 0x57, 0x93, 0x78, 0x68, 0x7b, 0xe1, 0xcc, 0x19, 0x87, + 0xe3, 0xd0, 0x49, 0x0a, 0x0c, 0xe3, 0x47, 0xc9, 0x2a, 0x59, 0x24, 0xff, 0x96, 0x85, 0x77, 0x6e, + 0x1b, 0x49, 0x34, 0xe2, 0x33, 0xea, 0x4d, 0x78, 0xc0, 0xc4, 0xe3, 0x5c, 0xd4, 0x8c, 0x29, 0xea, + 0x1c, 0x97, 0xe4, 0xec, 0x38, 0xab, 0x58, 0x22, 0x0e, 0x14, 0x9f, 0xb1, 0x12, 0xe1, 0xad, 0xf3, + 0x08, 0xd2, 0x9b, 0xb0, 0x19, 0x2d, 0xf1, 0xf6, 0x56, 0x9e, 0x98, 0x23, 0x98, 0x0c, 0x63, 0xe1, + 0x95, 0xf7, 0xba, 0xb9, 0x9a, 0x53, 0xd1, 0xca, 0xa0, 0x1a, 0x1d, 0x2b, 0xee, 0x3b, 0x3c, 0x50, + 0x52, 0x89, 0x67, 0x29, 0xbd, 0xdf, 0x10, 0x6c, 0xbc, 0xe7, 0xc7, 0x52, 0x31, 0x41, 0x42, 0x9f, + 0xe1, 0x4f, 0xa1, 0xa5, 0x0f, 0x6a, 0x44, 0x15, 0xb5, 0xd0, 0x2e, 0xea, 0x6f, 0xec, 0xf5, 0xed, + 0x95, 0xf3, 0xb2, 0x8f, 0x07, 0xf6, 0xc7, 0xc3, 0x2f, 0x98, 0xa7, 0x3e, 0x62, 0x8a, 0xba, 0xf8, + 0x64, 0xde, 0xad, 0x2d, 0xe6, 0x5d, 0xc8, 0x63, 0x24, 0xab, 0x86, 0x3f, 0x83, 0xa6, 0x88, 0x7d, + 0x26, 0xad, 0xb5, 0xdd, 0x7a, 0x7f, 0x63, 0xef, 0xb6, 0x7d, 0xd1, 0x6b, 0x60, 0x1f, 0x85, 0x3e, + 0xf7, 0x1e, 0x93, 0xd8, 0x67, 0xee, 0xa6, 0xd9, 0xa2, 0xa9, 0x57, 0x92, 0x2c, 0x2b, 0xf6, 0x7e, + 0x5a, 0x03, 0x5c, 0x68, 0xc2, 0xe5, 0xc1, 0x88, 0x07, 0xe3, 0xff, 0xb0, 0x97, 0xcf, 0xa1, 0x25, + 0xe3, 0x24, 0x91, 0xb6, 0x33, 0xb8, 0x78, 0x3b, 0xf7, 0x96, 0x4c, 0xf7, 0x25, 0xb3, 0x45, 0xcb, + 0x04, 0x24, 0xc9, 0x8a, 0xe2, 0x87, 0xb0, 0x2e, 0x42, 0x9f, 0x11, 0xf6, 0xc8, 0xaa, 0x27, 0xca, + 0x2f, 0x51, 0x9f, 0x2c, 0x89, 0xee, 0x96, 0xa9, 0xbf, 0x6e, 0x02, 0x24, 0x2d, 0xd9, 0x7b, 0x82, + 0xe0, 0xd5, 0xf2, 0x79, 0xb9, 0x31, 0xf7, 0x47, 0x4c, 0xe0, 0x1f, 0x10, 0x60, 0xaf, 0x94, 0x35, + 0x27, 0xf8, 0xce, 0xc5, 0x75, 0x54, 0xec, 0xb0, 0x63, 0x24, 0x55, 0x4c, 0x8b, 0x54, 0xec, 0xd9, + 0xfb, 0x13, 0xc1, 0x2b, 0x65, 0xe8, 0x5d, 0x2e, 0x15, 0x7e, 0x58, 0x1a, 0xae, 0x9d, 0x4a, 0x2b, + 0x3e, 0xcc, 0x5c, 0x9c, 0x46, 0xeb, 0x21, 0x6b, 0x76, 0x32, 0xe2, 0xec, 0xfc, 0xd3, 0x48, 0x61, + 0xc0, 0x14, 0x9a, 0x5c, 0xb1, 0x59, 0x3a, 0xdd, 0x7f, 0xd7, 0x75, 0x76, 0x69, 0x0f, 0x74, 0x49, + 0xb2, 0xac, 0xdc, 0xfb, 0x1d, 0xc1, 0x56, 0x01, 0x7c, 0x0d, 0x4d, 0x3d, 0x38, 0xdb, 0xd4, 0x9b, + 0x57, 0x6b, 0xaa, 0xba, 0x9b, 0xef, 0xeb, 0x00, 0xf9, 0x3b, 0xc5, 0x5d, 0x68, 0x1e, 0x33, 0x31, + 0x94, 0x16, 0xda, 0xad, 0xf7, 0xdb, 0x6e, 0x5b, 0xe3, 0xef, 0xeb, 0x00, 0x59, 0xc6, 0xf1, 0x77, + 0x08, 0x6e, 0x50, 0xa5, 0x04, 0x1f, 0xc6, 0x8a, 0x11, 0x26, 0x95, 0xe0, 0x9e, 0xe2, 0x61, 0xa0, + 0xc5, 0xe9, 0xbe, 0x6f, 0xad, 0xec, 0xdb, 0xb8, 0xac, 0x4d, 0xe8, 0x97, 0xef, 0x7f, 0xa5, 0x58, + 0x20, 0x79, 0x18, 0xb8, 0xaf, 0x19, 0x51, 0x37, 0xf6, 0xab, 0x6a, 0x92, 0xea, 0xad, 0xf0, 0x1b, + 0xd0, 0xa6, 0x11, 0xff, 0x40, 0x84, 0x71, 0x24, 0xad, 0x7a, 0xa2, 0x74, 0x73, 0x31, 0xef, 0xb6, + 0xf7, 0x8f, 0x0e, 0x96, 0x41, 0x92, 0xe7, 0x35, 0x38, 0xb5, 0x69, 0x69, 0x35, 0x72, 0x30, 0x49, + 0x83, 0x24, 0xcf, 0xe3, 0xb7, 0x61, 0x33, 0x5d, 0x1c, 0xd2, 0x19, 0x93, 0x56, 0x33, 0x21, 0x6c, + 0x2f, 0xe6, 0xdd, 0x4d, 0x52, 0x4c, 0x90, 0xb3, 0x38, 0xfc, 0x2e, 0x6c, 0x05, 0x61, 0x90, 0x42, + 0x3e, 0x21, 0x77, 0xa5, 0xf5, 0x42, 0x42, 0x7d, 0x79, 0x31, 0xef, 0x6e, 0x1d, 0x9e, 0x4d, 0x91, + 0x67, 0xb1, 0xbd, 0x6f, 0x60, 0xbb, 0xe0, 0x96, 0xe6, 0x41, 0x4f, 0x00, 0xa2, 0x2c, 0x68, 0xee, + 0xd5, 0xd5, 0xec, 0x37, 0x73, 0xc5, 0x3c, 0x46, 0x0a, 0xb5, 0x7b, 0xbf, 0x20, 0x68, 0xfc, 0x7f, + 0x3f, 0x23, 0x4f, 0xd6, 0x60, 0xe3, 0xf9, 0xf7, 0xe3, 0x02, 0xdf, 0x0f, 0x6d, 0x5d, 0xd7, 0xeb, + 0xc7, 0x57, 0xb7, 0xae, 0xf3, 0x8d, 0xf8, 0x57, 0x04, 0xad, 0x6b, 0x72, 0xe0, 0x7b, 0x67, 0xdb, + 0xb0, 0x2f, 0xd9, 0x46, 0xb5, 0xfe, 0xaf, 0x21, 0x9d, 0x10, 0xbe, 0x09, 0xad, 0xd4, 0xb0, 0x12, + 0xf5, 0xed, 0x5c, 0x4d, 0xea, 0x69, 0x24, 0x43, 0xe0, 0x5d, 0x68, 0x4c, 0x79, 0x30, 0x4a, 0x1c, + 0xb7, 0xed, 0xbe, 0x68, 0x90, 0x8d, 0x0f, 0x79, 0x30, 0x22, 0x49, 0x46, 0x23, 0x02, 0x3a, 0x63, + 0xc9, 0x1d, 0x2a, 0x20, 0xb4, 0x55, 0x91, 0x24, 0xd3, 0xfb, 0x19, 0xc1, 0xba, 0xb9, 0x7f, 0x59, + 0x3d, 0xb4, 0xb2, 0xde, 0x1e, 0x00, 0x8d, 0xf8, 0x7d, 0x26, 0xb4, 0x69, 0x9b, 0x7d, 0xb3, 0x97, + 0xb2, 0x7f, 0x74, 0x60, 0x32, 0xa4, 0x80, 0x3a, 0x5f, 0x03, 0x76, 0xa0, 0xad, 0x7f, 0x65, 0x44, + 0x3d, 0x66, 0x35, 0x12, 0xd8, 0xb6, 0x81, 0xb5, 0x0f, 0xd3, 0x04, 0xc9, 0x31, 0xee, 0xeb, 0x27, + 0xa7, 0x9d, 0xda, 0xd3, 0xd3, 0x4e, 0xed, 0x8f, 0xd3, 0x4e, 0xed, 0xdb, 0x45, 0x07, 0x9d, 0x2c, + 0x3a, 0xe8, 0xe9, 0xa2, 0x83, 0xfe, 0x5a, 0x74, 0xd0, 0x8f, 0x7f, 0x77, 0x6a, 0x0f, 0x5a, 0xe9, + 0xc1, 0xff, 0x13, 0x00, 0x00, 0xff, 0xff, 0xf9, 0x52, 0x01, 0xe6, 0xe8, 0x0c, 0x00, 0x00, } diff --git a/pkg/apis/rbac/v1alpha1/generated.proto b/pkg/apis/rbac/v1alpha1/generated.proto index 4386cd529b3..8e6d40135a2 100644 --- a/pkg/apis/rbac/v1alpha1/generated.proto +++ b/pkg/apis/rbac/v1alpha1/generated.proto @@ -33,8 +33,6 @@ option go_package = "v1alpha1"; // ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. message ClusterRole { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; @@ -46,8 +44,6 @@ message ClusterRole { // ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, // and adds who information via Subject. message ClusterRoleBinding { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; @@ -70,8 +66,6 @@ message ClusterRoleBindingBuilder { // ClusterRoleBindingList is a collection of ClusterRoleBindings message ClusterRoleBindingList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // +optional optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; @@ -82,8 +76,6 @@ message ClusterRoleBindingList { // ClusterRoleList is a collection of ClusterRoles message ClusterRoleList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // +optional optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; @@ -134,8 +126,6 @@ message PolicyRuleBuilder { // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. message Role { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; @@ -148,8 +138,6 @@ message Role { // It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given // namespace only have effect in that namespace. message RoleBinding { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // +optional optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1; @@ -164,8 +152,6 @@ message RoleBinding { // RoleBindingList is a collection of RoleBindings message RoleBindingList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // +optional optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; @@ -176,8 +162,6 @@ message RoleBindingList { // RoleList is a collection of Roles message RoleList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard object's metadata. // +optional optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; diff --git a/pkg/apis/storage/v1beta1/generated.pb.go b/pkg/apis/storage/v1beta1/generated.pb.go index 9aaf8bd9c6c..284e1cb82eb 100644 --- a/pkg/apis/storage/v1beta1/generated.pb.go +++ b/pkg/apis/storage/v1beta1/generated.pb.go @@ -105,14 +105,6 @@ func (m *StorageClass) MarshalTo(data []byte) (int, error) { i += copy(data[i:], v) } } - data[i] = 0x22 - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n2, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n2 return i, nil } @@ -134,11 +126,11 @@ func (m *StorageClassList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n3, err := m.ListMeta.MarshalTo(data[i:]) + n2, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n3 + i += n2 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -151,14 +143,6 @@ func (m *StorageClassList) MarshalTo(data []byte) (int, error) { i += n } } - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.TypeMeta.Size())) - n4, err := m.TypeMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n4 return i, nil } @@ -204,8 +188,6 @@ func (m *StorageClass) Size() (n int) { n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -220,8 +202,6 @@ func (m *StorageClassList) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } - l = m.TypeMeta.Size() - n += 1 + l + sovGenerated(uint64(l)) return n } @@ -256,7 +236,6 @@ func (this *StorageClass) String() string { `ObjectMeta:` + strings.Replace(strings.Replace(this.ObjectMeta.String(), "ObjectMeta", "k8s_io_kubernetes_pkg_api_v1.ObjectMeta", 1), `&`, ``, 1) + `,`, `Provisioner:` + fmt.Sprintf("%v", this.Provisioner) + `,`, `Parameters:` + mapStringForParameters + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -268,7 +247,6 @@ func (this *StorageClassList) String() string { s := strings.Join([]string{`&StorageClassList{`, `ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`, `Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "StorageClass", "StorageClass", 1), `&`, ``, 1) + `,`, - `TypeMeta:` + strings.Replace(strings.Replace(this.TypeMeta.String(), "TypeMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.TypeMeta", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -480,36 +458,6 @@ func (m *StorageClass) Unmarshal(data []byte) error { } m.Parameters[mapkey] = mapvalue iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -621,36 +569,6 @@ func (m *StorageClassList) Unmarshal(data []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TypeMeta", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenerated - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := data[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenerated - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.TypeMeta.Unmarshal(data[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -778,38 +696,36 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 518 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x92, 0x4f, 0x8b, 0xd3, 0x40, - 0x18, 0xc6, 0x9b, 0xc6, 0x62, 0x77, 0xaa, 0x58, 0xa2, 0x87, 0xd0, 0x43, 0xb6, 0xec, 0xa9, 0x8a, - 0xce, 0xd0, 0xa2, 0x52, 0x16, 0xbc, 0x44, 0x04, 0x05, 0xc5, 0x25, 0x7a, 0x10, 0xd1, 0xc3, 0x24, - 0xfb, 0x9a, 0x8e, 0x69, 0x32, 0x61, 0x66, 0x12, 0x28, 0x78, 0xf0, 0x23, 0xf8, 0x45, 0xfc, 0x02, - 0x7e, 0x82, 0x1e, 0xf7, 0xe8, 0x69, 0xb1, 0xf1, 0x8b, 0x48, 0xfe, 0xb4, 0xc9, 0xb6, 0x5b, 0x5c, - 0xc4, 0x5b, 0xe6, 0x9d, 0xf9, 0x3d, 0xef, 0xf3, 0x3e, 0x6f, 0xd0, 0x71, 0x30, 0x95, 0x98, 0x71, - 0x12, 0x24, 0x2e, 0x88, 0x08, 0x14, 0x48, 0x12, 0x07, 0x3e, 0xa1, 0x31, 0x93, 0x44, 0x2a, 0x2e, - 0xa8, 0x0f, 0x24, 0x1d, 0xbb, 0xa0, 0xe8, 0x98, 0xf8, 0x10, 0x81, 0xa0, 0x0a, 0x4e, 0x71, 0x2c, - 0xb8, 0xe2, 0xc6, 0xbd, 0x92, 0xc5, 0x35, 0x8b, 0xe3, 0xc0, 0xc7, 0x39, 0x8b, 0x2b, 0x16, 0x57, - 0xec, 0xe0, 0x81, 0xcf, 0xd4, 0x2c, 0x71, 0xb1, 0xc7, 0x43, 0xe2, 0x73, 0x9f, 0x93, 0x42, 0xc2, - 0x4d, 0x3e, 0x15, 0xa7, 0xe2, 0x50, 0x7c, 0x95, 0xd2, 0x83, 0x87, 0x95, 0x2d, 0x1a, 0xb3, 0x90, - 0x7a, 0x33, 0x16, 0x81, 0x58, 0xd4, 0xc6, 0x42, 0x50, 0x94, 0xa4, 0x3b, 0x86, 0x06, 0x64, 0x1f, - 0x25, 0x92, 0x48, 0xb1, 0x10, 0x76, 0x80, 0xc7, 0x7f, 0x03, 0xa4, 0x37, 0x83, 0x90, 0xee, 0x70, - 0x93, 0xbd, 0xa9, 0x11, 0x01, 0x92, 0x27, 0xc2, 0xdb, 0xed, 0x75, 0x7f, 0x3f, 0x73, 0xc9, 0x28, - 0xe3, 0xcb, 0x5f, 0x27, 0x8a, 0xcd, 0x09, 0x8b, 0x94, 0x54, 0x62, 0x1b, 0x39, 0xfa, 0xa1, 0xa3, - 0x1b, 0x6f, 0xca, 0xd8, 0x9f, 0xce, 0xa9, 0x94, 0xc6, 0x3b, 0xd4, 0xcd, 0x93, 0x3a, 0xa5, 0x8a, - 0x9a, 0xda, 0x50, 0x1b, 0xf5, 0x26, 0x23, 0xbc, 0x77, 0x65, 0x38, 0x1d, 0xe3, 0xd7, 0xee, 0x67, - 0xf0, 0xd4, 0x2b, 0x50, 0xd4, 0x36, 0x96, 0xe7, 0x87, 0xad, 0xec, 0xfc, 0x10, 0xd5, 0x35, 0x67, - 0xa3, 0x66, 0x3c, 0x42, 0xbd, 0x58, 0xf0, 0x94, 0x49, 0xc6, 0x23, 0x10, 0x66, 0x7b, 0xa8, 0x8d, - 0x0e, 0xec, 0xdb, 0x15, 0xd2, 0x3b, 0xa9, 0xaf, 0x9c, 0xe6, 0x3b, 0xe3, 0x0b, 0x42, 0x31, 0x15, - 0x34, 0x04, 0x05, 0x42, 0x9a, 0xfa, 0x50, 0x1f, 0xf5, 0x26, 0xcf, 0xf1, 0xd5, 0xff, 0x22, 0xdc, - 0x1c, 0x0f, 0x9f, 0x6c, 0xa4, 0x9e, 0x45, 0x4a, 0x2c, 0x6a, 0xcb, 0xf5, 0x85, 0xd3, 0xe8, 0x67, - 0x7c, 0x40, 0x5d, 0xb5, 0x88, 0x21, 0x1f, 0xc5, 0xbc, 0x56, 0xc4, 0x81, 0xd7, 0xbd, 0x9b, 0xfb, - 0xaf, 0xbb, 0xe7, 0xe3, 0xe6, 0xb1, 0xbc, 0xad, 0x28, 0xbb, 0x5f, 0x75, 0xe8, 0xae, 0x2b, 0xce, - 0x46, 0x71, 0xf0, 0x04, 0xdd, 0xda, 0x32, 0x64, 0xf4, 0x91, 0x1e, 0xc0, 0xa2, 0x88, 0xfe, 0xc0, - 0xc9, 0x3f, 0x8d, 0x3b, 0xa8, 0x93, 0xd2, 0x79, 0x02, 0x65, 0x62, 0x4e, 0x79, 0x38, 0x6e, 0x4f, - 0xb5, 0xa3, 0xef, 0x6d, 0xd4, 0x6f, 0x4e, 0xf7, 0x92, 0x49, 0x95, 0x3b, 0xde, 0x5a, 0xe0, 0x15, - 0x1d, 0xe7, 0xf4, 0x45, 0xc7, 0xeb, 0x4a, 0x63, 0x89, 0x1f, 0x51, 0x87, 0x29, 0x08, 0xa5, 0xd9, - 0x2e, 0x16, 0x31, 0xfd, 0xd7, 0x45, 0xd8, 0x37, 0xab, 0x26, 0x9d, 0x17, 0xb9, 0x9c, 0x53, 0xaa, - 0x5e, 0x88, 0x5b, 0xff, 0xdf, 0x71, 0xdb, 0x77, 0x97, 0x2b, 0xab, 0x75, 0xb6, 0xb2, 0x5a, 0x3f, - 0x57, 0x56, 0xeb, 0x6b, 0x66, 0x69, 0xcb, 0xcc, 0xd2, 0xce, 0x32, 0x4b, 0xfb, 0x95, 0x59, 0xda, - 0xb7, 0xdf, 0x56, 0xeb, 0xfd, 0xf5, 0xca, 0xeb, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x27, 0xd0, - 0x2e, 0x38, 0xe3, 0x04, 0x00, 0x00, + // 483 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x9c, 0x92, 0xcf, 0x8b, 0xd3, 0x40, + 0x14, 0xc7, 0x93, 0x96, 0xe2, 0xee, 0x54, 0xb1, 0x44, 0x0f, 0xa5, 0x87, 0x6c, 0xd9, 0x53, 0x15, + 0x9d, 0xa1, 0x45, 0xa5, 0x2c, 0x78, 0xa9, 0x08, 0x0a, 0x8a, 0x4b, 0xbc, 0x88, 0xe8, 0x61, 0x92, + 0x7d, 0xa6, 0x63, 0x9a, 0x4c, 0x98, 0x79, 0x09, 0x14, 0x3c, 0xf8, 0x27, 0xf8, 0x67, 0xf5, 0xe6, + 0x1e, 0x3d, 0xc8, 0x62, 0xe3, 0x3f, 0x22, 0xf9, 0xb1, 0x9b, 0xb0, 0x69, 0x51, 0xbc, 0xe5, 0xcd, + 0xbc, 0xcf, 0xf7, 0xbd, 0xef, 0x37, 0x43, 0x4e, 0x82, 0xb9, 0xa6, 0x42, 0xb2, 0x20, 0x71, 0x41, + 0x45, 0x80, 0xa0, 0x59, 0x1c, 0xf8, 0x8c, 0xc7, 0x42, 0x33, 0x8d, 0x52, 0x71, 0x1f, 0x58, 0x3a, + 0x75, 0x01, 0xf9, 0x94, 0xf9, 0x10, 0x81, 0xe2, 0x08, 0x67, 0x34, 0x56, 0x12, 0xa5, 0x75, 0xbf, + 0x64, 0x69, 0xcd, 0xd2, 0x38, 0xf0, 0x69, 0xce, 0xd2, 0x8a, 0xa5, 0x15, 0x3b, 0x7a, 0xe8, 0x0b, + 0x5c, 0x26, 0x2e, 0xf5, 0x64, 0xc8, 0x7c, 0xe9, 0x4b, 0x56, 0x48, 0xb8, 0xc9, 0xa7, 0xa2, 0x2a, + 0x8a, 0xe2, 0xab, 0x94, 0x1e, 0x3d, 0xaa, 0xd6, 0xe2, 0xb1, 0x08, 0xb9, 0xb7, 0x14, 0x11, 0xa8, + 0x75, 0xbd, 0x58, 0x08, 0xc8, 0x59, 0xda, 0x5a, 0x68, 0xc4, 0xf6, 0x51, 0x2a, 0x89, 0x50, 0x84, + 0xd0, 0x02, 0x9e, 0xfc, 0x0d, 0xd0, 0xde, 0x12, 0x42, 0xde, 0xe2, 0x66, 0x7b, 0x53, 0x63, 0x0a, + 0xb4, 0x4c, 0x94, 0xd7, 0x9e, 0xf5, 0x60, 0x3f, 0xb3, 0xc3, 0xca, 0x74, 0x77, 0x77, 0x82, 0x62, + 0xc5, 0x44, 0x84, 0x1a, 0xd5, 0x75, 0xe4, 0xf8, 0x67, 0x87, 0xdc, 0x7c, 0x5b, 0xc6, 0xfe, 0x6c, + 0xc5, 0xb5, 0xb6, 0xde, 0x91, 0x83, 0x3c, 0xa9, 0x33, 0x8e, 0x7c, 0x68, 0x8e, 0xcd, 0x49, 0x7f, + 0x36, 0xa1, 0x7b, 0x7f, 0x19, 0x4d, 0xa7, 0xf4, 0x8d, 0xfb, 0x19, 0x3c, 0x7c, 0x0d, 0xc8, 0x17, + 0xd6, 0xe6, 0xe2, 0xc8, 0xc8, 0x2e, 0x8e, 0x48, 0x7d, 0xe6, 0x5c, 0xa9, 0x59, 0x8f, 0x49, 0x3f, + 0x56, 0x32, 0x15, 0x5a, 0xc8, 0x08, 0xd4, 0xb0, 0x33, 0x36, 0x27, 0x87, 0x8b, 0x3b, 0x15, 0xd2, + 0x3f, 0xad, 0xaf, 0x9c, 0x66, 0x9f, 0xf5, 0x85, 0x90, 0x98, 0x2b, 0x1e, 0x02, 0x82, 0xd2, 0xc3, + 0xee, 0xb8, 0x3b, 0xe9, 0xcf, 0x5e, 0xd0, 0x7f, 0x7f, 0x45, 0xb4, 0x69, 0x8f, 0x9e, 0x5e, 0x49, + 0x3d, 0x8f, 0x50, 0xad, 0xeb, 0x95, 0xeb, 0x0b, 0xa7, 0x31, 0x6f, 0xf4, 0x94, 0xdc, 0xbe, 0x86, + 0x58, 0x03, 0xd2, 0x0d, 0x60, 0x5d, 0x84, 0x73, 0xe8, 0xe4, 0x9f, 0xd6, 0x5d, 0xd2, 0x4b, 0xf9, + 0x2a, 0x81, 0xd2, 0x93, 0x53, 0x16, 0x27, 0x9d, 0xb9, 0x79, 0xfc, 0xdd, 0x24, 0x83, 0xe6, 0xfc, + 0x57, 0x42, 0xa3, 0xf5, 0xa1, 0x15, 0x31, 0xbd, 0xf4, 0xd3, 0x7c, 0x53, 0xb5, 0xa3, 0xbc, 0x3b, + 0x8f, 0x3a, 0xa7, 0x8b, 0xa0, 0x07, 0xd5, 0xd6, 0x07, 0x97, 0x27, 0x8d, 0x98, 0x3f, 0x92, 0x9e, + 0x40, 0x08, 0xf5, 0xb0, 0x53, 0x44, 0x35, 0xff, 0xdf, 0xa8, 0x16, 0xb7, 0xaa, 0x21, 0xbd, 0x97, + 0xb9, 0x9c, 0x53, 0xaa, 0x2e, 0xee, 0x6d, 0xb6, 0xb6, 0x71, 0xbe, 0xb5, 0x8d, 0x1f, 0x5b, 0xdb, + 0xf8, 0x9a, 0xd9, 0xe6, 0x26, 0xb3, 0xcd, 0xf3, 0xcc, 0x36, 0x7f, 0x65, 0xb6, 0xf9, 0xed, 0xb7, + 0x6d, 0xbc, 0xbf, 0x51, 0xa9, 0xfd, 0x09, 0x00, 0x00, 0xff, 0xff, 0x7c, 0x5e, 0x19, 0x8e, 0x27, + 0x04, 0x00, 0x00, } diff --git a/pkg/apis/storage/v1beta1/generated.proto b/pkg/apis/storage/v1beta1/generated.proto index 43f04e79bd4..6b3c7b84b24 100644 --- a/pkg/apis/storage/v1beta1/generated.proto +++ b/pkg/apis/storage/v1beta1/generated.proto @@ -37,8 +37,6 @@ option go_package = "v1beta1"; // StorageClasses are non-namespaced; the name of the storage class // according to etcd is in ObjectMeta.Name. message StorageClass { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 4; - // Standard object's metadata. // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional @@ -55,8 +53,6 @@ message StorageClass { // StorageClassList is a collection of storage classes. message StorageClassList { - optional k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta typeMeta = 3; - // Standard list metadata // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata // +optional diff --git a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go index 47d13e6329c..7e2f0abc80a 100644 --- a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go +++ b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go @@ -15,14 +15,14 @@ limitations under the License. */ // Code generated by protoc-gen-gogo. -// source: k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto +// source: k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto // DO NOT EDIT! /* Package v1 is a generated protocol buffer package. It is generated from these files: - k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto + k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto It has these top-level messages: APIGroup @@ -61,7 +61,7 @@ import fmt "fmt" import math "math" import time "time" -import k8s_io_kubernetes_pkg_types "k8s.io/apimachinery/pkg/types" +import k8s_io_apimachinery_pkg_types "k8s.io/apimachinery/pkg/types" import strings "strings" import reflect "reflect" @@ -197,34 +197,34 @@ func (*WatchEvent) ProtoMessage() {} func (*WatchEvent) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{27} } func init() { - proto.RegisterType((*APIGroup)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.APIGroup") - proto.RegisterType((*APIGroupList)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.APIGroupList") - proto.RegisterType((*APIResource)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.APIResource") - proto.RegisterType((*APIResourceList)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.APIResourceList") - proto.RegisterType((*APIVersions)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.APIVersions") - proto.RegisterType((*Duration)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.Duration") - proto.RegisterType((*ExportOptions)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.ExportOptions") - proto.RegisterType((*GetOptions)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.GetOptions") - proto.RegisterType((*GroupKind)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.GroupKind") - proto.RegisterType((*GroupResource)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.GroupResource") - proto.RegisterType((*GroupVersion)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.GroupVersion") - proto.RegisterType((*GroupVersionForDiscovery)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.GroupVersionForDiscovery") - proto.RegisterType((*GroupVersionKind)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.GroupVersionKind") - proto.RegisterType((*GroupVersionResource)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.GroupVersionResource") - proto.RegisterType((*LabelSelector)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.LabelSelector") - proto.RegisterType((*LabelSelectorRequirement)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.LabelSelectorRequirement") - proto.RegisterType((*ListMeta)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.ListMeta") - proto.RegisterType((*OwnerReference)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.OwnerReference") - proto.RegisterType((*RootPaths)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.RootPaths") - proto.RegisterType((*ServerAddressByClientCIDR)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.ServerAddressByClientCIDR") - proto.RegisterType((*Status)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.Status") - proto.RegisterType((*StatusCause)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.StatusCause") - proto.RegisterType((*StatusDetails)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.StatusDetails") - proto.RegisterType((*Time)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.Time") - proto.RegisterType((*Timestamp)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.Timestamp") - proto.RegisterType((*TypeMeta)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.TypeMeta") - proto.RegisterType((*Verbs)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.Verbs") - proto.RegisterType((*WatchEvent)(nil), "k8s.io.kubernetes.pkg.apis.meta.v1.WatchEvent") + proto.RegisterType((*APIGroup)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.APIGroup") + proto.RegisterType((*APIGroupList)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.APIGroupList") + proto.RegisterType((*APIResource)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.APIResource") + proto.RegisterType((*APIResourceList)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.APIResourceList") + proto.RegisterType((*APIVersions)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.APIVersions") + proto.RegisterType((*Duration)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.Duration") + proto.RegisterType((*ExportOptions)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.ExportOptions") + proto.RegisterType((*GetOptions)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.GetOptions") + proto.RegisterType((*GroupKind)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.GroupKind") + proto.RegisterType((*GroupResource)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.GroupResource") + proto.RegisterType((*GroupVersion)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersion") + proto.RegisterType((*GroupVersionForDiscovery)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery") + proto.RegisterType((*GroupVersionKind)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind") + proto.RegisterType((*GroupVersionResource)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionResource") + proto.RegisterType((*LabelSelector)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector") + proto.RegisterType((*LabelSelectorRequirement)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement") + proto.RegisterType((*ListMeta)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta") + proto.RegisterType((*OwnerReference)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.OwnerReference") + proto.RegisterType((*RootPaths)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.RootPaths") + proto.RegisterType((*ServerAddressByClientCIDR)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR") + proto.RegisterType((*Status)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.Status") + proto.RegisterType((*StatusCause)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.StatusCause") + proto.RegisterType((*StatusDetails)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.StatusDetails") + proto.RegisterType((*Time)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.Time") + proto.RegisterType((*Timestamp)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.Timestamp") + proto.RegisterType((*TypeMeta)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.TypeMeta") + proto.RegisterType((*Verbs)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.Verbs") + proto.RegisterType((*WatchEvent)(nil), "k8s.io.apimachinery.pkg.apis.meta.v1.WatchEvent") } func (m *APIGroup) Marshal() (data []byte, err error) { size := m.Size() @@ -1750,7 +1750,7 @@ func (this *WatchEvent) String() string { } s := strings.Join([]string{`&WatchEvent{`, `Type:` + fmt.Sprintf("%v", this.Type) + `,`, - `Object:` + strings.Replace(strings.Replace(this.Object.String(), "RawExtension", "k8s_io_kubernetes_pkg_runtime.RawExtension", 1), `&`, ``, 1) + `,`, + `Object:` + strings.Replace(strings.Replace(this.Object.String(), "RawExtension", "k8s_io_apimachinery_pkg_runtime.RawExtension", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -3891,7 +3891,7 @@ func (m *OwnerReference) Unmarshal(data []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.UID = k8s_io_kubernetes_pkg_types.UID(data[iNdEx:postIndex]) + m.UID = k8s_io_apimachinery_pkg_types.UID(data[iNdEx:postIndex]) iNdEx = postIndex case 5: if wireType != 2 { @@ -5184,105 +5184,107 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 1598 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xcc, 0x58, 0x4f, 0x6f, 0x1b, 0x45, - 0x14, 0xf7, 0xda, 0xb1, 0x6b, 0x3f, 0xc7, 0x4d, 0xba, 0xa4, 0xc2, 0x8d, 0x84, 0x1d, 0xb6, 0x08, - 0xa5, 0xa2, 0x5d, 0x2b, 0x11, 0x42, 0x55, 0xa1, 0x88, 0x6c, 0x92, 0x56, 0xa1, 0x4d, 0x13, 0x4d, - 0xfa, 0x07, 0x95, 0x1e, 0xd8, 0x78, 0x27, 0xce, 0x36, 0xf6, 0xee, 0x32, 0x33, 0x76, 0x63, 0x71, - 0xa0, 0x82, 0x0b, 0x07, 0x84, 0x7a, 0x44, 0x1c, 0x50, 0x23, 0xf1, 0x01, 0xf8, 0x0a, 0xdc, 0x7a, - 0xa3, 0xdc, 0x38, 0x20, 0x8b, 0x06, 0x71, 0xe2, 0x1b, 0xe4, 0x84, 0x66, 0x76, 0x66, 0xbd, 0x76, - 0xe2, 0x66, 0xa3, 0x72, 0xe0, 0x14, 0xcf, 0xfb, 0xf3, 0x7b, 0x6f, 0xde, 0xfc, 0xe6, 0xcd, 0xdb, - 0xc0, 0xfc, 0xce, 0x65, 0x6a, 0xba, 0x7e, 0x6d, 0xa7, 0xbd, 0x89, 0x89, 0x87, 0x19, 0xa6, 0xb5, - 0x60, 0xa7, 0x51, 0xb3, 0x03, 0x97, 0xd6, 0x5a, 0x98, 0xd9, 0xb5, 0xce, 0x5c, 0xad, 0x81, 0x3d, - 0x4c, 0x6c, 0x86, 0x1d, 0x33, 0x20, 0x3e, 0xf3, 0x75, 0x23, 0xf4, 0x31, 0xfb, 0x3e, 0x66, 0xb0, - 0xd3, 0x30, 0xb9, 0x8f, 0xc9, 0x7d, 0xcc, 0xce, 0xdc, 0xf4, 0xa5, 0x86, 0xcb, 0xb6, 0xdb, 0x9b, - 0x66, 0xdd, 0x6f, 0xd5, 0x1a, 0x7e, 0xc3, 0xaf, 0x09, 0xd7, 0xcd, 0xf6, 0x96, 0x58, 0x89, 0x85, - 0xf8, 0x15, 0x42, 0x4e, 0x5f, 0x3a, 0x3a, 0x0d, 0xd2, 0xf6, 0x98, 0xdb, 0xc2, 0xc3, 0x19, 0x4c, - 0xbf, 0xfb, 0x72, 0x73, 0x5a, 0xdf, 0xc6, 0x2d, 0xfb, 0x90, 0xd7, 0xdc, 0xd1, 0x5e, 0x6d, 0xe6, - 0x36, 0x6b, 0xae, 0xc7, 0x28, 0x23, 0xc3, 0x2e, 0xc6, 0x2f, 0x19, 0xc8, 0x2f, 0xac, 0xaf, 0x5c, - 0x27, 0x7e, 0x3b, 0xd0, 0x67, 0x60, 0xcc, 0xb3, 0x5b, 0xb8, 0xac, 0xcd, 0x68, 0xb3, 0x05, 0x6b, - 0xfc, 0x59, 0xaf, 0x9a, 0xda, 0xef, 0x55, 0xc7, 0x6e, 0xd9, 0x2d, 0x8c, 0x84, 0x46, 0x7f, 0x08, - 0xf9, 0x0e, 0x26, 0xd4, 0xf5, 0x3d, 0x5a, 0x4e, 0xcf, 0x64, 0x66, 0x8b, 0xf3, 0x1f, 0x98, 0xc7, - 0x17, 0xcb, 0x14, 0xf0, 0x77, 0x43, 0xc7, 0x6b, 0x3e, 0x59, 0x72, 0x69, 0xdd, 0xef, 0x60, 0xd2, - 0xb5, 0x26, 0x65, 0x8c, 0xbc, 0x54, 0x52, 0x14, 0xe1, 0xeb, 0x5f, 0x69, 0x30, 0x19, 0x10, 0xbc, - 0x85, 0x09, 0xc1, 0x8e, 0xd4, 0x97, 0x33, 0x33, 0xda, 0x2b, 0x07, 0x2d, 0xcb, 0xa0, 0x93, 0xeb, - 0x43, 0xe8, 0xe8, 0x50, 0x3c, 0x7d, 0x4f, 0x83, 0x69, 0x8a, 0x49, 0x07, 0x93, 0x05, 0xc7, 0x21, - 0x98, 0x52, 0xab, 0xbb, 0xd8, 0x74, 0xb1, 0xc7, 0x16, 0x57, 0x96, 0x10, 0x2d, 0x8f, 0x89, 0x1a, - 0x5c, 0x4d, 0x92, 0xce, 0xc6, 0x28, 0x14, 0xcb, 0x90, 0xf9, 0x4c, 0x8f, 0x34, 0xa1, 0xe8, 0x25, - 0x49, 0x18, 0x0e, 0x8c, 0xab, 0x23, 0xbc, 0xe9, 0x52, 0xa6, 0xdf, 0x86, 0x5c, 0x83, 0x2f, 0x68, - 0x59, 0x13, 0xe9, 0x5d, 0x4c, 0x92, 0x9e, 0x42, 0xb0, 0x4e, 0xcb, 0x6c, 0x72, 0x62, 0x49, 0x91, - 0xc4, 0x32, 0x7e, 0xd3, 0xa0, 0xb8, 0xb0, 0xbe, 0x82, 0x30, 0xf5, 0xdb, 0xa4, 0x8e, 0x13, 0x90, - 0x65, 0x1e, 0x80, 0xff, 0xa5, 0x81, 0x5d, 0xc7, 0x4e, 0x39, 0x3d, 0xa3, 0xcd, 0xe6, 0x2d, 0x5d, - 0xda, 0xc1, 0xad, 0x48, 0x83, 0x62, 0x56, 0x1c, 0x75, 0xc7, 0xf5, 0x1c, 0x71, 0xce, 0x31, 0xd4, - 0x1b, 0xae, 0xe7, 0x20, 0xa1, 0xd1, 0x3f, 0x86, 0x6c, 0x07, 0x93, 0x4d, 0x5e, 0x7b, 0x4e, 0x85, - 0x0b, 0x49, 0x36, 0x77, 0x97, 0x3b, 0x58, 0x85, 0xfd, 0x5e, 0x35, 0x2b, 0x7e, 0xa2, 0x10, 0xc2, - 0xf8, 0x59, 0x83, 0x89, 0xd8, 0x9e, 0x44, 0xf5, 0x2e, 0xc3, 0x78, 0x23, 0xc6, 0x1c, 0xb9, 0xbf, - 0x29, 0x99, 0xc9, 0x78, 0x9c, 0x55, 0x68, 0xc0, 0x52, 0xaf, 0x43, 0x81, 0x48, 0x24, 0x75, 0x3b, - 0x6a, 0x09, 0x4b, 0xaf, 0x32, 0xe8, 0xc7, 0x89, 0x09, 0x29, 0xea, 0xe3, 0x1a, 0x7f, 0x87, 0xc7, - 0xa0, 0xee, 0x8b, 0x3e, 0x1b, 0xbb, 0x91, 0xfc, 0xb8, 0x0b, 0xd6, 0xf8, 0x88, 0xfb, 0x74, 0x0c, - 0x95, 0xd3, 0xff, 0x03, 0x2a, 0x5f, 0xc9, 0x7f, 0xff, 0xb4, 0x9a, 0x7a, 0xfc, 0xc7, 0x4c, 0xca, - 0x58, 0x81, 0xfc, 0x52, 0x9b, 0xd8, 0x8c, 0x17, 0xf6, 0x2a, 0xe4, 0x1d, 0xf9, 0x5b, 0x1c, 0x47, - 0xc6, 0x7a, 0x53, 0xf5, 0x0d, 0x65, 0x73, 0xd0, 0xab, 0x96, 0x78, 0x6b, 0x34, 0x95, 0x00, 0x45, - 0x2e, 0xc6, 0x03, 0x28, 0x2d, 0xef, 0x06, 0x3e, 0x61, 0x6b, 0x01, 0x13, 0x95, 0x78, 0x1b, 0x72, - 0x58, 0x08, 0x04, 0x5a, 0xbe, 0x4f, 0xf9, 0xd0, 0x0c, 0x49, 0xad, 0x7e, 0x1e, 0xb2, 0x78, 0xd7, - 0xae, 0x33, 0xc9, 0xdd, 0x92, 0x34, 0xcb, 0x2e, 0x73, 0x21, 0x0a, 0x75, 0xc6, 0x1a, 0xc0, 0x75, - 0x1c, 0x41, 0x2f, 0xc0, 0x84, 0x3a, 0xab, 0x41, 0x02, 0xbd, 0x2e, 0x9d, 0x27, 0xd0, 0xa0, 0x1a, - 0x0d, 0xdb, 0x1b, 0x0f, 0xa0, 0x20, 0x48, 0xc6, 0x39, 0xcf, 0x53, 0x10, 0x1c, 0x93, 0x28, 0x51, - 0x0a, 0xc2, 0x02, 0x85, 0xba, 0xe8, 0xd2, 0xa4, 0x47, 0x5d, 0x9a, 0x58, 0x5d, 0x9b, 0x50, 0x0a, - 0x7d, 0xd5, 0x3d, 0x4e, 0x14, 0xe1, 0x22, 0xe4, 0x55, 0x9a, 0x32, 0x4a, 0xd4, 0xb9, 0x15, 0x10, - 0x8a, 0x2c, 0x62, 0xd1, 0xb6, 0x61, 0xe0, 0xc2, 0x24, 0x0b, 0x76, 0x01, 0x4e, 0x49, 0xd2, 0xca, - 0x58, 0x13, 0xd2, 0xec, 0x94, 0xaa, 0x99, 0xd2, 0xc7, 0x22, 0x7d, 0x09, 0xe5, 0x51, 0x0d, 0xff, - 0x15, 0xae, 0x74, 0xf2, 0x54, 0x8c, 0xef, 0x34, 0x98, 0x8c, 0x23, 0x25, 0x3f, 0xbe, 0xe4, 0x41, - 0x8e, 0x6f, 0x8f, 0xb1, 0x8a, 0xfc, 0xa8, 0xc1, 0xd4, 0xc0, 0xd6, 0x4e, 0x74, 0xe2, 0x27, 0x48, - 0x2a, 0x4e, 0x8e, 0xcc, 0x09, 0xc8, 0xf1, 0x6b, 0x1a, 0x4a, 0x37, 0xed, 0x4d, 0xdc, 0xdc, 0xc0, - 0x4d, 0x5c, 0x67, 0x3e, 0xd1, 0xbb, 0x50, 0x6c, 0xd9, 0xac, 0xbe, 0x2d, 0xa4, 0xea, 0xf9, 0xb2, - 0x92, 0xb4, 0xa4, 0x01, 0x1c, 0x73, 0xb5, 0x0f, 0xb2, 0xec, 0x31, 0xd2, 0xb5, 0x5e, 0x93, 0x09, - 0x15, 0x63, 0x1a, 0x14, 0x8f, 0x25, 0xa6, 0x0d, 0xb1, 0x5e, 0xde, 0x0d, 0x78, 0x5f, 0x3a, 0xe9, - 0x88, 0x33, 0x90, 0x00, 0xc2, 0x9f, 0xb7, 0x5d, 0x82, 0x5b, 0xd8, 0x63, 0xfd, 0x69, 0x63, 0x75, - 0x08, 0x1d, 0x1d, 0x8a, 0x37, 0xfd, 0x21, 0x4c, 0x0e, 0xa7, 0xae, 0x4f, 0x42, 0x66, 0x07, 0x77, - 0xc3, 0xb3, 0x42, 0xfc, 0xa7, 0x3e, 0x05, 0xd9, 0x8e, 0xdd, 0x6c, 0xcb, 0x9b, 0x88, 0xc2, 0xc5, - 0x95, 0xf4, 0x65, 0xcd, 0xf8, 0x49, 0x83, 0xf2, 0xa8, 0x44, 0xf4, 0x37, 0x62, 0x40, 0x56, 0x51, - 0x66, 0x95, 0xb9, 0x81, 0xbb, 0x21, 0xea, 0x32, 0xe4, 0xfd, 0x80, 0xcf, 0x86, 0x3e, 0x91, 0x27, - 0x7e, 0x41, 0x9d, 0xe2, 0x9a, 0x94, 0x1f, 0xf4, 0xaa, 0x67, 0x07, 0xe0, 0x95, 0x02, 0x45, 0xae, - 0xba, 0x01, 0x39, 0x91, 0x0f, 0x2d, 0x67, 0xc4, 0x6b, 0x04, 0xbc, 0xaf, 0xde, 0x15, 0x12, 0x24, - 0x35, 0xc6, 0x17, 0x90, 0xe7, 0x4f, 0xed, 0x2a, 0x66, 0x36, 0x27, 0x0f, 0xc5, 0xcd, 0xad, 0x9b, - 0xae, 0xb7, 0x23, 0x53, 0x8b, 0xc8, 0xb3, 0x21, 0xe5, 0x28, 0xb2, 0x38, 0xaa, 0xbd, 0xa6, 0x4f, - 0xd8, 0x5e, 0x0f, 0x34, 0x38, 0xbd, 0xf6, 0xc8, 0xc3, 0x04, 0xf1, 0x51, 0x0f, 0x7b, 0xe1, 0x28, - 0x23, 0x6e, 0x95, 0x36, 0x72, 0xe8, 0x50, 0xc3, 0x4e, 0x66, 0xe4, 0xb0, 0xf3, 0x11, 0x64, 0xda, - 0xae, 0x23, 0x86, 0x92, 0x82, 0x65, 0xaa, 0xea, 0xde, 0x59, 0x59, 0x3a, 0xe8, 0x55, 0xab, 0x47, - 0xcf, 0xe5, 0xac, 0x1b, 0x60, 0x6a, 0xde, 0x59, 0x59, 0x42, 0xdc, 0x95, 0x8f, 0x4b, 0x76, 0xe0, - 0xaa, 0x6d, 0x65, 0x05, 0x50, 0x34, 0x2e, 0xf5, 0x9f, 0x7c, 0x14, 0xb3, 0xd2, 0x4d, 0x80, 0xba, - 0xef, 0x31, 0xe2, 0x37, 0x9b, 0x98, 0x94, 0x73, 0xe1, 0x6b, 0xc6, 0xed, 0x17, 0x23, 0x29, 0x8a, - 0x59, 0x18, 0x17, 0xa1, 0x80, 0x7c, 0x9f, 0xad, 0xdb, 0x6c, 0x9b, 0xea, 0x55, 0xc8, 0x06, 0xfc, - 0x87, 0x9c, 0x1b, 0xc4, 0x78, 0x24, 0x34, 0x28, 0x94, 0x1b, 0xdf, 0x6a, 0x70, 0x6e, 0xe4, 0x43, - 0xce, 0xf3, 0xad, 0x47, 0x2b, 0x59, 0xbb, 0x28, 0xdf, 0xbe, 0x1d, 0x8a, 0x59, 0xe9, 0xef, 0x43, - 0x69, 0xe0, 0xf5, 0x97, 0xa7, 0x77, 0x56, 0xba, 0x95, 0x06, 0xa2, 0xa1, 0x41, 0x5b, 0xe3, 0x9f, - 0x34, 0xe4, 0x36, 0x98, 0xcd, 0xda, 0x54, 0xbf, 0x0f, 0x79, 0x7e, 0xf1, 0x1c, 0x9b, 0xd9, 0x22, - 0x72, 0xc2, 0x21, 0x57, 0xb1, 0xae, 0xcf, 0x31, 0x25, 0x41, 0x11, 0x1e, 0x9f, 0x0e, 0xa8, 0x88, - 0x22, 0x93, 0x8b, 0xa6, 0x83, 0x30, 0x36, 0x92, 0x5a, 0xde, 0x21, 0x5b, 0x98, 0x52, 0xbb, 0xa1, - 0x68, 0x11, 0x75, 0xc8, 0xd5, 0x50, 0x8c, 0x94, 0x5e, 0x7f, 0x0f, 0x72, 0x04, 0xdb, 0xd4, 0xf7, - 0x24, 0x3f, 0x2a, 0x0a, 0x12, 0x09, 0xe9, 0x41, 0xaf, 0x3a, 0x2e, 0xc1, 0xc5, 0x1a, 0x49, 0x6b, - 0xfd, 0x13, 0x38, 0xe5, 0x60, 0x66, 0xbb, 0x4d, 0x2a, 0xf8, 0x50, 0x9c, 0x9f, 0x4b, 0x34, 0x9e, - 0x09, 0xa8, 0xa5, 0xd0, 0xd1, 0x2a, 0xf2, 0x8c, 0xe4, 0x02, 0x29, 0x38, 0x4e, 0xe8, 0xba, 0xef, - 0x60, 0x41, 0x99, 0x6c, 0x9f, 0xd0, 0x8b, 0xbe, 0x83, 0x91, 0xd0, 0x18, 0x4f, 0x34, 0x28, 0x86, - 0x48, 0x8b, 0x76, 0x9b, 0x62, 0x7d, 0x2e, 0xda, 0x43, 0x78, 0xd4, 0xe7, 0x94, 0xcf, 0xed, 0x6e, - 0x80, 0x0f, 0x7a, 0xd5, 0x82, 0x30, 0xe3, 0x8b, 0x28, 0xfd, 0x58, 0x85, 0xd2, 0xc7, 0x54, 0xe8, - 0x3c, 0x64, 0xb7, 0x5c, 0xdc, 0x54, 0x2f, 0x5b, 0xf4, 0x26, 0x5d, 0xe3, 0x42, 0x14, 0xea, 0x8c, - 0x1f, 0xd2, 0x50, 0x1a, 0xd8, 0x5c, 0x82, 0x8f, 0x90, 0xe8, 0xb1, 0x4b, 0x27, 0x18, 0xa0, 0x46, - 0x7f, 0x75, 0xdc, 0x83, 0x5c, 0x9d, 0xef, 0x4f, 0x7d, 0xf2, 0xd5, 0x92, 0x1f, 0x84, 0xa8, 0x4b, - 0x9f, 0x45, 0x62, 0x49, 0x91, 0x84, 0xd3, 0xaf, 0xc3, 0x19, 0x82, 0x19, 0xe9, 0x2e, 0x6c, 0x31, - 0x4c, 0x36, 0x70, 0xdd, 0xf7, 0x9c, 0xf0, 0xb0, 0xb3, 0x51, 0x85, 0xcf, 0xa0, 0x61, 0x03, 0x74, - 0xd8, 0xc7, 0x68, 0xc2, 0xd8, 0x6d, 0xb7, 0x85, 0x79, 0xd1, 0xa9, 0x84, 0x09, 0x67, 0xe5, 0xa8, - 0xe8, 0xca, 0x59, 0xe9, 0x79, 0x6d, 0x3c, 0xdb, 0xf3, 0x43, 0xa2, 0x67, 0xfb, 0xb5, 0xb9, 0xc5, - 0x85, 0x28, 0xd4, 0x5d, 0x99, 0xe2, 0xef, 0xf5, 0x37, 0x7b, 0xd5, 0xd4, 0x93, 0xbd, 0x6a, 0xea, - 0xe9, 0x9e, 0x7c, 0xbb, 0x3f, 0x85, 0x02, 0x8f, 0x46, 0x99, 0xdd, 0x0a, 0xfe, 0xeb, 0x90, 0xc6, - 0x67, 0x90, 0xe7, 0x3c, 0x12, 0xef, 0xc3, 0xf1, 0xbd, 0x79, 0xb0, 0x6f, 0xa6, 0x93, 0xf4, 0x4d, - 0x63, 0x1e, 0xc2, 0x0f, 0x41, 0xde, 0x03, 0x5d, 0x86, 0x5b, 0x03, 0x3d, 0x70, 0x85, 0x0b, 0x50, - 0x28, 0x8f, 0x8d, 0x2b, 0x5f, 0x6b, 0x00, 0xf7, 0xc4, 0x8b, 0xdd, 0xe1, 0xcf, 0xe9, 0x0c, 0x8c, - 0xf1, 0x06, 0x3e, 0x9c, 0x98, 0xb8, 0x00, 0x42, 0xa3, 0x6f, 0x40, 0xce, 0xdf, 0x7c, 0x88, 0xe5, - 0xf7, 0x43, 0x71, 0xfe, 0x9d, 0x11, 0x9c, 0x91, 0xff, 0xd5, 0x31, 0x91, 0xfd, 0x68, 0x79, 0x97, - 0x61, 0x8f, 0x67, 0xd8, 0xe7, 0xcb, 0x9a, 0x80, 0x40, 0x12, 0xca, 0x7a, 0xeb, 0xd9, 0x8b, 0x4a, - 0xea, 0xf9, 0x8b, 0x4a, 0xea, 0xf7, 0x17, 0x95, 0xd4, 0xe3, 0xfd, 0x8a, 0xf6, 0x6c, 0xbf, 0xa2, - 0x3d, 0xdf, 0xaf, 0x68, 0x7f, 0xee, 0x57, 0xb4, 0x27, 0x7f, 0x55, 0x52, 0xf7, 0xd3, 0x9d, 0xb9, - 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x94, 0x53, 0x56, 0x06, 0xf6, 0x12, 0x00, 0x00, + // 1628 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xcc, 0x58, 0xcf, 0x6f, 0x1b, 0xc5, + 0x17, 0xf7, 0xda, 0xb1, 0x6b, 0x3f, 0xc7, 0x4d, 0xba, 0xdf, 0x54, 0x5f, 0x37, 0xd2, 0xd7, 0x4e, + 0xb7, 0xd5, 0x57, 0xa9, 0x68, 0xd7, 0x24, 0x48, 0x55, 0x55, 0x44, 0x51, 0x36, 0x49, 0xab, 0xa8, + 0x49, 0x13, 0x4d, 0xda, 0x20, 0x4a, 0x0f, 0x6c, 0xbc, 0x13, 0x67, 0x89, 0xbd, 0xbb, 0xcc, 0x8c, + 0xdd, 0x58, 0x3d, 0xd0, 0x03, 0x48, 0x1c, 0x10, 0xea, 0x91, 0x03, 0x42, 0xad, 0xe0, 0x2f, 0xe0, + 0x9f, 0xa0, 0xc7, 0x4a, 0xbd, 0x70, 0x40, 0x16, 0x0d, 0x07, 0x8e, 0xdc, 0x23, 0x0e, 0x68, 0x66, + 0x67, 0xd6, 0x6b, 0xa7, 0x26, 0x1b, 0xd1, 0x03, 0xa7, 0x78, 0xde, 0x8f, 0xcf, 0x7b, 0xf3, 0xe6, + 0x33, 0x6f, 0xde, 0x06, 0xd6, 0xf6, 0xae, 0x51, 0xd3, 0xf5, 0x6b, 0x7b, 0xed, 0x6d, 0x4c, 0x3c, + 0xcc, 0x30, 0xad, 0x75, 0xb0, 0xe7, 0xf8, 0xa4, 0x26, 0x15, 0x76, 0xe0, 0xb6, 0xec, 0xfa, 0xae, + 0xeb, 0x61, 0xd2, 0xad, 0x05, 0x7b, 0x0d, 0x2e, 0xa0, 0xb5, 0x16, 0x66, 0x76, 0xad, 0x33, 0x57, + 0x6b, 0x60, 0x0f, 0x13, 0x9b, 0x61, 0xc7, 0x0c, 0x88, 0xcf, 0x7c, 0xfd, 0x62, 0xe8, 0x65, 0xc6, + 0xbd, 0xcc, 0x60, 0xaf, 0xc1, 0x05, 0xd4, 0xe4, 0x5e, 0x66, 0x67, 0x6e, 0xfa, 0x4a, 0xc3, 0x65, + 0xbb, 0xed, 0x6d, 0xb3, 0xee, 0xb7, 0x6a, 0x0d, 0xbf, 0xe1, 0xd7, 0x84, 0xf3, 0x76, 0x7b, 0x47, + 0xac, 0xc4, 0x42, 0xfc, 0x0a, 0x41, 0xa7, 0x47, 0xa6, 0x42, 0xda, 0x1e, 0x73, 0x5b, 0x78, 0x38, + 0x8b, 0xe9, 0xab, 0xc7, 0x39, 0xd0, 0xfa, 0x2e, 0x6e, 0xd9, 0x47, 0xfc, 0xe6, 0x8f, 0x16, 0x43, + 0xee, 0xb8, 0x46, 0x30, 0xf5, 0xdb, 0xa4, 0x7e, 0x34, 0xd6, 0xdc, 0xeb, 0x7d, 0xda, 0xcc, 0x6d, + 0xd6, 0x5c, 0x8f, 0x51, 0x46, 0x86, 0x5d, 0x8c, 0x9f, 0x32, 0x90, 0x5f, 0xd8, 0x58, 0xb9, 0x45, + 0xfc, 0x76, 0xa0, 0xcf, 0xc0, 0x98, 0x67, 0xb7, 0x70, 0x59, 0x9b, 0xd1, 0x66, 0x0b, 0xd6, 0xf8, + 0xf3, 0x5e, 0x35, 0x75, 0xd0, 0xab, 0x8e, 0xdd, 0xb1, 0x5b, 0x18, 0x09, 0x8d, 0xde, 0x84, 0x7c, + 0x07, 0x13, 0xea, 0xfa, 0x1e, 0x2d, 0xa7, 0x67, 0x32, 0xb3, 0xc5, 0xf9, 0x1b, 0x66, 0x92, 0x32, + 0x9b, 0x22, 0xc0, 0x56, 0xe8, 0x7a, 0xd3, 0x27, 0x4b, 0x2e, 0xad, 0xfb, 0x1d, 0x4c, 0xba, 0xd6, + 0xa4, 0x8c, 0x92, 0x97, 0x4a, 0x8a, 0xa2, 0x08, 0xfa, 0xe7, 0x1a, 0x4c, 0x06, 0x04, 0xef, 0x60, + 0x42, 0xb0, 0x23, 0xf5, 0xe5, 0xcc, 0x8c, 0xf6, 0x06, 0xc2, 0x96, 0x65, 0xd8, 0xc9, 0x8d, 0x21, + 0x7c, 0x74, 0x24, 0xa2, 0xfe, 0xbd, 0x06, 0xd3, 0x14, 0x93, 0x0e, 0x26, 0x0b, 0x8e, 0x43, 0x30, + 0xa5, 0x56, 0x77, 0xb1, 0xe9, 0x62, 0x8f, 0x2d, 0xae, 0x2c, 0x21, 0x5a, 0x1e, 0x13, 0x75, 0x78, + 0x3f, 0x59, 0x42, 0x9b, 0xa3, 0x70, 0x2c, 0x43, 0x66, 0x34, 0x3d, 0xd2, 0x84, 0xa2, 0xbf, 0x49, + 0xc3, 0xd8, 0x81, 0x71, 0x75, 0x90, 0xab, 0x2e, 0x65, 0xfa, 0x16, 0xe4, 0x1a, 0x7c, 0x41, 0xcb, + 0x9a, 0x48, 0xd0, 0x4c, 0x96, 0xa0, 0xc2, 0xb0, 0x4e, 0xcb, 0x7c, 0x72, 0x62, 0x49, 0x91, 0x44, + 0x33, 0x5e, 0x6a, 0x50, 0x5c, 0xd8, 0x58, 0x41, 0x92, 0x84, 0x09, 0x48, 0x33, 0x0f, 0xc0, 0xff, + 0xd2, 0xc0, 0xae, 0x63, 0xa7, 0x9c, 0x9e, 0xd1, 0x66, 0xf3, 0x96, 0x2e, 0xed, 0xe0, 0x4e, 0xa4, + 0x41, 0x31, 0x2b, 0x8e, 0xba, 0xe7, 0x7a, 0x8e, 0x38, 0xed, 0x18, 0xea, 0x6d, 0xd7, 0x73, 0x90, + 0xd0, 0xe8, 0xab, 0x90, 0xed, 0x60, 0xb2, 0xcd, 0xeb, 0xcf, 0x09, 0xf1, 0x56, 0xb2, 0xed, 0x6d, + 0x71, 0x17, 0xab, 0x70, 0xd0, 0xab, 0x66, 0xc5, 0x4f, 0x14, 0x82, 0x18, 0x3f, 0x6a, 0x30, 0x11, + 0xdb, 0x95, 0xa8, 0xe0, 0x35, 0x18, 0x6f, 0xc4, 0xf8, 0x23, 0x77, 0x38, 0x25, 0x73, 0x19, 0x8f, + 0x73, 0x0b, 0x0d, 0x58, 0xea, 0x18, 0x0a, 0xea, 0x92, 0xaa, 0x7b, 0x32, 0x97, 0xb8, 0xfc, 0x2a, + 0x87, 0x7e, 0xa4, 0x98, 0x90, 0xa2, 0x3e, 0xb2, 0xf1, 0x7b, 0x78, 0x14, 0xea, 0xe6, 0xe8, 0xb3, + 0xb1, 0xdb, 0xc9, 0x0f, 0xbd, 0x60, 0x8d, 0x8f, 0xb8, 0x59, 0xc7, 0x50, 0x3a, 0xfd, 0xaf, 0xa0, + 0xf4, 0xf5, 0xfc, 0x37, 0x4f, 0xab, 0xa9, 0xc7, 0xbf, 0xcc, 0xa4, 0x8c, 0x15, 0xc8, 0x2f, 0xb5, + 0x89, 0xcd, 0x78, 0x71, 0xdf, 0x83, 0xbc, 0x23, 0x7f, 0x8b, 0x23, 0xc9, 0x58, 0xe7, 0x55, 0x0f, + 0x51, 0x36, 0x87, 0xbd, 0x6a, 0x89, 0x37, 0x57, 0x53, 0x09, 0x50, 0xe4, 0x62, 0x3c, 0x80, 0xd2, + 0xf2, 0x7e, 0xe0, 0x13, 0xb6, 0x1e, 0x30, 0x51, 0x8b, 0xff, 0x43, 0x0e, 0x0b, 0x81, 0x40, 0xcb, + 0xf7, 0x89, 0x1f, 0x9a, 0x21, 0xa9, 0xd5, 0x2f, 0x40, 0x16, 0xef, 0xdb, 0x75, 0x26, 0x19, 0x5c, + 0x92, 0x66, 0xd9, 0x65, 0x2e, 0x44, 0xa1, 0xce, 0x58, 0x07, 0xb8, 0x85, 0x23, 0xe8, 0x05, 0x98, + 0x50, 0xa7, 0x35, 0x48, 0xa2, 0xff, 0x4a, 0xe7, 0x09, 0x34, 0xa8, 0x46, 0xc3, 0xf6, 0xc6, 0x03, + 0x28, 0x08, 0xa2, 0x71, 0xe6, 0xf3, 0x14, 0x04, 0xcf, 0x24, 0x4a, 0x94, 0x82, 0xb0, 0x40, 0xa1, + 0x2e, 0xba, 0x3a, 0xe9, 0x51, 0x57, 0x27, 0x56, 0xd7, 0x26, 0x94, 0x42, 0x5f, 0x75, 0x9b, 0x13, + 0x45, 0xb8, 0x0c, 0x79, 0x95, 0xa6, 0x8c, 0x12, 0x75, 0x71, 0x05, 0x84, 0x22, 0x8b, 0x58, 0xb4, + 0x5d, 0x18, 0xb8, 0x34, 0xc9, 0x82, 0x5d, 0x82, 0x53, 0x92, 0xb6, 0x32, 0xd6, 0x84, 0x34, 0x3b, + 0xa5, 0x6a, 0xa6, 0xf4, 0xb1, 0x48, 0x9f, 0x41, 0x79, 0x54, 0xeb, 0xff, 0x07, 0xd7, 0x3a, 0x79, + 0x2a, 0xc6, 0xd7, 0x1a, 0x4c, 0xc6, 0x91, 0x92, 0x1f, 0x5f, 0xf2, 0x20, 0xc7, 0x37, 0xc9, 0x58, + 0x45, 0xbe, 0xd3, 0x60, 0x6a, 0x60, 0x6b, 0x27, 0x3a, 0xf1, 0x13, 0x24, 0x15, 0x27, 0x47, 0xe6, + 0x04, 0xe4, 0x78, 0x99, 0x86, 0xd2, 0xaa, 0xbd, 0x8d, 0x9b, 0x9b, 0xb8, 0x89, 0xeb, 0xcc, 0x27, + 0xfa, 0x23, 0x28, 0xb6, 0x6c, 0x56, 0xdf, 0x15, 0x52, 0xf5, 0x8c, 0x2d, 0x25, 0x6b, 0x4a, 0x03, + 0x48, 0xe6, 0x5a, 0x1f, 0x66, 0xd9, 0x63, 0xa4, 0x6b, 0xfd, 0x47, 0xa6, 0x54, 0x8c, 0x69, 0x50, + 0x3c, 0x9a, 0x98, 0x3d, 0xc4, 0x7a, 0x79, 0x3f, 0xe0, 0x9d, 0xe9, 0xe4, 0x23, 0xcf, 0x40, 0x0a, + 0x08, 0x7f, 0xda, 0x76, 0x09, 0x6e, 0x61, 0x8f, 0xf5, 0x67, 0x8f, 0xb5, 0x21, 0x7c, 0x74, 0x24, + 0xe2, 0xf4, 0x0d, 0x98, 0x1c, 0x4e, 0x5e, 0x9f, 0x84, 0xcc, 0x1e, 0xee, 0x86, 0xe7, 0x85, 0xf8, + 0x4f, 0x7d, 0x0a, 0xb2, 0x1d, 0xbb, 0xd9, 0x96, 0xb7, 0x11, 0x85, 0x8b, 0xeb, 0xe9, 0x6b, 0x9a, + 0xf1, 0x83, 0x06, 0xe5, 0x51, 0x89, 0xe8, 0xff, 0x8b, 0x01, 0x59, 0x45, 0x99, 0x55, 0xe6, 0x36, + 0xee, 0x86, 0xa8, 0xcb, 0x90, 0xf7, 0x03, 0x3e, 0x2d, 0xfa, 0x44, 0x9e, 0xfa, 0x25, 0x75, 0x92, + 0xeb, 0x52, 0x7e, 0xd8, 0xab, 0x9e, 0x1d, 0x80, 0x57, 0x0a, 0x14, 0xb9, 0xea, 0x06, 0xe4, 0x44, + 0x3e, 0xb4, 0x9c, 0x11, 0x6f, 0x12, 0xf0, 0xde, 0xba, 0x25, 0x24, 0x48, 0x6a, 0x8c, 0x47, 0x90, + 0xe7, 0x4f, 0xee, 0x1a, 0x66, 0x36, 0x27, 0x10, 0xc5, 0xcd, 0x9d, 0x55, 0xd7, 0xdb, 0x93, 0xa9, + 0x45, 0x04, 0xda, 0x94, 0x72, 0x14, 0x59, 0xbc, 0xae, 0xc5, 0xa6, 0x4f, 0xd8, 0x62, 0xff, 0xd4, + 0xe0, 0xf4, 0xfa, 0x43, 0x0f, 0x13, 0xc4, 0x07, 0x3f, 0xec, 0x85, 0x43, 0x8d, 0xb8, 0x59, 0xda, + 0xc8, 0xf1, 0x43, 0x8d, 0x3d, 0x99, 0x91, 0x63, 0x8f, 0x05, 0x99, 0xb6, 0xeb, 0x88, 0xf1, 0xa4, + 0x60, 0xbd, 0xad, 0xaa, 0x7b, 0x6f, 0x65, 0xe9, 0xb0, 0x57, 0x3d, 0x3f, 0xea, 0xab, 0x80, 0x75, + 0x03, 0x4c, 0xcd, 0x7b, 0x2b, 0x4b, 0x88, 0x3b, 0xf3, 0xd1, 0xc9, 0x0e, 0x5c, 0xb5, 0xb1, 0xac, + 0x80, 0x8a, 0x46, 0xa7, 0xfe, 0xd3, 0x8f, 0x62, 0x56, 0xba, 0x09, 0x50, 0xf7, 0x3d, 0x46, 0xfc, + 0x66, 0x13, 0x93, 0x72, 0x2e, 0x7c, 0xd3, 0xb8, 0xfd, 0x62, 0x24, 0x45, 0x31, 0x0b, 0xe3, 0x32, + 0x14, 0x90, 0xef, 0xb3, 0x0d, 0x9b, 0xed, 0x52, 0xbd, 0x0a, 0xd9, 0x80, 0xff, 0x90, 0xf3, 0x83, + 0x18, 0x94, 0x84, 0x06, 0x85, 0x72, 0xe3, 0x2b, 0x0d, 0xce, 0x8d, 0x7c, 0xce, 0x79, 0xbe, 0xf5, + 0x68, 0x25, 0xab, 0x17, 0xe5, 0xdb, 0xb7, 0x43, 0x31, 0x2b, 0xfd, 0x5d, 0x28, 0x0d, 0xcc, 0x00, + 0xf2, 0xfc, 0xce, 0x4a, 0xb7, 0xd2, 0x40, 0x34, 0x34, 0x68, 0x6b, 0xfc, 0x91, 0x86, 0xdc, 0x26, + 0xb3, 0x59, 0x9b, 0xea, 0x0f, 0x20, 0xcf, 0xaf, 0x9e, 0x63, 0x33, 0x5b, 0x44, 0x4e, 0x3c, 0xf2, + 0x2a, 0xe6, 0xf5, 0x79, 0xa6, 0x24, 0x28, 0x42, 0xe4, 0x53, 0x02, 0x15, 0x71, 0x64, 0x7a, 0xd1, + 0x94, 0x10, 0x46, 0x47, 0x52, 0xcb, 0x3b, 0x65, 0x0b, 0x53, 0x6a, 0x37, 0x14, 0x35, 0xa2, 0x4e, + 0xb9, 0x16, 0x8a, 0x91, 0xd2, 0xeb, 0x57, 0x21, 0x47, 0xb0, 0x4d, 0x7d, 0x4f, 0x72, 0xa4, 0xa2, + 0x20, 0x91, 0x90, 0x1e, 0xf6, 0xaa, 0xe3, 0x12, 0x5c, 0xac, 0x91, 0xb4, 0xd6, 0xef, 0xc3, 0x29, + 0x07, 0x33, 0xdb, 0x6d, 0x52, 0xc1, 0x88, 0xe2, 0xfc, 0x3b, 0x09, 0x07, 0x35, 0x01, 0xb6, 0x14, + 0xba, 0x5a, 0x45, 0x9e, 0x93, 0x5c, 0x20, 0x05, 0xc8, 0x69, 0x5d, 0xf7, 0x1d, 0x2c, 0x68, 0x93, + 0xed, 0xd3, 0x7a, 0xd1, 0x77, 0x30, 0x12, 0x1a, 0xe3, 0x89, 0x06, 0xc5, 0x10, 0x69, 0xd1, 0x6e, + 0x53, 0xac, 0xcf, 0x45, 0xbb, 0x08, 0x8f, 0xfb, 0x9c, 0xf2, 0xb9, 0xdb, 0x0d, 0xf0, 0x61, 0xaf, + 0x5a, 0x10, 0x66, 0x7c, 0x11, 0x6d, 0x20, 0x56, 0xa3, 0xf4, 0x31, 0x35, 0xba, 0x00, 0xd9, 0x1d, + 0x17, 0x37, 0xd5, 0x1b, 0x17, 0xbd, 0x4e, 0x37, 0xb9, 0x10, 0x85, 0x3a, 0xe3, 0xdb, 0x34, 0x94, + 0x06, 0x36, 0x97, 0xe0, 0xa3, 0x24, 0x7a, 0xf6, 0xd2, 0x09, 0x46, 0xa9, 0xd1, 0x5f, 0x21, 0x1f, + 0x42, 0xae, 0xce, 0xf7, 0xa7, 0x3e, 0x03, 0xe7, 0x4e, 0x72, 0x14, 0xa2, 0x32, 0x7d, 0x26, 0x89, + 0x25, 0x45, 0x12, 0x50, 0xbf, 0x05, 0x67, 0x08, 0x66, 0xa4, 0xbb, 0xb0, 0xc3, 0x30, 0xd9, 0xc4, + 0x75, 0xdf, 0x73, 0xc2, 0x03, 0xcf, 0x46, 0x35, 0x3e, 0x83, 0x86, 0x0d, 0xd0, 0x51, 0x1f, 0xa3, + 0x09, 0x63, 0x77, 0xdd, 0x16, 0xe6, 0x65, 0xa7, 0x12, 0x26, 0x9c, 0x9b, 0xa3, 0xb2, 0x2b, 0x67, + 0xa5, 0xe7, 0xd5, 0xf1, 0x6c, 0xcf, 0x0f, 0xc9, 0x9e, 0xed, 0x57, 0xe7, 0x0e, 0x17, 0xa2, 0x50, + 0x77, 0x7d, 0x8a, 0xbf, 0xdd, 0x5f, 0x3e, 0xab, 0xa6, 0x9e, 0x3c, 0xab, 0xa6, 0x9e, 0x3e, 0x93, + 0xef, 0xf8, 0x47, 0x50, 0xe0, 0xd1, 0x28, 0xb3, 0x5b, 0xc1, 0x9b, 0x0e, 0x69, 0x7c, 0x0c, 0x79, + 0xce, 0x24, 0xf1, 0x4e, 0x1c, 0xdf, 0xa3, 0x07, 0xbb, 0x67, 0x3a, 0x49, 0xf7, 0x34, 0xe6, 0x21, + 0xfc, 0x30, 0xe4, 0x9d, 0xd0, 0x65, 0xb8, 0x35, 0xd0, 0x09, 0x57, 0xb8, 0x00, 0x85, 0xf2, 0xd8, + 0xe8, 0xf2, 0x85, 0x06, 0xf0, 0x81, 0x78, 0xb9, 0x3b, 0xfc, 0x59, 0x9d, 0x81, 0x31, 0xde, 0xc6, + 0x87, 0x13, 0x13, 0x57, 0x40, 0x68, 0xf4, 0x7b, 0x90, 0xf3, 0xb7, 0x3f, 0xc1, 0xf2, 0x5b, 0xa2, + 0x38, 0x7f, 0x65, 0x24, 0x6b, 0xe4, 0x7f, 0x89, 0x4c, 0x64, 0x3f, 0x5c, 0xde, 0x67, 0xd8, 0xe3, + 0x39, 0xf6, 0x19, 0xb3, 0x2e, 0x40, 0x90, 0x04, 0xb3, 0x2e, 0x3e, 0x7f, 0x55, 0x49, 0xbd, 0x78, + 0x55, 0x49, 0xfd, 0xfc, 0xaa, 0x92, 0x7a, 0x7c, 0x50, 0xd1, 0x9e, 0x1f, 0x54, 0xb4, 0x17, 0x07, + 0x15, 0xed, 0xd7, 0x83, 0x8a, 0xf6, 0xe4, 0xb7, 0x4a, 0xea, 0x7e, 0xba, 0x33, 0xf7, 0x57, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x1f, 0xa7, 0xfc, 0x28, 0x67, 0x13, 0x00, 0x00, } diff --git a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto index cad0bf7e9e1..5dd45c38486 100644 --- a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto +++ b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto @@ -19,10 +19,11 @@ limitations under the License. syntax = 'proto2'; -package k8s.io.kubernetes.pkg.apis.meta.v1; +package k8s.io.apimachinery.pkg.apis.meta.v1; -import "k8s.io/kubernetes/pkg/runtime/generated.proto"; -import "k8s.io/kubernetes/pkg/runtime/schema/generated.proto"; +import "k8s.io/apimachinery/pkg/runtime/generated.proto"; +import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto"; +import "k8s.io/kubernetes/pkg/api/resource/generated.proto"; import "k8s.io/kubernetes/pkg/util/intstr/generated.proto"; // Package-wide variables from generator "generated". @@ -457,6 +458,6 @@ message WatchEvent { // * If Type is Deleted: the state of the object immediately before deletion. // * If Type is Error: *Status is recommended; other types may make sense // depending on context. - optional k8s.io.kubernetes.pkg.runtime.RawExtension object = 2; + optional k8s.io.apimachinery.pkg.runtime.RawExtension object = 2; } diff --git a/staging/src/k8s.io/apimachinery/pkg/runtime/generated.pb.go b/staging/src/k8s.io/apimachinery/pkg/runtime/generated.pb.go index ea003e163f7..426c3995598 100644 --- a/staging/src/k8s.io/apimachinery/pkg/runtime/generated.pb.go +++ b/staging/src/k8s.io/apimachinery/pkg/runtime/generated.pb.go @@ -15,14 +15,14 @@ limitations under the License. */ // Code generated by protoc-gen-gogo. -// source: k8s.io/apimachinery/pkg/runtime/generated.proto +// source: k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/runtime/generated.proto // DO NOT EDIT! /* Package runtime is a generated protocol buffer package. It is generated from these files: - k8s.io/apimachinery/pkg/runtime/generated.proto + k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/runtime/generated.proto It has these top-level messages: RawExtension @@ -62,9 +62,9 @@ func (*Unknown) ProtoMessage() {} func (*Unknown) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{2} } func init() { - proto.RegisterType((*RawExtension)(nil), "k8s.io.kubernetes.pkg.runtime.RawExtension") - proto.RegisterType((*TypeMeta)(nil), "k8s.io.kubernetes.pkg.runtime.TypeMeta") - proto.RegisterType((*Unknown)(nil), "k8s.io.kubernetes.pkg.runtime.Unknown") + proto.RegisterType((*RawExtension)(nil), "k8s.io.apimachinery.pkg.runtime.RawExtension") + proto.RegisterType((*TypeMeta)(nil), "k8s.io.apimachinery.pkg.runtime.TypeMeta") + proto.RegisterType((*Unknown)(nil), "k8s.io.apimachinery.pkg.runtime.Unknown") } func (m *RawExtension) Marshal() (data []byte, err error) { size := m.Size() @@ -738,30 +738,31 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 388 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x7c, 0x90, 0x3f, 0x8f, 0xda, 0x30, - 0x18, 0xc6, 0x13, 0x40, 0x82, 0x1a, 0x24, 0x2a, 0x77, 0x68, 0x8a, 0x54, 0x83, 0x58, 0x5a, 0x06, - 0x6c, 0x15, 0xa9, 0x52, 0x57, 0x82, 0x18, 0xaa, 0xaa, 0x52, 0x65, 0x95, 0x0e, 0x9d, 0x1a, 0x12, - 0x37, 0xb5, 0x52, 0xec, 0xc8, 0x71, 0x94, 0x76, 0xeb, 0x47, 0xe8, 0xc7, 0x62, 0x64, 0xbc, 0x09, - 0x1d, 0xb9, 0xcf, 0x70, 0xfb, 0x09, 0x63, 0xfe, 0x1c, 0xa0, 0xdb, 0xe2, 0xf7, 0xf9, 0x3d, 0xcf, - 0xfb, 0xbc, 0x01, 0xc3, 0xe4, 0x43, 0x86, 0xb9, 0x24, 0x49, 0x3e, 0x67, 0x4a, 0x30, 0xcd, 0x32, - 0x92, 0x26, 0x31, 0x51, 0xb9, 0xd0, 0x7c, 0xc1, 0x48, 0xcc, 0x04, 0x53, 0x81, 0x66, 0x11, 0x4e, - 0x95, 0xd4, 0x12, 0xbe, 0xde, 0xe1, 0xf8, 0x88, 0xe3, 0x34, 0x89, 0xb1, 0xc5, 0x3b, 0xc3, 0x98, - 0xeb, 0x5f, 0xf9, 0x1c, 0x87, 0x72, 0x41, 0x62, 0x19, 0x4b, 0x62, 0x5c, 0xf3, 0xfc, 0xa7, 0x79, - 0x99, 0x87, 0xf9, 0xda, 0xa5, 0x75, 0x46, 0xd7, 0x97, 0x07, 0x29, 0x27, 0x8a, 0x65, 0x32, 0x57, - 0xe1, 0x45, 0x83, 0xce, 0xbb, 0xeb, 0x9e, 0x5c, 0xf3, 0xdf, 0x84, 0x0b, 0x9d, 0x69, 0x75, 0x6e, - 0xe9, 0x0f, 0x40, 0x8b, 0x06, 0xc5, 0xf4, 0x8f, 0x66, 0x22, 0xe3, 0x52, 0xc0, 0x57, 0xa0, 0xaa, - 0x82, 0xc2, 0x73, 0x7b, 0xee, 0xdb, 0x96, 0x5f, 0x2f, 0xd7, 0xdd, 0x2a, 0x0d, 0x0a, 0xba, 0x9d, - 0xf5, 0x7f, 0x80, 0xc6, 0xd7, 0xbf, 0x29, 0xfb, 0xcc, 0x74, 0x00, 0x47, 0x00, 0x04, 0x29, 0xff, - 0xc6, 0xd4, 0xd6, 0x64, 0xe8, 0x67, 0x3e, 0x5c, 0xae, 0xbb, 0x4e, 0xb9, 0xee, 0x82, 0xf1, 0x97, - 0x8f, 0x56, 0xa1, 0x27, 0x14, 0xec, 0x81, 0x5a, 0xc2, 0x45, 0xe4, 0x55, 0x0c, 0xdd, 0xb2, 0x74, - 0xed, 0x13, 0x17, 0x11, 0x35, 0x4a, 0xff, 0xde, 0x05, 0xf5, 0x99, 0x48, 0x84, 0x2c, 0x04, 0x9c, - 0x81, 0x86, 0xb6, 0xdb, 0x4c, 0x7e, 0x73, 0xf4, 0x06, 0x3f, 0xf9, 0x83, 0xf1, 0xbe, 0x9c, 0xff, - 0xdc, 0x46, 0x1f, 0xea, 0xd2, 0x43, 0xd4, 0xfe, 0xbe, 0xca, 0xe5, 0x7d, 0x70, 0x0c, 0xda, 0xa1, - 0x14, 0x9a, 0x09, 0x3d, 0x15, 0xa1, 0x8c, 0xb8, 0x88, 0xbd, 0xaa, 0xa9, 0xfa, 0xd2, 0xe6, 0xb5, - 0x27, 0x8f, 0x65, 0x7a, 0xce, 0xc3, 0xf7, 0xa0, 0x69, 0x47, 0xdb, 0xd5, 0x5e, 0xcd, 0xd8, 0x5f, - 0x58, 0x7b, 0x73, 0x72, 0x94, 0xe8, 0x29, 0xe7, 0x0f, 0x96, 0x1b, 0xe4, 0xac, 0x36, 0xc8, 0xb9, - 0xd9, 0x20, 0xe7, 0x5f, 0x89, 0xdc, 0x65, 0x89, 0xdc, 0x55, 0x89, 0xdc, 0xdb, 0x12, 0xb9, 0xff, - 0xef, 0x90, 0xf3, 0xbd, 0x6e, 0x8f, 0x7c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x32, 0xc1, 0x73, 0x2d, - 0x94, 0x02, 0x00, 0x00, + // 406 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x84, 0x90, 0x4f, 0x8b, 0xd3, 0x40, + 0x18, 0xc6, 0x93, 0x6d, 0xa1, 0xeb, 0xb4, 0xb0, 0x32, 0x1e, 0x8c, 0x3d, 0x4c, 0x96, 0x9e, 0xec, + 0xc1, 0x19, 0x2c, 0x08, 0x5e, 0x37, 0xcb, 0x82, 0x22, 0x82, 0x0c, 0xfe, 0x01, 0x4f, 0x4e, 0x93, + 0x31, 0x3b, 0xc4, 0xbe, 0x13, 0x26, 0x13, 0xe3, 0xde, 0xfc, 0x08, 0x7e, 0xac, 0x1e, 0xf7, 0xe8, + 0xa9, 0xd8, 0xf8, 0x21, 0xbc, 0x4a, 0xa6, 0xd3, 0x5a, 0x5b, 0xc1, 0x5b, 0xe6, 0x7d, 0x9e, 0xdf, + 0xf3, 0x3e, 0x6f, 0xd0, 0xb3, 0xe2, 0x69, 0x45, 0x95, 0x66, 0x45, 0x3d, 0x97, 0x06, 0xa4, 0x95, + 0x15, 0xfb, 0x2c, 0x21, 0xd3, 0x86, 0x79, 0x41, 0x94, 0x6a, 0x21, 0xd2, 0x6b, 0x05, 0xd2, 0xdc, + 0xb0, 0xb2, 0xc8, 0x99, 0xa9, 0xc1, 0xaa, 0x85, 0x64, 0xb9, 0x04, 0x69, 0x84, 0x95, 0x19, 0x2d, + 0x8d, 0xb6, 0x1a, 0xc7, 0x1b, 0x80, 0xee, 0x03, 0xb4, 0x2c, 0x72, 0xea, 0x81, 0xf1, 0xa3, 0x5c, + 0xd9, 0xeb, 0x7a, 0x4e, 0x53, 0xbd, 0x60, 0xb9, 0xce, 0x35, 0x73, 0xdc, 0xbc, 0xfe, 0xe8, 0x5e, + 0xee, 0xe1, 0xbe, 0x36, 0x79, 0xe3, 0xd9, 0x71, 0xb3, 0x6e, 0xbd, 0x28, 0x15, 0x33, 0xb2, 0xd2, + 0xb5, 0x49, 0x8f, 0x3a, 0x8c, 0x1f, 0xff, 0x9b, 0xa9, 0xad, 0xfa, 0xc4, 0x14, 0xd8, 0xca, 0x9a, + 0x43, 0x64, 0x32, 0x45, 0x23, 0x2e, 0x9a, 0xab, 0x2f, 0x56, 0x42, 0xa5, 0x34, 0xe0, 0x07, 0xa8, + 0x67, 0x44, 0x13, 0x85, 0xe7, 0xe1, 0xc3, 0x51, 0x32, 0x68, 0x57, 0x71, 0x8f, 0x8b, 0x86, 0x77, + 0xb3, 0xc9, 0x07, 0x74, 0xfa, 0xfa, 0xa6, 0x94, 0x2f, 0xa5, 0x15, 0x78, 0x86, 0x90, 0x28, 0xd5, + 0x5b, 0x69, 0x3a, 0xc8, 0xb9, 0xef, 0x24, 0x78, 0xb9, 0x8a, 0x83, 0x76, 0x15, 0xa3, 0x8b, 0x57, + 0xcf, 0xbd, 0xc2, 0xf7, 0x5c, 0xf8, 0x1c, 0xf5, 0x0b, 0x05, 0x59, 0x74, 0xe2, 0xdc, 0x23, 0xef, + 0xee, 0xbf, 0x50, 0x90, 0x71, 0xa7, 0x4c, 0x7e, 0x85, 0x68, 0xf0, 0x06, 0x0a, 0xd0, 0x0d, 0xe0, + 0x77, 0xe8, 0xd4, 0xfa, 0x6d, 0x2e, 0x7f, 0x38, 0x9b, 0xd2, 0xff, 0xfc, 0x62, 0xba, 0xad, 0x97, + 0xdc, 0xf5, 0xe1, 0xbb, 0xc2, 0x7c, 0x17, 0xb6, 0xbd, 0xf0, 0xe4, 0xf8, 0x42, 0x7c, 0x81, 0xce, + 0x52, 0x0d, 0x56, 0x82, 0xbd, 0x82, 0x54, 0x67, 0x0a, 0xf2, 0xa8, 0xe7, 0xca, 0xde, 0xf7, 0x79, + 0x67, 0x97, 0x7f, 0xcb, 0xfc, 0xd0, 0x8f, 0x9f, 0xa0, 0xa1, 0x1f, 0x75, 0xab, 0xa3, 0xbe, 0xc3, + 0xef, 0x79, 0x7c, 0x78, 0xf9, 0x47, 0xe2, 0xfb, 0xbe, 0x64, 0xba, 0x5c, 0x93, 0xe0, 0x76, 0x4d, + 0x82, 0xef, 0x6b, 0x12, 0x7c, 0x6d, 0x49, 0xb8, 0x6c, 0x49, 0x78, 0xdb, 0x92, 0xf0, 0x47, 0x4b, + 0xc2, 0x6f, 0x3f, 0x49, 0xf0, 0x7e, 0xe0, 0x8f, 0xfc, 0x1d, 0x00, 0x00, 0xff, 0xff, 0xa5, 0x26, + 0x55, 0x0f, 0xb3, 0x02, 0x00, 0x00, } diff --git a/staging/src/k8s.io/apimachinery/pkg/runtime/generated.proto b/staging/src/k8s.io/apimachinery/pkg/runtime/generated.proto index a2b0800b023..bf04aca1cea 100644 --- a/staging/src/k8s.io/apimachinery/pkg/runtime/generated.proto +++ b/staging/src/k8s.io/apimachinery/pkg/runtime/generated.proto @@ -19,7 +19,7 @@ limitations under the License. syntax = 'proto2'; -package k8s.io.kubernetes.pkg.runtime; +package k8s.io.apimachinery.pkg.runtime; import "k8s.io/kubernetes/pkg/api/resource/generated.proto"; import "k8s.io/kubernetes/pkg/util/intstr/generated.proto"; diff --git a/staging/src/k8s.io/apimachinery/pkg/runtime/schema/generated.pb.go b/staging/src/k8s.io/apimachinery/pkg/runtime/schema/generated.pb.go index f882660842c..5525e13044c 100644 --- a/staging/src/k8s.io/apimachinery/pkg/runtime/schema/generated.pb.go +++ b/staging/src/k8s.io/apimachinery/pkg/runtime/schema/generated.pb.go @@ -15,14 +15,14 @@ limitations under the License. */ // Code generated by protoc-gen-gogo. -// source: k8s.io/apimachinery/pkg/runtime/schema/generated.proto +// source: k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/runtime/schema/generated.proto // DO NOT EDIT! /* Package schema is a generated protocol buffer package. It is generated from these files: - k8s.io/apimachinery/pkg/runtime/schema/generated.proto + k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/runtime/schema/generated.proto It has these top-level messages: */ @@ -42,17 +42,19 @@ var _ = math.Inf const _ = proto.GoGoProtoPackageIsVersion1 var fileDescriptorGenerated = []byte{ - // 183 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe2, 0x32, 0xc9, 0xb6, 0x28, 0xd6, - 0xcb, 0xcc, 0xd7, 0xcf, 0x2e, 0x4d, 0x4a, 0x2d, 0xca, 0x4b, 0x2d, 0x49, 0x2d, 0xd6, 0x2f, 0xc8, - 0x4e, 0xd7, 0x2f, 0x2a, 0xcd, 0x2b, 0xc9, 0xcc, 0x4d, 0xd5, 0x2f, 0x4e, 0xce, 0x48, 0xcd, 0x4d, - 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0x4a, 0x2c, 0x49, 0x4d, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x52, 0x81, 0xe8, 0xd2, 0x43, 0xe8, 0xd2, 0x2b, 0xc8, 0x4e, 0xd7, 0x83, 0xea, 0xd2, 0x83, - 0xe8, 0x92, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xcf, - 0x4f, 0xcf, 0xd7, 0x07, 0x6b, 0x4e, 0x2a, 0x4d, 0x03, 0xf3, 0xc0, 0x1c, 0x30, 0x0b, 0x62, 0xa8, - 0x94, 0x21, 0x76, 0xa7, 0x94, 0x96, 0x64, 0xe6, 0xe8, 0x67, 0xe6, 0x95, 0x14, 0x97, 0x14, 0xa1, - 0xbb, 0xc3, 0x49, 0xe3, 0xc4, 0x43, 0x39, 0x86, 0x0b, 0x0f, 0xe5, 0x18, 0x6e, 0x3c, 0x94, 0x63, - 0x68, 0x78, 0x24, 0xc7, 0x78, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, - 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x10, 0xc5, 0x06, 0x71, 0x0b, 0x20, 0x00, 0x00, 0xff, 0xff, 0x8d, - 0x74, 0x75, 0xa7, 0xe8, 0x00, 0x00, 0x00, + // 215 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x6c, 0xce, 0xb1, 0x4e, 0xc4, 0x30, + 0x0c, 0xc6, 0xf1, 0x76, 0x61, 0x60, 0x64, 0xec, 0xe0, 0x11, 0xb1, 0x10, 0x0b, 0x26, 0x66, 0x5e, + 0x80, 0x9d, 0x2d, 0xed, 0x99, 0xd4, 0x2a, 0x8d, 0x23, 0xc7, 0x41, 0x62, 0xe3, 0x11, 0x78, 0xac, + 0x1b, 0x6f, 0x64, 0xa4, 0xe5, 0x45, 0x10, 0xcd, 0x0d, 0xe8, 0x60, 0xcb, 0xa7, 0xe8, 0x67, 0xfd, + 0xcf, 0x1f, 0xa6, 0xbb, 0xec, 0x58, 0x70, 0x2a, 0x3d, 0x69, 0x24, 0xa3, 0x8c, 0x2f, 0x14, 0x77, + 0xa2, 0x78, 0xfc, 0xf0, 0x89, 0x67, 0x3f, 0x8c, 0x1c, 0x49, 0x5f, 0x31, 0x4d, 0x01, 0xb5, 0x44, + 0xe3, 0x99, 0x30, 0x0f, 0x23, 0xcd, 0x1e, 0x03, 0x45, 0x52, 0x6f, 0xb4, 0x73, 0x49, 0xc5, 0xe4, + 0xe2, 0xb2, 0x3a, 0xf7, 0xdb, 0xb9, 0x34, 0x05, 0x77, 0x74, 0xae, 0xba, 0xee, 0x3a, 0xb0, 0x8d, + 0xa5, 0x77, 0x83, 0xcc, 0x18, 0x24, 0x08, 0x6e, 0xbc, 0x2f, 0x4f, 0xdb, 0xda, 0xc6, 0xf6, 0xaa, + 0x67, 0xbb, 0xdb, 0xbf, 0x9d, 0x3f, 0x31, 0x3e, 0x31, 0x2a, 0x65, 0x29, 0x3a, 0xd0, 0x69, 0x4a, + 0x77, 0xf3, 0xbf, 0x29, 0xc6, 0xcf, 0xc8, 0xd1, 0xb2, 0xe9, 0x29, 0xb9, 0xbf, 0xda, 0x2f, 0xd0, + 0x1c, 0x16, 0x68, 0x3e, 0x16, 0x68, 0xde, 0x56, 0x68, 0xf7, 0x2b, 0xb4, 0x87, 0x15, 0xda, 0xcf, + 0x15, 0xda, 0xf7, 0x2f, 0x68, 0x1e, 0xcf, 0x6a, 0xff, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x86, + 0xae, 0x35, 0x6c, 0x39, 0x01, 0x00, 0x00, } diff --git a/staging/src/k8s.io/apimachinery/pkg/runtime/schema/generated.proto b/staging/src/k8s.io/apimachinery/pkg/runtime/schema/generated.proto index 1563b39bea5..09e47011daf 100644 --- a/staging/src/k8s.io/apimachinery/pkg/runtime/schema/generated.proto +++ b/staging/src/k8s.io/apimachinery/pkg/runtime/schema/generated.proto @@ -19,8 +19,9 @@ limitations under the License. syntax = 'proto2'; -package k8s.io.kubernetes.pkg.runtime.schema; +package k8s.io.apimachinery.pkg.runtime.schema; +import "k8s.io/kubernetes/pkg/api/resource/generated.proto"; import "k8s.io/kubernetes/pkg/util/intstr/generated.proto"; // Package-wide variables from generator "generated".