From aef3efb03ed0e16f77cdd0034e90a59f4836c462 Mon Sep 17 00:00:00 2001 From: zhuangqh Date: Tue, 29 Jan 2019 17:28:59 +0800 Subject: [PATCH 1/2] test: add testing for updating resource of container Signed-off-by: Alex Jia --- kubelet/apis/cri/services.go | 4 + kubelet/remote/remote_runtime.go | 24 + pkg/validate/container.go | 32 + .../alibaba/pouch/cri/apis/v1alpha2/api.pb.go | 4762 +++++++++-------- .../alibaba/pouch/cri/apis/v1alpha2/api.proto | 19 + vendor/vendor.json | 6 +- 6 files changed, 2750 insertions(+), 2097 deletions(-) diff --git a/kubelet/apis/cri/services.go b/kubelet/apis/cri/services.go index b229dd82db..355e258e92 100644 --- a/kubelet/apis/cri/services.go +++ b/kubelet/apis/cri/services.go @@ -56,6 +56,10 @@ type ContainerManager interface { // for the container. If it returns error, new container log file MUST NOT // be created. ReopenContainerLog(ContainerID string) error + // PauseContainer pauses the container. + PauseContainer(ContainerID string) error + // UnpauseContainer unpauses the container. + UnpauseContainer(ContainerID string) error } // PodSandboxManager contains methods for operating on PodSandboxes. The methods diff --git a/kubelet/remote/remote_runtime.go b/kubelet/remote/remote_runtime.go index 23ddec2e04..3ac11c2707 100644 --- a/kubelet/remote/remote_runtime.go +++ b/kubelet/remote/remote_runtime.go @@ -488,3 +488,27 @@ func (r *RemoteRuntimeService) ReopenContainerLog(containerID string) error { } return nil } + +func (r *RemoteRuntimeService) PauseContainer(containerID string) error { + ctx, cancel := getContextWithTimeout(r.timeout) + defer cancel() + + _, err := r.runtimeClient.PauseContainer(ctx, &runtimeapi.PauseContainerRequest{ContainerId: containerID}) + if err != nil { + glog.Errorf("PauseContainer %q from runtime service failed: %v", containerID, err) + return err + } + return nil +} + +func (r *RemoteRuntimeService) UnpauseContainer(containerID string) error { + ctx, cancel := getContextWithTimeout(r.timeout) + defer cancel() + + _, err := r.runtimeClient.UnpauseContainer(ctx, &runtimeapi.UnpauseContainerRequest{ContainerId: containerID}) + if err != nil { + glog.Errorf("UnpauseContainer %q from runtime service failed: %v", containerID, err) + return err + } + return nil +} diff --git a/pkg/validate/container.go b/pkg/validate/container.go index 9fd03f25a4..867bd7204b 100644 --- a/pkg/validate/container.go +++ b/pkg/validate/container.go @@ -99,6 +99,38 @@ var _ = framework.KubeDescribe("Container", func() { testStartContainer(rc, containerID) }) + It("runtime should support pause and unpause container [Conformance]", func() { + By("create container") + containerID := framework.CreateDefaultContainer(rc, ic, podID, podConfig, "container-for-pause-unpause-test-") + + By("start container") + startContainer(rc, containerID) + + By("get container status") + Eventually(func() runtimeapi.ContainerState { + return getContainerStatus(rc, containerID).State + }, time.Minute, time.Second*4).Should(Equal(runtimeapi.ContainerState_CONTAINER_RUNNING)) + + By("pause container") + rc.PauseContainer(containerID) + + By("get container status") + Eventually(func() runtimeapi.ContainerState { + return getContainerStatus(rc, containerID).State + }, time.Minute, time.Second*4).Should(Equal(runtimeapi.ContainerState_CONTAINER_PAUSE)) + + By("unpause container") + rc.UnpauseContainer(containerID) + + By("get container status") + Eventually(func() runtimeapi.ContainerState { + return getContainerStatus(rc, containerID).State + }, time.Minute, time.Second*4).Should(Equal(runtimeapi.ContainerState_CONTAINER_RUNNING)) + + By("test stop container") + testStopContainer(rc, containerID) + }) + It("runtime should support stopping container [Conformance]", func() { By("create container") containerID := framework.CreateDefaultContainer(rc, ic, podID, podConfig, "container-for-stop-test-") diff --git a/vendor/github.com/alibaba/pouch/cri/apis/v1alpha2/api.pb.go b/vendor/github.com/alibaba/pouch/cri/apis/v1alpha2/api.pb.go index 7921a1f03a..969120a88c 100644 --- a/vendor/github.com/alibaba/pouch/cri/apis/v1alpha2/api.pb.go +++ b/vendor/github.com/alibaba/pouch/cri/apis/v1alpha2/api.pb.go @@ -13,9 +13,8 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ -// Code generated by protoc-gen-gogo. +// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: api.proto -// DO NOT EDIT! /* Package v1alpha2 is a generated protocol buffer package. @@ -130,6 +129,10 @@ limitations under the License. MemoryUsage ReopenContainerLogRequest ReopenContainerLogResponse + PauseContainerRequest + PauseContainerResponse + UnpauseContainerRequest + UnpauseContainerResponse RemoveVolumeRequest RemoveVolumeResponse StartPodSandboxRequest @@ -280,6 +283,7 @@ const ( ContainerState_CONTAINER_RUNNING ContainerState = 1 ContainerState_CONTAINER_EXITED ContainerState = 2 ContainerState_CONTAINER_UNKNOWN ContainerState = 3 + ContainerState_CONTAINER_PAUSE ContainerState = 4 ) var ContainerState_name = map[int32]string{ @@ -287,12 +291,14 @@ var ContainerState_name = map[int32]string{ 1: "CONTAINER_RUNNING", 2: "CONTAINER_EXITED", 3: "CONTAINER_UNKNOWN", + 4: "CONTAINER_PAUSE", } var ContainerState_value = map[string]int32{ "CONTAINER_CREATED": 0, "CONTAINER_RUNNING": 1, "CONTAINER_EXITED": 2, "CONTAINER_UNKNOWN": 3, + "CONTAINER_PAUSE": 4, } func (x ContainerState) String() string { @@ -3929,6 +3935,52 @@ func (m *ReopenContainerLogResponse) Reset() { *m = ReopenCon func (*ReopenContainerLogResponse) ProtoMessage() {} func (*ReopenContainerLogResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{105} } +type PauseContainerRequest struct { + // ID of the container to pause. + ContainerId string `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"` +} + +func (m *PauseContainerRequest) Reset() { *m = PauseContainerRequest{} } +func (*PauseContainerRequest) ProtoMessage() {} +func (*PauseContainerRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{106} } + +func (m *PauseContainerRequest) GetContainerId() string { + if m != nil { + return m.ContainerId + } + return "" +} + +type PauseContainerResponse struct { +} + +func (m *PauseContainerResponse) Reset() { *m = PauseContainerResponse{} } +func (*PauseContainerResponse) ProtoMessage() {} +func (*PauseContainerResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{107} } + +type UnpauseContainerRequest struct { + // ID of the container to unpause. + ContainerId string `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"` +} + +func (m *UnpauseContainerRequest) Reset() { *m = UnpauseContainerRequest{} } +func (*UnpauseContainerRequest) ProtoMessage() {} +func (*UnpauseContainerRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{108} } + +func (m *UnpauseContainerRequest) GetContainerId() string { + if m != nil { + return m.ContainerId + } + return "" +} + +type UnpauseContainerResponse struct { +} + +func (m *UnpauseContainerResponse) Reset() { *m = UnpauseContainerResponse{} } +func (*UnpauseContainerResponse) ProtoMessage() {} +func (*UnpauseContainerResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{109} } + type RemoveVolumeRequest struct { // Name of the volume to remove VolumeName string `protobuf:"bytes,1,opt,name=volume_name,json=volumeName,proto3" json:"volume_name,omitempty"` @@ -3936,7 +3988,7 @@ type RemoveVolumeRequest struct { func (m *RemoveVolumeRequest) Reset() { *m = RemoveVolumeRequest{} } func (*RemoveVolumeRequest) ProtoMessage() {} -func (*RemoveVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{106} } +func (*RemoveVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{110} } func (m *RemoveVolumeRequest) GetVolumeName() string { if m != nil { @@ -3950,7 +4002,7 @@ type RemoveVolumeResponse struct { func (m *RemoveVolumeResponse) Reset() { *m = RemoveVolumeResponse{} } func (*RemoveVolumeResponse) ProtoMessage() {} -func (*RemoveVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{107} } +func (*RemoveVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{111} } type StartPodSandboxRequest struct { // ID of the PodSandbox to start. @@ -3959,7 +4011,7 @@ type StartPodSandboxRequest struct { func (m *StartPodSandboxRequest) Reset() { *m = StartPodSandboxRequest{} } func (*StartPodSandboxRequest) ProtoMessage() {} -func (*StartPodSandboxRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{108} } +func (*StartPodSandboxRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{112} } func (m *StartPodSandboxRequest) GetPodSandboxId() string { if m != nil { @@ -3973,7 +4025,7 @@ type StartPodSandboxResponse struct { func (m *StartPodSandboxResponse) Reset() { *m = StartPodSandboxResponse{} } func (*StartPodSandboxResponse) ProtoMessage() {} -func (*StartPodSandboxResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{109} } +func (*StartPodSandboxResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{113} } func init() { proto.RegisterType((*VersionRequest)(nil), "runtime.v1alpha2.VersionRequest") @@ -4082,6 +4134,10 @@ func init() { proto.RegisterType((*MemoryUsage)(nil), "runtime.v1alpha2.MemoryUsage") proto.RegisterType((*ReopenContainerLogRequest)(nil), "runtime.v1alpha2.ReopenContainerLogRequest") proto.RegisterType((*ReopenContainerLogResponse)(nil), "runtime.v1alpha2.ReopenContainerLogResponse") + proto.RegisterType((*PauseContainerRequest)(nil), "runtime.v1alpha2.PauseContainerRequest") + proto.RegisterType((*PauseContainerResponse)(nil), "runtime.v1alpha2.PauseContainerResponse") + proto.RegisterType((*UnpauseContainerRequest)(nil), "runtime.v1alpha2.UnpauseContainerRequest") + proto.RegisterType((*UnpauseContainerResponse)(nil), "runtime.v1alpha2.UnpauseContainerResponse") proto.RegisterType((*RemoveVolumeRequest)(nil), "runtime.v1alpha2.RemoveVolumeRequest") proto.RegisterType((*RemoveVolumeResponse)(nil), "runtime.v1alpha2.RemoveVolumeResponse") proto.RegisterType((*StartPodSandboxRequest)(nil), "runtime.v1alpha2.StartPodSandboxRequest") @@ -4156,6 +4212,10 @@ type RuntimeServiceClient interface { // to either create a new log file and return nil, or return an error. // Once it returns error, new container log file MUST NOT be created. ReopenContainerLog(ctx context.Context, in *ReopenContainerLogRequest, opts ...grpc.CallOption) (*ReopenContainerLogResponse, error) + // PauseContainer pauses the container. + PauseContainer(ctx context.Context, in *PauseContainerRequest, opts ...grpc.CallOption) (*PauseContainerResponse, error) + // UnpauseContainer unpauses the container. + UnpauseContainer(ctx context.Context, in *UnpauseContainerRequest, opts ...grpc.CallOption) (*UnpauseContainerResponse, error) // ExecSync runs a command in a container synchronously. ExecSync(ctx context.Context, in *ExecSyncRequest, opts ...grpc.CallOption) (*ExecSyncResponse, error) // Exec prepares a streaming endpoint to execute a command in the container. @@ -4313,6 +4373,24 @@ func (c *runtimeServiceClient) ReopenContainerLog(ctx context.Context, in *Reope return out, nil } +func (c *runtimeServiceClient) PauseContainer(ctx context.Context, in *PauseContainerRequest, opts ...grpc.CallOption) (*PauseContainerResponse, error) { + out := new(PauseContainerResponse) + err := grpc.Invoke(ctx, "/runtime.v1alpha2.RuntimeService/PauseContainer", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *runtimeServiceClient) UnpauseContainer(ctx context.Context, in *UnpauseContainerRequest, opts ...grpc.CallOption) (*UnpauseContainerResponse, error) { + out := new(UnpauseContainerResponse) + err := grpc.Invoke(ctx, "/runtime.v1alpha2.RuntimeService/UnpauseContainer", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *runtimeServiceClient) ExecSync(ctx context.Context, in *ExecSyncRequest, opts ...grpc.CallOption) (*ExecSyncResponse, error) { out := new(ExecSyncResponse) err := grpc.Invoke(ctx, "/runtime.v1alpha2.RuntimeService/ExecSync", in, out, c.cc, opts...) @@ -4449,6 +4527,10 @@ type RuntimeServiceServer interface { // to either create a new log file and return nil, or return an error. // Once it returns error, new container log file MUST NOT be created. ReopenContainerLog(context.Context, *ReopenContainerLogRequest) (*ReopenContainerLogResponse, error) + // PauseContainer pauses the container. + PauseContainer(context.Context, *PauseContainerRequest) (*PauseContainerResponse, error) + // UnpauseContainer unpauses the container. + UnpauseContainer(context.Context, *UnpauseContainerRequest) (*UnpauseContainerResponse, error) // ExecSync runs a command in a container synchronously. ExecSync(context.Context, *ExecSyncRequest) (*ExecSyncResponse, error) // Exec prepares a streaming endpoint to execute a command in the container. @@ -4728,6 +4810,42 @@ func _RuntimeService_ReopenContainerLog_Handler(srv interface{}, ctx context.Con return interceptor(ctx, in, info, handler) } +func _RuntimeService_PauseContainer_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(PauseContainerRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RuntimeServiceServer).PauseContainer(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/runtime.v1alpha2.RuntimeService/PauseContainer", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RuntimeServiceServer).PauseContainer(ctx, req.(*PauseContainerRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RuntimeService_UnpauseContainer_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(UnpauseContainerRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RuntimeServiceServer).UnpauseContainer(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/runtime.v1alpha2.RuntimeService/UnpauseContainer", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RuntimeServiceServer).UnpauseContainer(ctx, req.(*UnpauseContainerRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _RuntimeService_ExecSync_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ExecSyncRequest) if err := dec(in); err != nil { @@ -4950,6 +5068,14 @@ var _RuntimeService_serviceDesc = grpc.ServiceDesc{ MethodName: "ReopenContainerLog", Handler: _RuntimeService_ReopenContainerLog_Handler, }, + { + MethodName: "PauseContainer", + Handler: _RuntimeService_PauseContainer_Handler, + }, + { + MethodName: "UnpauseContainer", + Handler: _RuntimeService_UnpauseContainer_Handler, + }, { MethodName: "ExecSync", Handler: _RuntimeService_ExecSync_Handler, @@ -5692,7 +5818,7 @@ func (m *LinuxPodSandboxConfig) MarshalTo(dAtA []byte) (int, error) { i += n7 } if len(m.Sysctls) > 0 { - for k, _ := range m.Sysctls { + for k := range m.Sysctls { dAtA[i] = 0x1a i++ v := m.Sysctls[k] @@ -5812,7 +5938,7 @@ func (m *PodSandboxConfig) MarshalTo(dAtA []byte) (int, error) { } } if len(m.Labels) > 0 { - for k, _ := range m.Labels { + for k := range m.Labels { dAtA[i] = 0x32 i++ v := m.Labels[k] @@ -5829,7 +5955,7 @@ func (m *PodSandboxConfig) MarshalTo(dAtA []byte) (int, error) { } } if len(m.Annotations) > 0 { - for k, _ := range m.Annotations { + for k := range m.Annotations { dAtA[i] = 0x3a i++ v := m.Annotations[k] @@ -6176,7 +6302,7 @@ func (m *PodSandboxStatus) MarshalTo(dAtA []byte) (int, error) { i += n16 } if len(m.Labels) > 0 { - for k, _ := range m.Labels { + for k := range m.Labels { dAtA[i] = 0x3a i++ v := m.Labels[k] @@ -6193,7 +6319,7 @@ func (m *PodSandboxStatus) MarshalTo(dAtA []byte) (int, error) { } } if len(m.Annotations) > 0 { - for k, _ := range m.Annotations { + for k := range m.Annotations { dAtA[i] = 0x42 i++ v := m.Annotations[k] @@ -6238,7 +6364,7 @@ func (m *PodSandboxStatusResponse) MarshalTo(dAtA []byte) (int, error) { i += n17 } if len(m.Info) > 0 { - for k, _ := range m.Info { + for k := range m.Info { dAtA[i] = 0x12 i++ v := m.Info[k] @@ -6312,7 +6438,7 @@ func (m *PodSandboxFilter) MarshalTo(dAtA []byte) (int, error) { i += n18 } if len(m.LabelSelector) > 0 { - for k, _ := range m.LabelSelector { + for k := range m.LabelSelector { dAtA[i] = 0x1a i++ v := m.LabelSelector[k] @@ -6401,7 +6527,7 @@ func (m *PodSandbox) MarshalTo(dAtA []byte) (int, error) { i = encodeVarintApi(dAtA, i, uint64(m.CreatedAt)) } if len(m.Labels) > 0 { - for k, _ := range m.Labels { + for k := range m.Labels { dAtA[i] = 0x2a i++ v := m.Labels[k] @@ -6418,7 +6544,7 @@ func (m *PodSandbox) MarshalTo(dAtA []byte) (int, error) { } } if len(m.Annotations) > 0 { - for k, _ := range m.Annotations { + for k := range m.Annotations { dAtA[i] = 0x32 i++ v := m.Annotations[k] @@ -6574,7 +6700,7 @@ func (m *LinuxContainerResources) MarshalTo(dAtA []byte) (int, error) { i += copy(dAtA[i:], m.CpusetMems) } if len(m.DiskQuota) > 0 { - for k, _ := range m.DiskQuota { + for k := range m.DiskQuota { dAtA[i] = 0xa2 i++ dAtA[i] = 0x6 @@ -7369,7 +7495,7 @@ func (m *ContainerConfig) MarshalTo(dAtA []byte) (int, error) { } } if len(m.Labels) > 0 { - for k, _ := range m.Labels { + for k := range m.Labels { dAtA[i] = 0x4a i++ v := m.Labels[k] @@ -7386,7 +7512,7 @@ func (m *ContainerConfig) MarshalTo(dAtA []byte) (int, error) { } } if len(m.Annotations) > 0 { - for k, _ := range m.Annotations { + for k := range m.Annotations { dAtA[i] = 0x52 i++ v := m.Annotations[k] @@ -7738,7 +7864,7 @@ func (m *ContainerFilter) MarshalTo(dAtA []byte) (int, error) { i += copy(dAtA[i:], m.PodSandboxId) } if len(m.LabelSelector) > 0 { - for k, _ := range m.LabelSelector { + for k := range m.LabelSelector { dAtA[i] = 0x22 i++ v := m.LabelSelector[k] @@ -7849,7 +7975,7 @@ func (m *Container) MarshalTo(dAtA []byte) (int, error) { i = encodeVarintApi(dAtA, i, uint64(m.CreatedAt)) } if len(m.Labels) > 0 { - for k, _ := range m.Labels { + for k := range m.Labels { dAtA[i] = 0x42 i++ v := m.Labels[k] @@ -7866,7 +7992,7 @@ func (m *Container) MarshalTo(dAtA []byte) (int, error) { } } if len(m.Annotations) > 0 { - for k, _ := range m.Annotations { + for k := range m.Annotations { dAtA[i] = 0x4a i++ v := m.Annotations[k] @@ -8034,7 +8160,7 @@ func (m *ContainerStatus) MarshalTo(dAtA []byte) (int, error) { i += copy(dAtA[i:], m.Message) } if len(m.Labels) > 0 { - for k, _ := range m.Labels { + for k := range m.Labels { dAtA[i] = 0x62 i++ v := m.Labels[k] @@ -8051,7 +8177,7 @@ func (m *ContainerStatus) MarshalTo(dAtA []byte) (int, error) { } } if len(m.Annotations) > 0 { - for k, _ := range m.Annotations { + for k := range m.Annotations { dAtA[i] = 0x6a i++ v := m.Annotations[k] @@ -8086,7 +8212,7 @@ func (m *ContainerStatus) MarshalTo(dAtA []byte) (int, error) { i += copy(dAtA[i:], m.LogPath) } if len(m.Volumes) > 0 { - for k, _ := range m.Volumes { + for k := range m.Volumes { dAtA[i] = 0xa2 i++ dAtA[i] = 0x6 @@ -8196,7 +8322,7 @@ func (m *ContainerStatusResponse) MarshalTo(dAtA []byte) (int, error) { i += n47 } if len(m.Info) > 0 { - for k, _ := range m.Info { + for k := range m.Info { dAtA[i] = 0x12 i++ v := m.Info[k] @@ -8732,7 +8858,7 @@ func (m *Image) MarshalTo(dAtA []byte) (int, error) { i += copy(dAtA[i:], m.Username) } if len(m.Volumes) > 0 { - for k, _ := range m.Volumes { + for k := range m.Volumes { dAtA[i] = 0xa2 i++ dAtA[i] = 0x6 @@ -8858,7 +8984,7 @@ func (m *ImageStatusResponse) MarshalTo(dAtA []byte) (int, error) { i += n56 } if len(m.Info) > 0 { - for k, _ := range m.Info { + for k := range m.Info { dAtA[i] = 0x12 i++ v := m.Info[k] @@ -9277,7 +9403,7 @@ func (m *StatusResponse) MarshalTo(dAtA []byte) (int, error) { i += n63 } if len(m.Info) > 0 { - for k, _ := range m.Info { + for k := range m.Info { dAtA[i] = 0x12 i++ v := m.Info[k] @@ -9552,7 +9678,7 @@ func (m *ContainerStatsFilter) MarshalTo(dAtA []byte) (int, error) { i += copy(dAtA[i:], m.PodSandboxId) } if len(m.LabelSelector) > 0 { - for k, _ := range m.LabelSelector { + for k := range m.LabelSelector { dAtA[i] = 0x1a i++ v := m.LabelSelector[k] @@ -9633,7 +9759,7 @@ func (m *ContainerAttributes) MarshalTo(dAtA []byte) (int, error) { i += n69 } if len(m.Labels) > 0 { - for k, _ := range m.Labels { + for k := range m.Labels { dAtA[i] = 0x1a i++ v := m.Labels[k] @@ -9650,7 +9776,7 @@ func (m *ContainerAttributes) MarshalTo(dAtA []byte) (int, error) { } } if len(m.Annotations) > 0 { - for k, _ := range m.Annotations { + for k := range m.Annotations { dAtA[i] = 0x22 i++ v := m.Annotations[k] @@ -9835,6 +9961,90 @@ func (m *ReopenContainerLogResponse) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *PauseContainerRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *PauseContainerRequest) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if len(m.ContainerId) > 0 { + dAtA[i] = 0xa + i++ + i = encodeVarintApi(dAtA, i, uint64(len(m.ContainerId))) + i += copy(dAtA[i:], m.ContainerId) + } + return i, nil +} + +func (m *PauseContainerResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *PauseContainerResponse) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + return i, nil +} + +func (m *UnpauseContainerRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *UnpauseContainerRequest) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if len(m.ContainerId) > 0 { + dAtA[i] = 0xa + i++ + i = encodeVarintApi(dAtA, i, uint64(len(m.ContainerId))) + i += copy(dAtA[i:], m.ContainerId) + } + return i, nil +} + +func (m *UnpauseContainerResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *UnpauseContainerResponse) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + return i, nil +} + func (m *RemoveVolumeRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -9919,24 +10129,6 @@ func (m *StartPodSandboxResponse) MarshalTo(dAtA []byte) (int, error) { return i, nil } -func encodeFixed64Api(dAtA []byte, offset int, v uint64) int { - dAtA[offset] = uint8(v) - dAtA[offset+1] = uint8(v >> 8) - dAtA[offset+2] = uint8(v >> 16) - dAtA[offset+3] = uint8(v >> 24) - dAtA[offset+4] = uint8(v >> 32) - dAtA[offset+5] = uint8(v >> 40) - dAtA[offset+6] = uint8(v >> 48) - dAtA[offset+7] = uint8(v >> 56) - return offset + 8 -} -func encodeFixed32Api(dAtA []byte, offset int, v uint32) int { - dAtA[offset] = uint8(v) - dAtA[offset+1] = uint8(v >> 8) - dAtA[offset+2] = uint8(v >> 16) - dAtA[offset+3] = uint8(v >> 24) - return offset + 4 -} func encodeVarintApi(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) @@ -11856,6 +12048,38 @@ func (m *ReopenContainerLogResponse) Size() (n int) { return n } +func (m *PauseContainerRequest) Size() (n int) { + var l int + _ = l + l = len(m.ContainerId) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + return n +} + +func (m *PauseContainerResponse) Size() (n int) { + var l int + _ = l + return n +} + +func (m *UnpauseContainerRequest) Size() (n int) { + var l int + _ = l + l = len(m.ContainerId) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + return n +} + +func (m *UnpauseContainerResponse) Size() (n int) { + var l int + _ = l + return n +} + func (m *RemoveVolumeRequest) Size() (n int) { var l int _ = l @@ -12008,7 +12232,7 @@ func (this *LinuxPodSandboxConfig) String() string { return "nil" } keysForSysctls := make([]string, 0, len(this.Sysctls)) - for k, _ := range this.Sysctls { + for k := range this.Sysctls { keysForSysctls = append(keysForSysctls, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForSysctls) @@ -12043,7 +12267,7 @@ func (this *PodSandboxConfig) String() string { return "nil" } keysForLabels := make([]string, 0, len(this.Labels)) - for k, _ := range this.Labels { + for k := range this.Labels { keysForLabels = append(keysForLabels, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForLabels) @@ -12053,7 +12277,7 @@ func (this *PodSandboxConfig) String() string { } mapStringForLabels += "}" keysForAnnotations := make([]string, 0, len(this.Annotations)) - for k, _ := range this.Annotations { + for k := range this.Annotations { keysForAnnotations = append(keysForAnnotations, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForAnnotations) @@ -12180,7 +12404,7 @@ func (this *PodSandboxStatus) String() string { return "nil" } keysForLabels := make([]string, 0, len(this.Labels)) - for k, _ := range this.Labels { + for k := range this.Labels { keysForLabels = append(keysForLabels, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForLabels) @@ -12190,7 +12414,7 @@ func (this *PodSandboxStatus) String() string { } mapStringForLabels += "}" keysForAnnotations := make([]string, 0, len(this.Annotations)) - for k, _ := range this.Annotations { + for k := range this.Annotations { keysForAnnotations = append(keysForAnnotations, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForAnnotations) @@ -12217,7 +12441,7 @@ func (this *PodSandboxStatusResponse) String() string { return "nil" } keysForInfo := make([]string, 0, len(this.Info)) - for k, _ := range this.Info { + for k := range this.Info { keysForInfo = append(keysForInfo, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForInfo) @@ -12248,7 +12472,7 @@ func (this *PodSandboxFilter) String() string { return "nil" } keysForLabelSelector := make([]string, 0, len(this.LabelSelector)) - for k, _ := range this.LabelSelector { + for k := range this.LabelSelector { keysForLabelSelector = append(keysForLabelSelector, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForLabelSelector) @@ -12280,7 +12504,7 @@ func (this *PodSandbox) String() string { return "nil" } keysForLabels := make([]string, 0, len(this.Labels)) - for k, _ := range this.Labels { + for k := range this.Labels { keysForLabels = append(keysForLabels, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForLabels) @@ -12290,7 +12514,7 @@ func (this *PodSandbox) String() string { } mapStringForLabels += "}" keysForAnnotations := make([]string, 0, len(this.Annotations)) - for k, _ := range this.Annotations { + for k := range this.Annotations { keysForAnnotations = append(keysForAnnotations, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForAnnotations) @@ -12346,7 +12570,7 @@ func (this *LinuxContainerResources) String() string { return "nil" } keysForDiskQuota := make([]string, 0, len(this.DiskQuota)) - for k, _ := range this.DiskQuota { + for k := range this.DiskQuota { keysForDiskQuota = append(keysForDiskQuota, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForDiskQuota) @@ -12532,7 +12756,7 @@ func (this *ContainerConfig) String() string { return "nil" } keysForLabels := make([]string, 0, len(this.Labels)) - for k, _ := range this.Labels { + for k := range this.Labels { keysForLabels = append(keysForLabels, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForLabels) @@ -12542,7 +12766,7 @@ func (this *ContainerConfig) String() string { } mapStringForLabels += "}" keysForAnnotations := make([]string, 0, len(this.Annotations)) - for k, _ := range this.Annotations { + for k := range this.Annotations { keysForAnnotations = append(keysForAnnotations, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForAnnotations) @@ -12669,7 +12893,7 @@ func (this *ContainerFilter) String() string { return "nil" } keysForLabelSelector := make([]string, 0, len(this.LabelSelector)) - for k, _ := range this.LabelSelector { + for k := range this.LabelSelector { keysForLabelSelector = append(keysForLabelSelector, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForLabelSelector) @@ -12702,7 +12926,7 @@ func (this *Container) String() string { return "nil" } keysForLabels := make([]string, 0, len(this.Labels)) - for k, _ := range this.Labels { + for k := range this.Labels { keysForLabels = append(keysForLabels, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForLabels) @@ -12712,7 +12936,7 @@ func (this *Container) String() string { } mapStringForLabels += "}" keysForAnnotations := make([]string, 0, len(this.Annotations)) - for k, _ := range this.Annotations { + for k := range this.Annotations { keysForAnnotations = append(keysForAnnotations, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForAnnotations) @@ -12761,7 +12985,7 @@ func (this *ContainerStatus) String() string { return "nil" } keysForLabels := make([]string, 0, len(this.Labels)) - for k, _ := range this.Labels { + for k := range this.Labels { keysForLabels = append(keysForLabels, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForLabels) @@ -12771,7 +12995,7 @@ func (this *ContainerStatus) String() string { } mapStringForLabels += "}" keysForAnnotations := make([]string, 0, len(this.Annotations)) - for k, _ := range this.Annotations { + for k := range this.Annotations { keysForAnnotations = append(keysForAnnotations, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForAnnotations) @@ -12781,7 +13005,7 @@ func (this *ContainerStatus) String() string { } mapStringForAnnotations += "}" keysForVolumes := make([]string, 0, len(this.Volumes)) - for k, _ := range this.Volumes { + for k := range this.Volumes { keysForVolumes = append(keysForVolumes, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForVolumes) @@ -12828,7 +13052,7 @@ func (this *ContainerStatusResponse) String() string { return "nil" } keysForInfo := make([]string, 0, len(this.Info)) - for k, _ := range this.Info { + for k := range this.Info { keysForInfo = append(keysForInfo, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForInfo) @@ -12983,7 +13207,7 @@ func (this *Image) String() string { return "nil" } keysForVolumes := make([]string, 0, len(this.Volumes)) - for k, _ := range this.Volumes { + for k := range this.Volumes { keysForVolumes = append(keysForVolumes, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForVolumes) @@ -13030,7 +13254,7 @@ func (this *ImageStatusResponse) String() string { return "nil" } keysForInfo := make([]string, 0, len(this.Info)) - for k, _ := range this.Info { + for k := range this.Info { keysForInfo = append(keysForInfo, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForInfo) @@ -13179,7 +13403,7 @@ func (this *StatusResponse) String() string { return "nil" } keysForInfo := make([]string, 0, len(this.Info)) - for k, _ := range this.Info { + for k := range this.Info { keysForInfo = append(keysForInfo, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForInfo) @@ -13282,7 +13506,7 @@ func (this *ContainerStatsFilter) String() string { return "nil" } keysForLabelSelector := make([]string, 0, len(this.LabelSelector)) - for k, _ := range this.LabelSelector { + for k := range this.LabelSelector { keysForLabelSelector = append(keysForLabelSelector, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForLabelSelector) @@ -13314,7 +13538,7 @@ func (this *ContainerAttributes) String() string { return "nil" } keysForLabels := make([]string, 0, len(this.Labels)) - for k, _ := range this.Labels { + for k := range this.Labels { keysForLabels = append(keysForLabels, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForLabels) @@ -13324,7 +13548,7 @@ func (this *ContainerAttributes) String() string { } mapStringForLabels += "}" keysForAnnotations := make([]string, 0, len(this.Annotations)) - for k, _ := range this.Annotations { + for k := range this.Annotations { keysForAnnotations = append(keysForAnnotations, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForAnnotations) @@ -13396,6 +13620,44 @@ func (this *ReopenContainerLogResponse) String() string { }, "") return s } +func (this *PauseContainerRequest) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&PauseContainerRequest{`, + `ContainerId:` + fmt.Sprintf("%v", this.ContainerId) + `,`, + `}`, + }, "") + return s +} +func (this *PauseContainerResponse) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&PauseContainerResponse{`, + `}`, + }, "") + return s +} +func (this *UnpauseContainerRequest) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&UnpauseContainerRequest{`, + `ContainerId:` + fmt.Sprintf("%v", this.ContainerId) + `,`, + `}`, + }, "") + return s +} +func (this *UnpauseContainerResponse) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&UnpauseContainerResponse{`, + `}`, + }, "") + return s +} func (this *RemoveVolumeRequest) String() string { if this == nil { return "nil" @@ -14762,51 +15024,14 @@ func (m *LinuxPodSandboxConfig) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Sysctls == nil { m.Sysctls = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -14816,41 +15041,80 @@ func (m *LinuxPodSandboxConfig) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Sysctls[mapkey] = mapvalue - } else { - var mapvalue string - m.Sysctls[mapkey] = mapvalue } + m.Sysctls[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex @@ -15239,51 +15503,14 @@ func (m *PodSandboxConfig) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Labels == nil { m.Labels = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -15293,41 +15520,80 @@ func (m *PodSandboxConfig) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Labels[mapkey] = mapvalue - } else { - var mapvalue string - m.Labels[mapkey] = mapvalue } + m.Labels[mapkey] = mapvalue iNdEx = postIndex case 7: if wireType != 2 { @@ -15355,51 +15621,14 @@ func (m *PodSandboxConfig) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Annotations == nil { m.Annotations = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -15409,41 +15638,80 @@ func (m *PodSandboxConfig) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Annotations[mapkey] = mapvalue - } else { - var mapvalue string - m.Annotations[mapkey] = mapvalue } + m.Annotations[mapkey] = mapvalue iNdEx = postIndex case 8: if wireType != 2 { @@ -16513,51 +16781,14 @@ func (m *PodSandboxStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Labels == nil { m.Labels = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -16567,41 +16798,80 @@ func (m *PodSandboxStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Labels[mapkey] = mapvalue - } else { - var mapvalue string - m.Labels[mapkey] = mapvalue } + m.Labels[mapkey] = mapvalue iNdEx = postIndex case 8: if wireType != 2 { @@ -16629,51 +16899,14 @@ func (m *PodSandboxStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Annotations == nil { m.Annotations = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -16683,41 +16916,80 @@ func (m *PodSandboxStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Annotations[mapkey] = mapvalue - } else { - var mapvalue string - m.Annotations[mapkey] = mapvalue } + m.Annotations[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex @@ -16828,51 +17100,14 @@ func (m *PodSandboxStatusResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Info == nil { m.Info = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -16882,41 +17117,80 @@ func (m *PodSandboxStatusResponse) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Info[mapkey] = mapvalue - } else { - var mapvalue string - m.Info[mapkey] = mapvalue } + m.Info[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex @@ -17125,51 +17399,14 @@ func (m *PodSandboxFilter) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.LabelSelector == nil { m.LabelSelector = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -17179,41 +17416,80 @@ func (m *PodSandboxFilter) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.LabelSelector[mapkey] = mapvalue - } else { - var mapvalue string - m.LabelSelector[mapkey] = mapvalue } + m.LabelSelector[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex @@ -17474,51 +17750,14 @@ func (m *PodSandbox) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Labels == nil { m.Labels = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -17528,41 +17767,80 @@ func (m *PodSandbox) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { + return io.ErrUnexpectedEOF + } + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Labels[mapkey] = mapvalue - } else { - var mapvalue string - m.Labels[mapkey] = mapvalue } + m.Labels[mapkey] = mapvalue iNdEx = postIndex case 6: if wireType != 2 { @@ -17590,51 +17868,14 @@ func (m *PodSandbox) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Annotations == nil { m.Annotations = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -17644,41 +17885,80 @@ func (m *PodSandbox) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Annotations[mapkey] = mapvalue - } else { - var mapvalue string - m.Annotations[mapkey] = mapvalue } + m.Annotations[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex @@ -18177,51 +18457,14 @@ func (m *LinuxContainerResources) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.DiskQuota == nil { m.DiskQuota = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -18231,41 +18474,80 @@ func (m *LinuxContainerResources) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.DiskQuota[mapkey] = mapvalue - } else { - var mapvalue string - m.DiskQuota[mapkey] = mapvalue } + m.DiskQuota[mapkey] = mapvalue iNdEx = postIndex case 101: if wireType != 0 { @@ -20606,51 +20888,14 @@ func (m *ContainerConfig) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Labels == nil { m.Labels = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -20660,41 +20905,80 @@ func (m *ContainerConfig) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Labels[mapkey] = mapvalue - } else { - var mapvalue string - m.Labels[mapkey] = mapvalue } + m.Labels[mapkey] = mapvalue iNdEx = postIndex case 10: if wireType != 2 { @@ -20722,51 +21006,14 @@ func (m *ContainerConfig) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Annotations == nil { m.Annotations = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -20776,41 +21023,80 @@ func (m *ContainerConfig) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Annotations[mapkey] = mapvalue - } else { - var mapvalue string - m.Annotations[mapkey] = mapvalue } + m.Annotations[mapkey] = mapvalue iNdEx = postIndex case 11: if wireType != 2 { @@ -21881,51 +22167,14 @@ func (m *ContainerFilter) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.LabelSelector == nil { m.LabelSelector = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -21935,41 +22184,80 @@ func (m *ContainerFilter) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.LabelSelector[mapkey] = mapvalue - } else { - var mapvalue string - m.LabelSelector[mapkey] = mapvalue } + m.LabelSelector[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex @@ -22321,51 +22609,14 @@ func (m *Container) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Labels == nil { m.Labels = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -22375,41 +22626,80 @@ func (m *Container) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Labels[mapkey] = mapvalue - } else { - var mapvalue string - m.Labels[mapkey] = mapvalue } + m.Labels[mapkey] = mapvalue iNdEx = postIndex case 9: if wireType != 2 { @@ -22437,51 +22727,14 @@ func (m *Container) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } + if m.Annotations == nil { + m.Annotations = make(map[string]string) } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey - if m.Annotations == nil { - m.Annotations = make(map[string]string) - } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -22491,41 +22744,80 @@ func (m *Container) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Annotations[mapkey] = mapvalue - } else { - var mapvalue string - m.Annotations[mapkey] = mapvalue } + m.Annotations[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex @@ -23060,51 +23352,14 @@ func (m *ContainerStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Labels == nil { m.Labels = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -23114,41 +23369,80 @@ func (m *ContainerStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Labels[mapkey] = mapvalue - } else { - var mapvalue string - m.Labels[mapkey] = mapvalue } + m.Labels[mapkey] = mapvalue iNdEx = postIndex case 13: if wireType != 2 { @@ -23176,51 +23470,14 @@ func (m *ContainerStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Annotations == nil { m.Annotations = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -23230,41 +23487,80 @@ func (m *ContainerStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Annotations[mapkey] = mapvalue - } else { - var mapvalue string - m.Annotations[mapkey] = mapvalue } + m.Annotations[mapkey] = mapvalue iNdEx = postIndex case 14: if wireType != 2 { @@ -23352,51 +23648,14 @@ func (m *ContainerStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Volumes == nil { m.Volumes = make(map[string]*Volume) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue *Volume + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -23406,46 +23665,85 @@ func (m *ContainerStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var mapmsglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - mapmsglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var mapmsglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + mapmsglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } } + if mapmsglen < 0 { + return ErrInvalidLengthApi + } + postmsgIndex := iNdEx + mapmsglen + if mapmsglen < 0 { + return ErrInvalidLengthApi + } + if postmsgIndex > l { + return io.ErrUnexpectedEOF + } + mapvalue = &Volume{} + if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { + return err + } + iNdEx = postmsgIndex + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - if mapmsglen < 0 { - return ErrInvalidLengthApi - } - postmsgIndex := iNdEx + mapmsglen - if mapmsglen < 0 { - return ErrInvalidLengthApi - } - if postmsgIndex > l { - return io.ErrUnexpectedEOF - } - mapvalue := &Volume{} - if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { - return err - } - iNdEx = postmsgIndex - m.Volumes[mapkey] = mapvalue - } else { - var mapvalue *Volume - m.Volumes[mapkey] = mapvalue } + m.Volumes[mapkey] = mapvalue iNdEx = postIndex case 101: if wireType != 2 { @@ -23699,51 +23997,14 @@ func (m *ContainerStatusResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Info == nil { m.Info = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -23753,41 +24014,80 @@ func (m *ContainerStatusResponse) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Info[mapkey] = mapvalue - } else { - var mapvalue string - m.Info[mapkey] = mapvalue } + m.Info[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex @@ -25344,51 +25644,14 @@ func (m *Image) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Volumes == nil { m.Volumes = make(map[string]*Volume) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue *Volume + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -25398,46 +25661,85 @@ func (m *Image) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var mapmsglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - mapmsglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var mapmsglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + mapmsglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } } + if mapmsglen < 0 { + return ErrInvalidLengthApi + } + postmsgIndex := iNdEx + mapmsglen + if mapmsglen < 0 { + return ErrInvalidLengthApi + } + if postmsgIndex > l { + return io.ErrUnexpectedEOF + } + mapvalue = &Volume{} + if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { + return err + } + iNdEx = postmsgIndex + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - if mapmsglen < 0 { - return ErrInvalidLengthApi - } - postmsgIndex := iNdEx + mapmsglen - if mapmsglen < 0 { - return ErrInvalidLengthApi - } - if postmsgIndex > l { - return io.ErrUnexpectedEOF - } - mapvalue := &Volume{} - if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { - return err - } - iNdEx = postmsgIndex - m.Volumes[mapkey] = mapvalue - } else { - var mapvalue *Volume - m.Volumes[mapkey] = mapvalue } + m.Volumes[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex @@ -25732,51 +26034,14 @@ func (m *ImageStatusResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Info == nil { m.Info = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -25786,41 +26051,80 @@ func (m *ImageStatusResponse) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Info[mapkey] = mapvalue - } else { - var mapvalue string - m.Info[mapkey] = mapvalue } + m.Info[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex @@ -27119,51 +27423,14 @@ func (m *StatusResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Info == nil { m.Info = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -27173,41 +27440,80 @@ func (m *StatusResponse) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Info[mapkey] = mapvalue - } else { - var mapvalue string - m.Info[mapkey] = mapvalue } + m.Info[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex @@ -28035,51 +28341,14 @@ func (m *ContainerStatsFilter) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.LabelSelector == nil { m.LabelSelector = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -28089,41 +28358,80 @@ func (m *ContainerStatsFilter) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.LabelSelector[mapkey] = mapvalue - } else { - var mapvalue string - m.LabelSelector[mapkey] = mapvalue } + m.LabelSelector[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex @@ -28344,51 +28652,14 @@ func (m *ContainerAttributes) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey if m.Labels == nil { m.Labels = make(map[string]string) } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -28398,41 +28669,80 @@ func (m *ContainerAttributes) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Labels[mapkey] = mapvalue - } else { - var mapvalue string - m.Labels[mapkey] = mapvalue } + m.Labels[mapkey] = mapvalue iNdEx = postIndex case 4: if wireType != 2 { @@ -28460,51 +28770,14 @@ func (m *ContainerAttributes) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var keykey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - keykey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } + if m.Annotations == nil { + m.Annotations = make(map[string]string) } - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey := string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey - if m.Annotations == nil { - m.Annotations = make(map[string]string) - } - if iNdEx < postIndex { - var valuekey uint64 + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -28514,41 +28787,80 @@ func (m *ContainerAttributes) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - valuekey |= (uint64(b) & 0x7F) << shift + wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthApi - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue := string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - m.Annotations[mapkey] = mapvalue - } else { - var mapvalue string - m.Annotations[mapkey] = mapvalue } + m.Annotations[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex @@ -29086,6 +29398,264 @@ func (m *ReopenContainerLogResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *PauseContainerRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: PauseContainerRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: PauseContainerRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ContainerId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ContainerId = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *PauseContainerResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: PauseContainerResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: PauseContainerResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *UnpauseContainerRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: UnpauseContainerRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: UnpauseContainerRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ContainerId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ContainerId = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *UnpauseContainerResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: UnpauseContainerResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: UnpauseContainerResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *RemoveVolumeRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -29452,332 +30022,336 @@ var ( func init() { proto.RegisterFile("api.proto", fileDescriptorApi) } var fileDescriptorApi = []byte{ - // 5219 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x3c, 0xcb, 0x72, 0x1c, 0x47, - 0x72, 0x98, 0x07, 0x80, 0x99, 0x1c, 0x0c, 0x30, 0x28, 0x82, 0xc4, 0x70, 0x28, 0x3e, 0xd0, 0x7c, - 0x53, 0x22, 0x28, 0x42, 0xbb, 0x94, 0xf8, 0x58, 0x4a, 0x20, 0x00, 0x92, 0xe3, 0x25, 0x07, 0x70, - 0x0f, 0x20, 0x4a, 0x2b, 0x45, 0xf4, 0x36, 0xa6, 0x0b, 0x83, 0x16, 0x66, 0xba, 0x5b, 0x5d, 0x3d, - 0x00, 0x61, 0x47, 0x38, 0x36, 0xc2, 0xe1, 0x3d, 0xf8, 0xe4, 0xb3, 0x8f, 0xbb, 0x07, 0x1f, 0xf6, - 0xe2, 0x70, 0x84, 0x4f, 0x3e, 0xd9, 0xb1, 0xe1, 0xd8, 0xcb, 0x46, 0xf8, 0xe4, 0xf0, 0xe3, 0x62, - 0xc9, 0x3e, 0xed, 0xc1, 0xe1, 0x4f, 0x70, 0xd4, 0xab, 0xa7, 0x9f, 0xf3, 0x80, 0xa8, 0x95, 0xf6, - 0x34, 0x5d, 0xd9, 0x99, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x99, 0xd5, 0x03, 0x45, 0xdd, 0x31, - 0x97, 0x1d, 0xd7, 0xf6, 0x6c, 0x54, 0x71, 0x7b, 0x96, 0x67, 0x76, 0xf1, 0xf2, 0xe1, 0x5d, 0xbd, - 0xe3, 0xec, 0xeb, 0x2b, 0xb5, 0xdb, 0x6d, 0xd3, 0xdb, 0xef, 0xed, 0x2e, 0xb7, 0xec, 0xee, 0x9d, - 0xb6, 0xdd, 0xb6, 0xef, 0x30, 0xc4, 0xdd, 0xde, 0x1e, 0x6b, 0xb1, 0x06, 0x7b, 0xe2, 0x0c, 0x94, - 0x5b, 0x30, 0xfb, 0x31, 0x76, 0x89, 0x69, 0x5b, 0x2a, 0xfe, 0xb2, 0x87, 0x89, 0x87, 0xaa, 0x30, - 0x7d, 0xc8, 0x21, 0xd5, 0xcc, 0xa5, 0xcc, 0x8d, 0xa2, 0x2a, 0x9b, 0xca, 0xdf, 0x64, 0x60, 0xce, - 0x47, 0x26, 0x8e, 0x6d, 0x11, 0x9c, 0x8e, 0x8d, 0x96, 0x60, 0x46, 0x08, 0xa7, 0x59, 0x7a, 0x17, - 0x57, 0xb3, 0xec, 0x75, 0x49, 0xc0, 0x1a, 0x7a, 0x17, 0xa3, 0xeb, 0x30, 0x27, 0x51, 0x24, 0x93, - 0x1c, 0xc3, 0x9a, 0x15, 0x60, 0xd1, 0x1b, 0x5a, 0x86, 0x53, 0x12, 0x51, 0x77, 0x4c, 0x1f, 0x39, - 0xcf, 0x90, 0xe7, 0xc5, 0xab, 0x55, 0xc7, 0x14, 0xf8, 0xca, 0x67, 0x50, 0x5c, 0x6f, 0x34, 0xd7, - 0x6c, 0x6b, 0xcf, 0x6c, 0x53, 0x11, 0x09, 0x76, 0x29, 0x4d, 0x35, 0x73, 0x29, 0x47, 0x45, 0x14, - 0x4d, 0x54, 0x83, 0x02, 0xc1, 0xba, 0xdb, 0xda, 0xc7, 0xa4, 0x9a, 0x65, 0xaf, 0xfc, 0x36, 0xa5, - 0xb2, 0x1d, 0xcf, 0xb4, 0x2d, 0x52, 0xcd, 0x71, 0x2a, 0xd1, 0x54, 0x7e, 0x91, 0x81, 0xd2, 0x96, - 0xed, 0x7a, 0x2f, 0x75, 0xc7, 0x31, 0xad, 0x36, 0xba, 0x07, 0x05, 0xa6, 0xcb, 0x96, 0xdd, 0x61, - 0x3a, 0x98, 0x5d, 0xa9, 0x2d, 0x47, 0xa7, 0x65, 0x79, 0x4b, 0x60, 0xa8, 0x3e, 0x2e, 0xba, 0x0a, - 0xb3, 0x2d, 0xdb, 0xf2, 0x74, 0xd3, 0xc2, 0xae, 0xe6, 0xd8, 0xae, 0xc7, 0x54, 0x34, 0xa9, 0x96, - 0x7d, 0x28, 0xed, 0x05, 0x9d, 0x83, 0xe2, 0xbe, 0x4d, 0x3c, 0x8e, 0x91, 0x63, 0x18, 0x05, 0x0a, - 0x60, 0x2f, 0x17, 0x61, 0x9a, 0xbd, 0x34, 0x1d, 0xa1, 0x8c, 0x29, 0xda, 0xac, 0x3b, 0xca, 0xef, - 0x32, 0x30, 0xf9, 0xd2, 0xee, 0x59, 0x5e, 0xa4, 0x1b, 0xdd, 0xdb, 0x17, 0x13, 0x15, 0xe8, 0x46, - 0xf7, 0xf6, 0xfb, 0xdd, 0x50, 0x0c, 0x3e, 0x57, 0xbc, 0x1b, 0xfa, 0xb2, 0x06, 0x05, 0x17, 0xeb, - 0x86, 0x6d, 0x75, 0x8e, 0x99, 0x08, 0x05, 0xd5, 0x6f, 0xd3, 0x49, 0x24, 0xb8, 0x63, 0x5a, 0xbd, - 0xd7, 0x9a, 0x8b, 0x3b, 0xfa, 0x2e, 0xee, 0x30, 0x51, 0x0a, 0xea, 0xac, 0x00, 0xab, 0x1c, 0x8a, - 0xd6, 0xa1, 0xe4, 0xb8, 0xb6, 0xa3, 0xb7, 0x75, 0xaa, 0xc7, 0xea, 0x24, 0x53, 0x95, 0x12, 0x57, - 0x15, 0x13, 0x7b, 0xab, 0x8f, 0xa9, 0x06, 0xc9, 0x10, 0x82, 0x3c, 0x33, 0x27, 0x83, 0x89, 0xc8, - 0x9e, 0x95, 0xbf, 0xcb, 0xc0, 0x1c, 0x35, 0x28, 0xe2, 0xe8, 0x2d, 0xbc, 0xc9, 0xa6, 0x09, 0xdd, - 0x87, 0x69, 0x0b, 0x7b, 0x47, 0xb6, 0x7b, 0x20, 0x26, 0xe5, 0x62, 0xbc, 0x27, 0x9f, 0xe6, 0xa5, - 0x6d, 0x60, 0x55, 0xe2, 0xa3, 0xbb, 0x90, 0x73, 0x4c, 0x83, 0x29, 0x61, 0x04, 0x32, 0x8a, 0x4b, - 0x49, 0x4c, 0xa7, 0xc5, 0x74, 0x33, 0x0a, 0x89, 0xe9, 0xb4, 0x14, 0x05, 0xa0, 0x6e, 0x79, 0xf7, - 0x7e, 0xf0, 0xb1, 0xde, 0xe9, 0x61, 0xb4, 0x00, 0x93, 0x87, 0xf4, 0x81, 0x09, 0x9b, 0x53, 0x79, - 0x43, 0xf9, 0x2a, 0x07, 0xe7, 0x5e, 0x50, 0x1d, 0x36, 0x75, 0xcb, 0xd8, 0xb5, 0x5f, 0x37, 0x71, - 0xab, 0xe7, 0x9a, 0xde, 0xf1, 0x9a, 0x6d, 0x79, 0xf8, 0xb5, 0x87, 0x1a, 0x30, 0x6f, 0x49, 0xce, - 0x9a, 0x34, 0x57, 0xca, 0xa1, 0xb4, 0xb2, 0x34, 0x40, 0x08, 0xae, 0x22, 0xb5, 0x62, 0x85, 0x01, - 0x04, 0x3d, 0xef, 0xcf, 0xa5, 0xe4, 0x96, 0x65, 0xdc, 0x12, 0x86, 0xd4, 0xdc, 0x60, 0x92, 0x09, - 0x5e, 0x72, 0xb2, 0x25, 0xa7, 0x47, 0x40, 0x57, 0xba, 0xa6, 0x13, 0xad, 0x47, 0xb0, 0xcb, 0x14, - 0x53, 0x5a, 0x79, 0x2b, 0xce, 0xa5, 0xaf, 0x02, 0xb5, 0xe8, 0xf6, 0xac, 0x55, 0xb2, 0x43, 0xb0, - 0xcb, 0x1c, 0x83, 0xb0, 0x2f, 0xcd, 0xb5, 0x6d, 0x6f, 0x8f, 0x48, 0x9b, 0x92, 0x60, 0x95, 0x41, - 0xd1, 0x1d, 0x38, 0x45, 0x7a, 0x8e, 0xd3, 0xc1, 0x5d, 0x6c, 0x79, 0x7a, 0x47, 0x6b, 0xbb, 0x76, - 0xcf, 0x21, 0xd5, 0xc9, 0x4b, 0xb9, 0x1b, 0x39, 0x15, 0x05, 0x5f, 0x3d, 0x63, 0x6f, 0xd0, 0x05, - 0x00, 0xc7, 0x35, 0x0f, 0xcd, 0x0e, 0x6e, 0x63, 0xa3, 0x3a, 0xc5, 0x98, 0x06, 0x20, 0xe8, 0x5d, - 0x58, 0x20, 0xb8, 0xd5, 0xb2, 0xbb, 0x8e, 0xe6, 0xb8, 0xf6, 0x9e, 0xd9, 0xc1, 0x7c, 0x45, 0x4c, - 0x33, 0x73, 0x43, 0xe2, 0xdd, 0x16, 0x7f, 0xc5, 0xd6, 0xc6, 0x63, 0xe6, 0xe7, 0xe8, 0x48, 0x59, - 0xe7, 0xd5, 0xc2, 0x08, 0x43, 0x05, 0x36, 0x54, 0x26, 0x92, 0xf2, 0x8b, 0x2c, 0x9c, 0x66, 0x9a, - 0xdc, 0xb2, 0x0d, 0x31, 0xcd, 0xc2, 0x71, 0x5d, 0x86, 0x72, 0x8b, 0xf1, 0xd4, 0x1c, 0xdd, 0xc5, - 0x96, 0x27, 0x16, 0xee, 0x0c, 0x07, 0x6e, 0x31, 0x18, 0xfa, 0x04, 0x2a, 0x44, 0x58, 0x85, 0xd6, - 0xe2, 0x66, 0x21, 0xe6, 0xec, 0x76, 0x5c, 0x84, 0x01, 0xb6, 0xa4, 0xce, 0x91, 0x98, 0x71, 0x4d, - 0x93, 0x63, 0xd2, 0xf2, 0x3a, 0xdc, 0x03, 0x96, 0x56, 0x7e, 0x90, 0xc2, 0x30, 0x2a, 0xf8, 0x72, - 0x93, 0x93, 0x6d, 0x58, 0x9e, 0x7b, 0xac, 0x4a, 0x26, 0xb5, 0x07, 0x30, 0x13, 0x7c, 0x81, 0x2a, - 0x90, 0x3b, 0xc0, 0xc7, 0x62, 0x50, 0xf4, 0xb1, 0xbf, 0x08, 0xb8, 0xff, 0xe1, 0x8d, 0x07, 0xd9, - 0x0f, 0x32, 0x8a, 0x0b, 0xa8, 0xdf, 0xcb, 0x4b, 0xec, 0xe9, 0x86, 0xee, 0xe9, 0xbe, 0x2f, 0xc8, - 0xf4, 0x7d, 0x01, 0xe5, 0xda, 0x13, 0x8b, 0xb7, 0xa8, 0xd2, 0x47, 0xf4, 0x16, 0x14, 0x7d, 0x43, - 0x17, 0xfb, 0x4b, 0x1f, 0x40, 0xfd, 0xbc, 0xee, 0x79, 0xb8, 0xeb, 0x78, 0xcc, 0xc4, 0xca, 0xaa, - 0x6c, 0x2a, 0xff, 0x9b, 0x87, 0x4a, 0x6c, 0x4e, 0x3e, 0x82, 0x42, 0x57, 0x74, 0x2f, 0x16, 0xda, - 0x95, 0x04, 0x67, 0x1f, 0x13, 0x55, 0xf5, 0xa9, 0xa8, 0x2f, 0xa5, 0x7e, 0x35, 0xb0, 0x27, 0xfa, - 0x6d, 0x3a, 0xe3, 0x1d, 0xbb, 0xad, 0x19, 0xa6, 0x8b, 0x5b, 0x9e, 0xed, 0x1e, 0x0b, 0x71, 0x67, - 0x3a, 0x76, 0x7b, 0x5d, 0xc2, 0xd0, 0x03, 0x00, 0xc3, 0x22, 0x74, 0xb2, 0xf7, 0xcc, 0x36, 0x13, - 0xba, 0xb4, 0x72, 0x2e, 0x2e, 0x84, 0xbf, 0x01, 0xaa, 0x45, 0xc3, 0x22, 0x42, 0xfc, 0x27, 0x50, - 0xa6, 0xfb, 0x88, 0xd6, 0xe5, 0x7b, 0x17, 0x5f, 0x29, 0xa5, 0x95, 0xf3, 0x49, 0x63, 0xf0, 0x77, - 0x38, 0x75, 0xc6, 0xe9, 0x37, 0x08, 0x7a, 0x0a, 0x53, 0xcc, 0xa1, 0x93, 0xea, 0x14, 0x23, 0x5e, - 0x1e, 0xa4, 0x00, 0x61, 0x11, 0x2f, 0x18, 0x01, 0x37, 0x08, 0x41, 0x8d, 0x76, 0xa0, 0xa4, 0x5b, - 0x96, 0xed, 0xe9, 0xdc, 0xd1, 0x4c, 0x33, 0x66, 0xef, 0x8d, 0xc0, 0x6c, 0xb5, 0x4f, 0xc5, 0x39, - 0x06, 0xf9, 0xa0, 0x1f, 0xc1, 0x24, 0xf3, 0x44, 0x62, 0x21, 0x5e, 0x1f, 0xd1, 0x68, 0x55, 0x4e, - 0x55, 0xbb, 0x0f, 0xa5, 0x80, 0xb0, 0xe3, 0x18, 0x69, 0xed, 0x31, 0x54, 0xa2, 0xa2, 0x8d, 0x65, - 0xe4, 0x7f, 0x0a, 0x0b, 0x6a, 0xcf, 0xea, 0x0b, 0x26, 0x23, 0xb2, 0x07, 0x30, 0x25, 0x26, 0x9b, - 0x5b, 0x9c, 0x32, 0x5c, 0x47, 0xaa, 0xa0, 0x08, 0x86, 0x58, 0xfb, 0xba, 0x65, 0x74, 0xb0, 0x2b, - 0xfa, 0x95, 0x21, 0xd6, 0x73, 0x0e, 0x55, 0x7e, 0x04, 0xa7, 0x23, 0x9d, 0x8b, 0x08, 0xef, 0x0a, - 0xcc, 0x3a, 0xb6, 0xa1, 0x11, 0x0e, 0xd6, 0x4c, 0x43, 0xba, 0x21, 0xc7, 0xc7, 0xad, 0x1b, 0x94, - 0xbc, 0xe9, 0xd9, 0x4e, 0x5c, 0xf8, 0xd1, 0xc8, 0xab, 0x70, 0x26, 0x4a, 0xce, 0xbb, 0x57, 0x3e, - 0x84, 0x45, 0x15, 0x77, 0xed, 0x43, 0x7c, 0x52, 0xd6, 0x35, 0xa8, 0xc6, 0x19, 0x08, 0xe6, 0x9f, - 0xc2, 0x62, 0x1f, 0xda, 0xf4, 0x74, 0xaf, 0x47, 0xc6, 0x62, 0x2e, 0xc2, 0xdf, 0x5d, 0x9b, 0xf0, - 0xe9, 0x2c, 0xa8, 0xb2, 0xa9, 0xdc, 0x0c, 0xb2, 0x6e, 0xf0, 0xc8, 0x82, 0xf7, 0x80, 0x66, 0x21, - 0x6b, 0x3a, 0x82, 0x5d, 0xd6, 0x74, 0x94, 0xe7, 0x50, 0xf4, 0xb7, 0x66, 0xf4, 0xb0, 0x1f, 0x77, - 0x66, 0x47, 0xdd, 0xc8, 0xfd, 0xd0, 0x74, 0x3b, 0xb6, 0x95, 0x88, 0x2e, 0x1f, 0x02, 0xf8, 0x2e, - 0x4f, 0x46, 0x08, 0xe7, 0x06, 0x30, 0x56, 0x03, 0xe8, 0xca, 0x7f, 0x84, 0x1c, 0x61, 0x60, 0x10, - 0x86, 0x3f, 0x08, 0x23, 0xe4, 0x18, 0xb3, 0x27, 0x72, 0x8c, 0xef, 0xc3, 0x24, 0xf1, 0x74, 0x0f, - 0x8b, 0x28, 0x6a, 0x69, 0x10, 0x39, 0x15, 0x02, 0xab, 0x1c, 0x1f, 0x9d, 0x07, 0x68, 0xb9, 0x58, - 0xf7, 0xb0, 0xa1, 0xe9, 0xdc, 0x8b, 0xe7, 0xd4, 0xa2, 0x80, 0xac, 0x7a, 0x68, 0xad, 0x1f, 0x09, - 0x4e, 0x32, 0xc1, 0x6e, 0x0e, 0xe2, 0x1c, 0x9a, 0xaa, 0x7e, 0x4c, 0xe8, 0x7b, 0x95, 0xa9, 0x11, - 0xbd, 0x8a, 0x60, 0xc0, 0xa9, 0x02, 0x3e, 0x73, 0x7a, 0xb8, 0xcf, 0xe4, 0xa4, 0xa3, 0xf8, 0xcc, - 0xc2, 0x70, 0x9f, 0x29, 0x98, 0x0d, 0xf4, 0x99, 0xdf, 0xa5, 0xd3, 0xfb, 0xf7, 0x0c, 0x54, 0xe3, - 0x6b, 0x50, 0xf8, 0x9e, 0x07, 0x30, 0x45, 0x18, 0x64, 0x14, 0xcf, 0x27, 0x68, 0x05, 0x05, 0x7a, - 0x0e, 0x79, 0xd3, 0xda, 0xb3, 0xd9, 0xc1, 0x2e, 0x31, 0x76, 0x49, 0xeb, 0x75, 0xb9, 0x6e, 0xed, - 0xd9, 0x5c, 0x49, 0x8c, 0x43, 0xed, 0x7d, 0x28, 0xfa, 0xa0, 0xb1, 0xc6, 0xb6, 0x09, 0x0b, 0x11, - 0x93, 0xe5, 0xc1, 0xbe, 0x6f, 0xe9, 0x99, 0xf1, 0x2c, 0x5d, 0xf9, 0x59, 0x36, 0xb8, 0x12, 0x9f, - 0x9a, 0x1d, 0x0f, 0xbb, 0xb1, 0x95, 0xf8, 0x48, 0x72, 0xe7, 0xcb, 0xf0, 0xda, 0x50, 0xee, 0x3c, - 0x26, 0x15, 0x8b, 0xe9, 0x73, 0x98, 0x65, 0xb6, 0xa6, 0x11, 0xdc, 0x61, 0x01, 0x87, 0x08, 0xfe, - 0x7e, 0x38, 0x88, 0x0d, 0x97, 0x84, 0x5b, 0x6c, 0x53, 0xd0, 0x71, 0x0d, 0x96, 0x3b, 0x41, 0x58, - 0xed, 0x23, 0x40, 0x71, 0xa4, 0xb1, 0x74, 0xda, 0xa4, 0x2e, 0x8e, 0x9e, 0x7e, 0x13, 0x76, 0xc9, - 0x3d, 0x26, 0xc6, 0x28, 0xb6, 0xc2, 0x05, 0x56, 0x05, 0x85, 0xf2, 0xeb, 0x1c, 0x40, 0xff, 0xe5, - 0x1f, 0x90, 0x6f, 0xfb, 0xc8, 0xf7, 0x2b, 0x3c, 0x90, 0xbb, 0x31, 0x88, 0x71, 0xa2, 0x47, 0xd9, - 0x0c, 0x7b, 0x14, 0x1e, 0xd2, 0xdd, 0x1e, 0xc8, 0xe6, 0x7b, 0xeb, 0x4b, 0x5e, 0xc0, 0x99, 0xa8, - 0x6d, 0x08, 0x47, 0xb2, 0x02, 0x93, 0xa6, 0x87, 0xbb, 0x3c, 0x03, 0x94, 0x78, 0x3a, 0x0b, 0x10, - 0x71, 0x54, 0x65, 0x09, 0x8a, 0xf5, 0xae, 0xde, 0xc6, 0x4d, 0x07, 0xb7, 0x68, 0xa7, 0x26, 0x6d, - 0x08, 0x41, 0x78, 0x43, 0x59, 0x81, 0xc2, 0x8f, 0xf1, 0x31, 0x5f, 0xd4, 0x23, 0x0a, 0xaa, 0xfc, - 0x73, 0x01, 0x16, 0xd9, 0x5e, 0xb1, 0x26, 0xf3, 0x2f, 0x2a, 0x26, 0x76, 0xcf, 0x6d, 0x61, 0xc2, - 0x66, 0xdb, 0xe9, 0x69, 0x0e, 0x76, 0x4d, 0xdb, 0x10, 0xa9, 0x80, 0x62, 0xcb, 0xe9, 0x6d, 0x31, - 0x00, 0x3a, 0x07, 0xb4, 0xa1, 0x7d, 0xd9, 0xb3, 0x85, 0x21, 0xe6, 0xd4, 0x42, 0xcb, 0xe9, 0xfd, - 0x31, 0x6d, 0x4b, 0x5a, 0xb2, 0xaf, 0xbb, 0x98, 0x30, 0x3b, 0xe3, 0xb4, 0x4d, 0x06, 0x40, 0x77, - 0xe1, 0x74, 0x17, 0x77, 0x6d, 0xf7, 0x58, 0xeb, 0x98, 0x5d, 0xd3, 0xd3, 0x4c, 0x4b, 0xdb, 0x3d, - 0xf6, 0x30, 0x11, 0x36, 0x85, 0xf8, 0xcb, 0x17, 0xf4, 0x5d, 0xdd, 0x7a, 0x42, 0xdf, 0x20, 0x05, - 0xca, 0xb6, 0xdd, 0xd5, 0x48, 0xcb, 0x76, 0xb1, 0xa6, 0x1b, 0x5f, 0xb0, 0xed, 0x33, 0xa7, 0x96, - 0x6c, 0xbb, 0xdb, 0xa4, 0xb0, 0x55, 0xe3, 0x0b, 0x74, 0x11, 0x4a, 0x2d, 0xa7, 0x47, 0xb0, 0xa7, - 0xd1, 0x1f, 0xb6, 0x3b, 0x16, 0x55, 0xe0, 0xa0, 0x35, 0xa7, 0x47, 0x02, 0x08, 0x5d, 0xaa, 0xff, - 0xe9, 0x20, 0xc2, 0x4b, 0xdc, 0x25, 0xe8, 0x15, 0x80, 0x61, 0x92, 0x03, 0x31, 0x2a, 0x83, 0xcd, - 0xcf, 0x07, 0x29, 0xdb, 0x6b, 0x5c, 0x65, 0xcb, 0xeb, 0x26, 0x39, 0x60, 0x0a, 0xe0, 0xa6, 0x58, - 0x34, 0x64, 0x1b, 0x2d, 0xc1, 0xcc, 0x6e, 0xe7, 0xc0, 0xb4, 0xb5, 0x23, 0x6c, 0xb6, 0xf7, 0xbd, - 0x2a, 0x66, 0xc7, 0xbb, 0x12, 0x83, 0xbd, 0x62, 0x20, 0xd4, 0x80, 0x53, 0x41, 0x14, 0xcd, 0xc0, - 0x87, 0x66, 0x0b, 0x57, 0xf7, 0x98, 0x10, 0x17, 0xe2, 0x42, 0x70, 0xb2, 0x75, 0x86, 0xa5, 0xce, - 0x07, 0x38, 0x71, 0x10, 0x6a, 0xc2, 0x69, 0xce, 0x8f, 0x33, 0xd2, 0x5c, 0xac, 0x1b, 0xda, 0xae, - 0x43, 0xaa, 0x6d, 0xc6, 0xf1, 0x52, 0x9c, 0xe3, 0xf6, 0xbe, 0x6b, 0x7b, 0x5e, 0x07, 0x0b, 0x9e, - 0x88, 0x91, 0x8b, 0x06, 0xd6, 0x8d, 0x27, 0x0e, 0xdd, 0xf3, 0xcf, 0x84, 0x98, 0x1e, 0xb9, 0xa6, - 0x87, 0x19, 0xd7, 0xfd, 0x11, 0xb9, 0x9e, 0x0a, 0x70, 0x7d, 0x45, 0xa9, 0x93, 0xd8, 0x32, 0x59, - 0xeb, 0x9b, 0x0e, 0xa9, 0x9a, 0x27, 0x60, 0x4b, 0x85, 0xa5, 0xc4, 0xe8, 0x15, 0x2c, 0x26, 0x48, - 0xcb, 0xf8, 0x7e, 0x31, 0x22, 0xdf, 0x85, 0xa8, 0xb8, 0x8c, 0xf1, 0x65, 0x28, 0x1f, 0x60, 0xd7, - 0xc2, 0x1d, 0x8d, 0x9b, 0x6a, 0xf5, 0x80, 0x59, 0xe3, 0x0c, 0x07, 0xbe, 0x64, 0x30, 0x74, 0x1b, - 0x84, 0x21, 0x6b, 0x2e, 0x26, 0xd8, 0x3d, 0xe4, 0xa9, 0xc6, 0x0e, 0xc3, 0x9c, 0xe7, 0x6f, 0xd4, - 0xfe, 0x0b, 0x54, 0x07, 0x01, 0xd4, 0xc8, 0x11, 0x3b, 0xde, 0x62, 0x42, 0xaa, 0xdd, 0x11, 0x12, - 0x38, 0x15, 0x4e, 0xd6, 0xf4, 0xa9, 0xd0, 0x0a, 0x4c, 0xf7, 0xd8, 0xca, 0x22, 0x55, 0x8b, 0x8d, - 0xb3, 0x1a, 0x67, 0xb0, 0xc3, 0x10, 0x54, 0x89, 0x58, 0x7b, 0x04, 0xb3, 0x61, 0xf3, 0x1d, 0xcb, - 0xdb, 0x3d, 0x80, 0x99, 0x90, 0xf1, 0x21, 0xc8, 0x07, 0xd2, 0xbb, 0xec, 0x19, 0x9d, 0x81, 0x29, - 0x8e, 0xc3, 0xc8, 0xcb, 0xaa, 0x68, 0x29, 0x1f, 0xc0, 0x6c, 0x58, 0xe9, 0x89, 0xd4, 0x08, 0xf2, - 0xae, 0x0c, 0x24, 0xf2, 0x2a, 0x7b, 0x56, 0xd6, 0x61, 0x8a, 0x0f, 0x23, 0x31, 0xfb, 0x82, 0x20, - 0xbf, 0xaf, 0xbb, 0x86, 0x70, 0x4e, 0xec, 0x99, 0xc2, 0x88, 0xbd, 0xe7, 0x09, 0x97, 0xc4, 0x9e, - 0x15, 0x1d, 0xca, 0xa1, 0xfc, 0x21, 0x45, 0x62, 0x89, 0x42, 0xc1, 0x8c, 0x3e, 0xb3, 0xee, 0xed, - 0x8e, 0x1c, 0x39, 0x7b, 0xa6, 0x30, 0xef, 0xd8, 0x91, 0x79, 0x1c, 0xf6, 0x4c, 0x55, 0xd4, 0xc1, - 0x87, 0x22, 0xef, 0x5c, 0x54, 0x79, 0x43, 0x31, 0x00, 0xd6, 0x74, 0x47, 0xdf, 0x35, 0x3b, 0xa6, - 0x77, 0x8c, 0x6e, 0x42, 0x45, 0x37, 0x0c, 0xad, 0x25, 0x21, 0x26, 0x96, 0xd5, 0x80, 0x39, 0xdd, - 0x30, 0xd6, 0x02, 0x60, 0xf4, 0x36, 0xcc, 0x1b, 0xae, 0xed, 0x84, 0x71, 0x79, 0x79, 0xa0, 0x42, - 0x5f, 0x04, 0x91, 0x95, 0xff, 0x99, 0x84, 0xf3, 0x61, 0xd7, 0x14, 0xcd, 0xd1, 0x7e, 0x04, 0x33, - 0x91, 0x5e, 0x53, 0xcc, 0xab, 0x2f, 0xad, 0x1a, 0xa2, 0x88, 0xe4, 0x2c, 0xb3, 0xb1, 0x9c, 0x65, - 0x62, 0x16, 0x38, 0xf7, 0x46, 0xb3, 0xc0, 0xf9, 0x37, 0x92, 0x05, 0x9e, 0x1c, 0x2f, 0x0b, 0x7c, - 0x8d, 0xe5, 0x2e, 0x24, 0x35, 0xb3, 0x35, 0xbe, 0xbf, 0x94, 0x7d, 0x1c, 0x4b, 0x96, 0x91, 0x22, - 0xd9, 0xe2, 0xe9, 0x71, 0xb2, 0xc5, 0x85, 0xd4, 0x6c, 0x31, 0xb5, 0x1a, 0xc7, 0xd1, 0xdd, 0xae, - 0xed, 0xca, 0x74, 0x70, 0xb5, 0xc8, 0x44, 0x98, 0x93, 0x70, 0x91, 0x0a, 0x4e, 0x4d, 0x1c, 0x43, - 0x6a, 0xe2, 0xf8, 0x12, 0xcc, 0x58, 0xb6, 0x66, 0xe1, 0x23, 0x8d, 0xce, 0x25, 0xa9, 0x96, 0xf8, - 0xc4, 0x5a, 0x76, 0x03, 0x1f, 0x6d, 0x51, 0x48, 0x2c, 0xb5, 0x3c, 0x33, 0x5e, 0x6a, 0x99, 0xee, - 0x80, 0x5d, 0x9d, 0x1c, 0x60, 0x83, 0x89, 0x42, 0xaa, 0x65, 0x66, 0xc4, 0x25, 0x0e, 0xa3, 0x32, - 0x10, 0x74, 0x15, 0x7c, 0x25, 0x09, 0xa4, 0x59, 0x86, 0x54, 0x96, 0x50, 0x86, 0xa6, 0xfc, 0x43, - 0x06, 0x16, 0xc2, 0x66, 0x2e, 0x12, 0x8a, 0xcf, 0xa0, 0xe8, 0xca, 0xbd, 0x58, 0x98, 0xf6, 0xcd, - 0x91, 0x37, 0x6f, 0xb5, 0x4f, 0x8b, 0x7e, 0x92, 0x9a, 0xc7, 0xbe, 0x33, 0x8c, 0xdf, 0xb0, 0x4c, - 0xb6, 0x52, 0x87, 0x8b, 0xaf, 0x4c, 0xcb, 0xb0, 0x8f, 0x48, 0xea, 0x2a, 0x4d, 0xb0, 0xb5, 0x4c, - 0x82, 0xad, 0x29, 0xff, 0x98, 0x81, 0x33, 0x51, 0x5e, 0x42, 0x15, 0xf5, 0xb8, 0x2a, 0xde, 0x4e, - 0x08, 0x21, 0x22, 0xc4, 0x89, 0xca, 0xf8, 0x3c, 0x55, 0x19, 0x77, 0x87, 0x73, 0x1c, 0xaa, 0x8e, - 0x5f, 0x65, 0xe0, 0x6c, 0xaa, 0x18, 0x91, 0x38, 0x32, 0x13, 0x8d, 0x23, 0x45, 0x0c, 0xda, 0xb2, - 0x7b, 0x96, 0x17, 0x88, 0x41, 0xd7, 0x58, 0xad, 0x91, 0x07, 0x7b, 0x5a, 0x57, 0x7f, 0x6d, 0x76, - 0x7b, 0x5d, 0xe1, 0xf1, 0x29, 0xbb, 0x97, 0x1c, 0x72, 0x82, 0x28, 0x54, 0x59, 0x85, 0x79, 0x5f, - 0xca, 0x81, 0x99, 0xff, 0x40, 0x26, 0x3f, 0x1b, 0xce, 0xe4, 0x5b, 0x30, 0x25, 0x76, 0xb9, 0x37, - 0x51, 0x0c, 0xbd, 0x04, 0x25, 0x07, 0xbb, 0x5d, 0x93, 0x10, 0xdf, 0xd1, 0x16, 0xd5, 0x20, 0x48, - 0xf9, 0xe5, 0x34, 0xcc, 0x45, 0xad, 0xe3, 0xc3, 0x58, 0xe1, 0xe0, 0x72, 0xc2, 0x16, 0x10, 0x1d, - 0x68, 0xe0, 0x08, 0x79, 0x57, 0x9e, 0x40, 0xb2, 0x69, 0xd9, 0x3b, 0xff, 0xb4, 0x22, 0x8e, 0x27, - 0x54, 0x23, 0x2d, 0xbb, 0xdb, 0xd5, 0x2d, 0x43, 0xd6, 0xb0, 0x45, 0x93, 0xea, 0x4f, 0x77, 0xdb, - 0x54, 0xed, 0x14, 0xcc, 0x9e, 0xe9, 0xe4, 0x1d, 0xd9, 0xee, 0x81, 0x69, 0xb1, 0x02, 0x04, 0x73, - 0xd6, 0x45, 0x15, 0x04, 0x68, 0xdd, 0x74, 0xd1, 0x32, 0xe4, 0xb1, 0x75, 0x28, 0xcf, 0x88, 0x09, - 0x45, 0x6e, 0x79, 0x16, 0x52, 0x19, 0x1e, 0xba, 0x03, 0x53, 0x5d, 0x6a, 0x16, 0x32, 0xe9, 0xb5, - 0x98, 0x52, 0xeb, 0x55, 0x05, 0x1a, 0x8d, 0xa1, 0x78, 0xd4, 0x28, 0x33, 0x5b, 0x09, 0x31, 0x94, - 0x88, 0x11, 0x25, 0x22, 0xda, 0xf0, 0x4f, 0xc0, 0xc5, 0xb4, 0xa3, 0x6b, 0x64, 0x2a, 0x12, 0x8f, - 0xc1, 0xdb, 0xe1, 0x63, 0x30, 0x30, 0x5e, 0x2b, 0xc3, 0x79, 0x0d, 0xae, 0x45, 0x9c, 0x85, 0x42, - 0xc7, 0x6e, 0x73, 0x33, 0x2a, 0xf1, 0xeb, 0x11, 0x1d, 0xbb, 0xcd, 0xac, 0x68, 0x01, 0x26, 0x89, - 0x67, 0x98, 0x16, 0x73, 0xea, 0x05, 0x95, 0x37, 0xe8, 0xe2, 0x63, 0x0f, 0x9a, 0x6d, 0xb5, 0x70, - 0xb5, 0xcc, 0x5e, 0x15, 0x19, 0x64, 0xd3, 0x6a, 0xb1, 0x33, 0xa6, 0xe7, 0x1d, 0x57, 0x67, 0x19, - 0x9c, 0x3e, 0xa2, 0x47, 0x32, 0x2f, 0x39, 0x97, 0x96, 0xec, 0x49, 0x72, 0xdb, 0x32, 0x2d, 0xf9, - 0x04, 0xa6, 0x8f, 0xb8, 0x23, 0xa8, 0x56, 0x18, 0xfd, 0x8d, 0xe1, 0xee, 0x45, 0x70, 0x90, 0x84, - 0x74, 0x93, 0xb1, 0xb0, 0x47, 0xf7, 0x30, 0x9b, 0x3a, 0x19, 0x56, 0x98, 0xcf, 0xa9, 0x25, 0x0b, - 0x7b, 0x5b, 0x02, 0x44, 0xd5, 0xc0, 0x4e, 0x77, 0x9a, 0x69, 0xb0, 0x53, 0x58, 0x51, 0x9d, 0x66, - 0xed, 0xba, 0xf1, 0x5d, 0x66, 0x0b, 0x7e, 0x9d, 0x81, 0x33, 0x6b, 0x2c, 0x93, 0x12, 0xf0, 0x82, - 0xe3, 0x24, 0xff, 0xef, 0xfb, 0x75, 0x99, 0xd4, 0x4c, 0x7d, 0x54, 0x6b, 0xb2, 0x2c, 0x53, 0x87, - 0x59, 0xc9, 0x5c, 0xb0, 0xc8, 0x8d, 0x5c, 0xda, 0x29, 0x93, 0x60, 0x53, 0x79, 0x04, 0x8b, 0xb1, - 0x51, 0x88, 0xac, 0xc7, 0x12, 0xcc, 0xf4, 0xbd, 0x9d, 0x3f, 0x88, 0x92, 0x0f, 0xab, 0x1b, 0xca, - 0x03, 0x38, 0xdd, 0xf4, 0x74, 0xd7, 0x8b, 0xa9, 0x60, 0x04, 0x5a, 0x56, 0xb4, 0x09, 0xd3, 0x8a, - 0xba, 0x4a, 0x13, 0x16, 0x9a, 0x9e, 0xed, 0x9c, 0x80, 0x29, 0xf5, 0x59, 0x74, 0xfc, 0x76, 0x4f, - 0xee, 0x2e, 0xb2, 0xa9, 0x2c, 0xf2, 0x12, 0x53, 0xbc, 0xb7, 0x87, 0x70, 0x86, 0x57, 0x78, 0x4e, - 0x32, 0x88, 0xb3, 0xb2, 0xbe, 0x14, 0xe7, 0xfb, 0x12, 0x4e, 0xf5, 0x37, 0xd5, 0x7e, 0xf6, 0xf6, - 0x5e, 0x38, 0x7b, 0x7b, 0x69, 0xc0, 0xac, 0x87, 0x92, 0xb7, 0xbf, 0xcc, 0x06, 0x76, 0x85, 0x94, - 0xdc, 0xed, 0xc3, 0x70, 0xee, 0xf6, 0xea, 0x30, 0xde, 0xa1, 0xd4, 0x6d, 0xdc, 0x6a, 0x73, 0x09, - 0x56, 0xfb, 0x59, 0x2c, 0xc1, 0x9b, 0x4f, 0xcb, 0x90, 0x47, 0xa4, 0xfd, 0xbd, 0xe4, 0x77, 0x55, - 0x9e, 0xdf, 0xf5, 0xbb, 0xf6, 0x0b, 0x72, 0xf7, 0x23, 0xf9, 0xdd, 0xa5, 0xa1, 0xf2, 0xfa, 0xe9, - 0xdd, 0xbf, 0xcf, 0x43, 0xd1, 0x7f, 0x17, 0xd3, 0x79, 0x5c, 0x6d, 0xd9, 0x04, 0xb5, 0x05, 0xf7, - 0xef, 0xdc, 0x37, 0xda, 0xbf, 0xf3, 0x23, 0xef, 0xdf, 0xe7, 0xa0, 0xc8, 0x1e, 0x34, 0x17, 0xef, - 0x89, 0xfd, 0xb8, 0xc0, 0x00, 0x2a, 0xde, 0xeb, 0x9b, 0xe1, 0xd4, 0x58, 0x66, 0x18, 0xc9, 0x28, - 0x4f, 0x47, 0x33, 0xca, 0x1f, 0xfa, 0xfb, 0x29, 0xdf, 0x82, 0xaf, 0x0f, 0xe0, 0x9b, 0xb8, 0x93, - 0x36, 0xc2, 0x3b, 0x29, 0xdf, 0x95, 0xdf, 0x19, 0xc4, 0xe5, 0x7b, 0x9b, 0x4f, 0xde, 0xe1, 0xf9, - 0xe4, 0xa0, 0x2d, 0x0a, 0xcf, 0xfa, 0x10, 0xc0, 0x77, 0x22, 0x32, 0xa9, 0x7c, 0x6e, 0xc0, 0x18, - 0xd5, 0x00, 0x3a, 0x65, 0x1b, 0x9a, 0x9a, 0x7e, 0xd1, 0x79, 0x34, 0xff, 0x98, 0x52, 0x71, 0xfe, - 0xdb, 0x42, 0xc0, 0xbf, 0xa4, 0x54, 0x69, 0x3f, 0x8c, 0x55, 0x32, 0xc6, 0xb4, 0xe2, 0x7b, 0xe1, - 0x42, 0xc6, 0x09, 0xad, 0x2e, 0x56, 0xc7, 0x60, 0x71, 0x8f, 0xee, 0x8a, 0xd7, 0x3c, 0xcf, 0x5c, - 0x14, 0x90, 0x55, 0x76, 0xae, 0xd8, 0x33, 0x2d, 0x93, 0xec, 0xf3, 0xf7, 0x53, 0xfc, 0x5c, 0x21, - 0x41, 0xab, 0xec, 0x92, 0x24, 0x7e, 0x6d, 0x7a, 0x5a, 0xcb, 0x36, 0x30, 0xb3, 0xe9, 0x49, 0xb5, - 0x40, 0x01, 0x6b, 0xb6, 0x81, 0xfb, 0x2b, 0xaf, 0x70, 0xb2, 0x95, 0x57, 0x8c, 0xac, 0xbc, 0x33, - 0x30, 0xe5, 0x62, 0x9d, 0xd8, 0x96, 0x38, 0xdc, 0x8b, 0x16, 0x9d, 0x9a, 0x2e, 0x26, 0x84, 0xf6, - 0x24, 0x82, 0x3d, 0xd1, 0x0c, 0x04, 0xa9, 0x33, 0x43, 0x83, 0xd4, 0x01, 0xd5, 0xdf, 0x48, 0x90, - 0x5a, 0x1e, 0x1a, 0xa4, 0x8e, 0x52, 0xfc, 0x0d, 0x84, 0xe9, 0xb3, 0xa3, 0x85, 0xe9, 0xc1, 0xa8, - 0x76, 0x2e, 0x1c, 0xd5, 0x3e, 0x87, 0xe9, 0x43, 0xbb, 0xd3, 0xeb, 0x62, 0x22, 0x32, 0xf9, 0xcb, - 0xc3, 0xa5, 0xfb, 0x98, 0x13, 0x88, 0xdb, 0x62, 0x82, 0x3c, 0x9c, 0x58, 0xc0, 0xdf, 0x20, 0xb1, - 0x10, 0x0c, 0x3e, 0xf7, 0x42, 0xc1, 0xa7, 0x7f, 0xa0, 0x69, 0x8f, 0x76, 0xa0, 0xf9, 0x0e, 0x5d, - 0x51, 0x6d, 0x1b, 0x66, 0x82, 0x7a, 0x4a, 0xa0, 0x5d, 0x0e, 0xd2, 0x26, 0x1e, 0x9d, 0x38, 0x83, - 0xa0, 0x83, 0x2b, 0xc0, 0x14, 0x07, 0x2a, 0xff, 0x9a, 0x81, 0xc5, 0x98, 0x53, 0x12, 0xce, 0xee, - 0x7e, 0xa4, 0x0a, 0xbf, 0x34, 0x74, 0x4e, 0xfd, 0x22, 0xfc, 0xb3, 0x50, 0x11, 0xfe, 0xbd, 0xe1, - 0x84, 0x6f, 0xbc, 0x06, 0xff, 0x17, 0x19, 0xb8, 0xb8, 0xe3, 0x18, 0x91, 0xf8, 0x58, 0x98, 0xc9, - 0xe8, 0x6e, 0xf7, 0x43, 0x79, 0xce, 0xca, 0x8e, 0x6b, 0x8a, 0x9c, 0x4e, 0x51, 0xe0, 0x52, 0xba, - 0x18, 0x22, 0xe0, 0xfc, 0x29, 0xcc, 0x6d, 0xbc, 0xc6, 0xad, 0xe6, 0xb1, 0xd5, 0x1a, 0x43, 0xb4, - 0x0a, 0xe4, 0x5a, 0x5d, 0x43, 0x64, 0xa8, 0xe9, 0x63, 0x30, 0x86, 0xce, 0x85, 0x63, 0x68, 0x0d, - 0x2a, 0xfd, 0x1e, 0xc4, 0xf4, 0x9e, 0xa1, 0xd3, 0x6b, 0x50, 0x64, 0xca, 0x7c, 0x46, 0x15, 0x2d, - 0x01, 0xc7, 0x2e, 0xbf, 0x31, 0xc6, 0xe1, 0xd8, 0x75, 0xc3, 0xbe, 0x36, 0x17, 0xf6, 0xb5, 0xca, - 0x5f, 0x67, 0xa0, 0x44, 0x7b, 0xf8, 0x46, 0xf2, 0x8b, 0x63, 0x6e, 0xae, 0x7f, 0xcc, 0xf5, 0x4f, - 0xcb, 0xf9, 0xe0, 0x69, 0xb9, 0x2f, 0xf9, 0x24, 0x03, 0xc7, 0x25, 0x9f, 0xf2, 0xe1, 0xd8, 0x75, - 0x95, 0x4b, 0x30, 0xc3, 0x65, 0x13, 0x23, 0xaf, 0x40, 0xae, 0xe7, 0x76, 0xa4, 0x1d, 0xf5, 0xdc, - 0x8e, 0xf2, 0x97, 0x19, 0x28, 0xaf, 0x7a, 0x9e, 0xde, 0xda, 0x1f, 0x63, 0x00, 0xbe, 0x70, 0xd9, - 0xa0, 0x70, 0xf1, 0x41, 0xf4, 0xc5, 0xcd, 0xa7, 0x88, 0x3b, 0x19, 0x12, 0x57, 0x81, 0x59, 0x29, - 0x4b, 0xaa, 0xc0, 0x0d, 0x40, 0x5b, 0xb6, 0xeb, 0x3d, 0xb5, 0xdd, 0x23, 0xdd, 0x35, 0xc6, 0x3b, - 0xbf, 0x22, 0xc8, 0x8b, 0xcf, 0x0e, 0x72, 0x37, 0x26, 0x55, 0xf6, 0xac, 0x5c, 0x87, 0x53, 0x21, - 0x7e, 0xa9, 0x1d, 0x7f, 0x04, 0x25, 0xb6, 0x6b, 0x8a, 0x83, 0xcc, 0xdd, 0x60, 0x7d, 0x7c, 0xa4, - 0x3d, 0x56, 0xf9, 0x23, 0x98, 0xa7, 0xd1, 0x15, 0x83, 0xfb, 0x4b, 0xf1, 0x87, 0x91, 0x28, 0xff, - 0x7c, 0x0a, 0xa3, 0x48, 0x84, 0xff, 0xdb, 0x2c, 0x4c, 0x32, 0x78, 0x2c, 0xe2, 0x39, 0x47, 0xf7, - 0x11, 0xc7, 0xd6, 0x3c, 0xbd, 0xed, 0x7f, 0xe4, 0x41, 0x01, 0xdb, 0x7a, 0x9b, 0xe5, 0x2e, 0xd8, - 0x4b, 0xc3, 0x6c, 0x63, 0xe2, 0xc9, 0x2f, 0x3d, 0x4a, 0x14, 0xb6, 0xce, 0x41, 0xac, 0x7a, 0x65, - 0xfe, 0x09, 0x8f, 0xda, 0xf3, 0x2a, 0x7b, 0x46, 0xcb, 0xfc, 0x8e, 0xf1, 0x28, 0xe5, 0x0c, 0x76, - 0x03, 0xb9, 0x06, 0x85, 0x48, 0x05, 0xc3, 0x6f, 0xa3, 0xc7, 0xd1, 0x1d, 0xf3, 0x4a, 0xca, 0x88, - 0x93, 0xf7, 0xc9, 0x6f, 0x69, 0x63, 0xd8, 0x00, 0x14, 0x9c, 0x1b, 0x61, 0x05, 0x77, 0x60, 0x8a, - 0x4d, 0x9d, 0x8c, 0x78, 0x17, 0x53, 0x44, 0x55, 0x05, 0x9a, 0xa2, 0x03, 0xe2, 0xd3, 0x1e, 0x8a, - 0x72, 0xc7, 0xb7, 0x95, 0x01, 0x51, 0xef, 0x3f, 0x65, 0xe0, 0x54, 0xa8, 0x0f, 0x21, 0xeb, 0xed, - 0x70, 0x27, 0xa9, 0xa2, 0x8a, 0x0e, 0xd6, 0x42, 0x1b, 0xd5, 0x9d, 0x34, 0x91, 0xbe, 0xa5, 0x4d, - 0xea, 0xb7, 0x19, 0x80, 0xd5, 0x9e, 0xb7, 0x2f, 0x72, 0xc5, 0x41, 0x7b, 0xc9, 0x44, 0xec, 0xa5, - 0x06, 0x05, 0x47, 0x27, 0xe4, 0xc8, 0x76, 0xe5, 0x39, 0xd5, 0x6f, 0xb3, 0xac, 0x6e, 0xcf, 0xdb, - 0x97, 0xc5, 0x51, 0xfa, 0x8c, 0xae, 0xc2, 0x2c, 0xff, 0xdc, 0x49, 0xd3, 0x0d, 0xc3, 0xc5, 0x84, - 0x88, 0x2a, 0x69, 0x99, 0x43, 0x57, 0x39, 0x90, 0xa2, 0x99, 0x06, 0xb6, 0x3c, 0xd3, 0x3b, 0xd6, - 0x3c, 0xfb, 0x00, 0x5b, 0xe2, 0xbc, 0x59, 0x96, 0xd0, 0x6d, 0x0a, 0xe4, 0xe5, 0xa2, 0xb6, 0x49, - 0x3c, 0x57, 0xa2, 0xc9, 0x8a, 0x9c, 0x80, 0x32, 0x34, 0x3a, 0x29, 0x95, 0xad, 0x5e, 0xa7, 0xc3, - 0x55, 0x7c, 0xf2, 0x69, 0x7f, 0x57, 0x0c, 0x28, 0x9b, 0xb6, 0xd2, 0xfa, 0x4a, 0x13, 0xc3, 0x7d, - 0x83, 0x89, 0xb5, 0x77, 0x61, 0x3e, 0x30, 0x06, 0x61, 0x56, 0xa1, 0x83, 0x41, 0x26, 0x7c, 0x30, - 0x50, 0x9e, 0x01, 0xe2, 0xb9, 0xa4, 0x6f, 0x38, 0x6e, 0xe5, 0x34, 0x9c, 0x0a, 0x31, 0x12, 0xf1, - 0xc1, 0x2d, 0x28, 0x8b, 0xeb, 0xa9, 0xc2, 0x50, 0xce, 0x42, 0x81, 0xfa, 0xf9, 0x96, 0x69, 0xc8, - 0xca, 0xf9, 0xb4, 0x63, 0x1b, 0x6b, 0xa6, 0xe1, 0x2a, 0xaf, 0xa0, 0xac, 0xf2, 0x7e, 0x04, 0xee, - 0x53, 0x98, 0x15, 0x97, 0x59, 0xb5, 0xd0, 0x6d, 0xf2, 0xa4, 0xaf, 0x95, 0x82, 0x9d, 0xa8, 0x65, - 0x2b, 0xd8, 0x54, 0x0c, 0xa8, 0xf1, 0x40, 0x26, 0xc4, 0x5e, 0x0e, 0xf6, 0x29, 0xc8, 0x8b, 0xe5, - 0x43, 0x7b, 0x09, 0xd3, 0x97, 0xdd, 0x60, 0x53, 0x39, 0x0f, 0xe7, 0x12, 0x7b, 0x11, 0x9a, 0x70, - 0xa0, 0xd2, 0x7f, 0x61, 0x98, 0xf2, 0x0a, 0x01, 0xbb, 0x1a, 0x90, 0x09, 0x5c, 0x0d, 0x38, 0xe3, - 0x87, 0xae, 0x59, 0xb9, 0xb5, 0xb2, 0xb8, 0xb4, 0x7f, 0x84, 0xcb, 0xa5, 0x1d, 0xe1, 0xf2, 0xa1, - 0x23, 0x9c, 0xd2, 0xf4, 0xf5, 0x29, 0x8e, 0xd6, 0x4f, 0x58, 0x0a, 0x80, 0xf7, 0x2d, 0x1d, 0xa2, - 0x32, 0x68, 0x94, 0x1c, 0x55, 0x0d, 0x50, 0x29, 0x37, 0xa1, 0x1c, 0x76, 0x8d, 0x01, 0x3f, 0x97, - 0x89, 0xf9, 0xb9, 0xd9, 0x88, 0x8b, 0x7b, 0x3f, 0x12, 0x97, 0xa7, 0xeb, 0x38, 0x12, 0x95, 0x3f, - 0x0e, 0x39, 0xbb, 0x5b, 0x09, 0x55, 0xfd, 0x6f, 0xc9, 0xcf, 0x2d, 0x88, 0xfd, 0xe0, 0x29, 0xa1, - 0xf4, 0x62, 0xd0, 0xca, 0x65, 0x28, 0xed, 0xa4, 0x7d, 0x0a, 0x97, 0x97, 0xd7, 0xe6, 0xee, 0xc1, - 0xc2, 0x53, 0xb3, 0x83, 0xc9, 0x31, 0xf1, 0x70, 0xb7, 0xce, 0x9c, 0xd2, 0x9e, 0x89, 0x5d, 0x74, - 0x01, 0x80, 0x1d, 0x4b, 0x1d, 0xdb, 0xf4, 0xbf, 0x90, 0x0a, 0x40, 0x94, 0xdf, 0x65, 0x60, 0xae, - 0x4f, 0xb8, 0xc3, 0x8e, 0xe3, 0x6f, 0x41, 0x91, 0x8e, 0x97, 0x78, 0x7a, 0xd7, 0x91, 0x15, 0x4e, - 0x1f, 0x80, 0x1e, 0xc2, 0xe4, 0x1e, 0x91, 0x69, 0xc0, 0xc4, 0x92, 0x4a, 0x92, 0x20, 0x6a, 0x7e, - 0x8f, 0xd4, 0x0d, 0xf4, 0x08, 0xa0, 0x47, 0xb0, 0x21, 0xaa, 0x9a, 0xb9, 0xb4, 0x18, 0x66, 0x27, - 0x78, 0xe3, 0x81, 0x12, 0xf0, 0x1b, 0x77, 0x8f, 0xa1, 0x64, 0x5a, 0xb6, 0x81, 0x59, 0x15, 0xda, - 0x10, 0x99, 0xc2, 0x21, 0xe4, 0xc0, 0x29, 0x76, 0x08, 0x36, 0x14, 0x2c, 0xf6, 0x42, 0xa9, 0x5f, - 0x61, 0x28, 0x0d, 0x98, 0xe7, 0x4e, 0x6b, 0xcf, 0x17, 0x5c, 0x5a, 0xec, 0xd2, 0xa0, 0xd1, 0x31, - 0x6d, 0xa9, 0x15, 0x53, 0x04, 0x5c, 0x92, 0x54, 0x79, 0x00, 0xa7, 0x43, 0xe7, 0xb6, 0x31, 0x0e, - 0x52, 0xca, 0x56, 0x24, 0xf9, 0xd5, 0x37, 0x67, 0x91, 0x5a, 0x92, 0xd6, 0x3c, 0x2c, 0xb5, 0x44, - 0x78, 0x6a, 0x89, 0x28, 0x9f, 0xc1, 0xd9, 0x50, 0x96, 0x2e, 0x24, 0xd1, 0xe3, 0x48, 0x3c, 0x79, - 0x6d, 0x18, 0xd7, 0x48, 0x60, 0xf9, 0x7f, 0x19, 0x58, 0x48, 0x42, 0x38, 0x61, 0x16, 0xf9, 0xa7, - 0x29, 0xb7, 0xab, 0xef, 0x8f, 0x26, 0xd6, 0xef, 0x25, 0x03, 0xbf, 0x0d, 0xb5, 0x24, 0x7d, 0xc6, - 0x67, 0x29, 0x37, 0xce, 0x2c, 0xfd, 0x3c, 0x17, 0xa8, 0xa6, 0xac, 0x7a, 0x9e, 0x6b, 0xee, 0xf6, - 0xa8, 0xc9, 0xbf, 0xf1, 0x0c, 0x65, 0xdd, 0xcf, 0xb5, 0x71, 0xd5, 0xde, 0x1d, 0x40, 0xde, 0x97, - 0x23, 0x31, 0xdf, 0xf6, 0x49, 0x38, 0xdf, 0xc6, 0xeb, 0x24, 0xf7, 0x46, 0xe3, 0xf7, 0xbd, 0x4d, - 0x6a, 0xff, 0x3c, 0x0b, 0xb3, 0xe1, 0x29, 0x42, 0x1b, 0x00, 0xba, 0x2f, 0xb9, 0x58, 0x28, 0x57, - 0x47, 0x1a, 0xa6, 0x1a, 0x20, 0x44, 0xef, 0x40, 0xae, 0xe5, 0xf4, 0xc4, 0xac, 0x25, 0x64, 0xd3, - 0xd6, 0x9c, 0x1e, 0xf7, 0x28, 0x14, 0x8d, 0x9e, 0xf4, 0xc4, 0x45, 0xce, 0x54, 0x2f, 0xc9, 0x2f, - 0x75, 0x72, 0x1a, 0x81, 0x8c, 0x9e, 0xc3, 0xec, 0x91, 0x6b, 0x7a, 0xfa, 0x6e, 0x07, 0x6b, 0x1d, - 0xfd, 0x18, 0xbb, 0xc2, 0x4b, 0x8e, 0xe0, 0xc8, 0xca, 0x92, 0xf0, 0x05, 0xa5, 0x53, 0xfe, 0x0c, - 0x0a, 0x52, 0xa2, 0x21, 0x3b, 0xc2, 0x36, 0x2c, 0xf6, 0x28, 0x9a, 0xc6, 0x6e, 0x42, 0x5b, 0xba, - 0x65, 0x6b, 0x04, 0xd3, 0x6d, 0x5c, 0x7e, 0xa3, 0x35, 0xc4, 0x45, 0x2f, 0x30, 0xea, 0x35, 0xdb, - 0xc5, 0x0d, 0xdd, 0xb2, 0x9b, 0x9c, 0x54, 0x39, 0x84, 0x52, 0x60, 0x80, 0x43, 0x44, 0xa8, 0xc3, - 0xbc, 0xbc, 0x9c, 0x41, 0xb0, 0x27, 0xb6, 0x97, 0x91, 0x3a, 0x9f, 0x13, 0x74, 0x4d, 0xec, 0xf1, - 0x0b, 0x35, 0x8f, 0xe1, 0xac, 0x8a, 0x6d, 0x07, 0x5b, 0xfe, 0x7c, 0xbe, 0xb0, 0xdb, 0x63, 0x78, - 0xf0, 0xb7, 0xa0, 0x96, 0x44, 0x2f, 0x22, 0xb3, 0x7b, 0x32, 0x74, 0x15, 0x87, 0x4a, 0xc1, 0xf7, - 0x22, 0x94, 0xf8, 0x89, 0x55, 0x0b, 0x9c, 0x6a, 0x80, 0x83, 0x1a, 0x7a, 0x17, 0x2b, 0x67, 0x60, - 0x21, 0x4c, 0x27, 0xf8, 0x3d, 0x16, 0x45, 0xe6, 0x93, 0x7e, 0xfe, 0x77, 0x16, 0x16, 0x63, 0xf4, - 0x9c, 0xf5, 0xad, 0x6b, 0x50, 0x90, 0x7f, 0xcb, 0x80, 0xa6, 0x21, 0xb7, 0xbd, 0xb6, 0x55, 0x99, - 0xa0, 0x0f, 0x3b, 0xeb, 0x5b, 0x95, 0x0c, 0x2a, 0x40, 0xbe, 0xb9, 0xb6, 0xbd, 0x55, 0xc9, 0xde, - 0xea, 0x42, 0x25, 0xfa, 0x9f, 0x04, 0x68, 0x11, 0x4e, 0x6d, 0xa9, 0x9b, 0x5b, 0xab, 0xcf, 0x56, - 0xb7, 0xeb, 0x9b, 0x0d, 0x6d, 0x4b, 0xad, 0x7f, 0xbc, 0xba, 0xbd, 0x51, 0x99, 0x40, 0x4b, 0x70, - 0x3e, 0xf8, 0xe2, 0xf9, 0x66, 0x73, 0x5b, 0xdb, 0xde, 0xd4, 0xd6, 0x36, 0x1b, 0xdb, 0xab, 0xf5, - 0xc6, 0x86, 0x5a, 0xc9, 0xa0, 0xf3, 0x70, 0x36, 0x88, 0xf2, 0xa4, 0xbe, 0x5e, 0x57, 0x37, 0xd6, - 0xe8, 0xf3, 0xea, 0x8b, 0x4a, 0xf6, 0xd6, 0x5d, 0x28, 0x87, 0xfe, 0x2e, 0x80, 0x8a, 0xb4, 0xb5, - 0xb9, 0x5e, 0x99, 0x40, 0x65, 0x28, 0x06, 0xf9, 0x14, 0x20, 0xdf, 0xd8, 0x5c, 0xdf, 0xa8, 0x64, - 0x6f, 0x3d, 0x80, 0xb9, 0xc8, 0xf7, 0x23, 0x68, 0x1e, 0xca, 0xcd, 0xd5, 0xc6, 0xfa, 0x93, 0xcd, - 0x4f, 0x34, 0x75, 0x63, 0x75, 0xfd, 0xd3, 0xca, 0x04, 0x5a, 0x80, 0x8a, 0x04, 0x35, 0x36, 0xb7, - 0x39, 0x34, 0x73, 0xeb, 0x20, 0xe2, 0x0e, 0x30, 0x3a, 0x0d, 0xf3, 0x7e, 0x37, 0xda, 0x9a, 0xba, - 0xb1, 0xba, 0xbd, 0x41, 0x7b, 0x0f, 0x81, 0xd5, 0x9d, 0x46, 0xa3, 0xde, 0x78, 0x56, 0xc9, 0x50, - 0xae, 0x7d, 0xf0, 0xc6, 0x27, 0x75, 0x8a, 0x9c, 0x0d, 0x23, 0xef, 0x34, 0x7e, 0xdc, 0xd8, 0x7c, - 0xd5, 0xa8, 0xe4, 0x56, 0x7e, 0x85, 0x60, 0x56, 0xc6, 0xa4, 0xd8, 0x65, 0x57, 0xb2, 0xb6, 0x60, - 0x5a, 0xfe, 0xcd, 0x47, 0xc2, 0x66, 0x12, 0xfe, 0x73, 0x92, 0xda, 0xd2, 0x00, 0x0c, 0x61, 0x30, - 0x13, 0x68, 0x97, 0x85, 0xea, 0x81, 0xef, 0x79, 0xae, 0x25, 0x06, 0xc6, 0x31, 0x8b, 0xaa, 0x5d, - 0x1f, 0x8a, 0xe7, 0xf7, 0x81, 0x69, 0x34, 0x1e, 0xfc, 0x60, 0x15, 0x5d, 0x4f, 0x0a, 0xa3, 0x13, - 0xbe, 0x88, 0xad, 0xdd, 0x18, 0x8e, 0xe8, 0x77, 0x73, 0x00, 0x95, 0xe8, 0xc7, 0xab, 0x28, 0x21, - 0xf7, 0x9c, 0xf2, 0x85, 0x6c, 0xed, 0xd6, 0x28, 0xa8, 0xc1, 0xce, 0x62, 0x9f, 0x79, 0xde, 0x1c, - 0xe5, 0xbb, 0xb9, 0xd4, 0xce, 0xd2, 0x3e, 0xb1, 0xe3, 0x0a, 0x0c, 0x7f, 0xab, 0x83, 0x12, 0xbf, - 0xa9, 0x4c, 0xf8, 0xd2, 0x2b, 0x49, 0x81, 0xc9, 0x9f, 0xfd, 0x28, 0x13, 0x68, 0x1f, 0xe6, 0x22, - 0xb7, 0x63, 0x50, 0x02, 0x79, 0xf2, 0x35, 0xa0, 0xda, 0xcd, 0x11, 0x30, 0xc3, 0x16, 0x11, 0xbc, - 0x0d, 0x93, 0x6c, 0x11, 0x09, 0x77, 0x6d, 0x92, 0x2d, 0x22, 0xf1, 0x62, 0x0d, 0x33, 0xee, 0xd0, - 0x2d, 0x98, 0x24, 0xe3, 0x4e, 0xba, 0x7b, 0x53, 0xbb, 0x3e, 0x14, 0x2f, 0xa8, 0xb4, 0xc8, 0x9d, - 0x98, 0x24, 0xa5, 0x25, 0xdf, 0xb9, 0xa9, 0xdd, 0x1c, 0x01, 0x33, 0x6a, 0x05, 0xfd, 0x0a, 0x7b, - 0x9a, 0x15, 0xc4, 0xee, 0x83, 0xa4, 0x59, 0x41, 0xbc, 0x58, 0x2f, 0xac, 0x20, 0x52, 0x19, 0xbf, - 0x31, 0x42, 0x2d, 0x2a, 0xdd, 0x0a, 0x92, 0xab, 0x56, 0xca, 0x04, 0xfa, 0xf3, 0x0c, 0x54, 0xd3, - 0xea, 0x3c, 0x28, 0x21, 0x14, 0x1d, 0x52, 0x9a, 0xaa, 0xad, 0x8c, 0x43, 0xe2, 0x4b, 0xf1, 0x25, - 0xa0, 0xf8, 0x16, 0x8d, 0xde, 0x4e, 0x9a, 0x99, 0x94, 0x40, 0xa0, 0xf6, 0xce, 0x68, 0xc8, 0x7e, - 0x97, 0x4d, 0x28, 0xc8, 0xca, 0x12, 0x4a, 0xf0, 0xd2, 0x91, 0xba, 0x56, 0x4d, 0x19, 0x84, 0xe2, - 0x33, 0x7d, 0x06, 0x79, 0x0a, 0x45, 0xe7, 0x93, 0xb1, 0x25, 0xb3, 0x0b, 0x69, 0xaf, 0x7d, 0x46, - 0x2f, 0x61, 0x8a, 0x97, 0x52, 0x50, 0x42, 0x92, 0x24, 0x54, 0xf0, 0xa9, 0x5d, 0x4a, 0x47, 0xf0, - 0xd9, 0x7d, 0xce, 0xff, 0x01, 0x4a, 0x54, 0x49, 0xd0, 0x95, 0xe4, 0xbf, 0xcf, 0x08, 0x17, 0x65, - 0x6a, 0x57, 0x87, 0x60, 0x05, 0x17, 0x45, 0x24, 0x40, 0xbf, 0x3e, 0xf4, 0x94, 0x95, 0xbe, 0x28, - 0x92, 0xcf, 0x71, 0xdc, 0x48, 0xe2, 0xe7, 0xbc, 0x24, 0x23, 0x49, 0x3d, 0x5d, 0x27, 0x19, 0x49, - 0xfa, 0xd1, 0x51, 0x99, 0x40, 0x1e, 0x9c, 0x4a, 0xc8, 0xea, 0xa1, 0x77, 0xd2, 0x8c, 0x3c, 0x29, - 0xc5, 0x58, 0xbb, 0x3d, 0x22, 0x76, 0x70, 0xf2, 0xc5, 0xa2, 0xbf, 0x98, 0x9e, 0xea, 0x4a, 0x9d, - 0xfc, 0xd8, 0x12, 0xdf, 0x87, 0xb9, 0x48, 0x44, 0x89, 0xd2, 0x1c, 0x78, 0x7c, 0xef, 0xba, 0x39, - 0x02, 0xa6, 0xec, 0x69, 0xe5, 0x3f, 0x73, 0x30, 0xc3, 0x73, 0xc3, 0x22, 0x56, 0xfa, 0x14, 0xa0, - 0x5f, 0x96, 0x41, 0x97, 0x93, 0xb5, 0x1f, 0x2a, 0xa8, 0xd5, 0xae, 0x0c, 0x46, 0x0a, 0x9a, 0x74, - 0xa0, 0xc4, 0x81, 0xae, 0x0c, 0xa9, 0x80, 0xa4, 0x9a, 0x74, 0x42, 0x9d, 0x44, 0x99, 0x40, 0x1f, - 0x43, 0xd1, 0xcf, 0xa5, 0xa3, 0xa4, 0x5c, 0x7c, 0xa4, 0x58, 0x50, 0xbb, 0x3c, 0x10, 0x27, 0x28, - 0x75, 0x20, 0x51, 0x9e, 0x24, 0x75, 0x3c, 0x21, 0x9f, 0x24, 0x75, 0x52, 0xb6, 0xbd, 0xaf, 0x13, - 0x9e, 0x4e, 0x4b, 0xd5, 0x49, 0x28, 0x9b, 0x99, 0xaa, 0x93, 0x70, 0x4e, 0x4e, 0x99, 0x58, 0x71, - 0xa0, 0xcc, 0xcf, 0x3a, 0x72, 0x76, 0x35, 0x98, 0x09, 0x1e, 0x81, 0x50, 0xaa, 0x9c, 0xa1, 0xa3, - 0x55, 0xed, 0xda, 0x30, 0x34, 0xd9, 0xe3, 0x93, 0x6b, 0xbf, 0xf9, 0xea, 0x42, 0xe6, 0xdf, 0xbe, - 0xba, 0x30, 0xf1, 0xb3, 0xaf, 0x2f, 0x64, 0x7e, 0xf3, 0xf5, 0x85, 0xcc, 0xbf, 0x7c, 0x7d, 0x21, - 0xf3, 0x5f, 0x5f, 0x5f, 0xc8, 0xfc, 0xd5, 0x7f, 0x5f, 0x98, 0xf8, 0x49, 0x41, 0x92, 0xef, 0x4e, - 0xb1, 0xff, 0xa8, 0x7b, 0xef, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0x49, 0x3d, 0x95, 0x02, 0x69, - 0x50, 0x00, 0x00, + // 5292 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x7c, 0x4b, 0x73, 0x1b, 0x57, + 0x76, 0x30, 0xf1, 0x20, 0x09, 0x1c, 0x10, 0x24, 0x78, 0x49, 0x89, 0x10, 0x64, 0xbd, 0x5a, 0x6f, + 0xd9, 0xa2, 0x2c, 0x7a, 0x46, 0xb6, 0x1e, 0x23, 0x9b, 0x22, 0x29, 0x09, 0xdf, 0x48, 0x20, 0xbe, + 0x06, 0x69, 0xd9, 0x63, 0x57, 0xf5, 0x34, 0xd1, 0x97, 0x60, 0x5b, 0x40, 0x77, 0xbb, 0x6f, 0x43, + 0x14, 0x93, 0xaa, 0x94, 0xab, 0x52, 0x99, 0x45, 0x56, 0x59, 0x67, 0x39, 0xb3, 0xc8, 0x22, 0x9b, + 0x54, 0xaa, 0xb2, 0xca, 0x2a, 0xa9, 0xa9, 0xd4, 0x6c, 0xa6, 0x2a, 0xab, 0x54, 0x1e, 0x9b, 0xd8, + 0xc9, 0x6a, 0x16, 0xa9, 0xfc, 0x83, 0xa4, 0xee, 0xab, 0xd1, 0x4f, 0x3c, 0x68, 0x79, 0xec, 0xac, + 0x88, 0x7b, 0xfa, 0x9c, 0x73, 0xcf, 0x3d, 0xf7, 0xf4, 0xb9, 0xe7, 0x71, 0x9b, 0x50, 0xd4, 0x1d, + 0x73, 0xd5, 0x71, 0x6d, 0xcf, 0x46, 0x15, 0xb7, 0x6f, 0x79, 0x66, 0x0f, 0xaf, 0xbe, 0xba, 0xad, + 0x77, 0x9d, 0x03, 0x7d, 0xad, 0x76, 0xb3, 0x63, 0x7a, 0x07, 0xfd, 0xbd, 0xd5, 0xb6, 0xdd, 0xbb, + 0xd5, 0xb1, 0x3b, 0xf6, 0x2d, 0x86, 0xb8, 0xd7, 0xdf, 0x67, 0x23, 0x36, 0x60, 0xbf, 0x38, 0x03, + 0xe5, 0x06, 0xcc, 0x7f, 0x8c, 0x5d, 0x62, 0xda, 0x96, 0x8a, 0xbf, 0xec, 0x63, 0xe2, 0xa1, 0x2a, + 0xcc, 0xbe, 0xe2, 0x90, 0x6a, 0xe6, 0x7c, 0xe6, 0x5a, 0x51, 0x95, 0x43, 0xe5, 0x2f, 0x32, 0xb0, + 0xe0, 0x23, 0x13, 0xc7, 0xb6, 0x08, 0x4e, 0xc7, 0x46, 0x17, 0x60, 0x4e, 0x08, 0xa7, 0x59, 0x7a, + 0x0f, 0x57, 0xb3, 0xec, 0x71, 0x49, 0xc0, 0x1a, 0x7a, 0x0f, 0xa3, 0xab, 0xb0, 0x20, 0x51, 0x24, + 0x93, 0x1c, 0xc3, 0x9a, 0x17, 0x60, 0x31, 0x1b, 0x5a, 0x85, 0x25, 0x89, 0xa8, 0x3b, 0xa6, 0x8f, + 0x9c, 0x67, 0xc8, 0x8b, 0xe2, 0xd1, 0xba, 0x63, 0x0a, 0x7c, 0xe5, 0x33, 0x28, 0x6e, 0x36, 0x5a, + 0x1b, 0xb6, 0xb5, 0x6f, 0x76, 0xa8, 0x88, 0x04, 0xbb, 0x94, 0xa6, 0x9a, 0x39, 0x9f, 0xa3, 0x22, + 0x8a, 0x21, 0xaa, 0x41, 0x81, 0x60, 0xdd, 0x6d, 0x1f, 0x60, 0x52, 0xcd, 0xb2, 0x47, 0xfe, 0x98, + 0x52, 0xd9, 0x8e, 0x67, 0xda, 0x16, 0xa9, 0xe6, 0x38, 0x95, 0x18, 0x2a, 0xbf, 0xcc, 0x40, 0xa9, + 0x69, 0xbb, 0xde, 0x73, 0xdd, 0x71, 0x4c, 0xab, 0x83, 0xee, 0x40, 0x81, 0xe9, 0xb2, 0x6d, 0x77, + 0x99, 0x0e, 0xe6, 0xd7, 0x6a, 0xab, 0xd1, 0x6d, 0x59, 0x6d, 0x0a, 0x0c, 0xd5, 0xc7, 0x45, 0x97, + 0x61, 0xbe, 0x6d, 0x5b, 0x9e, 0x6e, 0x5a, 0xd8, 0xd5, 0x1c, 0xdb, 0xf5, 0x98, 0x8a, 0xa6, 0xd5, + 0xb2, 0x0f, 0xa5, 0xb3, 0xa0, 0xd3, 0x50, 0x3c, 0xb0, 0x89, 0xc7, 0x31, 0x72, 0x0c, 0xa3, 0x40, + 0x01, 0xec, 0xe1, 0x0a, 0xcc, 0xb2, 0x87, 0xa6, 0x23, 0x94, 0x31, 0x43, 0x87, 0x75, 0x47, 0xf9, + 0x5d, 0x06, 0xa6, 0x9f, 0xdb, 0x7d, 0xcb, 0x8b, 0x4c, 0xa3, 0x7b, 0x07, 0x62, 0xa3, 0x02, 0xd3, + 0xe8, 0xde, 0xc1, 0x60, 0x1a, 0x8a, 0xc1, 0xf7, 0x8a, 0x4f, 0x43, 0x1f, 0xd6, 0xa0, 0xe0, 0x62, + 0xdd, 0xb0, 0xad, 0xee, 0x11, 0x13, 0xa1, 0xa0, 0xfa, 0x63, 0xba, 0x89, 0x04, 0x77, 0x4d, 0xab, + 0xff, 0x5a, 0x73, 0x71, 0x57, 0xdf, 0xc3, 0x5d, 0x26, 0x4a, 0x41, 0x9d, 0x17, 0x60, 0x95, 0x43, + 0xd1, 0x26, 0x94, 0x1c, 0xd7, 0x76, 0xf4, 0x8e, 0x4e, 0xf5, 0x58, 0x9d, 0x66, 0xaa, 0x52, 0xe2, + 0xaa, 0x62, 0x62, 0x37, 0x07, 0x98, 0x6a, 0x90, 0x0c, 0x21, 0xc8, 0x33, 0x73, 0x32, 0x98, 0x88, + 0xec, 0xb7, 0xf2, 0xd7, 0x19, 0x58, 0xa0, 0x06, 0x45, 0x1c, 0xbd, 0x8d, 0xb7, 0xd9, 0x36, 0xa1, + 0xbb, 0x30, 0x6b, 0x61, 0xef, 0xd0, 0x76, 0x5f, 0x8a, 0x4d, 0x39, 0x17, 0x9f, 0xc9, 0xa7, 0x79, + 0x6e, 0x1b, 0x58, 0x95, 0xf8, 0xe8, 0x36, 0xe4, 0x1c, 0xd3, 0x60, 0x4a, 0x18, 0x83, 0x8c, 0xe2, + 0x52, 0x12, 0xd3, 0x69, 0x33, 0xdd, 0x8c, 0x43, 0x62, 0x3a, 0x6d, 0x45, 0x01, 0xa8, 0x5b, 0xde, + 0x9d, 0x1f, 0x7d, 0xac, 0x77, 0xfb, 0x18, 0x2d, 0xc3, 0xf4, 0x2b, 0xfa, 0x83, 0x09, 0x9b, 0x53, + 0xf9, 0x40, 0xf9, 0x3a, 0x07, 0xa7, 0x9f, 0x51, 0x1d, 0xb6, 0x74, 0xcb, 0xd8, 0xb3, 0x5f, 0xb7, + 0x70, 0xbb, 0xef, 0x9a, 0xde, 0xd1, 0x86, 0x6d, 0x79, 0xf8, 0xb5, 0x87, 0x1a, 0xb0, 0x68, 0x49, + 0xce, 0x9a, 0x34, 0x57, 0xca, 0xa1, 0xb4, 0x76, 0x61, 0x88, 0x10, 0x5c, 0x45, 0x6a, 0xc5, 0x0a, + 0x03, 0x08, 0x7a, 0x3a, 0xd8, 0x4b, 0xc9, 0x2d, 0xcb, 0xb8, 0x25, 0x2c, 0xa9, 0xb5, 0xc5, 0x24, + 0x13, 0xbc, 0xe4, 0x66, 0x4b, 0x4e, 0x0f, 0x80, 0xbe, 0xe9, 0x9a, 0x4e, 0xb4, 0x3e, 0xc1, 0x2e, + 0x53, 0x4c, 0x69, 0xed, 0xad, 0x38, 0x97, 0x81, 0x0a, 0xd4, 0xa2, 0xdb, 0xb7, 0xd6, 0xc9, 0x2e, + 0xc1, 0x2e, 0x73, 0x0c, 0xc2, 0xbe, 0x34, 0xd7, 0xb6, 0xbd, 0x7d, 0x22, 0x6d, 0x4a, 0x82, 0x55, + 0x06, 0x45, 0xb7, 0x60, 0x89, 0xf4, 0x1d, 0xa7, 0x8b, 0x7b, 0xd8, 0xf2, 0xf4, 0xae, 0xd6, 0x71, + 0xed, 0xbe, 0x43, 0xaa, 0xd3, 0xe7, 0x73, 0xd7, 0x72, 0x2a, 0x0a, 0x3e, 0x7a, 0xc2, 0x9e, 0xa0, + 0xb3, 0x00, 0x8e, 0x6b, 0xbe, 0x32, 0xbb, 0xb8, 0x83, 0x8d, 0xea, 0x0c, 0x63, 0x1a, 0x80, 0xa0, + 0x77, 0x61, 0x99, 0xe0, 0x76, 0xdb, 0xee, 0x39, 0x9a, 0xe3, 0xda, 0xfb, 0x66, 0x17, 0xf3, 0x37, + 0x62, 0x96, 0x99, 0x1b, 0x12, 0xcf, 0x9a, 0xfc, 0x11, 0x7b, 0x37, 0x1e, 0x32, 0x3f, 0x47, 0x57, + 0xca, 0x26, 0xaf, 0x16, 0xc6, 0x58, 0x2a, 0xb0, 0xa5, 0x32, 0x91, 0x94, 0x5f, 0x66, 0xe1, 0x04, + 0xd3, 0x64, 0xd3, 0x36, 0xc4, 0x36, 0x0b, 0xc7, 0x75, 0x11, 0xca, 0x6d, 0xc6, 0x53, 0x73, 0x74, + 0x17, 0x5b, 0x9e, 0x78, 0x71, 0xe7, 0x38, 0xb0, 0xc9, 0x60, 0xe8, 0x13, 0xa8, 0x10, 0x61, 0x15, + 0x5a, 0x9b, 0x9b, 0x85, 0xd8, 0xb3, 0x9b, 0x71, 0x11, 0x86, 0xd8, 0x92, 0xba, 0x40, 0x62, 0xc6, + 0x35, 0x4b, 0x8e, 0x48, 0xdb, 0xeb, 0x72, 0x0f, 0x58, 0x5a, 0xfb, 0x51, 0x0a, 0xc3, 0xa8, 0xe0, + 0xab, 0x2d, 0x4e, 0xb6, 0x65, 0x79, 0xee, 0x91, 0x2a, 0x99, 0xd4, 0xee, 0xc1, 0x5c, 0xf0, 0x01, + 0xaa, 0x40, 0xee, 0x25, 0x3e, 0x12, 0x8b, 0xa2, 0x3f, 0x07, 0x2f, 0x01, 0xf7, 0x3f, 0x7c, 0x70, + 0x2f, 0xfb, 0x41, 0x46, 0x71, 0x01, 0x0d, 0x66, 0x79, 0x8e, 0x3d, 0xdd, 0xd0, 0x3d, 0xdd, 0xf7, + 0x05, 0x99, 0x81, 0x2f, 0xa0, 0x5c, 0xfb, 0xe2, 0xe5, 0x2d, 0xaa, 0xf4, 0x27, 0x7a, 0x0b, 0x8a, + 0xbe, 0xa1, 0x8b, 0xf3, 0x65, 0x00, 0xa0, 0x7e, 0x5e, 0xf7, 0x3c, 0xdc, 0x73, 0x3c, 0x66, 0x62, + 0x65, 0x55, 0x0e, 0x95, 0xff, 0xca, 0x43, 0x25, 0xb6, 0x27, 0x1f, 0x41, 0xa1, 0x27, 0xa6, 0x17, + 0x2f, 0xda, 0xa5, 0x04, 0x67, 0x1f, 0x13, 0x55, 0xf5, 0xa9, 0xa8, 0x2f, 0xa5, 0x7e, 0x35, 0x70, + 0x26, 0xfa, 0x63, 0xba, 0xe3, 0x5d, 0xbb, 0xa3, 0x19, 0xa6, 0x8b, 0xdb, 0x9e, 0xed, 0x1e, 0x09, + 0x71, 0xe7, 0xba, 0x76, 0x67, 0x53, 0xc2, 0xd0, 0x3d, 0x00, 0xc3, 0x22, 0x74, 0xb3, 0xf7, 0xcd, + 0x0e, 0x13, 0xba, 0xb4, 0x76, 0x3a, 0x2e, 0x84, 0x7f, 0x00, 0xaa, 0x45, 0xc3, 0x22, 0x42, 0xfc, + 0x47, 0x50, 0xa6, 0xe7, 0x88, 0xd6, 0xe3, 0x67, 0x17, 0x7f, 0x53, 0x4a, 0x6b, 0x67, 0x92, 0xd6, + 0xe0, 0x9f, 0x70, 0xea, 0x9c, 0x33, 0x18, 0x10, 0xf4, 0x18, 0x66, 0x98, 0x43, 0x27, 0xd5, 0x19, + 0x46, 0xbc, 0x3a, 0x4c, 0x01, 0xc2, 0x22, 0x9e, 0x31, 0x02, 0x6e, 0x10, 0x82, 0x1a, 0xed, 0x42, + 0x49, 0xb7, 0x2c, 0xdb, 0xd3, 0xb9, 0xa3, 0x99, 0x65, 0xcc, 0xde, 0x1b, 0x83, 0xd9, 0xfa, 0x80, + 0x8a, 0x73, 0x0c, 0xf2, 0x41, 0x3f, 0x81, 0x69, 0xe6, 0x89, 0xc4, 0x8b, 0x78, 0x75, 0x4c, 0xa3, + 0x55, 0x39, 0x55, 0xed, 0x2e, 0x94, 0x02, 0xc2, 0x4e, 0x62, 0xa4, 0xb5, 0x87, 0x50, 0x89, 0x8a, + 0x36, 0x91, 0x91, 0xff, 0x21, 0x2c, 0xab, 0x7d, 0x6b, 0x20, 0x98, 0x8c, 0xc8, 0xee, 0xc1, 0x8c, + 0xd8, 0x6c, 0x6e, 0x71, 0xca, 0x68, 0x1d, 0xa9, 0x82, 0x22, 0x18, 0x62, 0x1d, 0xe8, 0x96, 0xd1, + 0xc5, 0xae, 0x98, 0x57, 0x86, 0x58, 0x4f, 0x39, 0x54, 0xf9, 0x09, 0x9c, 0x88, 0x4c, 0x2e, 0x22, + 0xbc, 0x4b, 0x30, 0xef, 0xd8, 0x86, 0x46, 0x38, 0x58, 0x33, 0x0d, 0xe9, 0x86, 0x1c, 0x1f, 0xb7, + 0x6e, 0x50, 0xf2, 0x96, 0x67, 0x3b, 0x71, 0xe1, 0xc7, 0x23, 0xaf, 0xc2, 0xc9, 0x28, 0x39, 0x9f, + 0x5e, 0xf9, 0x10, 0x56, 0x54, 0xdc, 0xb3, 0x5f, 0xe1, 0xe3, 0xb2, 0xae, 0x41, 0x35, 0xce, 0x40, + 0x30, 0xff, 0x14, 0x56, 0x06, 0xd0, 0x96, 0xa7, 0x7b, 0x7d, 0x32, 0x11, 0x73, 0x11, 0xfe, 0xee, + 0xd9, 0x84, 0x6f, 0x67, 0x41, 0x95, 0x43, 0xe5, 0x7a, 0x90, 0x75, 0x83, 0x47, 0x16, 0x7c, 0x06, + 0x34, 0x0f, 0x59, 0xd3, 0x11, 0xec, 0xb2, 0xa6, 0xa3, 0x3c, 0x85, 0xa2, 0x7f, 0x34, 0xa3, 0xfb, + 0x83, 0xb8, 0x33, 0x3b, 0xee, 0x41, 0xee, 0x87, 0xa6, 0x3b, 0xb1, 0xa3, 0x44, 0x4c, 0x79, 0x1f, + 0xc0, 0x77, 0x79, 0x32, 0x42, 0x38, 0x3d, 0x84, 0xb1, 0x1a, 0x40, 0x57, 0xfe, 0x35, 0xe4, 0x08, + 0x03, 0x8b, 0x30, 0xfc, 0x45, 0x18, 0x21, 0xc7, 0x98, 0x3d, 0x96, 0x63, 0x7c, 0x1f, 0xa6, 0x89, + 0xa7, 0x7b, 0x58, 0x44, 0x51, 0x17, 0x86, 0x91, 0x53, 0x21, 0xb0, 0xca, 0xf1, 0xd1, 0x19, 0x80, + 0xb6, 0x8b, 0x75, 0x0f, 0x1b, 0x9a, 0xce, 0xbd, 0x78, 0x4e, 0x2d, 0x0a, 0xc8, 0xba, 0x87, 0x36, + 0x06, 0x91, 0xe0, 0x34, 0x13, 0xec, 0xfa, 0x30, 0xce, 0xa1, 0xad, 0x1a, 0xc4, 0x84, 0xbe, 0x57, + 0x99, 0x19, 0xd3, 0xab, 0x08, 0x06, 0x9c, 0x2a, 0xe0, 0x33, 0x67, 0x47, 0xfb, 0x4c, 0x4e, 0x3a, + 0x8e, 0xcf, 0x2c, 0x8c, 0xf6, 0x99, 0x82, 0xd9, 0x50, 0x9f, 0xf9, 0x7d, 0x3a, 0xbd, 0x7f, 0xc9, + 0x40, 0x35, 0xfe, 0x0e, 0x0a, 0xdf, 0x73, 0x0f, 0x66, 0x08, 0x83, 0x8c, 0xe3, 0xf9, 0x04, 0xad, + 0xa0, 0x40, 0x4f, 0x21, 0x6f, 0x5a, 0xfb, 0x36, 0x4b, 0xec, 0x12, 0x63, 0x97, 0xb4, 0x59, 0x57, + 0xeb, 0xd6, 0xbe, 0xcd, 0x95, 0xc4, 0x38, 0xd4, 0xde, 0x87, 0xa2, 0x0f, 0x9a, 0x68, 0x6d, 0xdb, + 0xb0, 0x1c, 0x31, 0x59, 0x1e, 0xec, 0xfb, 0x96, 0x9e, 0x99, 0xcc, 0xd2, 0x95, 0xaf, 0xb2, 0xc1, + 0x37, 0xf1, 0xb1, 0xd9, 0xf5, 0xb0, 0x1b, 0x7b, 0x13, 0x1f, 0x48, 0xee, 0xfc, 0x35, 0xbc, 0x32, + 0x92, 0x3b, 0x8f, 0x49, 0xc5, 0xcb, 0xf4, 0x39, 0xcc, 0x33, 0x5b, 0xd3, 0x08, 0xee, 0xb2, 0x80, + 0x43, 0x04, 0x7f, 0x3f, 0x1e, 0xc6, 0x86, 0x4b, 0xc2, 0x2d, 0xb6, 0x25, 0xe8, 0xb8, 0x06, 0xcb, + 0xdd, 0x20, 0xac, 0xf6, 0x11, 0xa0, 0x38, 0xd2, 0x44, 0x3a, 0x6d, 0x51, 0x17, 0x47, 0xb3, 0xdf, + 0x84, 0x53, 0x72, 0x9f, 0x89, 0x31, 0x8e, 0xad, 0x70, 0x81, 0x55, 0x41, 0xa1, 0xfc, 0x3a, 0x07, + 0x30, 0x78, 0xf8, 0x7f, 0xc8, 0xb7, 0x7d, 0xe4, 0xfb, 0x15, 0x1e, 0xc8, 0x5d, 0x1b, 0xc6, 0x38, + 0xd1, 0xa3, 0x6c, 0x87, 0x3d, 0x0a, 0x0f, 0xe9, 0x6e, 0x0e, 0x65, 0xf3, 0x83, 0xf5, 0x25, 0xcf, + 0xe0, 0x64, 0xd4, 0x36, 0x84, 0x23, 0x59, 0x83, 0x69, 0xd3, 0xc3, 0x3d, 0x5e, 0x01, 0x4a, 0xcc, + 0xce, 0x02, 0x44, 0x1c, 0x55, 0xb9, 0x00, 0xc5, 0x7a, 0x4f, 0xef, 0xe0, 0x96, 0x83, 0xdb, 0x74, + 0x52, 0x93, 0x0e, 0x84, 0x20, 0x7c, 0xa0, 0xac, 0x41, 0xe1, 0xa7, 0xf8, 0x88, 0xbf, 0xd4, 0x63, + 0x0a, 0xaa, 0xfc, 0x43, 0x01, 0x56, 0xd8, 0x59, 0xb1, 0x21, 0xeb, 0x2f, 0x2a, 0x26, 0x76, 0xdf, + 0x6d, 0x63, 0xc2, 0x76, 0xdb, 0xe9, 0x6b, 0x0e, 0x76, 0x4d, 0xdb, 0x10, 0xa5, 0x80, 0x62, 0xdb, + 0xe9, 0x37, 0x19, 0x00, 0x9d, 0x06, 0x3a, 0xd0, 0xbe, 0xec, 0xdb, 0xc2, 0x10, 0x73, 0x6a, 0xa1, + 0xed, 0xf4, 0xff, 0x3f, 0x1d, 0x4b, 0x5a, 0x72, 0xa0, 0xbb, 0x98, 0x30, 0x3b, 0xe3, 0xb4, 0x2d, + 0x06, 0x40, 0xb7, 0xe1, 0x44, 0x0f, 0xf7, 0x6c, 0xf7, 0x48, 0xeb, 0x9a, 0x3d, 0xd3, 0xd3, 0x4c, + 0x4b, 0xdb, 0x3b, 0xf2, 0x30, 0x11, 0x36, 0x85, 0xf8, 0xc3, 0x67, 0xf4, 0x59, 0xdd, 0x7a, 0x44, + 0x9f, 0x20, 0x05, 0xca, 0xb6, 0xdd, 0xd3, 0x48, 0xdb, 0x76, 0xb1, 0xa6, 0x1b, 0x5f, 0xb0, 0xe3, + 0x33, 0xa7, 0x96, 0x6c, 0xbb, 0xd7, 0xa2, 0xb0, 0x75, 0xe3, 0x0b, 0x74, 0x0e, 0x4a, 0x6d, 0xa7, + 0x4f, 0xb0, 0xa7, 0xd1, 0x3f, 0xec, 0x74, 0x2c, 0xaa, 0xc0, 0x41, 0x1b, 0x4e, 0x9f, 0x04, 0x10, + 0x7a, 0x54, 0xff, 0xb3, 0x41, 0x84, 0xe7, 0xb8, 0x47, 0xd0, 0x0b, 0x00, 0xc3, 0x24, 0x2f, 0xc5, + 0xaa, 0x0c, 0xb6, 0x3f, 0x1f, 0xa4, 0x1c, 0xaf, 0x71, 0x95, 0xad, 0x6e, 0x9a, 0xe4, 0x25, 0x53, + 0x00, 0x37, 0xc5, 0xa2, 0x21, 0xc7, 0xe8, 0x02, 0xcc, 0xed, 0x75, 0x5f, 0x9a, 0xb6, 0x76, 0x88, + 0xcd, 0xce, 0x81, 0x57, 0xc5, 0x2c, 0xbd, 0x2b, 0x31, 0xd8, 0x0b, 0x06, 0x42, 0x0d, 0x58, 0x0a, + 0xa2, 0x68, 0x06, 0x7e, 0x65, 0xb6, 0x71, 0x75, 0x9f, 0x09, 0x71, 0x36, 0x2e, 0x04, 0x27, 0xdb, + 0x64, 0x58, 0xea, 0x62, 0x80, 0x13, 0x07, 0xa1, 0x16, 0x9c, 0xe0, 0xfc, 0x38, 0x23, 0xcd, 0xc5, + 0xba, 0xa1, 0xed, 0x39, 0xa4, 0xda, 0x61, 0x1c, 0xcf, 0xc7, 0x39, 0xee, 0x1c, 0xb8, 0xb6, 0xe7, + 0x75, 0xb1, 0xe0, 0x89, 0x18, 0xb9, 0x18, 0x60, 0xdd, 0x78, 0xe4, 0xd0, 0x33, 0xff, 0x64, 0x88, + 0xe9, 0xa1, 0x6b, 0x7a, 0x98, 0x71, 0x3d, 0x18, 0x93, 0xeb, 0x52, 0x80, 0xeb, 0x0b, 0x4a, 0x9d, + 0xc4, 0x96, 0xc9, 0x5a, 0xdf, 0x76, 0x48, 0xd5, 0x3c, 0x06, 0x5b, 0x2a, 0x2c, 0x25, 0x46, 0x2f, + 0x60, 0x25, 0x41, 0x5a, 0xc6, 0xf7, 0x8b, 0x31, 0xf9, 0x2e, 0x47, 0xc5, 0x65, 0x8c, 0x2f, 0x42, + 0xf9, 0x25, 0x76, 0x2d, 0xdc, 0xd5, 0xb8, 0xa9, 0x56, 0x5f, 0x32, 0x6b, 0x9c, 0xe3, 0xc0, 0xe7, + 0x0c, 0x86, 0x6e, 0x82, 0x30, 0x64, 0xcd, 0xc5, 0x04, 0xbb, 0xaf, 0x78, 0xa9, 0xb1, 0xcb, 0x30, + 0x17, 0xf9, 0x13, 0x75, 0xf0, 0x00, 0xd5, 0x41, 0x00, 0x35, 0x72, 0xc8, 0xd2, 0x5b, 0x4c, 0x48, + 0xb5, 0x37, 0x46, 0x01, 0xa7, 0xc2, 0xc9, 0x5a, 0x3e, 0x15, 0x5a, 0x83, 0xd9, 0x3e, 0x7b, 0xb3, + 0x48, 0xd5, 0x62, 0xeb, 0xac, 0xc6, 0x19, 0xec, 0x32, 0x04, 0x55, 0x22, 0xd6, 0x1e, 0xc0, 0x7c, + 0xd8, 0x7c, 0x27, 0xf2, 0x76, 0xf7, 0x60, 0x2e, 0x64, 0x7c, 0x08, 0xf2, 0x81, 0xf2, 0x2e, 0xfb, + 0x8d, 0x4e, 0xc2, 0x0c, 0xc7, 0x61, 0xe4, 0x65, 0x55, 0x8c, 0x94, 0x0f, 0x60, 0x3e, 0xac, 0xf4, + 0x44, 0x6a, 0x04, 0x79, 0x57, 0x06, 0x12, 0x79, 0x95, 0xfd, 0x56, 0x36, 0x61, 0x86, 0x2f, 0x23, + 0xb1, 0xfa, 0x82, 0x20, 0x7f, 0xa0, 0xbb, 0x86, 0x70, 0x4e, 0xec, 0x37, 0x85, 0x11, 0x7b, 0xdf, + 0x13, 0x2e, 0x89, 0xfd, 0x56, 0x74, 0x28, 0x87, 0xea, 0x87, 0x14, 0x89, 0x15, 0x0a, 0x05, 0x33, + 0xfa, 0x9b, 0x4d, 0x6f, 0x77, 0xe5, 0xca, 0xd9, 0x6f, 0x0a, 0xf3, 0x8e, 0x1c, 0x59, 0xc7, 0x61, + 0xbf, 0xa9, 0x8a, 0xba, 0xf8, 0x95, 0xa8, 0x3b, 0x17, 0x55, 0x3e, 0x50, 0x0c, 0x80, 0x0d, 0xdd, + 0xd1, 0xf7, 0xcc, 0xae, 0xe9, 0x1d, 0xa1, 0xeb, 0x50, 0xd1, 0x0d, 0x43, 0x6b, 0x4b, 0x88, 0x89, + 0x65, 0x37, 0x60, 0x41, 0x37, 0x8c, 0x8d, 0x00, 0x18, 0xbd, 0x0d, 0x8b, 0x86, 0x6b, 0x3b, 0x61, + 0x5c, 0xde, 0x1e, 0xa8, 0xd0, 0x07, 0x41, 0x64, 0xe5, 0x3f, 0xa7, 0xe1, 0x4c, 0xd8, 0x35, 0x45, + 0x6b, 0xb4, 0x1f, 0xc1, 0x5c, 0x64, 0xd6, 0x14, 0xf3, 0x1a, 0x48, 0xab, 0x86, 0x28, 0x22, 0x35, + 0xcb, 0x6c, 0xac, 0x66, 0x99, 0x58, 0x05, 0xce, 0xbd, 0xd1, 0x2a, 0x70, 0xfe, 0x8d, 0x54, 0x81, + 0xa7, 0x27, 0xab, 0x02, 0x5f, 0x61, 0xb5, 0x0b, 0x49, 0xcd, 0x6c, 0x8d, 0x9f, 0x2f, 0x65, 0x1f, + 0xc7, 0x92, 0x6d, 0xa4, 0x48, 0xb5, 0x78, 0x76, 0x92, 0x6a, 0x71, 0x21, 0xb5, 0x5a, 0x4c, 0xad, + 0xc6, 0x71, 0x74, 0xb7, 0x67, 0xbb, 0xb2, 0x1c, 0x5c, 0x2d, 0x32, 0x11, 0x16, 0x24, 0x5c, 0x94, + 0x82, 0x53, 0x0b, 0xc7, 0x90, 0x5a, 0x38, 0x3e, 0x0f, 0x73, 0x96, 0xad, 0x59, 0xf8, 0x50, 0xa3, + 0x7b, 0x49, 0xaa, 0x25, 0xbe, 0xb1, 0x96, 0xdd, 0xc0, 0x87, 0x4d, 0x0a, 0x89, 0x95, 0x96, 0xe7, + 0x26, 0x2b, 0x2d, 0xd3, 0x13, 0xb0, 0xa7, 0x93, 0x97, 0xd8, 0x60, 0xa2, 0x90, 0x6a, 0x99, 0x19, + 0x71, 0x89, 0xc3, 0xa8, 0x0c, 0x04, 0x5d, 0x06, 0x5f, 0x49, 0x02, 0x69, 0x9e, 0x21, 0x95, 0x25, + 0x94, 0xa1, 0x29, 0x7f, 0x9b, 0x81, 0xe5, 0xb0, 0x99, 0x8b, 0x82, 0xe2, 0x13, 0x28, 0xba, 0xf2, + 0x2c, 0x16, 0xa6, 0x7d, 0x7d, 0xec, 0xc3, 0x5b, 0x1d, 0xd0, 0xa2, 0x9f, 0xa5, 0xd6, 0xb1, 0x6f, + 0x8d, 0xe2, 0x37, 0xaa, 0x92, 0xad, 0xd4, 0xe1, 0xdc, 0x0b, 0xd3, 0x32, 0xec, 0x43, 0x92, 0xfa, + 0x96, 0x26, 0xd8, 0x5a, 0x26, 0xc1, 0xd6, 0x94, 0xbf, 0xcb, 0xc0, 0xc9, 0x28, 0x2f, 0xa1, 0x8a, + 0x7a, 0x5c, 0x15, 0x6f, 0x27, 0x84, 0x10, 0x11, 0xe2, 0x44, 0x65, 0x7c, 0x9e, 0xaa, 0x8c, 0xdb, + 0xa3, 0x39, 0x8e, 0x54, 0xc7, 0x5f, 0x66, 0xe0, 0x54, 0xaa, 0x18, 0x91, 0x38, 0x32, 0x13, 0x8d, + 0x23, 0x45, 0x0c, 0xda, 0xb6, 0xfb, 0x96, 0x17, 0x88, 0x41, 0x37, 0x58, 0xaf, 0x91, 0x07, 0x7b, + 0x5a, 0x4f, 0x7f, 0x6d, 0xf6, 0xfa, 0x3d, 0xe1, 0xf1, 0x29, 0xbb, 0xe7, 0x1c, 0x72, 0x8c, 0x28, + 0x54, 0x59, 0x87, 0x45, 0x5f, 0xca, 0xa1, 0x95, 0xff, 0x40, 0x25, 0x3f, 0x1b, 0xae, 0xe4, 0x5b, + 0x30, 0x23, 0x4e, 0xb9, 0x37, 0xd1, 0x0c, 0x3d, 0x0f, 0x25, 0x07, 0xbb, 0x3d, 0x93, 0x10, 0xdf, + 0xd1, 0x16, 0xd5, 0x20, 0x48, 0xf9, 0xd5, 0x2c, 0x2c, 0x44, 0xad, 0xe3, 0xc3, 0x58, 0xe3, 0xe0, + 0x62, 0xc2, 0x11, 0x10, 0x5d, 0x68, 0x20, 0x85, 0xbc, 0x2d, 0x33, 0x90, 0x6c, 0x5a, 0xf5, 0xce, + 0xcf, 0x56, 0x44, 0x7a, 0x42, 0x35, 0xd2, 0xb6, 0x7b, 0x3d, 0xdd, 0x32, 0x64, 0x0f, 0x5b, 0x0c, + 0xa9, 0xfe, 0x74, 0xb7, 0x43, 0xd5, 0x4e, 0xc1, 0xec, 0x37, 0xdd, 0xbc, 0x43, 0xdb, 0x7d, 0x69, + 0x5a, 0xac, 0x01, 0xc1, 0x9c, 0x75, 0x51, 0x05, 0x01, 0xda, 0x34, 0x5d, 0xb4, 0x0a, 0x79, 0x6c, + 0xbd, 0x92, 0x39, 0x62, 0x42, 0x93, 0x5b, 0xe6, 0x42, 0x2a, 0xc3, 0x43, 0xb7, 0x60, 0xa6, 0x47, + 0xcd, 0x42, 0x16, 0xbd, 0x56, 0x52, 0x7a, 0xbd, 0xaa, 0x40, 0xa3, 0x31, 0x14, 0x8f, 0x1a, 0x65, + 0x65, 0x2b, 0x21, 0x86, 0x12, 0x31, 0xa2, 0x44, 0x44, 0x5b, 0x7e, 0x06, 0x5c, 0x4c, 0x4b, 0x5d, + 0x23, 0x5b, 0x91, 0x98, 0x06, 0xef, 0x84, 0xd3, 0x60, 0x60, 0xbc, 0xd6, 0x46, 0xf3, 0x1a, 0xde, + 0x8b, 0x38, 0x05, 0x85, 0xae, 0xdd, 0xe1, 0x66, 0x54, 0xe2, 0xd7, 0x23, 0xba, 0x76, 0x87, 0x59, + 0xd1, 0x32, 0x4c, 0x13, 0xcf, 0x30, 0x2d, 0xe6, 0xd4, 0x0b, 0x2a, 0x1f, 0xd0, 0x97, 0x8f, 0xfd, + 0xd0, 0x6c, 0xab, 0x8d, 0xab, 0x65, 0xf6, 0xa8, 0xc8, 0x20, 0xdb, 0x56, 0x9b, 0xe5, 0x98, 0x9e, + 0x77, 0x54, 0x9d, 0x67, 0x70, 0xfa, 0x13, 0x3d, 0x90, 0x75, 0xc9, 0x85, 0xb4, 0x62, 0x4f, 0x92, + 0xdb, 0x96, 0x65, 0xc9, 0x47, 0x30, 0x7b, 0xc8, 0x1d, 0x41, 0xb5, 0xc2, 0xe8, 0xaf, 0x8d, 0x76, + 0x2f, 0x82, 0x83, 0x24, 0xa4, 0x87, 0x8c, 0x85, 0x3d, 0x7a, 0x86, 0xd9, 0xd4, 0xc9, 0xb0, 0xc6, + 0x7c, 0x4e, 0x2d, 0x59, 0xd8, 0x6b, 0x0a, 0x10, 0x55, 0x03, 0xcb, 0xee, 0x34, 0xd3, 0x60, 0x59, + 0x58, 0x51, 0x9d, 0x65, 0xe3, 0xba, 0xf1, 0x7d, 0x56, 0x0b, 0x7e, 0x9d, 0x81, 0x93, 0x1b, 0xac, + 0x92, 0x12, 0xf0, 0x82, 0x93, 0x14, 0xff, 0xef, 0xfa, 0x7d, 0x99, 0xd4, 0x4a, 0x7d, 0x54, 0x6b, + 0xb2, 0x2d, 0x53, 0x87, 0x79, 0xc9, 0x5c, 0xb0, 0xc8, 0x8d, 0xdd, 0xda, 0x29, 0x93, 0xe0, 0x50, + 0x79, 0x00, 0x2b, 0xb1, 0x55, 0x88, 0xaa, 0xc7, 0x05, 0x98, 0x1b, 0x78, 0x3b, 0x7f, 0x11, 0x25, + 0x1f, 0x56, 0x37, 0x94, 0x7b, 0x70, 0xa2, 0xe5, 0xe9, 0xae, 0x17, 0x53, 0xc1, 0x18, 0xb4, 0xac, + 0x69, 0x13, 0xa6, 0x15, 0x7d, 0x95, 0x16, 0x2c, 0xb7, 0x3c, 0xdb, 0x39, 0x06, 0x53, 0xea, 0xb3, + 0xe8, 0xfa, 0xed, 0xbe, 0x3c, 0x5d, 0xe4, 0x50, 0x59, 0xe1, 0x2d, 0xa6, 0xf8, 0x6c, 0xf7, 0xe1, + 0x24, 0xef, 0xf0, 0x1c, 0x67, 0x11, 0xa7, 0x64, 0x7f, 0x29, 0xce, 0xf7, 0x39, 0x2c, 0x0d, 0x0e, + 0xd5, 0x41, 0xf5, 0xf6, 0x4e, 0xb8, 0x7a, 0x7b, 0x7e, 0xc8, 0xae, 0x87, 0x8a, 0xb7, 0xbf, 0xca, + 0x06, 0x4e, 0x85, 0x94, 0xda, 0xed, 0xfd, 0x70, 0xed, 0xf6, 0xf2, 0x28, 0xde, 0xa1, 0xd2, 0x6d, + 0xdc, 0x6a, 0x73, 0x09, 0x56, 0xfb, 0x59, 0xac, 0xc0, 0x9b, 0x4f, 0xab, 0x90, 0x47, 0xa4, 0xfd, + 0xbd, 0xd4, 0x77, 0x55, 0x5e, 0xdf, 0xf5, 0xa7, 0xf6, 0x1b, 0x72, 0x77, 0x23, 0xf5, 0xdd, 0x0b, + 0x23, 0xe5, 0xf5, 0xcb, 0xbb, 0x7f, 0x93, 0x87, 0xa2, 0xff, 0x2c, 0xa6, 0xf3, 0xb8, 0xda, 0xb2, + 0x09, 0x6a, 0x0b, 0x9e, 0xdf, 0xb9, 0x6f, 0x75, 0x7e, 0xe7, 0xc7, 0x3e, 0xbf, 0x4f, 0x43, 0x91, + 0xfd, 0xd0, 0x5c, 0xbc, 0x2f, 0xce, 0xe3, 0x02, 0x03, 0xa8, 0x78, 0x7f, 0x60, 0x86, 0x33, 0x13, + 0x99, 0x61, 0xa4, 0xa2, 0x3c, 0x1b, 0xad, 0x28, 0x7f, 0xe8, 0x9f, 0xa7, 0xfc, 0x08, 0xbe, 0x3a, + 0x84, 0x6f, 0xe2, 0x49, 0xda, 0x08, 0x9f, 0xa4, 0xfc, 0x54, 0x7e, 0x67, 0x18, 0x97, 0x1f, 0x6c, + 0x3d, 0x79, 0x97, 0xd7, 0x93, 0x83, 0xb6, 0x28, 0x3c, 0xeb, 0x7d, 0x00, 0xdf, 0x89, 0xc8, 0xa2, + 0xf2, 0xe9, 0x21, 0x6b, 0x54, 0x03, 0xe8, 0x94, 0x6d, 0x68, 0x6b, 0x06, 0x4d, 0xe7, 0xf1, 0xfc, + 0x63, 0x4a, 0xc7, 0xf9, 0xaf, 0x0a, 0x01, 0xff, 0x92, 0xd2, 0xa5, 0xfd, 0x30, 0xd6, 0xc9, 0x98, + 0xd0, 0x8a, 0xef, 0x84, 0x1b, 0x19, 0xc7, 0xb4, 0xba, 0x58, 0x1f, 0x83, 0xc5, 0x3d, 0xba, 0x2b, + 0x1e, 0xf3, 0x3a, 0x73, 0x51, 0x40, 0xd6, 0x59, 0x5e, 0xb1, 0x6f, 0x5a, 0x26, 0x39, 0xe0, 0xcf, + 0x67, 0x78, 0x5e, 0x21, 0x41, 0xeb, 0xec, 0x92, 0x24, 0x7e, 0x6d, 0x7a, 0x5a, 0xdb, 0x36, 0x30, + 0xb3, 0xe9, 0x69, 0xb5, 0x40, 0x01, 0x1b, 0xb6, 0x81, 0x07, 0x6f, 0x5e, 0xe1, 0x78, 0x6f, 0x5e, + 0x31, 0xf2, 0xe6, 0x9d, 0x84, 0x19, 0x17, 0xeb, 0xc4, 0xb6, 0x44, 0x72, 0x2f, 0x46, 0x74, 0x6b, + 0x7a, 0x98, 0x10, 0x3a, 0x93, 0x08, 0xf6, 0xc4, 0x30, 0x10, 0xa4, 0xce, 0x8d, 0x0c, 0x52, 0x87, + 0x74, 0x7f, 0x23, 0x41, 0x6a, 0x79, 0x64, 0x90, 0x3a, 0x4e, 0xf3, 0x37, 0x10, 0xa6, 0xcf, 0x8f, + 0x17, 0xa6, 0x07, 0xa3, 0xda, 0x85, 0x70, 0x54, 0xfb, 0x14, 0x66, 0x5f, 0xd9, 0xdd, 0x7e, 0x0f, + 0x13, 0x51, 0xc9, 0x5f, 0x1d, 0x2d, 0xdd, 0xc7, 0x9c, 0x40, 0xdc, 0x16, 0x13, 0xe4, 0xe1, 0xc2, + 0x02, 0xfe, 0x16, 0x85, 0x85, 0x60, 0xf0, 0xb9, 0x1f, 0x0a, 0x3e, 0xfd, 0x84, 0xa6, 0x33, 0x5e, + 0x42, 0xf3, 0x3d, 0xba, 0xa2, 0xda, 0x0e, 0xcc, 0x05, 0xf5, 0x94, 0x40, 0xbb, 0x1a, 0xa4, 0x4d, + 0x4c, 0x9d, 0x38, 0x83, 0xa0, 0x83, 0x2b, 0xc0, 0x0c, 0x07, 0x2a, 0xff, 0x94, 0x81, 0x95, 0x98, + 0x53, 0x12, 0xce, 0xee, 0x6e, 0xa4, 0x0b, 0x7f, 0x61, 0xe4, 0x9e, 0xfa, 0x4d, 0xf8, 0x27, 0xa1, + 0x26, 0xfc, 0x7b, 0xa3, 0x09, 0xdf, 0x78, 0x0f, 0xfe, 0x4f, 0x32, 0x70, 0x6e, 0xd7, 0x31, 0x22, + 0xf1, 0xb1, 0x30, 0x93, 0xf1, 0xdd, 0xee, 0x87, 0x32, 0xcf, 0xca, 0x4e, 0x6a, 0x8a, 0x9c, 0x4e, + 0x51, 0xe0, 0x7c, 0xba, 0x18, 0x22, 0xe0, 0xfc, 0x39, 0x2c, 0x6c, 0xbd, 0xc6, 0xed, 0xd6, 0x91, + 0xd5, 0x9e, 0x40, 0xb4, 0x0a, 0xe4, 0xda, 0x3d, 0x43, 0x54, 0xa8, 0xe9, 0xcf, 0x60, 0x0c, 0x9d, + 0x0b, 0xc7, 0xd0, 0x1a, 0x54, 0x06, 0x33, 0x88, 0xed, 0x3d, 0x49, 0xb7, 0xd7, 0xa0, 0xc8, 0x94, + 0xf9, 0x9c, 0x2a, 0x46, 0x02, 0x8e, 0x5d, 0x7e, 0x63, 0x8c, 0xc3, 0xb1, 0xeb, 0x86, 0x7d, 0x6d, + 0x2e, 0xec, 0x6b, 0x95, 0x3f, 0xcf, 0x40, 0x89, 0xce, 0xf0, 0xad, 0xe4, 0x17, 0x69, 0x6e, 0x6e, + 0x90, 0xe6, 0xfa, 0xd9, 0x72, 0x3e, 0x98, 0x2d, 0x0f, 0x24, 0x9f, 0x66, 0xe0, 0xb8, 0xe4, 0x33, + 0x3e, 0x1c, 0xbb, 0xae, 0x72, 0x1e, 0xe6, 0xb8, 0x6c, 0x62, 0xe5, 0x15, 0xc8, 0xf5, 0xdd, 0xae, + 0xb4, 0xa3, 0xbe, 0xdb, 0x55, 0xfe, 0x34, 0x03, 0xe5, 0x75, 0xcf, 0xd3, 0xdb, 0x07, 0x13, 0x2c, + 0xc0, 0x17, 0x2e, 0x1b, 0x14, 0x2e, 0xbe, 0x88, 0x81, 0xb8, 0xf9, 0x14, 0x71, 0xa7, 0x43, 0xe2, + 0x2a, 0x30, 0x2f, 0x65, 0x49, 0x15, 0xb8, 0x01, 0xa8, 0x69, 0xbb, 0xde, 0x63, 0xdb, 0x3d, 0xd4, + 0x5d, 0x63, 0xb2, 0xfc, 0x15, 0x41, 0x5e, 0x7c, 0x76, 0x90, 0xbb, 0x36, 0xad, 0xb2, 0xdf, 0xca, + 0x55, 0x58, 0x0a, 0xf1, 0x4b, 0x9d, 0xf8, 0x23, 0x28, 0xb1, 0x53, 0x53, 0x24, 0x32, 0xb7, 0x83, + 0xfd, 0xf1, 0xb1, 0xce, 0x58, 0xe5, 0xff, 0xc1, 0x22, 0x8d, 0xae, 0x18, 0xdc, 0x7f, 0x15, 0x7f, + 0x1c, 0x89, 0xf2, 0xcf, 0xa4, 0x30, 0x8a, 0x44, 0xf8, 0xbf, 0xcd, 0xc2, 0x34, 0x83, 0xc7, 0x22, + 0x9e, 0xd3, 0xf4, 0x1c, 0x71, 0x6c, 0xcd, 0xd3, 0x3b, 0xfe, 0x47, 0x1e, 0x14, 0xb0, 0xa3, 0x77, + 0x58, 0xed, 0x82, 0x3d, 0x34, 0xcc, 0x0e, 0x26, 0x9e, 0xfc, 0xd2, 0xa3, 0x44, 0x61, 0x9b, 0x1c, + 0xc4, 0xba, 0x57, 0xe6, 0x1f, 0xf0, 0xa8, 0x3d, 0xaf, 0xb2, 0xdf, 0x68, 0x95, 0xdf, 0x31, 0x1e, + 0xa7, 0x9d, 0xc1, 0x6e, 0x20, 0xd7, 0xa0, 0x10, 0xe9, 0x60, 0xf8, 0x63, 0xf4, 0x30, 0x7a, 0x62, + 0x5e, 0x4a, 0x59, 0x71, 0xf2, 0x39, 0xf9, 0x1d, 0x1d, 0x0c, 0x5b, 0x80, 0x82, 0x7b, 0x23, 0xac, + 0xe0, 0x16, 0xcc, 0xb0, 0xad, 0x93, 0x11, 0xef, 0x4a, 0x8a, 0xa8, 0xaa, 0x40, 0x53, 0x74, 0x40, + 0x7c, 0xdb, 0x43, 0x51, 0xee, 0xe4, 0xb6, 0x32, 0x24, 0xea, 0xfd, 0xfb, 0x0c, 0x2c, 0x85, 0xe6, + 0x10, 0xb2, 0xde, 0x0c, 0x4f, 0x92, 0x2a, 0xaa, 0x98, 0x60, 0x23, 0x74, 0x50, 0xdd, 0x4a, 0x13, + 0xe9, 0x3b, 0x3a, 0xa4, 0x7e, 0x9b, 0x01, 0x58, 0xef, 0x7b, 0x07, 0xa2, 0x56, 0x1c, 0xb4, 0x97, + 0x4c, 0xc4, 0x5e, 0x6a, 0x50, 0x70, 0x74, 0x42, 0x0e, 0x6d, 0x57, 0xe6, 0xa9, 0xfe, 0x98, 0x55, + 0x75, 0xfb, 0xde, 0x81, 0x6c, 0x8e, 0xd2, 0xdf, 0xe8, 0x32, 0xcc, 0xf3, 0xcf, 0x9d, 0x34, 0xdd, + 0x30, 0x5c, 0x4c, 0x88, 0xe8, 0x92, 0x96, 0x39, 0x74, 0x9d, 0x03, 0x29, 0x9a, 0x69, 0x60, 0xcb, + 0x33, 0xbd, 0x23, 0xcd, 0xb3, 0x5f, 0x62, 0x4b, 0xe4, 0x9b, 0x65, 0x09, 0xdd, 0xa1, 0x40, 0xde, + 0x2e, 0xea, 0x98, 0xc4, 0x73, 0x25, 0x9a, 0xec, 0xc8, 0x09, 0x28, 0x43, 0xa3, 0x9b, 0x52, 0x69, + 0xf6, 0xbb, 0x5d, 0xae, 0xe2, 0xe3, 0x6f, 0xfb, 0xbb, 0x62, 0x41, 0xd9, 0xb4, 0x37, 0x6d, 0xa0, + 0x34, 0xb1, 0xdc, 0x37, 0x58, 0x58, 0x7b, 0x17, 0x16, 0x03, 0x6b, 0x10, 0x66, 0x15, 0x4a, 0x0c, + 0x32, 0xe1, 0xc4, 0x40, 0x79, 0x02, 0x88, 0xd7, 0x92, 0xbe, 0xe5, 0xba, 0x95, 0x13, 0xb0, 0x14, + 0x62, 0x24, 0xe2, 0x83, 0x1b, 0x50, 0x16, 0xd7, 0x53, 0x85, 0xa1, 0x9c, 0x82, 0x02, 0xf5, 0xf3, + 0x6d, 0xd3, 0x90, 0x9d, 0xf3, 0x59, 0xc7, 0x36, 0x36, 0x4c, 0xc3, 0x55, 0x5e, 0x40, 0x59, 0xe5, + 0xf3, 0x08, 0xdc, 0xc7, 0x30, 0x2f, 0x2e, 0xb3, 0x6a, 0xa1, 0xdb, 0xe4, 0x49, 0x5f, 0x2b, 0x05, + 0x27, 0x51, 0xcb, 0x56, 0x70, 0xa8, 0x18, 0x50, 0xe3, 0x81, 0x4c, 0x88, 0xbd, 0x5c, 0xec, 0x63, + 0x90, 0x17, 0xcb, 0x47, 0xce, 0x12, 0xa6, 0x2f, 0xbb, 0xc1, 0xa1, 0x72, 0x06, 0x4e, 0x27, 0xce, + 0x22, 0x34, 0xe1, 0x40, 0x65, 0xf0, 0xc0, 0x30, 0xe5, 0x15, 0x02, 0x76, 0x35, 0x20, 0x13, 0xb8, + 0x1a, 0x70, 0xd2, 0x0f, 0x5d, 0xb3, 0xf2, 0x68, 0x65, 0x71, 0xe9, 0x20, 0x85, 0xcb, 0xa5, 0xa5, + 0x70, 0xf9, 0x50, 0x0a, 0xa7, 0xb4, 0x7c, 0x7d, 0x8a, 0xd4, 0xfa, 0x11, 0x2b, 0x01, 0xf0, 0xb9, + 0xa5, 0x43, 0x54, 0x86, 0xad, 0x92, 0xa3, 0xaa, 0x01, 0x2a, 0xe5, 0x3a, 0x94, 0xc3, 0xae, 0x31, + 0xe0, 0xe7, 0x32, 0x31, 0x3f, 0x37, 0x1f, 0x71, 0x71, 0xef, 0x47, 0xe2, 0xf2, 0x74, 0x1d, 0x47, + 0xa2, 0xf2, 0x87, 0x21, 0x67, 0x77, 0x23, 0xa1, 0xab, 0xff, 0x1d, 0xf9, 0xb9, 0x65, 0x71, 0x1e, + 0x3c, 0x26, 0x94, 0x5e, 0x2c, 0x5a, 0xb9, 0x08, 0xa5, 0xdd, 0xb4, 0x4f, 0xe1, 0xf2, 0xf2, 0xda, + 0xdc, 0x1d, 0x58, 0x7e, 0x6c, 0x76, 0x31, 0x39, 0x22, 0x1e, 0xee, 0xd5, 0x99, 0x53, 0xda, 0x37, + 0xb1, 0x8b, 0xce, 0x02, 0xb0, 0xb4, 0xd4, 0xb1, 0x4d, 0xff, 0x0b, 0xa9, 0x00, 0x44, 0xf9, 0x5d, + 0x06, 0x16, 0x06, 0x84, 0xbb, 0x2c, 0x1d, 0x7f, 0x0b, 0x8a, 0x74, 0xbd, 0xc4, 0xd3, 0x7b, 0x8e, + 0xec, 0x70, 0xfa, 0x00, 0x74, 0x1f, 0xa6, 0xf7, 0x89, 0x2c, 0x03, 0x26, 0xb6, 0x54, 0x92, 0x04, + 0x51, 0xf3, 0xfb, 0xa4, 0x6e, 0xa0, 0x07, 0x00, 0x7d, 0x82, 0x0d, 0xd1, 0xd5, 0xcc, 0xa5, 0xc5, + 0x30, 0xbb, 0xc1, 0x1b, 0x0f, 0x94, 0x80, 0xdf, 0xb8, 0x7b, 0x08, 0x25, 0xd3, 0xb2, 0x0d, 0xcc, + 0xba, 0xd0, 0x86, 0xa8, 0x14, 0x8e, 0x20, 0x07, 0x4e, 0xb1, 0x4b, 0xb0, 0xa1, 0x60, 0x71, 0x16, + 0x4a, 0xfd, 0x0a, 0x43, 0x69, 0xc0, 0x22, 0x77, 0x5a, 0xfb, 0xbe, 0xe0, 0xd2, 0x62, 0x2f, 0x0c, + 0x5b, 0x1d, 0xd3, 0x96, 0x5a, 0x31, 0x45, 0xc0, 0x25, 0x49, 0x95, 0x7b, 0x70, 0x22, 0x94, 0xb7, + 0x4d, 0x90, 0x48, 0x29, 0xcd, 0x48, 0xf1, 0x6b, 0x60, 0xce, 0xa2, 0xb4, 0x24, 0xad, 0x79, 0x54, + 0x69, 0x89, 0xf0, 0xd2, 0x12, 0x51, 0x3e, 0x83, 0x53, 0xa1, 0x2a, 0x5d, 0x48, 0xa2, 0x87, 0x91, + 0x78, 0xf2, 0xca, 0x28, 0xae, 0x91, 0xc0, 0xf2, 0xbf, 0x33, 0xb0, 0x9c, 0x84, 0x70, 0xcc, 0x2a, + 0xf2, 0xcf, 0x53, 0x6e, 0x57, 0xdf, 0x1d, 0x4f, 0xac, 0xdf, 0x4b, 0x05, 0x7e, 0x07, 0x6a, 0x49, + 0xfa, 0x8c, 0xef, 0x52, 0x6e, 0x92, 0x5d, 0xfa, 0x45, 0x2e, 0xd0, 0x4d, 0x59, 0xf7, 0x3c, 0xd7, + 0xdc, 0xeb, 0x53, 0x93, 0x7f, 0xe3, 0x15, 0xca, 0xba, 0x5f, 0x6b, 0xe3, 0xaa, 0xbd, 0x3d, 0x84, + 0x7c, 0x20, 0x47, 0x62, 0xbd, 0xed, 0x93, 0x70, 0xbd, 0x8d, 0xf7, 0x49, 0xee, 0x8c, 0xc7, 0xef, + 0x07, 0x5b, 0xd4, 0xfe, 0x45, 0x16, 0xe6, 0xc3, 0x5b, 0x84, 0xb6, 0x00, 0x74, 0x5f, 0x72, 0xf1, + 0xa2, 0x5c, 0x1e, 0x6b, 0x99, 0x6a, 0x80, 0x10, 0xbd, 0x03, 0xb9, 0xb6, 0xd3, 0x17, 0xbb, 0x96, + 0x50, 0x4d, 0xdb, 0x70, 0xfa, 0xdc, 0xa3, 0x50, 0x34, 0x9a, 0xe9, 0x89, 0x8b, 0x9c, 0xa9, 0x5e, + 0x92, 0x5f, 0xea, 0xe4, 0x34, 0x02, 0x19, 0x3d, 0x85, 0xf9, 0x43, 0xd7, 0xf4, 0xf4, 0xbd, 0x2e, + 0xd6, 0xba, 0xfa, 0x11, 0x76, 0x85, 0x97, 0x1c, 0xc3, 0x91, 0x95, 0x25, 0xe1, 0x33, 0x4a, 0xa7, + 0xfc, 0x11, 0x14, 0xa4, 0x44, 0x23, 0x4e, 0x84, 0x1d, 0x58, 0xe9, 0x53, 0x34, 0x8d, 0xdd, 0x84, + 0xb6, 0x74, 0xcb, 0xd6, 0x08, 0xa6, 0xc7, 0xb8, 0xfc, 0x46, 0x6b, 0x84, 0x8b, 0x5e, 0x66, 0xd4, + 0x1b, 0xb6, 0x8b, 0x1b, 0xba, 0x65, 0xb7, 0x38, 0xa9, 0xf2, 0x0a, 0x4a, 0x81, 0x05, 0x8e, 0x10, + 0xa1, 0x0e, 0x8b, 0xf2, 0x72, 0x06, 0xc1, 0x9e, 0x38, 0x5e, 0xc6, 0x9a, 0x7c, 0x41, 0xd0, 0xb5, + 0xb0, 0xc7, 0x2f, 0xd4, 0x3c, 0x84, 0x53, 0x2a, 0xb6, 0x1d, 0x6c, 0xf9, 0xfb, 0xf9, 0xcc, 0xee, + 0x4c, 0xe0, 0xc1, 0xdf, 0x82, 0x5a, 0x12, 0xbd, 0x88, 0xcc, 0xee, 0xc1, 0x89, 0xa6, 0xde, 0x27, + 0xf8, 0x98, 0x0d, 0xe5, 0x28, 0xad, 0xe0, 0xfa, 0x00, 0x56, 0x76, 0x2d, 0xe7, 0xb8, 0x7c, 0x6b, + 0x50, 0x8d, 0x53, 0x0b, 0xce, 0x77, 0x64, 0xa8, 0x2d, 0x92, 0x60, 0xc1, 0xf5, 0x1c, 0x94, 0x78, + 0x86, 0xad, 0x05, 0xb2, 0x30, 0xe0, 0xa0, 0x86, 0xde, 0xc3, 0xca, 0x49, 0x58, 0x0e, 0xd3, 0x09, + 0x7e, 0x0f, 0x45, 0x53, 0xfc, 0xb8, 0x9f, 0x2b, 0x9e, 0x82, 0x95, 0x18, 0x3d, 0x67, 0x7d, 0xe3, + 0x0a, 0x14, 0xe4, 0xbf, 0x91, 0x40, 0xb3, 0x90, 0xdb, 0xd9, 0x68, 0x56, 0xa6, 0xe8, 0x8f, 0xdd, + 0xcd, 0x66, 0x25, 0x83, 0x0a, 0x90, 0x6f, 0x6d, 0xec, 0x34, 0x2b, 0xd9, 0x1b, 0x3d, 0xa8, 0x44, + 0xff, 0x87, 0x02, 0x5a, 0x81, 0xa5, 0xa6, 0xba, 0xdd, 0x5c, 0x7f, 0xb2, 0xbe, 0x53, 0xdf, 0x6e, + 0x68, 0x4d, 0xb5, 0xfe, 0xf1, 0xfa, 0xce, 0x56, 0x65, 0x0a, 0x5d, 0x80, 0x33, 0xc1, 0x07, 0x4f, + 0xb7, 0x5b, 0x3b, 0xda, 0xce, 0xb6, 0xb6, 0xb1, 0xdd, 0xd8, 0x59, 0xaf, 0x37, 0xb6, 0xd4, 0x4a, + 0x06, 0x9d, 0x81, 0x53, 0x41, 0x94, 0x47, 0xf5, 0xcd, 0xba, 0xba, 0xb5, 0x41, 0x7f, 0xaf, 0x3f, + 0xab, 0x64, 0x6f, 0xdc, 0x86, 0x72, 0xe8, 0xdf, 0x1b, 0x50, 0x91, 0x9a, 0xdb, 0x9b, 0x95, 0x29, + 0x54, 0x86, 0x62, 0x90, 0x4f, 0x01, 0xf2, 0x8d, 0xed, 0xcd, 0xad, 0x4a, 0xf6, 0xc6, 0x3d, 0x58, + 0x88, 0x7c, 0xef, 0x82, 0x16, 0xa1, 0xdc, 0x5a, 0x6f, 0x6c, 0x3e, 0xda, 0xfe, 0x44, 0x53, 0xb7, + 0xd6, 0x37, 0x3f, 0xad, 0x4c, 0xa1, 0x65, 0xa8, 0x48, 0x50, 0x63, 0x7b, 0x87, 0x43, 0x33, 0x37, + 0xbe, 0xca, 0x44, 0xfc, 0x17, 0x46, 0x27, 0x60, 0xd1, 0x9f, 0x47, 0xdb, 0x50, 0xb7, 0xd6, 0x77, + 0xb6, 0xe8, 0xf4, 0x21, 0xb0, 0xba, 0xdb, 0x68, 0xd4, 0x1b, 0x4f, 0x2a, 0x19, 0xca, 0x76, 0x00, + 0xde, 0xfa, 0xa4, 0x4e, 0x91, 0xb3, 0x61, 0xe4, 0xdd, 0xc6, 0x4f, 0x1b, 0xdb, 0x2f, 0x1a, 0x95, + 0x1c, 0x5a, 0x82, 0x85, 0x01, 0xb8, 0xb9, 0xbe, 0xdb, 0xda, 0xaa, 0xe4, 0xd7, 0xfe, 0x67, 0x09, + 0xe6, 0x65, 0x64, 0x8d, 0x5d, 0x76, 0xb1, 0xac, 0x09, 0xb3, 0xf2, 0x9f, 0x95, 0x24, 0x1c, 0x89, + 0xe1, 0x7f, 0xb1, 0x52, 0xbb, 0x30, 0x04, 0x43, 0x98, 0xd1, 0x14, 0xda, 0x63, 0x09, 0x47, 0xe0, + 0xab, 0xa4, 0x2b, 0x89, 0xe1, 0x7d, 0xcc, 0xce, 0x6a, 0x57, 0x47, 0xe2, 0xf9, 0x73, 0x60, 0x9a, + 0x53, 0x04, 0x3f, 0xbb, 0x45, 0x57, 0x93, 0x92, 0x81, 0x84, 0xef, 0x7a, 0x6b, 0xd7, 0x46, 0x23, + 0xfa, 0xd3, 0xbc, 0x84, 0x4a, 0xf4, 0x13, 0x5c, 0x94, 0x50, 0x41, 0x4f, 0xf9, 0xce, 0xb7, 0x76, + 0x63, 0x1c, 0xd4, 0xe0, 0x64, 0xb1, 0x8f, 0x55, 0xaf, 0x8f, 0xf3, 0xf5, 0x5f, 0xea, 0x64, 0x69, + 0x1f, 0x0a, 0x72, 0x05, 0x86, 0xbf, 0x38, 0x42, 0x89, 0x5f, 0x86, 0x26, 0x7c, 0xaf, 0x96, 0xa4, + 0xc0, 0xe4, 0x8f, 0x97, 0x94, 0x29, 0x74, 0x00, 0x0b, 0x91, 0x3b, 0x3e, 0x28, 0x81, 0x3c, 0xf9, + 0x32, 0x53, 0xed, 0xfa, 0x18, 0x98, 0x61, 0x8b, 0x08, 0xde, 0xe9, 0x49, 0xb6, 0x88, 0x84, 0x1b, + 0x43, 0xc9, 0x16, 0x91, 0x78, 0x3d, 0x88, 0x19, 0x77, 0xe8, 0x2e, 0x4f, 0x92, 0x71, 0x27, 0xdd, + 0x20, 0xaa, 0x5d, 0x1d, 0x89, 0x17, 0x54, 0x5a, 0xe4, 0x66, 0x4f, 0x92, 0xd2, 0x92, 0x6f, 0x0e, + 0xd5, 0xae, 0x8f, 0x81, 0x19, 0xb5, 0x82, 0xc1, 0x3d, 0x81, 0x34, 0x2b, 0x88, 0xdd, 0x6a, 0x49, + 0xb3, 0x82, 0xf8, 0x95, 0x03, 0x61, 0x05, 0x91, 0xfe, 0xfe, 0xb5, 0x31, 0x3a, 0x6a, 0xe9, 0x56, + 0x90, 0xdc, 0x7b, 0x53, 0xa6, 0xd0, 0x1f, 0x67, 0xa0, 0x9a, 0xd6, 0xad, 0x42, 0x09, 0x01, 0xf5, + 0x88, 0x06, 0x5b, 0x6d, 0x6d, 0x12, 0x12, 0x5f, 0x8a, 0x2f, 0x01, 0xc5, 0x03, 0x0d, 0xf4, 0x76, + 0xd2, 0xce, 0xa4, 0x84, 0x33, 0xb5, 0x77, 0xc6, 0x43, 0x0e, 0xee, 0x64, 0x38, 0x02, 0x49, 0xda, + 0xc9, 0xc4, 0xf8, 0x26, 0x69, 0x27, 0x53, 0x82, 0x19, 0xe6, 0xa3, 0xa2, 0x01, 0x49, 0x92, 0x8f, + 0x4a, 0x09, 0x79, 0x92, 0x7c, 0x54, 0x6a, 0x7c, 0x33, 0x85, 0x5a, 0x50, 0x90, 0x3d, 0x3f, 0x94, + 0x70, 0xf2, 0x44, 0x3a, 0x8e, 0x35, 0x65, 0x18, 0x8a, 0xcf, 0xf4, 0x09, 0xe4, 0x29, 0x14, 0x9d, + 0x49, 0xc6, 0x96, 0xcc, 0xce, 0xa6, 0x3d, 0xf6, 0x19, 0x3d, 0x87, 0x19, 0xde, 0xe4, 0x42, 0x09, + 0xe5, 0xab, 0x50, 0x2b, 0xae, 0x76, 0x3e, 0x1d, 0xc1, 0x67, 0xf7, 0x39, 0xff, 0xdf, 0x5c, 0xa2, + 0x7f, 0x85, 0x2e, 0x25, 0xff, 0x63, 0x93, 0x70, 0xbb, 0xac, 0x76, 0x79, 0x04, 0x56, 0xd0, 0x3c, + 0x22, 0xa9, 0xd3, 0xd5, 0x91, 0xf9, 0x6f, 0xba, 0x79, 0x24, 0x67, 0xd8, 0xdc, 0xf0, 0xe3, 0x19, + 0x78, 0x92, 0xe1, 0xa7, 0xd6, 0x3d, 0x92, 0x0c, 0x3f, 0x3d, 0xa9, 0x57, 0xa6, 0x90, 0x07, 0x4b, + 0x09, 0xf5, 0x56, 0xf4, 0x4e, 0xda, 0x8b, 0x9b, 0x54, 0xfc, 0xad, 0xdd, 0x1c, 0x13, 0x3b, 0xb8, + 0xf9, 0xc2, 0x91, 0x9d, 0x4b, 0x2f, 0x42, 0xa6, 0x6e, 0x7e, 0xcc, 0x6d, 0x1d, 0xc0, 0x42, 0x24, + 0x76, 0x46, 0x69, 0x87, 0x52, 0xfc, 0x3c, 0xbe, 0x3e, 0x06, 0xa6, 0x9c, 0x69, 0xed, 0xdf, 0x72, + 0x30, 0xc7, 0xab, 0xf6, 0x22, 0xfe, 0xfb, 0x14, 0x60, 0xd0, 0x30, 0x43, 0x17, 0x93, 0xb5, 0x1f, + 0x6a, 0x75, 0xd6, 0x2e, 0x0d, 0x47, 0x0a, 0x9a, 0x74, 0xa0, 0xf9, 0x84, 0x2e, 0x8d, 0xe8, 0x4d, + 0xa5, 0x9a, 0x74, 0x42, 0x07, 0x4b, 0x99, 0x42, 0x1f, 0x43, 0xd1, 0xef, 0x72, 0xa0, 0xa4, 0x2e, + 0x49, 0xa4, 0x8d, 0x53, 0xbb, 0x38, 0x14, 0x27, 0x28, 0x75, 0xa0, 0x85, 0x91, 0x24, 0x75, 0xbc, + 0x55, 0x92, 0x24, 0x75, 0x52, 0x1f, 0x64, 0xa0, 0x13, 0x5e, 0xe8, 0x4c, 0xd5, 0x49, 0xa8, 0xce, + 0x9c, 0xaa, 0x93, 0x70, 0xb5, 0x54, 0x99, 0x5a, 0x73, 0xa0, 0xcc, 0xb3, 0x3a, 0xb9, 0xbb, 0x1a, + 0xcc, 0x05, 0x93, 0x3d, 0x94, 0x2a, 0x67, 0x28, 0x89, 0xac, 0x5d, 0x19, 0x85, 0x26, 0x67, 0x7c, + 0x74, 0xe5, 0x37, 0x5f, 0x9f, 0xcd, 0xfc, 0xf3, 0xd7, 0x67, 0xa7, 0xbe, 0xfa, 0xe6, 0x6c, 0xe6, + 0x37, 0xdf, 0x9c, 0xcd, 0xfc, 0xe3, 0x37, 0x67, 0x33, 0xff, 0xfe, 0xcd, 0xd9, 0xcc, 0x9f, 0xfd, + 0xc7, 0xd9, 0xa9, 0x9f, 0x15, 0x24, 0xf9, 0xde, 0x0c, 0xfb, 0xef, 0x81, 0xef, 0xfd, 0x6f, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x2a, 0x8b, 0xb5, 0x66, 0x03, 0x52, 0x00, 0x00, } diff --git a/vendor/github.com/alibaba/pouch/cri/apis/v1alpha2/api.proto b/vendor/github.com/alibaba/pouch/cri/apis/v1alpha2/api.proto index f5ad844e4b..db9a4412d5 100644 --- a/vendor/github.com/alibaba/pouch/cri/apis/v1alpha2/api.proto +++ b/vendor/github.com/alibaba/pouch/cri/apis/v1alpha2/api.proto @@ -70,6 +70,10 @@ service RuntimeService { // to either create a new log file and return nil, or return an error. // Once it returns error, new container log file MUST NOT be created. rpc ReopenContainerLog(ReopenContainerLogRequest) returns (ReopenContainerLogResponse) {} + // PauseContainer pauses the container. + rpc PauseContainer(PauseContainerRequest) returns (PauseContainerResponse) {} + // UnpauseContainer unpauses the container. + rpc UnpauseContainer(UnpauseContainerRequest) returns (UnpauseContainerResponse) {} // ExecSync runs a command in a container synchronously. rpc ExecSync(ExecSyncRequest) returns (ExecSyncResponse) {} @@ -837,6 +841,7 @@ enum ContainerState { CONTAINER_RUNNING = 1; CONTAINER_EXITED = 2; CONTAINER_UNKNOWN = 3; + CONTAINER_PAUSE = 4; } // ContainerStateValue is the wrapper of ContainerState. @@ -1322,6 +1327,20 @@ message ReopenContainerLogRequest { message ReopenContainerLogResponse{ } +message PauseContainerRequest { + // ID of the container to pause. + string container_id = 1; +} + +message PauseContainerResponse {} + +message UnpauseContainerRequest { + // ID of the container to unpause. + string container_id = 1; +} + +message UnpauseContainerResponse {} + message RemoveVolumeRequest { // Name of the volume to remove string volume_name = 1; diff --git a/vendor/vendor.json b/vendor/vendor.json index 660388b97a..ac1d21e6d1 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -3,10 +3,10 @@ "ignore": "", "package": [ { - "checksumSHA1": "rdQzbyLh7SWDjZmCeKBMlAHQVZU=", + "checksumSHA1": "BQ05KVv9I4YaGkIvUxthzu7ivqw=", "path": "github.com/alibaba/pouch/cri/apis/v1alpha2", - "revision": "5e2c01d029820701f63921f5beaaf6c56a94eb8d", - "revisionTime": "2018-10-17T04:23:40Z" + "revision": "9df7eab68f3c4454191798638b20fdc251b894d5", + "revisionTime": "2019-01-22T07:26:34Z" }, { "checksumSHA1": "DNWHEf2/4si/ausyXSub1vca0EU=", From 83750cf7a4ed4e96e6dbb7de917dfddfe85d1a83 Mon Sep 17 00:00:00 2001 From: zhuangqh Date: Tue, 29 Jan 2019 17:29:58 +0800 Subject: [PATCH 2/2] print log if daemon fail to start Signed-off-by: zhuangqh --- .travis.yml | 8 +++----- hack/install-pouch.sh | 5 ++--- hack/run-critest.sh | 2 +- hack/run-pouch.sh | 27 +++++++++++++++------------ 4 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5eca6f8d6c..e0f50f81fc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,12 @@ language: go sudo: required -dist: trusty +dist: xenial go: - "1.10.2" go_import_path: github.com/kubernetes-sigs/cri-tools -before_install: - - sudo env PATH=$PATH GOPATH=$GOPATH hack/install-cni.sh - - sudo env PATH=$PATH GOPATH=$GOPATH hack/install-pouch.sh - install: - make install.tools @@ -26,5 +22,7 @@ jobs: - stage: Test script: - make + - sudo env PATH=$PATH GOPATH=$GOPATH hack/install-cni.sh + - sudo env PATH=$PATH GOPATH=$GOPATH hack/install-pouch.sh - sudo env PATH=$PATH GOPATH=$GOPATH hack/run-pouch.sh "v1alpha2" - sudo env PATH=$PATH GOPATH=$GOPATH hack/run-critest.sh "v1alpha2" diff --git a/hack/install-pouch.sh b/hack/install-pouch.sh index 049d073fb6..a4f78c2180 100755 --- a/hack/install-pouch.sh +++ b/hack/install-pouch.sh @@ -19,7 +19,7 @@ set -o errexit set -o nounset set -o pipefail -POUCH_VERSION="5e2c01d0" +POUCH_VERSION="9df7eab" POUCH_REPO=github.com/alibaba/pouch WORKDIR="${GOPATH}/src/${POUCH_REPO}" @@ -55,8 +55,7 @@ pouch::install() { git fetch --all git checkout ${POUCH_VERSION} - make build - TEST_FLAGS= BUILDTAGS="selinux seccomp apparmor" make build-daemon-integration + TEST_FLAGS= BUILDTAGS="selinux seccomp apparmor" make build sudo env "PATH=$PATH" make install cd - } diff --git a/hack/run-critest.sh b/hack/run-critest.sh index a9edfe2b22..2527fe61a0 100755 --- a/hack/run-critest.sh +++ b/hack/run-critest.sh @@ -43,7 +43,7 @@ critest::run_e2e() { --focus="${CRI_FOCUS}" --ginkgo-flags="--skip=\"${CRI_SKIP}\"" validation else critest --runtime-endpoint=${POUCH_SOCK} \ - --ginkgo.focus="${CRI_FOCUS}" --ginkgo.skip="${CRI_SKIP}" + --ginkgo.focus="${CRI_FOCUS}" --ginkgo.skip="${CRI_SKIP}" --parallel=8 fi code=$? diff --git a/hack/run-pouch.sh b/hack/run-pouch.sh index d76c612cab..44aa9758c5 100755 --- a/hack/run-pouch.sh +++ b/hack/run-pouch.sh @@ -51,6 +51,8 @@ pouch::check_cri_listening() { # pouchd::install_dependencies downloads and installs dependent packages pouch::install_dependencies() { + sudo apt-get update + sudo apt-get install -y socat cd "${WORKDIR}" make download-dependencies cd - @@ -58,7 +60,7 @@ pouch::install_dependencies() { # pouch::stop_dockerd makes sure dockerd is not running pouch::stop_dockerd() { - if [[ X"" != X"$(pidof docker)" ]]; then + if [[ X"" != X"$(pidof dockerd)" ]]; then # need to avoid conflict between dockerd and pouchd systemctl stop docker fi @@ -66,21 +68,15 @@ pouch::stop_dockerd() { # pouch:run starts pouch daemon with cri enabled pouch::run() { - local cri_runtime tmplog_dir pouchd_log sandbox_img flags + local cri_runtime pouchd_log sandbox_img flags cri_runtime=$1 - tmplog_dir="$(mktemp -d /tmp/integration-daemon-cri-testing-XXXXX)" - pouchd_log="${tmplog_dir}/pouchd.log" - - # daemon cri integration coverage profile - coverage_profile="${WORKDIR}/coverage/integration_daemon_cri_${cri_runtime}_profile.out" - rm -rf "${coverage_profile}" + pouchd_log=$2 sandbox_img="gcr.io/google_containers/pause-amd64:3.0" - flags=" -test.coverprofile=${coverage_profile} DEVEL" - flags="${flags} --enable-cri --cri-version ${cri_runtime} --sandbox-image=${sandbox_img}" + flags=" --enable-cri --cri-version ${cri_runtime} --sandbox-image=${sandbox_img}" - ${WORKDIR}/bin/pouchd-integration ${flags} > $pouchd_log 2>&1 & + ${WORKDIR}/bin/pouchd ${flags} > "${pouchd_log}" 2>&1 & # Wait a while for pouch daemon starting sleep 10 @@ -101,12 +97,19 @@ main() { fi pouch::stop_dockerd - pouch::run "${cri_runtime}" + + # tmplog_dir stores the background job log data + tmplog_dir="$(mktemp -d /tmp/integration-daemon-cri-testing-XXXXX)" + pouchd_log="${tmplog_dir}/pouchd.log" + + pouch::run "${cri_runtime}" "${pouchd_log}" pouchcri_has_listened="$(pouch::check_cri_listening)" if [[ "${pouchcri_has_listened}" = "false" ]]; then echo "pouchcri has not been listened: $(netstat -lx)" + echo "there is the daemon log..." + cat "${pouchd_log}" exit 1 fi